
/** contact-section **/

.contact-section{
  position: relative;
}

.contact-section .content-box{
  position: relative;
  display: block;
}

.contact-section .content-box .info-list li{
  position: relative;
  display: block;
  margin-bottom: 20px;
  padding-left: 34px;
}

.contact-section .content-box .info-list li:last-child{
  margin-bottom: 0px;
}

.contact-section .content-box .info-list li .icon{
  position: absolute;
  left: 0px;
  top: 2px;
  font-size: 20px;
  color: var(--theme-color);
}

.contact-section .content-box .info-list li:last-child .icon{
  font-size: 14px;
}

.contact-section .content-box .info-list li h4{
  display: block;
  font-size: 20px;
  line-height: 26px;
  font-weight: 600;
  margin-bottom: 8px;
}

.contact-section .content-box .info-list li p{
  display: block;
  font-size: 16px;
  line-height: 26px;
}

.contact-section .content-box .info-list li p a{
  display: inline-block;
  color: var(--text-color);
}

.contact-section .content-box .info-list li p a:hover{
  text-decoration: underline;
}

.contact-section .form-inner{
  position: relative;
  display: block;
  background: #FFFFFF;
  box-shadow: 0px 0px 120px rgba(0, 0, 0, 0.1);
  border-radius: 20px;
  padding: 70px;
}

.contact-section .cms-alert{
  border-radius: 16px;
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 22px;
  padding: 14px 18px;
}

.contact-section .cms-alert--success{
  background: #edf8ea;
  border: 1px solid #b9dfb0;
  color: #1d5d21;
}

.contact-section .cms-alert--error{
  background: #fff0f0;
  border: 1px solid #efc3c3;
  color: #a23636;
}

.contact-form-loader{
  align-items: center;
  background: rgba(16, 29, 64, 0.72);
  border-radius: 20px;
  display: flex;
  gap: 16px;
  inset: 24px;
  justify-content: center;
  padding: 24px;
  position: absolute;
  text-align: left;
  z-index: 3;
}

.contact-form-loader__spinner{
  animation: contactSpin 0.9s linear infinite;
  border: 3px solid rgba(255, 255, 255, 0.2);
  border-top-color: #ffffff;
  border-radius: 50%;
  flex: 0 0 auto;
  height: 48px;
  width: 48px;
}

.contact-form-loader__content strong{
  color: #ffffff;
  display: block;
  font-size: 20px;
  line-height: 1.2;
  margin-bottom: 6px;
}

.contact-form-loader__content span{
  color: rgba(255, 255, 255, 0.82);
  display: block;
  font-size: 14px;
  line-height: 1.7;
  max-width: 280px;
}

@keyframes contactSpin{
  from{
    transform: rotate(0deg);
  }
  to{
    transform: rotate(360deg);
  }
}


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

.google-map-section .google-map-embed{
  position: relative;
  width: 100%;
  height: 620px;
  overflow: hidden;
}

.google-map-section .google-map-embed iframe{
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}












































