
/** contact-info-section **/

.contact-info-section{
  position: relative;
}

.info-block-one .inner-box{
  position: relative;
  display: block;
  background: #fff;
  box-shadow: 0px 4px 30px rgba(205, 192, 192, 0.25);
  border-radius: 0px 0px 20px 20px;
  padding: 29px 10px 29px 90px;
  border: 3px solid #fff;
  z-index: 1;
  border-top: none;
  overflow: hidden;
  transition: all 500ms ease;
}

.info-block-one .inner-box:hover{
  border-color: #DAEBFB;
}

.info-block-one .inner-box:before{
  position: absolute;
  content: '';
  background: var(--secondary-color);
  width: 100%;
  height: 0%;
  left: 0px;
  top: 0px;
  z-index: -1;
  transition: all 500ms ease;
}

.info-block-one .inner-box:hover:before{
  height: 100%;
}

.info-block-one .inner-box .icon-box{
  position: absolute;
  display: inline-block;
  left: 18px;
  top: 22px;
  width: 56px;
  height: 56px;
  line-height: 52px;
  font-size: 22px;
  border: 3px solid #FFFFFF;
  border-radius: 50%;
  text-align: center;
  background: var(--theme-color);
  color: #fff;
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.10);
  z-index: 1;
  transition: all 500ms ease;
}

.info-block-one .inner-box:hover .icon-box{
  background: #fff !important;
  border-color: #DAEBFB;
  color: var(--secondary-color);
}

.info-block-one .inner-box span{
  position: relative;
  display: block;
  font-size: 14px;
  line-height: 24px;
  font-family: var(--secondary-font);
  transition: all 500ms ease;
}

.info-block-one .inner-box h4{
  position: relative;
  display: block;
  font-size: 20px;
  line-height: 15px;
  font-weight: 700;
  transition: all 500ms ease;
}

.info-block-one .inner-box:hover span,
.info-block-one .inner-box:hover h4{
  color: #fff;
}

.contact-info-section.home_3{
  background: #F5F8FA;
}


/** contact-info-two **/

.contact-info-two {
    position: relative;
}

.info-block-two{
  position: relative;
}

.info-block-two .inner-box {
    position: relative;
    display: flex;
    background: #fff;
    border-radius: 20px;
    padding: 20px 10px;
    gap: 20px;
    flex-direction: row;
    align-items: center;
}

.info-block-two .inner-box .icon-box {
    position: relative;
    display: flex;
    width: 75px;
    height: 75px;
    min-width: 75px;
    line-height: 1;
    box-shadow: 0px 4px 30px rgba(205, 192, 192, 0.15);
    border-radius: 18px;
    background: var(--secondary-color);
    align-items: center;
    justify-content: center;
}
.inner-box{
    background-color: #fff;
    padding: 20px;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

.info-block-two .inner-box h3 {
    position: relative;
    display: block;
    font-size: 28px;
    line-height: 1;
    font-weight: 700;
    margin-bottom: 5px;
}

.info-block-two .inner-box p a{
  color: var(--text-color);
  transition: color 0.3s ease, text-decoration 0.3s ease; 
}

.info-block-two .inner-box p a:hover{
  color: #d4b843;
}

.contact-info-two .pattern-layer {
    position: absolute;
    top: -10px;
    right: 0px;
    width: 510px;
    height: 452px;
    background-repeat: no-repeat;
    -webkit-animation: zoom-fade 7s infinite linear;
    animation: zoom-fade 7s infinite linear;
}





/** RTL-CSS **/

.rtl .info-block-one .inner-box{
  padding-left: 10px;
  padding-right: 90px;
}

.rtl .info-block-one .inner-box .icon-box{
  left: inherit;
  right: 18px;
}

.social {
    width: 45px !important;
    height: 45px !important;
    min-width: 45px !important;
    border-radius: 10px !important;
}
.social i{
  font-size: 20px !important;
}

/** RESPONSIVE-CSS **/

@media only screen and (max-width: 1599px){


}


@media only screen and (max-width: 1200px){


}

@media only screen and (max-width: 991px){
  .con-form{
    margin-top: 30px;
  }

  .info-block-one .inner-box{
    margin-bottom: 30px;
  }


}

@media only screen and (max-width: 767px){

  .contact-info-two{
    padding-top: 70px;
  }

}

@media only screen and (max-width: 599px){



}

@media only screen and (max-width: 499px){



}












































