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

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

:focus,
:active {
  outline: none;
}

a:focus,
a:active {
  outline: none;
}

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

html,
body {
  width: 100%;
  height: 100%;
  text-size-adjust: 100%;
  font-size: 16px;
  scroll-behavior: smooth;
}

input,
button,
textarea {
  font-family: inherit;
}

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

button {
  cursor: pointer;
  background: transparent;
}

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

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

a:hover {
  text-decoration: none;
}

ul,
li {
  list-style: none;
}

img {
  vertical-align: top;
}

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

body {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-size: 14px;
  color: #fff;
  background: #00050d;
}

.lock {
  overflow: hidden;
}

.wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  overflow: hidden;
}

[class*=__container] {
  max-width: 1230px;
  width: 100%;
  margin: 0 auto;
  padding: 0 15px;
}

.container {
  max-width: 1600px;
  width: 100%;
  margin: 0 auto;
  position: relative;
}

.container-second {
  max-width: 1370px;
  width: 100%;
  margin: 0 auto;
  position: relative;
}

h1 {
  font-size: 96px;
  line-height: 100%;
}
@media (max-width: calc(768px - 1px)) {
  h1 {
    font-size: 56px;
  }
}

h2 {
  font-size: 64px;
  line-height: 100%;
}
@media (max-width: calc(768px - 1px)) {
  h2 {
    font-size: 50px;
  }
}

h3 {
  font-family: Lato;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}
@media (max-width: calc(768px - 1px)) {
  h3 {
    font-size: 40px;
  }
}

.main {
  flex: 1 1 auto;
}

section {
  scroll-margin-top: 200px;
}

.btn {
  display: flex;
  padding: 24px 50px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 60px;
  background: #03f;
  color: #fff;
  text-align: center;
  font-size: 16px;
  font-weight: 500;
  line-height: normal;
  width: fit-content;
}

.btn-border {
  display: flex;
  padding: 24px 50px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  align-self: stretch;
  border-radius: 60px;
  border: 1px solid #fff;
  color: #fff;
  text-align: center;
  font-size: 16px;
  font-weight: 500;
  line-height: normal;
}

@media (max-width: calc(768px - 1px)) {
  .desktop {
    display: none;
  }
}

.mobile {
  display: none;
}
@media (max-width: calc(768px - 1px)) {
  .mobile {
    display: block;
  }
}

.cookies {
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 1000;
  padding: 20px;
  width: 100%;
  max-width: 800px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  border-radius: 30px;
  border: 3px solid #0095ff;
  background: #00050d;
}
.cookies__column {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.cookies__title {
  color: #fff;
  font-size: 30px;
  font-weight: 700;
  text-transform: uppercase;
}
.cookies__text {
  margin-bottom: 15px;
  color: #fff;
}
.cookies__btns {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 20px;
}
.cookies__btn {
  width: 100%;
}

.footer {
  padding-top: 80px;
  padding-bottom: 20px;
  overflow: hidden;
  position: relative;
  z-index: 2;
}
.footer__content-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}
.footer__content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.footer__social {
  display: flex;
  gap: 15px;
}
.footer__menu {
  display: flex;
  gap: 20px;
  font-size: 14px;
}
@media (max-width: calc(768px - 1px)) {
  .footer__menu {
    flex-direction: column;
  }
}
.footer__menu a {
  color: #fff;
}
@media (max-width: calc(576px - 1px)) {
  .footer__content-img {
    width: 100%;
  }
}

.header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 50;
}
.header__content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px;
}
.header__logo {
  color: #fff;
  font-size: 24px;
  font-style: normal;
  font-weight: 800;
  line-height: normal;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 12px;
}

