/* contact page intro */

.contact-page-intro {
    background-color: rgba(0, 0, 0, 0.7);
    background-image: url('../images/em-intro-bg.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    background-blend-mode: overlay;
    color: var(--color-white);
}
.contact-page-heading h2{
    color: var(--color-white);
    margin-bottom: 15px;
}

/* reach out section */

.reach-out-texts,
.form-container {
  width: 48%;
}
.reach-out-heading {
  margin-bottom: 40px;
}
.reach-out-heading h3{
  margin-bottom: 15px;
}
.reach-out-info {
  display: flex;
  flex-direction: column;
  gap:20px;
  margin-bottom: 40px;
}
.reach-out-info p strong{
  color: var(--heading-text-color);
}
.fs-form {
  background-color: #fff;
  padding: 30px;
  border-radius: 20px;
  border: 1px solid #ccc;
  /* box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1); */
}
.fs-button-group {
  text-align: center;
}
.fs-button-group button{
  background-color: #ff3b3b !important;
}

/* full width map section */

.full-width-map.section-spacing {
    padding-top: 0 !important;
}
.iframe-container{
    border-radius: 30px;
    overflow: hidden;
    border: 8px solid white;
    box-shadow: 0 10px 40px 0 #07183212;
}


@media (max-width: 770px) {
    /* reach out section */

.reach-out-texts,
.form-container {
  width: 100%;
}
.reach-out-texts {
  margin-bottom: 40px;
}
}