@keyframes yellow-shadow-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(var(--bs-primary-rgb), 0.5);
  }
  70% {
    box-shadow: 0 0 0 20px rgba(var(--bs-primary-rgb), 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(var(--bs-primary-rgb), 0);
  }
}
@keyframes black-shadow-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(21, 21, 21, 0.22);
  }
  50% {
    box-shadow: 0 0 0 20px rgba(var(--bs-primary-rgb), 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(var(--bs-primary-rgb), 0);
  }
}
@keyframes orange-shadow-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(21, 21, 21, 0.22);
  }
  50% {
    box-shadow: 0 0 0 20px rgba(var(--bs-primary-rgb), 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(var(--bs-primary-rgb), 0);
  }
}
@keyframes orange-text-pulse {
  0% {
    color: var(--bs-body-color);
  }
  50% {
    color: var(--bs-link-color);
  }
  100% {
    color: var(--bs-body-color);
  }
}
@keyframes fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fade-out {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
#contact-page-section {
  width: 100%;
  display: block;
}
@media (min-width: 992px) {
  #contact-page-section {
    display: flex;
  }
}
#contact-page-section.partial-bg {
  border-top: 1px solid var(--theme-surface-2);
  background-color: var(--theme-surface-2);
}
#contact-page-section #contact-form-section {
  text-align: center;
  padding: 25px 0 25px 0;
}
@media (min-width: 576px) {
  #contact-page-section #contact-form-section {
    padding: 25px 50px 25px 50px;
  }
}
#contact-page-section #contact-form-section .title {
  color: var(--bs-link-color);
  text-transform: capitalize;
  padding-top: 10px;
  font-weight: 700;
  font-size: 2.34375rem;
}
#contact-page-section #contact-form-section .sub_title {
  margin-bottom: 1rem;
  font-weight: 300;
  line-height: 0.6;
  text-transform: capitalize;
  font-size: 1.875rem;
}
#contact-page-section #contact-form-section p.description {
  padding-top: 15px;
  padding-bottom: 15px;
}
#contact-page-section #contact-form-section p.description a {
  color: var(--bs-link-color);
  transition: 220ms ease-out;
}
#contact-page-section #contact-form-section p.description a:hover {
  color: var(--bs-primary);
  text-decoration: none;
}
#contact-page-section #google-map {
  height: 350px;
}
@media (min-width: 992px) {
  #contact-page-section #google-map {
    height: 100%;
  }
}
