@charset "UTF-8";

/* Reset and base styles  */

@import url(https://fonts.googleapis.com/css?family=Jost:100,200,300,regular,500,600,700,800,900,100italic,200italic,300italic,italic,500italic,600italic,700italic,800italic,900italic);

@import url(https://fonts.googleapis.com/css?family=Poppins:100,100italic,200,200italic,300,300italic,regular,italic,500,500italic,600,600italic,700,700italic,800,800italic,900,900italic);

* {
  padding: 0px;
  margin: 0px;
  border: none;
}

*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

/* Links */

a,
a:link,
a:visited {
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

/* Common */

aside,
nav,
footer,
header,
section,
main {
  display: block;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  font-size: inherit;
  font-weight: inherit;
}

ul,
ul li {
  list-style: none;
}

img {
  vertical-align: top;
}

img,
svg {
  max-width: 100%;
  height: auto;
}

address {
  font-style: normal;
}

/* Form */

input,
textarea,
button,
select {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  background-color: transparent;
}

input::-ms-clear {
  display: none;
}

button,
input[type="submit"] {
  display: inline-block;
  -webkit-box-shadow: none;
  box-shadow: none;
  background-color: transparent;
  background: none;
  cursor: pointer;
}

input:focus,
input:active,
button:focus,
button:active {
  outline: none;
}

button::-moz-focus-inner {
  padding: 0;
  border: 0;
}

label {
  cursor: pointer;
}

legend {
  display: block;
}

:root {
  --container-width: 1440px;
  --container-padding: 100px;
  --container-padding-tablet: 16px;
  --background: linear-gradient(180deg, #196e5b 0%, #a8aa3d 100%);
  --font-color: #fff;
  --font-size: clamp(0.875rem, 0.8317307692rem + 0.1923076923vw, 1rem);
  --font-family: Jost, sans-serif;
  --laptop-size: 1199px;
  --tablet-size: 959px;
  --mobile-size: 599px;
}

h1,
h2,
h3 {
  font-weight: normal;
  overflow-wrap: break-word;
  font-family: Poppins;
  font-weight: 700;
  line-height: 100%;
}

h1 {
  font-size: clamp(1.5rem, 0.9807692308rem + 2.3076923077vw, 3rem);
  text-transform: uppercase;
}

h2 {
  font-size: clamp(1.5rem, 1.2403846154rem + 1.1538461538vw, 2.25rem);
  text-transform: uppercase;
}

h3 {
  font-size: clamp(1rem, 0.8269230769rem + 0.7692307692vw, 1.5rem);
}

html {
  scroll-behavior: smooth;
  background: var(--background);
}

body {
  background: var(--background);
  color: var(--font-color);
  font-family: var(--font-family);
  font-size: var(--font-size);
  font-weight: 400;
}

html,
body {
  min-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;
}

a {
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

img {
  display: block;
  -o-object-fit: cover;
  object-fit: cover;
}

.ch-fantastic-web__no-scroll {
  overflow: hidden;
}

.ch-fantastic-web__visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  border: 0;
  padding: 0;
  white-space: nowrap;
  clip-path: inset(100%);
  clip: rect(0 0 0 0);
  overflow: hidden;
}

.ch-fantastic-web__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 24px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
}

.ch-fantastic-web__items .ch-fantastic-web__item {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 20px;
  width: 100%;
}

.ch-fantastic-web__terms p {
  line-height: 150%;
}

.ch-fantastic-web__terms .ch-fantastic-web__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 20px;
}

.ch-fantastic-web__terms li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 5px;
}

.ch-fantastic-web__terms li:before {
  content: "•";
}

.ch-fantastic-web__terms-bg {
  background-image: url("./../img/terms-bg.webp");
  background-position: top center;
  background-size: cover;
  background-repeat: no-repeat;
}
.ch-fantastic-web__webp .ch-fantastic-web__terms-bg {
  background-image: url("./../img/terms-bg.webp");
}

.ch-fantastic-web__main {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 80px;
  padding: 40px 0;
}

.ch-fantastic-web__btn,
.ch-fantastic-web__btn:focus {
  white-space: nowrap;
  -ms-touch-action: manipulation;
  touch-action: manipulation;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-column-gap: 10px;
  -moz-column-gap: 10px;
  column-gap: 10px;
  padding: 8px 20px;
  background: #228666;
  color: #fff !important;
  -webkit-box-shadow: -150px -35px 100px -60px #bec530 inset;
  box-shadow: -150px -35px 100px -60px #bec530 inset;
  font-size: 20px;
  font-weight: 500;
  border: 1px solid #228666;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

.ch-fantastic-web__btn-active,
.ch-fantastic-web__btn:hover,
.ch-fantastic-web__btn:active {
  background: transparent;
  color: #fff !important;
  border: 1px solid #fff;
  -webkit-box-shadow: -150px -35px 100px -60px rgba(48, 129, 237, 0) inset;
  box-shadow: -150px -35px 100px -60px rgba(48, 129, 237, 0) inset;
}

.ch-fantastic-web__lazyload {
  opacity: 0;
  -webkit-transition: opacity 0.3s ease-in;
  transition: opacity 0.3s ease-in;
}

.ch-fantastic-web__lazyload-load {
  opacity: 1;
}

.ch-fantastic-web__center {
  text-align: center;
}

.ch-fantastic-web__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 24px;
  margin: 0 auto;
  padding: 0 var(--container-padding);
  max-width: var(--container-width);
  width: 100%;
}

.ch-fantastic-web__iframe {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
  text-align: center;
  display: none;
  z-index: 5;
}

.ch-fantastic-web__iframe iframe {
  background: #000;
  background-image: url("./../img/loading.gif");
  background-position: center center;
  background-size: 60px 60px;
  background-repeat: no-repeat;
  max-width: 800px;
  width: 100%;
  height: 500px;
  margin-top: 50px;
}

.ch-fantastic-web__close_iframe {
  position: absolute;
  right: 30px;
  top: 20px;
  cursor: pointer;
  color: #ffffff;
  font-size: 22px;
}

.ch-fantastic-web__popup {
  color: #fff;
  background: #000;
  padding: 40px 20px;
  max-width: 500px;
  height: -webkit-max-content;
  height: -moz-max-content;
  height: max-content;
  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;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 20px;
  font-size: 14px;
}

.ch-fantastic-web__popup__title {
  font-size: clamp(1.125rem, 0.9951923077rem + 0.5769230769vw, 1.5rem);
  font-weight: 700;
  font-family: Poppins;
}

.ch-fantastic-web__modal {
  background-color: rgba(0, 0, 0, 0.9);
  position: fixed;
  z-index: 100000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100vh;
  opacity: 0;
  -webkit-transition: opacity 0.4s ease;
  transition: opacity 0.4s ease;
  display: none;
}

.ch-fantastic-web__modal.ch-fantastic-web__show {
  opacity: 1;
}

.ch-fantastic-web__modal__popup {
  position: relative;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  border-radius: 16px;
  text-align: center;
}

.ch-fantastic-web__cookie__popup {
  position: fixed;
  right: 0;
  width: 100%;
  z-index: 10;
  max-width: 100%;
  bottom: -100%;
  -webkit-transition: all 2s cubic-bezier(0.02, 0.7, 0.03, 1);
  transition: all 2s cubic-bezier(0.02, 0.7, 0.03, 1);
  z-index: 10000;
}

.ch-fantastic-web__cookie__wrap {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8px 20px;
  margin-left: 30px;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
}

.ch-fantastic-web__cookie.ch-fantastic-web__hidden {
  display: none;
}

.ch-fantastic-web__cookie a {
  color: inherit;
}

.ch-fantastic-web__cookie .ch-fantastic-web__btn {
  min-width: 200px;
}

.ch-fantastic-web__cookie .ch-fantastic-web__container {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  gap: 16px 40px;
}

.ch-fantastic-web__cookie img {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 70px;
  height: 70px;
}

.ch-fantastic-web__cookie .ch-fantastic-web__show {
  bottom: 0;
}

/* Blocks */

.ch-fantastic-web__banner {
  background-image: -webkit-gradient(
      linear,
      left top,
      left bottom,
      from(rgba(0, 0, 0, 0.3)),
      to(rgba(0, 0, 0, 0.5))
    ),
    url("./../img/banner.webp");
  background-image: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.5)),
    url("./../img/banner.webp");
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  padding: 30px 0;
  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;
}
.ch-fantastic-web__webp .ch-fantastic-web__banner {
  background-image: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.5)),
    url("./../img/banner.webp");
}
.webp .banner {
  background-image: -webkit-gradient(
      linear,
      left top,
      left bottom,
      from(rgba(0, 0, 0, 0.3)),
      to(rgba(0, 0, 0, 0.5))
    ),
    url("./../img/banner.webp");
}

