/* commons  */
p {
    color: #000;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
}

h2 {
    color: #F48120;
    font-size: 30px;
    font-style: normal;
    font-weight: 700;
    line-height: 35px;
    margin: 0;
    padding: 0;
}

h3 {
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 24px;
}

.bold {
    font-weight: 700;
}

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

.underline {
    width: 280px;
    height: 100%;
    border-bottom: 1px solid #F58320;
}

/* 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;
        bottom: 0;
        width: 100%;
        padding-block: 40px;
        background: #F48120;
        opacity: 0.9;
    }


    p {
        max-width: 1030px;
        width: 100%;
        color: #FFF;
        text-align: center;
        font-size: 30px;
        font-weight: 400;
        line-height: 42px;
        margin-inline: auto;
        margin-bottom: 0;
    }

    @media (max-width: 768px) {
        .text-part {
            /* width: 335px; */

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

            p {
                font-size: 20px !important;
                line-height: 30px;
                padding: 0px 10px;
            }
        }
    }
}

/* Section 2 - Description   */
.descriptions {
    color: #000;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    margin-top: 60px;
    margin-bottom: 132px;
}

@media (max-width:767px) {
    .descriptions {
        font-size: 14px;
        letter-spacing: 0%;
        margin-top: 30px;
        margin-bottom: 60px;
    }
}

/* Section 3 - Challenge  */
.challenge_container {
    display: flex;
    gap: 60px;
    justify-content: start;
    align-items: start;
    margin-bottom: 90px;

    .left-container {
        max-width: 610px;
        width: 100%;
        display: flex;
        flex-direction: column;
        justify-content: start;
        align-items: start;
        gap: 15px;

        .top-container {
            position: relative;

            h2 {
                color: #000 ;
                font-size: 30px;
                font-weight: 700;
                line-height: 35px;

                .orange {
                    color: #F48120;
                }
            }

            p {
                color: #000;
                font-size: 16px;
                font-weight: 400;
                line-height: 24px;
            }

            .underline {
                width: 230px;
                height: 100%;
                border-bottom: 1px solid #F58320;
                position: absolute;
                right: -240px;
                bottom: 18px;
            }
        }
    }

    .right-container {
        max-width: 540px;
        width: 100%;
        height: auto;

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

        .Challenge_mobile_img {
            display: none;
        }

        @media (max-width:767px) {

            img {
                display: none;
            }

            .Challenge_mobile_img {
                display: block;
            }
        }
    }
}

