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

@font-face {
  font-family: "Sofia";
  src: url(../web-fonts/sofiasanscondensed-variablefont_wght-webfont.woff), url(../web-fonts/sofiasanscondensed-variablefont_wght-webfont.woff2);
  font-display: swap;
}
p {
  margin-bottom: 1rem;
}

h1,
h2,
h3,
h4,
h5,
.h5,
h6 {
  font-family: "Sofia Sans Condensed", sans-serif;
  line-height: 1.3;
  color: hsl(137, 40%, 61%);
  font-variation-settings: "wght" 200;
}

h1 {
  font-size: 4.209rem;
}

h2 {
  font-size: 3.157rem;
  color: hsl(0, 0%, 100%);
  padding: 0.25em 0.5em;
}
@media (width <= 800px) {
  h2 {
    font-size: 2.157rem;
  }
}

h3 {
  font-size: 2.369rem;
  color: hsl(0, 0%, 100%);
  padding: 0.25em 0.5em;
  background: linear-gradient(-45deg, transparent 25%, hsl(137, 40%, 61%) 25%);
}

h4 {
  font-size: 1.777rem;
}

h5, .h5 {
  font-size: 1.333rem;
}

h6 {
  font-size: 1.133rem;
}

body,
.text_small {
  font-family: "Sofia Sans Condensed", sans-serif;
  font-size: 0.75rem;
  font-variation-settings: "wght" 400;
}

body {
  font-size: inherit;
  font-family: "Sofia Sans Condensed", sans-serif;
  line-height: 1.75;
  overflow-x: hidden;
  width: 100%;
  background-color: hsl(204, 27%, 24%);
}

.wrap {
  max-width: 2240px;
  margin: 0 auto;
  display: block;
  position: relative;
  padding: 0 3vw;
}

img {
  max-width: 100%;
}

a {
  text-decoration: none;
  padding: 0.5em 1em;
  letter-spacing: 0.1em;
  color: hsl(0, 0%, 100%);
}

a.button {
  background-color: hsl(0, 0%, 0%);
  padding: 0.5em 1em;
  color: #fff;
}

.active {
  background-color: hsl(201, 17%, 51%);
  box-shadow: 0 5px 5px 0 hsla(0, 0%, 0%, 0.15);
}

#up {
  position: absolute;
  width: 50px;
  bottom: 400px;
  left: calc(90% - 14px);
  z-index: 100;
  display: block;
  height: 25px;
}

.up-arrow {
  position: relative;
  width: 0;
  height: 30px;
  border: 2px solid;
  border-radius: 2px;
  animation: jumpInfinite 1.5s infinite;
}

.up-arrow:after {
  content: " ";
  position: absolute;
  top: -8px;
  left: -8px;
  width: 16px;
  height: 16px;
  border-top: 2px solid;
  border-right: 2px solid;
  border-radius: 4px;
  will-change: transform;
  transform: rotateZ(-45deg);
}

.header {
  background-color: hsl(204, 27%, 24%);
  height: 670px;
}
.header .two-column {
  display: grid;
  grid-template-columns: 2fr 3fr;
  overflow: hidden;
}
.header .two-column .text {
  align-items: center;
  justify-content: space-between;
  display: flex;
}
.header .two-column .text .text-box {
  height: 130px;
  margin-inline: auto;
}
.header .two-column .hero img {
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 1/1.56;
}

.text .vertical-header {
  display: inline-block;
  font-size: 8.9rem;
  letter-spacing: 0.1em;
  line-height: 1;
  transform: rotate(-90deg);
  color: #fff;
  margin-left: -90px;
  padding: 0.125em 0.5em;
  background-color: hsl(137, 40%, 61%);
  font-variation-settings: "whgt" 800;
  position: relative;
  /*&::before{
    content:'';
    display: block;
    position: fixed;
    transform: rotate(90deg)  translate(-10%,-1200%);
    transform-origin: top left;
    height:30px;
    width:1.25em;
    background-image: url(../../img/snow/Asset\ 7.svg);
    background-size: cover;
  }*/
}
.text .text-box .horiz {
  font-size: 1.333rem;
  color: hsl(137, 40%, 61%);
}
.text .text-box h1 {
  color: hsl(137, 40%, 61%);
  text-align: center;
  font-weight: 200;
}
.text .text-box h1 span {
  color: #fff;
}
.text .text-box p {
  color: #fff;
  font-size: 1.5rem;
}

