@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Press+Start+2P&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: "Inter", sans-serif;
}

.lock {
  overflow: hidden;
}

.wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  overflow: hidden;
  background: #191919;
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
}

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

.main {
  flex: 1 1 auto;
}

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

.title {
  color: #191919;
  font-family: "Press Start 2P";
  font-size: clamp(32px, 9vw, 64px);
  font-weight: 400;
  line-height: 90%;
  text-transform: uppercase;
}
@media (max-width: 767px) {
  .title {
    line-height: 110%;
  }
}

[class*=__text] {
  color: #191919;
  font-family: Inter;
  font-size: 16px;
  font-weight: 400;
}
[class*=__text] a {
  color: #191919;
}

.btn {
  color: #191919;
  text-align: center;
  font-size: 16px;
  font-weight: 900;
  border-radius: 30px;
  border: 1px solid transparent;
  background: #DD3838;
  padding: 20px 48px;
  display: inline-block;
  height: -moz-fit-content;
  height: fit-content;
}

.btn-border {
  color: #FFF;
  text-align: center;
  font-size: 16px;
  font-weight: 900;
  line-height: 120%;
  border-radius: 30px;
  border: 1px solid #FFF;
  padding: 20px 48px;
}

.white {
  color: #fff !important;
}

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

.header {
  position: fixed;
  top: 32px;
  width: 100%;
  z-index: 60;
  background: #191919;
}
.header__logo {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #FFF;
  font-size: 24px;
  font-weight: 900;
}
.header__content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
@media (max-width: 575px) {
  .header__content {
    flex-direction: column;
    justify-content: center;
  }
}
.header__menu {
  display: flex;
  align-items: center;
  gap: 8px;
}
.header__menu a {
  display: inline-block;
  color: #191919;
  text-align: center;
  font-size: 16px;
  font-weight: 600;
  line-height: 120%;
  border-radius: 30px;
  border: 1px solid #F6F6F6;
  background: #FFF;
  padding: 16px 22px;
}
.header__menu a:hover {
  background: #DD3838;
}

