/**Contact Section**/
.path-contact-us #contact{
  padding: 0;
}
.path-contact-us .landing-page-banner img{
  max-height: 500px;
  object-fit: cover;
}
.contact-section .contact-card-body{
  border-radius: var(--radius);
  padding: 40px;
  background: rgba(211, 31, 42, 0.03);
  border: 1px solid rgba(211, 31, 42, 0.12);
  box-shadow: var(--shadow-md);
}
.contact-section .contact-text{
  font-family: var(--hedaing-font);
  font-size: 24px;
  line-height: 32px;
  font-weight: 700;
}
.contact-section .contact-item{
  gap: 15px;
  margin-bottom: 20px;
}
.contact-section .card-icon-wrapper{
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background-color: var(--primary-red) !important;
  background-size: 20px !important;
}
.contact-section .contact-item .lbl{
  font-size: 15px;
  line-height: 24px;
  font-family: var(--hedaing-font);
}
.contact-section a,
.contact-section address,
.contact-section .contact-item p{
  font-size: 15px;
  line-height: 24px;
  color: #6b7280;
}
.contact-section a:hover{
  color: var(--primary-red);
}
.contact-section .contact-item-address .card-icon-wrapper{
  background: url(../../../images/icons/contact/address.svg) no-repeat center;
}
.contact-section .contact-item-email .card-icon-wrapper{
  background: url(../../../images/icons/contact/email.svg) no-repeat center;
  background-size: 25px !important;
}
.contact-section .contact-item-phone .card-icon-wrapper{
  background: url(../../../images/icons/cta/phone.svg) no-repeat center;
}
.contact-section .contact-item-whatsapp .card-icon-wrapper{
  background: url(../../../images/icons/cta/whatsapp.svg) no-repeat center;
  background-size: 25px !important;
}
.contact-section .contact-item-hours .card-icon-wrapper{
  background: url(../../../images/icons/contact/hours.svg) no-repeat center;
}
.contact-form-wrapper {
  background: var(--white);
  border-radius: var(--radius);
  padding: 40px;
  box-shadow: var(--shadow-sm);
  border: 1px solid #eef0f3;  
}
.contact-section .webform-submission-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 24px;
  row-gap: 22px;
}
.contact-section .webform-submission-form > * {
  margin: 0;
}
.contact-section .js-form-item-message,
.contact-section #edit-actions {
  grid-column: 1 / -1;
  margin: 0;
}
.contact-section .webform-submission-form label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  font-size: 15px;
  line-height: 24px;
  font-family: var(--hedaing-font);
  color: var(--text-color);
}
.contact-section .webform-submission-form textarea.form-textarea,
.contact-section .webform-submission-form select.form-select,
.contact-section .webform-submission-form input.form-control{
  width: 100%;
  box-sizing: border-box;
  padding: 14px 22px;
  font-size: 15px;
  color: #333;
  background: #fff;
  border: 1px solid #e2e2e2;
  border-radius: 10px;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.contact-section .webform-submission-form input::placeholder,
.contact-section .webform-submission-form textarea::placeholder {
  color: #9a9a9a;
}
.contact-section .webform-submission-form textarea.form-textarea:focus,
.contact-section .webform-submission-form select.form-select:focus,
.contact-section .webform-submission-form input.form-control:focus{
  border-color: #d92027;
  box-shadow: 0 0 0 3px rgba(217, 32, 39, 0.1);
}
.contact-section .webform-submission-form .form-textarea-wrapper{
  width: 100%;
}
.contact-section .webform-submission-form .form-actions input:focus,
.contact-section .webform-submission-form .form-actions input{
  border-radius: 50px;
  padding: 7.5px 18px 7.5px 38px;
  font-family: var(--hedaing-font);
  font-size: 15px;
  line-height: 25px;
  color: #fff;
  font-weight: 600;
  display: inline-flex;
  min-height: 40px;
  width: 100%;
  background-color: var(--primary-red);
  border: 0;
}
.contact-section .webform-submission-form .form-actions input:hover{
  transform: translateY(-2px);
  background-color: #a8131c;
}
.contact-section .contact-map iframe{
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}

/*-- Responsive --*/
@media (min-width: 768px) and (max-width: 991.98px) {
  body .contact-section .contact-card-body{
    display: flex;
    flex-wrap: wrap;
  }
  body .contact-section .contact-card-body > h3{
    width: 100%;
  }
  body .contact-section .contact-card-body > .contact-item{
    width: 50%;
  }
  body .contact-section .contact-card-body > .contact-item:last-child p,
  body .contact-section .contact-card-body > .contact-item:last-child{
    margin-bottom: 0;
  }
}
@media (max-width: 767.98px) {
  body .contact-form-wrapper{
    padding: 30px;
  }
  body #contact .webform-submission-form{
    grid-template-columns: 1fr;
  }
  body .contact-section .contact-card-body > .contact-item:last-child p,
  body .contact-section .contact-card-body > .contact-item:last-child{
    margin-bottom: 0;
  }
}