html {
  scroll-behavior: smooth;
}

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

button {
  color: inherit;
  transition: 0.3s ease-in-out;
  overflow: visible;
  border: 0;
  font: inherit;
  -webkit-font-smoothing: inherit;
  letter-spacing: inherit;
  background: none;
  cursor: pointer;
}

html {
  height: 100%;
  overflow-y: auto;
}

body {
  background-color: #0a0a0a;
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

main {
  width: 100%;
  height: auto;
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  flex-direction: column;
  flex-grow: 1;
}

.section-full {
  width: 100%;
}

.section-limit {
  max-width: 1600px;
  width: 90%;
}

.margin-16 {
  margin-top: 16px;
  margin-bottom: 16px;
}

.margin-top-16 {
  margin-top: 16px;
}

.margin-bottom-16 {
  margin-bottom: 16px;
}

.margin-32 {
  margin-top: 32px;
  margin-bottom: 32px;
}

.margin-top-32 {
  margin-top: 32px;
}

.margin-bottom-32 {
  margin-bottom: 32px;
}

.margin-64 {
  margin-top: 64px;
  margin-bottom: 64px;
}

.margin-top-64 {
  margin-top: 64px;
}

.margin-bottom-64 {
  margin-bottom: 64px;
}

.margin-128 {
  margin-top: 128px;
  margin-bottom: 128px;
}

.margin-top-128 {
  margin-top: 128px !important;
}

.margin-bottom-128 {
  margin-bottom: 128px !important;
}

/* ------------------------------------ FONTS ------------------------------------ */

* {
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-style: normal;
  color: white;
}

b,
strong {
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  font-style: normal;
  color: #ffffff;
}

h1 {
  font-size: 48px;
  font-weight: bold;
  line-height: 64px;
  letter-spacing: 1px;
}

h2 {
  font-size: 32px;
  font-weight: bold;
  line-height: 40px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.heading-container {
  display: flex;
  justify-content: center;
  align-items: center;
}

.heading-with-lines {
  position: relative;
  white-space: nowrap;
}

.heading-with-lines::before,
.heading-with-lines::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  height: 2px;
  width: 64px;
  background: white;
}

.heading-with-lines::before {
  left: calc(-64px - 16px);
}

.heading-with-lines::after {
  right: calc(-64px - 16px);
}

h3 {
  font-size: 20px;
  font-weight: normal;
  line-height: 28px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #ffffff;
}

p {
  font-size: 16px;
  font-weight: normal;
  line-height: 28px;
  letter-spacing: 1px;
}

a {
  font-size: 14px;
  font-weight: normal;
  letter-spacing: 2px;
  text-decoration: none;
}

@media (max-width: 960px) {
  h1 {
    font-size: 32px;
    line-height: 48px;
    letter-spacing: 0.75px;
  }

  h2 {
    font-size: 20px;
    line-height: 20px;
    letter-spacing: 1.25px;
  }

  .heading-with-lines::before,
  .heading-with-lines::after {
    width: 32px;
  }

  .heading-with-lines::before {
    left: calc(-32px - 16px);
  }

  .heading-with-lines::after {
    right: calc(-32px - 16px);
  }

  h3 {
    font-size: 18px;
    line-height: 26px;
    letter-spacing: 1.75px;
  }
}

/* ------------------------------------ BUTTON ------------------------------------ */

.btn {
  position: relative;
  overflow: hidden;
  padding: 16px 24px;
  border: solid #ffffff 1px;
  background-color: transparent;
  text-decoration: none;
  transition: color 0.4s ease;
  border-radius: 16px;
}

.btn::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background-color: #ffffff;
  transition: width 0.4s ease;
  z-index: -1;
  border-radius: 16px;
}

.btn:hover::after {
  width: 100%;
}

.btn:hover {
  color: rgba(10, 10, 10, 1);
  text-decoration: none;
  cursor: pointer;
}

.btn svg {
  width: auto;
  height: 12px;
  margin-left: 8px;
  transition: fill 0.4s ease;
}

.btn:hover svg .c {
  fill: rgba(10, 10, 10, 1);
  stroke-width: 0px;
  transition: fill 0.4s ease;
}

