.banner-aboutus {
    width: 100%;
    height: 80vh;
    display: flex;
    justify-content: center;
    font-family: "Philosopher", sans-serif;
    background: url(/assets/img/aboutus.jpg);
    background-size: cover;
    background-position: center;
  }

nav a{
    color: white;
}

.aboutus-heading{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
   gap: 10px;
    color: white;
    height: 80%;

}

.aboutus-heading h1{
    font-size: 70px;
}

.aboutus-heading p{
    font-size: 20px;
}
.contactsection{
    display: flex;
    justify-content: center;
    padding: 100px 0;
}
.contact-form{
    width:80%;
    background-color: green;
    border-radius: 20px;
    display: flex;    
}

.contact-form-content{
    width: 50%;
    height: 100%;
    background-color: rgb(31, 63, 31);
    color: white;
    padding: 50px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    gap: 35px;
    font-family: philosopher;

}
.contact-form-content h2{
    font-size: 60px;
    font-weight: 100;
}
.contact-form-content p{
    font-family: lato ,sans-serif;
    color: grey;

}
.contact-form-image{
    width: 50%;
    height: 100%;
   background-image:url(/assets/img/contact-form.jpg);
   background-size: cover;

}
.form{
    background-color: white;
    padding: 30px;
    border-radius: 20px;
}

.form div{
    width: 100%;
    display: flex;
    gap: 10px;
    margin-bottom: 30px;
    
   
}

.form input{
    width: 50%;
    padding: 10px;
    border: none;
    border-bottom: 1px solid black;
   
}

.form textarea{
    width: 100%;
    height: 200px;
    padding: 10px;
    border: none;
    border-bottom: 1px solid black;
}
.button-as{
    width: 100%;
    height: 50px;
    color :white;
    background-color: rgb(49, 93, 49);
    border: none;
    border-radius: 15px;
   
}
.container{
    justify-content: center;
    align-items: center;
    width: 90%;
    margin-left: auto;
    margin-right: auto;
}
.map-section{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 600px;
   
}
iframe{
    width: 100%;
    height: 500px;
    padding-bottom: 100px;
}
.video-section{
    width: 100%;
    height: 700px;
    background-color: rgb(31, 53, 31);
}
.image{
    display: flex;
    justify-content: center;
   align-items: center;
    width: 100%;
   padding-top: 90px;
   
}
.image1{
    width: 100%;
    height: 500px;
    border-radius: 15px;
   
}
.frequent-question{
    width: 100%;
    height: 600px;
    background-color: aqua;
}
.image-part{
    width: 40%;
    height: 600px;
    background-color: bisque;
}


@media screen and (min-width: 321px) and (max-width: 968px) { 

    .contact-form{
        flex-direction: column;
        height: auto;
    }

    .contact-form-image{
        display: none;
    }

    .form{
        height: fit-content;
    }

    .contact-form-content{
        width: 100%;
        height: fit-content;
    }
}