.hero-wrap {
  position: relative;
}
.hero-wrap .hero {
  transform: perspective(800px) rotateY(-8deg) translateX(-100px);
  transition: transform 1s ease 0s;
  border-radius: 4px;
  margin-left: 25px;
  box-shadow: 10px 10px 10px 10px #111;
}
.hero-wrap .hero:hover {
  transform: perspective(800px) rotateY(0deg);
}

@media (width <= 800px) {
  .header {
    height: 1100px;
  }
  .header .hero-wrap .hero {
    transform: none;
    margin-left: 0;
  }
  .header .hero-wrap .container {
    top: 80%;
  }
  .header .two-column {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    gap: 2rem;
    margin: 2rem 0;
    padding-top: 2rem;
  }
  .header .two-column .text .vertical-header {
    display: inline-block;
    font-size: 4rem;
    margin-left: -10%;
  }
  .header .two-column .text .text-box {
    height: auto;
  }
  .header .two-column .text .text-box h1 {
    font-size: 3rem;
    text-align: left;
  }
  .header .two-column .text .text-box p {
    font-size: 1.25rem;
  }
}
.container {
  position: absolute;
  top: 50%;
  height: 153px;
  width: 654px;
  z-index: 10;
  transform: translateY(-20%);
  background-image: url(../img/layout/green-wave-top.webp);
  background-size: contain;
  background-repeat: no-repeat;
}

.circle {
  position: absolute;
  width: 5px;
  height: 5px;
  background-color: lime;
  border-radius: 50%;
  z-index: 20;
  box-shadow: 0px 0px 10px 10px lime;
}

.pulse {
  offset-path: path("M654 75.76 567.16 75.63 556 119.13 536.88 26.13 533.34 131.13 516.69 0.13 510.67 153.13 496.51 33.13 488.01 124.13 476.32 53.13 451.88 75.13 0 76.13");
  animation: pulse 3000ms infinite ease-in-out reverse;
}

@keyframes pulse {
  100% {
    offset-distance: 100%;
  }
}
.hero-wrap > .container {
  left: -35%;
  right: 0;
}

.blog > .container {
  bottom: -250px;
  scale: 0.8;
  margin: auto;
}

@media (width <= 800px) {
  .hero-wrap > .container {
    left: -90%;
    right: 0;
    -o-object-fit: scale-down;
       object-fit: scale-down;
  }
}
.two-column {
  display: grid;
  grid-template-columns: 1fr 2fr;
  overflow: hidden;
}
.two-column .text {
  align-items: center;
  justify-content: center;
  display: flex;
}
.two-column .text .text-box {
  height: 130px;
  position: relative;
}
.two-column .hero img {
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 1/1.56;
}

h2 {
  display: block;
  grid-area: header;
  max-width: -moz-fit-content;
  max-width: fit-content;
  margin-bottom: 1em;
}

.main-two-column {
  display: grid;
  margin-top: 3rem;
  background: linear-gradient(45deg, hsl(204, 27%, 24%) 75%, hsl(201, 17%, 51%));
  gap: 2rem;
  padding: 2rem;
  overflow: hidden;
  grid-template-columns: repeat(auto-fit, minmax(min(560px, 100%), 1fr));
}
@media (width < 1270px) {
  .main-two-column {
    grid-template-columns: minmax(100%, 1fr);
    grid-auto-flow: row;
  }
}
@media (width < 620px) {
  .main-two-column {
    grid-template-columns: minmax(100%, 1fr);
    grid-auto-flow: row;
    padding: 0;
  }
}

