@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,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: "Montserrat", sans-serif;
}

.lock {
  overflow: hidden;
}

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

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

.main {
  flex: 1 1 auto;
}

[class*=__text] {
  color: #FFF;
  font-size: 16px;
  font-weight: 400;
  line-height: 160%;
}

.title {
  color: #FFF;
  font-family: "Arial Black";
  font-size: clamp(40px, 7vw, 64px);
  font-weight: 900;
  line-height: 110%;
  text-transform: uppercase;
}

.btn {
  border-radius: 40px;
  background: #FFF;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 8px 8px 8px 22px;
  gap: 10px;
  color: #1C1B1C;
  text-align: center;
  font-size: 16px;
  font-weight: 900;
  line-height: 120%;
}

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

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

.white {
  color: #FFF !important;
}

.header {
  position: fixed;
  width: 100%;
  z-index: 60;
  top: 64px;
}
.header_bg {
  background: #1C1B1C;
}
.header__content {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header__content_pd {
  padding: 0 80px;
}
@media (max-width: 991px) {
  .header__content_pd {
    padding: 0 12px;
  }
}
@media (max-width: 575px) {
  .header__content {
    align-items: flex-start;
  }
}
.header__logo {
  position: relative;
  z-index: 40;
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 24px;
  font-weight: 900;
  background: linear-gradient(180deg, #96E8AD 0%, #E4F7B7 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.header__menu {
  display: flex;
  align-items: center;
  gap: 8px;
}
@media (max-width: 575px) {
  .header__menu {
    flex-direction: column;
    align-items: flex-start;
  }
}
.header__menu a {
  color: #1C1B1C;
  text-align: center;
  font-size: 16px;
  font-weight: 600;
  line-height: 120%;
  border-radius: 30px;
  background: #FFF;
  padding: 16px 22px;
}
.header__menu a:hover {
  background: linear-gradient(180deg, #96E8AD 0%, #E4F7B7 100%);
}

.footer {
  background: #1C1B1C;
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
  padding: 0 0 32px;
}
.footer__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}
.footer__address {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
}
.footer__address-txt {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #FFF;
  text-align: center;
  font-size: 14px;
  font-weight: 400;
  line-height: 150%;
}
.footer__menu {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
  justify-content: center;
}
.footer__menu a {
  color: #FFF;
  text-align: center;
  font-size: 16px;
  font-weight: 600;
  line-height: 120%;
  text-transform: capitalize;
}
.footer__social {
  display: flex;
  align-items: center;
  gap: 15px;
}
.footer__txt {
  color: #FFF;
  text-align: center;
  font-size: 14px;
  font-weight: 400;
  line-height: 160%;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding: 12px 0 0;
  width: 100%;
}

.cookies {
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 1000;
  padding: 64px;
  max-width: 850px;
  width: 100%;
  border-radius: 40px;
  background: #1C1B1C;
}
@media (max-width: 767px) {
  .cookies {
    padding: 20px;
  }
}
.cookies__column {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.cookies__text {
  color: #FFF;
  font-size: 14px;
  font-weight: 400;
  line-height: 160%;
}
.cookies__btns {
  display: flex;
  gap: 8px;
  margin: 32px 0 0;
}
@media (max-width: 767px) {
  .cookies__btns {
    flex-direction: column;
  }
}
.cookies__btn {
  color: #1C1B1C;
  text-align: center;
  font-size: 16px;
  font-weight: 900;
  line-height: 120%;
  text-transform: capitalize;
  border-radius: 30px;
  background: linear-gradient(180deg, #96E8AD 0%, #E4F7B7 100%);
  padding: 20px 0;
  width: 100%;
  border: 1px solid transparent;
}
.cookies__btn_sub {
  border: 1px solid #FFF;
  color: #FFF;
  background: transparent;
}

.hero {
  margin: 32px 0 0;
}
.hero__content {
  padding: 32px 80px;
  border-radius: 40px;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.2) 100%), url(/wp-content/themes/zyphorell/img/bg.webp) no-repeat center/cover;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
@media (max-width: 991px) {
  .hero__content {
    padding: 32px 12px;
  }
}
.hero__label {
  font-size: 16px;
  font-weight: 700;
  line-height: 160%;
  text-transform: uppercase;
  background: linear-gradient(180deg, #96E8AD 0%, #E4F7B7 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  padding-top: 147px;
}
@media (max-width: 575px) {
  .hero__label {
    padding-top: 233px;
  }
}
.hero__txt {
  color: #FFF;
  font-size: 16px;
  font-weight: 400;
  line-height: 160%;
  max-width: 363px;
  margin: 72px 0 72px auto;
}
@media (max-width: 991px) {
  .hero__txt {
    margin: 56px 0;
  }
}
.hero__title {
  margin-bottom: 32px;
}
.hero__row {
  display: flex;
  gap: 12px;
}
@media (max-width: 575px) {
  .hero__row {
    flex-direction: column;
  }
}
.hero__link {
  width: -moz-fit-content;
  width: fit-content;
}

.about {
  margin: 120px 0;
}
.about__content {
  display: flex;
  gap: 32px;
}
@media (max-width: 991px) {
  .about__content {
    flex-direction: column;
  }
}
.about__column {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.about__link {
  width: -moz-fit-content;
  width: fit-content;
}
.about__row {
  display: flex;
  gap: 24px;
}
@media (max-width: 575px) {
  .about__row {
    flex-wrap: wrap;
  }
}

.community {
  margin: 0 0 120px;
}
.community__content {
  border-radius: 40px;
  background: linear-gradient(180deg, #96E8AD 0%, #E4F7B7 100%);
  padding: 40px;
  display: flex;
  gap: 40px;
}
@media (max-width: 767px) {
  .community__content {
    flex-direction: column;
  }
}
.community__column {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.community__title, .community__text {
  color: #1C1B1C;
}
.community__link {
  width: -moz-fit-content;
  width: fit-content;
}
.community__img {
  max-width: 513px;
  width: 100%;
  border-radius: 40px;
  overflow: hidden;
  margin: 0 auto;
}
.community__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.catallog {
  margin: 195px 0 120px;
}
@media (max-width: 575px) {
  .catallog {
    margin: 297px 0 120px;
  }
}
.catallog__title {
  margin-bottom: 32px;
}
.catallog__row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  width: 100%;
}
.catallog__calumn {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.banner {
  margin: 32px 0 0;
}
.banner__content {
  height: 675px;
  border-radius: 40px;
  padding: 32px 80px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.banner__content_game-mania {
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.4) 100%), url(/wp-content/themes/zyphorell/img/bg-1.webp) no-repeat center/cover;
}
.banner__content_game-tiles {
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.4) 100%), url(/wp-content/themes/zyphorell/img/bg-2.webp) no-repeat center/cover;
}
.banner__content_game-anime {
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.4) 100%), url(/wp-content/themes/zyphorell/img/bg-3.webp) no-repeat center/cover;
}
.banner__content_game-tank {
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.4) 100%), url(/wp-content/themes/zyphorell/img/bg-4.webp) no-repeat center/cover;
}
.banner__content_game-scary {
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.4) 100%), url(/wp-content/themes/zyphorell/img/bg-5.webp) no-repeat center/cover;
}
.banner__content_game-dog {
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.4) 100%), url(/wp-content/themes/zyphorell/img/bg-6.webp) no-repeat center/cover;
}
@media (max-width: 991px) {
  .banner__content {
    padding: 32px 12px;
  }
}
@media (max-width: 575px) {
  .banner__content {
    height: 493px;
  }
}
.banner__title {
  margin-bottom: 32px;
}
.banner__link {
  width: -moz-fit-content;
  width: fit-content;
}

