@charset "UTF-8";
.js_reg_auth {
  display: none !important;
}

html {
  scroll-behavior: smooth;
}

body {
  background: rgb(37, 37, 37);
}

.actual {
  margin-top: 20px;
}
.actual h2 {
  color: white;
  font-size: 28px;
}

.blur {
  filter: blur(5px);
  cursor: pointer;
}
.blur::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  z-index: 5;
  pointer-events: auto;
}

.auth-block .auth-link {
  color: white;
}

.btn-about {
  background: rgb(124, 150, 86);
  padding: 5px 30px;
  color: white;
  border: none;
  border-radius: 20px;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}
.btn-about, .btn-about:link, .btn-about:visited, .btn-about:hover, .btn-about:active, .btn-about:focus {
  color: white;
  text-decoration: none;
  outline: none;
}
.btn-about:hover {
  background: rgb(132, 164, 86);
}

.wrapper {
  max-width: 1400px;
  margin: 0 auto;
}

.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 50px;
}
.header__logo {
  width: 420px;
  height: auto;
}

.poster-swiper {
  width: 100%;
  height: auto;
  border-radius: 30px;
}

.main {
  display: grid;
  grid-template-columns: 1fr 0.7fr;
  align-items: start;
}
.main__text {
  display: flex;
  flex-direction: column;
  gap: 10px;
  color: white;
  margin-bottom: 50px;
}
.main__description {
  color: white;
  display: inline-flex;
  align-items: center;
  gap: 20px;
  cursor: pointer;
}
.main__description img {
  width: 157px;
  height: auto;
}
.main__description .shine-img {
  position: relative;
  display: inline-block;
  overflow: hidden;
  border-radius: 50%;
}
.main__description .shine-img .shine-img::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: radial-gradient(circle, transparent 60%, rgba(0, 0, 0, 0.2) 75%, rgba(0, 0, 0, 0.4) 90%, rgba(0, 0, 0, 0.6) 100%);
}
.main__description {
  /* Размытие краёв по горизонтали */
}
.main .shine-img img {
  display: block;
}
.main {
  /* Сам блик */
}
.main .shine-img::after {
  content: "";
  position: absolute;
  top: 0;
  left: -60%;
  width: 35%;
  height: 100%;
  background: linear-gradient(75deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.15) 45%, rgba(255, 255, 255, 0.4) 50%, rgba(255, 255, 255, 0.15) 55%, rgba(255, 255, 255, 0) 100%);
  filter: blur(8px);
  transform: skewX(2deg);
  animation: shine 4s ease-in-out infinite;
}
@keyframes shine {
  0% {
    left: -60%;
  }
  100% {
    left: 120%;
  }
}

