
*
{
  margin: 0;
  padding: 0;
}
/*Home*/
body { 
  font-size: 1rem;
  background-color: #EEEEEE;

}
.body-img{
    text-align: center;
    font-size: 18px;
    width: 100%;
    margin-top: auto;
  }
.container{
    background-color: #fff;
    margin-top: 20px;
    width: 100%;
    display: flex;
  }
  .content{
    padding: 2em;
    font-size: 1.5rem;
    
  }
  .content .col-md-6{
    margin-top: 20px;
    padding-bottom: 10px;
    margin-left: 5em;
  }
  .content .col-md-6 .about-title{
    font-size: 2rem;
    font-weight: 600;
    margin-top: 20px;
    padding-bottom: 10px;
    margin-left: 3em;
  }
  .content .col-md-6 ul li{
    font-size: 1.5rem;
    margin-left: 5em;
  }
  .content .col-md-7{
    width: 100%;
    float: right;
  }
/*--------Contact US--------------------------*/
.contactUs{
  position: relative;
  width: 100%;
  padding: 40px 100px;
}
.contactUs .title{
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 2em;
}
.form{
  grid-area: form;
  
}
.info{
  grid-area: info;
}
.map{
  grid-area: map;
}
.contact{
  padding: 40px;
  background-color: rgb(246, 246, 246);
  box-shadow: 0 5px 35px rgba(5, 5, 5, 0.15);
} 
.box{
  position: relative;
  display: grid;
  grid-template-columns: 2fr 1fr;
  grid-template-rows: 5fr 6fr;
  grid-template-areas:
  "form info"
  "form map";
  grid-gap: 20px;
  margin-top: 20px;
}
.contact h3{
  color: rgb(27, 28, 27);
  font-weight: 500;
  font-size: 1.4rem;
  margin-bottom: 10px;
}
/* form */
.form_body{
  position: relative;
}
.form_body::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("../img/loading.gif") center / 300px no-repeat;
  opacity: 0;
  visibility: hidden;
  transition: all 0.6s ease 0s;
}
.form_body._sending::after{
  opacity: 1;
  visibility: visible;
}
.formBox{
  position: relative;
  width: 100%;
}
.formBox .row50{
  display: flex;
  gap: 20px;
}
.inputBox{
  display: flex;
  flex-direction: column;
  margin-bottom: 10px;
  width: 50%;
}
.formBox .row100 .inputBox{
  width: 100%;
}
.inputBox span{
  color: #302929;
  margin-top: 10px;
  margin-bottom: 5px;
  font-weight: 500;
}
.inputBox input{
  padding: 10px;
  font-size: 1.1em;
  outline: none;
  border: 2px solid rgb(145, 135, 135);
}
.form_input._error{
  box-shadow: 0 0 4px red;
}
.inputBox textarea{
  padding: 10px;
  font-size: 1.1em;
  outline: none;
  border: 2px solid rgb(145, 135, 135);
  resize: none;
  min-height: 220px;
  margin-bottom: 10px;
}
.form_button{
  background: rgb(83, 72, 72);
  color: rgb(254, 254, 252);
  border: none;
  font-size: 1.1em;
  max-width: 130px;
  font-weight: 120px;
  cursor: pointer;
  padding: 14px 15px;
  transition: background-color 0.6s ease 0s;
  position: relative;
  top: 0;
}
.form_button:hover{
  background: rgb(49, 43, 43);
}
.form_button:active{
  top: 3px;

}
/* Info */
.info{
  background: #4f4d4d;
}
.info h3{
  color: #fff;
}
.info .infoBox div{
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}
.info .infoBox div span{
  min-width: 30px;
  height: 10px;
  color: #fff;
  background: #4f4d4d;
  justify-content: center;
  align-items: center;
  font-size: 1.5em;
  border-radius: 40%;
  margin-right: 15px;
}
.info .infoBox div p{
  color: #fff;
  font-size: 1rem;
  margin-top: 1px;
}
.info .infoBox div a{
  color: #fff;
  text-decoration: none;
  font-size: 1rem;
  margin-top: 10px;
}
.map{
  padding: 0;
}
.map iframe{
  width: 100%;
  height: 100%;
}

/*media*/
@media (max-width: 937px){
  .contactUs {
    padding: 20px;
  }
  .box{
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    grid-template-areas:
        "form"
        "info"
        "map";
  }
  .map {
  padding: 0;
  min-height: 300px;
  }
  .formBox .row50 {
    padding: 0;
    display: flex;
    gap: 2px;
    flex-direction: column;
  }
  .inputBox {
    width: 100%;
  }
  .contact {
    padding: 20px;
  }
  .map {
    min-height: 300px;
    padding: 0px;
  }
}