.guest {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  align-items: flex-start;
  padding-block: 2rem;
  border-radius: 5px;
  background: #fff;
  color: #666;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.25);
}
.guest:last-of-type {
  margin-bottom: 0;
}
.guest .title {
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
  font-style: italic;
}
.guest .date {
  font-size: 1.5rem;
  font-style: italic;
  justify-self: end;
}
.guest .date span {
  display: inline-block;
  padding: 0.5em 1em;
  background-color: #eee;
}
.guest .pic {
  display: block;
  padding: 0 2rem;
  width: 100%;
}
.guest .pic img {
  padding: 0 1rem 1rem 0;
  height: 300px;
  max-width: 350px;
  -o-object-fit: fill;
     object-fit: fill;
  float: left;
  border-radius: 5px;
  -webkit-mask-image: radial-gradient(ellipse 95% 113% at 47% 47%, black 46%, transparent 53%);
          mask-image: radial-gradient(ellipse 95% 113% at 47% 47%, black 46%, transparent 53%);
}
.guest .legend {
  text-wrap: pretty;
}
.guest .face {
  font-size: 1.125rem;
}
.guest .face a {
  letter-spacing: -0.01em;
  color: rgb(7, 46, 90);
  background-color: rgb(139, 186, 247);
  border-radius: 5px;
}
.guest .face audio {
  margin: 2rem auto;
}
.guest .link {
  font-size: 1.125rem;
}
.guest .link a {
  letter-spacing: -0.01em;
  background-color: rgb(255, 255, 255);
  color: #666;
  border: solid thin #ccc;
  border-radius: 5px;
}
.guest .link,
.guest .face {
  min-width: 51%;
  padding: 1rem;
}
.guest .link span,
.guest .face span {
  display: inline-block;
  margin-left: 1rem;
  transition: all 250ms 250ms ease;
}
.guest .link:hover span,
.guest .face:hover span {
  margin-left: 2rem;
  transition: all 500ms 500ms ease;
}

.counter {
  grid-column: span 2;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 1rem;
  background: linear-gradient(to right, hsl(204, 27%, 24%), hsl(201, 17%, 51%));
}
.counter a {
  width: 30px;
  box-shadow: 5px 0 -5px 0 rgba(0, 0, 0, 0.25);
}

