@charset "UTF-8";
#map {
  width: 100%;
  position: relative;
  height: 0;
  overflow: hidden;
  -webkit-transition: height 0.4s ease;
  transition: height 0.4s ease;
}
#map.is-loaded {
  height: 70vh;
}
#map .gm-style-cc {
  display: none !important;
}

/* ============== FOOTER ============== */
.site-footer {
  position: relative;
  width: 100%;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.footer-background {
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 1;
  inset: 0;
}

.footer-container {
  z-index: 2;
  padding: clamp(5rem, 11vw, 7rem) clamp(1.25rem, 8vw, 8.5rem);
}

.footer-right {
  -ms-grid-column-align: start;
      justify-self: start;
}

.footer-text {
  color: #fff;
  white-space: pre-line;
  font-size: clamp(1.2rem, 1.65vw, 1.8rem);
  line-height: 1.4;
}
.footer-text a {
  position: relative;
}
.footer-text a::after {
  content: "";
  -webkit-transform-origin: 100%;
          transform-origin: 100%;
  background: currentColor;
  height: 1px;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
  position: absolute;
  bottom: -0.45rem;
  left: 0;
  right: 0;
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
}
.footer-text a:hover:after {
  -webkit-transform-origin: 0;
          transform-origin: 0;
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
}

.footer-text:first-child {
  font-size: 3.8rem;
}

.footer-text:last-child {
  margin-top: 2.4rem;
}

.footer-link {
  color: #fff;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  text-align: center;
  display: block;
  margin-top: 2.4rem;
  padding: 1rem 1.5rem 1rem 1rem;
  border-radius: 0.4rem;
  font-size: clamp(1rem, 1.35vw, 1.4rem);
  background: rgba(255, 255, 255, 0.25);
  position: relative;
  -webkit-transition: 0.22s;
  transition: 0.22s;
}

.footer-link::after {
  position: absolute;
  top: 2px;
  right: 5px;
  display: inline-block;
  content: "↗";
}

.footer-link:hover {
  background: #fff;
  color: #102c2b;
}

.footer-logo {
  width: 40%;
  height: auto;
  margin-top: clamp(10rem, 14vw, 14rem);
}
.footer-logo img {
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
  width: 100%;
}

@media (max-width: 900px) {
  .footer-text:first-child {
    font-size: clamp(2.4rem, 6vw, 3.4rem);
  }
  .footer-logo {
    width: 55%;
    margin-top: clamp(5rem, 10vw, 8rem);
  }
  .footer-text:first-child {
    white-space: normal;
  }
}
@media (max-width: 600px) {
  #map.is-loaded {
    height: 55vh;
  }
  .footer-container {
    padding: 4rem 1.25rem;
  }
  .footer-text:first-child {
    font-size: clamp(1.9rem, 9vw, 2.8rem);
  }
  .footer-text {
    font-size: clamp(1rem, 4.2vw, 1.3rem);
    line-height: 1.55;
  }
  .footer-link {
    margin-top: 1.8rem;
    font-size: 0.9rem;
    padding: 0.85rem 0.9rem;
  }
  .footer-logo {
    width: 68%;
    margin-top: 4rem;
  }
  .footer-link::after {
    display: none;
  }
}