@charset "UTF-8";
* {
  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: "Open Sans", sans-serif;
  color: #fff;
  font-weight: 600;
  background: #050c12;
}

.lock {
  overflow: hidden;
}

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

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

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

[class*=__text-big] {
  color: #b6d5da;
  font-size: 24px;
  font-weight: 400;
}

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

h1 {
  font-size: 128px;
  font-weight: 700;
  line-height: 108px;
  letter-spacing: 5.12px;
  text-transform: uppercase;
  background: linear-gradient(90deg, #b6d5da 0%, #58c0db 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media (max-width: calc(768px - 1px)) {
  h1 {
    font-size: 68px;
  }
}

h2 {
  color: #fff;
  font-size: 48px;
  font-weight: 600;
}
@media (max-width: calc(768px - 1px)) {
  h2 {
    font-size: 32px;
  }
}

h3 {
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  line-height: 26px;
}
@media (max-width: calc(768px - 1px)) {
  h3 {
    font-size: 32px;
  }
}

.main {
  flex: 1 1 auto;
}

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

.btn {
  display: flex;
  padding: 12px 16px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 50px;
  background: linear-gradient(90deg, #58c0db 0%, #0c68cc 100%);
  color: #050c12;
  font-size: 16px;
  font-weight: 600;
  width: fit-content;
}

.btn-border {
  display: flex;
  padding: 12px 16px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 50px;
  border: 1px solid #fff;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  width: fit-content;
}

@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: 64px;
  width: 100%;
  max-width: 850px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 32px;
  background: #F1F1F1;
  color: #1E2423;
}
.cookies__column {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.cookies__title {
  font-size: 44px;
  text-transform: uppercase;
}
.cookies__text {
  margin-bottom: 32px;
}
.cookies__btns {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
}
.cookies__btns button {
  width: 100%;
}

.footer {
  padding-top: 80px;
  padding-bottom: 20px;
  overflow: hidden;
  position: relative;
  z-index: 2;
}
.footer__content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  padding-bottom: 56px;
  position: relative;
  margin-top: 40px;
}
.footer__content:first-child::after {
  position: absolute;
  content: "";
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, 0.2);
}
@media (max-width: calc(768px - 1px)) {
  .footer__content {
    flex-direction: column;
    align-items: start;
  }
}
.footer__address {
  display: flex;
  gap: 49px;
  flex-wrap: wrap;
}
@media (max-width: calc(768px - 1px)) {
  .footer__address {
    gap: 24px;
    flex-direction: column;
  }
}
.footer__address a {
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  line-height: 160%;
}
.footer__address p {
  max-width: 240px;
}
.footer__menu {
  display: flex;
  gap: 20px;
  font-size: 14px;
}
.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 {
  font-size: 32px;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 1.28px;
  text-transform: uppercase;
  background: linear-gradient(90deg, #b6d5da 0%, #58c0db 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: flex;
  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;
  font-size: 14px;
  font-weight: 400;
  text-transform: uppercase;
}

.hero {
  padding-top: 280px;
  padding-bottom: 72px;
  background: url(/wp-content/themes/trylureth/img/hero-bg.webp) no-repeat center/cover;
}
.hero__content {
  max-width: 994px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.hero__content h2,
.hero__content p {
  max-width: 466px;
}
.hero__content h2 {
  font-size: 40px;
}

.who {
  margin-top: 76px;
  margin-bottom: 120px;
}
.who__content {
  display: flex;
  gap: 48px;
  flex-wrap: wrap;
  justify-content: center;
}
.who__our {
  max-width: 347px;
}
.who__img {
  display: flex;
  gap: 34px;
}
@media (max-width: calc(576px - 1px)) {
  .who__img img {
    width: 50%;
  }
}
.who__cards {
  display: flex;
  flex-direction: column;
  gap: 56px;
  max-width: 228px;
}
.who__card {
  display: flex;
  flex-direction: column;
  gap: 17px;
  align-items: center;
  text-align: center;
}
.who__card h2 {
  color: #58c0db;
  text-align: center;
}
.who__line {
  display: flex;
  align-items: center;
  gap: 18px;
}
.who__our {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.our {
  margin-bottom: 120px;
}
.our__content {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.our__content h2 {
  max-width: 452px;
  text-align: center;
}
.our__content p {
  max-width: 292px;
  text-align: center;
  margin-bottom: 80px;
}
.our__cards {
  display: flex;
  gap: 22px;
  justify-content: center;
  flex-wrap: wrap;
}
.our__card {
  width: 392px;
  height: 230px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: calc(768px - 1px)) {
  .our__card {
    width: 100%;
  }
}
.our__card h3 {
  max-width: 234px;
  text-align: center;
  line-height: normal;
}
.our__card:nth-of-type(1) {
  border-radius: 70px 0 0 0;
  border: 3px solid #0c68cc;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(18.2027645111px);
}
@media (max-width: calc(768px - 1px)) {
  .our__card:nth-of-type(1) {
    border-radius: 70px;
  }
}
.our__card:nth-of-type(2) {
  border-radius: 0 70px 0 0;
  border: 3px solid rgba(255, 255, 255, 0.1);
  background: linear-gradient(0deg, rgba(229, 224, 218, 0) -8.89%, #58c0db 100%);
  backdrop-filter: blur(18.2027645111px);
  color: #050c12;
}
@media (max-width: calc(768px - 1px)) {
  .our__card:nth-of-type(2) {
    border-radius: 70px;
  }
}
.our__card:nth-of-type(2) h3 {
  font-weight: 700;
}
.our__card:nth-of-type(3) {
  border-radius: 0 0 0 70px;
  border: 3px solid #0c68cc;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(18.2027645111px);
}
@media (max-width: calc(768px - 1px)) {
  .our__card:nth-of-type(3) {
    border-radius: 70px;
  }
}
.our__card:nth-of-type(4) {
  border-radius: 0 0 70px 0;
  border: 3px solid #0c68cc;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(18.2027645111px);
}
@media (max-width: calc(768px - 1px)) {
  .our__card:nth-of-type(4) {
    border-radius: 70px;
  }
}

.how {
  margin-bottom: 300px;
}
.how__content {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.how__content h2 {
  max-width: 578px;
  text-align: center;
  margin-bottom: 70px;
}
.how__cards {
  display: flex;
  gap: 45px;
  flex-wrap: wrap;
  justify-content: center;
}
.how__card {
  display: flex;
  width: 381px;
  padding: 36px 19px;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  border-radius: 30px;
  border: 3px solid #0c68cc;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(18.2027645111px);
}
@media (max-width: calc(576px - 1px)) {
  .how__card {
    width: 100%;
  }
}
@media (max-width: calc(576px - 1px)) {
  .how__card img {
    width: 100%;
  }
}

.find {
  margin-bottom: 120px;
}
.find__content {
  display: flex;
  gap: 30px;
}
@media (max-width: calc(768px - 1px)) {
  .find__content {
    flex-direction: column;
  }
}
.find__content-text {
  position: relative;
}
.find__blur {
  position: absolute;
  left: -30px;
}

.accordion-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.accordion-header {
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  padding: 18px 0;
  font-size: 18px;
  color: #fff;
  cursor: pointer;
  position: relative;
  transition: color 0.3s;
}

.accordion-header::after {
  content: "+";
  position: absolute;
  right: 0;
  font-size: 22px;
  transition: transform 0.3s;
}

.accordion-item.active .accordion-header::after {
  content: "−";
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, opacity 0.4s ease;
  opacity: 0;
}

.accordion-item.active .accordion-content {
  max-height: 200px; /* можно подкорректировать */
  opacity: 1;
}

.accordion-header:hover {
  color: #00aaff;
}

.games {
  margin-top: 220px;
}
.games h2 {
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 80px;
}
.games .how__cards {
  gap: 12px;
}

.game {
  margin-top: 220px;
}
.game h2 {
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 80px;
}
.game .how__cards {
  margin-bottom: 40px;
}
.game p {
  max-width: 646px;
  text-align: center;
  margin: 0 auto;
}

.privacy {
  margin: 70px 0 0;
  padding: 40px 0;
}
.privacy__title {
  margin-bottom: 80px;
}

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