:root {
  --gap: 18px;
  --wrapper: 1200px;
}

@font-face {
  font-family: "SeasonMix";
  src: url("./fonts/SeasonMix-Regular.woff") format("woff"), url("./fonts/SeasonMix-Regular.woff2") format("woff2");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "SeasonMix Bold";
  src: url("./fonts/SeasonMix-SemiBold.woff") format("woff"), url("./fonts/SeasonMix-SemiBold.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
}
@font-face {
  font-family: "Saans";
  src: url("./fonts/SaansRegular.woff") format("woff"), url("./fonts/SaansRegular.woff2") format("woff2");
  font-weight: 100;
  font-style: normal;
}
@font-face {
  font-family: "Saans Bold";
  src: url("./fonts/SaansBold.woff") format("woff"), url("./fonts/SaansBold.woff2") format("woff2");
  font-weight: bold;
  font-style: normal;
}
* {
  box-sizing: border-box;
  outline: none !important;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  -webkit-tap-highlight-color: transparent;
}

a {
  display: inline-block;
  text-decoration: none;
  color: inherit;
  text-decoration: none;
}

h1, h2, h3, h4, h5, p {
  font-size: 1rem;
  font-weight: normal;
  margin: 0;
}

ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

body, html {
  position: relative;
  width: 100%;
  min-height: 100vh;
  height: auto;
  margin: 0;
  font-family: "Saans";
  font-size: 14px;
  color: white;
  background: linear-gradient(180deg, #da001e 33%, #a20911 100%);
  scrollbar-width: thin;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

input[type=text] {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  outline: 0px solid transparent;
  border: 2px solid white;
  width: 18.5714285714rem;
  font-size: 1.1428571429rem;
  text-align: center;
  background: transparent;
  color: white;
  padding: 0.7em 3rem;
  border-radius: 2em;
  font-family: "Saans Bold";
  font-size: 1.2857142857rem;
  text-transform: uppercase;
}
input[type=text]::-moz-placeholder {
  font-family: "Saans Bold";
  color: white;
}
input[type=text]::placeholder {
  font-family: "Saans Bold";
  color: white;
}
input[type=checkbox] {
  position: relative;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  display: grid;
  place-content: center;
  margin: 0;
  font: inherit;
  color: currentColor;
  width: 1.2em;
  height: 1.2em;
  background: transparent;
  transform: translateY(-0.075em);
  margin-top: 2px;
  cursor: pointer;
}
input[type=checkbox] {
  border: 2px solid white;
  border-radius: 100%;
}
input[type=checkbox]::before {
  content: "";
  width: 0.65em;
  height: 0.65em;
  transform: scale(0);
  transition: transform 0.1s ease-in-out;
  border-radius: 0.33em;
  box-shadow: inset 1em 1em white;
}
input[type=checkbox]:checked::before {
  transform: scale(1);
}

.d-none {
  display: none !important;
}
.d-block {
  display: block;
}
@media (max-width: 992px) {
  .d-lg-block {
    display: block !important;
  }
}
@media (max-width: 992px) {
  .d-lg-none {
    display: none !important;
  }
}

.m-b1 {
  margin-bottom: 1rem;
}
.m-b2 {
  margin-bottom: 2rem;
}
.m-t1 {
  margin-top: 1rem;
}
.m-t2 {
  margin-top: 2rem;
}

.freeze {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  display: flex;
  justify-content: space-between;
  mix-blend-mode: lighten;
  opacity: 0.9;
  z-index: 10;
  pointer-events: none;
}
.freeze img {
  max-height: 50vh;
  -o-object-fit: contain;
     object-fit: contain;
}
.freeze img:nth-of-type(1) {
  position: absolute;
  top: 0;
  left: 0;
  width: 60%;
  -o-object-position: top left;
     object-position: top left;
}
.freeze img:nth-of-type(2) {
  position: absolute;
  top: 0;
  right: 0;
  width: 45%;
  max-height: 68vh;
  -o-object-position: top right;
     object-position: top right;
}
.freeze img:nth-of-type(3) {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50%;
  -o-object-position: bottom left;
     object-position: bottom left;
}
.freeze img:nth-of-type(4) {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 50%;
  max-height: 40vh;
  -o-object-position: bottom right;
     object-position: bottom right;
}

.header {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 4rem 0 1rem;
}
.header img {
  position: relative;
  display: block;
  max-width: 12.8571428571rem;
  width: 39%;
}

.main {
  display: flex;
  flex: 1;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: auto;
}

.footer {
  padding: 15px 0;
  margin: 0 auto;
}
.footer a {
  text-decoration: underline;
}
.footer a:hover {
  text-decoration: none;
}

.animate > * {
  opacity: 0;
  transform: translateZ(0);
  will-change: transform, opacity;
}

.step {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  gap: 2.1428571429rem;
  padding-bottom: 13vh;
}
.step__game {
  padding-bottom: 7vh;
}

.text {
  text-align: center;
  font-family: "Saans";
  font-size: 1.4285714286rem;
  max-width: 90%;
}
.text strong {
  font-family: "Saans Bold";
  font-size: 1.7142857143rem;
}

.btn {
  background: white;
  color: black;
  padding: 0.7em 3rem;
  border-radius: 2em;
  font-family: "Saans Bold";
  font-size: 1.2857142857rem;
  text-transform: uppercase;
  width: auto;
}
.btn:hover {
  color: white;
  background: black;
}

.msg_error {
  color: burlywood;
  line-height: 0;
  margin-top: -0.75em;
}

.termometro {
  position: relative;
}
.termometro__img {
  position: relative;
  display: block;
  height: 35vh;
  min-height: 21.4285714286rem;
}
.termometro__bar {
  --percent: 1;
  position: absolute;
  display: block;
  bottom: 24.5%;
  left: 50%;
  transform: translateX(-50%);
  background: white;
  width: 29%;
  height: calc(var(--percent) * 0.66%);
  z-index: 2;
}
.termometro__grados {
  position: absolute;
  top: 10%;
  right: 0%;
  width: 100%;
  height: 60%;
  transform: translateX(100%);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.termometro__grado {
  position: relative;
  display: block;
  font-family: "Saans Bold";
  font-size: 1.7857142857rem;
  width: 100%;
  display: flex;
  align-items: center;
  gap: 20%;
}
.termometro__grado span:nth-of-type(1) {
  position: relative;
  display: block;
  width: 27%;
  height: 20%;
  background: white;
  border-radius: 2rem;
  top: 6%;
}
.termometro__time {
  --sec: 0;
  position: absolute;
  top: 2%;
  left: 0%;
  width: 83%;
  aspect-ratio: 1/1;
  transform: translateX(-100%);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.termometro__time__res {
  font-family: "Saans Bold";
  font-size: 1.7857142857rem;
  line-height: 1;
}
.termometro__time__text {
  position: relative;
  font-size: 1.0714285714rem;
  font-family: "Saans";
  line-height: 1;
}
.termometro__time svg {
  position: absolute;
  top: 0;
  left: 0;
  transform: rotate(-90deg);
  transform-origin: center;
}
.termometro__time svg .progress {
  position: relative;
  stroke: white;
  stroke-width: 9.5;
  fill: none;
  stroke-dasharray: 270;
  stroke-dashoffset: calc(270 * (var(--totalSec) - var(--sec)) / var(--totalSec));
  transition: stroke-dashoffset 0.33s linear;
}/*# sourceMappingURL=style.css.map */