            body {
                font-family: 'Inter', sans-serif;
                margin: 0;
            }

            /* commons  */
            .desktop {
                display: block;

                @media screen and (max-width: 1024px) {
                    & {
                        display: none;
                    }
                }
            }

            .mobile {
                display: none;

                @media screen and (max-width: 1024px) {
                    & {
                        display: block;
                    }
                }
            }

            /* Section 1 - Introduction */

            h2 {
                margin: 0px;
            }

            p {
                margin: 0px;
            }

            .container::after,
            .container::before {
                content: unset;
            }

            .introduction {
                padding: 80px 0px;
                background-color: #F48120;

                .intro_container {
                    display: flex;
                    justify-content: space-between;
                    align-items: start;
                    gap: 106px;
                    color: #fff;

                    h2 {
                        font-size: 28px;
                        font-weight: 700;
                        line-height: 38px;
                        color: #fff;
                    }

                    p {
                        font-size: 14px;
                        font-weight: 400;
                        line-height: 24px;
                        margin-top: 15px;
                        color: #fff;

                        span {
                            text-transform: uppercase;
                            font-weight: 700;
                        }
                    }

                    .left-section {
                        width: 50%;
                    }

                    .right-section {
                        width: 50%;
                    }
                }


                @media (max-width: 768px) {
                    padding: 40px 0px;
                    flex-direction: column;
                    gap: 30px;

                    .intro_container {
                        flex-direction: column;
                        gap: 30px;

                        .left-section,
                        .right-section {
                            width: 100%;
                        }

                        h2 {
                            font-size: 20px;
                            line-height: 30px;
                            font-weight: 700;
                        }

                        p {
                            font-size: 14px;
                            line-height: 24px;
                            margin-top: 10px;
                            font-weight: 400;
                            color: #FFFFFF;
                        }
                    }
                }
            }

            /* Section 1 - Hero  */
            .hero {
                height: 100%;
                width: 100%;
                position: relative;

                .img-container {
                    height: 100vh;
                    width: 100%;

                    img {
                        height: 100%;
                        width: 100%;
                        object-fit: cover;
                    }
                }

                .text-part {
                    position: absolute;
                    transform: translate(-50%, -50%);
                    top: 50%;
                    left: 50%;

                    h1 {
                        max-width: 840px;
                        width: 100%;
                        margin-inline: auto;
                        color: #FEA734;
                        text-align: center;
                        font-size: 42px;
                        font-style: normal;
                        font-weight: 400;
                        line-height: 52px;
                        text-transform: uppercase;
                    }

                    p {
                        max-width: 600px;
                        width: 100%;
                        margin-inline: auto;
                        color: #fff;
                        text-align: center;
                        font-size: 14px;
                        font-style: normal;
                        font-weight: 700;
                        line-height: 24px;
                    }
                }

                @media (max-width: 768px) {
                    & {
                        height: 100%;

                        .text-part {
                            width: 335px;

                            h1 {
                                font-size: 28px;
                                line-height: 34px;
                            }

                            p {
                                font-size: 16px;
                                padding: 0px 10px;
                            }
                        }
                    }
                }
            }

            /* Section 2 - Corrosion */

            .corrosion {
                padding: 120px 0px;

                h2 {
                    font-size: 28px;
                    font-weight: 700;
                    line-height: 35px;
                    color: #F48120;
                }

                p {
                    font-size: 14px;
                    font-weight: 400;
                    line-height: 28px;
                    margin-top: 15px;
                }

                .cards {
                    margin-top: 40px;

                    h3 {
                        font-size: 18px;
                        font-weight: 600;
                        line-height: 28px;
                    }

                    .all-cards {
                        display: flex;
                        /* flex-wrap: wrap; */
                        gap: 25px;
                        margin-top: 20px;

                        .card {
                            border: 1px solid #D7D7D7;
                            overflow: hidden;
                            width: 100%;
                            /* max-width: 397px; */
                            max-width: 33%;
                            background-color: #fff;

                            .card-image {
                                position: relative;

                                img {
                                    width: 100%;
                                    height: auto;
                                    display: block;
                                }

                                .tag {
                                    position: absolute;
                                    top: 16px;
                                    right: 16px;
                                    background-color: #F48120;
                                    color: white;
                                    padding: 6px 10px;
                                    border-radius: 8px;
                                    font-size: 14px;
                                    line-height: 26px;
                                    font-weight: 700;
                                }
                            }

                            .card-content {
                                padding: 24px;

                                p {
                                    /* margin: 10px 0; */
                                    margin-top: 12px;
                                    font-size: 18px;
                                    line-height: 35px;
                                    font-weight: 400;

                                    strong {
                                        color: #F48120;
                                        font-size: 18px;
                                        font-weight: 700;
                                    }

                                    span {
                                        color: #000;
                                        font-size: 16px;
                                        font-weight: 400;
                                    }
                                }
                            }
                        }
                    }
                }

                @media (max-width: 768px) {
                    padding: 60px 0px;

                    h2 {
                        font-size: 20px;
                        line-height: 30px;
                    }

                    p {
                        font-size: 14px;
                        line-height: 24px;
                        margin-top: 10px;
                    }

                    .cards {
                        h3 {
                            font-size: 16px;
                            line-height: 26px;
                            margin-top: 30px;
                        }

                        .all-cards {
                            flex-direction: column;
                            justify-content: center;
                            margin-top: 20px;

                            .card {
                                max-width: 100%;

                                .card-image {
                                    height: 170px;

                                    img {
                                        width: 100%;
                                        height: 100%;
                                        display: block;
                                        object-fit: cover;
                                    }

                                    .tag {
                                        font-size: 12px;
                                        line-height: 22px;
                                    }
                                }

                                .card-content {
                                    padding: 20px;

                                    p {
                                        font-size: 16px;
                                        line-height: 26px;
                                        margin-top: 15px;
                                    }
                                }
                            }
                        }
                    }
                }
            }

            /* Section 3 - Action */

            .action {
                padding: 60px 0px;
                background-color: #F48120;

                h2 {
                    font-size: 28px;
                    font-weight: 700;
                    line-height: 35px;
                    color: #fff;
                }

                .risk-cards {
                    display: flex;
                    /* flex-wrap: wrap; */
                    justify-content: space-between;
                    gap: 25px;
                    padding-top: 40px;
                    text-align: left;

                    .card {
                        width: 100%;

                        img {
                            width: 60px;
                            height: 60px;
                        }

                        h4 {
                            font-size: 18px;
                            line-height: 24px;
                            font-weight: 700;
                            margin: 0px;
                            margin-top: 20px;
                            color: #fff;
                        }

                        p {
                            font-size: 14px;
                            line-height: 24px;
                            font-weight: 400;
                            margin-bottom: 0px;
                            margin-top: 10px;
                            color: #fff;
                        }
                    }
                }

                @media (max-width: 768px) {
                    padding: 40px 0px;

                    h2 {
                        text-align: left;
                        font-size: 20px;
                        line-height: 30px;
                    }

                    .risk-cards {
                        flex-direction: column;
                        justify-content: center;
                        text-align: left;

                        .card {
                            max-width: 100%;
                            /* margin-bottom: 30px; */
                            display: flex;
                            gap: 30px;

                            img {
                                /* margin: 0 auto; */
                                min-width: 40px;
                                height: 40px;
                            }

                            .card-data {
                                /* margin-left: 20px; */

                                h4 {
                                    font-size: 16px;
                                    line-height: 24px;
                                    margin-top: 0;
                                }

                                p {
                                    font-size: 14px;
                                    line-height: 24px;
                                    margin-top: 5px;
                                }
                            }
                        }
                    }
                }
            }

            /* Section 4 - What Makes  Hydro-Structures Last */

            .What-Makes {
                padding: 120px 0px;
                display: flex;
                justify-content: space-between;
                align-items: start;
                gap: 40px;

                .image-section {
                    width: auto;
                    height: 100%;

                    img {
                        width: 100%;
                        height: 100%;
                        object-fit: cover;
                    }
                }

                .content-section {
                    width: 50%;
                    display: flex;
                    flex-direction: column;
                    gap: 60px;

                    .top-section {
                        h2 {
                            font-size: 28px;
                            font-weight: 700;
                            line-height: 35px;
                            color: #F48120;
                            margin: 0;
                        }

                        p {
                            font-size: 14px;
                            line-height: 24px;
                            font-weight: 400;
                            color: #000;
                            margin-top: 15px;
                        }
                    }

                    .bottom-section {
                        font-size: 10px;
                        line-height: 16px;
                        font-weight: 400;
                        font-style: italic;
                        color: #404040;
                        /* margin-top: 70px; */
                    }
                }

                @media (max-width: 768px) {
                    flex-direction: column-reverse;
                    padding: 60px 0px;
                    min-width: 40px;
                    height: auto;
                    gap: 30px;

                    .image-section,
                    .content-section {
                        width: 100%;
                    }

                    .image-section {
                        height: 100%;
                        /* margin-top: 30px; */

                        img {
                            width: 100%;
                            height: 100%;
                            object-fit: cover;
                            display: block;
                        }

                        .bottom-section {
                            color: #404040;
                            font-size: 10px;
                            font-style: italic;
                            font-weight: 400;
                            line-height: 16px;
                            margin-top: 10px;
                        }
                    }

                    .content-section {
                        .top-section {
                            h2 {
                                font-size: 20px;
                                line-height: 30px;
                            }

                            p {
                                font-size: 14px;
                                line-height: 24px;
                                margin-top: 10px;
                            }
                        }

                        .bottom-section {
                            font-size: 10px;
                            line-height: 16px;
                            margin-top: 10px;
                            text-align: left;
                        }
                    }
                }
            }

            /* Section 5 - Stainless Steel Solutions And Where They Matter */

            .solutions {
                padding-bottom: 80px;

                .top-section {
                    h2 {
                        font-size: 28px;
                        font-weight: 700;
                        line-height: 35px;
                        color: #F48120;
                    }

                    p {
                        font-size: 14px;
                        line-height: 24px;
                        font-weight: 400;
                        margin-top: 15px;
                    }
                }

                .table-container {
                    overflow-x: auto;
                    margin-top: 60px;

                    table {
                        width: 100%;
                        border-collapse: collapse;
                        font-size: 16px;
                        line-height: 24px;
                        min-width: 600px;

                        thead {
                            th {
                                background-color: #000;
                                color: #fff;
                                font-weight: 700;
                                padding: 10px 17px;
                                border: 1px solid #000;
                                text-align: left;
                            }
                        }

                        tbody {
                            tr {
                                td {
                                    padding: 10px 17px;
                                    border: 1px solid #000;
                                    text-align: left;
                                }
                            }
                        }
                    }
                }

                @media (max-width: 768px) {
                    & {
                        padding-bottom: 60px;

                        .top-section {
                            h2 {
                                font-size: 22px;
                                line-height: 30px;
                            }

                            p {
                                font-size: 13px;
                                line-height: 22px;
                            }
                        }

                        .table-container {
                            margin-top: 30px;

                            table {
                                font-size: 14px;
                                min-width: unset;

                                thead {
                                    th {
                                        font-size: 14px;
                                    }
                                }

                                tbody {
                                    tr {
                                        td {
                                            font-size: 14px;
                                        }
                                    }
                                }
                            }
                        }
                    }
                }
            }

            /* Section 6 - Mighty Dam */

            .mighty-dam {
                padding: 100px 0px;
                background-color: #FEE6D3;

                .top-section {
                    display: flex;
                    gap: 25px;

                    .content-section {
                        /* h2 {
                            font-size: 28px;
                            font-weight: 700;
                            line-height: 35px;
                            color: #F48120;
                            margin: 0;
                        } */
                        width: 50%;

                        ol {
                            /* width: 100%; */
                            font-size: 28px;
                            font-weight: 700;
                            line-height: 35px;
                            color: #F48120;
                            margin: 0px;

                            li {
                                h2 {
                                    font-size: 28px;
                                    font-weight: 700;
                                    line-height: 35px;
                                    color: #F48120;
                                }
                            }

                            p {
                                font-size: 14px;
                                line-height: 24px;
                                font-weight: 400;
                                margin-top: 15px;
                                color: #000;
                            }
                        }
                    }

                    .image-section {
                        width: 50%;

                        img {
                            width: 100%;
                        }
                    }
                }

                .features {
                    display: flex;
                    gap: 25px;
                    margin-top: 60px;

                    .image-section {
                        width: auto;
                        height: auto;

                        img {
                            width: 100%;
                            height: 315px;
                            /* object-fit: cover; */
                        }

                        .img_sub-text {
                            margin-top: 15px;
                            color: #404040;
                            font-size: 12px;
                            font-style: italic;
                            font-weight: 600;
                            line-height: 16px;
                            text-align: center;
                        }
                    }

                    .content-section {
                        width: 50%;

                        h2 {
                            margin: 0;
                            color: #F48120;
                            font-size: 28px;
                            font-weight: 700;
                            line-height: 35px;
                        }

                        ul {
                            margin-left: 20px;

                            li {
                                font-size: 14px;
                                line-height: 24px;
                                font-weight: 400;
                                margin-top: 15px;

                                span {
                                    font-weight: 700;
                                }
                            }
                        }
                    }
                }

                @media (max-width: 768px) {
                    padding: 40px 0px;

                    .top-section {
                        flex-direction: column;
                        gap: 0;

                        .content-section {
                            width: 100%;

                            /* h2 {
                                font-size: 20px;
                                line-height: 30px;
                                font-weight: 700;
                            }
                            p {
                                font-size: 14px;
                                line-height: 24px;
                                margin-top: 10px;
                            } */
                            ol {
                                font-size: 20px;
                                line-height: 30px;
                                font-weight: 700;

                                li {
                                    h2 {
                                        font-size: 20px;
                                        line-height: 30px;
                                        font-weight: 700;
                                    }
                                }

                                p {
                                    font-size: 14px;
                                    line-height: 24px;
                                    margin-top: 10px;
                                }
                            }
                        }

                        .image-section {
                            margin-top: 20px;
                            width: 100%;

                            img {
                                width: 100%;
                                height: 100%;
                                object-fit: cover;
                                display: block;
                            }
                        }
                    }

                    .features {
                        flex-direction: column-reverse;
                        margin-top: 40px;

                        .image-section,
                        .content-section {
                            width: 100%;
                        }

                        .content-section {

                            /* margin-top: 40px; */
                            h2 {
                                font-size: 20px;
                                line-height: 30px;
                            }

                            ul {
                                margin-top: 10px;

                                li {
                                    font-size: 14px;
                                    line-height: 24px;
                                    margin-top: 15px;
                                }
                            }
                        }

                        .image-section {
                            img {
                                width: 100%;
                                height: 100%;
                                object-fit: cover;
                                display: block;
                            }
                        }
                    }
                }
            }

            /* Section 7 - Lasting Dam */

            .lasting-dams {
                /* padding: 120px 0px; */
                margin-top: 120px;
                display: flex;
                gap: 25px;

                .content-section {
                    width: 50%;

                    /* h2 {
                        font-size: 28px;
                        font-weight: 700;
                        line-height: 35px;
                        color: #F48120;
                        margin: 0;
                    }
                    p {
                        font-size: 14px;
                        line-height: 24px;
                        font-weight: 400;
                        margin-top: 15px;
                    } */
                    ol {
                        font-size: 28px;
                        font-weight: 700;
                        line-height: 35px;
                        color: #F48120;
                        margin: 0px;

                        li {
                            h2 {
                                font-size: 28px;
                                font-weight: 700;
                                line-height: 35px;
                                color: #F48120;
                            }
                        }

                        p {
                            font-size: 14px;
                            line-height: 24px;
                            font-weight: 400;
                            margin-top: 15px;
                            color: #000;
                        }
                    }
                }

                .image-section {
                    width: 50%;
                    height: 361px;

                    img {
                        width: 100%;
                        width: 100%;
                        height: 100%;
                        object-fit: cover;
                    }
                }

                @media (max-width: 768px) {
                    padding: 0px;
                    flex-direction: column;
                    margin-top: 60px;

                    .content-section {
                        /* h2 {
                            font-size: 20px;
                            line-height: 30px;
                            font-weight: 700;
                        }
                        p {
                            font-size: 14px;
                            line-height: 24px;
                            margin-top: 10px;
                        } */
                        width: 100%;

                        ol {
                            font-size: 20px;
                            line-height: 30px;
                            font-weight: 700;

                            li {
                                h2 {
                                    font-size: 20px;
                                    line-height: 30px;
                                    font-weight: 700;
                                }
                            }
                        }

                        p {
                            font-size: 14px;
                            line-height: 24px;
                            margin-top: 10px;
                        }
                    }

                    .image-section {
                        width: 100%;
                        height: 100%;

                        img {
                            width: 100%;
                            height: 100%;
                            object-fit: cover;
                            display: block;
                        }
                    }
                }
            }

            /* Section 8 - Four Cards */

            .four-cards {
                padding: 80px 0px;
                display: flex;
                /* flex-wrap: wrap; */
                justify-content: space-between;
                text-align: left;
                gap: 25px;

                .card {
                    /* flex: 1 1 220px; */
                    max-width: 290px;

                    img {
                        width: 60px;
                        height: 60px;
                    }

                    h4 {
                        font-size: 18px;
                        line-height: 24px;
                        font-weight: 700;
                        margin: 0px;
                        margin-top: 15px;
                    }

                    p {
                        font-size: 14px;
                        line-height: 24px;
                        font-weight: 400;
                        color: #58595B;
                        margin-bottom: 0px;
                        margin-top: 8px;
                    }
                }

                @media (max-width: 768px) {
                    padding: 0;
                    padding-top: 40px;
                    justify-content: center;
                    text-align: left;
                    flex-direction: column;
                    gap: 30px;
                    margin-bottom: 60px;

                    .card {
                        max-width: 100%;
                        /* margin-bottom: 30px; */
                        display: flex;

                        img {
                            margin: 0 auto;
                            min-width: 40px;
                            height: 40px;
                        }

                        .card-data {
                            margin-left: 20px;

                            h4 {
                                font-size: 16px;
                                line-height: 24px;
                                margin-top: 0px;
                            }

                            p {
                                font-size: 14px;
                                line-height: 24px;
                                margin-top: 5px;
                            }
                        }
                    }
                }
            }

            /* Section 9 - Hydro Structures */

            .hydroStructures {
                padding: 100px 0px;
                background-color: #F48120;

                .top-section {
                    display: flex;
                    gap: 25px;

                    .content-section {
                        width: 50%;

                        ol {
                            font-size: 28px;
                            font-weight: 700;
                            line-height: 35px;
                            color: #fff;
                            margin: 0px;

                            li {
                                h2 {
                                    font-size: 28px;
                                    font-weight: 700;
                                    line-height: 35px;
                                    color: #fff;
                                }
                            }

                            p {
                                font-size: 14px;
                                line-height: 24px;
                                font-weight: 400;
                                margin-top: 15px;
                                color: #fff;
                            }
                        }

                        /* h2 {
                            font-size: 28px;
                            font-weight: 700;
                            line-height: 35px;
                            color: #fff;
                        }
                        p {
                            font-size: 14px;
                            line-height: 24px;
                            font-weight: 400;
                            margin-top: 15px;
                            color: #fff;
                        } */
                    }

                    .image-section {
                        width: 50%;
                        height: 390px;

                        img {
                            width: 100%;
                            height: 100%;
                            object-fit: cover;
                        }
                    }
                }

                .bottom-section {
                    margin-top: 60px;

                    .card-section {
                        display: flex;
                        /* flex-wrap: wrap; */
                        justify-content: space-between;
                        text-align: left;
                        gap: 25px;
                        color: #fff;

                        .card {
                            /* flex: 1 1 220px; */
                            max-width: 290px;
                            width: 100%;

                            img {
                                width: 60px;
                                height: 60px;
                            }

                            .card-data {

                                h4 {
                                    font-size: 18px;
                                    line-height: 24px;
                                    font-weight: 700;
                                    margin: 0px;
                                    margin-top: 20px;
                                    color: #FFF;
                                }

                                p {
                                    font-size: 14px;
                                    line-height: 24px;
                                    font-weight: 400;
                                    margin-bottom: 0px;
                                    margin-top: 8px;
                                    color: #FFF;
                                }
                            }
                        }
                    }
                }

                @media (max-width: 768px) {
                    padding: 40px 0px;

                    .top-section {
                        flex-direction: column;

                        .content-section {
                            width: 100%;

                            ol {
                                font-size: 20px;
                                line-height: 30px;
                                font-weight: 700;

                                li {
                                    h2 {
                                        font-size: 20px;
                                        line-height: 30px;
                                        font-weight: 700;
                                    }
                                }

                                p {
                                    font-size: 14px;
                                    line-height: 24px;
                                    margin-top: 10px;
                                }
                            }
                        }

                        .image-section {
                            width: 100%;
                            height: 100%;
                            margin-top: 20px;

                            img {
                                width: 100%;
                                height: 100%;
                                object-fit: cover;
                                display: block;
                            }
                        }
                    }

                    .bottom-section {
                        margin-top: 40px;

                        .card-section {
                            justify-content: center;
                            flex-direction: column;

                            .card {
                                max-width: 100%;
                                /* margin-top: 40px; */
                                text-align: left;
                                display: flex;

                                img {
                                    min-width: 40px;
                                    height: 40px;
                                    margin: 0 auto;
                                }

                                .card-data {
                                    margin-left: 20px;

                                    h4 {
                                        font-size: 16px;
                                        line-height: 24px;
                                        margin-top: 0px;
                                    }

                                    p {
                                        font-size: 14px;
                                        line-height: 24px;
                                    }
                                }
                            }
                        }
                    }
                }
            }

            /* Section 10 - Ultimate Choice */

            .ultimate {
                padding: 120px 0px;

                h2 {
                    font-size: 28px;
                    font-weight: 700;
                    line-height: 35px;
                    color: #F48120;
                }

                p {
                    font-size: 14px;
                    line-height: 24px;
                    font-weight: 400;
                    margin-top: 15px;
                }

                @media (max-width: 768px) {
                    padding: 60px 0px;
                    padding-bottom: 0;

                    h2 {
                        font-size: 20px;
                        line-height: 30px;
                        font-weight: 700;
                    }

                    p {
                        font-size: 14px;
                        line-height: 24px;
                        font-weight: 400;
                    }
                }
            }

            /* <!-- Section 11 - Enquiry --> */

            .enquiry-container {
                display: flex;
                align-items: center;
                justify-content: center;
                gap: 88px;
                /* margin-top: 100px; */
                margin-bottom: 100px;

                .icon {
                    img {
                        width: 240px;
                        height: 240px;
                    }
                }

                .text-content {
                    display: flex;
                    flex-direction: column;

                    h3 {
                        font-size: 28px;
                        font-weight: 700;
                        color: #000;
                    }

                    a {
                        width: fit-content;
                        background-color: #f48120;
                        color: #fff;
                        border: none;
                        padding: 10px 20px;
                        margin-top: 20px;
                        font-size: 18px;
                        font-weight: 700;
                    }
                }

                @media (max-width: 768px) {
                    flex-direction: column;
                    text-align: center;
                    gap: 0px;
                    margin-block: 60px;

                    .icon {
                        img {
                            width: 158px;
                            height: 158px;
                        }
                    }

                    .text-content {
                        align-items: center;

                        h3 {
                            font-size: 20px;
                            margin-top: 20px;
                            /* margin-bottom: 20px; */
                            padding-left: 70px;
                            padding-right: 70px;
                        }

                        a {
                            font-size: 14px;
                        }
                    }
                }
            }