.ch-fantastic-web__banner .ch-fantastic-web__container-grid {
  display: grid;
  grid-template-columns: 75% 25%;
  gap: 24px 0;
}

.ch-fantastic-web__banner .ch-fantastic-web__container-grid h1 {
  -ms-flex-item-align: end;
  align-self: end;
}

.ch-fantastic-web__banner .ch-fantastic-web__container-grid p {
  line-height: 130%;
  max-width: 940px;
}

.ch-fantastic-web__banner img {
  height: 100%;
  width: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  grid-row: span 2 / span 2;
  max-height: 340px;
}

.ch-fantastic-web__description {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 40px;
}

.ch-fantastic-web__description .ch-fantastic-web__container {
  gap: 26px;
}

.ch-fantastic-web__description p,
.ch-fantastic-web__description ul {
  width: 100%;
  line-height: 150%;
}

.ch-fantastic-web__description h2 {
  line-height: 130%;
}

.ch-fantastic-web__description .ch-fantastic-web__base {
  max-width: 870px;
}

.ch-fantastic-web__description .ch-fantastic-web__base .ch-fantastic-web__item {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.ch-fantastic-web__description .ch-fantastic-web__base i {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: clamp(1rem, 0.7403846154rem + 1.1538461538vw, 1.75rem);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.09);
  -webkit-box-shadow: 1.279px -1.279px 12.727px 0px rgba(214, 214, 214, 0.17) inset,
    -1.918px 1.918px 1.918px 0px rgba(255, 255, 255, 0.39) inset;
  box-shadow: 1.279px -1.279px 12.727px 0px rgba(214, 214, 214, 0.17) inset,
    -1.918px 1.918px 1.918px 0px rgba(255, 255, 255, 0.39) inset;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}

