@import url("https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&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: "DM Sans", sans-serif;
  background: #FFF;
}

.lock {
  overflow: hidden;
}

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

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

.title {
  color: #1E1E1E;
  font-size: clamp(32px, 5vw, 60px);
  font-weight: 500;
  line-height: 90%;
  text-transform: uppercase;
}

[class*=__text] {
  color: #1E1E1E;
  font-size: 16px;
  font-weight: 400;
  line-height: 130%;
}

.main {
  flex: 1 1 auto;
}

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

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

.header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 60;
  border-bottom: 1px solid #000;
  background: #FFF;
}
.header__content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
}
.header__logo {
  position: relative;
  z-index: 40;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #1E1E1E;
  font-size: 32px;
  font-weight: 600;
}
.header__logo span {
  color: #050B89;
}

@media (max-width: 767px) {
  .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: #050B89;
  }
  .menu__icon_privacy span, .menu__icon_privacy::before, .menu__icon_privacy::after {
    right: 0;
    position: absolute;
    height: 10%;
    width: 100%;
    transition: all 0.3s ease 0s;
    background: #000;
  }
  .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%);
  }
  .menu__icon_active::before {
    top: 50%;
    transform: rotate(-45deg) translate(0px, -50%);
  }
  .menu__icon_active::after {
    bottom: 50%;
    transform: rotate(45deg) translate(0px, 50%);
  }
}
@media (max-width: 767px) {
  .menu__body {
    display: block;
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    padding: 100px 15px 0;
    background: #FFF;
    transition: left 0.3s ease 0s;
    overflow: auto;
  }
  .menu__body_active {
    left: 0;
  }
  .menu__body::before {
    content: "";
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 16;
  }
}
.menu__list {
  display: flex;
  align-items: center;
  gap: 40px;
  border-radius: 100px;
  background: #FFF;
  padding: 14px 40px;
}
@media (max-width: 767px) {
  .menu__list {
    flex-direction: column;
    width: -moz-fit-content;
    width: fit-content;
    margin: 0 auto;
    padding: 0;
    background: none;
  }
}
.menu__link {
  color: #1E1E1E;
  font-size: 16px;
  font-weight: 500;
}
@media (hover: hover) and (pointer: fine) {
  .menu__link {
    position: relative;
  }
  .menu__link::after {
    content: "";
    position: absolute;
    width: 100%;
    transform: scaleX(0);
    height: 2px;
    bottom: -2px;
    left: 0;
    transform-origin: bottom right;
    transition: transform 0.25s ease-out;
    background-color: #fff;
  }
  .menu__link:hover::after {
    transform-origin: bottom left;
    transform: scaleX(1);
  }
}

