.contactPage {
  position: relative;
  background: url(../images/cover-bg.png) #bfbba0;
  background-size: cover;
  background-position: center center;
  padding-bottom: 48px;
}
@media (min-width: 768px) {
  .contactPage .container {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
  }
}
@media (min-width: 768px) {
  .contactPage__text {
    width: 48%;
  }
}
@media (min-width: 1200px) {
  .contactPage__text {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
}
.contactPage__title {
  font-family: var(--font-neverletgo);
  color: var(--color-primary);
  font-size: 36px;
  line-height: 1;
  margin-bottom: 24px;
}
@media (min-width: 1200px) {
  .contactPage__title {
    width: 100%;
  }
}
.contactPage__time {
  font-size: 18px;
  margin-bottom: 42px;
}
.contactPage__time strong {
  font-size: 20px;
  text-transform: uppercase;
}
.contactPage__address {
  margin-bottom: 56px;
}
.contactPage__social {
  margin-top: 24px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.contactPage__social a {
  width: 28px;
  height: 28px;
}
.contactPage__social a svg {
  fill: var(--color-tertiary);
}
.contactPage__form {
  margin-bottom: 48px;
}
.contactPage__form fieldset {
  padding: 0;
  border: none;
}
.contactPage__form label {
  display: block;
  color: #2E2D11;
}
.contactPage__form input, .contactPage__form textarea {
  font-size: 18px;
  font-family: var(--font-raleway);
  color: #2E2D11;
  background: none;
  border: 0;
  border-bottom: solid 1px #2E2D11;
  margin-bottom: 16px;
  padding: 10px 12px;
  width: 100%;
}
@media (min-width: 1024px) {
  .contactPage__form .frm_fields_container {
    display: flex !important;
    flex-wrap: wrap;
    justify-content: space-between;
  }
}
@media (min-width: 1024px) {
  .contactPage__form .frm_top_container {
    width: 48% !important;
  }
}
@media (min-width: 1024px) {
  .contactPage__form #frm_field_5_container {
    width: 100% !important;
  }
}
.contactPage__form .frm_button_submit {
  border: 0;
  background: var(--color-primary);
  color: white;
  text-transform: uppercase;
  padding: 12px 24px;
}
.contactPage__map {
  display: none;
  margin-top: 56px;
  padding: 30px;
  position: relative;
}
.contactPage__map::before {
  content: "";
  display: block;
  height: calc(90% - 60px);
  width: calc(50% - 0px);
  position: absolute;
  bottom: 0;
  left: 0;
  border: solid 1px var(--color-tertiary);
  z-index: 1;
}
.contactPage__map::after {
  content: "";
  display: block;
  height: calc(90% - 60px);
  width: calc(50% - 60px);
  position: absolute;
  top: 0;
  right: 0;
  border: solid 1px var(--color-tertiary);
  z-index: 1;
}
.contactPage__map img {
  position: relative;
  z-index: 2;
}
@media (min-width: 768px) {
  .contactPage__map {
    display: block;
    width: 45%;
  }
}