@import url("https://fonts.googleapis.com/css2?family=Kulim+Park:ital,wght@0,200;0,300;0,400;0,600;0,700;1,200;1,300;1,400;1,600;1,700&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: "SF Pro Display";
  background: #F8F5F0;
}

.lock {
  overflow: hidden;
}

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

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

.main {
  flex: 1 1 auto;
}

.title {
  font-size: clamp(32px, 4vw, 44px);
  color: #1F392C;
  font-weight: 700;
  line-height: 120%;
}

[class*=__text] {
  color: #1F392C;
  font-size: 18px;
  font-weight: 400;
  line-height: 120%;
}

.btn {
  text-align: center;
  white-space: nowrap;
  width: -moz-fit-content;
  width: fit-content;
  display: inline-block;
  color: #1F392C;
  font-size: 18px;
  font-weight: 510;
  line-height: 19.048px;
  letter-spacing: 0.18px;
  border-radius: 79px;
  background: #FF60E6;
  padding: 10px 25px;
}

.p-80 {
  padding: 80px 0;
}
@media (max-width: 767px) {
  .p-80 {
    padding: 40px 0;
  }
}

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

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

@font-face {
  font-family: "SF Pro Display";
  src: url(/wp-content/themes/morzaelash/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/morzaelash/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/morzaelash/assets/fonts/SFProDisplay-Medium.woff2) format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
.header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 60;
  background: #F8F5F0;
}
.header__content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 13px 0;
}
.header__logo {
  position: relative;
  z-index: 40;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #1F392C;
  font-family: "Kulim Park";
  font-size: 26px;
  font-weight: 700;
  line-height: 19px;
}
@media (max-width: 767px) {
  .header__link {
    display: none;
  }
}

@media (max-width: 767px) {
  .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: #1F392C;
  }
  .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%);
  }
  .menu__icon_active::before {
    top: 50%;
    transform: rotate(-45deg) translate(0px, -50%);
  }
  .menu__icon_active::after {
    bottom: 50%;
    transform: rotate(45deg) translate(0px, 50%);
  }
}
@media (max-width: 767px) {
  .menu__body {
    display: block;
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    padding: 100px 15px 0;
    background: #F8F5F0;
    transition: left 0.3s ease 0s;
    overflow: auto;
  }
  .menu__body_active {
    left: 0;
  }
  .menu__body::before {
    content: "";
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 16;
  }
}
.menu__list {
  display: flex;
  align-items: center;
  gap: 24px;
}
@media (max-width: 767px) {
  .menu__list {
    flex-direction: column;
  }
}
.menu__item_mob {
  display: none;
}
@media (max-width: 767px) {
  .menu__item_mob {
    display: block;
  }
}
.menu__link {
  color: #1F392C;
  font-size: 18px;
  font-weight: 510;
  line-height: 19.048px;
}