@media (max-width: calc(768px - 1px)) {
  .menu__icon {
    display: flex;
    align-items: center;
    z-index: 50;
    position: relative;
    top: 0;
    right: 0;
    width: 30px;
    height: 30px;
    cursor: pointer;
  }
  .menu__icon span, .menu__icon::before, .menu__icon::after {
    right: 0;
    position: absolute;
    height: 10%;
    width: 100%;
    transition: all 0.3s ease 0s;
    background: #fff;
  }
  .menu__icon::before, .menu__icon::after {
    content: "";
    height: 2px;
  }
  .menu__icon::before {
    top: 8px;
  }
  .menu__icon::after {
    bottom: 8px;
    height: 2px;
  }
  .menu__icon span {
    height: 2px;
    top: 50%;
    transform: scale(1) translate(0px, -50%);
  }
  .menu__icon_active span {
    transform: rotate(45deg) scale(0) translate(0px, -50%);
    background: #fff;
  }
  .menu__icon_active::before {
    top: 50%;
    transform: rotate(-45deg) translate(0px, -50%);
    background: #fff;
  }
  .menu__icon_active::after {
    bottom: 50%;
    transform: rotate(45deg) translate(0px, 50%);
    background: #fff;
  }
}
@media (max-width: calc(768px - 1px)) {
  .menu__body {
    display: block;
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    padding: 100px 15px 0;
    border-radius: 0 0 80px 80px;
    background: #000;
    transition: left 0.3s ease 0s;
    overflow: auto;
  }
  .menu__body_active {
    left: 0;
    border-radius: 0;
  }
  .menu__body::before {
    content: "";
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 16;
  }
}
.menu__list {
  display: flex;
  align-items: center;
  gap: 20px;
}
@media (max-width: calc(768px - 1px)) {
  .menu__list {
    flex-direction: column;
    margin-bottom: 140px;
  }
}
.menu__link {
  color: #fff;
}

.hero {
  background: url(/wp-content/themes/vurnorexa/img/hero-bg.svg) no-repeat center/cover;
  padding-top: 86px;
  margin-bottom: 80px;
}
.hero__content {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
  margin-bottom: 30px;
}
.hero__left-text {
  max-width: 134px;
}
.hero__top {
  display: flex;
  margin-bottom: 10px;
}
.hero__top p {
  display: flex;
  padding: 5px 10px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 30px;
  border: 1px solid #0095ff;
  width: fit-content;
}
.hero__card {
  display: flex;
  width: 262px;
  padding: 15px 20px;
  gap: 10px;
  border-radius: 20px;
  border: 1px solid #0095ff;
  background: rgba(16, 47, 92, 0.34);
}
.hero__card-info {
  display: flex;
  flex-direction: column;
}
.hero__card-title {
  color: #0095ff;
}
.hero__card-text {
  font-size: 10px;
}
.hero__texts {
  display: flex;
  flex-direction: column;
  gap: 36px;
  max-width: 704px;
}
.hero__texts .hero__text {
  max-width: 356px;
}
.hero__img {
  display: flex;
  align-items: center;
}
.hero__img img:nth-of-type(2) {
  position: relative;
  left: -10px;
}
.hero__img img:nth-of-type(3) {
  position: relative;
  left: -20px;
}
.hero__bottom {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.hero__bottom-card {
  display: flex;
  width: 354px;
  padding: 25px 70px;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  border-radius: 40px;
  border: 1px solid #0095ff;
  background: rgba(16, 47, 92, 0.34);
  text-align: center;
}

.built {
  position: relative;
  margin-bottom: 20px;
}
.built__bg {
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
}
.built__content {
  display: flex;
  gap: 20px;
  justify-content: space-between;
  flex-wrap: wrap;
}
.built__texts {
  max-width: 704px;
  display: flex;
  flex-direction: column;
  gap: 36px;
}

.our {
  margin-bottom: 80px;
}
.our h3 {
  text-align: center;
  margin-bottom: 20px;
}
.our__content {
  display: flex;
  gap: 20px;
  align-items: flex-end;
  justify-content: flex-end;
  flex-wrap: wrap;
}
@media (max-width: calc(576px - 1px)) {
  .our__content img {
    width: 100%;
  }
}
@media (max-width: calc(768px - 1px)) {
  .our__content {
    align-items: flex-start;
    justify-content: flex-start;
  }
}

.why {
  margin-bottom: 80px;
}
.why h2 {
  text-align: center;
  max-width: 705px;
  margin: 0 auto;
  margin-bottom: 30px;
}
.why__content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 90px;
  flex-wrap: wrap;
  margin-bottom: 30px;
}
.why__content h3 {
  max-width: 250px;
}
.why__content p {
  max-width: 825px;
}
.why__cards {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: flex-end;
}
@media (max-width: calc(1024px - 1px)) {
  .why__cards {
    justify-content: center;
  }
}
.why__card {
  display: flex;
  width: 370px;
  padding: 25px 50px;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  border-radius: 40px;
  border: 1px solid #0095ff;
  background: rgba(16, 47, 92, 0.34);
  text-align: center;
}

