/* Fonts */
@font-face {
  font-family: "MillerDisplay";
  src: local("MillerDisplay Light"), local("MillerDisplay-Light"),
    url("../Fonts/MillerDisplay/MillerDisplay-Light.woff2") format("woff2"),
    url("../Fonts/MillerDisplay/MillerDisplay-Light.woff") format("woff");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 13;
  font-size: 16px;
  text-transform: uppercase;
  line-height: 1.5;
  color: #fff;
  letter-spacing: 1.5px;
  transition: background-color 0.3s ease;
}

.site-header__inner {
  display: flex;
  align-items: center;
  grid-gap: 50px;
  padding: 12px 22px;
  position: relative;
  z-index: 2;
  transition: background-color 0.3s ease;
}

.is-open-submenu .site-header__inner,
.site-header-dark-bg .site-header__inner,
.is-scrolled .site-header__inner {
  background-color: #333f48;
}

.site-header__right,
.site-header__left {
  flex: 1;
}

.site-header__dropdown-list .button,
.site-header a {
  color: #fff;
  font-size: 16px;
  text-transform: uppercase;
  line-height: 1.5;
  text-decoration: none;
  letter-spacing: 1.5px;
}

.site-header ul li,
.site-header ul {
  margin: 0 !important;
  padding: 0 !important;
}

.site-header ul li::before {
  display: none !important;
}

.mod-menu-link {
  text-transform: uppercase;
  padding: 25px 0;
  display: flex;
  align-items: center;
  position: relative;
  color: #fff;
}

.mod-menu ul li .mod-menu__submenu ul a::before,
.mod-menu-link:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 12px;
  background-color: currentColor;
  height: 2px;
  width: 0;
  pointer-events: none;
  transition: width 0.3s ease;
}

.mod-menu ul li .mod-menu__submenu ul a::before {
  bottom: 0;
  height: 1px;
}

.mod-menu ul li a.is-active::before,
.mod-menu ul li .mod-menu__submenu ul a.is-active::before,
.mod-menu ul li .mod-menu__submenu ul a:hover::before,
.mod-menu-link:hover::before,
.mod-menu ul li:hover > a::before {
  width: 100%;
}

.mod-menu ul {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.mod-menu ul li {
  position: relative;
}

.mod-menu ul li .mod-menu-link::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  transform: scaleY(1.2);
  cursor: pointer;
}

.mod-menu ul li .mod-menu__submenu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-image: linear-gradient(180deg, #333f48 39%, #6a6a6a 100%);
  z-index: 5;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  padding: 120px 22px 40px;
  text-transform: uppercase;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-gap: 30px;
  align-items: flex-start;
  z-index: -1;
  transition: opacity 0.3s ease, visibility 0.3s ease, border-radius 0.3s ease;
}

.submenu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.5);
  height: 100%;
  width: 100%;
  z-index: 12;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.is-open-submenu .submenu-overlay {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
}

/* Desktop Large and Up */
@media (min-width: 1600px) {
  .mod-menu ul li .mod-menu__submenu {
    grid-template-columns: repeat(4, minmax(0, 15%));
  }
}

.mod-menu ul li .mod-menu__submenu ul {
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}

.mod-menu ul li .mod-menu__submenu ul a {
  position: relative;
}

.mod-menu ul li .mod-menu__submenu ul a::after {
  display: none;
}

.mod-menu ul li.active .mod-menu__submenu {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
}

.mod-menu__mobile-link {
  display: none;
}

.mod-menu__submenu-toggle {
  display: none;
  position: absolute;
  left: 0;
  top: 10px;
  width: 20px;
  height: 20px;
}

.mod-menu__submenu-toggle img {
  width: 100%;
  height: auto;
  object-fit: contain;
  max-width: 100%;
  max-height: 100%;
  transition: transform 0.3s ease;
}

.mod-menu ul li.active .mod-menu__submenu-toggle img {
  transform: scaleY(-1);
}

.mobile-hamburger {
  display: none;
  cursor: pointer;
  z-index: 999;
  position: relative;
  width: 26px;
}

.mobile-hamburger .bars {
  background-color: #fff;
  height: 2px;
  display: block;
  border-radius: 4px;
  margin-bottom: 5px;
  width: 100%;
  transition: transform 0.3s ease;
}