.left-block .h-animate {
  display: inline-block;
  animation: gentlePulse 2s ease-in-out infinite;
}
.left-block .h-animate::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: white;
  transition: width 0.3s ease;
}
@keyframes gentlePulse {
  0% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.85;
    transform: scale(1.02);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
.left-block h5 {
  color: white;
  margin-bottom: 1rem;
}
.left-block h6 {
  color: white;
  margin-bottom: 1rem;
}

.right-block {
  width: 100%;
  min-width: 0;
  position: relative;
}

.custom-swiperMain {
  padding: 20px !important;
  width: 100%;
  position: relative;
  font-size: 16px;
  overflow: hidden;
}
.custom-swiperMain a {
  text-decoration: none;
}
.custom-swiperMain a:hover {
  color: black;
}
.custom-swiperMain p {
  margin: 0;
}
.custom-swiperMain .swiper-slideMain {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 100%;
  height: auto;
  background-color: transparent;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  border-radius: 30px;
}
.custom-swiperMain .card__image {
  border-top-left-radius: 30px;
  border-top-right-radius: 30px;
}
.custom-swiperMain .card__points {
  margin-top: 8px;
  font-size: 0.8em;
  font-weight: 500;
  color: rgb(144, 144, 144);
}
.custom-swiperMain .card__text {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 0.5rem;
  height: auto;
  padding: 1.2em 1.2em 0.5em 1.2em;
  line-height: 1.2;
  background-color: white;
  border-bottom-left-radius: 30px;
  border-bottom-right-radius: 30px;
}
.custom-swiperMain .swiper-button-prevMain,
.custom-swiperMain .swiper-button-nextMain {
  display: none;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: #fff;
  color: #000;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
  align-items: center;
  justify-content: center;
}
.custom-swiperMain .swiper-button-prevMain:after,
.custom-swiperMain .swiper-button-nextMain:after {
  font-size: 1em;
  font-weight: bold;
}
.custom-swiperMain .swiper-button-prevMain {
  left: 0;
}
.custom-swiperMain .swiper-button-nextMain {
  right: 0;
}
.custom-swiperMain .text {
  font-weight: 400;
  font-size: 1em;
  font-family: var(--font-family-inter);
}

.card-video {
  width: 100%;
  height: 100%;
  display: block;
  border-radius: 30px 30px 0 0;
}

.custom-swiper {
  padding: 20px !important;
  width: 100%;
  font-size: 16px;
}
.custom-swiper a {
  text-decoration: none;
}
.custom-swiper a:hover {
  color: black;
}
.custom-swiper p {
  margin: 0;
}
.custom-swiper .swiper-slide {
  display: flex;
  flex-direction: column;
  width: 400px;
  height: auto;
  background-color: transparent;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  border-radius: 30px;
}
.custom-swiper .card__image {
  border-top-left-radius: 30px;
  border-top-right-radius: 30px;
}
.custom-swiper .card__points {
  margin-top: 8px;
  font-size: 0.8em;
  font-weight: 500;
  color: rgb(144, 144, 144);
}
.custom-swiper .card__text {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 0.5rem;
  height: 100%;
  padding: 1.2em 1.2em 0.5em 1.2em;
  line-height: 1.2;
  background-color: white;
  border-bottom-left-radius: 30px;
  border-bottom-right-radius: 30px;
  cursor: pointer;
}
.custom-swiper .swiper-button-prev,
.custom-swiper .swiper-button-next {
  position: absolute;
  top: 66%;
  transform: translateY(-50%);
  z-index: 10;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: rgb(124, 150, 86);
  color: white;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
}
.custom-swiper .swiper-button-prev:after,
.custom-swiper .swiper-button-next:after {
  font-size: 1em;
  font-weight: bold;
}
.custom-swiper .swiper-button-prev {
  left: 0;
}
.custom-swiper .swiper-button-next {
  right: 0;
}
.custom-swiper .text {
  font-weight: 400;
  font-size: 1em;
  font-family: var(--font-family-inter);
}

.modal-description {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 9999;
  justify-content: center;
  align-items: center;
}
.modal-description__content {
  background-color: #fff;
  padding: 2rem;
  border-radius: 16px;
  width: 90%;
  max-width: 1120px;
  height: auto;
  max-height: 80vh;
  min-height: 200px;
  position: relative;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  overflow-y: auto;
  overflow-x: hidden;
}
.modal-description__close {
  position: absolute;
  top: 12px;
  right: 16px;
  font-size: 1.5rem;
  cursor: pointer;
}

.pagination .prev-page, .pagination .next-page {
  color: white !important;
}

@media (max-width: 1200px) {
  .main {
    grid-template-columns: repeat(1, 1fr);
  }
}
@media (max-width: 992px) {
  .modal-description__content {
    max-width: 90vw;
  }
}
@media (max-width: 768px) {
  .auth-link {
    display: none;
  }
}
@media (max-width: 576px) {
  .header__logo {
    width: 250px;
  }
  .custom-swiper .card__text p {
    font-size: 1em;
  }
}

/*# sourceMappingURL=style.css.map */
