
#hero {
    
    /* height: 500px; */
    width: 100%;
    background: url('../img/hero-bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    z-index: 1;

    .overlay {
        position: absolute;
        top: 0;
        left: 0;
        height: 100%;
        width: 100%;
        z-index: 2;
        background: linear-gradient(90deg, rgba(217, 217, 217, 0) 0%, rgba(77, 77, 77, 0.643733) 45.16%, #000000 99.11%);
        opacity: 0.75;
        transform: rotate(-180deg);
    }

    .content {
        position: relative;
        z-index: 6;
        color: #fff !important;
        height: 100%;
        display: flex;
        padding: 75px 0;
        flex-direction: column;

        h2 {
            font-size: 30px;
            font-weight: 400;
        }

        h1 {
            font-size: 80px;
            font-weight: 400;


            span {
                font-weight: 700;
                color: var(--primary-color);
            }
        }

        p {
            font-size: 25px;
            font-weight: 400;
        }
    }

    @media(max-width:991px) {
        .content {
            padding: 100px 20px;

            h2 {
                font-size: 24px;
            }

            h1 {
                font-size: 30px;
            }

            p {
                font-size: 14px;
            }
        }
    }
}

#about {
    background-color: #F5F9FF;

    .container {
        display: flex;
    }

    h2 {
        font-size: 24px;
        font-weight: 400;
    }

    p {
        font-size: 18px;
        font-weight: 400;
    }
    .video-sec{
        display: flex;
        align-items: center;
        flex-direction: column;
        .desc{
            padding:0 40px;
            p{
                font-size: 16px;
                font-weight: 400;
                font-style: italic;
                a{
                    color: #000;
                    text-decoration: none;
                    &:hover{
                        text-decoration: underline;
                    }
                }
                .main-btn{
                    color: #fff;
                    padding: 2px 20px;
                    &:hover{
                        text-decoration: none;
                    }
                }
            }
        }
        
        .video {
            width: 90%;
            display: flex;
            justify-content: center;
            align-items: center;

            video{
                width: 100%;
            }
        }
    }
    

    @media(max-width:991px) {
        .container {
            flex-direction: column;

            .video-sec {
                padding-top: 30px;
                .desc{
                    padding: 0 20px;
                }

                video {
                    width: 100%;
                }
            }

            p {
                text-align: justify;
            }
        }
    }
}

#misson_vission {
    background-color: #fff;

    .boxes {
        display: flex;
        gap: 50px;

        .styled-box {
            background: var(--sec-color);

            h2 {
                color: #FFF;
            }

            .divider {
                border: 0.5px solid #FFF !important;
            }

            p {
                color: #ffff;
            }

            &:hover{
                background: #FFF !important;
                transition: 1s;
                h2 {
                    font-size: 24px;
                    font-weight: 700;
                    color: #000 !important;
                }
    
                .divider {
                    border: 0.5px solid grey;
                    margin-top: 30px;
                    margin-bottom: 20px;
                }
    
                p {
                    font-size: 18px;
                    font-weight: 400;
                    padding: 0;
                    color: #000 !important; 
                    margin: 0;
                }
            }
        }

        .box {
            box-shadow: 0px 4px 4px 0px #00000040;
            padding: 30px;
            width: 100%;

            h2 {
                font-size: 24px;
                font-weight: 700;
            }

            .divider {
                border: 0.5px solid grey;
                margin-top: 30px;
                margin-bottom: 20px;
            }

            p {
                font-size: 18px;
                font-weight: 400;
                padding: 0;
                margin: 0;
            }

            &:hover{
                background: var(--sec-color);
                transition: 1s;

                h2 {
                    color: #FFF;
                }
    
                .divider {
                    border: 0.5px solid #FFF !important;
                }
    
                p {
                    color: #ffff;
                }
            }
        }
    }

    @media(max-width:1100px) {
        .boxes {
            flex-direction: column;
        }
    }
}

#why_choose_us {
    background-color: var(--bg-color);

    .main {
        padding-top: 50px;

        .single {
            display: flex;
            gap: 20px;
            padding-bottom: 20px;

            .left {
                img {
                    height: 75px;
                }
            }

            .right {
                h3 {
                    font-size: 18px;
                    font-weight: 700;
                    padding: 0;
                    margin: 0;
                }

                p {
                    font-size: 16px;
                    font-weight: 400;

                }
            }
        }
    }

    h2 {
        font-size: 24px;
        font-weight: 400;

    }

    .image {
        display: flex;
        gap: 20px;
        position: relative;

        img {
            width: calc(50% - 10px);
        }
    }

    @media(max-width:991px) {
        .container {
            flex-direction: column;
        }
    }
}

#what_we_offer {
    h1 {
        font-size: 50px;
        line-height: 53px;
    }

    .main-slider-div {
        position: relative;
    }

    @media(max-width:991px) {
        h1 {
            font-size: 24px;
            line-height: 30px;
        }

        .slider {
            flex-direction: column;

            .box {
                width: 100%;
            }
        }
    }
}

#banner {
    padding: 75px 0;
    width: 100%;
    position: relative;
    z-index: 1;
    background: url('../img/banner.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;

    .overlay {
        z-index: 2;
        position: absolute;
        top: 0;
        left: 0;
        height: 100%;
        width: 100%;
        transform: rotate(180deg);
        background: linear-gradient(90deg, rgba(217, 217, 217, 0) 0%, rgba(77, 77, 77, 0.643733) 0%, #000000 99.11%);
    }

    .content {
        position: relative;
        z-index: 3;
        max-width: 991px;

        h2 {
            font-size: 75px;
            font-weight: 400;
            line-height: 78px;
            text-align: center;
            color: #fff;
        }

        p {
            color: #fff;
            font-size: 28px;
            font-weight: 400;
            line-height: 32.81px;
            text-align: center;

        }
    }

    @media(max-width:991px) {
        .content {
            h2 {
                font-size: 32px;
                line-height: 40px;
            }

            p {
                font-size: 16px;
                line-height: 24px;
            }
        }
    }
}

#clients {
    .map {
        img {
            left: 70px;
            top: 70px;
            position: relative;
            width: 100%;
        }
    }

    .partners{
        .boxes{
            display: flex;
            flex-wrap: wrap;
            gap:10px;

            .box{
                width: 30%;
                border: 2px solid #8CBF3F;
                padding: 5px;
                display: flex;
                justify-content: center;
                align-items: center;

                img{
                    width: 100%;
                }
            }
        }
    }

    @media(max-width:991px) {
        .container {
            flex-direction: column;
        }

        img {
            width: 100%;
        }

        .map {
            img {
                left: 0;
                top: 20px;
            }
        }
    }
}