@media (max-width: 960px) {
  .btn {
    margin: 0 auto;
    text-align: center;
  }
}

.btn-nav {
  position: relative;
  overflow: hidden;
  padding: 18px 32px;
  border: solid #ffffff 1px;
  background-color: transparent;
  text-decoration: none;
  transition: color 0.4s ease;
  border-radius: 16px;
}

.btn-nav::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background-color: #ffffff;
  transition: width 0.4s ease;
  z-index: -1;
}

.btn-nav:hover::after {
  width: calc(100%);
}

.btn-nav:hover {
  color: rgba(10, 10, 10, 1);
  text-decoration: none;
  cursor: pointer;
}

.btn-nav svg {
  width: auto;
  height: 12px;
  margin-left: 8px;
  transition: fill 0.4s ease;
}

.btn-nav:hover svg .c {
  fill: rgba(10, 10, 10, 1);
  stroke-width: 0px;
  transition: fill 0.4s ease;
}

@media (max-width: 960px) {
  .btn-nav {
    margin: 0 auto;
    text-align: center;
  }
}

.btn-alt {
  position: relative;
  padding: 24px 32px;
  border: solid #de551f 1px;
  background-color: rgba(10, 10, 10, 1);
  text-decoration: none;
  transition: 0.25s ease;
  color: #de551f;
  margin: 8px;
  font-size: 18px;
  font-weight: bold;
}

.btn-alt:hover {
  cursor: pointer;
}

.btn-alt::before {
  content: "";
  position: absolute;
  top: 4px;
  left: 4px;
  width: 100%;
  height: 100%;
  background-color: #de551f;
  z-index: -1;
  transform: translate(0px, 0px);
  transition: 0.25s ease;
}

.btn-alt:hover::before {
  transform: translate(3px, 3px);
}

/* ------------------------------------ NAVBAR ------------------------------------ */

header {
  position: fixed;
  top: 0px;
  left: 0;
  width: 100%;
  z-index: 999;
  background-color: transparent;
  padding-top: 64px;
  padding-bottom: 16px;
  transition: ease-in-out 250ms;
}

nav {
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  max-width: 1600px;
  width: 90%;
  height: auto;
}

.nav-scrolled {
  background-color: black;
  padding-top: 24px;
  padding-bottom: 24px;
}

.nav-logo img {
  width: auto;
  height: 40px;
}

@media (max-width: 540px) {
  .nav-logo img {
    width: auto;
    height: 28px !important;
  }
}

.nav-items {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 48px;
  position: relative;
  align-items: center;
}

.nav-item {
  font-size: 14px;
  font-weight: normal;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 8px 16px;
  cursor: pointer;
  transition: ease-out 200ms;
  text-decoration: none;
  display: inline-block;
  position: relative;
}

.nav-item:hover {
  color: #de551f;
  filter: drop-shadow(0px 0px 6px #de551f);
  transform: translateY(-4px);
}

.nav-item.active {
  font-weight: bold;
}

@media (max-width: 1400px) {
  .nav-items {
    gap: 16px;
  }
}

.nav-burger {
  display: none;
}

@media (max-width: 1250px) {
  .nav-burger {
    display: flex;
    flex-direction: column;
    gap: 8px;
    transition: ease-out 50ms;
    cursor: pointer;
  }

  .nav-burger:hover {
    gap: 11px;
  }

  .nav-burger-line1,
  .nav-burger-line2,
  .nav-burger-line3 {
    width: 28px;
    height: 2px;
    background-color: white;
  }

  .nav-logo img {
    width: auto;
    height: 40px;
  }

  #desktop-nav {
    display: none;
  }
}

@media (max-width: 960px) {
  header {
    padding-top: 24px;
    padding-bottom: 16px;
  }
}

#mobile-nav {
  display: none;
}

@media screen and (max-width: 1250px) {
  #mobile-nav {
    display: flex;
  }

  .overlay {
    visibility: hidden;
    opacity: 0;
    transition: visibility 0s 350ms, opacity 350ms ease-in-out;
    position: fixed;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    align-content: center;
    gap: 8px;
    z-index: 998;
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    padding-top: 92px;
  }

  .hide-overlay {
    display: none !important;
  }
}