.footer {
  background: #050B89;
  padding: 30px 0;
}
.footer__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}
.footer__menu {
  display: flex;
  align-items: center;
  gap: 40px;
}
.footer__menu a {
  color: #FFF;
  font-family: Inter;
  font-size: 16px;
  font-weight: 500;
}
@media (max-width: 575px) {
  .footer__menu {
    flex-direction: column;
    gap: 10px;
  }
}
.footer__row {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
}
.footer__row a img {
  width: 140px;
}
.footer__line {
  background: rgba(255, 255, 255, 0.3);
  width: 100%;
  height: 1px;
}
.footer__text {
  color: rgba(255, 255, 255, 0.8);
  text-align: center;
  font-family: Inter;
  font-size: 14px;
  font-weight: 400;
}
.footer__column {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer__txt {
  color: #FFF;
  text-align: center;
  font-family: Inter;
  font-size: 14px;
  font-weight: 400;
}

@keyframes overlayIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes overlayOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@keyframes popupIn {
  from {
    opacity: 0;
    transform: scale(0.85) translateY(-20px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}
@keyframes popupOut {
  from {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
  to {
    opacity: 0;
    transform: scale(0.85) translateY(-20px);
  }
}
@keyframes cookiesIn {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes cookiesOut {
  from {
    opacity: 1;
    transform: translateY(0);
  }
  to {
    opacity: 0;
    transform: translateY(30px);
  }
}
.cookies {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 1000;
  padding: 40px;
  max-width: 600px;
  width: 100%;
  border-radius: 20px;
  background: #050B89;
}
@media (max-width: 767px) {
  .cookies {
    padding: 40px 20px;
  }
}
.cookies__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.cookies__title {
  color: #FFF;
  text-align: center;
  font-size: 30px;
  font-weight: 700;
  line-height: 100%;
  letter-spacing: -0.9px;
}
.cookies__text {
  color: #FFF;
  text-align: center;
  font-size: 16px;
  font-weight: 300;
  line-height: 140%;
  letter-spacing: -0.48px;
}
.cookies__btns {
  display: flex;
  align-items: center;
  gap: 20px;
}
@media (max-width: 575px) {
  .cookies__btns {
    flex-direction: column;
    width: 100%;
  }
}
.cookies__btn {
  color: #FFF;
  text-align: center;
  font-size: 16px;
  font-weight: 400;
  line-height: 110%;
  letter-spacing: -0.48px;
  padding: 15px 60px;
  border-radius: 100px;
}
.cookies__btn:first-child {
  background: #5652D9;
}
.cookies__btn:last-child {
  background: #BDD7FF;
  color: #000;
}
@media (max-width: 575px) {
  .cookies__btn {
    width: 100%;
  }
}
.cookies--active {
  display: block;
  animation: cookiesIn 0.4s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}
.cookies--hiding {
  display: block;
  animation: cookiesOut 0.3s ease forwards;
}

.age {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1000;
  justify-content: center;
  align-items: center;
  background: rgba(0, 0, 0, 0.5411764706);
}
.age--active {
  display: flex;
  animation: overlayIn 0.3s ease forwards;
}
.age--active .age__content {
  animation: popupIn 0.4s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}
.age--hiding {
  display: flex;
  animation: overlayOut 0.3s ease forwards;
}
.age--hiding .age__content {
  animation: popupOut 0.3s ease forwards;
}
.age__content {
  border-radius: 20px;
  border: 3px solid #050B89;
  background: #FFF;
  padding: 40px;
  max-width: 600px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin: 0 15px;
}
@media (max-width: 767px) {
  .age__content {
    padding: 40px 20px;
  }
}
.age__row {
  display: flex;
  align-items: center;
  gap: 20px;
}
.age__icon {
  width: 46px;
  height: 46px;
  flex-shrink: 0;
}
.age__icon img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.age__title {
  color: #000;
  font-size: 30px;
  font-weight: 700;
  line-height: 100%;
  letter-spacing: -0.9px;
}
.age__text {
  color: #000;
  font-size: 16px;
  font-weight: 300;
  line-height: 140%;
  letter-spacing: -0.48px;
}
.age__btns {
  display: flex;
  align-items: center;
  gap: 20px;
}
@media (max-width: 575px) {
  .age__btns {
    flex-direction: column;
  }
}
.age__btn {
  color: #FFF;
  text-align: center;
  font-size: 16px;
  font-weight: 400;
  line-height: 110%;
  letter-spacing: -0.48px;
  border-radius: 100px;
  padding: 15px 60px;
}
.age__btn:first-child {
  background: #5652D9;
}
.age__btn:last-child {
  background: #050B89;
}
@media (max-width: 575px) {
  .age__btn {
    width: 100%;
  }
}

.hero {
  margin: 82px 0 0;
  padding: 82px 0;
}
@media (max-width: 767px) {
  .hero {
    padding: 40px 0;
  }
}
.hero_about {
  margin: 0;
}
.hero__content {
  display: flex;
  flex-direction: column;
  gap: 60px;
}
@media (max-width: 767px) {
  .hero__content {
    gap: 20px;
  }
}
@media (max-width: 767px) {
  .hero__title {
    text-align: left;
  }
}
.hero__row {
  display: flex;
  align-items: center;
  gap: 40px;
}
@media (max-width: 991px) {
  .hero__row {
    flex-direction: column;
  }
}
@media (max-width: 575px) {
  .hero__img img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
.hero__column {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.hero__item {
  display: flex;
  gap: 100px;
}
@media (max-width: 429px) {
  .hero__item {
    gap: 50px;
  }
}
.hero__item_about {
  gap: 20px;
  flex-wrap: wrap;
  justify-content: space-between;
}
.hero__link {
  display: inline-block;
  color: #FFF;
  text-align: center;
  font-family: "DM Sans";
  font-size: 16px;
  font-weight: 700;
  text-transform: capitalize;
  border-radius: 25px;
  background: #5652D9;
  padding: 14px 32px;
}
.hero__number {
  color: #5652D9;
  font-size: 30px;
  font-weight: 700;
  line-height: 116%;
  text-transform: capitalize;
}
.hero__txt {
  color: #5652D9;
  font-size: 14px;
  font-weight: 400;
  line-height: 116%;
  text-transform: capitalize;
}

.play {
  background: #5652D9;
  padding: 80px 0;
}
@media (max-width: 767px) {
  .play {
    padding: 40px 0;
  }
}
.play_page {
  margin: 82px 0 0;
  background: #FFF;
}
.play__content {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
@media (max-width: 767px) {
  .play__content {
    grid-template-columns: repeat(1, 1fr);
    gap: 20px;
  }
}
.play__content_page {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.play__title {
  line-height: 120%;
  text-transform: uppercase;
  margin-bottom: 32px;
}
.play__title span {
  color: #050B89;
  font-style: italic;
}
.play__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.play__grid_sub {
  grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 991px) {
  .play__grid {
    grid-template-columns: repeat(1, 1fr);
    gap: 20px;
  }
}
.play__card {
  border-radius: 12px;
  background: #050B89;
  padding: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.play__card_bg {
  background: #5652D9;
}
.play__card_bg a {
  background: #050B89;
  color: #FFF;
}
.play__logo {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 200px;
  height: 120px;
  border-radius: 18px;
  background: #FFF;
}
.play__text {
  color: #FFF;
  text-align: center;
  font-size: 20px;
  font-weight: 500;
  line-height: 110%;
  letter-spacing: -0.6px;
}
.play__rating {
  display: flex;
  align-items: center;
  gap: 10px;
}
.play__number {
  color: #FFF;
  text-align: center;
  font-size: 20px;
  font-weight: 700;
  line-height: 100%;
  letter-spacing: -0.6px;
}
.play__txt {
  color: #FFF;
  text-align: center;
  font-size: 16px;
  font-weight: 400;
  line-height: 100%;
  letter-spacing: -0.48px;
}
.play__link {
  color: #000;
  text-align: center;
  font-size: 16px;
  font-weight: 400;
  line-height: 110%;
  letter-spacing: -0.48px;
  border-radius: 100px;
  background: #BDD7FF;
  padding: 15px 80px;
}

.choose {
  padding: 80px 0;
}
@media (max-width: 767px) {
  .choose {
    padding: 40px 0;
  }
}
.choose__title {
  margin-bottom: 20px;
}
.choose__grid {
  margin-top: 60px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 767px) {
  .choose__grid {
    grid-template-columns: repeat(1, 1fr);
    margin-top: 20px;
  }
}
.choose__grid_reviews {
  margin: 0;
}
.choose__grid_about {
  margin: 0;
  grid-template-columns: repeat(1, 1fr);
}
.choose__card {
  border-radius: 20px;
  padding: 30px 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: #BDD7FF;
}
.choose__card:nth-child(even) {
  background: #050B89;
}
.choose__card:nth-child(even) h3,
.choose__card:nth-child(even) p {
  color: #fff;
}
.choose__row {
  display: flex;
  align-items: center;
  gap: 16px;
}
.choose__icon_reviews img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.choose__name {
  color: #1E1E1E;
  font-size: 20px;
  font-weight: 700;
  line-height: 116%;
  text-transform: capitalize;
}

.reviews {
  background: #5652D9;
  padding: 80px 0;
}
@media (max-width: 767px) {
  .reviews {
    padding: 40px 0;
  }
}
.reviews__content {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
@media (max-width: 767px) {
  .reviews__content {
    gap: 20px;
  }
}
.reviews__title {
  color: #fff;
}
.reviews__line {
  background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, #FFF 50%, rgba(255, 255, 255, 0) 100%);
  width: 100%;
  height: 2px;
}

.faq {
  padding: 80px 0;
}
@media (max-width: 767px) {
  .faq {
    padding: 20px 0;
  }
}
.faq__title span {
  color: #050B89;
}
.faq__content {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
@media (max-width: 767px) {
  .faq__content {
    gap: 20px;
  }
}
.faq__column {
  display: flex;
  flex-direction: column;
  gap: 40px;
  border-radius: 25px;
  border: 0.833px solid #1E1E1E;
  padding: 30px 25px;
}
@media (max-width: 767px) {
  .faq__column {
    gap: 30px;
  }
}
.faq__arrow {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.faq__arrow svg {
  transition: transform 0.25s ease;
}
.faq__item {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid #1E1E1E;
}
.faq__item.active .faq__text {
  display: block;
}
.faq__item.active .faq__arrow {
  background: #5855D6;
}
.faq__item.active .faq__arrow svg {
  transform: rotate(90deg);
}
.faq__item.active .faq__arrow svg path {
  stroke: #fff;
}
.faq__name {
  color: #1E1E1E;
  font-size: 24px;
  font-weight: 600;
  text-transform: capitalize;
}
.faq__body {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
.faq__text {
  display: none;
  max-width: 925px;
  color: #1E1E1E;
  text-align: justify;
  font-size: 14px;
  font-weight: 400;
  line-height: 130%;
  text-transform: lowercase;
}
.faq__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.about {
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.2) 100%), url(/wp-content/themes/gameratezone/assets/img/bg.webp) lightgray 50%/cover no-repeat;
  padding: 80px 0;
}
@media (max-width: 767px) {
  .about {
    padding: 40px 0;
  }
}
.about__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.about__title, .about__text {
  color: white;
}

.process {
  padding: 60px 0;
}
@media (max-width: 767px) {
  .process {
    padding: 40px 0;
  }
}
.process__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.process__grid_sub {
  grid-template-columns: repeat(2, 1fr);
}
@media (max-width: 767px) {
  .process__grid {
    grid-template-columns: repeat(1, 1fr);
    gap: 20px;
  }
}
.process__img {
  margin-top: 30px;
}
.process__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.privacy {
  padding: 80px 0;
  margin: 82px 0 0;
}
@media (max-width: 767px) {
  .privacy {
    padding: 40px 0;
  }
}
.privacy__content {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
@media (max-width: 767px) {
  .privacy__content {
    gap: 20px;
  }
}
.privacy__text {
  text-align: justify;
  line-height: 130%;
}