@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
    list-style: none;
    text-decoration: none;
}

body {
    padding-top: 80px;
    overflow-x: hidden;
    /* background: #FFF5E1; */
}

.about_container {
    width: 100vw;
}

.about_container .about_hero_container {
    position: relative;
    width: 100%;
    height: 80vh;
    display: flex;
    overflow: hidden;
}

.about_container .about_hero_container .about_title_part {
    position: absolute;
    z-index: 3;
    top: 40%;
    left: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: left;
    width: 40%;
    height: 40%;
    padding: 0 0 0 10rem;
    background: #008080;
    border-radius: 0 50px 50px 0;


}

.about_container .about_hero_container .about_title_part .about_line_1 {
    font-size: 1.75rem;
    color: #fff;

}

.about_container .about_hero_container .about_title_part a {
    margin-top: 0.5rem;
}

.about_container .about_hero_container .about_title_part a button {
    cursor: pointer;
    background-color: #F4A300;
    border-radius: 10px;
    padding: 10px;
    font-weight: 600;
    font-size: 1rem;
    color: #008080;
    border: none;
    transition: 0.5s;
}

.about_container .about_hero_container .about_title_part a button:hover {
    box-shadow: 2px 2px 10px #ffffff;
}


.about_container .about_hero_container .about_image_part {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

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

.image-slide {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

.about_section1 {
    width: 100%;
    padding: 2rem 10rem 1rem 10rem;
    display: flex;
    justify-content: space-between;

}

.about_section1 .about_section1_left {
    width: 50%;
    padding: 2rem 2rem 2rem 0;
}

.about_section1 .about_section1_left img {
    width: 100%;
    height: 100%;
    border-radius: 10px;
}

.about_section1 .about_section1_right {
    width: 50%;
    padding: 2rem 0 2rem 2rem;
    display: flex;
    flex-direction: column;
}

.about_section1 .about_section1_right h2 {
    font-size: 1.75rem;
    padding-left: 0.25rem;
    border-radius: 10px;
    color: #F4A300;
    background: #008080;
}

.about_section2 {
    width: 100%;
    padding: 1rem 10rem;
}

.about_section3 {
    width: 100%;
    padding: 1rem 10rem;
    display: flex;
    justify-content: space-between;
}

.about_section3 .our_mission,
.about_section3 .our_vision {
    width: 50%;
    padding: 1rem 1rem 1rem 0;
}

.about_section3 .our_mission h3,
.about_section3 .our_vision h3 {
    font-size: 1.5rem;
    padding-left: 1rem;
    background: linear-gradient(to right, #008080, transparent);
    border-radius: 10px 0 0 10px;
    color: #F4A300;
}

@media (max-width: 991px) {

    .about_container .about_hero_container {
        height: 50vh;
    }

    .about_container .about_hero_container .about_title_part {
        width: 80%;
        height: 30%;
        border-radius: 0 15px 15px 0;
        padding: 0 0 0 1rem;
    }

    .about_container .about_hero_container .about_title_part .about_line_1 {
        font-size: 1rem;
        color: #fff;
    }

    .about_container .about_hero_container .about_title_part .about_line_1 span {
        font-size: 1.1rem;
        color: #F4A300;
        font-weight: bold;
    }

    .about_container .about_hero_container .about_title_part a {
        margin-top: 0.25rem;
    }

    .about_container .about_hero_container .about_title_part a button {
        font-size: 0.5rem;
    }

    .about_section1 {
        width: 100%;
        padding: 2rem 1rem;
        display: flex;
        flex-direction: column;

    }

    .about_section1 .about_section1_left {
        width: 100%;
        padding: 1rem;
    }



    .about_section1 .about_section1_right {
        width: 100%;
        padding: 0rem;
    }

    .about_section1 .about_section1_right h2 {
        font-size: 1.25rem;
    }

    .about_section2 {
        width: 100%;
        padding: 1rem 1rem;
    }

    .about_section3 {
        padding: 1rem 1rem;
        flex-direction: column;
    }

    .about_section3 .our_mission,
    .about_section3 .our_vision {
        width: 100%;
        padding: 1rem 0;
    }

}