#about-us-dropdown {
  position: relative;
}

#about-us-dropdown .sub-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  display: none;
  width: auto;
  z-index: 1000;
}

#about-us-dropdown:hover .sub-menu {
  display: flex;
  flex-direction: column;
  border-top: 28px solid transparent;
}

.sub-menu-content {
  display: flex;
  flex-direction: column;
  background-color: black;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 12px;
  padding: 24px;
}

@media (max-width: 1250px) {
  #about-us-dropdown .sub-menu,
  #about-us-dropdown:hover .sub-menu,
  #about-us-dropdown.active .sub-menu {
    display: block;
    position: static;
    transform: none;
    left: auto;
    top: auto;
    width: auto;
    background-color: transparent;
    border-top: none;
    padding: 0;
    gap: normal;
    flex-direction: column;
  }

  #about-us-dropdown .sub-menu-content {
    padding: 0;
    box-sizing: border-box;
    width: auto;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    background-color: transparent;
  }

  #about-us-dropdown > a.nav-item {
    display: block;
    width: auto;
    justify-content: flex-start;
    text-align: left;
  }

  #about-us-mobile-hide {
    display: none !important;
  }
}

/* ------------------------------------ HERO ------------------------------------ */

.hero {
  width: 100%;
  max-height: 800px;
  min-height: 650px;
  height: 75vh;
  position: relative;
}

.hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-gradient-1 {
  position: absolute;
  opacity: 15%;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(136, 8, 8, 0.25);
  background: radial-gradient(at top left, rgba(222, 85, 31, 1) 0%, rgba(222, 85, 31, 0.5) 50%, rgba(222, 85, 31, 0) 70%);
}

.hero-gradient-2 {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: 100%;
  height: 101%;
  background: radial-gradient(ellipse farthest-corner at right center, rgba(10, 10, 10, 0) 0%, rgba(10, 10, 10, 0.65) 20%, rgba(10, 10, 10, 1) 70%, rgba(10, 10, 10, 1) 100%);
  background-size: 100% 100%;
  background-repeat: no-repeat;
}

.hero-content {
  position: absolute;
  top: calc(50% + 64px);
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  max-width: 1600px;
  width: 90%;
}

.hero h3 {
  margin-bottom: 16px;
}

.hero h1 {
  margin-bottom: 48px;
  width: 50%;
  min-width: 800px;
}

.hero p {
  position: relative;
  margin-bottom: 48px;
  width: 37.5%;
  min-width: 600px;
  padding-left: 24px;
}

.hero p::before {
  content: "";
  display: inline-block;
  height: 100%;
  width: 1px;
  background-color: white;
  position: absolute;
  left: 0;
  top: 0;
}

@media (max-width: 960px) {
  .hero h3 {
    margin-bottom: 16px;
    text-align: center;
  }

  .hero h1 {
    margin-bottom: 48px;
    width: 100%;
    min-width: 0px;
    text-align: center;
  }

  .hero p {
    width: 100%;
    min-width: 0px;
    padding-left: 0px;
    text-align: center;
  }

  .hero p::before {
    display: none;
  }

  .hero-content {
    display: flex;
    flex-direction: column;
  }
}

/* ------------------------------------ FINGERPRINT ------------------------------------ */

.fingerprint {
  cursor: pointer;
}

.fingerprint img {
  height: 64px;
  width: auto;
  display: block;
  margin: auto;
  animation: bobbing 4s ease-in-out infinite;
}

@media (max-width: 960px) {
  .fingerprint {
    margin-top: 64px;
    margin-bottom: 64px;
  }

  .fingerprint img {
    height: 48px;
    width: auto;
    display: block;
    margin: auto;
    animation: bobbing 4s ease-in-out infinite;
  }
}

@keyframes bobbing {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

/* ------------------------------------ VIEW-ROOMS ------------------------------------ */

.view-rooms {
  width: 100%;
  padding-top: 128px;
  padding-bottom: 128px;
  position: relative;
  overflow: hidden;
}

.view-rooms-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}

