
/** contact-section **/

.contact-section{
  position: relative;
}

.contact-section .sec-title h2{
  font-size: 48px;
  line-height: 56px;
}

.contact-section .inner-container{
  position: relative;
  display: block;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.06);
  padding: 80px 50px;
}

.contact-section .info-box{
  position: relative;
}

.contact-section .info-box .single-item{
  position: relative;
  display: block;
  padding-left: 95px;
  margin-bottom: 35px;
}

.contact-section .info-box .single-item:last-child{
  margin-bottom: 0px;
}

.contact-section .info-box .single-item .icon-box{
  position: absolute;
  display: inline-block;
  left: 0px;
  top: 8px;
  width: 70px;
  height: 70px;
  line-height: 70px;
  text-align: center;
  border-radius: 50%;
  font-size: 30px;
  color: #fff;
}

.contact-section .info-box .single-item h4{
  display: block;
  font-size: 20px;
  line-height: 30px;
  margin-bottom: 4px;
}

.contact-section .info-box .single-item p{
  line-height: 26px;
  max-width: 190px;
}

.contact-section .info-box .single-item p a{
  color: var(--text-color);
}

.contact-section .info-box .single-item p a:hover{

}

.contact-section .form-inner{
  position: relative;
  display: block;
}

.contact-section .form-inner:before{
  position: absolute;
  content: '';
  background: #e5e5e5;
  width: 1px;
  height: calc(100% - 0px);
  top: 0px;
  left: -120px;
}

.contact-section .form-inner .form-group{
  position: relative;
  margin-bottom: 22px;
}

.contact-section .form-inner .form-group:last-child{
  margin-bottom: 0px;
}

.contact-section .form-inner .form-group label{
  position: relative;
  display: block;
  font-size: 16px;
  line-height: 26px;
  margin-bottom: 4px;
  color: var(--title-color);
}

.contact-section .form-inner .form-group:last-child{
  margin-bottom: 0px;
}

.contact-section .form-inner .form-group input[type='text'],
.contact-section .form-inner .form-group input[type='email'],
.contact-section .form-inner .form-group input[type='tel'],
.contact-section .form-inner .form-group textarea{
  position: relative;
  display: block;
  width: 100%;
  height: 50px;
  font-size: 16px;
  color: var(--text-color);
  padding: 10px 20px;
  border-radius: 50px;
  background: #fff;
  border: 1px solid rgba(229, 229, 229, 1);
  transition: all 500ms ease;
  box-sizing: border-box;
}

.contact-section .form-inner .form-group select{
  position: relative;
  display: block;
  width: 100%;
  height: 50px;
  font-size: 16px;
  color: var(--text-color);
  padding: 10px 20px;
  padding-right: 45px;
  border-radius: 50px;
  background: #fff;
  border: 1px solid rgba(229, 229, 229, 1);
  transition: all 500ms ease;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23333' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 20px center;
  cursor: pointer;
  box-sizing: border-box;
  line-height: 1.5;
  font-family: inherit;
}

.contact-section .form-inner .form-group select:focus{
  outline: none;
  border-color: rgba(229, 229, 229, 1);
}

.contact-section .form-inner .form-group select option{
  padding: 10px;
  font-size: 16px;
}

.contact-section .form-inner .form-group .checkbox-inner{
  display: flex;
  align-items: center;
  gap: 10px;
}

.contact-section .form-inner .form-group .checkbox-inner input[type="checkbox"]{
  width: auto;
  height: auto;
  margin: 0;
  flex-shrink: 0;
  cursor: pointer;
}

.contact-section .form-inner .form-group .checkbox-inner label{
  margin: 0;
  cursor: pointer;
  line-height: 1.5;
}

.contact-section .form-inner .form-group .error-message{
  display: none;
  color: #ff0000;
  font-size: 13px;
  margin-top: 5px;
  line-height: 1.4;
}

.contact-section .form-inner .form-group input.error,
.contact-section .form-inner .form-group select.error{
  border-color: #ff0000 !important;
  background-color: #fff5f5;
}

.contact-section .form-inner .form-group input.error:focus,
.contact-section .form-inner .form-group select.error:focus{
  border-color: #ff0000 !important;
  outline-color: #ff0000;
}

.contact-section .form-inner .form-group textarea{
  height: 150px;
  resize: none;
  border-radius: 20px;
}

.contact-section .form-inner .form-group input:focus,
.contact-section .form-inner .form-group textarea:focus{

}


.google-map .inner-container{
  position: relative;
  display: block;
  border-radius: 10px;
  overflow: hidden;
  height: 500px;
}

.google-map .inner-container iframe{
  position: relative;
  width: 100%;
  height: 500px;
}



/** rtl-css **/

.rtl .contact-section .form-inner:before{
  left: inherit;
  right: -120px;
}

.rtl .contact-section .info-box .single-item{
  padding-left: 0px;
  padding-right: 95px;
}

.rtl .contact-section .info-box .single-item .icon-box{
  left: inherit;
  right: 0px;
}

/** responsive-css **/

@media only screen and (max-width: 1200px){

}

@media only screen and (max-width: 991px){
  .contact-section .form-inner:before{
    display: none;
  }

  .contact-section .info-box{
    margin-bottom: 40px;
  }
}

@media only screen and (max-width: 767px){
  .contact-section .inner-container{
    padding: 70px 30px;
  }
}

@media only screen and (max-width: 599px){

}

@media only screen and (max-width: 499px){
  .contact-section .info-box .single-item{
    padding-left: 0px;
  }

  .rtl .contact-section .info-box .single-item{
    padding-right: 0px;
  }

  .contact-section .info-box .single-item .icon-box{
    position: relative;
    margin-bottom: 20px;
    top: 8px;
  }
}











































