@import url("https://fonts.googleapis.com/css2?family=Unbounded:wght@200..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: "Unbounded", sans-serif;
  background: #000;
}

.lock {
  overflow: hidden;
}

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

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

.main {
  flex: 1 1 auto;
}

.title {
  font-size: clamp(28px, 6vw, 70px);
  color: #FFF;
  font-weight: 900;
  text-transform: uppercase;
}

[class*=__text] {
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  font-weight: 400;
}

.line {
  border-radius: 5px;
  background: linear-gradient(90deg, #FABF47 0%, #B82DF4 100%);
  max-width: 360px;
  width: 100%;
  height: 5px;
}

.btn {
  text-align: center;
  white-space: nowrap;
  width: -moz-fit-content;
  width: fit-content;
  display: inline-block;
  color: #FFF;
  font-size: 16px;
  font-weight: 600;
  padding: 24px 50px;
  border-radius: 60px;
  background: linear-gradient(90deg, #FABF47 0%, #B82DF4 100%);
  box-shadow: 0 5px 30px 0 rgba(184, 45, 244, 0.4);
}

.pb-60 {
  padding-bottom: 60px;
}

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

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

@font-face {
  font-family: "SF Pro Display";
  src: url(/wp-content/themes/mystravayne/assets/fonts/SFProDisplay-Regular.woff2) format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "SF Pro Display";
  src: url(/wp-content/themes/mystravayne/assets/fonts/SFProDisplay-Bold.woff2) format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "SF Pro Display";
  src: url(/wp-content/themes/mystravayne/assets/fonts/SFProDisplay-Medium.woff2) format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
.footer {
  padding-bottom: 20px;
  background: #000;
}
.footer__content {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.footer__social {
  display: flex;
  align-items: center;
  gap: 20px;
}
.footer__text {
  color: #fff;
}
@media (max-width: 575px) {
  .footer .header__menu {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }
}

.cookies {
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 1000;
  padding: 20px;
  max-width: 1200px;
  width: 100%;
  border-radius: 40px;
  border: 2px solid #FFF;
  background: #000;
  transform: translateY(100%);
  opacity: 0;
  transition: transform 0.5s ease, opacity 0.5s ease;
}
.cookies.is-visible {
  transform: translateY(0);
  opacity: 1;
}
.cookies.is-hiding {
  transform: translateY(100%);
  opacity: 0;
}
.cookies__content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.cookies__title {
  color: #fff;
  font-size: 30px;
  font-weight: 400;
  text-transform: uppercase;
}
.cookies__text {
  color: #fff;
}
.cookies__btns {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media (max-width: 429px) {
  .cookies__btns {
    flex-direction: column;
    width: 100%;
  }
}
.cookies__btn {
  width: 100%;
}
.cookies__btn:last-child {
  color: #FFF;
  border: 2px solid #FFF;
  box-shadow: 0 5px 30px 0 rgba(184, 45, 244, 0.4);
  background: transparent;
}

.header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 60;
  background: #000;
}
.header__content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
}
@media (max-width: 575px) {
  .header__content {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }
}
.header__logo {
  position: relative;
  z-index: 40;
  display: flex;
  align-items: center;
  gap: 12px;
  color: #FFF;
  font-size: 22px;
  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;
}

.hero {
  position: relative;
  z-index: 2;
}
.hero__img {
  position: absolute;
  top: 0;
  right: 0;
}
@media (max-width: 991px) {
  .hero__img {
    position: static;
  }
  .hero__img img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .hero__img {
    width: -moz-fit-content;
    width: fit-content;
  }
}
.hero__text {
  max-width: 508px;
}

.about__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 575px) {
  .about__grid {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
  }
}
@media (max-width: 575px) {
  .about__img img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
.about__item {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
@media (max-width: 575px) {
  .about__item {
    max-width: 157px;
  }
}
.about__num {
  font-size: 40px;
  font-weight: 900;
  text-transform: uppercase;
  background: linear-gradient(90deg, #FABF47 0%, #B82DF4 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.catalog__grid {
  display: grid;
  grid-template-columns: 1fr 2fr 2fr 1fr;
  gap: 20px;
  max-width: 1060px;
  margin: 0 auto;
}
@media (max-width: 767px) {
  .catalog__grid {
    grid-template-columns: 1fr;
  }
}
.catalog__item {
  display: grid;
  grid-template-rows: 1fr 1fr;
  gap: 20px;
}
@media (max-width: 767px) {
  .catalog__item {
    max-width: 160px;
    margin: 0 auto;
  }
}
.catalog__card {
  position: relative;
  aspect-ratio: 1/1;
  overflow: hidden;
  border-radius: 12px;
}
.catalog__card img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.catalog__card a {
  position: absolute;
  inset: 0;
}

.choose__content {
  display: flex;
  align-items: center;
  gap: 30px;
}
@media (max-width: 991px) {
  .choose__content {
    flex-direction: column;
    align-items: flex-start;
  }
}
@media (max-width: 991px) {
  .choose__img {
    width: 203px;
    height: 366px;
  }
  .choose__img img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
.choose__text span {
  color: #FFF;
  font-size: 18px;
  font-weight: 700;
}

.info__content {
  max-width: 1065px;
  margin: 0 auto;
}
.info__addrss {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.info__addrss a,
.info__addrss p {
  text-align: center;
  font-size: 18px;
  font-weight: 700;
  background: linear-gradient(90deg, #FABF47 0%, #B82DF4 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.game__content {
  display: flex;
  flex-direction: column;
  gap: 60px;
}
.game__row {
  display: flex;
  gap: 30px;
}
@media (max-width: 767px) {
  .game__row {
    flex-direction: column;
    align-items: center;
  }
}
@media (max-width: 767px) {
  .game__img-sub img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
}

.policy {
  margin: 70px 0 0;
}
@media (max-width: 575px) {
  .policy {
    margin: 102px 0 0;
  }
}
.policy__content {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.policy__content_center {
  align-items: center;
}