.view-rooms-background::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(0deg, rgba(10, 10, 10, 1) 0%, rgba(10, 10, 10, 0.85) 35%, rgba(10, 10, 10, 0.85) 65%, rgba(10, 10, 10, 1) 100%);
  z-index: 1;
}

.view-rooms-options {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
  position: relative;
}

.view-rooms-background img {
  transition: opacity 1s ease-in-out;
}

.hidden {
  opacity: 0;
}

/* ------------------------------------ HORIZONTAL GALLERY ------------------------------------ */

.gallery-slider {
  width: 100%;
  overflow: hidden;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  position: relative;
  gap: 16px;
  transition: ease-in-out 1s;
}

.gallery-card {
  flex: 0 0 auto;
  position: relative;
  height: 20vw;
  min-height: 200px;
}

.gallery-card > picture > img {
  width: auto;
  height: 100%;
}

.gallery-quad {
  display: grid;
  grid-template-columns: repeat(2, calc(50% - 8px));
  grid-template-rows: repeat(2, calc(50% - 8px));
  gap: 16px;
  height: 100%;
}

.gallery-quad > picture > img {
  width: 7.5vw;
  min-width: 75px;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 960px) {
  .gallery-slider {
    gap: 8px;
  }

  .gallery-quad {
    grid-template-columns: repeat(2, calc(50% - 4px));
    grid-template-rows: repeat(2, calc(50% - 4px));
    gap: 8px;
  }
}

/* ------------------------------------ TEXT IMAGE ------------------------------------ */

.text-image {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: stretch;
}

.text-image > .text,
.text-image > .image {
  width: calc(100% / 12 * 5.5);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 24px;
}

.text-image > .image {
  align-items: center;
}

.text-image > .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 24px;
}

@media (max-width: 1400px) {
  .text-image {
    flex-direction: column;
    align-items: center;
    align-content: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 64px;
  }

  .text-image > .text,
  .text-image > .image {
    width: 100%;
    align-items: center;
  }

  .text-image > .text > p {
    text-align: center;
  }

  .text-image > .image img {
    max-height: 500px;
  }

  .text-image .btn {
    margin: 0 auto;
    text-align: center;
  }

  .hide-me-1400 {
    display: none !important;
  }
}

ul {
  padding-left: 32px;
}

ul li {
  margin-bottom: 12px;
}

ul li:last-child {
  margin-bottom: 0;
}

ul li::marker {
  color: #ffffff;
}

/* ------------------------------------ LEADERBOARD ------------------------------------ */

.leaderboard {
  width: 100%;
}

.leaderboard-options {
  height: auto;
  width: 100%;
  display: flex;
  flex-direction: row;
  gap: 16px;
  justify-content: center;
}

.leaderboard-card {
  width: calc(25% - 12px);
  height: 128px;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.leaderboard-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  opacity: 25%;
  transition: ease-in-out 0.5s;
  border-radius: 24px;
}

.leaderboard-card:hover img,
.leaderboard-card.leaderboard-active img {
  opacity: 75%;
}

.leaderboard-card.active img {
  opacity: 90%;
}

.leaderboard-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  text-align: center;
  z-index: 2;
  color: rgba(128, 128, 128, 1);
  transition: ease-in-out 0.5s;
}

.leaderboard-card:hover .leaderboard-text,
.leaderboard-card.leaderboard-active .leaderboard-text {
  color: rgba(255, 255, 255, 1);
}

.leaderboard-text h3 {
  font-weight: bold;
  text-shadow: 0px 0px 16px #000;
}

.leaderboard-list {
  width: 100%;
  height: auto;
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  align-content: center;
  flex-direction: column;
}

.leaderboard-list-item {
  width: 100%;
  height: auto;
  display: flex;
  justify-content: space-between;
  padding: 32px;
  border-bottom: 2px solid rgba(255, 255, 255, 0.1);
}

.leaderboard-list-left,
.leaderboard-list-right {
  width: 50%;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 32px;
}

.leaderboard-list-left {
  justify-content: flex-start;
}

.leaderboard-list-right {
  justify-content: flex-end;
}

.leaderboard-list-icon img {
  width: 32px;
  height: 32px;
}

