
/** contact-section **/

.contact-section{
  position: relative;
}

.contact-section .content-box{
  position: relative;
  display: block;
}

.contact-section .content-box h2{
  font-size: 50px;
  line-height: 50px;
  margin-bottom: 31px;
}

.contact-section .content-box .info-box h3{
  display: block;
  font-size: 26px;
  line-height: 30px;
  margin-bottom: 24px;
}

.contact-section .content-box .info-box .info-list li{
  position: relative;
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 18px;
  font-size: 18px;
  line-height: 26px;
  /* font-family: var(--title-font); */
  font-weight: 500;
  color: var(--title-color);
}

.contact-section .content-box .info-box .info-list li:last-child{
  margin-bottom: 0px;
}

.contact-section .content-box .info-box .info-list li i{
  position: relative;
  display: inline-block;
  width: 60px;
  height: 60px;
  line-height: 60px;
  border: 1px solid #000;
  border-radius: 20px;
  text-align: center;
  font-size: 24px;
  color: var(--title-color);
  box-shadow: 3px 3px 0px 0px #000;
  min-width: 60px;
}

.contact-section .content-box .info-box .info-list li a{
  display: inline-block;
  color: var(--title-color);
}

.contact-section .content-box .info-box .info-list li a:hover{
  color: #EF721F;
}

.contact-section .content-box .social-links{
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
}

.contact-section .content-box .social-links li a{
  position: relative;
  display: inline-block;
  width: 44px;
  height: 44px;
  line-height: 46px;
  border: 1px solid var(--secondary-color);
  border-radius: 50%;
  text-align: center;
  font-size: 21px;
  color: var(--title-color);
  z-index: 1;
}

.contact-section .content-box .social-links li a:hover{
  color: #fff;
  border-color: transparent;
}

.contact-section .content-box .social-links li a:before{
  position: absolute;
  content: '';
  background: var(--theme-color);
  width: calc(100% + 2px);
  height: calc(100% + 2px);
  left: -1px;
  top: -1px;
  border-radius: 50%;
  z-index: -1;
  transform: scale(0,0);
  transition: all 500ms ease;
}

.contact-section .content-box .social-links li a:hover:before{
  transform: scale(1,1);
}

.contact-section .form-inner{
  position: relative;
  display: block;
  background: #fff;
  border: 1px solid #000;
  box-shadow: 5px 5px 0px 0px #000;
  border-radius: 30px;
  padding: 45px 40px 50px 40px;
}

.contact-section .form-inner h3{
  display: block;
  font-size: 30px;
  line-height: 30px;
  margin-bottom: 25px;
}

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

.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: 28px;
  color: var(--title-color);
  margin-bottom: 6px;
}

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

.contact-section .form-inner .form-group input:focus,
.contact-section .form-inner .form-group textarea:focus{
  border-color: #EF721F;
}

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

.contact-section .pattern-layer{
  position: absolute;
  left: 0px;
  top: 400px;
  right: 0px;
  bottom: 0px;
  width: 1300px;
  height: 1300px;
  background-repeat: no-repeat;
  background-position: center;
  margin: 0 auto;
  z-index: -1;
}

.google-map-section{
  position: relative;
}

.google-map-section .map-inner{
  position: relative;
  height: 650px;
  margin-bottom: -70px;
}

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



/** rtl-css **/


.rtl .contact-section .content-box{
  margin-right: 0px;
  margin-left: 70px;
}


.widget__search--form {
  position: relative;
}

.widget__search--form__input {
  width: 100%;
  height: 4.5rem;
  padding: 0 6rem 0 1.2rem;
  border-radius: 0.5rem;
  border: 1px solid var(--border-color2);
}

@media only screen and (min-width: 992px) {
  .widget__search--form__input {
    font-size: 1.5rem;
  }
}

.widget__search--form__btn {
  position: absolute;
  top: 0;
  right: 0;
  border: 0;
  /* background: var(--secondary-color);
  color: var(--white-color); */
  padding: 0;
  /* width: 4.5rem;
  height: 100%; */
  border-radius: 0 0.5rem 0.5rem 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}


/** responsive-css **/

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

}

@media only screen and (max-width: 991px){
  .contact-section .content-box{
    margin-right: 0px;
    margin-bottom: 40px;
  }

  .rtl .contact-section .content-box{
    margin-left: 0px;
  }
}

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

  .contact-section .content-box h2{
    font-size: 40px;
    line-height: 50px;
  }
}





@media only screen and (max-width: 499px){
  .contact-section .content-box .info-box .info-list li br{
    display: none;
  }

  .contact-section .form-inner{
    padding-left: 30px;
    padding-right: 30px;
  }
}









