.about-game {
  margin: 120px 0;
}
.about-game__title {
  margin-bottom: 32px;
  text-align: center;
}
.about-game__text {
  text-align: center;
}

.our-games {
  margin: 0 0 120px;
}
.our-games_choose {
  margin: 120px 0;
}
.our-games_main {
  margin: 0;
}
.our-games__text {
  margin: 12px 0 32px;
}
.our-games__row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.our-games__row_four {
  grid-template-columns: repeat(4, 1fr);
}
@media (max-width: 1439px) {
  .our-games__row_four {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 767px) {
  .our-games__row {
    grid-template-columns: repeat(1, 1fr);
  }
}
.our-games__card {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 32px;
  border-radius: 32px;
}
.our-games__card_bg {
  background: linear-gradient(180deg, #96E8AD 0%, #E4F7B7 100%);
}
.our-games__img {
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}
.our-games__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.our-games__body {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.our-games__name {
  color: #1C1B1C;
  font-family: "Arial Black";
  font-size: 32px;
  font-weight: 900;
  line-height: 120%;
}
.our-games__txt {
  color: #1C1B1C;
  font-size: 16px;
  font-weight: 400;
  line-height: 160%;
}

.privacy {
  margin: 115px 0 0;
  padding: 64px 0;
}
.privacy__title {
  text-align: center;
  margin-bottom: 40px;
}