
.map-section{
    margin-bottom:40rem;
}
.contactus-section{
    display: flex;
    margin: 5% 15%;
    flex-wrap: wrap;
    flex-direction: column;
    border-radius: 10px;
    background-color: #ffffff;
    padding: 4rem 3rem;
    box-shadow: 0px 10px 49px 0px rgba(12, 0, 46, 0.1); 
    position: absolute;  
    top: 22rem;
}
.contactus-title>h2{
    color: #3b414d;
    font-weight: bold;
    line-height: 1.371;
    text-align:center;
}
.contactus-title>p{
    color: #3b414d;
    line-height: 2.111;
    text-align: center;   
}
.contactus-section-cart{
    display:flex;
    flex-wrap: wrap;
    gap:10%;
    margin-top: 5%;
}

/* * */
.contacts{
    width: 35%;
}
.contacts>h3,
.contactus-form>h3{
    color: #1e334d;
    font-weight: bold;
    line-height: 2.917;   
}
.contacts>div{
    display: flex;
    flex-direction: row;
    align-items: center;
    gap:1rem;
}
.contacts>div>p{
    color: #000000;
    line-height: 2.118;    
}
.contacts>p{
    color: #1d2a3b;
    line-height: 2;  
}
/* * */
.contactus-form{
    width: 55%;
}
.contactus-form>form{
   display: flex;
   flex-direction: row;
   flex-wrap: wrap;
   justify-content: end;
}
.name-input,
.email-input{
    width: 45%;
    display: flex;
    flex-direction: column;
}
.name-input{
   margin-left: 10%;
}
.message-input{
    width: 100%;
    display: flex;
    flex-direction: column;
    margin:10% 0;
}
.name-input>label,
.email-input>label,
.message-input>label{
    font-size:0.8rem;
    font-family: "IRANSans";
    color:#acacac;
    line-height: 1.846;   
}
.name-input>input,
.email-input>input,
.message-input>input{
  border: none;
  border-bottom:1px solid  #acacac;
  font-size: 1rem;
  font-family: "IRANSans";
  color: #202124;
  line-height: 1.5;
}

.name-input>input:focus,
.email-input>input:focus,
.message-input>input:focus{
  outline: #000000;
}

.send-btn{
    float: left;
    background-color: #3b414d;
    box-shadow: 0px 6px 18px 0px rgba(0, 0, 0, 0.12);
    font-size:1.25rem;
    font-family: "IRANSans";
    color: #ffffff; 
    padding:0.5rem 3rem;
    border-radius: 43px; 
    border: none;
}
.send-btn:hover{
    background-color: #1d2020;
}

  /****************************************************responsive*****************************************/

@media (max-width:940px) {

    .contactus-form {
        width: 82%;
        margin-top: 2rem;
    }
    .contactus-form>h3{
        text-align: center;
        margin-bottom: 1rem;
    }
    .contactus-section-cart{
        flex-direction: column;
        align-items: center;
    }
    .send-btn{
        float: none;
        margin: 0 auto;
    }
    .contacts{
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
}   