/*banner*/
.banner__contact{
    height: 450px;
}
.banner__contact img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
/*end banner*/

/*contact*/
.contact{
    padding: 30px 0;
    background-color: #f7f5f3;
}
.contact .main__contact{
    width: 85%;
    margin: auto;
}
.contact__content{
    background-color: #fff;
    padding: 15px;
}
.img__icon{
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 2px solid #007d70;
    display: flex;
    justify-content: center;
    align-items: center;
}
.contact__content ul li{
    display: flex;
    gap: 15px;
    align-items: center;
    margin-bottom: 30px;
}
.img__icon i{
    color: #007d70;
    font-size: 30px;
}
.contact__info h4{
    font-size: 20px;
    color: #000;
    font-weight: 400;
    text-transform: uppercase;
    margin-bottom: 0;
}
.contact__info p{
    font-size: 16px;
    color: #555555;
    line-height: 22px;
    font-weight: 600;
    margin-bottom: 0;
}
/*end contact*/

/*form contact*/
.your__detail{
    padding: 15px;
    background-color: #fff;
}
.your__detail h4{
    font-size: 18px;
    color: #000;
    font-weight: 600;
}
.form__your__detail{
    display: flex;
    flex-wrap: wrap;
}
.form-contact label{
    width: 40%;
    font-weight: 600;
}
.form-contact input,
.form-contact select{
    width: 60%;
}
.btn-contact{
    text-align: right;
}
.btn-contact button{
    background-color: #007d70;
    color: #fff;
    border: none;
}
.btn-contact button:hover,
.btn-contact button:active{
    background-color: #007d70 !important;
}
/*end form contact*/

@media only screen and (max-width: 1200px){
    .contact .main__contact{
        width: 95%;
    }
}