
.hamburger {
    display: none;
    cursor: pointer;
}

.hide {
    display: none;
}


.hero_section {
    background-image: url(../images/about_banner.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    margin: 0px 0px 100px 0px;
    height: 36vh;
    position: relative;
    z-index: 2;
}
.hero_section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgb(0 0 0 / 69%);
    z-index: -1; /* Ensure the overlay is on top */
}


.hero_section .hero {
    height: 50vh;
}

.about_us-main {
    display: flex;
    margin: 25px 0px;
    gap: 20px;
}



.about_us-image {
    width: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about_us .about_us-image img {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
}

.about_us-content {
    width: 50%;
    padding: 0px 100px 0px 100px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}

.about_us p {
    padding: 0px;
}

h2 {
    font-size: 60px;
}

h3 {
    font-size: 36px;
}

.mission-vision h3 {
    font-size: 36px;
    text-align: center;
}


/* mission & vision */

.mission-vision {
    margin: 25px 0px;
}

.mission-vision h2 {
    text-align: center;
}

.mission-vision p {
    /* padding: 10px; */
    text-align: center;
}

.mission-vision .card {
    border: 1px solid #302f2f;
    border-radius: 0;
    padding: 40px;
}




/* .about_two */

.about_two-main {
    display: flex;
    margin: 25px 0px;
    gap: 20px;
}

.about_two-image {
    width: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about_two-content {
    width: 50%;
    padding: 0px 100px 0px 100px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}

.about_two-content p {
    padding: 0px;
}

.about_two h2 {
    margin: 0px 0px 20px 0px;
}


.about_two .about_two-image img {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
}




/* video */

.video-section .videoplay img {
    width: 800px;
    height: 400px;
    object-fit: cover;
}

.video-section .content {
    width: 85%;
    text-align: left;
}

.video-section .content h2 {
    text-align: center;
    margin-bottom: 25px;
}


@media screen and (min-width: 768px) and (max-width: 1023px) {



    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background-color: #000;
        color: #fff;
        padding: 0px;
        height: 100vh;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links a {
        margin: 10px 0;
        text-align: center;
    }

    .hamburger {
        display: flex;
    }

    .hide {
        display: block;
    }

    header .head {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 0px 0px 10px 0px
    }

    .nav-links.active {
        display: flex;
        gap: 10px;
    }


    .hero_section {
        height: 30vh;
    }

    .hero_section .hero {
        height: 30vh;
    }


    h2 {
        font-size: 46px;
    }

    h3 {
        font-size: 36px;
    }






    .about_us-main {
        display: flex;
        margin: 25px 0px;
        flex-direction: column-reverse;
    }


    .about_us p {
        padding: 0px 20px 0px 20px;
        text-align: left;
    }

    .about_us .about_us-content {
        width: 100%;
        padding: 0px;
        text-align: center;
        align-items: center;
    }

    .about_us p {
        padding: 0px;
    }

    .card {
        width: 50%;
    }

    .video-section .videoplay img {
        width: 100%;
        height: auto;
        object-fit: cover;
        margin: 20px;
    }

    .video-section .videocontent {
        flex-direction: column-reverse;
        gap: 30px;
    }

    .video-section .content {
        width: 100%;
    }

    /* .about_two {
        display: flex;
        margin: 25px 0px;
        flex-direction: column-reverse;
    } */

    .about_two-main {
        display: flex;
        flex-direction: column-reverse;
    }


    .about_two h2 {
        font-size: 42px;
    }

    .about_us-content h2 {
        font-size: 42px;
    }

    .about_us p {
        padding: 0px 20px 0px 20px;
        text-align: left;
    }

    .about_us .about_us-image img {
        margin-bottom: 20px;
    }

    .video-section .content p {
        text-align: left;
    }

    .about_two-content p {
        padding: 0px 20px 0px 20px;
        text-align: left;
    }

    .about_two .about_two-image img {
        margin-bottom: 20px;
    }



}


@media screen and (max-width: 767px) {
    .hero_section h1 {
        font-size: 42px;
        margin-top: 60px;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background-color: #000;
        color: #fff;
        padding: 0px;
        height: 100vh;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links a {
        margin: 10px 0;
        text-align: center;
    }

    .hamburger {
        display: flex;
    }

    .hide {
        display: block;
    }


    .hero_section {
        height: 30vh;
        margin: 0px;
    }

    .hero_section .hero {
        height: 30vh;
    }


    .about_us {
        margin: 0px;
    }


    .about_us-main {
        display: flex;
        flex-direction: column-reverse;
    }

    h2 {
        font-size: 32px;
    }

    h3 {
        font-size: 26px;
    }
    .video-section {
        margin-bottom: 0px;
        margin-top: 0px;
    }




    .about_us p {
        padding: 0px 20px 0px 20px;
        text-align: left;
    }

    .about_us .about_us-image img {
        margin-bottom: 20px;
    }

    .about_us .about_us-content {
        width: 100%;
        padding: 0px;
        text-align: center;
        align-items: center;
    }

    .video-section .videoplay img {
        width: 100%;
        height: auto;
        object-fit: cover;
    }

    .video-section .videocontent {
        flex-direction: column-reverse;
        gap: 30px;
    }

    .video-section .content {
        width: 100%;
    }

    .video-section .content p {
        text-align: left;
    }


    /* .about_two {
        display: flex;
        margin: 25px 0px;
        flex-direction: column-reverse;
    } */

    .about_two-main {
        display: flex;
        flex-direction: column-reverse;
    }


    .about_two h2 {
        font-size: 36px;
        margin-bottom: 20px;
    }

    .about_us-content h2 {
        font-size: 36px;
    }

    .about_two-content p {
        padding: 0px 0px 0px 0px;
        text-align: left;
    }

    .about_two .about_two-image img {
        margin-bottom: 20px;
    }




}