@media (max-width: 960px) {
  .leaderboard-options {
    flex-wrap: wrap;
  }

  .leaderboard-card {
    width: calc(50% - 8px);
  }

  .leaderboard-list-left,
  .leaderboard-list-right {
    width: 100%;
    justify-content: center;
    align-items: center;
    align-content: center;
  }

  .leaderboard-list-left {
    flex-direction: column;
    gap: 8px;
  }

  .leaderboard-list-item {
    flex-wrap: wrap;
    gap: 8px;
  }
}

/* ------------------------------------ FOOTER ------------------------------------ */

.footer-line {
  width: 100%;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.25);
}

footer {
  display: flex;
  flex-wrap: nowrap;
  flex-direction: row;
  justify-content: space-between;
  max-width: 1600px;
  width: 90%;
  margin: auto;
}

.footer-section {
  display: flex;
  flex-wrap: nowrap;
  flex-direction: column;
  width: auto;
}

footer img {
  width: 32px;
  height: 32px;
}

.footer-logo {
  max-width: 320px;
  width: 100%;
  height: auto;
  margin-bottom: 24px;
}

footer a {
  font-size: 14px !important;
  margin-bottom: 8px;
}

footer h3 {
  font-size: 18px !important;
  margin-bottom: 16px;
  font-weight: bold;
}

.footer-socials {
  flex-direction: row !important;
  gap: 32px;
  flex-wrap: nowrap;
}

@media (max-width: 1200px) {
  footer {
    flex-wrap: nowrap;
    flex-direction: column;
    gap: 48px;
    justify-content: center;
    align-items: center;
    align-content: center;
    text-align: center;
  }

  .footer-logo {
    display: none;
  }
}

.copyright {
  margin: auto;
  display: flex;
  justify-content: space-between;
  margin-top: 16px;
  margin-bottom: 32px;
}

.copyright-spacer {
  margin-right: 16px;
  margin-left: 16px;
}

.copyright-section {
  display: flex;
  align-items: center;
  flex-direction: row;
}

.copyright-dbwd {
  display: flex;
  align-items: center;
  justify-content: start;
}

.copyright-dbwd p {
  margin-right: 10px;
}

.copyright-dbwd img {
  height: 16px;
}

.copyright-links {
  display: flex;
  align-items: center;
  flex-direction: row;
}

@media (max-width: 1200px) {
  .copyright {
    flex-direction: column;
    gap: 32px;
    justify-content: center;
    align-items: center;
    align-content: center;
    text-align: center;
  }

  .copyright-section {
    flex-direction: column;
  }
}

/* ------------------------------------ ROOM CARDS ------------------------------------ */

.room-cards {
  width: 100%;
  height: auto;
  display: flex;
  align-items: stretch;
  justify-content: center;
  align-content: center;
  gap: 32px;
  flex-wrap: wrap;
}

.room-cards .card {
  position: relative;
  width: calc(33.3% - 21px);
  min-width: 440px;
  padding: 20px;
  height: auto;
  border: solid white 1px;
  display: flex;
  flex-direction: column;
  text-align: center;
  align-items: center;
  gap: 20px;
  transition: ease-in-out 0.35s;
}

.room-cards .card:hover {
  border: solid rgba(200, 24, 24, 1) 1px;
}

.room-cards h2,
.room-cards p {
  max-width: 85%;
}

.room-cards h2 {
  margin-bottom: 16px;
  margin-top: 16px;
}

.card p {
  display: flex;
  align-items: center;
  gap: 8px;
}

.card .icon {
  width: 20px;
  height: auto;
  display: inline;
  vertical-align: middle;
}

@media (max-width: 640px) {
  .room-cards .card {
    width: 100%;
    min-width: 320px;
  }
}

.room-cards .card::before {
  content: "";
  position: absolute;
  top: -4px;
  left: -4px;
  right: -4px;
  bottom: -4px;
  border: 6px solid rgba(255, 255, 255, 0);
  pointer-events: none;
  filter: blur(8px);
  transition: ease-in-out 0.35s;
}

.room-cards .card:hover::before {
  border: 6px solid rgba(200, 24, 24, 0.75);
}

