@charset "UTF-8";
@import url(https://fonts.googleapis.com/css?family=Playfair+Display:regular,500,600,700,800,900,italic,500italic,600italic,700italic,800italic,900italic);
@import url(https://fonts.googleapis.com/css?family=Nunito+Sans:200,300,regular,500,600,700,800,900,200italic,300italic,italic,500italic,600italic,700italic,800italic,900italic);
@import url(https://fonts.googleapis.com/css?family=Inter:100,200,300,regular,500,600,700,800,900&display=swap&subset=cyrillic-ext);
@font-face {
    font-family: "Gilroy-Bold";
    font-display: swap;
    src: url("../fonts/Gilroy-Bold.woff2") format("woff2"), url("../fonts/Gilroy-Bold.woff") format("woff");
    font-weight: 400;
    font-style: normal;
}
@font-face {
    font-family: "Gilroy-Medium";
    font-display: swap;
    src: url("../fonts/Gilroy-Medium.woff2") format("woff2"), url("../fonts/Gilroy-Medium.woff") format("woff");
    font-weight: 400;
    font-style: normal;
}
@font-face {
    font-family: "Gilroy-SemiBold";
    font-display: swap;
    src: url("../fonts/Gilroy-SemiBold.woff2") format("woff2"), url("../fonts/Gilroy-SemiBold.woff") format("woff");
    font-weight: 400;
    font-style: normal;
}
@font-face {
    font-family: "Gilroy-Regular";
    font-display: swap;
    src: url("../fonts/Gilroy-Regular.woff2") format("woff2"), url("../fonts/Gilroy-Regular.woff") format("woff");
    font-weight: 400;
    font-style: normal;
}
* {
    padding: 0px;
    margin: 0px;
    border: 0px;
}
*,
*:before,
*:after {
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}
aside,
nav,
footer,
header,
section {
    display: block;
}
html {
    font-size: 16px;
}
html,
body {
    height: 100%;
    min-width: 320px;
}
body {
    line-height: 1;
    font-family: "Nunito Sans";
    -ms-text-size-adjust: 100%;
    -moz-text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
}
input,
button,
textarea {
    font-family: "Nunito Sans";
    font-size: inherit;
}
input::-ms-clear {
    display: none;
}
button {
    cursor: pointer;
    background-color: inherit;
}
button::-moz-focus-inner {
    padding: 0;
    border: 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;
}
/*
&::-webkit-scrollbar {
  display: none;
}
*/
body {
    background-color: #f2f3f7;
    color: #2d2d2d;
}
body._lock {
    overflow: hidden;
}
.wrapper {
    width: 100%;
    min-height: 100%;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}
._container {
    max-width: 1670px;
    margin: 0 auto;
    padding: 0px 70px;
}
@media (max-width: 998px) {
    ._container {
        padding: 0px 12px;
    }
}
.button {
    display: inline-flex;
    padding: 0px 0px;
}
.button._fw {
    width: 100%;
}
.select {
    position: relative;
    color: #858FA4;
}
.select__item {
    position: relative;
}
.select__title {
    color: #000;
    cursor: pointer;
    border-radius: 4px;
}
.select__value {
    display: flex;
    font-size: 14px;
    height: 30px;
    padding: 0px 15px;
    align-items: center;
    justify-content: space-between;
    flex-direction: row-reverse;
    line-height: 140%;
    /* identical to box height, or 20px */
    text-align: right;
    color: #858FA4;
}
.select__value span {
    padding-right: 10px;
}
.select__value:before {
    content: "";
    display: inline-block;
    transition: all 0.3s ease 0s;
    width: 6px;
    height: 6px;
    background: url("../img/arrow.png") center/100% no-repeat;
}
.select__input {
    width: 100%;
    background-color: transparent;
    height: 100%;
}
.select__options {
    position: absolute;
    top: 29px;
    border-radius: 0 0 4px 4px;
    min-width: 100%;
    left: 0;
    border-top: 0;
    border-top: 0;
    font-size: 14px;
    padding: 10px 0px 5px 0px;
}
@media (max-width: 991.98px) {
    .select__options {
        font-size: 18px;
    }
}
.select__option {
    cursor: pointer;
    padding: 5px 15px;
    margin: 0px 0px 0px 0px;
}
@media (min-width: 992px) {
    .select__option:hover {
        background: #d9d9d9;
    }
}
.select._active {
    z-index: 5;
}
.select._active .select__value:before {
    transform: rotate(-180deg);
}
.select._active .select__options {
    display: block;
}
input[type=text],
input[type=email],
input[type=tel],
textarea {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}
input[type=text]:focus,
input[type=email]:focus,
input[type=tel]:focus,
textarea:focus {
    outline: none;
}
.input {
    border-radius: 0 !important;
    width: 100%;
    display: block;
    padding: 0px 20px;
}
textarea.input {
    resize: none;
    padding: 0px 0px;
}
.checkbox {
    position: relative;
}
.checkbox__input {
    position: absolute;
    width: 0;
    height: 0;
    opacity: 0;
    visibility: hidden;
}
.checkbox__input:checked+.checkbox__text:before {
    background: #fff url("../img/icons/check.svg") center no-repeat;
}
.checkbox__text {
    display: inline-flex;
    align-items: center;
    position: relative;
    font-size: 16px;
    color: #ffffff;
    letter-spacing: -0.3px;
    line-height: 1.25;
    cursor: pointer;
}
.checkbox__text:before {
    content: "";
    align-self: flex-start;
    margin: 0px 14px 0px 0px;
    flex: 0 0 20px;
    left: 0;
    top: 0;
    width: 20px;
    height: 18px;
    background: #fff;
    border: 1px solid #a7a9ac;
}
.checkbox a {
    color: #fff;
    text-decoration: underline;
}
@media (min-width: 992px) {
    .checkbox a:hover {
        text-decoration: none;
    }
}
.checkbox._error .checkbox__text:before {
    border: 1px solid #ee1212;
}
.options {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.options__item {
    position: relative;
    cursor: pointer;
}
.options__input {
    position: absolute;
    width: 0;
    height: 0;
    opacity: 0;
    left: 0;
    top: 0;
    visibility: hidden;
}
.options__input:checked+.options__text:after {
    transform: scale(1);
}
.options__text {
    display: inline-flex;
    align-items: center;
    position: relative;
    font-size: 16px;
    color: #ffffff;
    letter-spacing: -0.3px;
    line-height: 1.25;
}
.options__text:before {
    content: "";
    align-self: flex-start;
    margin: 0px 14px 0px 0px;
    flex: 0 0 20px;
    left: 0;
    top: 0;
    border-radius: 50%;
    width: 20px;
    height: 18px;
    background: #fff;
    border: 1px solid #a7a9ac;
}
.options__text:after {
    content: "";
    transition: all 0.3s ease 0s;
    transform: scale(0);
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #77243a;
    position: absolute;
    left: 5px;
    top: 4px;
}
.rating {
    display: flex;
    align-items: flex-end;
    font-size: 40px;
    line-height: 0.75;
    transition: opacity 0.3s ease 0s;
}
.rating.rating_sending {
    opacity: 0.2;
}
.rating.rating_set .rating__active,
.rating.rating_set .rating__item {
    cursor: pointer;
}
.rating__body {
    position: relative;
}
.rating__body::before {
    content: "★★★★★";
    display: block;
}
.rating__active {
    position: absolute;
    width: 0%;
    height: 100%;
    top: 0;
    left: 0;
    overflow: hidden;
}
.rating__active::before {
    content: "★★★★★";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    color: #ffd300;
}
.rating__items {
    display: flex;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}
.rating__item {
    flex: 0 0 20%;
    height: 100%;
    opacity: 0;
}
.rating__value {
    font-size: 50%;
    line-height: 1;
    padding: 0px 0px 0px 10px;
}
.quantity {
    width: 88px;
    height: 40px;
    display: flex;
    border: 1px solid rgba(166, 166, 166, 0.45);
}
.quantity__button {
    flex: 0 0 30px;
    position: relative;
    cursor: pointer;
}
.quantity__button::before, .quantity__button::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transition: all 0.3s ease 0s;
    margin: 0px 0px 0px -4.5px;
    background-color: #a6a6a6;
    width: 9px;
    height: 1px;
}
@media (min-width: 991.98px) {
    .quantity__button:hover::before, .quantity__button:hover::after {
        background-color: rgba(0, 0, 0, 0.5);
    }
}
.quantity__button_plus::before {
    transform: rotate(-90deg);
}
.quantity__input {
    flex: 1 1 auto;
}
.quantity__input input {
    height: 100%;
    color: #a6a6a6;
    font-size: 12px;
    width: 100%;
    text-align: center;
}
.row:after {
    display: block;
    content: "";
    clear: both;
}
.rub:after {
    content: "₽";
}
ol.counter {
    list-style-type: none;
    counter-reset: item;
}
ol.counter li {
    position: relative;
    padding: 0px 0px 0px 45px;
}
ol.counter li:before {
    counter-increment: item;
    content: counter(item);
    position: absolute;
    left: 0;
    top: 0;
    color: #818181;
    font-size: 14px;
    font-weight: 700;
    text-align: center;
    line-height: 26px;
    border-radius: 50%;
    width: 28px;
    height: 28px;
    border: 1px solid #4274bb;
}
.ellipsis {
    display: block;
    overflow: hidden;
    width: 100%;
    white-space: nowrap;
    text-overflow: ellipsis;
}
.es {
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}
.table {
    display: table;
    font-size: 0;
    width: 100%;
}
.trow {
    display: table-row;
}
.cell {
    display: table-cell;
}
.cell.full {
    width: 100%;
}
._ibg {
    position: relative;
}
._ibg img {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    object-fit: cover;
}
body.ie ._ibg {
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}
body.ie ._ibg img {
    width: 0;
    height: 0;
    opacity: 0;
    visibility: hidden;
}
._video {
    position: relative;
    overflow: hidden;
    height: 0;
    padding-bottom: 56.25%;
}
._video video,
._video iframe,
._video object,
._video embed {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.videobg video,
.videobg iframe,
.videobg object,
.videobg embed {
    position: fixed;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: -100;
    transform: translateX(-50%) translateY(-50%);
    background-size: cover;
}
._more-content {
    transition: all 0.3s ease 0s;
    overflow: hidden;
}
._more-link {
    cursor: pointer;
}
._more-link span {
    font-style: normal;
}
._more-link span:first-child {
    display: block;
}
._more-link span:last-child {
    display: none;
}
._more-link._active span {
    font-style: normal;
}
._more-link._active span:first-child {
    display: none;
}
._more-link._active span:last-child {
    display: block;
}
#map {
    background: url("../img/icons/loading.gif") center/50px no-repeat;
}
._swiper {
    overflow: hidden;
}
._swiper .swiper-wrapper {
    width: 100%;
    height: 100%;
    box-sizing: content-box;
    display: flex;
    position: relative;
}
._swiper.swiper-container-vertical .swiper-wrapper {
    flex-direction: column;
}
._swiper.swiper-container-autoheight .swiper-wrapper {
    align-items: flex-start;
}
.swiper-container-initialized .swiper-slide {
    flex-shrink: 0;
}
.swiper-container-android .swiper-slide,
.swiper-container-android .swiper-wrapper {
    transform: translate3d(0px, 0, 0);
}
.swiper-button-lock {
    display: none !important;
}
._tabs-block {
    display: none;
}
._tabs-block._active {
    display: block;
}
.mirror {
    transform: scale(-1, 1);
}
.nicescroll-rails {
    z-index: 1000 !important;
}
._custom-scroll {
    position: fixed;
    right: 0;
    top: 0;
    width: 3px;
    height: 100%;
    z-index: 1000;
}
._custom-scroll__line {
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 3px 0 0 3px;
    position: relative;
    left: 0;
    top: 0;
    width: 100%;
}
.popup {
    -webkit-overflow-scrolling: touch;
    z-index: 100;
    padding: 30px 10px;
    position: fixed;
    top: 0px;
    left: 0;
    width: 100%;
    height: 100%;
    transition: visibility 0.8s ease 0s;
    visibility: hidden;
}
.popup::before {
    content: "";
    background-color: rgba(0, 0, 0, 0.9);
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity 0.8s ease 0s;
}
.popup.show {
    visibility: visible;
    overflow: auto;
}
.popup.show::before {
    opacity: 1;
}
.popup.show .popup__body {
    transform: scale(1);
}
.popup._active {
    overflow: auto;
    visibility: visible;
}
.popup._active::before {
    opacity: 1;
}
.popup._active .popup__body {
    transition: all 0.3s ease 0.2s;
    transform: scale(1);
}
.popup__content {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 100%;
    flex: 1 1 auto;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.popup__body {
    transform: scale(0);
    transition: all 0.3s ease 0s;
    background-color: #fff;
    padding: 50px;
    width: 100%;
    max-width: 800px;
}
.popup__close {
    width: 15px;
    height: 15px;
    position: absolute;
    top: 0px;
    right: 0px;
    cursor: pointer;
    z-index: 30;
    background: url("../img/icons/close.svg") 0 0 no-repeat;
}
/*
//Burger
.icon-menu {
  display: none;
  @media (max-width: $md3+px) {
    display: block;
    position: absolute;
    top: 18px;
    right: 10px;
    width: 30px;
    height: 18px;
    cursor: pointer;
    z-index: 5;
    span {
      transition: all 0.3s ease 0s;
      top: calc(50% - 1px);
      left: 0px;
      position: absolute;
      width: 100%;
      height: 2px;
      background-color: #000;
      &:first-child {
        top: 0px;
      }
      &:last-child {
        top: auto;
        bottom: 0px;
      }
    }
    &._active {
      span {
        transform: scale(0);
        &:first-child {
          transform: rotate(-45deg);
          top: calc(50% - 1px);
        }
        &:last-child {
          transform: rotate(45deg);
          bottom: calc(50% - 1px);
        }
      }
    }
  }
}
*/
.page {
    flex: 1 1 auto;
}
.inp__wp._error span {
    display: block;
}
.inp__wp span {
    display: none;
}
._resp {
    overflow: hidden;
    transition: 0.3s;
}
.profile__container {
    padding-top: 100px;
    max-width: 1200px;
}
@media (max-width: 998px) {
    .profile__container {
        padding-top: 20px;
    }
}
.profile__wrapper {
    display: flex;
    flex-direction: column;
    gap: 50px;
}
.profile__item {
    display: grid;
    grid-template-columns: 76% 1fr;
    gap: 40px;
}
@media (max-width: 998px) {
    .profile__item {
        display: flex;
        flex-direction: column;
    }
}
.profile__content {
    background-color: #fff;
    border-radius: 20px;
    padding: 24px;
    font-size: 16px;
    position: relative;
}
@media (max-width: 998px) {
    .profile__content {
        padding: 20px 20px;
    }
}
.profile__anim {
    position: absolute;
    width: 80px;
}
@media (max-width: 998px) {
    .profile__anim {
        display: none;
    }
}
.profile__anim img {
    width: 100%;
}
.profile__anim_1 {
    top: 100px;
    left: 0;
    transform: translate(-80%);
    animation: 5s profile__anim_1 ease-in-out infinite alternate;
}
@keyframes profile__anim_1 {
    from {
        transform: translate(-80%, -80%);
    }
    to {
        transform: translate(-90%, -60%);
    }
}
.profile__anim_2 {
    top: 25%;
    right: 0;
    transform: translate(70%);
    animation: 5s profile__anim_2 ease-in-out infinite alternate;
}
@keyframes profile__anim_2 {
    from {
        transform: translate(70%, 70%);
    }
    to {
        transform: translate(80%, 50%);
    }
}
.profile__anim_3 {
    top: 50%;
    left: 0;
    transform: translate(-80%);
    animation: 5s profile__anim_3 ease-in-out infinite alternate;
}
@keyframes profile__anim_3 {
    from {
        transform: translate(-80%, -80%);
    }
    to {
        transform: translate(-90%, -60%);
    }
}
.profile__anim_4 {
    bottom: 5%;
    right: 0;
    transform: translate(80%);
    animation: 5s profile__anim_4 ease-in-out infinite alternate;
}
@keyframes profile__anim_4 {
    from {
        transform: translate(80%, 80%);
    }
    to {
        transform: translate(90%, 60%);
    }
}
.profile__title {
    font-size: 40px;
    font-weight: 700;
}
@media (max-width: 998px) {
    .profile__title {
        font-size: 30px;
        text-align: center;
    }
}
@media (max-width: 500px) {
    .profile__title {
        font-size: 30px;
    }
}
.profile__img {
    margin-top: 45px;
}
@media (max-width: 500px) {
    .profile__img {
        margin-top: 30px;
    }
}
.profile__img img,
.profile__img video {
    width: 100%;
    border-radius: 20px;
}
@media (max-width: 500px) {
    .profile__img img,
    .profile__img video {
        border-radius: 10px;
    }
}
.profile__text {
    margin-top: 50px;
    line-height: 1.66;
    font-style: italic;
}
@media (max-width: 998px) {
    .profile__text {
        margin-top: 40px;
    }
}
.profile__text a {
    color: #0082ff;
    text-decoration-line: underline;
}
.profile__head {
    line-height: 1.66;
    margin-top: 30px;
    font-weight: 700;
}
@media (max-width: 998px) {
    .profile__head {
        margin-top: 20px;
    }
}
.profile__list {
    line-height: 1.66;
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}
@media (max-width: 998px) {
    .profile__list {
        margin-top: 20px;
        gap: 20px;
    }
}
.profile__list li {
    position: relative;
    padding-left: 30px;
}
@media (max-width: 998px) {
    .profile__list li {
        padding-left: 20px;
    }
}
.profile__list li span {
    font-weight: 700;
}
.profile__list li::before {
    position: absolute;
    top: 12px;
    left: 10px;
    content: "";
    width: 6px;
    height: 6px;
    background: #000;
    border-radius: 50%;
}
@media (max-width: 998px) {
    .profile__list li::before {
        left: 5px;
        top: 11px;
    }
}
.profile__last {
    font-weight: 700;
    margin-top: 30px;
}
.users-profile {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-top: 30px;
}
@media (max-width: 998px) {
    .users-profile {
        grid-template-columns: 1fr;
    }
}
.users-profile__item {
    display: grid;
    grid-template-columns: 64px 1fr;
    gap: 16px;
    align-items: center;
}
.users-profile__img img {
    width: 100%;
}
.users-profile__info {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.users-profile__name {
    font-family: "Playfair Display";
    font-size: 18px;
    font-style: italic;
}
.users-profile__text {
    color: #787878;
    max-width: 250px;
    font-size: 12px;
}
.cifre-profile {
    display: flex;
    flex-direction: column;
    gap: 80px;
    margin-top: 30px;
}
@media (max-width: 998px) {
    .cifre-profile {
        margin-top: 0;
    }
}
.cifre-profile__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}
@media (max-width: 998px) {
    .cifre-profile__item {
        display: none;
    }
    .cifre-profile__item.active {
        display: flex;
    }
}
.cifre-profile__cifre {
    font-size: 16px;
    font-weight: 700;
}
.cifre-profile__cifre span {
    font-size: 72px;
}
.cifre-profile__cifre b {
    font-size: 40px;
}
.cifre-profile__text {
    margin-top: 22px;
}
.footer {
    position: relative;
}
.footer:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: block;
    z-index: 0;
    background: #000;
    opacity: 0.5;
}
.footer__container div {
    position: relative;
}
.ecom-profile {
    background-image: url(../img/rebg.png);
    background-size: cover;
    background-position: center center;
    display: flex;
    flex-direction: column;
    gap: 24px;
    padding: 24px;
    align-items: center;
    color: #fff;
    border-radius: 20px;
    margin-top: 100px;
}
.ecom-profile.ecom-new {
    background-image: url(../img/bg.jpg);
    padding-top: 50px;
    padding-bottom: 50px;
}
.ecom-profile.ecom-new .ecom-profile__name {
    text-align: center;
}
@media (max-width: 998px) {
    .cifre-profile__cifre span {
        font-size: 40px;
    }
    .ecom-profile {
        margin-top: 50px;
    }
}
.ecom-profile__season {
    font-size: 24px;
}
.ecom-profile__name {
    display: flex;
    flex-direction: column;
    max-width: 400px;
    font-size: 32px;
    font-weight: 700;
    width: 100%;
}
@media (max-width: 998px) {
    .ecom-profile__name {
        font-size: 24px;
    }
}
.ecom-profile__name span {
    font-weight: 400;
    font-family: "Playfair Display";
    width: max-content;
    display: flex;
    margin-left: auto;
    align-items: center;
    gap: 10px;
    font-style: italic;
}
.ecom-profile__btn a {
    padding: 10px 24px;
    display: flex;
    width: max-content;
    align-items: center;
    border-radius: 8px;
    background: #ffdc62;
    font-size: 18px;
    gap: 12px;
}
.footer {
    margin-top: 100px;
    background-image: url(../img/footer.png);
    color: #fff;
}
.footer__container {
    padding-top: 50px;
    padding-bottom: 50px;
    display: flex;
    justify-content: space-between;
}
.footer__container._custom-container {
    max-width: 1200px;
    position: relative;
}
.footer__container._custom-container .footer__right {
    gap: 80px;
}
@media (max-width: 1200px) {
    .footer__container._custom-container .footer__right {
        gap: 50px;
    }
}
.footer__container._custom-container .footer__list {
    gap: 60px;
    row-gap: 30px;
}
@media (max-width: 1200px) {
    .footer__container._custom-container .footer__list {
        gap: 30px;
        row-gap: 30px;
    }
}
@media (max-width: 998px) {
    .footer__container {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 50px;
    }
}
.footer__left {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.footer__left a {
    font-weight: 700;
    color: #0082ff;
}
.footer__right {
    display: flex;
    gap: 160px;
}
@media (max-width: 1300px) {
    .footer__right {
        gap: 100px;
    }
}
@media (max-width: 998px) {
    .footer__right {
        flex-direction: column;
        gap: 20px;
    }
}
.footer__list {
    display: grid;
    grid-template-columns: max-content max-content;
    flex-wrap: wrap;
    gap: 160px;
    row-gap: 24px;
}
@media (max-width: 1300px) {
    .footer__list {
        gap: 100px;
        row-gap: 24px;
    }
}
@media (max-width: 998px) {
    .footer__list {
        grid-template-columns: 1fr 1fr;
        gap: 15px;
        row-gap: 24px;
    }
}
.footer__list span {
    font-family: "Playfair Display";
    font-size: 24px;
    font-style: italic;
}
@media (max-width: 998px) {
    .footer__list span {
        font-size: 20px;
    }
}
#adfox_169417817496686084 {
    opacity: 0;
    pointer-events: none;
    position: absolute;
}
.footer__list p {
    color: #bbb;
    margin-top: 8px;
}
.home {
    position: relative;
    background-image: url(../img/bg.jpg);
    background-size: cover;
    color: #fff;
    min-height: 100vh;
}
.home__container {
    position: relative;
}
body.animate .anima:nth-child(1) {
    transition-delay: 0.1s
}
body.animate .column:first-child .item.anima {
    transition-delay: 0.1s
}
body.animate .anima:nth-child(2) {
    transition-delay: 0.2s
}
body.animate .anima:nth-child(3) {
    transition-delay: 0.3s
}
body.animate .anima:nth-child(4) {
    transition-delay: 0.4s
}
body.animate .anima:nth-child(5) {
    transition-delay: 0.5s
}
body.animate .anima:nth-child(6) {
    transition-delay: 0.6s
}
body.animate .anima:nth-child(7) {
    transition-delay: 0.7s
}
body.animate .anima:nth-child(8) {
    transition-delay: 0.8s
}
body.animate .anima:nth-child(9) {
    transition-delay: 0.9s
}
body.animate .anima:nth-child(10) {
    transition-delay: 1.0s
}
body.animate .anima:nth-child(12) {
    transition-delay: 1.2s
}
body.animate .anima:nth-child(13) {
    transition-delay: 1.3s
}
body.animate .anima:nth-child(14) {
    transition-delay: 1.4s
}
body.animate .anima:nth-child(15) {
    transition-delay: 1.5s
}
body.animate .anima:nth-child(16) {
    transition-delay: 1.6s
}
body.animate .anima:nth-child(17) {
    transition-delay: 1.7s
}
body.animate .anima:nth-child(18) {
    transition-delay: 1.8s
}
body.animate .anima:nth-child(19) {
    transition-delay: 1.9s
}
body.animate .anima:nth-child(20) {
    transition-delay: 2s
}
.anima {
    transition: 0s;
    transform: translate(0, 10%);
    opacity: 0
}
body.animate .anima {
    transition: 0.75s;
    transform: translate(0, 0);
    opacity: 1
}
.rv {
    position: relative;
    opacity: 0
}
.rv.active {
    opacity: 1
}
.active.fb {
    animation: fb .75s ease-in-out
}
@keyframes fb {
    0% {
        transform: translateY(10px);
        opacity: 0
    }
    100% {
        transform: translateY(0);
        opacity: 1
    }
}
.home__block {
    position: absolute;
    right: 32px;
    top: 32px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.17);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    z-index: 3;
    width: 460px;
    padding: 24px 32px;
    color: #fff;
    display: flex;
    flex-direction: column;
    gap: 24px; z-index: 9;
}
@media (max-width: 1400px) {
    .home__block {
        width: 360px;
    }
}
@media (max-width: 998px) {
    .home__block {
       
        width: max-content;
        padding: 0;
        backdrop-filter: blur(0px);
        -webkit-backdrop-filter: blur(0px);
        background: transparent;
        padding: 0;
        right: 16px;
    }
}
.home__season {
    font-family: "Playfair Display";
    font-size: 24px;
    font-style: italic;
}
@media (max-width: 998px) {
    .home__season {
        display: none;
    }
}
.home__name {
    display: flex;
    flex-direction: column;
    max-width: 400px;
    font-size: 32px;
    font-weight: 700;
    width: 100%;
}
@media (max-width: 998px) {
    .home__name {
        font-size: 24px;
    }
}
@media (max-width: 998px) {
    .home__name {
        display: none;
    }
}
.home__name span {
    font-weight: 400;
    font-family: "Playfair Display";
    width: max-content;
    display: flex;
    margin-left: auto;
    align-items: center;
    gap: 10px;
    font-style: italic;
}
.home__link a {
    padding: 10px 24px;
    display: flex;
    width: max-content;
    align-items: center;
    border-radius: 8px;
    background: #ffdc62;
    font-size: 18px;
    gap: 12px;
    margin-left: auto;
    color: #000;
    font-weight: 500;
}
.home__content {
    position: relative;
    z-index: 4;
    padding-top: 70px;
    padding-bottom: 100px;
}
@media (max-width: 1400px) {
    .home__content {
        padding-top: 60px;
        padding-bottom: 80px;
    }
}
@media (max-width: 998px) {
    .home__link a:before {
        content: '1 сезон';
        font-size: 18px;
    }
    .home__link a {
        font-size: 0;
    }
    .home__content {
        padding-bottom: 0px;
        padding-top: 35px;
    }
}
.home__top {
    width: 280px;
    display: block;
}
.home__top img {
    width: 100%;
}
.home__top img:nth-child(2) {
    display: none;
}
@media (max-width: 998px) {
    .home__top {
        width: 120px
    }
    .home__top img {
        width: 100px;
    }
    .home__top img:nth-child(2) {
        display: block;
        height: 32px;
    }
    .home__top img:nth-child(1) {
        display: none;
    }
}
.home__title {
    margin-top: 90px;
    font-size: 80px;
    font-weight: 700;
    display: flex;
    flex-direction: column;
}
@media (max-width: 1400px) {
    .home__title {
        font-size: 60px;
        margin-top: 70px;
    }
}
@media (max-width: 998px) {
    .home__title {
        font-size: 36px;
        margin-top: 40px;
    }
}
.home__title span {
    font-family: "Playfair Display";
    font-style: italic;
    font-weight: 400;
    position: relative;
}
@media (max-width: 998px) {
    .home__title span {
        max-width: max-content;
        margin-left: auto;
    }
}
.home__title span::before {
    position: absolute;
    top: 70%;
    left: -20px;
    content: "";
    width: 50vw;
    background-color: #fff;
    height: 3px;
    transform: translate(-100%, -50%);
}
@media (max-width: 998px) {
    .home__title span::before {
        width: 15vw;
        height: 2px;
    }
}
.home__text {
    max-width: 588px;
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 40px;
    font-size: 18px;
    line-height: 1.6;
}
@media (max-width: 1400px) {
    .home__text {
        max-width: 500;
        font-size: 16px;
        gap: 30px;
    }
}
.home__arr {
    margin-top: 150px;
    display: block;
    width: max-content;
    animation: Header_bounce__MEfIc 3s infinite;
}
@media (max-width: 1400px) {
    .home__arr {
        margin-top: 100px;
    }
}
@keyframes Header_bounce__MEfIc {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
    100% {
        transform: translateY(0);
    }
}
.home__img {
    position: absolute;
    width: 70%;
    bottom: 0;
    right: 0;
}
.home__img img {
    width: 100%;
}
.profile__readmore{display: none;}
@media (max-width: 998px) {
.profile__readmore{color: #0082ff;
    text-align: center;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 27px;
    margin-top: -10px;
    padding: 15px 0 0;display: block;}
    .profile__last{display: none;}
    .profile__list:before {
        content: "";
        position: absolute;
        width: 100%;
        height: 20px;
        top: 0;
        background: linear-gradient(180deg, transparent, #fff);
        z-index: 2;
    }
    .profile__list {
        margin-top: 20px;
        gap: 20px;
        height: 20px;
        overflow: hidden;
        position: relative;
    }
    .profile__list.active:before{display: none;}
    .profile__list.active{height: auto;}
    .profile__list.active + .profile__readmore{display: none;}
    .profile__list.active + .profile__readmore + .profile__last{display: block;}
    .footer{margin-top: 30px;}
    .home__text {
        margin-top: 30px;
        line-height: 120%;
    }
    .home__arr {
        margin-top: 60px;
        position: absolute;
        bottom: -100px;
    }
    .home__img {
        width: 100%;
        position: relative;
        display: flex;
        justify-content: end;
    }
    .home__img img {
        width: 130%;
    }
}
}




.card_video {
    margin-top: 48px;
    height: 600px
}

@media(max-width: 1920px) {
    .card_video {
        margin-top:32px;
        height: 410px;
    }
}

@media(max-width: 650px) {
    .card_video {
        height:340px
    }
}

@media(max-width: 540px) {
    .card_video {
        height:280px
    }
}

@media(max-width: 475px) {
    .card_video {
        height:245px
    }
}

@media(max-width: 435px) {
    .card_video {
        height:215px
    }
}

@media(max-width: 375px) {
    .card_video {
        height:190px
    }
}

@media(max-width: 320px) {
    .card_video {
        height:160px
    }
}