.ch-fantastic-web__description .ch-fantastic-web__base i img {
  width: clamp(2.25rem, 1.8173076923rem + 1.9230769231vw, 3.5rem);
  height: clamp(2.25rem, 1.8173076923rem + 1.9230769231vw, 3.5rem);
}

.ch-fantastic-web__description .ch-fantastic-web__flex-03 {
  -webkit-box-flex: 0.3;
  -ms-flex: 0.3;
  flex: 0.3;
}

.ch-fantastic-web__description li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 5px;
}

.ch-fantastic-web__description li:before {
  content: "•";
}

.ch-fantastic-web__description .ch-fantastic-web__game-iframe {
  position: relative;
  max-width: 1440px;
  width: 100%;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 10px;
  background: #111;
}

.ch-fantastic-web__description .ch-fantastic-web__game-iframe img,
.ch-fantastic-web__description .ch-fantastic-web__game-iframe iframe {
  height: clamp(18.75rem, 12.2596153846rem + 28.8461538462vw, 37.5rem);
  width: 100%;
}

.ch-fantastic-web__description .ch-fantastic-web__game-iframe img {
  -webkit-filter: brightness(50%);
  filter: brightness(50%);
}

.ch-fantastic-web__description .ch-fantastic-web__game-iframe iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}

.ch-fantastic-web__description .ch-fantastic-web__play-demo {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 100%;
  max-width: clamp(12.5rem, 10.3365384615rem + 9.6153846154vw, 18.75rem);
}