.room-cards .card picture {
  position: relative;
  display: block;
  width: 100%;
  height: 224px;
}

.room-cards .card picture::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse at center, transparent 70%, #0a0a0a 110%);
  pointer-events: none;
}

.room-cards .card picture img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  border-radius: 24px;
}

/* ------------------------------------ TABLES ------------------------------------ */

.prices .table-wrapper {
  overflow-x: auto;
  width: 100%;
}

table {
  width: 100%;
  border-collapse: collapse;
}

th,
td {
  padding: 16px;
  text-align: center;
  border: 0;
}

tr:nth-child(even) {
  background-color: #0a0a0a;
}

tr:nth-child(odd) {
  background-color: rgba(25, 25, 25, 1);
}

.fixed {
  position: sticky;
  left: 0;
  z-index: 100;
  min-width: 128px;
}

th {
  font-size: 18px;
  font-weight: bold;
  letter-spacing: 2px;
  text-transform: uppercase;
  background-color: #0a0a0a;
}

td:first-child,
th:first-child {
  text-align: left;
  background-color: inherit;
}

@media (max-width: 1200px) {
  th,
  td {
    font-size: 16px;
    letter-spacing: 1px;
  }
}

@media (max-width: 960px) {
  .fixed {
    -webkit-box-shadow: 4px 0px 0px 0px rgba(40, 40, 40, 1);
    -moz-box-shadow: 4px 0px 0px 0px rgba(40, 40, 40, 1);
    box-shadow: 4px 0px 0px 0px rgba(40, 40, 40, 1);
  }
}

/* ------------------------------------ MAP ------------------------------------ */

.map {
  position: relative;
  overflow: hidden;
}

.map .map-image {
  width: 100%;
  height: auto;
  display: block;
}

.marker {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: bob 5s ease-in-out infinite;
  width: 2vw;
  height: auto;
  max-width: 18px;
}

@keyframes bob {
  0% {
    transform: translate(-50%, -50%) translateY(0.25vw);
  }
  50% {
    transform: translate(-50%, -50%) translateY(-0.25vw);
  }
  100% {
    transform: translate(-50%, -50%) translateY(0.25vw);
  }
}

/* ------------------------------------ BASIC TEXT ------------------------------------ */

.basic-text {
  max-width: 800px;
  display: flex;
  gap: 32px;
  flex-direction: column;
  text-align: center;
}

/* ------------------------------------ GALLERY PAGE ------------------------------------ */

.gallery {
  height: auto;
  width: 100%;
  display: flex;
  justify-content: center;
}

.gallery-wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(25%, 1fr));
  grid-auto-rows: 250px;
  grid-auto-flow: dense;
  width: 90%;
  max-width: 1200px;
}

@media only screen and (max-width: 1100px) {
  .gallery-wrapper {
    grid-template-columns: repeat(auto-fit, minmax(25%, 1fr));
    grid-auto-rows: 200px;
  }
}

@media only screen and (max-width: 900px) {
  .gallery-wrapper {
    grid-template-columns: repeat(auto-fit, minmax(33.33%, 1fr));
    grid-auto-rows: 175;
  }
}

@media only screen and (max-width: 700px) {
  .gallery-wrapper {
    grid-template-columns: repeat(auto-fit, minmax(33.33%, 1fr));
    grid-auto-rows: 150px;
  }
}

@media only screen and (max-width: 550px) {
  .gallery-wrapper {
    grid-template-columns: repeat(auto-fit, minmax(50%, 1fr));
    grid-auto-rows: 150px;
  }

  .gallery-wrapper .wide {
    grid-column: span 2 !important;
  }
  .gallery-wrapper .xl-wide {
    grid-column: span 2 !important;
  }
  .gallery-wrapper .tall {
    grid-row: span 2 !important;
  }
  .gallery-wrapper .big {
    grid-column: span 2 !important;
    grid-row: span 2 !important;
  }

  .gallery-wrapper .xl-big {
    grid-column: span 2 !important;
    grid-row: span 2 !important;
  }
}

