@import url("https://fonts.googleapis.com/css2?family=Unbounded:wght@200..900&display=swap");
* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  overflow-x: hidden;
  background: #fff;
  font-family: "Unbounded", sans-serif;
  color: #141414;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.2;
}

a, button {
  cursor: pointer;
  font-family: inherit;
  display: block;
  text-decoration: none;
  color: inherit;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
  line-height: 0;
}

address {
  font-style: normal;
}

ul,
ol {
  padding-left: 20px;
  margin: 0;
}

section {
  padding-top: 50px;
  padding-bottom: 50px;
}

@media (min-width: 1200px) {
  section {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}

section:first-child {
  padding-top: 110px;
}

@media (min-width: 1200px) {
  section:first-child {
    padding-top: 120px;
  }
}

.container {
  width: 100%;
  padding: 0 12px;
  margin: 0 auto;
  max-width: 430px;
}

@media (min-width: 768px) {
  .container {
    max-width: 768px;
  }
}

@media (min-width: 1200px) {
  .container {
    max-width: 1200px;
    padding: 0 82px;
  }
}

.h1 {
  font-weight: 900;
  font-size: 40px;
  text-transform: uppercase;
}

@media (min-width: 1200px) {
  .h1 {
    font-size: 80px;
  }
}

.h2 {
  font-weight: 900;
  font-size: 36px;
  text-transform: uppercase;
}

@media (min-width: 1200px) {
  .h2 {
    font-size: 80px;
  }
}

.h3 {
  font-weight: 900;
  font-size: 22px;
  text-transform: uppercase;
}

.h4 {
  font-weight: 900;
  font-size: 24px;
}

.h5 {
  font-weight: 900;
  font-size: 16px;
}

.accent {
  color: #ff4c39;
}

.logo {
  font-family: "Unbounded", sans-serif;
  font-weight: 900;
  font-size: 24px;
  text-transform: uppercase;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 12px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: all 250ms ease-in-out;
  transition: all 250ms ease-in-out;
}

.logo:hover, .logo:focus {
  color: #ff4c39;
}

.logo:active {
  color: #cb1400;
}

.logo__img {
  max-width: 30px;
}

.link {
  -webkit-transition: all 250ms ease-in-out;
  transition: all 250ms ease-in-out;
}

.link:hover, .link:focus {
  color: #ff4c39;
}

.link:active {
  color: #cb1400;
}

.btn {
  font-family: "Unbounded", sans-serif;
  width: 100%;
  border: none;
  border-radius: 10px;
  padding: 28px 20px;
  background: #141414;
  font-family: inherit;
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  color: #fff;
  text-align: center;
  -webkit-transition: all 250ms ease-in-out;
  transition: all 250ms ease-in-out;
}

@media (min-width: 1200px) {
  .btn {
    max-width: -webkit-fit-content;
    max-width: -moz-fit-content;
    max-width: fit-content;
  }
}

.btn:hover, .btn:focus {
  background: #fff;
  color: #141414;
}

.btn:active {
  background: #cb1400;
}

.btn.w-full {
  max-width: 100%;
}

.btn-second {
  background: #ff4c39;
}

.btn-second:hover, .btn-second:focus {
  background: #cb1400;
}

.btn-second:active {
  color: #ff4c39;
}

.btn-cookie {
  background: #141414;
  color: #fff;
  border: 2px solid #fff;
}

.btn-cookie:hover, .btn-cookie:focus {
  border: 2px solid #ff4c39;
  color: #ff4c39;
}

.btn-cookie:active {
  color: #fff;
}

.text-block {
  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;
}

.ml-a {
  margin-left: auto;
}

.mr-a {
  margin-right: auto;
}

.header {
  position: fixed;
  background: #141414;
  width: 100%;
  z-index: 5;
}

.header__nav {
  padding-top: 14px;
  padding-bottom: 14px;
  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: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 24px;
  color: #fff;
}

@media (min-width: 768px) {
  .header__nav {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.header__list {
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 30px;
  padding: 0;
}

.hero {
  background: #ff4c39;
  color: #fff;
  padding-bottom: 0;
}

.hero__content {
  position: relative;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
      grid-template-columns: 1fr;
  gap: 20px;
}

@media (min-width: 1200px) {
  .hero__content {
    max-width: 980px;
    padding-bottom: 70px;
  }
}

.hero__content p {
  max-width: 680px;
}

.hero__img {
  position: static;
}

@media (min-width: 1200px) {
  .hero__img {
    position: absolute;
    bottom: 0px;
    right: -160px;
  }
}

.about__content {
  position: relative;
  z-index: 1;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
      grid-template-columns: 1fr;
  gap: 32px;
}

.about__wrapper {
  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;
}

@media (min-width: 1200px) {
  .about__wrapper {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}

.about__text {
  max-width: 500px;
}

.about__img {
  width: 100%;
  max-width: 600px;
}

.why {
  background: #141414;
  color: #fff;
  background-position: bottom 0 center;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url(/wp-content/themes/kelvandrix/assets/img/3.webp);
  padding-bottom: 200px;
}

@media (min-width: 768px) {
  .why {
    padding-bottom: 300px;
  }
}

@media (min-width: 1200px) {
  .why {
    padding-bottom: 400px;
  }
}

.why__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 30px;
}

.why__list {
  list-style: none;
  padding: 0;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
      grid-template-columns: 1fr;
  gap: 10px;
}

@media (min-width: 768px) {
  .why__list {
    -ms-grid-columns: 1fr 1fr;
        grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 1200px) {
  .why__list {
    -ms-grid-columns: 1fr 1fr 1fr 1fr;
        grid-template-columns: 1fr 1fr 1fr 1fr;
  }
}

.why__item {
  border-radius: 26px;
  padding: 20px;
  background: #fff;
  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;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  color: #141414;
}

.top {
  position: relative;
  background-image: url(/wp-content/themes/kelvandrix/assets/img/4bg.webp);
  background-size: 100% 700px;
  background-repeat: no-repeat;
  background-position: top 190px center;
}

.top__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 30px;
}

.top__list {
  width: 100%;
  list-style: none;
  padding: 0;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr;
      grid-template-columns: 1fr 1fr;
  gap: 10px;
}

@media (min-width: 768px) {
  .top__list {
    max-width: 794px;
    -ms-grid-columns: 1fr 1fr 1fr 1fr;
        grid-template-columns: 1fr 1fr 1fr 1fr;
  }
}

.top__link {
  position: relative;
  border-radius: 20px;
  background: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  text-align: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #141414;
  min-height: 200px;
  max-width: 200px;
}

.top__link:hover img, .top__link:focus img {
  opacity: 0;
}

.top__link img {
  -webkit-transition: all 250ms ease-in-out;
  transition: all 250ms ease-in-out;
  width: 100%;
  height: 100%;
  position: absolute;
}

.top__img {
  width: 100%;
  position: relative;
  right: -100px;
}

@media (min-width: 1200px) {
  .top__img {
    position: absolute;
    top: 0;
    max-width: 490px;
  }
}

.play {
  position: relative;
}

.play__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: 32px;
}

@media (min-width: 1200px) {
  .play__content {
    max-width: 500px;
  }
}

.play__img {
  position: relative;
  right: -50px;
}

@media (min-width: 768px) {
  .play__img {
    right: -290px;
  }
}

@media (min-width: 1200px) {
  .play__img {
    position: absolute;
    bottom: 0;
    right: 0;
  }
}

.contacts {
  background: #ff4c39;
  color: #fff;
  position: relative;
}

.contacts__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 30px;
  margin-left: auto;
}

@media (min-width: 1200px) {
  .contacts__content {
    max-width: 685px;
  }
}

@media (min-width: 1200px) {
  .contacts__img {
    position: absolute;
    top: 0;
    left: 0;
  }
}

.address {
  font-style: normal;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
}

.address__link {
  font-weight: 900;
  font-size: 18px;
  -webkit-transition: all 250ms ease-in-out;
  transition: all 250ms ease-in-out;
}

.address__link:hover, .address__link:focus {
  color: #cb1400;
}

.footer {
  background: #141414;
  padding-top: 30px;
  padding-bottom: 30px;
  color: #fff;
}

.footer__content {
  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;
}

.footer__left {
  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;
}

@media (min-width: 1200px) {
  .footer__left {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}

.footer__social {
  list-style: none;
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 20px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.footer__list {
  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;
  list-style: none;
  padding: 0;
}

@media (min-width: 768px) {
  .footer__list {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}

.footer__link {
  -webkit-transition: all 250ms ease-in-out;
  transition: all 250ms ease-in-out;
}

.footer__link:hover, .footer__link:focus {
  color: #ff4c39;
}

.footer__link:active {
  color: #cb1400;
}

.footer__copy {
  font-weight: 400;
  font-size: 14px;
}

.cookie-popup {
  width: 100%;
  position: fixed;
  z-index: 8;
  bottom: 0;
  left: 0;
  margin-bottom: 10px;
  display: none;
}

.cookie-popup.show {
  display: block;
}

@media (min-width: 1200px) {
  .cookie-popup {
    max-width: 1000px;
  }
}

.cookie-popup__content {
  border: 3px solid rgba(255, 255, 255, 0.4);
  border-radius: 30px;
  padding: 20px;
  background: #141414;
  color: #fff;
  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: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 16px;
}

@media (min-width: 1200px) {
  .cookie-popup__content {
    padding: 30px;
  }
}

.cookie-popup__title {
  font-weight: 900;
  font-size: 24px;
  text-transform: uppercase;
}

.cookie-popup__btns {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px;
}

@media (min-width: 1200px) {
  .cookie-popup__btns {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}

.games {
  position: relative;
  background-image: url(/wp-content/themes/kelvandrix/assets/img/4bg.webp);
  background-size: 100% 700px;
  background-repeat: no-repeat;
  background-position: top 510px center;
  margin-bottom: 50px;
}

@media (min-width: 768px) {
  .games {
    background-position: top 390px center;
    background-size: 100% 400px;
  }
}

@media (min-width: 1200px) {
  .games {
    background-position: top 520px center;
  }
}

.games__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 30px;
}

.games__list {
  width: 100%;
  list-style: none;
  padding: 0;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr;
      grid-template-columns: 1fr 1fr;
  gap: 10px;
}

@media (min-width: 768px) {
  .games__list {
    max-width: 794px;
    -ms-grid-columns: 1fr 1fr 1fr 1fr;
        grid-template-columns: 1fr 1fr 1fr 1fr;
  }
}

.games__link {
  position: relative;
  border-radius: 20px;
  background: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  text-align: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #141414;
  min-height: 200px;
  max-width: 200px;
}

.games__link:hover img, .games__link:focus img {
  opacity: 0;
}

.games__link img {
  -webkit-transition: all 250ms ease-in-out;
  transition: all 250ms ease-in-out;
  width: 100%;
  height: 100%;
  position: absolute;
}

.games__text {
  max-width: 800px;
}

.games__img {
  width: 100%;
  position: relative;
  right: -100px;
}

@media (min-width: 1200px) {
  .games__img {
    position: absolute;
    top: 140;
    max-width: 490px;
  }
}

.game__content {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
      grid-template-columns: 1fr;
  gap: 20px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  margin-bottom: 30px;
}

@media (min-width: 1200px) {
  .game__content {
    -ms-grid-columns: 1fr 260px;
        grid-template-columns: 1fr 260px;
  }
}

.build {
  background: #141414;
  color: #fff;
}

.build__content {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
      grid-template-columns: 1fr;
  gap: 30px;
}

@media (min-width: 1200px) {
  .build__content {
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
    -ms-grid-columns: 1fr 300px;
        grid-template-columns: 1fr 300px;
  }
}

.build__title {
  font-weight: 900;
  font-size: 36px;
  text-transform: uppercase;
}

@media (min-width: 1200px) {
  .build__title {
    font-size: 60px;
  }
}

.build__card {
  border-radius: 30px;
  padding: 20px;
  background: #fff;
  color: #141414;
  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;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.privacy__content, .terms__content, .cookie-policy__content {
  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;
}

.privacy a, .terms a, .cookie-policy a {
  display: inline;
  font-weight: 800;
  color: #ff4c39;
}

.privacy a:hover, .privacy a:focus, .terms a:hover, .terms a:focus, .cookie-policy a:hover, .cookie-policy a:focus {
  color: #cb1400;
}
/*# sourceMappingURL=styles.css.map */