.info {
  height: 50px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
.info .img-wrap {
  width: 35px;
  height: 35px;
  margin-right: 25px;
}
.info img {
  width: 35px;
  aspect-ratio: 1;
  background-color: rgba(165, 221, 188, 0.75);
  border: solid thin #000;
  border-radius: 50%;
}

.nav-toggle-label {
  display: none;
}

nav {
  width: 100%;
  margin: 0 auto;
  position: relative;
  display: flex;
  align-items: center;
}
@media (801px <= width <= 1049px) {
  nav img {
    margin: -125px auto 0;
  }
}
@media (801px <= width <= 1049x) {
  nav {
    flex-direction: column;
    height: 200px;
    justify-content: center;
  }
}
nav .navbar {
  position: absolute;
  inset: 30px 0 0 0;
}
@media (801px <= width <= 1049px) {
  nav .navbar {
    inset: 100px 0 0 0;
  }
}
nav .navbar .menu-items {
  height: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  transition: transform 0.5s ease-in-out;
  text-align: center;
  gap: 1vw;
}
@media (801px <= width <= 1480px) {
  nav .navbar .menu-items {
    gap: 1vw;
  }
}
nav li {
  position: relative;
  isolation: isolate;
  -webkit-backdrop-filter: contrast(90%);
          backdrop-filter: contrast(90%);
  line-height: 2em;
  padding: 0.5em 1em;
}
@media (801px <= width <= 1480px) {
  nav li {
    padding: 0.25em 0.5em;
  }
}
nav li a {
  filter: contrast(2);
}
nav .active::after {
  display: none;
}
nav li::after {
  content: "";
  position: absolute;
  z-index: -1;
  display: block;
  inset: 0 99% 0% 0;
  background-color: hsl(201, 17%, 51%);
  box-shadow: 0 5px 5px 0 hsla(0, 0%, 0%, 0.15);
  transition: all 250ms ease-in-out;
}
nav li:hover::after {
  inset: 0 0 0 0;
}
nav .active {
  background-color: hsl(201, 17%, 51%);
  box-shadow: 0 5px 5px 0 hsla(0, 0%, 0%, 0.15);
}
nav .navbar {
  margin: 0 auto;
}
nav .nav-container {
  height: 100px;
  position: relative;
  width: 100%;
}
nav .nav-container img {
  width: 150px;
  height: auto;
}
nav .navbar .nav-container li {
  list-style: none;
}
nav .navbar .nav-container a {
  text-decoration: none;
}
nav .nav-container .checkbox {
  position: absolute;
  display: block;
  height: 32px;
  width: 32px;
  top: 20px;
  right: 20px;
  z-index: 5;
  opacity: 0;
  cursor: pointer;
}

@media (width <= 800px) {
  .container {
    padding: 0px;
  }
  nav {
    width: auto;
    margin: 0 -5vw;
  }
  nav img {
    transform: translateX(-50%);
    margin-left: 50%;
  }
  nav .nav-container {
    max-width: 150%;
    position: relative;
    z-index: 1100;
  }
  nav .nav-container .hamburger-lines {
    display: block;
  }
  nav li {
    width: 90%;
  }
  nav .nav-container .hamburger-lines .line {
    display: block;
    height: 4px;
    width: 100%;
    border-radius: 10px;
    background: #fff;
  }
  nav .nav-container .hamburger-lines {
    display: none;
    height: 26px;
    width: 32px;
    position: absolute;
    top: 17px;
    right: 20px;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
  nav .nav-container .hamburger-lines .line1 {
    transform-origin: 0% 0%;
    transition: transform 0.4s ease-in-out;
  }
  nav .nav-container .hamburger-lines .line2 {
    transition: transform 0.2s ease-in-out;
  }
  nav .nav-container .hamburger-lines .line3 {
    transform-origin: 0% 100%;
    transition: transform 0.4s ease-in-out;
  }
  nav .navbar .menu-items {
    transform: translate(150%);
    flex-direction: column;
    justify-content: flex-start;
    background-color: hsl(204, 27%, 24%);
    height: 100vh;
    width: 100%;
    padding-left: 0;
  }
  nav .navbar .nav-container li:nth-child(2) {
    margin-left: 0;
  }
  nav .nav-container input[type=checkbox]:checked ~ .menu-items {
    transform: translateX(0);
  }
  nav .nav-container input[type=checkbox]:checked ~ .hamburger-lines .line1 {
    transform: rotate(45deg);
  }
  nav .nav-container input[type=checkbox]:checked ~ .hamburger-lines .line2 {
    transform: scaleY(0);
  }
  nav .nav-container input[type=checkbox]:checked ~ .hamburger-lines .line3 {
    transform: rotate(-45deg);
  }
}
.players-wrap {
  right: 0;
  top: 200px;
  position: absolute;
  z-index: 1000;
  overflow: hidden;
}
.players-wrap .players {
  background-color: #333;
  transform: translateX(290px);
  position: relative;
  width: 350px;
  padding: 1rem 1rem;
  border-radius: 5px;
  box-shadow: -5px 5px 5px 5px rgba(0, 0, 0, 0.15);
  transition: all 500ms 250ms ease-in-out;
}
.players-wrap .players p {
  transform: rotate(90deg);
  position: absolute;
  top: 85px;
  left: -30px;
  font-size: 1.133rem;
  color: hsl(137, 40%, 61%);
}
.players-wrap .players p::before {
  content: "";
  display: block;
  width: 100%;
  height: 5px;
  background-color: var(--button);
}
.players-wrap .players .apps {
  display: block;
  width: 80%;
  height: 50px;
  margin: 1em 0 1em auto;
  box-shadow: 0 0 5px hsl(137, 40%, 61%);
  border-radius: 3px;
  transition: all 250ms ease;
  background-color: hsl(137, 36%, 77%);
}
.players-wrap .players .apps:hover {
  background-color: hsl(137, 40%, 61%);
  transition: all 250ms ease;
}
.players-wrap .players .apps img {
  height: 100%;
  width: auto;
  background-color: #000;
  padding: 0.5rem;
}
.players-wrap .players:hover {
  transform: translateX(0);
}

@media (width <= 800px) {
  .players-wrap {
    right: 0;
    top: 200px;
  }
  .players-wrap .players {
    margin-right: -315px;
  }
}
footer {
  padding: 50px 100px;
  background-color: #000;
}
footer .footer {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(4, 1fr);
  place-items: center;
}
footer .footer-wrap {
  /*background-color: #121212;*/
  filter: sepia(1);
  padding: 2rem;
}
footer .footer-wrap:nth-child(1) {
  background-color: #000;
}
footer .h5::after {
  content: "";
  display: block;
  height: 100px;
  width: 300px;
  background: url(../img/layout/green-wave-top.webp);
  background-repeat: no-repeat;
  background-size: contain;
  transform: scaleX(-1);
}
footer address {
  letter-spacing: 0.15rem;
}
footer ul,
footer li {
  display: block;
  color: #fff;
}
footer li {
  padding: 0.5em 0;
}
footer a {
  padding-inline: 0;
}

@media (width <= 800px) {
  footer {
    padding: 0;
    margin-bottom: 1rem;
  }
  footer .footer {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    place-items: center;
    gap: 0.5rem;
  }
  footer .footer-wrap {
    filter: sepia(1);
  }
}/*# sourceMappingURL=gaeste.css.map */