@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
* {
  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%;
  -webkit-text-size-adjust: 100%;
     -moz-text-size-adjust: 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;
}

.lock {
  overflow: hidden;
}

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

.main {
  flex: 1 1 auto;
}

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

[class*=__text] {
  color: #000;
  font-size: 14px;
  font-weight: 400;
}

.h1 {
  color: #FFF;
  font-size: clamp(42px, 5vw, 60px);
  font-weight: 700;
  line-height: 120%;
}

.h2 {
  color: #000;
  font-size: clamp(42px, 5vw, 50px);
  font-weight: 700;
  line-height: 120%;
}
.h2 span {
  color: #764FDD;
}

.btn {
  color: #000;
  text-align: center;
  font-size: 14px;
  font-weight: 700;
  border-radius: 60px;
  background: #2FF;
  box-shadow: 0 0 20px 0 rgba(34, 255, 255, 0.6);
  padding: 20px 40px;
}

.btn-border {
  color: #000;
  text-align: center;
  font-size: 14px;
  font-weight: 700;
  padding: 20px 0;
  border-radius: 60px;
  border: 1px solid #000;
}

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

.black {
  color: #000 !important;
}

.white {
  color: #fff !important;
}

.light-blue {
  color: #5DCACC !important;
}

.text-center {
  text-align: center;
}

.header {
  position: fixed;
  top: 0px;
  width: 100%;
  z-index: 60;
}
.header_bg {
  background: #06181B;
}
.header_scroll {
  background: linear-gradient(180deg, #261B45 0%, #09141A 100%);
}
.header__content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  gap: 20px;
}
@media (max-width: 575px) {
  .header__content {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
  }
}
.header__logo {
  position: relative;
  z-index: 40;
  display: flex;
  align-items: center;
  gap: 12px;
  color: #FFF;
  font-size: 24px;
  font-weight: 700;
  text-transform: uppercase;
}
.header__menu {
  display: flex;
  align-items: center;
  gap: 20px;
}
.header__menu a {
  color: #FFF;
  font-size: 14px;
  font-weight: 400;
}

.footer {
  background: #06181B;
  padding: 20px 0;
}
.footer__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
@media (max-width: 575px) {
  .footer .header__menu {
    flex-direction: column;
  }
}
.footer__social {
  display: flex;
  align-items: center;
  gap: 15px;
}
.footer__txt {
  color: rgba(255, 255, 255, 0.5);
  font-size: 14px;
  font-weight: 400;
}

.cookies {
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 100;
  padding: 20px;
  max-width: 760px;
  width: 100%;
  border-radius: 30px;
  border: 3px solid #2FF;
  background: #FFF;
}
.cookies__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.cookies__icon {
  margin: 0 auto;
}
.cookies__title {
  color: #000;
  text-align: center;
  font-size: 26px;
  font-weight: 700;
}
.cookies__column {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.cookies__btns {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 20px;
  width: 100%;
}
.cookies__btn {
  width: 100%;
  padding: 24px 0;
}

.hero {
  background: url(/wp-content/themes/dorvaliqo/img/bg.webp) no-repeat center/cover;
  margin: 75px 0 0;
  padding: 100px 0;
}
@media (max-width: 575px) {
  .hero {
    margin: 96px 0 0;
  }
}
.hero__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  max-width: 698px;
  width: 100%;
  margin: 0 auto;
}

.about {
  padding: 80px 0;
}
.about__content {
  display: flex;
  align-items: flex-end;
  gap: 90px;
}
@media (max-width: 991px) {
  .about__content {
    gap: 30px;
  }
}
@media (max-width: 767px) {
  .about__content {
    flex-direction: column;
    align-items: center;
  }
}
.about__column {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.explore {
  background: linear-gradient(180deg, #261B45 0%, #09141A 100%);
  padding: 80px 0;
}
.explore__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  max-width: 920px;
  margin: 0 auto;
}
@media (max-width: 575px) {
  .explore__img {
    width: -moz-fit-content;
    width: fit-content;
  }
  .explore__img img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
}

.choose {
  padding: 80px 0;
}
.choose__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}
.choose__text {
  max-width: 698px;
  margin: 0 auto;
}
.choose__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
@media (max-width: 991px) {
  .choose__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 575px) {
  .choose__grid {
    grid-template-columns: repeat(1, 1fr);
  }
}
.choose__card {
  border-radius: 26px;
  background: #000;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 15px;
  padding: 20px;
  position: relative;
  height: 288px;
}
.choose__name {
  color: #FFF;
  font-size: 24px;
  font-weight: 700;
}
.choose__blur {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
}
.choose__blur img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.worlds {
  background: linear-gradient(180deg, #261B45 0%, #09141A 100%);
  padding: 60px 0;
}
.worlds__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}
.worlds__text {
  max-width: 934px;
}
.worlds__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
@media (max-width: 991px) {
  .worlds__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 575px) {
  .worlds__grid {
    grid-template-columns: repeat(1, 1fr);
  }
}
.worlds__card img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.catallog {
  margin: 75px 0 0;
  padding: 60px 0;
  background: linear-gradient(180deg, #261B45 0%, #09141A 100%);
}
@media (max-width: 575px) {
  .catallog {
    margin: 96px 0 0;
  }
}
.catallog__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}
.catallog__title, .catallog__text {
  max-width: 1012px;
  width: 100%;
  margin: 0 auto;
}
.catallog__row {
  display: flex;
  align-items: center;
  gap: 15px;
}
@media (max-width: 1390px) {
  .catallog__row {
    flex-direction: column;
  }
}
.catallog__item {
  display: flex;
  align-items: center;
  gap: 15px;
}
@media (max-width: 767px) {
  .catallog__item_mob {
    flex-direction: column;
  }
}
.catallog__card {
  position: relative;
  border-radius: 26px;
  overflow: hidden;
}
.catallog__card::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  background: #5DCACC;
  opacity: 0;
  transition: opacity 0.3s ease-in;
}
.catallog__card:hover::before {
  opacity: 1;
}
.catallog__card:hover .catallog__name {
  opacity: 1;
}
.catallog__card a {
  position: absolute;
  inset: 0;
}
.catallog__img {
  max-width: 155px;
  height: 155px;
  width: 100%;
  aspect-ratio: 1/1;
}
.catallog__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.catallog__img_big {
  max-width: 329px;
  height: 329px;
}
.catallog__name {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #000;
  font-size: 24px;
  font-weight: 700;
  opacity: 0;
  transition: opacity 0.3s ease-in;
}

.game {
  padding: 80px 0 0;
}
.game__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}
.game__img {
  width: -moz-fit-content;
  width: fit-content;
}
.game__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.contact {
  padding: 80px 0;
}
.contact__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  max-width: 890px;
  width: 100%;
  margin: 0 auto;
}
.contact__address {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.contact__address a,
.contact__address p {
  text-align: center;
  color: #764FDD;
  font-size: 18px;
  font-weight: 700;
}
@media (max-width: 575px) {
  .contact__img {
    width: -moz-fit-content;
    width: fit-content;
  }
  .contact__img img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
}

.privacy {
  margin: 75px 0 0;
  padding: 30px 0 80px;
}
@media (max-width: 575px) {
  .privacy {
    margin: 96px 0 0;
  }
}