/*!**********************************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js!./node_modules/postcss-loader/dist/cjs.js!./node_modules/sass-loader/dist/cjs.js!./src/styles/index.scss ***!
  \**********************************************************************************************************************************************************/
@font-face {
  font-family: "Rubik";
  src: url(../../src/assets/images/design/Rubik-SemiBold..woff2) format("woff2"), url(../../src/assets/images/design/Rubik-SemiBold..woff) format("woff");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Rubik";
  src: url(../../src/assets/images/design/Rubik-Regular..woff2) format("woff2"), url(../../src/assets/images/design/Rubik-Regular..woff) format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Sofia Sans";
  src: url(../../src/assets/images/design/SofiaSans-Black..woff2) format("woff2"), url(../../src/assets/images/design/SofiaSans-Black..woff) format("woff");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  min-height: 8rem;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
@media (max-width: 768px) {
  .header {
    min-height: 48px;
  }
}
.header__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media (max-width: 768px) {
  .header__wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 10000;
    background: rgba(23, 65, 77, 0.88);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
}
.header__logo {
  width: 32rem;
  height: 12rem;
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media (max-width: 768px) {
  .header__logo {
    display: none;
  }
}
.header__logo img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
@media (max-width: 768px) {
  .header__logo img {
    -o-object-fit: cover;
       object-fit: cover;
  }
}
.header ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-top: 3rem;
  width: 37.5rem;
}
@media (max-width: 768px) {
  .header ul {
    -webkit-transform: unset;
            transform: unset;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    text-align: center;
    gap: unset;
    min-width: unset;
    width: unset;
  }
}
.header ul li {
  font-weight: 600;
  font-size: 1.6rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: #ffffff;
}
@media (max-width: 768px) {
  .header ul li {
    margin: 0 0 20px 0;
    font-size: 18px;
  }
}
.header ul li:last-child {
  margin-right: 0;
}
.header ul li a {
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.header ul li:hover a {
  opacity: 0.2;
}
.header .language {
  position: relative;
  overflow: hidden;
}
.header .language::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 0.2rem;
  background-color: rgba(255, 255, 255, 0.2);
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}
.header .language a {
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.header .language-active {
  opacity: 1 !important;
}
.header .language a {
  opacity: 0.2;
}
.header .language a:hover {
  opacity: 1;
}
.header .language a:first-child {
  margin-right: 3.2rem;
}
.header .header__logo-mobile {
  display: none;
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 188px;
  height: 72px;
}
.header .header__logo-mobile img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 768px) {
  .header .header__logo-mobile {
    display: block;
  }
}
.header .burger {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 25px;
  height: 25px;
  display: none;
  z-index: 10000;
}
@media (max-width: 768px) {
  .header .burger {
    display: block;
  }
}
.header .burger span {
  position: absolute;
  top: 0;
  left: 0;
  height: 1px;
  width: 100%;
  background-color: #fff;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  -webkit-transform-origin: top center;
          transform-origin: top center;
}
.header .burger span:nth-child(2) {
  top: 5px;
}
.header .burger span:nth-child(3) {
  top: 10px;
}

.burger-active span:nth-child(1) {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  top: 5px !important;
}
.burger-active span:nth-child(2) {
  opacity: 0;
}
.burger-active span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  top: 6px !important;
}

.header__wrapper-active {
  opacity: 1;
  visibility: visible;
  -webkit-backdrop-filter: blur(12px);
          backdrop-filter: blur(12px);
}

