/* ================== */
/* Footer =========== */
/* ================== */
.fdp-footer {
  background: #0b0b0b;
  color: #fff;
  padding: 56px 0 0;
  position: relative;
}

.fdp-footer__inner {
  width: 100%;
  max-width: 960px;
  margin: 0 auto;
  padding: 0 0px 32px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
}

/* LEFT BRAND */
.fdp-footer__brand {
  min-width: 176px;
  text-align: center;
}

.fdp-footer__logo-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.fdp-footer__logo-img {
  height: 28px;
  width: auto;
  display: block;
}

/* LINKS */
.fdp-footer__list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.fdp-footer__list li {
  margin-bottom: 0px;
}

.fdp-footer__list a {
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  opacity: 0.8;
  transition: 0.25s ease;
}

.fdp-footer__list a:hover {
  opacity: 1;
}

/* RIGHT CTA */
.fdp-footer__cta {
  max-width: 320px;
}

.fdp-footer__desc {
  font-size: 11px;
  line-height: 1.3;
  opacity: 0.85;
  margin: 0 0 8px;
}

.fdp-footer__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #B18031;
  color: #fff;
  text-decoration: none;
  height: 28px;
  padding: 0 8px;
  font-size: 13px;
  font-weight: 600;
  transition: 0.25s ease;
}

.fdp-footer__btn:hover {
  background: #977959;
}

.fdp-footer__btn.arrow {
  display: inline-flex;
  align-items: center;
}

.fdp-footer__btn .arrow svg {
  width: 13px;
  height: 13px;
  display: block;
}

/* SCROLL TOP BUTTON */
.fdp-footer__top {
  position: fixed;
  bottom: 140px;
  right: 24px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  color: #b68a2b;
  text-decoration: none;
  font-size: 30px;
  font-weight: 400;
  border: 2px solid #b68a2b;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s ease;
  z-index: 999;
  transform: translateY(10px);
}

.fdp-footer__top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* BOTTOM COPYRIGHT */
.fdp-footer__bottom {
  text-align: center;
  padding: 14px 16px;
}

.fdp-footer__bottom p {
  margin: 0;
  font-size: 9px;
  opacity: 0.55;
}

/* ============ */
/* Responsive = */
/* ============ */
/* Desktop large: 1200px+ */
@media (min-width: 1200px) {
}

/* Tablet + small desktop: 768px - 1199px */
@media (min-width: 768px) and (max-width: 1199px) {
 .fdp-footer__inner {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    gap: 24px;
    padding: 0 80px 32px;
  }

  .fdp-footer__brand {
    min-width: auto;
    text-align: left;
  }

  .fdp-footer__logo-img {
    height: 28px;
  }

  .fdp-footer__cta {
    max-width: 480px;
    width: 100%;
  }

  .fdp-footer__btn {
    justify-content: center;
  }
}

/* Mobile: 1px - 767px */
@media (max-width: 767px) {
 .fdp-footer__inner {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    gap: 24px;
    padding: 0 32px 32px;
  }

  .fdp-footer__brand {
    min-width: auto;
    text-align: left;
  }

  .fdp-footer__logo-img {
    height: 24px;
  }

  .fdp-footer__cta {
    max-width: 480px;
    width: 100%;
  }

  .fdp-footer__btn {
    justify-content: center;
  }
}