.ch-fantastic-web__mini {
  max-width: 1000px;
}

.ch-fantastic-web__wrapper {
  width: 100%;
  padding: 32px;
  background: rgba(249, 248, 242, 0.9);
  -webkit-backdrop-filter: blur(555px);
  backdrop-filter: blur(555px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 24px;
  color: #267d43;
}

.ch-fantastic-web__footer {
  margin-top: auto;
  background: #fff;
  padding: 40px 0;
  color: #267d43;
  font-size: 14px;
}

.ch-fantastic-web__footer .ch-fantastic-web__container {
  gap: 30px;
}

.ch-fantastic-web__footer a {
  color: #267d43;
}

.ch-fantastic-web__footer a:hover {
  opacity: 0.6;
}

.ch-fantastic-web__footer .ch-fantastic-web__link {
  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;
  gap: 16px 32px;
  text-align: center;
}

.ch-fantastic-web__footer hr {
  background: rgba(124, 124, 124, 0.5215686275);
  height: 1.5px;
}

.ch-fantastic-web__footer .ch-fantastic-web__items {
  -webkit-column-gap: 80px;
  -moz-column-gap: 80px;
  column-gap: 80px;
}

.ch-fantastic-web__footer img {
  -o-object-fit: contain;
  object-fit: contain;
  width: auto;
  height: clamp(1rem, 0.9567307692rem + 0.1923076923vw, 1.125rem);
}

.ch-fantastic-web__game .ch-fantastic-web__columns {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.ch-fantastic-web__game .ch-fantastic-web__col {
  border-radius: 15px;
  overflow: hidden;
  position: relative;
  height: 300px;
  width: 100%;
  background: #111;
  -webkit-transition: 0.6s ease-in-out 0.23s;
  transition: 0.6s ease-in-out 0.23s;
  border-top: 1px solid transparent;
}

.ch-fantastic-web__game .ch-fantastic-web__col:hover {
  -webkit-box-shadow: 1px 3px 16px 0px #7251cf;
  box-shadow: 1px 3px 16px 0px #7251cf;
}

.ch-fantastic-web__game
  .ch-fantastic-web__col:hover
  .ch-fantastic-web__wrapper-top {
  top: 0;
  -webkit-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
  transform: rotate(0deg);
}

.ch-fantastic-web__game
  .ch-fantastic-web__col:hover
  .ch-fantastic-web__wrapper-bottom {
  bottom: 0;
  -webkit-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
  transform: rotate(0deg);
}

.ch-fantastic-web__game .ch-fantastic-web__wrapper-top,
.ch-fantastic-web__game .ch-fantastic-web__wrapper-bottom {
  position: absolute;
  left: 0;
  background: rgba(0, 0, 0, 0.75);
  width: 100%;
  padding: 20px 30px;
  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-transition: all 0.23s ease-in-out;
  transition: all 0.23s ease-in-out;
}

.ch-fantastic-web__game .ch-fantastic-web__wrapper-top {
  height: 40%;
  top: -150%;
  gap: 24px;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  -webkit-transform: rotate(-60deg);
  -ms-transform: rotate(-60deg);
  transform: rotate(-60deg);
}

.ch-fantastic-web__game .ch-fantastic-web__wrapper-top h3 {
  width: 100%;
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.ch-fantastic-web__game .ch-fantastic-web__wrapper-bottom {
  height: 60%;
  bottom: -150%;
  gap: 10px;
  -webkit-transform: rotate(60deg);
  -ms-transform: rotate(60deg);
  transform: rotate(60deg);
  padding-top: 0;
}

.ch-fantastic-web__game .ch-fantastic-web__rating {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-weight: 700;
  gap: 4px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-family: Poppins;
}

.ch-fantastic-web__game .ch-fantastic-web__btn {
  max-width: 226px;
  width: 100%;
  font-size: clamp(1rem, 0.9134615385rem + 0.3846153846vw, 1.25rem);
}

.ch-fantastic-web__game img {
  height: 100%;
  width: 100%;
}

.ch-fantastic-web__header {
  padding: 16px 0;
  position: relative;
  z-index: 100;
  background: rgba(255, 255, 255, 0.2);
}

.ch-fantastic-web__header__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.ch-fantastic-web__header .ch-fantastic-web__nav {
  position: relative;
}

.ch-fantastic-web__header .ch-fantastic-web__nav__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 30px;
  -moz-column-gap: 30px;
  column-gap: 30px;
}

.ch-fantastic-web__header .ch-fantastic-web__nav__toggle {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 6px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.ch-fantastic-web__header .ch-fantastic-web__nav__list {
  display: none;
}

.ch-fantastic-web__header img {
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

.ch-fantastic-web__header
  .ch-fantastic-web__active
  .ch-fantastic-web__nav__list {
  width: 300px;
  position: absolute;
  right: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 24px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  padding: 20px;
  margin-top: 20px;
  background: rgba(57, 164, 116, 0.894);
  font-size: 14px;
}

.ch-fantastic-web__header .ch-fantastic-web__active img {
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}

.ch-fantastic-web__header .ch-fantastic-web__logo {
  font-size: clamp(0.875rem, 0.8317307692rem + 0.1923076923vw, 1rem);
  font-weight: 700;
  text-transform: uppercase;
}

.ch-fantastic-web__header a {
  color: #fff;
}

.ch-fantastic-web__header a:hover {
  opacity: 0.6;
}

.ch-fantastic-web__icons-wrapper {
  padding: 30px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 30px;
  -moz-column-gap: 30px;
  column-gap: 30px;
}

.ch-fantastic-web__icon {
  fill: transparent;
  stroke: transparent;
  width: 62px;
  height: 62px;
}

.ch-fantastic-web__mobile-nav {
  position: fixed;
  top: -100%;
  width: 100%;
  height: 100%;
  z-index: 99;
  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;
  padding-top: 40px;
  padding-bottom: 40px;
  background: #000;
  -webkit-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
}

.ch-fantastic-web__mobile-nav--open {
  top: 0;
}

.ch-fantastic-web__mobile-nav a {
  color: #fff;
}

.ch-fantastic-web__mobile-nav__list {
  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;
  row-gap: 30px;
  font-size: 22px;
  text-align: center;
}

.ch-fantastic-web__mobile-nav__list .ch-fantastic-web__active {
  opacity: 0.5;
}

/* Nav Icon */

.ch-fantastic-web__mobile-nav-btn {
  --time: 0.1s;
  --width: 34px;
  --height: 30px;
  --line-height: 3px;
  --spacing: 5px;
  --color: #ffffff;
  --radius: 4px;
  /* Fixed height and width */
  /* height: var(--height); */
  /* width: var(--width); */
  /* Dynamic height and width */
  height: calc(var(--line-height) * 0 + var(--spacing) * 1);
  width: var(--width);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.ch-fantastic-web__nav-icon {
  position: relative;
  width: var(--width);
  height: var(--line-height);
  background-color: var(--color);
  border-radius: var(--radius);
}

.ch-fantastic-web__nav-icon::before,
.ch-fantastic-web__nav-icon::after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  width: var(--width);
  height: var(--line-height);
  border-radius: var(--radius);
  background-color: var(--color);
  -webkit-transition: top var(--time) linear var(--time),
    -webkit-transform var(--time) ease-in;
  transition: top var(--time) linear var(--time),
    -webkit-transform var(--time) ease-in;
  transition: transform var(--time) ease-in, top var(--time) linear var(--time);
  transition: transform var(--time) ease-in, top var(--time) linear var(--time),
    -webkit-transform var(--time) ease-in;
}

.ch-fantastic-web__nav-icon::before {
  /* top: calc(var(--line-height) * -2); */
  top: calc(-1 * (var(--line-height) + var(--spacing)));
}

.ch-fantastic-web__nav-icon::after {
  /* top: calc(var(--line-height) * 2); */
  top: calc(var(--line-height) + var(--spacing));
}

.ch-fantastic-web__nav-icon.ch-fantastic-web__nav-icon--active {
  background-color: transparent;
}

.ch-fantastic-web__nav-icon.ch-fantastic-web__nav-icon--active::before,
.ch-fantastic-web__nav-icon.ch-fantastic-web__nav-icon--active::after {
  top: 0;
  -webkit-transition: top var(--time) linear,
    -webkit-transform var(--time) ease-in var(--time);
  transition: top var(--time) linear,
    -webkit-transform var(--time) ease-in var(--time);
  transition: top var(--time) linear, transform var(--time) ease-in var(--time);
  transition: top var(--time) linear, transform var(--time) ease-in var(--time),
    -webkit-transform var(--time) ease-in var(--time);
  background-color: #fff;
}

.ch-fantastic-web__nav-icon.ch-fantastic-web__nav-icon--active::before {
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

.ch-fantastic-web__nav-icon.ch-fantastic-web__nav-icon--active::after {
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

/* Layout */

.ch-fantastic-web__mobile-nav-btn {
  z-index: 999;
  display: none;
}

@media (min-width: 820px) {
  .ch-fantastic-web__banner {
    min-height: 420px;
  }
}

@media (max-width: 1220px) {
  .ch-fantastic-web__main {
    gap: 40px;
    padding: 32px 0;
  }

  .ch-fantastic-web__container {
    padding: 0 var(--container-padding-tablet);
    gap: 16px;
  }

  .ch-fantastic-web__cookie__wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .ch-fantastic-web__header__nav {
    display: none;
  }

  .ch-fantastic-web__mobile-nav-btn {
    display: block;
  }
}

@media (max-width: 820px) {
  .ch-fantastic-web__items {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .ch-fantastic-web__items .ch-fantastic-web__item {
    gap: 10px;
  }

  .ch-fantastic-web__cookie__popup {
    padding: 20px 16px;
  }

  .ch-fantastic-web__cookie__wrap {
    width: 100%;
    margin-left: 0;
  }

  .ch-fantastic-web__cookie .ch-fantastic-web__btn {
    width: 100%;
  }

  .ch-fantastic-web__cookie .ch-fantastic-web__container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    padding: 0;
  }

  .ch-fantastic-web__banner {
    padding: 20px 0;
  }

  .ch-fantastic-web__banner .ch-fantastic-web__container-grid {
    gap: 16px 0;
  }

  .ch-fantastic-web__banner .ch-fantastic-web__container-grid h1 {
    line-height: 120%;
  }

  .ch-fantastic-web__banner .ch-fantastic-web__container-grid p {
    grid-column: span 2 / span 2;
  }

  .ch-fantastic-web__banner img {
    grid-row: inherit;
    max-width: 70px;
    justify-self: end;
  }

  .ch-fantastic-web__description {
    gap: 30px;
  }

  .ch-fantastic-web__description .ch-fantastic-web__container {
    gap: 20px;
  }

  .ch-fantastic-web__description
    .ch-fantastic-web__base
    .ch-fantastic-web__item {
    gap: 10px;
  }

  .ch-fantastic-web__description .ch-fantastic-web__items {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
  }

  .ch-fantastic-web__wrapper {
    padding: 16px;
    gap: 16px;
  }

  .ch-fantastic-web__footer .ch-fantastic-web__link {
    -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;
  }

  .ch-fantastic-web__game .ch-fantastic-web__columns {
    grid-template-columns: 1fr;
  }

  .ch-fantastic-web__game .ch-fantastic-web__col {
    height: 180px;
    max-width: 400px;
    margin: 0 auto;
  }

  .ch-fantastic-web__game .ch-fantastic-web__wrapper-top,
  .ch-fantastic-web__game .ch-fantastic-web__wrapper-bottom {
    padding: 10px 16px;
  }

  .ch-fantastic-web__game .ch-fantastic-web__wrapper-top {
    gap: 6px;
  }

  .ch-fantastic-web__header {
    padding: 12px 0;
  }
}