.hero {
  height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  background-position: top center;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
  overflow: hidden;
}
@media (max-width: 768px) {
  .hero {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}
.hero__wrapper {
  position: relative;
  z-index: 20;
}
@media (max-width: 768px) {
  .hero__wrapper {
    margin-top: 128px;
  }
}
.hero__subtitle {
  font-weight: 600;
  font-size: 1.4rem;
  line-height: 3.6rem;
  letter-spacing: 8px;
  color: #437180;
  margin-bottom: 2.4rem;
}
@media (max-width: 768px) {
  .hero__subtitle {
    font-size: 12px;
    line-height: 36px;
    margin-bottom: 8px;
  }
}
.hero__title {
  font-family: "Sofia Sans";
  font-size: 9.6rem;
  line-height: 11.5rem;
  text-align: center;
  text-transform: uppercase;
  color: #17414D;
  margin-bottom: 2.4rem;
  width: 80%;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 768px) {
  .hero__title {
    font-size: 40px;
    line-height: 48px;
    margin-bottom: 16px;
    width: 70%;
    margin-left: auto;
    margin-right: auto;
  }
}
@media (max-width: 768px) {
  .hero__title {
    width: 100%;
  }
}
@media (max-width: 340px) {
  .hero__title {
    font-size: 34px;
    line-height: 42px;
  }
}
.hero__text {
  font-weight: 400;
  font-size: 2.4rem;
  line-height: 3.6rem;
  text-align: center;
  letter-spacing: 0.5px;
  color: #437180;
  width: 68%;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .hero__text {
    font-size: 18px;
    line-height: 36px;
    width: 100%;
  }
}
.hero .grass-img {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 10;
}
@media (max-width: 768px) {
  .hero .grass-img {
    width: 1100px;
  }
}
.hero .mountain-left-img {
  position: absolute;
  bottom: -2rem;
  left: 0;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  height: auto;
  z-index: 5;
  -o-object-fit: contain;
     object-fit: contain;
}
@media (max-width: 1300px) {
  .hero .mountain-left-img {
    bottom: -10rem;
    width: 60%;
  }
}
@media (max-width: 768px) {
  .hero .mountain-left-img {
    bottom: -30px;
    left: -210px;
    width: 750px;
  }
}
@media (max-width: 500px) {
  .hero .mountain-left-img {
    bottom: -70px;
    left: -180px;
    width: 640px;
  }
}
.hero .mountain-right-img {
  position: absolute;
  bottom: -2rem;
  right: 0;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  height: auto;
  z-index: 5;
  -o-object-fit: contain;
     object-fit: contain;
}
@media (max-width: 1300px) {
  .hero .mountain-right-img {
    bottom: -10rem;
    width: 60%;
  }
}
@media (max-width: 768px) {
  .hero .mountain-right-img {
    bottom: 10px;
    right: -180px;
    width: 700px;
  }
}
@media (max-width: 500px) {
  .hero .mountain-right-img {
    width: 615px;
  }
}

@media (max-height: 650px) and (max-width: 768px) {
  .hero {
    height: unset;
  }
  .hero__text {
    margin-bottom: 250px;
  }
}
.elements {
  position: relative;
  z-index: 200;
}
.elements__wrapper {
  margin-top: -10rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-pack: distribute;
      justify-content: space-around;
}
@media (max-width: 768px) {
  .elements__wrapper {
    margin-top: 10px;
  }
}
.elements .elements-block {
  background-repeat: no-repeat;
  background-position: top center;
  background-size: cover;
  display: inline-block;
  width: 19.3rem;
  height: 21.3rem;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media (max-width: 768px) {
  .elements .elements-block {
    margin-top: -50px;
    width: 70px;
    height: 80px;
  }
}
.elements .elements-block__img {
  position: absolute;
  top: -4rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 10rem;
  height: 10rem;
}
@media (max-width: 768px) {
  .elements .elements-block__img {
    width: 48px;
    height: 48px;
    top: -20px;
  }
}
.elements .elements-block__text {
  font-family: "Sofia Sans";
  font-size: 3.2rem;
  line-height: 4.8rem;
  text-align: center;
  letter-spacing: 0.08em;
  color: #ffffff;
  text-transform: uppercase;
}
@media (max-width: 768px) {
  .elements .elements-block__text {
    font-size: 12px;
    line-height: 24px;
  }
}

.rock {
  margin-top: 14.6rem;
}
@media (max-width: 768px) {
  .rock {
    margin-top: 74px;
  }
}
.rock__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media (max-width: 768px) {
  .rock__wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.rock .rock-block {
  width: 45%;
  position: relative;
}
@media (max-width: 768px) {
  .rock .rock-block {
    width: 100%;
  }
  .rock .rock-block:nth-child(2) {
    margin-top: 48px;
    text-align: center;
  }
}
.rock .rock-block img {
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
@media (max-width: 768px) {
  .rock .rock-block img {
    width: calc(100% - 40px);
  }
}
.rock .rock-block__island {
  position: absolute;
  bottom: -8rem;
  right: -25rem;
  width: 30.2rem;
  height: 41.3rem;
  -webkit-animation: island-animation 3s linear infinite;
          animation: island-animation 3s linear infinite;
}
@media (max-width: 768px) {
  .rock .rock-block__island {
    bottom: calc(0% - 30px);
    right: 0;
    width: 120px !important;
    height: 164px;
    -o-object-fit: contain;
       object-fit: contain;
  }
}
@-webkit-keyframes island-animation {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
  30% {
    -webkit-transform: translate(-0.3rem, 1rem);
            transform: translate(-0.3rem, 1rem);
  }
  70% {
    -webkit-transform: translate(-0.3rem, -0.5rem);
            transform: translate(-0.3rem, -0.5rem);
  }
  100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
}
@keyframes island-animation {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
  30% {
    -webkit-transform: translate(-0.3rem, 1rem);
            transform: translate(-0.3rem, 1rem);
  }
  70% {
    -webkit-transform: translate(-0.3rem, -0.5rem);
            transform: translate(-0.3rem, -0.5rem);
  }
  100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
}

.cards {
  margin-top: 33.4rem;
  background-size: cover;
  background-position: top center;
  background-repeat: no-repeat;
  position: relative;
}
@media (max-width: 768px) {
  .cards {
    margin-top: 144px;
  }
}
.cards .cards-bg-png {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cards .cards-bg-png {
    display: none;
  }
}
.cards__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-transform: translateY(-10rem);
          transform: translateY(-10rem);
}
@media (max-width: 768px) {
  .cards__wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-transform: translateY(-30px);
            transform: translateY(-30px);
  }
}
.cards .cards-block {
  background-size: cover;
  background-position: top center;
  background-repeat: no-repeat;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  color: #ffffff;
  width: 28%;
  min-height: 57.6rem;
  padding: 0 3rem;
}
@media (max-width: 768px) {
  .cards .cards-block {
    margin-bottom: 24px;
    width: 50%;
    min-width: 330px;
    min-height: 500px;
    padding: 0 15px;
    background-size: contain;
  }
}
@media (max-width: 400px) {
  .cards .cards-block {
    min-height: 450px;
  }
}
.cards .cards-block img {
  width: 11rem;
  height: 12rem;
  -o-object-fit: contain;
     object-fit: contain;
  margin: 5.9rem 0 3.2rem;
}
@media (max-width: 768px) {
  .cards .cards-block img {
    width: 60px;
    height: 80px;
    margin: 46px 0 24px;
  }
}
.cards .cards-block h2 {
  font-family: "Sofia Sans";
  font-size: 3.2rem;
  line-height: 3.8rem;
  text-align: center;
  text-transform: uppercase;
  margin-bottom: 1.6rem;
}
@media (max-width: 768px) {
  .cards .cards-block h2 {
    font-size: 26px;
    line-height: 31px;
    margin-bottom: 8px;
  }
}
.cards .cards-block p {
  font-weight: 400;
  font-size: 1.8rem;
  line-height: 3.6rem;
  text-align: center;
  color: rgba(255, 255, 255, 0.7);
  text-shadow: 0px 2px 4px rgba(0, 0, 0, 0.2);
}
@media (max-width: 768px) {
  .cards .cards-block p {
    font-size: 16px;
    line-height: 28px;
    padding: 0 25px;
  }
}
.cards .cards-mobile-img {
  display: none;
}
@media (max-width: 768px) {
  .cards .cards-mobile-img {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    -o-object-fit: contain;
       object-fit: contain;
    display: block;
  }
}

.battle {
  margin-top: 14.4rem;
}
@media (max-width: 768px) {
  .battle {
    margin-top: 72px;
  }
}
.battle__wrapper {
  text-align: center;
}
.battle .title {
  margin-bottom: 5.8rem;
}
@media (max-width: 768px) {
  .battle .title {
    margin-bottom: 42px;
  }
}
.battle .title::after {
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.battle .text {
  width: 70%;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .battle .text {
    display: none;
  }
}
.battle .battle-video {
  position: relative;
  width: 100%;
}
.battle .battle-video .play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 12rem;
  height: 12rem;
  cursor: pointer;
}
@media (max-width: 768px) {
  .battle .battle-video .play-btn {
    width: 48px;
    height: 48px;
    margin-top: 0;
  }
}

.game {
  margin: 14.4rem 0;
  position: relative;
  padding: 12.3rem 0;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top center;
  height: 33.3rem;
}
@media (max-width: 768px) {
  .game {
    padding: 24px 0;
    margin: 72px 0;
    height: unset;
  }
}
@media (max-width: 400px) {
  .game {
    min-height: 460px;
  }
}
.game .game-block-character {
  position: absolute;
  bottom: -10rem;
  right: 0;
  width: 74.6rem;
  height: 57.6rem;
  -webkit-transform: translate(0, 20rem);
          transform: translate(0, 20rem);
  -webkit-transition: 1s;
  transition: 1s;
  -webkit-transition-delay: 0.5s;
          transition-delay: 0.5s;
}
@media (max-width: 768px) {
  .game .game-block-character {
    bottom: -40px;
    left: 50%;
    right: unset;
    -webkit-transform: translate(-50%, 100px);
            transform: translate(-50%, 100px);
    width: 326px;
    height: 254px;
    z-index: 200;
    position: relative;
    margin-top: -50px;
  }
}
.game .game-block-character img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.game .game-block-character-active {
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
}
@media (max-width: 768px) {
  .game .game-block-character-active {
    -webkit-transition-delay: 1s;
            transition-delay: 1s;
    -webkit-transform: translate(-50%, 0);
            transform: translate(-50%, 0);
  }
}
@media (max-width: 768px) {
  .game .game-block {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    text-align: center;
  }
  .game .game-block:first-child {
    position: relative;
    z-index: 100;
  }
}
.game .game-block .text {
  margin-bottom: 3.2rem;
}
@media (max-width: 768px) {
  .game .game-block .text {
    margin-bottom: 17px;
  }
}
.game .game-mobile {
  display: none;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
@media (max-width: 768px) {
  .game .game-mobile {
    display: block;
  }
}
.game #timer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  opacity: 0;
  -webkit-transform: translateY(10rem);
          transform: translateY(10rem);
  -webkit-transition: all 1s !important;
  transition: all 1s !important;
}
.game #timer div {
  font-family: "Sofia Sans";
  font-weight: 900;
  font-size: 4rem;
  line-height: 4.8rem;
  text-transform: uppercase;
  color: #323232;
  background-color: #fff;
  border-radius: 0.8rem;
  margin-right: 2.4rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 19.3rem;
  height: 12.8rem;
}
@media (max-width: 768px) {
  .game #timer div {
    font-size: 24px;
    line-height: 24px;
    border-radius: 6px;
    width: 98px;
    height: 64px;
    margin-right: 16px;
  }
}
.game #timer div:last-child {
  margin-right: 0;
}
.game #timer div span {
  font-family: "Rubik";
  font-weight: 600;
  font-size: 2rem;
  line-height: 3.6rem;
  text-align: center;
  letter-spacing: 0.05rem;
  text-transform: capitalize;
  color: #8CCB77;
}
@media (max-width: 768px) {
  .game #timer div span {
    font-size: 16px;
    line-height: 16px;
    letter-spacing: 0.5px;
    margin-top: 4px;
    display: inline-block;
  }
}
.game .text {
  width: 50%;
}
@media (max-width: 768px) {
  .game .text {
    width: 100%;
  }
}