@media (max-width:767px) {
    .challenge_container {
        flex-direction: column;
        gap: 30px;
        margin-bottom: 40px;

        .left-container {
            .top-container {
                h2 {
                    font-size: 20px;
                }

                .underline {
                    width: 183px;
                    right: -189px;
                    bottom: 12px;
                }
            }

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

}



/* Section 4 - Solution  */
.solutions {
    background: #F48120;

    .solution_container {
        padding-block: 60px;
        padding-bottom: 75px;
        display: flex;
        gap: 60px;
        justify-content: start;
        align-items: start;

        .left-container {
            max-width: 580px;
            width: 100%;
            height: auto;
            display: flex;
            flex-direction: column;
            justify-content: start;
            align-items: start;
            gap: 15px;
            color: #FFF;

            .top-container {
                position: relative;

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

                p {
                    color: #FFF;
                    font-size: 16px;
                    font-weight: 400;
                    line-height: 24px;
                }

                .underline {
                    width: 230px;
                    height: 100%;
                    border-bottom: 1px solid #fff;
                    position: absolute;
                    right: -240px;
                    bottom: 10px;
                }
            }

            p {
                color: #FFF;
            }

        }

        .right-container {
            position: relative;
            max-width: 607px;
            min-height: 223px;
            width: 100%;
            height: 100%;
            display: flex;
            flex-direction: column;
            justify-content: start;
            align-items: start;
            gap: 15px;
            flex-grow: 1;

            h2 {
                color: #FFF;
                font-size: 24px;
                font-weight: 600;
                line-height: 35px;
            }

            .img_container {
                /* position: absolute; */
                /* max-width: 607px; */
                width: 100%;
                height: 100%;
                bottom: -50px;
                left: -20px;

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

                .solution_mobile_image {
                    display: none;
                }
            }
        }
    }

    @media (max-width:767px) {
        .solution_container {
            flex-direction: column;
            padding-block: 30px;
            padding-bottom: 30px;
            gap: 30px;


            .left-container {
                .top-container {
                    h2 {
                        font-size: 20px;
                        font-weight: 700;
                        line-height: 30px;
                    }

                    .underline {
                        width: 201px;
                        right: -209px;
                    }

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

            .right-container {
                h2 {
                    color: #FFF;
                    font-size: 18px;
                    font-weight: 700;
                    line-height: 26px;
                }

                .img_container {
                    position: initial;

                    img {
                        display: none;
                    }

                    .solution_mobile_image {
                        display: block;
                        transform: translateX(-5px);
                    }
                }
            }
        }
    }
}

/* Section - 5 - Key Advantages  */
.key_adv {
    .key_adv-container {
        max-width: 1030px;
        width: 100%;
        height: auto;
        display: flex;
        flex-direction: column;
        justify-content: start;
        align-items: start;
        gap: 60px;
        padding-block: 120px;

        .top-container {
            position: relative;

            h2 {
                color: #000;
                font-size: 30px;
                font-weight: 700;
                line-height: 35px;

                .orange {
                    color: #F48120;
                    font-size: 30px;
                    font-weight: 700;
                    line-height: 35px;
                }

            }

            .underline {
                width: 400px;
                height: 100%;
                border-bottom: 1px solid #F58320;
                position: absolute;
                right: -410px;
                bottom: 10px;
            }
        }

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

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


        }


    }

    .mobile_view {
        display: none;
    }

    @media (max-width:767px) {

        .desktop {
            display: none;
        }

        .mobile_view {
            display: block;
            width: 100%;
            height: 100%;
            padding-block: 50px;

            .top-container {
                padding: 0 15px;

                h2 {
                    font-size: 20px;

                    .orange {
                        font-size: 20px;
                    }
                }

                .underline {
                    width: 147px;
                    left: 219px;

                }

            }

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

                img {
                    padding-right: 50px;
                    margin-top: 20px;
                }

                ;
            }
        }

    }

}

/* Table Section - Section 6  */
.table_container {
    padding-block: 60px;
    background: #F58320;

    .img_container {
        max-width: 810px;
        width: 100%;
        margin-inline: auto;

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

.mobile {
    display: none;
}

@media (max-width:767px) {
    .table_container {
        padding-block: 40px;
    }

    .desktop {
        display: none;
    }

    .mobile {
        display: block;

        .img_container {
            padding: 0 20px;
        }
    }

}

/* Product Specs - Section -= 7  */
.specs_container {
    display: flex;
    gap: 60px;
    justify-content: space-between;
    align-items: center;
    padding-block: 120px;

    .left-container {
        max-width: 610px;
        width: 100%;
        height: auto;
        display: flex;
        flex-direction: column;
        justify-content: start;
        align-items: start;

        h2 {
            color: #000;
            font-size: 30px;
            font-weight: 700;
            line-height: 35px;
            margin: 0;
            padding: 0;
            margin-bottom: 25px;

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

        h3 {
            color: #000;
            font-size: 18px;
            font-weight: 700;
            line-height: 24px;
            margin: 0;
            padding: 0;
            margin-bottom: 8px;
        }

        p {
            color: #000;
            font-size: 16px;
            font-weight: 400;
            line-height: 24px;
            margin: 0;
            padding: 0;

            span {
                color: #000;
                font-size: 16px;
                font-weight: 600;
                line-height: 24px;
            }
        }
    }

    .right-container {
        width: 100%;
        height: 100%;

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

@media (max-width:767px) {
    .specs_container {
        flex-direction: column;
        padding-block: 50px;
        gap: 30px;

        .left-container {
            h2 {
                font-size: 20px;

                span {
                    font-size: 20px;
                }
            }
        }
    }
}

/* .Wear and Corrison Resistance - Section 9  */
.wear-corrision_container {
    display: flex;
    gap: 70px;

    .resistance_struct {
        width: 100%;
        height: 100%;
        display: flex;
        flex-direction: column;
        justify-content: start;
        align-items: start;

        h3 {
            color: #000;
            font-size: 24px;
            font-weight: 600;
            line-height: 35px;
        }

        h1 {
            color: #E97E27;
            font-size: 56px;
            font-weight: 700;
            line-height: 100%;
            margin: 0;
            margin-top: 20px;
        }

        img {
            width: 100%;
            height: 317px;
            /* object-fit: cover; */
            margin-top: 40px;
        }

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

    }
}

@media (max-width:767px) {
    .wear-corrision_container {
        flex-direction: column;
        padding-block: 0;
        gap: 30px;


        .resistance_struct {
            img {
                height: auto;
            }

            p {
                margin-top: 20px;
            }

            h1 {
                font-size: 40px;
                margin-top: 0;
            }

            h3 {
                font-size: 18px;
                font-weight: 700;
                line-height: 26px;

            }
        }
    }
}

/* Skid resistance - Section - 8  */
.skid_container {
    display: flex;
    flex-direction: column;
    margin-block: 120px;

    h1 {
        color: #000;
        font-size: 30px;
        font-weight: 700;
        line-height: 35px;

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

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

    .resistance_container {
        width: 100%;
        height: auto;
        display: flex;
        justify-content: start;
        align-items: start;
        gap: 70px;

        .resistance {
            width: 100%;
            height: 100%;
            display: flex;
            flex-direction: column;
            justify-content: start;
            align-items: start;
            margin-top: 60px;

            h2 {
                color: #000;
                font-size: 24px;
                font-weight: 600;
                line-height: 35px;
            }

            div {
                width: 100%;
                height: auto;
                display: flex;
                flex-direction: column;
                justify-content: center;
                align-items: center;
                gap: 40px;
                margin-top: 40px;

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

                ul {
                    display: flex;
                    flex-direction: column;
                    gap: 15px;
                    margin: 0;

                    li {
                        color: #000;
                        font-size: 18px;
                        font-weight: 600;
                        line-height: 25px;

                        span {
                            color: #F48120;
                            font-size: 18px;
                            font-weight: 600;
                            line-height: 25px;
                        }
                    }
                }
            }
        }
    }

}

@media (max-width:767px) {
    .skid_container {
        margin-block: 60px;
        /* margin-bottom: 50px; */

        h1 {
            font-size: 20px;
            font-weight: 700;
            line-height: 30px;
            margin: 0;

            span {
                font-size: 20px;
            }
        }

        .resistance_container {
            flex-direction: column;
            gap: 0;

            .resistance {
                margin-top: 30px;

                h2 {
                    font-size: 18px;
                    font-weight: 700;
                    line-height: 26px;
                }

                li {
                    font-size: 14px !important;
                    line-height: 24px;

                    span {
                        font-size: 14px !important;
                        line-height: 24px
                    }

                }

            }
        }
    }
}

/* <!-- --section 9-life cycle Section-- --> */
.life_cycle {
    background-color: #E97E27;
    padding-block: 60px;

    .life_cycle_container {
        display: flex;
        gap: 30px;

        .left-container {
            width: 100%;
            height: 100%;
            display: flex;
            flex-direction: column;
            /* gap: 30px; */

            img {
                width: 100%;
                height: 100%;
            }

            h1 {
                color: white;
                font-size: 29px;
            }
        }

        .right-container {
            width: 100%;
            height: auto;
            display: flex;
            flex-direction: column;
            justify-content: space-between;

            p {
                color: white;
                line-height: 24px;
                font-weight: 400;
                font-size: 16px;
            }

            .inner-right-container {
                h1 {
                    font-size: 30px;
                    font-weight: 700;
                    color: white;

                    span {
                        color: #546D30;
                    }
                }

                p {
                    span {
                        font-weight: 700;
                        font-size: 16px;
                    }
                }
            }
        }
    }

  
    

    @media (max-width:767px) {
        & {
            padding-block: 40px;

            .desktop {
                display: none;
            }

            .life_cycle_container {
                display: flex;
                flex-direction: column;

                .left-container {
                    gap: 10px;

                    p {
                        color: white;
                        font-weight: 400;
                        line-height: 24px;
                    }

                    h1 {
                        font-size: 21px;
                        line-height: 30px;
                        font-weight: 700;
                    }
                }

                .right-container {
                    gap: 30px;

                    img {
                        width: 100%;
                        height: 100%;
                    }

                    .inner-right-container {
                        h1 {
                            font-size: 18px;
                            line-height: 26px;
                            font-weight: 700;
                        }
                    }
                }
            }

            /* .life_cycle_container{
        flex-direction: column;

          .left-container{
              h1{
                font-size: 20px;
              }
          }
          .right-container{
            .inner-right-container{
                h1{
                    font-size: 20px;
                }
            }
          }
       } */
        }
    }
}

/* <!-- section 10 img-banner-bottom --> */
.img_banner_bottom {
    margin-block: 100px;
    display: flex;
    gap: 50px;
    flex-direction: column;
    justify-content: center;

    .img_container {
        padding: 0 50px;

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

    .heading_conatiner {
        padding: 0 50px;

        h1 {
            font-weight: 700;
            font-size: 30px;
            line-height: 35px;
            color: #F48120;

        }

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

    }

}

@media (max-width:767px) {
    .img_banner_bottom {
        gap: 30px;
        margin-block: 50px;

        .img_container {
            padding: 0;
        }

        .heading_conatiner {
            padding: 0;

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


/* <!-- 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;
            }
        }
    }
}

@media (max-width:767px) {
    p {
        font-size: 14px !important;
    }
}