@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Noto+Sans+Georgian:wght@100..900&family=Outfit:wght@100..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: "Outfit", sans-serif;
  background: #000919;
}

.lock {
  overflow: hidden;
}

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

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

.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 #00A8B4;
  background: #000919;
}
.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: #FFF;
  font-family: Inter;
  font-size: 32px;
  font-weight: 600;
}
.header__logo span {
  color: #00A8B4;
}

@media (max-width: 575px) {
  .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_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: 575px) {
  .menu__body {
    display: block;
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    padding: 100px 15px 0;
    background: #000919;
    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;
}
@media (max-width: 575px) {
  .menu__list {
    flex-direction: column;
    width: -moz-fit-content;
    width: fit-content;
    margin: 0 auto;
    gap: 48px;
  }
}
.menu__link {
  color: #FFF;
  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 {
  border-top: 1px solid #00A8B4;
  background: #000919;
  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;
  border: 3px solid #00A8B4;
  background: #01173F;
}
@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-family: Outfit;
  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-family: Outfit;
  font-size: 16px;
  font-weight: 400;
  line-height: 110%;
  letter-spacing: -0.48px;
  padding: 15px 60px;
  border-radius: 100px;
}
.cookies__btn:first-child {
  background: #00A8B4;
}
.cookies__btn:last-child {
  background: #006269;
}
@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 #00A8B4;
  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: #00A8B4;
}
.age__btn:last-child {
  background: #006269;
}
@media (max-width: 575px) {
  .age__btn {
    width: 100%;
  }
}