@media only screen and (max-width: 400px) {
  .gallery-wrapper {
    grid-template-columns: repeat(auto-fit, minmax(50%, 1fr));
    grid-auto-rows: 100px;
  }
}

.gallery-wrapper > div {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 8px;
  transition: 0.25s all;
}

.gallery-wrapper > div:hover {
  padding: 4px;
  transition: 0.25s all;
  filter: brightness(1.25);
  cursor: pointer;
}

.gallery-wrapper > div > picture {
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  box-sizing: border-box;
}

.gallery-wrapper > div > picture > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 24px;
}

.gallery-wrapper .wide {
  grid-column: span 2;
}
.gallery-wrapper .xl-wide {
  grid-column: span 3;
}
.gallery-wrapper .tall {
  grid-row: span 2;
}
.gallery-wrapper .big {
  grid-column: span 2;
  grid-row: span 2;
}

.gallery-wrapper .xl-big {
  grid-column: span 3;
  grid-row: span 2;
}

.image-modal {
  display: none;
  position: fixed;
  z-index: 99999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(8px);
}

.modal-container {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
}

.modal-content {
  max-width: 90%;
  max-height: 90vh;
  object-fit: contain;
  border-radius: 24px;
}

.close {
  position: absolute;
  top: 20px;
  right: 30px;
  color: white;
  font-size: 40px;
  cursor: pointer;
}

/* ------------------------------------ DOCS ------------------------------------ */

.info {
  display: flex;
  justify-content: center;
  align-items: center;
  align-content: center;
  gap: 16px;
  flex-direction: column;
}

.info-policies {
  max-width: 800px;
  display: flex;
  gap: 96px;
  flex-direction: column;
  text-align: center;
}

/* ------------------------------------ CONTACT PAGE ------------------------------------ */

.contact-form {
  width: 100%;
}

.input-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.half-width {
  width: calc(50% - 32px);
}

.contact-form label {
  display: block;
  margin-bottom: 5px;
}

label {
  margin-top: 64px;
  padding-left: 16px;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form input[type="tel"],
.contact-form input[type="spam"] {
  width: 100%;
  padding: 16px;
  background-color: transparent;
  color: white;
  border: none;
  border-bottom: 1px solid white;
}

.contact-form textarea {
  width: 100%;
  height: 100px;
  padding: 16px;
  background-color: transparent;
  color: white;
  border: none !important;
  border-bottom: 1px solid white !important;
  resize: vertical;
  outline: none;
}

.contact-form input[type="text"]::placeholder,
.contact-form input[type="email"]::placeholder,
.contact-form input[type="tel"]::placeholder,
.contact-form textarea::placeholder {
  color: grey;
}

/* .contact-form button {
  padding: 10px 20px;
  background-color: white;
  color: black;
  border: none;
  cursor: pointer;
  margin-top: 10px;
  display: block;
}

.contact-form button:hover {
  background-color: darkred;
} */

.pristine-error {
  color: #ff0000 !important;
  margin-top: 10px !important;
}
.has-danger label {
  color: #ff0000 !important;
}
.has-danger input,
.has-danger textarea {
  border-color: #ff0000 !important;
}

@media (max-width: 960px) {
  .input-container {
    flex-direction: column;
  }

  .half-width {
    width: 100%;
  }
}

/* ------------------------------------ SITEMAP ------------------------------------ */

.sitemap {
  display: flex;
  gap: 32px;
  flex-direction: column;
  text-align: center;
}

.sitemap a {
  text-decoration: underline;
}

/* ------------------------------------ SCROLLING CARDS ------------------------------------ */

.card-container {
  display: flex;
  overflow: hidden;
  width: 100%;
}

.card-wrapper {
  display: flex;
  animation: scroll 40s linear infinite;
}

.card-wrapper:hover {
  animation-play-state: paused;
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.card {
  flex: 0 0 auto;
  width: 400px;
  padding: 32px;
  margin: 16px;
  background: transparent;
  border: 2px solid #ffffff;
  transition: transform 0.5s ease-in-out;
  display: flex;
  flex-direction: column;
  gap: 16px;
  border-radius: 24px;
}
.card:hover {
  transform: translateY(-5px);
}

.card icon {
  font-size: 2em;
}