.mobile-hamburger .bars:last-child {
  margin-bottom: 0;
}

.is-open-menu .mobile-hamburger .bars:first-child {
  transform: translateY(7px) rotate(225deg);
}

.is-open-menu .mobile-hamburger .bars:nth-child(2) {
  transform: scale(0);
}

.is-open-menu .mobile-hamburger .bars:last-child {
  transform: translateY(-7px) rotate(315deg);
}

.site-header__right-inner,
.site-header__left {
  border-bottom: 1px solid #fff;
  transition: border-color 0.3s ease;
}

.is-open-submenu .site-header__right-inner,
.is-open-submenu .site-header__left,
.site-header-dark-bg .site-header__right-inner,
.site-header-dark-bg .site-header__left,
.is-scrolled .site-header__right-inner,
.is-scrolled .site-header__left {
  border-bottom-color: transparent;
}

.site-header__right-inner {
  flex: auto;
  display: flex;
  align-items: center;
  gap: 50px;
  justify-content: flex-end;
}

.site-header__right {
  display: flex;
  align-items: center;
  gap: 30px;
}

.mod-language-switch {
  color: #fff;
  position: relative;
}

.mod-language-switch__trigger {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 0;
  cursor: pointer;
}

.mod-language-switch__arrow {
  width: 16px;
  height: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.mod-language-switch__dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  width: 50px;
  background-color: #fff;
  z-index: 5;
  border-radius: 5px;
  padding: 10px 8px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.mod-language-switch.is-open .mod-language-switch__dropdown{
  opacity: 1;
  visibility: visible;
  pointer-events: all;
}
@media only screen and (min-width: 1199px){

  .mod-language-switch:hover .mod-language-switch__dropdown {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
  }
}
.mod-language-switch__dropdown a {
  color: #0a0a0a;
  text-transform: uppercase;
  position: relative;
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s ease;
}

.mod-language-switch__dropdown a.is-active,
.mod-language-switch__dropdown a:hover {
  border-color: currentColor;
}

.mod-language-switch.is-open .mod-language-switch__arrow,
.mod-language-switch:hover .mod-language-switch__arrow {
  transform: scaleY(-1);
}

.site-header__dropdown {
  width: 230px;
  position: relative;
  flex-shrink: 0;
}

.site-header__dropdown-trigger {
  width: 100%;
  min-height: 64px;
  padding: 8px;
  background-color: #333f48;
  color: #fff;
  cursor: pointer;
  letter-spacing: 1.5px;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.is-open-menu .site-header__dropdown-trigger {
  transition-delay: 0.35s;
}

.is-open-submenu .site-header__dropdown-trigger,
.site-header-dark-bg .site-header__dropdown-trigger,
.is-open-menu .site-header__dropdown-trigger,
.is-scrolled .site-header__dropdown-trigger {
  background-color: #fff;
  color: #333f48;
}

.site-header__dropdown-list {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background-color: #fff;
  z-index: 5;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.site-header__dropdown.is-open .site-header__dropdown-list,
.site-header__dropdown:hover .site-header__dropdown-list {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
}

.site-header__dropdown-list .button,
.site-header__dropdown-list a {
  display: block;
  text-align: center;
  padding: 20px 10px;
  color: #0a0a0a;
  letter-spacing: normal;
  border: 0;
  width: 100%;
  margin: 0 !important;
  transition: color 0.3s ease, background-color 0.3s ease;
}

.site-header__dropdown-list .button:hover,
.site-header__dropdown-list a:hover {
  background-color: #7a8e9d;
  color: #fff;
}

.site-header__logo {
  max-width: 60px;
  width: 100%;
  display: flex;
}

.site-header__logo img {
  width: 100%;
  height: auto;
  object-fit: contain;
  max-width: 100%;
  max-height: 100%;
}

.reserve-popup {
  position: fixed;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  z-index: 99;
  display: flex;
  align-items: flex-end;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.reserve-popup__inner-wrapper {
  position: relative;
  transform: translateX(100%);
  max-height: 100%;
  width: 800px;
  margin-left: auto;
  padding-top: 50px;
  display: flex;
  z-index: 2;
  transition: transform 0.3s ease;
}

.reserve-popup__inner {
  background-color: #7a8e9d;
  color: #fff;
  font-size: 16px;
  line-height: normal;
  padding: 24px 32px 50px;
  position: relative;
  overflow: auto;
  max-height: 100%;
}

.reserve-popup.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
}

.reserve-popup.is-open .reserve-popup__inner-wrapper {
  transform: translateX(0);
}

.reserve-popup__inner::-webkit-scrollbar {
  width: 0;
  height: 0;
}

.reserve-popup__heading {
  font-size: 22px;
  line-height: normal;
  padding-bottom: 8px;
  border-bottom: 1px solid #fff;
}

.reserve-popup__inner p {
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
  font-family: inherit;
  color: inherit;
}

.reserve-popup__inner p:first-child {
  margin-top: 0;
}

.reserve-popup__inner p:last-child {
  margin-bottom: 0;
}

.reserve-popup__item {
  padding: 50px 0;
  position: relative;
}

.reserve-popup__item::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  height: 1px;
  background-color: #fff;
  width: 90%;
}

.reserve-popup__item:last-child::after {
  width: 100%;
}

.reserve-popup__news-title,
.reserve-popup__item-title {
  font-size: 40px;
  line-height: 1;
  letter-spacing: 1.5px;
  font-family: "MillerDisplay", sans-serif !important;
  margin-bottom: 20px;
}

.reserve-popup__button {
  font-size: 18px;
  line-height: 1;
  background-color: #fff;
  color: #100f0d;
  font-family: "MillerDisplay", sans-serif !important;
  padding: 15px 25px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 20px;
  border: 1px solid #fff;
  cursor: pointer;
  transition: border-color 0.3s ease, color 0.3s ease,
    background-color 0.3s ease;
}

.reserve-popup__button:hover,
.reserve-popup__button:focus {
  background-color: transparent;
  color: #fff;
}

.reserve-popup__footer {
  padding-top: 20px;
}

.reserve-popup__footer-text {
  text-align: center;
  font-size: 20px;
  line-height: normal;
}

.reserve-popup__footer-text a {
  color: inherit;
  text-decoration: none;
}

.reserve-popup__footer-text a:hover {
  text-decoration: underline;
}

.reserve-popup__news {
  margin-top: 40px;
}

.reserve-popup__news-heading {
  font-size: 55px;
  line-height: 1;
  letter-spacing: 1.5px;
  font-family: "MillerDisplay", sans-serif !important;
  margin-bottom: 30px;
}

.reserve-popup__news-inner {
  display: grid;
  grid-template-columns: 55% 1fr;
  grid-gap: 28px;
  color: inherit;
  font-size: 18px;
}

.reserve-popup__news-image {
  width: 100%;
  position: relative;
  height: 100%;
  padding-bottom: 56.24%;
  overflow: hidden;
}

.reserve-popup__news-image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.reserve-popup__news-inner:hover {
  color: #fff;
}

.reserve-popup__news-inner:hover img {
  transform: scale(1.04);
}

.reserve-popup__close {
  position: absolute;
  top: 32px;
  left: 0;
  transform: translateX(-50%);
  background-color: rgba(255, 255, 255, 0.7);
  border-radius: 100%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
  z-index: 2;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.reserve-popup__close img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.reserve-popup__close:hover,
.reserve-popup__close:focus {
  background-color: #fff;
}

.reserve-popup__overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* Desktop and Down */
@media (max-width: 1439px) {
  .mod-menu ul {
    gap: 13px;
  }

  .site-header__dropdown {
    width: 210px;
  }
}

/* Desktop and Up */
@media (min-width: 1200px) {
  .mod-menu {
    background: none !important;
  }
}

/* Tablet L and Down */
@media (max-width: 1199px) {
  .mod-menu ul li .mod-menu-link::after,
  .submenu-overlay,
  .site-header__right-inner .mod-menu-link {
    display: none;
  }

  .mod-menu__mobile-link {
    display: block;
  }

  .mobile-hamburger {
    display: block;
  }

  .site-header__right-inner,
  .site-header__left {
    border: 0;
  }

  .site-header__left {
    flex: none;
  }

  .site-header__inner {
    gap: 0;
    justify-content: space-between;
  }

  .site-header__right {
    justify-content: flex-end;
    gap: 20px;
    margin-left: 20px;
  }

  .mod-menu {
    position: fixed;
    left: 0;
    z-index: -1;
    height: 100%;
    top: 0;
    width: 100%;
    padding: 110px 0 40px;
    background-size: cover;
    background-position: 50% 50%;
    background-repeat: no-repeat;
    -webkit-animation-duration: 120s;
    animation-duration: 120s;
    -webkit-animation-name: zoommenuimage;
    animation-name: zoommenuimage;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    transition: clip-path 600ms ease-in-out, transform 600ms ease-in-out,
      -webkit-clip-path 600ms ease-in-out, -webkit-transform 600ms ease-in-out;
    will-change: clip-path, transform, opacity;
    -webkit-clip-path: circle(100% at 200% -100%);
    clip-path: circle(100% at 200% -100%);
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
  }

  .is-open-menu .mod-menu {
    opacity: 1;
    pointer-events: auto;
    -webkit-clip-path: circle(100% at 50% 50%);
    clip-path: circle(100% at 50% 50%);
    -webkit-transform: translateX(0%);
    transform: translateX(0%);
  }

  .mod-menu nav {
    padding: 0 44px;
    height: 100%;
    overflow: auto;
  }

  .mod-menu ul {
    flex-direction: column;
    gap: 25px;
    align-items: flex-start;
  }

  .mod-menu-link {
    padding: 0;
    font-size: 26px !important;
  }

  .mod-menu ul li .mod-menu__submenu ul a::before,
  .mod-menu-link::before {
    display: none;
  }

  .mod-menu ul li a.is-active,
  .mod-menu ul li .mod-menu__submenu ul a.is-active {
    font-weight: 700;
  }

  .mod-menu ul li {
    padding-left: 40px !important;
    position: relative !important;
    width: 100%;
  }

  .mod-menu__submenu-toggle {
    display: block;
  }

  .mod-menu ul li .mod-menu__submenu {
    position: relative;
    background: transparent;
    padding: 0;
    width: 100%;
    top: 0;
    opacity: 1;
    visibility: visible;
    pointer-events: all;
    display: none;
  }

  .mod-menu ul li .mod-menu__submenu ul {
    padding: 20px 0 0 !important;
  }

  .mod-menu ul li .mod-menu__submenu ul:not(:first-child) {
    border-top: 1px solid #fff;
    margin-top: 20px !important;
  }

  .mod-menu ul li .mod-menu__submenu ul li {
    padding-left: 0 !important;
  }

  .mod-menu ul li .mod-menu__submenu ul a {
    font-size: 20px;
    color: #fff;
  }

  .site-header__dropdown {
    width: 200px;
  }

  .site-header__dropdown-trigger {
    min-height: 56px;
  }

  .site-header__logo {
    max-width: 50px;
  }
}

/* Tablet P and Down */
@media (max-width: 1023px) {
  .mod-menu ul li {
    width: 100%;
  }

  .site-header__inner {
    padding: 8px 20px;
  }

  .reserve-popup__inner-wrapper {
    width: 100%;
    padding-top: 0;
    background-color: #7a8e9d;
    overflow: auto;
  }

  .reserve-popup__inner {
    overflow: hidden;
    margin: auto;
    padding: 75px 20px 30px;
  }

  .reserve-popup__close {
    top: 12px;
    left: 20px;
    transform: translateX(0);
  }

  .reserve-popup__item {
    padding: 40px 0;
  }

  .reserve-popup__news-title,
  .reserve-popup__item-title {
    font-size: 30px;
  }

  .reserve-popup__button {
    padding: 12px 20px;
  }

  .site-header__logo {
    max-width: 48px;
  }

  .reserve-popup__news-heading {
    font-size: 40px;
  }
}

/* Mobile */
@media (max-width: 767px) {
  .reserve-popup__item {
    padding: 30px 0;
  }

  .reserve-popup__footer-text {
    font-size: 16px;
  }

  .reserve-popup__news-inner {
    grid-template-columns: 1fr;
    grid-gap: 20px;
    font-size: 16px;
  }

  .reserve-popup__news-heading {
    margin-bottom: 20px;
    font-size: 32px;
  }

  .reserve-popup__news-title,
  .reserve-popup__item-title {
    font-size: 24px;
  }

  .mod-menu-link {
    font-size: 22px !important;
  }

  .mod-menu ul li .mod-menu__submenu ul a {
    font-size: 18px;
  }

  .site-header__dropdown {
    width: auto;
    font-size: 14px;
  }

  .site-header__dropdown-trigger {
    min-height: 46px;
    padding: 8px 14px;
  }

  .mod-language-switch,
  .mod-language-switch__dropdown a {
    font-size: 14px;
  }

  .mod-language-switch__arrow {
    width: 12px;
    height: 12px;
  }

  .site-header__dropdown-list {
    width: 200px;
    left: initial;
    right: 0;
  }

  .site-header__dropdown-list .button,
  .site-header__dropdown-list a {
    font-size: 14px;
    padding: 15px 10px;
  }

  .mod-menu nav {
    padding: 0 30px;
  }

  .mod-menu__submenu-toggle {
    top: 8px;
  }
}

/* Video Hero Module */
.video-hero-module {
  position: relative;
  min-height: 100vh;
  width: 100%;
}

.video-hero-module video {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.video-hero-module::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.2);
  z-index: 4;
}

.video-hero-module__arrow-wrapper {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  height: 40%;
  z-index: 5;
  bottom: 50px;
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 20px;
}

.video-hero-module__line {
  width: 1px;
  height: 100%;
  flex: 1;
  border-left: 2px dotted #fff;
}

.video-hero-module__arrow {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.video-hero-module__arrow img {
  width: 100%;
  height: auto;
  object-fit: contain;
  animation: fade_move_down 2s ease infinite;
}

.info-popup {
  position: absolute;
  right: 0;
  bottom: 50px;
  z-index: 5;
  max-width: 350px;
  width: 100%;
}

.info-popup__close {
  position: absolute;
  top: 0;
  left: 0;
  transform: translateY(-50%);
  background-color: rgba(255, 255, 255, 0.7);
  border-radius: 100%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
  z-index: 2;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.info-popup__close img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.info-popup__close:hover,
.info-popup__close:focus {
  background-color: #fff;
}

.info-popup__image-wrapper {
  padding: 0 20px;
  position: relative;
}

.info-popup__image-wrapper::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: #fff;
  height: 75%;
  width: 100%;
}

.info-popup__image {
  position: relative;
  height: 0;
  padding-bottom: 70%;
}

.info-popup__image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.info-popup__body {
  background-color: #fff;
  padding: 20px;
  text-align: center;
}

.info-popup__title p {
  font-size: 28px;
  line-height: normal;
  color: #000;
  font-family: "MillerDisplay", sans-serif !important;
}

.info-popup__link {
  min-height: 54px;
  padding: 8px 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-color: #333f48;
  color: #fff;
  cursor: pointer;
  font-size: 18px;
  letter-spacing: 1.5px;
  border: 1px solid #333f48;
  font-family: "MillerDisplay", sans-serif !important;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.info-popup__link:hover,
.info-popup__link:focus {
  background-color: transparent;
  color: #333f48;
}

@keyframes fade_move_down {
  0% {
    transform: translate(0, -10px);
    opacity: 0;
  }

  50% {
    opacity: 1;
  }

  100% {
    transform: translate(0, 10px);
    opacity: 0;
  }
}

/* Tablet P and Down */
@media (max-width: 1023px) {
  .video-hero-module__arrow-wrapper {
    height: auto;
    bottom: 20px;
  }

  .video-hero-module__line {
    display: none;
  }

  .video-hero-module__arrow {
    width: 30px;
    height: 30px;
  }

  .video-hero-module {
    padding: 120px 0;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .info-popup {
    position: relative;
    max-width: calc(100% - 40px);
    bottom: 0;
  }

  .info-popup__image-wrapper {
    display: none;
  }

  .info-popup__link {
    font-size: 17px;
    min-height: 50px;
    padding: 8px 28px;
  }
}

/* Footer */
.site-footer {
  background-color: #333f48;
  color: #fff;
  padding: 70px 0;
}

.site-footer p {
  color: inherit;
}

.site-footer__inner {
  display: grid;
  grid-template-columns: 15% 1fr 15%;
  grid-gap: 60px;
  align-items: center;
}

.site-footer__logo-list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  margin-top: 80px;
}

.site-footer__logo {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 60px;
  max-width: 180px;
  width: 100%;
}

.site-footer__logo img {
  width: auto;
  height: auto;
  object-fit: contain;
  max-width: 100%;
  max-height: 60px;
}

.site-footer__content {
  text-align: center;
}

.site-footer__title {
  margin-bottom: 30px;
}

.site-footer__title p {
  font-size: 34px;
  letter-spacing: 1.5px;
  font-family: "MillerDisplay", sans-serif !important;
}

.site-footer__content a {
  color: inherit;
  text-decoration: none;
}

.site-footer__divider {
  margin: 0 5px;
}

.site-footer__content a:hover {
  text-decoration: underline;
}

.site-footer__nav {
  padding-top: 15px;
  margin-top: 15px;
  border-top: 1px solid #fff;
}

.mod-social-nav ul,
.site-footer__nav ul {
  list-style: none;
  padding: 0 !important;
  margin: 0 !important;
  display: flex;
  align-items: center;
  gap: 10px 0;
  flex-wrap: wrap;
  justify-content: center;
}

.site-footer__nav ul li,
.mod-social-nav ul li {
  padding: 0 !important;
  margin: 0 !important;
}

.mod-social-nav ul li::before,
.site-footer__nav ul li:before {
  display: none !important;
}

.site-footer__nav ul li:not(:last-child)::after {
  content: "|";
  display: inline-block;
  font-size: inherit;
  color: inherit;
  line-height: inherit;
  font-weight: inherit;
  font-family: inherit;
  margin: 0 10px;
}

.mod-social-nav__title {
  margin-bottom: 25px;
}

.mod-social-nav__title p {
  font-size: 22px;
  letter-spacing: 1.5px;
  font-family: "MillerDisplay", sans-serif !important;
}

.mod-social-nav ul {
  gap: 20px;
  justify-content: flex-start;
}

.mod-social-nav li a {
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mod-social-nav li a img {
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.mod-social-nav li a:hover img {
  transform: translateY(-5px);
}

.site-footer__right {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.site-footer__newsletter-title p {
  font-size: 20px;
}

.site-footer__button {
  padding: 15px 35px;
  font-size: 20px;
  letter-spacing: 1.5px;
  font-family: "MillerDisplay", sans-serif !important;
  background-color: #fff;
  color: #333f48;
  cursor: pointer;
  border-radius: 30px;
  margin-top: 10px;
  border: 1px solid #fff;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.site-footer__button:hover,
.site-footer__button:focus {
  background-color: transparent;
  color: #fff;
}

.site-footer__left {
  display: inline-flex;
  flex-direction: column;
}

/* Desktop and Down */
@media (max-width: 1439px) {
  .site-footer__inner {
    grid-gap: 30px;
    grid-template-columns: 22% 1fr 22%;
  }
}

/* Tablet L and Down */
@media (max-width: 1199px) {
  .site-footer__inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-gap: 80px 30px;
    align-items: flex-start;
  }

  .site-footer__content {
    order: -1;
    grid-column: span 2;
  }

  .site-footer__left {
    flex-direction: row;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    width: 100%;
  }

  .site-footer__button {
    margin: 0;
  }

  .site-footer__newsletter-title {
    max-width: 400px;
    width: 100%;
  }

  .site-footer__newsletter-title p {
    margin-bottom: 20px;
  }
}

/* Tablet P and Down */
@media (max-width: 1023px) {
  .site-footer {
    padding: 50px 0;
  }

  .site-footer__logo-list {
    margin-top: 40px;
  }

  .site-footer__newsletter-title p {
    font-size: 18px;
  }

  .site-footer__newsletter-title {
    max-width: 360px;
  }
}

/* Mobile */
@media (max-width: 767px) {
  .site-footer__title {
    margin-bottom: 20px;
  }

  .site-footer__inner {
    grid-template-columns: 1fr;
    grid-gap: 50px;
  }

  .site-footer__content {
    grid-column: span 1;
  }

  .site-footer__logo-list {
    flex-wrap: wrap;
  }

  .site-footer__logo {
    max-width: 40%;
    flex: 0 0 40%;
  }

  .site-footer__left {
    flex-direction: column;
  }

  .site-footer__button {
    padding: 12px 25px;
    font-size: 18px;
  }

  .mod-social-nav li a {
    width: 25px;
    height: 25px;
  }

  .site-footer__divider {
    display: block;
    font-size: 0;
    line-height: 0;
  }

  .site-footer__nav ul {
    flex-direction: column;
  }

  .site-footer__nav ul li:not(:last-child)::after {
    display: block;
    font-size: 0;
    line-height: 0;
  }
}

/* Newsletter Popup */
.newsletter-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1005;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
  overflow: auto;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  will-change: opacity, visibility;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.newsletter-popup.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
}

.newsletter-popup__overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}

.newsletter-popup__inner {
  max-width: 600px;
  width: 100%;
  margin: auto;
  padding: 30px;
  background-color: #fff;
  position: relative;
  z-index: 4;
  text-align: center;
}

.newsletter-popup__title p,
.newsletter-popup__sub-title p {
  letter-spacing: 1.5px;
  line-height: normal;
  font-family: "MillerDisplay", sans-serif !important;
  color: #000;
}

.newsletter-popup__title p {
  font-size: 44px;
}

.newsletter-popup__sub-title p {
  font-size: 34px;
}

.newsletter-popup__sub-title {
  margin-bottom: 20px;
}

.newsletter-popup__text p {
  line-height: 1.8;
}

.newsletter-popup__form {
  margin-top: 30px;
  padding: 0 40px;
  text-align: left;
}

.mod-form-input {
  margin-bottom: 20px;
}

.mod-form-input label {
  font-weight: inherit;
  display: block;
  margin: 0 0 2px 0;
  font-size: 1.1875rem;
  color: #000;
}

.mod-form-input input {
  box-shadow: none;
  width: 100%;
  border: 1px solid #000;
  transition: border-color 0.3s ease;
  margin: 0;
}

.mod-form-checkbox input {
  display: none;
}

.mod-form-checkbox label {
  font-size: 18px;
  line-height: 1.5;
  padding-left: 35px;
  position: relative;
  margin: 0;
  display: block;
}

.mod-form-checkbox label::after,
.mod-form-checkbox label::before {
  content: "";
  position: absolute;
  top: 3px;
  left: 0;
  width: 20px;
  height: 20px;
  pointer-events: none;
  border: 1px solid #000;
}

.mod-form-checkbox label::after {
  border: 0;
  background-color: #333f48;
  width: 16px;
  height: 16px;
  top: 5px;
  left: 2px;
  transform: scale(0);
  transition: transform 0.3s ease;
}

.mod-form-checkbox input:checked ~ label::after {
  transform: scale(1);
}

.mod-form-checkbox a {
  color: #004aad;
  text-decoration: underline;
}

.mod-form-checkbox a:hover {
  text-decoration: none;
}

.mod-form-submit {
  text-align: center;
  margin-top: 40px;
}

.mod-form__button {
  min-height: 54px;
  padding: 8px 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-color: #333f48;
  color: #fff;
  cursor: pointer;
  font-size: 22px;
  border: 1px solid #333f48;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.mod-form__button:hover,
.mod-form__button:focus {
  background-color: transparent;
  color: #333f48;
}

.newsletter-popup__close {
  position: absolute;
  top: 0;
  left: 0;
  transform: translate(-50%, -50%);
  background-color: rgba(255, 255, 255, 0.7);
  border-radius: 100%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
  z-index: 2;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.newsletter-popup__close img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.newsletter-popup__close:hover,
.newsletter-popup__close:focus {
  background-color: #fff;
}

/* Tablet P and Down */
@media (max-width: 1023px) {
  .newsletter-popup__inner {
    max-width: 500px;
  }

  .newsletter-popup__title p {
    font-size: 34px;
  }

  .newsletter-popup__sub-title p {
    font-size: 26px;
  }
}

/* Mobile */
@media (max-width: 767px) {
  .newsletter-popup {
    padding: 10px;
  }

  .newsletter-popup__close {
    position: relative;
    transform: translate(0, 0);
    margin-left: auto;
    margin-bottom: 10px;
  }

  .newsletter-popup__inner {
    padding: 10px 20px 30px;
  }

  .newsletter-popup__title p {
    font-size: 30px;
  }

  .newsletter-popup__sub-title p {
    font-size: 20px;
  }

  .newsletter-popup__form {
    padding: 0;
  }

  .mod-form-checkbox label,
  .mod-form-input label {
    font-size: 16px;
  }

  .mod-form-submit {
    margin-top: 30px;
  }

  .mod-form__button {
    font-size: 18px;
    min-height: 48px;
    padding: 8px 30px;
  }
}
