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

html {
  scroll-behavior: smooth;
}

body {
  overflow-x: hidden;
  font-family: "Roboto", sans-serif;
  color: #fff;
  background: #121515;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.4;
  letter-spacing: -0.02em;
}

ul,
ol {
  list-style: none;
}

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

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

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

section:nth-child(1) {
  padding-top: 150px;
}

@media (min-width: 1200px) {
  section:nth-child(1) {
    padding-top: 250px;
  }
}

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

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

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

.h1 {
  font-weight: 700;
  font-size: 85px;
  line-height: 96%;
  letter-spacing: -0.04em;
  text-transform: capitalize;
  background: -webkit-gradient(linear, left top, left bottom, from(#e8c940), to(#d0d0d0));
  background: linear-gradient(180deg, #e8c940 0%, #d0d0d0 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.h2 {
  font-weight: 700;
  font-size: 65px;
  line-height: 96%;
  letter-spacing: -0.04em;
  text-transform: capitalize;
  text-align: right;
  background: -webkit-gradient(linear, left top, left bottom, from(#e8c940), to(#d0d0d0));
  background: linear-gradient(180deg, #e8c940 0%, #d0d0d0 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.h3 {
  font-weight: 700;
  font-size: 41px;
  line-height: 96%;
  letter-spacing: -0.04em;
}

.h4 {
  font-weight: 700;
  font-size: 61px;
  line-height: 96%;
  letter-spacing: -0.04em;
  text-transform: capitalize;
  background: -webkit-gradient(linear, left top, left bottom, from(#d27328), to(#e8c940));
  background: linear-gradient(180deg, #d27328 0%, #e8c940 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.logo {
  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: 7px;
  font-weight: 700;
  font-size: 22px;
  line-height: 1;
  -webkit-transition: all 350ms ease-in-out;
  transition: all 350ms ease-in-out;
}

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

.logo:active {
  color: #D27328;
}

.link {
  -webkit-transition: all 350ms ease-in-out;
  transition: all 350ms ease-in-out;
  margin: 0;
  padding: 0;
  font-weight: 400;
  font-size: 18px;
  line-height: 1;
}

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

.link:active {
  color: #D27328;
}

.btn {
  border: 1px solid #D27328;
  display: block;
  width: 100%;
  font-family: inherit;
  max-width: -webkit-fit-content;
  max-width: -moz-fit-content;
  max-width: fit-content;
  margin: 0;
  background: transparent;
  border-radius: 30px;
  padding: 16px 32px;
  font-weight: 700;
  font-size: 16px;
  line-height: 112%;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  -webkit-transition: all 350ms ease-in-out;
  transition: all 350ms ease-in-out;
  color: #fff;
}

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

.btn:hover, .btn:focus {
  color: #E8C940;
}

.btn:active {
  color: #D27328;
}

.divider {
  background: #fff;
  padding: 5px;
}

.header {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  padding: 24px 0;
  background: #121515;
  z-index: 9;
}

.header__nav {
  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-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 40px;
  color: #fff;
}

.header__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 24px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.hero {
  background-image: url(/wp-content/themes/obreniqo/assets/img/bg.webp);
  background-position: top calc(50% - 460px) left calc(50% - 40px);
  background-repeat: no-repeat;
}

@media (min-width: 1200px) {
  .hero {
    background-position: top calc(50% - 220px) left calc(50% - 40px);
  }
}

.hero__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;
  margin-bottom: 20px;
}

.hero__text-block {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
      grid-template-columns: 1fr;
  gap: 100px;
}

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

.hero__text-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  max-width: 320px;
  gap: 20px;
}

.hero__img-wrapper {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
      grid-template-columns: 1fr;
  gap: 20px;
}

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

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

.hero__text {
  font-size: 24px;
}

.about {
  background-image: url(/wp-content/themes/obreniqo/assets/img/bg.webp);
  background-position: top calc(50% - 460px) left calc(50% - 40px);
  background-repeat: no-repeat;
}

@media (min-width: 1200px) {
  .about {
    background-position: top calc(50% - 150px) left calc(50% - -450px);
  }
}

.about__content {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
      grid-template-columns: 1fr;
  justify-items: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 50px;
}

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

.about__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;
}

.about .btn {
  -ms-flex-item-align: end;
      align-self: flex-end;
}

.prefs {
  background-image: url(/wp-content/themes/obreniqo/assets/img/bg.webp);
  background-position: top calc(50% - -70px) left calc(50% - 40px);
  background-repeat: no-repeat;
}

@media (min-width: 1200px) {
  .prefs {
    background-position: top calc(50% - 150px) left calc(50% - 390px);
  }
}

.prefs__content {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
      grid-template-columns: 1fr;
  gap: 40px;
}

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

.prefs .divider {
  height: 100%;
}

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

.prefs__item {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 40px 1fr;
      grid-template-columns: 40px 1fr;
  gap: 20px;
}

.prefs__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;
}

.move__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;
}

@media (min-width: 1200px) {
  .move__content {
    -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;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}

.move__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: 30px;
}

.footer {
  padding-top: 30px;
  padding-bottom: 30px;
  background: #000;
  color: #fff;
  background-image: url(/wp-content/themes/obreniqo/assets/img/bg.webp);
  background-position: top calc(50% - -70px) left calc(50% - 40px);
  background-repeat: no-repeat;
}

@media (min-width: 1200px) {
  .footer {
    background-position: top calc(50% - -60px) left calc(50% - -230px);
  }
}

.footer__content {
  padding-top: 30px;
  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__upper {
  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-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

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

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

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

.footer__social-link {
  -webkit-transition: all 350ms ease-in-out;
  transition: all 350ms ease-in-out;
  color: #fff;
}

.footer__social-link:hover, .footer__social-link:focus {
  -webkit-transform: scale(1.15);
          transform: scale(1.15);
}

.footer__social-link:active {
  -webkit-transform: scale(1);
          transform: scale(1);
}

.footer__copy {
  opacity: 0.5;
}

.footer__address {
  font-style: normal;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 20px;
}

.privacy__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: 14px;
}

.privacy__subtitle {
  font-weight: 700;
  font-size: 18px;
  line-height: 1;
}

.privacy ul {
  padding-left: 20px;
  list-style: disc;
}

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

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

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

.games__link {
  width: 100%;
  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;
  overflow: hidden;
}

@media (min-width: 1200px) {
  .games__link.one-three {
    max-width: 144px;
  }
}

@media (min-width: 1200px) {
  .games__link.one-two {
    max-width: 367px;
    max-height: 227px;
  }
}

.games__link img {
  -webkit-transition: all 350ms ease-in-out;
  transition: all 350ms ease-in-out;
}

.games__link:hover img, .games__link:focus img {
  -webkit-transform: scale(1.3);
          transform: scale(1.3);
}

.move-reverse__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;
}

@media (min-width: 1200px) {
  .move-reverse__content {
    -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;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}

.move-reverse__img-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: 30px;
}

.move-reverse__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: 30px;
}

.beyond__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;
}

.cookies {
  display: none;
  position: fixed;
  left: 0;
  bottom: 0;
  padding: 12px;
  max-width: 600px;
}

.cookies__content {
  background: #121515;
  border: 2px solid #E8C940;
  border-radius: 20px;
  padding: 20px;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
      grid-template-columns: 1fr;
  gap: 20px;
  width: 100%;
}

.cookies__title {
  text-align: left;
}

.cookies a {
  display: inline;
}
/*# sourceMappingURL=styles.css.map */