@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");

* {
    font-family: "Poppins", sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    list-style: none;
    text-decoration: none;
}

body {
    padding-top: 80px;
    overflow-x: hidden;
    font-family: "Poppins", sans-serif;
    font-weight: 300;
    font-style: normal;
}

.about_container {
    width: 100vw;
}

.about_hero {
    width: 100%;
    height: 80vh;
}

.about_hero img {
    width: 100%;
    height: 100%;
}

.about_hero h2 {
    font-size: 2rem;
    position: absolute;
    top: 40%;
    left: 10rem;
    color: #fff;
    text-decoration: underline;
    animation: drop-in 800ms ease 500ms backwards;
}

.about_hero h2 span {
    text-decoration: none;
    color: #ccff01;
    font-size: 3rem;
}

@keyframes drop-in {
    from {
        opacity: 0;
        transform: translateY(-100px);
    }

    to {
        opacity: 1;
        transform: translate(0px);
    }
}

.about_company {
    width: 100vw;
    padding: 3rem 10rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
}

.about_company .about_company_img {
    width: 100%;
    height: 300px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 5px 5px 10px #00417e, -15px -15px 30px #ffffff;
}

.about_company .about_company_img img {
    width: 100%;
    height: 100%;
}

.about_company .about_company_info {
    width: 100%;
    padding: 2rem 0;
}

.about_company .about_company_info h2 {
    font-size: 2rem;
    margin: 1rem 0;
}

.about_owner {
    width: 100vw;
    padding: 2rem 10rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.about_owner .about_owner_info {
    width: 50%;
    /* padding: 0 2rem; */
}

.about_owner .about_owner_info h2 {
    font-size: 2rem;
    margin: 1rem 0;
}

.about_owner .about_owner_img {
    width: 400px;
    height: 300px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 5px 5px 10px #00417e, -15px -15px 30px #ffffff;
}

.about_owner .about_owner_img img {
    width: 100%;
    height: 100%;
}

.frequently_asked_question {
    width: 100vw;
    padding: 2rem 10rem;
}

.faq_heading {
    width: 500px;
    height: 35px;
    margin: 2rem 0;
    /* font-size: 2rem; */
    display: flex;
    justify-content: flex-start;
    color: #ccff01;
    background: #000;
    align-items: center;
    /* border-radius: 20px ; */
    padding: 5px;
    border-radius: 0 16px 16px 0;
    /* background: #ccff01; */
    box-shadow: 1px 1px 0px #526600, -1px -1px 0px #ffff02;
}

.faq_heading h2 {
    font-size: 2rem;
}

.faq_qna {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: flex-start;
}

.faq_q {
    width: 100%;
    display: flex;
    justify-content: space-between;
    margin: 1rem 0 0.5rem 0;
}

.faq_a {
    border-bottom: 1px solid black;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s linear;
}

.faq_a.active {
    max-height: 80px;
}

@media (max-width: 991px) {

    .about_container {
        width: 100vw;
        margin-top: 0;
    }
    .about_hero {
        width: 100%;
        height: 30vh;
        position: relative;
        margin-top: 0;
    }

    .about_hero h2 {
        font-size: 1.2rem;
        left: 1rem;
    }

    .about_hero h2 span {
        font-size: 1.5rem;
    }

    .about_hero img {
        width: 100vw;
        height: 30vh;
    }

    .about_company {
        padding: 1rem 1rem;
    }
    .about_company .about_company_img {
        height: 150px;
    }
    
    .about_company .about_company_img img {
        width: 100%;
    }

    .about_company .about_company_info {
        padding: 1rem 0;
    }

    .about_owner {
        padding: 1.5rem 1rem;
        flex-direction: column-reverse;
    }

    .about_owner .about_owner_info {
        width: 100%;
    }

    .about_owner .about_owner_img {
        width: 300px;
        height: 300px;
    }

    .frequently_asked_question {
        width: 100vw;
        padding: 1.5rem 1rem;
    }

    .faq_heading {
        width: 300px;
        height: 35px;
    }

    .faq_heading h2 {
        font-size: 1.25rem;
    }
}