.from {
  margin-bottom: 80px;
}
.from__content {
  display: flex;
  gap: 30px;
  margin-bottom: 44px;
}
@media (max-width: calc(1024px - 1px)) {
  .from__content {
    flex-direction: column;
  }
}
.from__texts {
  max-width: 590px;
  display: flex;
  flex-direction: column;
  gap: 36px;
}
.from__cards {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: flex-end;
}
@media (max-width: calc(576px - 1px)) {
  .from__cards {
    justify-content: flex-start;
  }
}
.from__card {
  display: flex;
  padding: 25px 50px;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  border-radius: 40px;
  border: 1px solid #0095ff;
  background: rgba(16, 47, 92, 0.34);
}
.from__bottom {
  display: flex;
  gap: 30px;
  align-items: flex-end;
  flex-wrap: wrap;
}
.from__bottom-img {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media (max-width: calc(576px - 1px)) {
  .from__bottom-img img {
    width: 100%;
  }
}

.every {
  margin-bottom: 80px;
}
.every__wrapper {
  display: flex;
  gap: 30px;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.every__left {
  max-width: 692px;
  display: flex;
  flex-direction: column;
  gap: 36px;
  align-items: flex-start;
}
.every__right {
  display: flex;
  flex-direction: column;
  gap: 30px;
  align-items: flex-end;
}
.every__right-img {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.every__cards {
  display: flex;
}
.every__cards p {
  display: flex;
  padding: 15px 20px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 72px;
  background: rgba(16, 47, 92, 0.34);
  color: #0095ff;
}

.contacts {
  position: relative;
}
.contacts__bg {
  position: absolute;
  top: 80px;
  right: 0;
  z-index: -1;
}
.contacts__content {
  display: flex;
  gap: 30px;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 30px;
}
.contacts__wrapper {
  display: flex;
  gap: 30px;
  align-items: center;
}
@media (max-width: calc(576px - 1px)) {
  .contacts__wrapper {
    flex-direction: column;
  }
}
.contacts__content-texts {
  max-width: 524px;
  display: flex;
  flex-direction: column;
  gap: 36px;
}
.contacts__content-texts p {
  max-width: 356px;
}
.contacts__bottom {
  display: flex;
  gap: 155px;
  justify-content: flex-end;
  flex-wrap: wrap;
}
@media (max-width: calc(1024px - 1px)) {
  .contacts__bottom {
    gap: 30px;
  }
}
@media (max-width: calc(576px - 1px)) {
  .contacts__bottom img {
    width: 100%;
  }
}
.contacts__address {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.contacts__address p,
.contacts__address a {
  display: flex;
  padding: 15px 20px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 72px;
  background: rgba(16, 47, 92, 0.34);
  color: #0095ff;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  width: fit-content;
}

.games {
  background: url(/wp-content/themes/vurnorexa/img/hero-bg.svg) no-repeat center/cover;
  padding-top: 86px;
  margin-bottom: 80px;
}
.games__contents {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
}
.games__content-left {
  max-width: 710px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  gap: 30px;
}
.games__content-lefts {
  display: flex;
  flex-direction: column;
  gap: 36px;
}
.games__games-wrapper {
  display: flex;
  gap: 20px;
}
@media (max-width: calc(576px - 1px)) {
  .games__games-wrapper {
    flex-direction: column;
  }
}
.games__games {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
  justify-content: center;
  max-width: 440px;
}
.games__games-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media (max-width: calc(576px - 1px)) {
  .games__games-content {
    flex-direction: row;
  }
}

.game {
  background: url(/wp-content/themes/vurnorexa/img/hero-bg.svg) no-repeat center/cover;
  padding: 80px 0;
}
.game__content {
  display: flex;
  flex-direction: column;
  gap: 30px;
  align-items: flex-start;
  max-width: 890px;
}
.game__content-wrapper {
  display: flex;
  gap: 30px;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 80px;
}
.game__bottom {
  display: flex;
  gap: 30px;
  align-items: flex-end;
  position: relative;
  flex-wrap: wrap;
}
@media (max-width: calc(768px - 1px)) {
  .game__bottom {
    flex-direction: column;
  }
}
@media (max-width: calc(576px - 1px)) {
  .game__bottom img {
    width: 100%;
  }
}
.game__img {
  position: absolute;
  left: -100px;
  top: 0;
  z-index: -1;
}
.game__bottom-text {
  display: flex;
  flex-direction: column;
  gap: 30px;
  max-width: 474px;
}
.game__bottom-text img {
  width: fit-content;
}
.game__bottom-img {
  display: flex;
  flex-direction: column;
  gap: 30px;
  align-items: flex-end;
}
@media (max-width: calc(1024px - 1px)) {
  .game__bottom-img {
    align-items: flex-start;
  }
}

.privacy {
  padding: 86px 0 0;
  background: url(/wp-content/themes/vurnorexa/img/hero-bg.svg) no-repeat center/cover;
}
.privacy h2 {
  margin-bottom: 30px;
}

/*# sourceMappingURL=style.css.map */