.hero__title {
  color: #FFF;
  text-align: center;
  font-size: 50px;
  font-weight: 700;
  line-height: 100%;
  letter-spacing: -1.5px;
  text-transform: uppercase;
}
@media (max-width: 767px) {
  .hero__title {
    font-size: 40px;
    letter-spacing: -1.2px;
  }
}
.hero__img {
  max-width: 706px;
}
.hero__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.hero__text {
  color: #FFF;
  text-align: center;
  font-size: 16px;
  font-weight: 300;
  line-height: 140%;
  letter-spacing: -0.48px;
}
.hero__icon {
  border-radius: 50%;
  border: 4.445px solid #00A8B4;
  width: 185px;
  height: 185px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.hero__icon span {
  color: #00A8B4;
  font-family: "Noto Sans Georgian";
  font-size: 18px;
  font-weight: 400;
  line-height: 100%;
  text-transform: uppercase;
}
.hero__icon svg {
  display: block;
  opacity: 0;
  transform: translateY(-15px);
  animation: arrowFlow 1.5s ease-in-out infinite;
}
.hero__icon svg:nth-of-type(1) {
  animation-delay: 0s;
}
.hero__icon svg:nth-of-type(2) {
  margin-top: -10px;
  animation-delay: 0.3s;
}
.hero__icon svg:nth-of-type(3) {
  margin-top: -10px;
  animation-delay: 0.6s;
}
@keyframes arrowFlow {
  0% {
    opacity: 0;
    transform: translateY(-15px);
  }
  30% {
    opacity: 1;
    transform: translateY(0);
  }
  70% {
    opacity: 1;
    transform: translateY(10px);
  }
  100% {
    opacity: 0;
    transform: translateY(20px);
  }
}

.choose {
  padding: 60px 0;
}
.choose_page {
  margin: 73px 0 0;
}
@media (max-width: 767px) {
  .choose {
    padding: 40px 0;
  }
}
.choose__content {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.choose__title {
  color: #FFF;
  font-size: 50px;
  font-weight: 700;
  line-height: 100%;
  letter-spacing: -1.5px;
  text-transform: uppercase;
  margin-bottom: 15px;
}
.choose__title span {
  color: #008F99;
}
@media (max-width: 767px) {
  .choose__title {
    font-size: 40px;
    letter-spacing: -1.2px;
  }
}
.choose__card {
  border-radius: 12px;
  border: 3px solid #00A8B4;
  background: #01173F;
  padding: 24px;
  display: flex;
  align-items: center;
  gap: 20px;
}
@media (max-width: 991px) {
  .choose__card {
    flex-wrap: wrap;
    justify-content: center;
  }
}
@media (max-width: 575px) {
  .choose__card {
    padding: 20px;
  }
}
.choose__label {
  border-radius: 60px;
  background: #008F99;
  padding: 10px 15px;
  height: -moz-fit-content;
  height: fit-content;
  width: -moz-fit-content;
  width: fit-content;
  color: #FFF;
  font-family: Inter;
  font-size: 13px;
  font-weight: 700;
}
.choose__logo {
  border-radius: 5px;
  background: #003F46;
  min-width: 180px;
  max-width: 180px;
  padding: 10px 11px;
  height: 105px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.choose__text {
  color: #FFF;
  font-size: 18px;
  font-weight: 700;
  line-height: 110%;
  letter-spacing: -0.54px;
}
@media (max-width: 575px) {
  .choose__text {
    text-align: center;
  }
}
.choose__pay {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 4px;
}
.choose__icon {
  background: #fff;
  border-radius: 6px;
  padding: 10px 5px;
  height: -moz-fit-content;
  height: fit-content;
}
.choose__icon img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.choose__rating {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.choose__rating p {
  color: #FFF;
  text-align: center;
  font-size: 20px;
  font-weight: 700;
  line-height: 100%;
  letter-spacing: -0.6px;
}
.choose__rating h3 {
  color: #FFF;
  text-align: center;
  font-size: 16px;
  font-weight: 400;
  line-height: 100%;
  letter-spacing: -0.48px;
}
.choose__link {
  color: #FFF;
  text-align: center;
  font-family: Outfit;
  font-size: 16px;
  font-weight: 400;
  line-height: 110%;
  letter-spacing: -0.48px;
  border-radius: 100px;
  background: linear-gradient(180deg, #00A8B4 0%, #006269 100%);
  padding: 15px 40px;
  flex-shrink: 0;
}
@media (max-width: 575px) {
  .choose__link {
    width: 100%;
  }
}

.guide {
  padding: 60px 0;
}
@media (max-width: 767px) {
  .guide {
    padding: 40px 0;
  }
}
.guide__content {
  display: flex;
  gap: 30px;
}
@media (max-width: 991px) {
  .guide__content {
    flex-direction: column;
    align-items: center;
  }
}
.guide__img {
  max-width: 444px;
  height: -moz-fit-content;
  height: fit-content;
  flex-shrink: 0;
}
.guide__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 991px) {
  .guide__img {
    flex-shrink: 1;
  }
}
.guide__img_about {
  max-width: 322px;
}
.guide__column {
  display: flex;
  flex-direction: column;
  gap: 30px;
  max-width: 606px;
}
.guide__column_about {
  max-width: 728px;
  width: 100%;
}
.guide__title {
  color: #FFF;
  font-size: 40px;
  font-weight: 700;
  line-height: 100%;
  letter-spacing: -1.2px;
  text-transform: uppercase;
}
@media (max-width: 767px) {
  .guide__title {
    font-size: 30px;
    letter-spacing: -0.9px;
  }
}
.guide__text {
  color: #FFF;
  font-size: 16px;
  font-weight: 300;
  line-height: 140%;
  letter-spacing: -0.48px;
}
.guide__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
@media (max-width: 767px) {
  .guide__grid {
    gap: 10px;
  }
}
@media (max-width: 767px) {
  .guide .privacy__card {
    padding: 20px 10px;
  }
}
.guide .privacy__name {
  font-size: 40px;
}
@media (max-width: 767px) {
  .guide .privacy__name {
    font-size: 30px;
  }
}

.players__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
@media (max-width: 767px) {
  .players__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}
@media (max-width: 575px) {
  .players__grid {
    grid-template-columns: repeat(1, 1fr);
  }
}
.players__card {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.players__name {
  color: #FFF;
  font-size: 18px;
  font-weight: 700;
  line-height: 110%;
  letter-spacing: -0.54px;
}
.players__text {
  color: #FFF;
  font-size: 16px;
  font-weight: 300;
  line-height: 130%;
  letter-spacing: -0.48px;
}

.banner {
  padding: 60px 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.4) 100%), url(/wp-content/themes/luckyatlas/assets/img/bg.webp) lightgray 50%/cover no-repeat;
}
@media (max-width: 767px) {
  .banner {
    padding: 40px 0;
  }
}
.banner__content {
  display: flex;
  gap: 20px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  background: rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(6px);
  max-width: 800px;
  margin: 0 auto;
  padding: 30px 20px;
}
@media (max-width: 575px) {
  .banner__content {
    flex-direction: column;
  }
}
.banner__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 45px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: linear-gradient(180deg, #00A8B4 0%, #006269 100%);
  width: 90px;
  height: 90px;
  flex-shrink: 0;
  border-radius: 50%;
}
.banner__column {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.banner__text {
  color: #FFF;
  font-family: Inter;
  font-size: 16px;
  font-weight: 400;
}

.faq {
  padding: 60px 0;
}
@media (max-width: 767px) {
  .faq {
    padding: 40px 0;
  }
}
.faq__column {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.faq__name {
  color: #FFF;
  font-family: Inter;
  font-size: 20px;
  font-weight: 400;
  line-height: 28px;
  letter-spacing: 0.2px;
  text-transform: capitalize;
}
.faq__text {
  color: #FFF;
  font-family: Inter;
  font-size: 16px;
  font-weight: 300;
  line-height: 24px;
  letter-spacing: 0.2px;
  margin-top: 20px;
  border-left: 2px solid #FFF;
  padding: 6px 0 6px 10px;
}
.faq__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  gap: 16px;
}
.faq__plus {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  position: relative;
  transition: transform 0.3s ease;
}
.faq__plus::before, .faq__plus::after {
  content: "";
  position: absolute;
  background: #00A8B4;
  border-radius: 2px;
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.faq__plus::before {
  width: 24px;
  height: 2px;
  top: 11px;
  left: 0;
}
.faq__plus::after {
  width: 2px;
  height: 24px;
  top: 0;
  left: 11px;
}
.faq__body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}
.faq__item.active .faq__plus {
  transform: rotate(0deg);
}
.faq__item.active .faq__plus::after {
  transform: rotate(90deg);
  opacity: 0;
}
.faq__item.active .faq__body {
  max-height: 200px;
}

.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: 60px 0;
  margin: 73px 0 0;
}
@media (max-width: 767px) {
  .privacy {
    padding: 40px 0;
  }
}
.privacy__content {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.privacy__content_center {
  align-items: center;
}
@media (max-width: 767px) {
  .privacy__content {
    gap: 20px;
  }
}
.privacy__title {
  color: #FFF;
  font-size: 40px;
  font-weight: 700;
  line-height: 100%;
  letter-spacing: -1.2px;
  text-transform: uppercase;
}
@media (max-width: 767px) {
  .privacy__title {
    font-size: 30px;
    letter-spacing: -0.9px;
  }
}
.privacy__text {
  color: #FFF;
  font-size: 16px;
  font-weight: 300;
  line-height: 130%;
  letter-spacing: -0.48px;
}
.privacy__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
@media (max-width: 991px) {
  .privacy__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}
@media (max-width: 575px) {
  .privacy__grid {
    grid-template-columns: repeat(1, 1fr);
  }
}
.privacy__card {
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: #011537;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 20px;
}
.privacy__name {
  color: #00A8B4;
  font-family: Inter;
  font-size: 24px;
  font-weight: 600;
}
.privacy__txt {
  color: #FFF;
  font-family: Inter;
  font-size: 16px;
  font-weight: 300;
  line-height: 130%;
}