.footer {
  background: #000;
  background: url(/wp-content/themes/morzaelash/assets/img/f-bg.webp) no-repeat bottom/cover;
  padding-top: 40px;
  padding-bottom: 359px;
}
@media (max-width: 767px) {
  .footer {
    background: url(/wp-content/themes/morzaelash/assets/img/f-bg-mob.webp) no-repeat bottom/cover;
    padding-bottom: 159px;
  }
}
.footer__content {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
@media (max-width: 767px) {
  .footer__content {
    gap: 20px;
  }
}
.footer__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .footer__row {
    flex-direction: column;
    gap: 20px;
  }
}
.footer__menu {
  display: flex;
  align-items: center;
  gap: 24px;
}
.footer__menu a {
  color: #1F392C;
  font-size: 18px;
  font-weight: 500;
  line-height: 19.048px;
}
@media (max-width: 575px) {
  .footer__menu {
    gap: 10px;
  }
}
@media (max-width: 429px) {
  .footer__menu {
    flex-direction: column;
  }
}
.footer__address {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}
.footer__address a,
.footer__address p {
  color: #FFF;
  text-align: center;
  font-size: 18px;
  font-weight: 500;
  line-height: 19.048px;
  letter-spacing: 0.18px;
  border-radius: 79px;
  background: #FF60E6;
  padding: 14px 30px;
}
@media (max-width: 575px) {
  .footer__address a,
  .footer__address p {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .footer__address {
    flex-direction: column;
  }
}
.footer__social {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.footer__text {
  text-align: center;
  color: #202020;
  font-size: 16px;
  font-weight: 400;
}

.cookies {
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 1000;
  padding: 40px;
  max-width: 600px;
  width: 100%;
  border-radius: 13px;
  background: #FFADF2;
  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: 20px;
}
.cookies__title {
  color: #1F392C;
  font-size: 32px;
  font-weight: 500;
  line-height: 120%;
  letter-spacing: -0.32px;
}
.cookies__btns {
  display: flex;
  align-items: center;
  gap: 20px;
  width: -moz-fit-content;
  width: fit-content;
}

.hero {
  background: url(/wp-content/themes/morzaelash/assets/img/bg.webp) no-repeat center/cover;
}
@media (max-width: 767px) {
  .hero {
    background: url(/wp-content/themes/morzaelash/assets/img/bg-mob.webp) no-repeat center/cover;
  }
}
.hero__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  max-width: 775px;
  margin: 0 auto;
}
.hero__title {
  color: #1F392C;
  text-align: center;
  font-size: clamp(40px, 6vw, 80px);
  font-weight: 700;
}

.about {
  padding: 50px 0;
}
.about__content {
  display: flex;
  flex-direction: column;
  gap: 50px;
}
.about__title {
  position: relative;
}
.about__title::before {
  position: absolute;
  content: "";
  background: url(/wp-content/themes/morzaelash/assets/img/title-line.svg) no-repeat center/contain;
  width: 324.079px;
  height: 42.232px;
  bottom: -30px;
  left: 50%;
}
@media (max-width: 767px) {
  .about__title::before {
    transform: translateX(-50%);
  }
}
@media (max-width: 429px) {
  .about__title::before {
    bottom: -30px;
  }
}
.about__row {
  display: flex;
  border-radius: 19px;
  background: #FFF;
}
@media (max-width: 767px) {
  .about__row {
    flex-direction: column;
  }
}
.about__column {
  padding: 60px 26px 60px 50px;
  min-width: 420px;
  width: 100%;
}
@media (max-width: 767px) {
  .about__column {
    padding: 20px;
    min-width: 100%;
  }
}
.about__title-sub {
  color: #1F392C;
  font-size: 38px;
  font-weight: 590;
  margin-bottom: 13px;
}
@media (max-width: 767px) {
  .about__title-sub {
    font-size: 30px;
  }
}
.about .swiper-slide {
  width: -moz-fit-content;
  width: fit-content;
}
.about__card {
  border-radius: 13px;
  background: #FF60E6;
  padding: 20px;
  max-width: 280px;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.about__card_bg {
  background: #FFADF2;
}
@media (max-width: 767px) {
  .about__card {
    width: 100%;
  }
}
.about__item {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}
.about__name {
  color: #1F392C;
  font-size: 18px;
  font-weight: 500;
  line-height: 120%;
  letter-spacing: -0.18px;
}
.about__text {
  color: #1F392C;
  font-size: 14px;
  line-height: 140%;
}

.advertising {
  background: url(/wp-content/themes/morzaelash/assets/img/bg-1.webp) no-repeat center/cover;
  position: relative;
  z-index: 2;
}
@media (max-width: 767px) {
  .advertising {
    background: url(/wp-content/themes/morzaelash/assets/img/bg-1-mob.webp) no-repeat center/cover;
  }
}
@media (max-width: 575px) {
  .advertising {
    background: url(/wp-content/themes/morzaelash/assets/img/bg-1-mob.webp) no-repeat center/contain;
  }
}
.advertising__content {
  max-width: 549px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.advertising__title-sub {
  color: #1F392C;
  text-align: center;
  font-size: 24px;
  font-weight: 700;
}
.advertising__img {
  position: absolute;
  left: 0;
  top: -106px;
  z-index: -1;
}
@media (max-width: 767px) {
  .advertising__img {
    display: none;
  }
}

.info__content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.info__row {
  display: flex;
  align-items: center;
  gap: 60px;
}
@media (max-width: 991px) {
  .info__row {
    gap: 20px;
  }
}
@media (max-width: 767px) {
  .info__row {
    flex-direction: column;
  }
}
@media (max-width: 767px) {
  .info__row_reverse {
    flex-direction: column-reverse;
  }
}
.info__column {
  display: flex;
  flex-direction: column;
  gap: 13px;
}
.info__name {
  color: #1F392C;
  font-size: 30px;
  font-weight: 700;
}
@media (max-width: 767px) {
  .info__img img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
}

.players__content {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
@media (max-width: 767px) {
  .players__content {
    gap: 20px;
  }
}
.players__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 575px) {
  .players__row {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
}
.players__txt {
  color: #1F392C;
  font-size: 25px;
  font-weight: 700;
}
.players__arrows {
  display: flex;
  align-items: center;
  gap: 13px;
}
.players__next, .players__prev {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 32px;
  border: 1px solid #FF60E6;
}
.players__card {
  display: flex;
  flex-direction: column;
  gap: 13px;
  border-radius: 13px;
  background: #FF60E6;
  padding: 20px;
  max-width: 405px;
  width: 100%;
  height: 245px;
}
.players__card_bg {
  background: #FFADF2;
}
@media (max-width: 575px) {
  .players__card {
    max-width: 390px;
  }
}
@media (max-width: 429px) {
  .players__card {
    max-width: 320px;
  }
}
.players .about__text {
  color: #1F392C;
  font-size: 18px;
  font-weight: 400;
  line-height: 120%;
}
.players .swiper-slide {
  width: -moz-fit-content;
  width: fit-content;
}

.catalog__content {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
@media (max-width: 767px) {
  .catalog__content {
    gap: 20px;
  }
}
.catalog__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  max-width: 710px;
  width: 100%;
  margin: 0 auto;
}
.catalog__grid img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 575px) {
  .catalog__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.product__content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.product__row {
  display: flex;
  align-items: center;
  gap: 60px;
}
@media (max-width: 767px) {
  .product__row {
    flex-direction: column-reverse;
    gap: 20px;
  }
}
.product__column {
  display: flex;
  flex-direction: column;
  gap: 13px;
}
@media (max-width: 575px) {
  .product__img img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
}

.policy {
  margin: 65px 0 0;
}
@media (max-width: 767px) {
  .policy {
    margin: 58px 0 0;
  }
}
.policy__content {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
@media (max-width: 767px) {
  .policy__content {
    gap: 20px;
  }
}
.policy__column {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.policy ul li {
  margin-left: 20px;
  list-style: disc;
  color: #1F392C;
  font-size: 18px;
  font-weight: 400;
  line-height: 120%;
}