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

.lock {
  overflow: hidden;
}

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

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

.main {
  flex: 1 1 auto;
}

.title {
  font-size: clamp(50px, 7vw, 80px);
  color: #202020;
  font-weight: 400;
  line-height: 110%;
  text-transform: uppercase;
}

[class*=__text] {
  color: rgba(32, 32, 32, 0.8);
  font-family: "DM Sans";
  font-size: 14px;
  font-weight: 400;
}

.btn {
  text-align: center;
  white-space: nowrap;
  width: -moz-fit-content;
  width: fit-content;
  display: inline-block;
  color: #FFF;
  font-size: 20px;
  font-weight: 400;
  text-transform: uppercase;
  border-radius: 14px;
  background: linear-gradient(90deg, #F82D96 0%, #58178E 100%);
  box-shadow: 0 5px 30px 0 rgba(197, 45, 248, 0.9);
  padding: 24px 50px;
}

.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/zorvannisgrave/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/zorvannisgrave/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/zorvannisgrave/assets/fonts/SFProDisplay-Medium.woff2) format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
.footer__content {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.footer__social {
  display: flex;
  align-items: center;
  gap: 15px;
}
.footer__txt {
  color: rgba(32, 32, 32, 0.6);
  font-size: 14px;
  font-weight: 400;
}
@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: 600px;
  width: 100%;
  border-radius: 26px;
  border: 4px solid #F82D96;
  background: #FFF;
  transform: translateY(100%);
  opacity: 0;
  transition: transform 0.5s ease, opacity 0.5s ease;
}
@media (max-width: 767px) {
  .cookies {
    padding: 40px 20px;
  }
}
.cookies.is-visible {
  transform: translateY(0);
  opacity: 1;
}
.cookies.is-hiding {
  transform: translateY(100%);
  opacity: 0;
}
.cookies__content {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.cookies__title {
  color: #202020;
  font-size: 30px;
  font-weight: 400;
  text-transform: uppercase;
}
.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: #202020;
  border-radius: 14px;
  border: 2px solid #F82D96;
  box-shadow: 0 5px 30px 0 rgba(197, 45, 248, 0.9);
  background: transparent;
}

.header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 60;
  background: #FFF;
}
.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: #202020;
  font-size: 26px;
  font-weight: 400;
  text-transform: uppercase;
}
.header__menu {
  display: flex;
  align-items: center;
  gap: 20px;
}
.header__menu a {
  color: #202020;
  font-size: 14px;
  font-weight: 400;
}

.hero {
  margin: 80px 0 0;
}
@media (max-width: 575px) {
  .hero {
    margin: 116px 0 0;
  }
}
.hero__content {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.hero__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.hero__column {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  max-width: 750px;
  margin: 0 auto;
}

.info__content {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
@media (max-width: 991px) {
  .info__content {
    grid-template-columns: repeat(1, 1fr);
  }
}
.info__card {
  display: flex;
  align-items: center;
  gap: 20px;
  border-bottom: 1px solid #202020;
}
@media (max-width: 575px) {
  .info__card {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }
}
.info__num {
  color: #202020;
  font-size: clamp(80px, 13vw, 140px);
  font-weight: 400;
  text-transform: uppercase;
}
.info__txt {
  color: #202020;
  font-size: clamp(22px, 5vw, 30px);
  font-weight: 400;
  text-transform: uppercase;
}

.about__content {
  display: flex;
  align-items: center;
  gap: 30px;
}
@media (max-width: 991px) {
  .about__content {
    flex-direction: column-reverse;
  }
}
@media (max-width: 575px) {
  .about__img {
    width: 261px;
    height: 537px;
  }
  .about__img img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
}

.catalog__grid {
  max-width: 820px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 0 auto;
}
@media (max-width: 575px) {
  .catalog__grid {
    grid-template-columns: repeat(1, 1fr);
    max-width: 260px;
  }
}
.catalog__grid-sub {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.catalog__card img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.catalog__card {
  position: relative;
}
.catalog__card a {
  position: absolute;
  inset: 0;
}

.reviews__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
@media (max-width: 991px) {
  .reviews__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 575px) {
  .reviews__grid {
    grid-template-columns: repeat(1, 1fr);
  }
}
.reviews__grid_about {
  grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 767px) {
  .reviews__grid_about {
    grid-template-columns: repeat(1, 1fr);
  }
}
.reviews__card {
  border-radius: 24px;
  background: linear-gradient(90deg, #F82D96 0%, #58178E 100%);
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.reviews__card h3 {
  color: #FFF;
  font-size: 30px;
  font-weight: 400;
  text-transform: uppercase;
}
.reviews__card p {
  color: rgba(255, 255, 255, 0.8);
}

.product__content {
  display: flex;
  flex-direction: column;
  gap: 60px;
}
.product__row {
  display: flex;
  align-items: center;
  gap: 30px;
}
@media (max-width: 991px) {
  .product__row {
    flex-direction: column;
  }
}
@media (max-width: 575px) {
  .product__subimg img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
}

.playing__content {
  display: flex;
  align-items: flex-end;
  gap: 32px;
}
@media (max-width: 991px) {
  .playing__content {
    flex-direction: column;
    align-items: flex-start;
    gap: 30px;
  }
}
.playing__address {
  max-width: 400px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 0 auto;
}
.playing__address p,
.playing__address a {
  text-align: center;
  color: #FFF;
  font-size: 16px;
  font-weight: 400;
  text-transform: uppercase;
  border-radius: 14px;
  background: linear-gradient(90deg, #F82D96 0%, #58178E 100%);
  padding: 20px;
}
@media (max-width: 575px) {
  .playing__img {
    width: 132px;
    height: 217px;
  }
  .playing__img img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
@media (max-width: 575px) {
  .playing__subimg {
    width: 145px;
    height: 138px;
  }
  .playing__subimg img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
}

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