.game__wrapper-active #timer {
  -webkit-transition-delay: 1s !important;
          transition-delay: 1s !important;
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.join {
  text-align: center;
  margin: 14.4rem 0;
}
@media (max-width: 768px) {
  .join {
    margin: 72px 0;
  }
}
.join .title::after {
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.join img {
  margin-bottom: 3.2rem;
  width: 9.6rem;
  height: 9.6rem;
}
@media (max-width: 768px) {
  .join img {
    width: 64px;
    height: 64px;
    margin-bottom: 24px;
  }
}
.join .text {
  width: 55%;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .join .text {
    width: 100%;
  }
}
.join form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 3.2rem;
}
@media (max-width: 768px) {
  .join form {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-top: 24px;
  }
}
.join form input {
  font-size: 1.6rem;
  line-height: 3.6rem;
  border: 0.3rem solid #8CCB77;
  border-radius: 0.8rem;
  padding: 1rem 1.2rem;
  min-width: 42rem;
  margin-right: 1.6rem;
  outline: none;
  -webkit-transition: border-color 0.3s;
  transition: border-color 0.3s;
}
.join form input::-webkit-input-placeholder {
  color: rgba(50, 50, 50, 0.3);
}
.join form input::-moz-placeholder {
  color: rgba(50, 50, 50, 0.3);
}
.join form input:-ms-input-placeholder {
  color: rgba(50, 50, 50, 0.3);
}
.join form input::-ms-input-placeholder {
  color: rgba(50, 50, 50, 0.3);
}
.join form input::placeholder {
  color: rgba(50, 50, 50, 0.3);
}
@media (max-width: 768px) {
  .join form input {
    width: -webkit-fill-available;
    margin-bottom: 16px;
    margin-right: 0;
    font-size: 14px;
    line-height: 36px;
    padding: 10px 16px;
    border-width: 2px;
    border-radius: 8px;
    text-align: center;
  }
}
.join form input:hover {
  border-color: #6beb40;
}
.join form input:focus {
  border-color: #6beb40;
}
.join .error input {
  border-color: rgb(192, 31, 31);
}
.join .success input {
  border-color: #6beb40;
}

