.hero-sec{
    padding: 60px 0px;
    background: url('../assets//images/contact/bg-image.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    color: var(--white);
}
.hero-sec h1{
    font-size: 38px;
    line-height: 44px;
    font-weight: 700;
    margin-bottom: 20px;
}
.hero-sec p{
    max-width: 700px;
    margin-bottom: 30px;
}
.hero-sec .contacts{
  display: flex;
  gap: 5px;
}
.hero-sec .button-part a{
    padding: 10px 15px;
    transition: all 0.5s ease-in-out;
}
.hero-sec .button-part a:hover{
    background-color: var(--white);
    color: var(--safron);

}
/*  form  part */
.form-sec{
 padding : 60px 0px;
 text-align: center;
}
.form-sec h2{
    color: var(--safron);
    font-size: 36px;
    line-height: 44px;
    font-weight: 700;
}
.form-sec  .form-part{
    display: flex;
    justify-content: center;
    align-items: center;
}
.form-sec .form-part form{
    width: 90%;
}
.form-sec .form-part label{
    align-self: baseline;
    font-size: 24px;
    color: var(--green);
    line-height: 36px;
    margin-bottom: 4px;
}
.form-sec .form-group{
    margin-bottom: 20px;
}
.form-sec .form-part label span{
    color: red;
}
.form-sec .form-part .input-text,
.form-sec .form-part textarea{
    padding:10px 2px ;
    border: 2px solid var(--green);
    border-radius: 8px;
}
.form-sec .form-part textarea{
    height: 150px;
}
.form-sec .btn-submit{
    width: 25%;
    background: var(--safron);
    color: var(--white);
    font-size: 26px;
    padding: 4px 20px;
    font-weight: 700;
}
/* map-section */
.map-section{
    margin-bottom: -6px;
}
.map-section iframe{
    border-radius: 0;
}
@media screen  and (max-width:767px) {
    .form-sec .btn-submit    {
        width: 100%;
    }
}

@media screen and (max-width:575px) {
    
    .hero-sec {
        padding: 30px 0;
    }
    .hero-sec h1{
        font-size: 26px;
        margin-bottom: 5px;
    }
    .hero-sec .contacts{
        flex-direction: column;
        gap: 8px;
        justify-content: center;
        align-items: center;
      }
      .hero-sec .button-part{
        width: 100%;
        text-align: center;
      }

    .hero-sec .button-part a {
        padding: 5px 10px;
        font-size: 14px;
        display: block;
    }
    
}