.footer {
  background: #FFF;
  padding: 40px 0;
}
.footer__content {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.footer__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .footer__row {
    flex-direction: column-reverse;
    align-items: flex-start;
    gap: 32px;
  }
}
.footer__txt {
  color: #191919;
  font-size: 14px;
  font-weight: 400;
  line-height: 160%;
}
.footer__socail {
  display: flex;
  align-items: center;
  gap: 15px;
}
.footer__subrow {
  display: flex;
  gap: 32px;
}
@media (max-width: 767px) {
  .footer__subrow {
    flex-direction: column;
  }
}
.footer__address {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer__address a,
.footer__address p {
  display: flex;
  gap: 12px;
  color: #191919;
  font-size: 14px;
  font-weight: 400;
  line-height: 150%;
}
.footer__menu {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.footer__menu a {
  color: #191919;
  font-size: 16px;
  font-weight: 600;
  line-height: 120%;
  text-transform: capitalize;
}
.footer__name {
  color: #191919;
  text-align: center;
  font-size: clamp(70px, 15vw, 203px);
  font-weight: 900;
}

.cookies {
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 1000;
  padding: 60px;
  max-width: 850px;
  width: 100%;
  border-radius: 20px;
  background: #191919;
}
@media (max-width: 767px) {
  .cookies {
    padding: 40px 20px;
  }
}
.cookies__column {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.cookies__btns {
  display: flex;
  align-items: center;
  gap: 20px;
  margin: 20px 0 0;
}
@media (max-width: 767px) {
  .cookies__btns {
    flex-direction: column;
  }
}
@media (max-width: 767px) {
  .cookies__btn {
    width: 100%;
  }
}

.hero {
  margin: 100px 0 0;
}
@media (max-width: 575px) {
  .hero {
    margin: 156px 0 0;
  }
}
.hero__content {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.hero__column {
  border-radius: 20px;
  background: #FFF;
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding: 40px;
}
@media (max-width: 767px) {
  .hero__column {
    padding: 24px;
  }
}
.hero__row {
  display: flex;
  gap: 72px;
}
@media (max-width: 767px) {
  .hero__row {
    flex-direction: column;
  }
}
.hero__text {
  max-width: 444px;
}
.hero__link {
  width: 100%;
}
.hero__img {
  width: -moz-fit-content;
  width: fit-content;
  height: 472px;
  border-radius: 20px;
  overflow: hidden;
}
.hero__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.about {
  margin: 120px 0;
}
.about__content {
  padding: 88px 0;
  position: relative;
  z-index: 2;
}
.about__title {
  text-align: center;
}
@media (max-width: 767px) {
  .about__title {
    font-size: 40px;
    word-break: break-all;
  }
}
.about__img {
  position: absolute;
  z-index: -1;
}
.about__img_first {
  top: 0;
}
.about__img_second {
  right: 0;
  bottom: 0;
}

.info__content {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.info__row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}
@media (max-width: 991px) {
  .info__row {
    grid-template-columns: repeat(1, 1fr);
  }
}
.info__column {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.info__card {
  border-radius: 20px;
  border: 1px solid #FFF;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.info__card_active {
  background: #FFF;
}
.info__card_active h3 {
  color: #191919;
}
.info__name {
  color: #FFF;
  font-family: "Press Start 2P";
  font-size: 32px;
  font-weight: 400;
  line-height: 120%;
}
@media (max-width: 575px) {
  .info__name {
    word-break: break-all;
  }
}
@media (max-width: 991px) {
  .info__img {
    width: -moz-fit-content;
    width: fit-content;
    margin: 0 auto;
  }
}
@media (max-width: 575px) {
  .info__img img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
}

.reviews {
  margin: 120px 0;
}
.reviews__content {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.reviews__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}
@media (max-width: 767px) {
  .reviews__grid {
    grid-template-columns: repeat(1, 1fr);
  }
}
.reviews__card {
  border-radius: 20px;
  background: #FFF;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 72px;
}
.reviews__row {
  display: flex;
  align-items: center;
  gap: 24px;
}
.reviews__name {
  color: #191919;
  font-family: "Press Start 2P";
  font-size: 32px;
  font-weight: 400;
  line-height: 120%;
}

.banner {
  padding: 155px 0;
  background: url(/wp-content/themes/krasynox/img/bg.webp) no-repeat center/cover;
}
.banner__content {
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 515px;
}

.catallog {
  margin: 100px 0 120px;
}
@media (max-width: 575px) {
  .catallog {
    margin: 156px 0 120px;
  }
}
.catallog__content {
  display: flex;
  flex-direction: column;
  gap: 120px;
}
.catallog__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.catallog__column {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.catallog__column_second {
  margin-top: 157px;
}
.catallog__card {
  width: -moz-fit-content;
  width: fit-content;
}
.catallog__card img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.game {
  margin: 100px 0 120px;
}
@media (max-width: 575px) {
  .game {
    margin: 156px 0 120px;
  }
}
.game__content {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
@media (max-width: 991px) {
  .game__content {
    grid-template-columns: repeat(1, 1fr);
  }
}
.game__column {
  border-radius: 20px;
  background: #FFF;
  padding: 40px;
}
.game__title {
  word-break: break-all;
}
.game__text {
  margin: 32px 0 72px;
}
.game__img {
  width: -moz-fit-content;
  width: fit-content;
}
@media (max-width: 991px) {
  .game__img {
    margin: 0 auto;
  }
}
@media (max-width: 575px) {
  .game__img img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
}

.privacy {
  margin: 100px 0 120px;
}
@media (max-width: 575px) {
  .privacy {
    margin: 156px 0 120px;
  }
}
.privacy__title {
  margin-bottom: 40px;
}