.footer {
  text-align: center;
  padding: 2.4rem 0;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top center;
}
@media (max-width: 768px) {
  .footer {
    padding: 24px 0;
  }
}
.footer .footer-eyes {
  width: 12.1rem;
  height: 5.9rem;
  -o-object-fit: contain;
     object-fit: contain;
  margin-bottom: 1.6rem;
}
@media (max-width: 768px) {
  .footer .footer-eyes {
    width: 121px;
    height: 59px;
    margin-bottom: 16px;
  }
}
.footer h2 {
  font-family: "Sofia Sans";
  font-size: 2.4rem;
  line-height: 2.9rem;
  text-transform: uppercase;
  color: #ffffff;
}
@media (max-width: 768px) {
  .footer h2 {
    font-size: 24px;
    line-height: 29px;
  }
}
.footer .footer-link {
  font-size: 1.4rem;
  line-height: 2.4rem;
  letter-spacing: 0.05rem;
  color: #8EAC88;
  margin-bottom: 2.4rem;
  display: inline-block;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}
.footer .footer-link:hover {
  color: #586d54;
}
@media (max-width: 768px) {
  .footer .footer-link {
    font-size: 14px;
    line-height: 24px;
    margin-bottom: 24px;
  }
}
.footer .footer-play {
  padding-bottom: 2.4rem;
  border-bottom: 0.2rem solid rgba(255, 255, 255, 0.2);
  margin-bottom: 2.4rem;
}
@media (max-width: 768px) {
  .footer .footer-play {
    padding-bottom: 0;
    margin-bottom: 24px;
    border-bottom: none;
    text-align: center;
    gap: 24px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
@media (max-width: 500px) {
  .footer .footer-play {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    gap: unset;
  }
}
@media (max-width: 361px) {
  .footer .footer-play {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}
.footer .footer-play a {
  width: 14.6rem;
  height: 4rem;
  display: inline-block;
  position: relative;
}
@media (max-width: 768px) {
  .footer .footer-play a {
    width: 156px;
    height: 42px;
  }
}
.footer .footer-play a:first-child {
  margin-right: 2.4rem;
}
@media (max-width: 768px) {
  .footer .footer-play a:first-child {
    margin-right: 16px;
  }
}
.footer .footer-play a img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.footer ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media (max-width: 768px) {
  .footer ul {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.footer ul li {
  font-size: 1.6rem;
  line-height: 2.4rem;
  text-transform: uppercase;
  position: relative;
  overflow: hidden;
  border-right: 0.3rem solid rgba(255, 255, 255, 0.2);
  padding-right: 1.6rem;
  margin-right: 1.6rem;
}
.footer ul li:last-child {
  border: none;
}
@media (max-width: 768px) {
  .footer ul li {
    font-size: 16px;
    line-height: 24px;
  }
}
@media (max-width: 768px) {
  .footer ul li {
    margin: 0;
    padding-bottom: 12px;
    border-bottom: 2px solid rgba(255, 255, 255, 0.2);
    width: 100%;
    padding-right: 0;
    padding-top: 12px;
    border-right: none;
    border-left: none;
  }
  .footer ul li:first-child {
    border-top: 2px solid rgba(255, 255, 255, 0.2);
  }
}
.footer ul li a {
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.footer ul li:hover a {
  opacity: 0.2;
}
.footer ul li:last-child {
  padding-right: 0;
}
@media (max-width: 768px) {
  .footer ul li:last-child {
    border-bottom: none;
    padding-bottom: 0;
  }
}
.footer ul li:last-child::after {
  display: none;
}
.footer p {
  font-size: 1.4rem;
  line-height: 2.4rem;
  letter-spacing: 0.05rem;
  color: #8EAC88;
  margin: 0.8rem 0 1.6rem;
}
@media (max-width: 768px) {
  .footer p {
    font-size: 14px;
    line-height: 24px;
    margin: 16px 0;
  }
}
.footer .footer-social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 24px;
}
.footer .footer-social a {
  margin-right: 2.4rem;
  width: 1.8rem;
  height: 1.8rem;
}
@media (max-width: 768px) {
  .footer .footer-social a {
    width: 24px;
    height: 24px;
    margin-right: 0;
  }
}
.footer .footer-social a:nth-child(1) {
  width: 2.4rem;
  height: 2.4rem;
}
@media (max-width: 768px) {
  .footer .footer-social a:nth-child(1) {
    width: 24px;
    height: 24px;
  }
}
.footer .footer-social a:nth-child(2) {
  width: 2.4rem;
  height: 2.4rem;
}
@media (max-width: 768px) {
  .footer .footer-social a:nth-child(2) {
    width: 24px;
    height: 24px;
  }
}
.footer .footer-social a:nth-child(3) {
  width: 2.4rem;
  height: 2.4rem;
}
@media (max-width: 768px) {
  .footer .footer-social a:nth-child(3) {
    width: 24px;
    height: 24px;
  }
}
.footer .footer-social a svg {
  width: 100%;
  height: 100%;
}
.footer .footer-social a svg path {
  -webkit-transition: fill 0.3s;
  transition: fill 0.3s;
}
.footer .footer-social a:hover svg path {
  fill: #8EAC88;
}
.footer .footer-social a:last-child {
  margin-right: 0;
}

a {
  text-decoration: none;
  color: #ffffff;
}

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

p {
  margin: 0;
}

h1,
h2,
h3,
h4 {
  margin: 0;
}

html,
body {
  font-family: "Rubik";
  width: 100%;
  font-size: 0.520833vw;
  color: #17414D;
  overflow-x: hidden;
  margin: 0;
  padding: 0;
}

@media (max-width: 768px) {
  body {
    opacity: 0;
  }
}

.mobile-bg {
  position: relative;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgb(23, 65, 77);
  z-index: 100000;
  display: none;
}
.container {
  max-width: 125rem;
  margin: 0 auto;
  padding: 0 1.5rem;
}
@media (max-width: 768px) {
  .container {
    max-width: 100%;
    padding: 0 15px;
  }
}

.title {
  font-family: "Sofia Sans";
  font-weight: 900;
  font-size: 4rem;
  line-height: 4.8rem;
  text-transform: uppercase;
  color: #323232;
  margin-bottom: 5rem;
  position: relative;
}
.title::after {
  content: "";
  position: absolute;
  bottom: -2.4rem;
  left: 0;
  height: 0.2rem;
  width: 7.2rem;
  background-color: #8CCB77;
}
@media (max-width: 768px) {
  .title::after {
    bottom: -16px;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    width: 70px;
    height: 2px;
  }
}
@media (max-width: 768px) {
  .title {
    font-size: 28px;
    line-height: 34px;
    margin-bottom: 34px;
  }
}

.subtitle {
  font-weight: 600;
  font-size: 1.4rem;
  line-height: 1.7rem;
  letter-spacing: 0.8rem;
  color: #8CCB77;
  margin-bottom: 2.4rem;
}
@media (max-width: 768px) {
  .subtitle {
    font-size: 12px;
    line-height: 14px;
    letter-spacing: 8px;
    margin-bottom: 16px;
  }
}

.text {
  font-size: 2rem;
  line-height: 3.6rem;
  letter-spacing: 0.05rem;
  color: rgba(50, 50, 50, 0.7);
  margin-bottom: 5.2rem;
}
@media (max-width: 768px) {
  .text {
    font-size: 16px;
    line-height: 28px;
    letter-spacing: 0.5px;
    margin-bottom: 24px;
  }
}

.btn {
  font-weight: 600;
  font-size: 1.6rem;
  line-height: 3.2rem;
  letter-spacing: 0.05rem;
  text-transform: uppercase;
  text-align: center;
  color: #ffffff;
  background: linear-gradient(150.5deg, #9CDF81 -65.06%, #628F52 205.31%);
  border-radius: 0.8rem;
  padding: 1.6rem 3.2rem;
  border: none;
  cursor: pointer;
  min-height: 3.204rem;
  display: inline-block;
}
.btn:hover {
  background: linear-gradient(150.5deg, #77e44c -65.06%, #628F52 205.31%);
}
@media (max-width: 768px) {
  .btn {
    font-size: 14px;
    line-height: 32px;
    letter-spacing: 0.5px;
    padding: 12px 0;
    width: 100%;
    border-radius: 6px;
    display: block;
  }
}

#mce-EMAIL {
  height: -webkit-fill-available;
}

#mc_embed_signup div.mce_inline_error {
  margin: 0 0 1em 0;
  padding: 5px 10px;
  background-color: transparent !important;
  font-weight: 400 !important;
  z-index: 1;
  color: #C01F1F !important;
  text-align: left;
  font-size: 1.4rem;
}

#mc_embed_signup input.mce_inline_error {
  border-color: #C01F1F !important;
}

#mc_embed_signup_scroll {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative !important;
}
@media (max-width: 768px) {
  #mc_embed_signup_scroll {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 100%;
  }
}

.foot input {
  min-width: 18rem !important;
  padding: 1rem 3rem !important;
  margin-right: 0 !important;
  font-weight: 600 !important;
  font-size: 1.6rem !important;
  line-height: 3.2rem !important;
  letter-spacing: 0.05rem !important;
  text-transform: uppercase !important;
  text-align: center !important;
  color: #ffffff !important;
  background: linear-gradient(150.5deg, #9CDF81 -65.06%, #628F52 205.31%);
  border-radius: 0.8rem !important;
  padding: 1.6rem 3.2rem !important;
  border: none !important;
  cursor: pointer !important;
  min-height: 3.204rem !important;
  display: inline-block !important;
}
@media (max-width: 768px) {
  .foot input {
    font-size: 14px !important;
    line-height: 32px !important;
    letter-spacing: 0.5px !important;
    padding: 12px 0 !important;
    width: 100% !important;
    border-radius: 6px !important;
    display: block !important;
  }
}

#mc_embed_signup div.mce_inline_error {
  display: none !important;
}

#mce-responses {
  position: absolute;
  bottom: -7rem;
  font-size: 1.8rem;
  color: #8CCB77;
  text-transform: uppercase;
  height: 100%;
}
@media (max-width: 768px) {
  #mce-responses {
    font-size: 16px;
    bottom: -140px;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    width: 100%;
  }
}
