body {
  background-color: #232426;
  color: white;
  overflow-x: hidden;
}
body * {
  font-family: "Lato", sans-serif;
}
body a {
  text-decoration: none;
  -webkit-text-decoration: underline white;
          text-decoration: underline white;
}

iframe {
  overflow-x: hidden;
}

header {
  background-image: url(../img/new-landing-bg.webp);
  background-size: cover;
  background-repeat: no-repeat;
  background-position-y: 50%;
  background-position-x: 40%;
  overflow-x: hidden;
}
header .logo {
  width: 380px;
  width: clamp(270px, 40%, 380px);
  margin-top: 1rem;
}
header h1 {
  font-size: clamp(3rem, 8vw, 4.5rem);
  font-weight: 700;
  color: white;
  text-align: center;
  text-shadow: 2px 2px 10px #232426;
}
header h4 {
  font-size: 1.5rem;
  font-weight: 300;
  margin-bottom: 0;
  text-shadow: 2px 3px 8px #232426;
}
@media (min-width: 768px) {
  header h1 {
    text-align: center;
  }
  header h4 {
    font-size: 1.8rem;
  }
}

.section-title {
  font-weight: 300;
  text-align: center;
  text-transform: uppercase;
  font-size: 2rem;
}

@media (min-width: 768px) {
  .section-title {
    font-size: 3rem;
  }
}
.perks-section .perks {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
@media screen and (max-width: 991px) {
  .perks-section .perks {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
}
.perks-section .perks .perk {
  width: 100%;
  min-height: 40vh;
  position: relative;
}
.perks-section .perks .perk p {
  font-size: 1.4rem;
  text-align: center;
  background: rgba(24, 43, 77, 0.5);
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
  padding: 1rem;
  margin: 0;
  text-shadow: 2px 2px 10px #232426;
}
.perks-section .perks .perk p:hover {
  cursor: default;
}
.perks-section .perks #perk-1 {
  background-image: url(../img/perks/perk-1.webp);
  background-size: cover;
  background-position-x: center;
}
.perks-section .perks #perk-2 {
  background-image: url(../img/perks/perk-2.webp);
  background-size: cover;
  background-position-x: 80%;
  background-position-y: 70%;
}
.perks-section .perks #perk-3 {
  background-image: url(../img/perks/perk-3.webp);
  background-size: cover;
  background-position-x: center;
}
.perks-section .perks #perk-4 {
  background-image: url(../img/perks/perk-4.webp);
  background-size: cover;
  background-position-x: 70%;
}
.perks-section .perks #perk-5 {
  background-image: url(../img/perks/perk-5.webp);
  background-size: cover;
  background-position-x: center;
  background-position-y: 20%;
}
.perks-section .perks #perk-6 {
  background-image: url(../img/perks/perk-6.webp);
  background-size: cover;
  background-position-x: center;
  background-position-y: 55%;
}

.grid-wrapper {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  grid-auto-rows: 200px;
  grid-auto-flow: dense;
}
.grid-wrapper div {
  display: flex;
  justify-content: center;
  align-items: center;
}
.grid-wrapper div img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 5px;
}
.grid-wrapper .wide {
  grid-column: span 2;
}
.grid-wrapper .tall {
  grid-row: span 2;
}
.grid-wrapper .big {
  grid-column: span 2;
  grid-row: span 2;
}

@media (min-width: 751px) and (max-width: 975px) {
  #main-cities .city .wrapper {
    max-height: 163px;
  }
}
#main-cities .city {
  max-height: 300px;
  cursor: pointer;
}
#main-cities .city .wrapper {
  position: relative;
  height: 100%;
  width: 100%;
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}
#main-cities .city .wrapper img {
  max-height: 250px;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  filter: grayscale(100%);
  transform: scale(1);
  transition: all 500ms;
}
#main-cities .city .wrapper h2 {
  position: absolute;
  color: white;
  font-weight: 600;
  font-size: 2.8rem;
  transition: all 500ms;
}
#main-cities .city .wrapper:hover img {
  filter: grayscale(0%);
  transform: scale(1.1);
}
#main-cities .city .wrapper:hover h2 {
  font-size: 3rem;
}

.packs .option {
  max-width: 100%;
  max-height: 350px;
  padding: 0;
}
.packs .option img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 8px;
}
.packs .option .wrapper {
  position: relative;
  height: 100%;
  width: 100%;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}
.packs .option .wrapper .overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: rgba(187, 131, 11, 0.5);
  transition: all 500ms ease;
  text-align: center;
  font-weight: 700;
  opacity: 0;
}
.packs .option .wrapper .overlay:hover {
  opacity: 1;
}

.container {
  overflow: hidden;
}

.iframe-container {
  position: fixed;
  width: 100vw;
  height: 100vh;
  top: 0;
  background-color: rgba(0, 0, 0, 0.8);
  display: flex;
  justify-content: center;
  align-items: center;
}
.iframe-container iframe {
  width: 80%;
  height: 90%;
}
.iframe-container .cross {
  position: fixed;
  top: 1rem;
  right: 1rem;
  color: white;
  cursor: pointer;
}

footer p {
  margin-bottom: 0.3rem;
}/*# sourceMappingURL=main.css.map */