/* ================== */
/* SECTION: Contact = */
/* ================== */
.fdp-contact {
  width: 100%;
  overflow: hidden;
}

.fdp-contact__wrap {
  position: relative;
  width: 100%;
  min-height: 560px;
  background-image: url("../img/contact-bg.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.fdp-contact__blur {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 32%;
  height: 100%;
  z-index: 1;
  background: rgba(0, 0, 0, 0.35);
}

/* content */
.fdp-contact__content {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #fff;
  max-width: 448px;
  width: 100%;
  padding: 16px;
}

.fdp-contact__icon {
  width: 32px;
  height: 32px;
  margin: 0 auto 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.fdp-contact__icon img {
  width: 29px;
  height: 29px;
  object-fit: contain;
}

.fdp-contact__title {
  font-size: 35px;
  font-weight: 700;
  margin: 0 0 10px;
  letter-spacing: 2px;
}

.fdp-contact__desc {
  font-size: 13px;
  line-height: 1.8;
  margin: 0 0 18px;
  opacity: 0.9;
}

/* ============ */
/* Responsive = */
/* ============ */
/* Desktop large: 1200px+ */
@media (min-width: 1200px) {
}

/* Tablet + small desktop: 768px - 1199px */
@media (min-width: 768px) and (max-width: 1199px) {
 .fdp-contact__content {
    max-width: 360px;
  }

  .fdp-contact__blur {
    width: calc(360px + 0px);
    max-width: calc(100% - 0px);
  }
}

/* Mobile: 1px - 767px */
@media (max-width: 767px) {
 .fdp-contact__wrap {
    min-height: 480px;
  }

  .fdp-contact__blur {
    width: 100%;
    left: 0;
    transform: none;
  }

  .fdp-contact__content {
    max-width: 100%;
    padding: 16px;
  }

  .fdp-contact__title {
    font-size: 35px;
  }

  .fdp-contact__desc {
    font-size: 14px;
  }

  .fdp-contact__content .btn-contact {
    display: inline-flex;
    justify-content: center;
  }
}