@import url(https://fonts.googleapis.com/css2?family=Manrope:wght@200..800&display=swap);

* {
    margin: 0;
    padding: 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box
}
.material-card__images-overlay {
    position: relative;
    width: 100%;
    height: auto;
}

.material-card__images-overlay img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
}

.bg-img {
    z-index: 1;
    opacity: 0.5;
}

.fg-img {
    z-index: 2;
}
.pagination {
    display: flex;
    gap: 6px;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
    font-family: inherit;
}
.product.hidden {
    display: none !important;
}
.cookie-consent {
    display: none; /* показываем через JS при первом визите */
    position: fixed;
    left: 50%;
    bottom: 20px;
    transform: translateX(-50%);
    width: calc(100% - 40px);          /* отступы по краям */
    max-width: 880px;                   /* как на макете — широкая плашка */
    background: #fff;
    color: #2d2d2d;
    border-radius: 16px;                /* скруглённые углы */
    box-shadow: 0 12px 24px rgba(0,0,0,0.15);
    z-index: 9999;
    font-size: 16px;
}

.cookie-consent__content {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 18px 20px;
}

.cookie-consent__text {
    margin: 0;
    flex: 1;                            /* текст занимает всё слева */
    line-height: 1.5;
}

.cookie-consent__link {
    color: #5c4dff;                     /* фиолетовый акцент */
    text-decoration: underline;
}

.cookie-consent__btn {
    flex: 0 0 auto;                     /* фикс справа */
    padding: 10px 20px;
    background: #5c4dff;                /* фиолетовая кнопка как на картинке */
    color: #fff;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    font-weight: 600;
}

.cookie-consent__btn:hover {
    background: #493ae6;
}

@media (max-width: 640px) {
    .cookie-consent__content {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
    }
    .cookie-consent__btn {
        width: 100%;
    }
}

/* Анимация выезда снизу */
@keyframes slideUp {
    from {
        transform: translate(-50%, 100%);
        opacity: 0;
    }
    to {
        transform: translate(-50%, 0);
        opacity: 1;
    }
}
.page-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 36px;
    height: 36px;
    padding: 0 10px;
    border-radius: 6px;
    background-color: #f5f5f5;
    color: #333;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.2s ease;
}

.page-link:hover {
    background-color: #e0e0e0;
    color: #000;
}

.page-link.active {
    background-color: #007bff;
    color: #fff;
    font-weight: 600;
    cursor: default;
}

.page-link.prev,
.page-link.next {
    font-weight: bold;
    background-color: #fafafa;
}

.page-link.prev:hover,
.page-link.next:hover {
    background-color: #e0e0e0;
}

.dots {
    padding: 0 6px;
    color: #999;
    font-size: 14px;
    user-select: none;
}

a {
    text-decoration: none;
    color: inherit
}

li, ul {
    list-style: none
}

img {
    max-width: 100%;
    height: auto;
    pointer-events: none
}

a, circle, ellipse, path {
    -webkit-transition: all .4s ease;
    transition: all .4s ease
}

button, input, textarea {
    font: inherit;
    color: inherit;
    border: none;
    -webkit-transition: all .4s ease;
    transition: all .4s ease
}

input[type=search]::-webkit-search-cancel-button, input[type=search]::-webkit-search-decoration, input[type=search]::-webkit-search-results-button, input[type=search]::-webkit-search-results-decoration {
    -webkit-appearance: none
}

input::-webkit-inner-spin-button, input::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0
}

input[type=number] {
    -moz-appearance: textfield
}

body {
    background: -webkit-gradient(linear, left top, right top, from(rgba(159, 176, 241, .15)), to(rgba(173, 83, 180, .15)));
    background: linear-gradient(90deg, rgba(159, 176, 241, .15) 0, rgba(173, 83, 180, .15) 100%);
    color: #000;
    font-family: Manrope, sans-serif;
    font-optical-sizing: auto;
    font-weight: 500;
    font-size: 18px;
    line-height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    min-height: 100vh
}

body.open {
    overflow: hidden
}

main {
    overflow-x: clip;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1
}

.container {
    max-width: 1408px;
    padding: 0 64px;
    width: 100%;
    margin: 0 auto
}

@media screen and (max-width: 1200px) {
    .container {
        padding: 0 32px
    }
}

@media screen and (max-width: 768px) {
    .container {
        padding: 0 16px
    }
}

.section {
    padding: 80px 0
}

.section_first {
    padding-top: 16px;
    padding-bottom: 0
}

.section-container {
    max-width: 1408px;
    width: calc(100% - 32px);
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 3;
    border-radius: 32px;
    padding-top: 196px;
    padding-bottom: 42px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-transition: all .4s ease;
    transition: all .4s ease
}

.section-container_pt {
    padding-top: 177px
}

.section-container.blur, .section-container.open {
    overflow: hidden
}

.section-container.blur .section-bg, .section-container.open .section-bg {
    -webkit-filter: blur(42px);
    filter: blur(42px)
}

.section-container.blur .hero, .section-container.blur .main, .section-container.open .hero, .section-container.open .main {
    opacity: 0 !important
}

.section-container.farma .main {
    display: none
}

.section-container_smallest {
    min-height: 140px;
    padding: 0
}

.section-container_small {
    min-height: 500px
}

.section-container_middle {
    min-height: 700px
}

.section-container.mid {
    height: 700px
}

.section-container.big {
    height: 1047px
}

.section-container.profile-open {
    height: 1000px
}

.section__head {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 100%;
    gap: 20px;
    margin-bottom: 40px;
    padding-right: 114px
}

.section__head .links {
    margin-left: auto
}

.section__head .links__list {
    margin-bottom: 0
}

.section__head .link-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background: #fffFFF80;
    -webkit-backdrop-filter: blur(24px);
    backdrop-filter: blur(24px);
    border-radius: 99px;
    padding: 20px 23px;
    height: 56px;
    border-radius: 99px;
    font-weight: 600;
    font-size: 16px;
    letter-spacing: -.2px;
    display: flex;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    color: rgba(0, 0, 0, .7)
}

.section__head .link-item:hover {
    background: #6543db;
    color: #fff
}

.section__head_full {
    padding-right: 0
}

.section__head_half {
    margin-bottom: 70px;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding-right: 0
}

.section__head_half .section__title {
    width: calc(50% - 10px)
}

.section__head_half .section__desc {
    width: calc(50% - 10px)
}

.section__title {
    max-width: calc(100% - 76px)
}

.section-link {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background-color: #fff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-backdrop-filter: blur(24px);
    backdrop-filter: blur(24px);
    -ms-flex-item-align: end;
    align-self: flex-end
}

.section-link:hover {
    background-color: #6543db
}

.section-link:hover path {
    fill: #fff
}

.section .container {
    position: relative;
    z-index: 1
}

.section-bg {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    border-radius: 32px;
    overflow: hidden;
    -webkit-transition: all .4s ease;
    transition: all .4s ease
}

.section-bg img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover
}

.section-bg__404 {
    -webkit-filter: blur(42px);
    filter: blur(42px)
}

@media screen and (max-width: 1408px) {
    .section-container .container {
        padding-left: 48px;
        padding-right: 48px
    }
}

@media screen and (max-width: 1200px) {
    .section-container .container {
        padding-left: 16px;
        padding-right: 16px
    }
}

@media screen and (max-width: 991px) {
    .section__head {
        padding-right: 0
    }

    .section__head_half {
        gap: 20px;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        margin-bottom: 40px
    }

    .section__head_half .section__desc, .section__head_half .section__title {
        width: 100%
    }
}

@media screen and (max-width: 768px) {
    .section {
        padding: 36px 0
    }

    .section-container {
        width: calc(100% - 16px);
        padding-top: 120px;
        padding-bottom: 10px;
        min-height: 750px
    }

    .section-container .container {
        padding-left: 10px;
        padding-right: 10px;
        margin-top: auto
    }

    .section-container_smallest {
        min-height: 104px;
        padding-top: 90px
    }

    .section-container_middle-big {
        min-height: 960px
    }

    .section-container.farma .container {
        margin-top: 0
    }

    .section-container.farma .section-bg {
        -webkit-filter: blur(0);
        filter: blur(0)
    }

    .section-container.profile-open {
        height: 1150px
    }

    .section__title {
        width: 100%
    }

    .section__head_full {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start
    }

    .section__head .links {
        width: 100%
    }

    .section__head .link-item {
        width: 100%
    }

    .section_first {
        padding-top: 8px;
        padding-bottom: 0
    }

    .section .container_404 {
        margin-top: 0;
        padding-top: 100px
    }
}

p {
    line-height: 130%
}

.btn {
    padding: 22px 24px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    border-radius: 16px;
    background-color: #6543db;
    font-weight: 700;
    font-size: 16px;
    line-height: 16px;
    letter-spacing: -.3px;
    text-align: center;
    color: #fff;
    cursor: pointer;
    -webkit-transition: all .4s ease;
    transition: all .4s ease
}

.btn:hover {
    background-color: #2c207c
}

.btn-border {
    padding: 22px 24px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    border-radius: 16px;
    background-color: transparent;
    border: 1px solid #6543db;
    font-weight: 700;
    font-size: 16px;
    line-height: 16px;
    letter-spacing: -.3px;
    text-align: center;
    color: #6543db;
    cursor: pointer;
    -webkit-transition: all .4s ease;
    transition: all .4s ease
}

.btn-border:hover {
    color: #2c207c;
    border-color: #2c207c
}

.btn-transparent {
    padding: 20px 23px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    border-radius: 99px;
    background: #0d35484D;
    font-weight: 600;
    font-size: 16px;
    line-height: 16px;
    letter-spacing: -.3px;
    text-align: center;
    color: #fff;
    cursor: pointer;
    -webkit-transition: all .4s ease;
    transition: all .4s ease
}

.btn-transparent:hover {
    background-color: #2c207c
}

.h1 {
    font-weight: 400;
    font-size: 76px;
    line-height: 89%;
    letter-spacing: .5px
}

@media screen and (max-width: 768px) {
    .h1 {
        font-size: 40px;
        line-height: 100%;
        letter-spacing: -.8px
    }
}

.h2 {
    font-weight: 300;
    font-size: 64px;
    line-height: 100%;
    letter-spacing: .5px;
    color: #2c207c
}

@media screen and (max-width: 768px) {
    .h2 {
        font-size: 40px;
        letter-spacing: -.8px
    }
}

.h3 {
    font-weight: 600;
    font-size: 38px;
    line-height: 100%;
    letter-spacing: .5px
}

@media screen and (max-width: 768px) {
    .h3 {
        font-size: 32px;
        letter-spacing: -1px
    }
}

.title1 {
    font-weight: 700;
    font-size: 28px;
    line-height: 120%;
    letter-spacing: 0
}

.title2 {
    font-weight: 700;
    font-size: 26px;
    line-height: 110%;
    letter-spacing: 0
}

.subtitle {
    font-weight: 500;
    font-size: 20px;
    line-height: 150%;
    letter-spacing: 0
}

@media screen and (max-width: 768px) {
    .subtitle {
        font-size: 18px
    }
}

.swiper-nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: absolute;
    top: 14px;
    right: 0;
    z-index: 2;
    background: #fffFFF80;
    -webkit-backdrop-filter: blur(24px);
    backdrop-filter: blur(24px);
    padding: 8px;
    gap: 8px;
    border-radius: 100px
}

@media screen and (max-width: 991px) {
    .swiper-nav {
        position: static;
        margin-top: 40px
    }
}

.swiper-arrow {
    width: 40px;
    height: 40px;
    cursor: pointer;
    border-radius: 50%;
    -webkit-transition: all .4s ease;
    transition: all .4s ease;
    background-color: #fff
}

.swiper-arrow:hover path {
    stroke: #6543db
}

.swiper {
    margin-left: 0;
    margin-right: 0
}

.search-form {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: relative;
    -webkit-transition: all .4s ease;
    transition: all .4s ease
}

.search-form__input {
    background-color: #0d35484D;
    -webkit-backdrop-filter: blur(24px);
    backdrop-filter: blur(24px);
    padding: 16px 24px;
    padding-right: 64px;
    font-weight: 600;
    font-size: 16px;
    letter-spacing: -.3px;
    width: 135px;
    height: 56px;
    border-radius: 99px;
    color: #fff;
    border: none;
    outline: 0;
    -webkit-transition: all .4s ease;
    transition: all .4s ease
}

.search-form__input::-webkit-input-placeholder {
    color: #fff;
    opacity: .5
}

.search-form__input::-moz-placeholder {
    color: #fff;
    opacity: .5
}

.search-form__input:-ms-input-placeholder {
    color: #fff;
    opacity: .5
}

.search-form__input::-ms-input-placeholder {
    color: #fff;
    opacity: .5
}

.search-form__input::placeholder {
    color: #fff;
    opacity: .5
}

.search-form__input:hover {
    background-color: #2c207c
}

.search-form__input:not(:-moz-placeholder-shown) {
    background-color: #6543db
}

.search-form__input:not(:-ms-input-placeholder) {
    background-color: #6543db
}

.search-form__input:focus, .search-form__input:not(:placeholder-shown) {
    background-color: #6543db
}

@media screen and (min-width: 1350px) {
    .search-form__input:focus {
        width: 356px
    }

    .search-form__input:not(:-moz-placeholder-shown) {
        width: 356px
    }

    .search-form__input:not(:-ms-input-placeholder) {
        width: 356px
    }

    .search-form__input:not(:placeholder-shown) {
        width: 356px
    }
}

.search-form__btn {
    position: absolute;
    top: 16px;
    right: 24px;
    z-index: 3;
    width: 24px;
    height: 24px;
    color: transparent;
    cursor: pointer;
    background: transparent url(../img/search.svg) no-repeat center/cover
}

.modal-wrap {
    position: absolute;
    right: 0;
    top: calc(100% + 20px);
    width: 100%;
    max-width: 478px;
    -webkit-transition: all .4s ease;
    transition: all .4s ease;
    opacity: 0;
    pointer-events: none
}

.modal-wrap.open {
    opacity: 1;
    pointer-events: all
}

.modal {
    background: #fffFFF99;
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    padding: 30px;
    width: 100%;
    border-radius: 24px;
    min-height: 417px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column
}

.modal__title {
    margin-bottom: 40px
}

.form {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    width: 100%
}

.form-input {
    width: 100%;
    height: 48px;
    border-radius: 99px;
    background: #fffFFF80;
    padding-left: 16px;
    padding-right: 16px;
    border: none;
    outline: 0;
    color: #2c207c;
    font-weight: 600;
    font-size: 16px;
    margin-bottom: 10px
}

.form-input::-webkit-input-placeholder {
    color: #2c207c;
    opacity: .4
}

.form-input::-moz-placeholder {
    color: #2c207c;
    opacity: .4
}

.form-input:-ms-input-placeholder {
    color: #2c207c;
    opacity: .4
}

.form-input::-ms-input-placeholder {
    color: #2c207c;
    opacity: .4
}

.form-input::placeholder {
    color: #2c207c;
    opacity: .4
}

.form__btns {
    margin-top: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 10px;
    width: 100%
}

.form__btns button {
    width: calc(50% - 5px)
}

.form__row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 10px;
    margin-bottom: 30px
}

.form-checkbox {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 10px;
    opacity: 1;
    cursor: pointer
}

.form-checkbox input {
    display: none
}

.form-checkbox input:checked ~ .checkmark path {
    opacity: 1
}

.form-checkbox .checkmark {
    -ms-flex-item-align: start;
    align-self: flex-start
}

.form-checkbox .checkmark path {
    opacity: 0
}

.form-checkbox span {
    opacity: .8;
    font-size: 14px;
    line-height: 120%;
    width: calc(100% - 26px)
}

.form__checkboxes {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 10px;
    margin-top: 10px;
    margin-bottom: 30px
}

.form .resset-btn {
    background: 0 0;
    font-size: 14px;
    cursor: pointer
}

.form .resset-btn:hover {
    color: #6543db
}

.form-dropdown {
    z-index: 2;
    position: relative;
    width: 100%;
    margin-bottom: 10px
}

.form-dropdown__head {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    height: 48px;
    border-radius: 99px;
    background: #fffFFF80;
    padding-left: 16px;
    padding-right: 16px;
    border: none;
    outline: 0;
    color: #2c207c;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    -webkit-transition: all .4s ease;
    transition: all .4s ease
}

.form-dropdown__head p {
    width: calc(100% - 28px);
    opacity: .4;
    -webkit-transition: all .4s ease;
    transition: all .4s ease
}

.form-dropdown__head p.active {
    opacity: 1
}

.form-dropdown__head .svg {
    -webkit-transition: all .4s ease;
    transition: all .4s ease
}

.form-dropdown__wrap {
    position: absolute;
    width: 100%;
    left: 0;
    top: calc(100% + 6px);
    z-index: 10;
    opacity: 0;
    pointer-events: none;
    -webkit-transition: all .4s ease;
    transition: all .4s ease
}

.form-dropdown__list {
    background: #fff;
    border: 1px solid #0030081A;
    padding: 12px 8px;
    border-radius: 22px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-shadow: 24px 20px 76px 0 #585F6C33;
    box-shadow: 24px 20px 76px 0 #585F6C33
}

.form-dropdown__item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 12px 16px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    -webkit-transition: all .4s ease;
    transition: all .4s ease
}

.form-dropdown__item input {
    display: none
}

.form-dropdown__item input:checked ~ .checkmark {
    opacity: 1
}

.form-dropdown__item:hover {
    background-color: #f1f4f9
}

.form-dropdown__text {
    width: calc(100% - 24px)
}

.form-dropdown .checkmark {
    width: 16px;
    height: 16px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    background: url(../img/checkmark.svg) no-repeat center;
    opacity: 0;
    -webkit-transition: all .4s ease;
    transition: all .4s ease
}

.form-dropdown.open {
    z-index: 10
}

.form-dropdown.open .form-dropdown__head .svg {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg)
}

.form-dropdown.open .form-dropdown__wrap {
    opacity: 1;
    pointer-events: all
}

@media screen and (max-width: 768px) {
    .form__btns {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column
    }

    .form__btns button {
        width: 100%
    }
}

.s404 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 32px;
    margin-top: auto;
    color: #fff
}

.s404__title {
    font-weight: 400;
    font-size: 300px;
    line-height: 89%;
    letter-spacing: -2px;
    text-align: center;
    -webkit-filter: blur(6px);
    filter: blur(6px)
}

.s404__desc {
    max-width: 800px;
    font-weight: 300;
    text-align: center;
    color: #fff
}

@media screen and (max-width: 991px) {
    .s404 {
        gap: 16px;
        margin-top: 0
    }

    .s404__title {
        font-size: 150px;
        -webkit-filter: blur(3px);
        filter: blur(3px)
    }

    .s404__desc {
        font-size: 32px
    }
}

.animated {
    visibility: hidden
}

.filter-dropdown {
    position: relative;
    z-index: 2
}

.filter-dropdown__wrap {
    position: absolute;
    width: 360px;
    left: 0;
    top: calc(100% + 6px);
    z-index: 10;
    opacity: 0;
    pointer-events: none;
    -webkit-transition: all .4s ease;
    transition: all .4s ease;
    background: #fff;
    border: 1px solid #0030081A;
    padding: 12px 8px;
    border-radius: 22px;
    -webkit-box-shadow: 24px 20px 76px 0 #585F6C33;
    box-shadow: 24px 20px 76px 0 #585F6C33
}

.filter-dropdown__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    max-height: 280px;
    overflow: auto
}

.filter-dropdown__list::-webkit-scrollbar {
    width: 2px;
    border-radius: 20px
}

.filter-dropdown__list::-webkit-scrollbar-track {
    background-color: transparent;
    border-radius: 20px
}

.filter-dropdown__list::-webkit-scrollbar-thumb {
    background-color: #6f46dc;
    border-radius: 20px
}

.filter-dropdown__item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 12px 16px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    color: #000;
    font-size: 16px;
    gap: 8px;
    -webkit-transition: all .4s ease;
    transition: all .4s ease
}

.filter-dropdown__item img {
    width: 32px;
    height: 32px;
    border-radius: 50%
}

.filter-dropdown__item:hover {
    background-color: #f1f4f9
}

.filter-dropdown__text {
    width: calc(100% - 40px)
}

.filter-dropdown.open .filter-dropdown__wrap {
    opacity: 1;
    pointer-events: all
}
.filter-dropdown__item.selected::after {
    content: "✔";
    color: green;
    margin-left: 8px;
    font-size: 14px;
}
@media screen and (max-width: 575px) {
    .filter-dropdown__wrap {
        left: -16px;
        width: calc(100vw - 32px)
    }

    .filter-dropdown__item {
        padding: 8px;
        font-size: 14px
    }

    .filter-dropdown__item img {
        width: 28px;
        height: 28px
    }

    .filter-dropdown__text {
        width: calc(100% - 36px)
    }
}

.header {
    position: absolute;
    width: 100%;
    left: 0;
    top: 58px;
    z-index: 4
}

.header__row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    gap: 20px;
    position: relative
}

.header__row-right {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    gap: 20px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    max-width: calc(100% - 200px)
}

.header__row-right.hide {
    opacity: 0;
    pointer-events: none
}

.header .menu-btn {
    display: none
}

.header.hide {
    pointer-events: none
}

@media screen and (max-width: 991px) {
    .header .btn-transparent, .header .nav, .header .search-form {
        display: none
    }

    .header .menu-btn {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        height: 56px;
        width: 56px;
        border-radius: 50%;
        background: #0d35484D;
        -webkit-backdrop-filter: blur(24px);
        backdrop-filter: blur(24px)
    }
}

@media screen and (max-width: 768px) {
    .header {
        top: 32px
    }

    .header .container {
        padding-left: 28px;
        padding-right: 28px
    }

    .header .logo {
        max-width: calc(100% - 155px)
    }

    .header__row {
        gap: 15px
    }

    .header__row-right {
        gap: 10px;
        max-width: none
    }
}

.menu {
    background: #0d35484D;
    -webkit-backdrop-filter: blur(24px);
    backdrop-filter: blur(24px);
    padding: 4px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 8px;
    border-radius: 99px
}

.menu-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
}

.menu-item-has-children {
    position: relative
}

.menu-item-has-children:hover .sub-menu {
    opacity: 1;
    pointer-events: all
}

.menu-link {
    padding: 15px 24px;
    border-radius: 99px;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: -.3px
}

.menu-link-current {
    background-color: #6543db
}

.menu-link:hover {
    background-color: #6543db
}

@media screen and (max-width: 1200px) {
    .menu-link {
        font-size: 14px;
        padding: 15px 20px
    }
}

.sub-menu {
    position: absolute;
    left: 0;
    top: 100%;
    opacity: 0;
    pointer-events: none;
    -webkit-transition: all .4s ease;
    transition: all .4s ease;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 9px;
    width: 542px;
    z-index: 3;
    padding-left: 20px;
    padding-top: 24px
}

.sub-menu-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
}

.sub-menu-link {
    padding: 15px 24px;
    border-radius: 99px;
    color: #2c207c;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: -.3px;
    background: #fffFFF80;
    -webkit-backdrop-filter: blur(24px);
    backdrop-filter: blur(24px)
}

.sub-menu-link:hover {
    background-color: #6543db;
    color: #fff
}

.profile {
    position: relative;
    cursor: pointer
}

.profile-user {
    padding: 12px 23px 12px 13px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 10px;
    background: #0d35484D;
    -webkit-backdrop-filter: blur(24px);
    backdrop-filter: blur(24px);
    border-radius: 99px;
    font-weight: 600;
    color: #fff;
    font-size: 16px
}

.profile-user img {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    -o-object-fit: cover;
    object-fit: cover
}

.profile .sub-menu {
    max-width: 300px
}

.profile:hover .sub-menu {
    opacity: 1;
    pointer-events: all
}

@media screen and (max-width: 1340px) {
    .profile-user {
        color: transparent;
        overflow: hidden;
        width: 56px;
        height: 56px
    }

    .profile-user img {
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%
    }

    .profile .sub-menu {
        left: auto;
        right: 0
    }
}

@-webkit-keyframes fadeInLeft {
    from {
        opacity: 0;
        -webkit-transform: translate3d(-100px, 0, 0);
        transform: translate3d(-100px, 0, 0)
    }
    to {
        opacity: 1;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0)
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        -webkit-transform: translate3d(-100px, 0, 0);
        transform: translate3d(-100px, 0, 0)
    }
    to {
        opacity: 1;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0)
    }
}

@-webkit-keyframes fadeInRight {
    from {
        opacity: 0;
        -webkit-transform: translate3d(100px, 0, 0);
        transform: translate3d(100px, 0, 0)
    }
    to {
        opacity: 1;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0)
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        -webkit-transform: translate3d(100px, 0, 0);
        transform: translate3d(100px, 0, 0)
    }
    to {
        opacity: 1;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0)
    }
}

.search-result {
    position: absolute;
    z-index: 5;
    left: 0;
    top: calc(100% + 20px);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    gap: 24px;
    width: 100%;
    opacity: 0;
    pointer-events: none;
    -webkit-transition: all .4s ease;
    transition: all .4s ease
}

.search-result.open {
    opacity: 1;
    pointer-events: all
}

.search-result__wrap {
    width: calc(100% - 484px);
    background: #fffFFF99;
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    padding: 24px
}

.search-result__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 18px;
    overflow: auto;
    max-height: 490px
}

.search-result__list::-webkit-scrollbar {
    width: 2px;
    border-radius: 20px
}

.search-result__list::-webkit-scrollbar-track {
    background-color: transparent;
    border-radius: 20px
}

.search-result__list::-webkit-scrollbar-thumb {
    background-color: #6f46dc;
    border-radius: 20px
}

.search-result__item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    max-width: 640px;
    gap: 6px
}

.search-result__item:not(:last-child) {
    padding-bottom: 18px;
    border-bottom: 1px solid rgba(0, 0, 0, .2)
}

.search-result__item-title {
    font-weight: 700;
    font-size: 22px;
    line-height: 122%
}

.search-result__item-desc {
    font-size: 18px;
    line-height: 160%
}

.search-result__tags {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 9px;
    max-width: 460px
}

.search-result__tag {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
}

.search-result__tag input {
    display: none
}

.search-result__tag input:checked ~ .sub-menu-link {
    background-color: #fff
}

.search-result__tag .sub-menu-link {
    cursor: pointer;
    background: #fffFFF80;
    -webkit-transition: all .4s ease;
    transition: all .4s ease;
    color: #2c207c !important
}

.search-result__tag .sub-menu-link:hover {
    background-color: #fff
}

.hystmodal__wrap {
    padding: 8px;
    background-color: #fff
}

.menu-modal {
    width: 100%;
    height: 100%;
    margin: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    position: relative;
    border-radius: 24px;
    padding: 20px;
    overflow: hidden
}

.menu-modal__bg {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -webkit-filter: blur(24px);
    filter: blur(24px)
}

.menu-modal__bg img {
    border-radius: 24px;
    -o-object-fit: cover;
    object-fit: cover;
    width: 100%;
    height: 100%
}

.menu-modal__close {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #0d35484D;
    -webkit-backdrop-filter: blur(24px);
    backdrop-filter: blur(24px);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    cursor: pointer;
    z-index: 20;
    -webkit-transition: all .4s ease;
    transition: all .4s ease
}

.menu-modal__close path {
    stroke: #fff
}

.menu-modal__close:hover {
    background-color: #2c207c
}

.menu-modal__head {
    position: relative;
    z-index: 1;
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-bottom: 30px
}

.menu-modal__menu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 16px
}

.menu-modal__sub-menu {
    display: none;
    padding-top: 16px;
    width: 100% !important;
    padding: 0 !important;
    gap: 8px
}

.menu-modal .search-form {
    width: 100%;
    margin-bottom: 16px
}

.menu-modal .search-form__input {
    width: 100%
}

.menu-modal__nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    position: relative;
    z-index: 1;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1

}

.menu-modal__nav .menu-item {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 16px
}

.menu-modal__nav .menu-item.menu-item-has-children .menu-link::after {
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
    -webkit-transition: all .4s ease;
    transition: all .4s ease
}

.menu-modal__nav .menu-item.menu-item-has-children .menu-link.open::after {
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg)
}

.menu-modal__nav .menu-link {
    width: 100%;
    background: #0d35484D;
    -webkit-backdrop-filter: blur(24px);
    backdrop-filter: blur(24px);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    font-size: 16px
}

.menu-modal__nav .menu-link::after {
    content: "";
    min-width: 16px;
    width: 16px;
    height: 16px;
    background: url(../img/menu-arrow.svg) no-repeat center
}

.menu-modal__nav .sub-menu-item:not(:last-child) {
    margin-bottom: 8px
}

.menu-modal .search-result {
    position: static;
    opacity: 1;
    pointer-events: all;
    margin-bottom: 16px;
    width: 100% !important;
    padding: 0 !important;
    display: none
}

.menu-modal .search-result__wrap {
    width: 100%
}

.menu-modal .search-result__tags {
    width: 100%;
    margin-bottom: 16px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    overflow: auto;
    width: calc(100% + 40px);
    margin-left: -20px;
    padding-left: 20px;
    padding-right: 20px;
    max-width: none

}

.menu-modal .search-result__list {
    overflow: visible
}

.menu-modal .search-result__tag {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto
}

.login-modal {
    padding-bottom: 40px
}

.login-modal .login-form, .login-modal .reg-form, .login-modal .resset-form {
    position: static;
    max-width: 100%;
    opacity: 1;
    pointer-events: all;
    width: 100%
}

.login-modal .modal {
    margin: 24px 0;
    min-height: 1px
}

.login-modal .modal .resset-btn {
    display: none
}

.menu-item_reverse a {
    height: 56px;
    -webkit-box-pack: start !important;
    -ms-flex-pack: start !important;
    justify-content: flex-start !important;
    gap: 10px
}

.menu-item_reverse a::after {
    -webkit-box-ordinal-group: -1;
    -ms-flex-order: -2;
    order: -2;
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg)
}

.btn-border_white {
    color: #fff;
    border-color: #fff;
    max-width: 287px;
    width: 100%;
    margin: auto auto 0
}

.hero {
    background: #fffFFF99;
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    padding: 24px 26px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    gap: 21px;
    max-width: 632px;
    width: 100%;
    -webkit-transition: all .4s ease;
    transition: all .4s ease
}

.hero__desc {
    max-width: 440px
}

@media screen and (max-width: 768px) {
    .hero__title {
        max-width: 300px
    }
}

.spec {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

.spec__list {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 16px
}

.spec__item {
    -webkit-backdrop-filter: blur(24px);
    backdrop-filter: blur(24px);
    padding: 24px 26px;
    min-height: 335px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    width: calc((100% - 32px) / 3);
    border-radius: 32px;
    background: 0 0;
    overflow: hidden
}

.spec__item::before {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    pointer-events: none;
    -webkit-transition: all .4s ease;
    transition: all .4s ease;
    background: radial-gradient(50% 50% at 50% 50%, rgba(245, 245, 245, .3) 34.62%, rgba(255, 255, 255, .5) 100%);
    -webkit-backdrop-filter: blur(24px);
    backdrop-filter: blur(24px)
}

.spec__item-img {
    position: relative;
    z-index: 2
}

.spec__item-inner {
    margin-top: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 6px;
    position: relative;
    z-index: 2
}

.spec__item-title {
    color: #2c207c
}

.spec__item:hover {
    background: #fff
}

.spec__item:hover::before {
    opacity: 0
}

.spec__btn {
    margin-top: 40px
}

@media screen and (max-width: 991px) {
    .spec__item {
        width: calc(50% - 8px)
    }

    .spec .section__title {
        max-width: 100%
    }
}

@media screen and (max-width: 575px) {
    .spec__item {
        padding: 25px 16px;
        min-height: 140px;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        width: 100%;
        border-radius: 24px;
        gap: 24px
    }

    .spec__item-inner {
        margin-top: 0
    }
}

.materials {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

.materials-swiper {
    overflow: visible;
    width: 100%
}

.materials__list {
    width: 100%;
    display: grid;
    grid-gap: 17px;
    grid-template-columns:repeat(auto-fill, minmax(360px, 1fr))
}

.materials__list .material-card {
    width: auto
}

@media screen and (max-width: 768px) {
    .materials__list {
        grid-template-columns:repeat(auto-fill, minmax(280px, 1fr))
    }
}

.material-card {
    width: 353px;
    height: 456px;
    border-radius: 24px;
    position: relative;
    overflow: hidden;
    color: #fff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
}

.material-card:hover .material-card__bg {
    -webkit-transform: scale(1.15);
    transform: scale(1.15)
}

.material-card__bg {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    -o-object-fit: cover;
    object-fit: cover;
    -webkit-transition: all .4s ease;
    transition: all .4s ease
}

.material-card__count {
    position: absolute;
    left: 20px;
    top: 20px;
    background: #0000004D;
    height: 32px;
    padding: 8px;
    font-size: 16px;
    border-radius: 7px;
    letter-spacing: -.2px
}

.material-card__inner {
    padding: 24px 24px 30px 30px;
    margin-top: auto;
    position: relative;
    z-index: 2;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    gap: 6px;
    max-width: 360px;
    width: 100%
}

.material-card__desc {
    font-size: 18px;
    letter-spacing: -.2px;
    line-height: 160%
}

.events {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

.events-swiper {
    width: 100%
}

.events__list {
    width: 100%;
    display: grid;
    grid-gap: 40px 17px;
    grid-template-columns:repeat(auto-fill, minmax(420px, 1fr))
}

.events__list .event-card {
    width: auto
}

@media screen and (max-width: 768px) {
    .events__list {
        grid-gap: 10px;
        grid-template-columns:repeat(auto-fill, minmax(280px, 1fr))
    }
}

.event-card {
    width: 372px;
    height: auto;
    min-height: 456px;
    border-radius: 24px;
    position: relative;
    overflow: hidden;
    color: #fff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
}

.event-card:hover .event-card__bg {
    -webkit-transform: scale(1.15);
    transform: scale(1.15)
}

.event-card__bg {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    -o-object-fit: cover;
    object-fit: cover;
    -webkit-transition: all .4s ease;
    transition: all .4s ease
}

.event-card__inner {
    padding: 24px 26px;
    position: relative;
    z-index: 2;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    gap: 30px
}

.event-card__meta {
    margin-top: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 10px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap
}

.event-card__tag {
    padding: 15px 23px;
    background: #fffFFFCC;
    -webkit-backdrop-filter: blur(24px);
    backdrop-filter: blur(24px);
    color: #2c207c;
    font-weight: 600;
    font-size: 16px;
    letter-spacing: -.2px;
    border-radius: 99px
}

.event-card__doctor {
    padding: 8px 23px 8px 8px;
    background: #fffFFF80;
    -webkit-backdrop-filter: blur(24px);
    backdrop-filter: blur(24px);
    color: #2c207c;
    font-weight: 600;
    font-size: 16px;
    letter-spacing: -.2px;
    border-radius: 99px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 10px
}

.event-card__doctor img {
    width: 32px;
    min-width: 32px;
    height: 32px;
    -o-object-fit: cover;
    object-fit: cover;
    border-radius: 50%
}

.event-card__desc {
    font-size: 20px;
    letter-spacing: 0;
    line-height: 140%;
    max-width: 750px;
    font-weight: 700
}

.event-card_big {
    width: 888px
}

@media screen and (min-width: 992px) {
    .event-card_big .event-card__desc {
        font-size: 28px;
        line-height: 155%;
        font-weight: 500;
        letter-spacing: -.6px
    }
}

@media screen and (max-width: 1408px) {
    .event-card_big {
        width: calc(100vw - 516px)
    }
}

@media screen and (max-width: 991px) {
    .event-card__tag {
        padding: 13px 20px;
        font-size: 14px
    }

    .event-card__inner {
        padding: 24px 21px
    }

    .event-card__doctor {
        font-size: 14px;
        padding: 7px 20px 7px 7px
    }
}

.info .section__title {
    max-width: 1000px
}

.info-wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 50px
}

.info__wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    gap: 16px
}

.info__left {
    width: calc(50% - 8px);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 28px
}

.info__main {
    border-radius: 24px;
    background: url(../img/infobg.svg) no-repeat center/cover;
    padding: 53px 40px 30px 53px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    color: #fff;
    overflow: hidden;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1
}

.info__main-title {
    max-width: 360px;
    margin-bottom: 20px
}

.info__main-desc {
    max-width: 390px;
    opacity: .8
}

.info__main-img {
    max-width: 446px;
    -webkit-transform: translateX(185px);
    transform: translateX(185px);
    margin-top: auto;
    -webkit-transition: all .4s ease;
    transition: all .4s ease
}

.info__main:hover .info__main-img {
    -webkit-transform: scale(1.15) translateX(185px);
    transform: scale(1.15) translateX(185px)
}

.info__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 20px
}

.info__item {
    background: radial-gradient(50% 50% at 50% 50%, rgba(245, 245, 245, .3) 34.62%, rgba(255, 255, 255, .5) 100%);
    -webkit-backdrop-filter: blur(24px);
    backdrop-filter: blur(24px);
    padding: 24px 24px 24px 40px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 10px;
    border-radius: 24px
}

.info__item-inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 6px
}

.info__item-title {
    font-weight: 700
}

.info__item-desc {
    font-size: 16px
}

.info__right {
    width: calc(50% - 8px);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 11px
}

.info-card {
    background: radial-gradient(50% 50% at 50% 50%, rgba(245, 245, 245, .3) 34.62%, rgba(255, 255, 255, .5) 100%);
    -webkit-backdrop-filter: blur(24px);
    backdrop-filter: blur(24px);
    padding: 30px 30px 20px 40px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    border-radius: 24px;
    min-height: 456px
}

.info-card:last-child {
    background: #b966E733
}

.info-card__img {
    width: 100%;
    max-width: 282px;
    margin-bottom: 30px;
    border-radius: 32px;
    overflow: hidden;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
}

.info-card__img img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -webkit-transition: all .4s ease;
    transition: all .4s ease
}

.info-card__title {
    margin-top: auto;
    margin-bottom: 20px;
    color: #2c207c
}

.info-card__desc {
    max-width: 490px
}

.info-card:hover .info-card__img img {
    -webkit-transform: scale(1.15);
    transform: scale(1.15)
}

@media screen and (max-width: 991px) {
    .info__main-img {
        -webkit-transform: translateX(70px);
        transform: translateX(70px);
        max-width: 100%;
        width: 100%
    }
}

@media screen and (max-width: 768px) {
    .info__wrap {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column
    }

    .info .h2 {
        width: 100%;
        letter-spacing: -.2px;
        max-width: 316px
    }

    .info .h2 span {
        word-break: break-word
    }

    .info__left, .info__right {
        width: 100%;
        gap: 40px
    }

    .info__main {
        padding: 24px 20px 30px 24px
    }

    .info__main-img {
        -webkit-transform: translateX(30px);
        transform: translateX(30px);
        min-width: 355px
    }

    .info__item {
        padding: 26px;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start
    }

    .info__item-title {
        font-size: 20px
    }

    .info-card {
        padding: 26px;
        min-height: 1px
    }

    .info-card__img {
        width: 100%;
        max-width: 100%;
        margin-bottom: 24px;
        border-radius: 24px
    }

    .info-card__title {
        margin-bottom: 16px
    }

    .info-card__desc {
        max-width: 100%
    }

    .info-card__desc br {
        display: none
    }
}

.projects {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

.projects-swiper {
    width: 100%
}

.project-card {
    width: 372px;
    height: auto;
    min-height: 456px;
    border-radius: 24px;
    position: relative;
    overflow: hidden;
    color: #fff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
}

.project-card:hover .project-card__bg {
    -webkit-transform: scale(1.15);
    transform: scale(1.15)
}

.project-card:hover .project-card__img {
    -webkit-transform: scale(1.15);
    transform: scale(1.15)
}

.project-card__bg {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    -o-object-fit: cover;
    object-fit: cover;
    -webkit-transition: all .4s ease;
    transition: all .4s ease
}

.project-card__inner {
    padding: 30px;
    position: relative;
    z-index: 2;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    gap: 6px;
    margin-top: auto
}

.project-card__desc {
    letter-spacing: 0;
    line-height: 140%;
    max-width: 750px
}

.project-card__img {
    position: absolute;
    left: 490px;
    bottom: -20px;
    max-width: 487px;
    -webkit-transition: all .4s ease;
    transition: all .4s ease
}

.project-card__tag {
    text-transform: uppercase;
    opacity: .5;
    position: absolute;
    left: 35px;
    top: 40px
}

.project-card_big {
    width: 888px;
    padding-top: 50px
}

.project-card_big .project-card__inner {
    max-width: 490px;
    gap: 24px
}

.project-card_big .project-card__title {
    font-weight: 400;
    font-size: 87px;
    line-height: 77px;
    letter-spacing: -1.2px
}

@media screen and (max-width: 1408px) {
    .project-card_big {
        width: calc(100vw - 516px)
    }
}

@media screen and (max-width: 991px) {
    .project-card__inner {
        padding: 24px 21px
    }
}

@media screen and (max-width: 768px) {
    .project-card_big {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column
    }

    .project-card_big .project-card__inner {
        max-width: 100%;
        gap: 16px
    }

    .project-card_big .project-card__title {
        font-size: 65px;
        line-height: 70px;
        letter-spacing: -.6px
    }

    .project-card__img {
        position: relative;
        width: 100%;
        z-index: 2;
        left: 0;
        -ms-flex-item-align: center;
        align-self: center;
        bottom: 0
    }
}

.experts {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

.experts-swiper {
    overflow: visible;
    width: 100%
}

.expert-card {
    width: 572px;
    height: 231px;
    border-radius: 24px;
    position: relative;
    overflow: hidden;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    background: 0 0;
    padding: 50px 40px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 20px;
    -webkit-transition: all .4s ease;
    transition: all .4s ease
}

.expert-card::before {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    background: radial-gradient(50% 50% at 50% 50%, rgba(245, 245, 245, .3) 34.62%, rgba(255, 255, 255, .5) 100%);
    -webkit-backdrop-filter: blur(24px);
    backdrop-filter: blur(24px);
    z-index: -1;
    -webkit-transition: all .4s ease;
    transition: all .4s ease
}

.expert-card:hover {
    background-color: #fff
}

.expert-card:hover::before {
    opacity: 0
}

.expert-card__img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    -o-object-fit: cover;
    object-fit: cover
}

.expert-card__inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    gap: 2px;
    max-width: 283px
}

.expert-card__title {
    color: #2c207c
}

.expert-card__desc {
    font-size: 18px;
    letter-spacing: -.2px;
    line-height: 160%
}

@media screen and (max-width: 575px) {
    .expert-card {
        padding: 26px 20px 26px 40px;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        height: auto;
        min-height: 282px
    }
}

.products {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

.products-swiper {
    overflow: visible;
    width: 100%
}

.products__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 17px;
    width: 100%
}

.products__list .product {
    width: 100%
}

.product {
    width: 353px;
    height: 456px;
    border-radius: 24px;
    position: relative;
    overflow: hidden;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    background-color: transparent;
    padding: 95px 24px 30px 30px;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-transition: all .4s ease;
    transition: all .4s ease
}

.product::before {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    background: radial-gradient(50% 50% at 50% 50%, rgba(245, 245, 245, .3) 34.62%, rgba(255, 255, 255, .5) 100%);
    -webkit-backdrop-filter: blur(24px);
    backdrop-filter: blur(24px);
    z-index: -1;
    -webkit-transition: all .4s ease;
    transition: all .4s ease
}

.product:hover {
    background-color: #fff
}

.product:hover::before {
    opacity: 0
}

.product__tag {
    position: absolute;
    top: 20px;
    left: 20px;
    background-color: #fff;
    padding: 8px;
    font-size: 14px;
    height: 32px;
    border-radius: 7px
}

.product__img {
    width: 355px;
    height: 211px;
    max-width: none;
    -o-object-fit: cover;
    object-fit: cover;
    -webkit-transform: translateX(-21px);
    transform: translateX(-21px);
    margin-bottom: 25px
}

.product__title {
    color: #2c207c;
    margin-bottom: 6px
}

.product__desc {
    font-size: 18px;
    letter-spacing: -.2px;
    line-height: 160%;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden
}

.product__file {
    font-size: 16px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 6px
}

.product__file-format {
    font-size: 10px;
    font-weight: 700;
    color: #fff;
    background-color: #ce1a18;
    border-radius: 7px;
    height: 20px;
    padding: 6px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    text-transform: uppercase
}

.product__meta {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 6px
}

.product__variations {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 6px
}

.product__variation {
    height: 28px;
    padding: 6px;
    background-color: #578543;
    border-radius: 7px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    color: #fff;
    font-weight: 700;
    font-size: 14px
}

.product__text {
    font-size: 16px
}

.product-big {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 60px 40px;
    height: auto
}

.product-big .product__tag {
    position: static;
    margin-bottom: 26px
}

.product-big .product__title {
    margin-bottom: 11px
}

.product-big__desc {
    margin-bottom: 26px
}

.product-big__img {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
}

.product-big__img img {
    margin-bottom: 0;
    width: 400px;
    height: auto
}

.product-big__main {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    padding-right: 55px;
    border-right: 1px solid rgba(0, 0, 0, .1);
    width: calc(100% - 680px);
    margin-right: 30px
}

.product-big__docs {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 6px;
    width: 250px;
    margin-left: auto
}

@media screen and (max-width: 1200px) {
    .product-big__img img {
        width: 300px
    }

    .product-big__main {
        padding-right: 30px;
        width: calc(100% - 590px);
        margin-right: 30px
    }

    .product-big__docs {
        width: 250px
    }
}

@media screen and (max-width: 991px) {
    .product-big {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap
    }

    .product-big__main {
        padding-right: 0;
        width: calc(100% - 300px);
        margin-right: 0;
        border: none
    }

    .product-big__docs {
        margin-top: 20px;
        width: 100%;
        padding-top: 20px;
        border-top: 1px solid rgba(0, 0, 0, .1)
    }
}

@media screen and (max-width: 768px) {
    .product-big {
        padding: 26px
    }

    .product-big__img {
        margin-bottom: 20px
    }

    .product-big__img img {
        width: 100%;
        max-width: 400px
    }

    .product-big__main {
        width: 100%
    }
}

@media screen and (max-width: 380px) {
    .product {
        height: auto
    }

    .product__img {
        height: auto;
        width: calc(100% + 40px)
    }
}

.footer {
    padding-top: 80px;
    padding-bottom: 60px
}

.footer .container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column
}

.footer__head {
    margin-bottom: 56px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 40px
}

.footer-menu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 24px
}

.footer-menu-link {
    font-size: 20px;
    line-height: 20px
}

.footer-menu-link:hover {
    color: #2c207c
}

.footer__desc {
    margin-bottom: 56px;
    max-width: 413px;
    font-size: 16px;
    line-height: 24px
}

.footer__row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 24px;
    margin-bottom: 30px
}

.footer__row .footer-menu-link {
    font-size: 16px;
    line-height: 16px
}

.footer__row p {
    font-size: 16px
}

.footer__end {
    padding-top: 40px;
    border-top: 1px solid #0d374826;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between
}

.footer__end-desc {
    width: calc(100% - 330px);
    text-transform: uppercase;
    font-weight: 300;
    line-height: 140%;
    letter-spacing: -.2px;
    max-width: 898px
}

.footer__end-right {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    gap: 38px
}

.footer__end-right a {
    font-size: 20px;
    line-height: 20px
}

@media screen and (max-width: 768px) {
    .footer__head {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
        margin-bottom: 40px
    }

    .footer-menu {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start
    }

    .footer__desc {
        margin-bottom: 40px
    }

    .footer__row {
        margin-bottom: 40px
    }

    .footer__end {
        -webkit-box-orient: vertical;
        -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
        flex-direction: column-reverse;
        gap: 40px
    }

    .footer__end-desc {
        width: 100%
    }

    .footer__end-right {
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
        gap: 40px
    }
}

.main {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    gap: 30px;
    color: #fff;
    position: relative;
    height: 100%;
    -webkit-transition: all .4s ease;
    transition: all .4s ease
}

.main__title {
    max-width: 800px
}

.main__title_min {
    max-width: 440px
}

.main .author-item {
    display: block
}

.main .post__meta {
    margin-bottom: 0
}

.main__desc {
    max-width: 565px
}

.main__icon {
    position: absolute;
    right: 80px;
    top: -58px;
    max-width: 378px
}

.main__inner {
    margin-top: auto;
    width: 100%
}

.main__row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    gap: 24px;
    width: 100%;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap
}

.main__row-inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    gap: 20px;
    max-width: 600px
}

.main__row-inner .main__desc {
    max-width: 100%
}

.main__row-inner .btn {
    padding-top: 16px;
    padding-bottom: 16px
}

.main__stats {
    background: #fffFFF99;
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    padding: 20px 30px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    gap: 30px;
    border-radius: 24px
}

.main__stats-inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 20px
}

.main__stats-desc {
    max-width: 187px;
    color: #2c207c
}

.main__stats-number {
    color: #2c207c
}

.main__stats .btn {
    width: 140px
}

.main__stats-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 30px;
    width: calc(100% - 540px)
}

.main__stats-item {
    min-height: 150px;
    padding-left: 30px;
    border-left: 2px solid #00000010;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    width: calc(33.3333333333% - 20px)
}

.main__stats-name {
    max-width: 130px;
    opacity: .6;
    color: #000
}

.main__stats-value {
    color: #2c207c;
    font-size: 49px;
    line-height: 59px
}

.main .tabs-content {
    position: absolute;
    right: 0;
    top: 0;
    width: 580px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center
}

@media screen and (max-width: 1340px) {
    .main__stats {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column
    }

    .main__stats-inner {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        gap: 20px
    }

    .main__stats-list {
        width: 100%
    }
}

@media screen and (max-width: 1200px) {
    .main .tabs-content {
        width: 48%
    }
}

@media screen and (max-width: 991px) {
    .main__icon {
        display: none
    }

    .main .tabs-content {
        width: 100%;
        max-width: 600px;
        position: static
    }
}

@media screen and (max-width: 768px) {
    .main {
        gap: 24px;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center
    }

    .main .tabs-nav {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        -ms-flex-item-align: start;
        align-self: flex-start
    }

    .main__desc, .main__title {
        width: calc(100% - 20px);
        max-width: 100%
    }

    .main .post__meta {
        display: none
    }

    .main .btn {
        -ms-flex-item-align: start;
        align-self: flex-start
    }

    .main__stats {
        gap: 30px
    }

    .main__stats-inner {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        text-align: center;
        gap: 10px
    }

    .main__stats-desc {
        max-width: 100%
    }

    .main__stats-number {
        margin-bottom: 10px;
        font-size: 76px
    }

    .main__stats .btn {
        width: 100%
    }

    .main__stats-list {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        gap: 0
    }

    .main__stats-item {
        min-height: 1px;
        padding: 10px 0;
        border-left: none;
        width: 100%
    }

    .main__stats-item:not(:last-child) {
        border-bottom: 2px solid #00000010
    }

    .main__row {
        padding-left: 14px;
        padding-right: 14px
    }
}

.download {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 24px
}

.download__item {
    height: 106px;
    width: calc(50% - 12px);
    border: 1px solid #fff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 24px;
    border-radius: 32px
}

.download__item-icon {
    width: 52px;
    height: 52px;
    min-width: 52px;
    border-radius: 50%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    background-color: #fff;
    margin-right: 20px
}

.download__item-format {
    font-size: 10px;
    font-weight: 700;
    color: #fff;
    background-color: #ce1a18;
    border-radius: 7px;
    height: 20px;
    padding: 6px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    text-transform: uppercase;
    margin-left: 6px
}

.download__item:hover {
    background-color: #fff;
    color: #6f46dc
}

@media screen and (max-width: 768px) {
    .download {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        gap: 12px
    }
}

.download__item {
    height: 80px;
    width: 100%;
    padding: 16px;
    border-radius: 24px
}

.download__item-icon {
    width: 36px;
    height: 36px;
    min-width: 36px
}

.features {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    gap: 16px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap
}

.feature {
    background: radial-gradient(50% 50% at 50% 50%, rgba(245, 245, 245, .3) 34.62%, rgba(255, 255, 255, .5) 100%);
    -webkit-backdrop-filter: blur(24px);
    backdrop-filter: blur(24px);
    border-radius: 24px;
    padding: 28px 33px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    width: calc(33.3333333333% - 11px)
}

.feature__title {
    color: #2c207c
}

.feature__desc {
    color: #000;
    opacity: .8
}

@media screen and (max-width: 768px) {
    .feature {
        width: 100%;
        padding: 28px 26px
    }
}

.filter {
    background: #fffFFF99;
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    padding: 20px 30px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 8px 9px;
    border-radius: 24px
}

.filter-category {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    height: 48px;
    padding: 8px;
    border-radius: 99px;
    background: #fffFFF80;
    -webkit-backdrop-filter: blur(24px);
    backdrop-filter: blur(24px);
    color: #2c207c;
    font-weight: 600;
    font-size: 16px;
    letter-spacing: -.2px;
    cursor: pointer
}

.filter-category__text {
    padding: 0 10px
}

.filter-category_pr {
    padding-right: 13px
}

.filter-category_pl {
    padding-left: 13px
}

.filter-category__images {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

.filter-category__images img {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    position: relative;
    -o-object-fit: cover;
    object-fit: cover
}

.filter-category__images img:nth-child(2) {
    margin-left: -11px;
    z-index: 2
}

.filter-category__images img:nth-child(3) {
    margin-left: -11px;
    z-index: 3
}

.filter-category__img {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    -o-object-fit: cover;
    object-fit: cover
}

.filter-category__icon {
    width: 32px;
    height: 32px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    border-radius: 50%;
    background: #fffFFF80
}

.filter-category.active, .filter-category:hover {
    background: #6543db;
    color: #fff
}

.filter-category.active path, .filter-category:hover path {
    stroke: #fff
}

@media screen and (max-width: 768px) {
    .filter {
        padding: 20px 16px
    }

    .filter-category {
        height: 44px;
        padding: 7px;
        font-size: 14px;
        letter-spacing: -.1px
    }

    .filter-category__text {
        padding: 0 9px
    }

    .filter-category__pr {
        padding-right: 11px
    }

    .filter-category__pl {
        padding-left: 11px
    }

    .filter-category__images img {
        width: 28px;
        height: 28px
    }

    .filter-category__images img:nth-child(2) {
        margin-left: -10px
    }

    .filter-category__images img:nth-child(3) {
        margin-left: -10px
    }

    .filter-category__img {
        width: 28px;
        height: 28px
    }

    .filter-category__icon {
        width: 28px;
        height: 28px
    }

    .filter-category_full {
        width: 100%;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center
    }
}

.audios, .posts, .videos {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

.audios-swiper, .posts-swiper, .videos-swiper {
    width: 100%
}

.audios-swiper {
    overflow: visible
}

.audios__list {
    width: 100%;
    display: grid;
    grid-gap: 20px;
    grid-template-columns:repeat(auto-fill, minmax(360px, 1fr))
}

.audios__list .audio-card {
    width: auto
}

@media screen and (max-width: 768px) {
    .audios__list {
        grid-template-columns:repeat(auto-fill, minmax(280px, 1fr))
    }
}

.posts__list {
    display: grid;
    grid-gap: 40px 17px;
    grid-template-columns:repeat(auto-fill, minmax(420px, 1fr))
}

@media screen and (max-width: 991px) {
    .posts__list {
        grid-template-columns:repeat(auto-fill, minmax(340px, 1fr))
    }
}

@media screen and (max-width: 768px) {
    .posts__list {
        grid-template-columns:repeat(auto-fill, minmax(280px, 1fr))
    }
}

.row {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-bottom: 40px
}

.row .links__list {
    margin-bottom: 0
}

.row .form-dropdown {
    width: auto
}

.row .form-dropdown__head {
    border: 1px solid rgba(13, 53, 72, .3);
    height: 48px;
    background: 0 0;
    padding: 16px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    cursor: pointer;
    gap: 10px;
    white-space: nowrap
}

.row .form-dropdown__head p {
    font-weight: 600;
    font-size: 16px;
    color: #000;
    opacity: .7
}

.row .form-dropdown__head path {
    stroke: #000
}

.row .form-dropdown__wrap {
    min-width: 210px;
    width: auto;
    right: 0;
    left: auto
}

.row .form-dropdown__list {
    white-space: nowrap
}

@media screen and (max-width: 768px) {
    .row {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        gap: 20px
    }

    .row .links {
        width: 100%
    }

    .row .form-dropdown {
        width: 100%
    }

    .row .form-dropdown__wrap {
        width: 100%;
        right: auto;
        left: 0
    }
}

.links {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
}

.links__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 8px;
    background: #fffFFF80;
    -webkit-backdrop-filter: blur(24px);
    backdrop-filter: blur(24px);
    border-radius: 99px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-bottom: 40px;
    padding: 4px;
    -ms-flex-item-align: start;
    align-self: flex-start
}

.links__item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    height: 48px;
    border-radius: 99px;
    color: rgba(0, 0, 0, .7);
    padding: 16px 22px;
    font-weight: 600;
    font-size: 16px;
    letter-spacing: -.2px;
    display: flex;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center
}

.links__item.active, .links__item:hover {
    background: #6543db;
    color: #fff
}

@media screen and (max-width: 768px) {
    .links__list {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        border-radius: 26px;
        width: 100%
    }

    .links__item {
        width: 100%
    }
}

.post-card {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 16px;
    height: auto
}

.post-card__img {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    border-radius: 24px;
    overflow: hidden;
    height: 456px;
    width: 100%;
    position: relative
}

.post-card__img img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -webkit-transition: all .8s ease;
    transition: all .8s ease
}

.post-card__meta {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 10px
}

.post-card__category {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    height: 48px;
    padding: 8px;
    border-radius: 99px;
    background: #fffFFF80;
    -webkit-backdrop-filter: blur(24px);
    backdrop-filter: blur(24px);
    color: #2c207c;
    font-weight: 600;
    font-size: 16px;
    letter-spacing: -.2px;
    cursor: pointer
}

.post-card__category-text {
    padding: 0 10px
}

.post-card__category_pr {
    padding-right: 13px
}

.post-card__category_pl {
    padding-left: 13px
}

.post-card__category-images {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

.post-card__category-images img {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    position: relative;
    -o-object-fit: cover;
    object-fit: cover
}

.post-card__category-images img:nth-child(2) {
    margin-left: -11px;
    z-index: 2
}

.post-card__category-images img:nth-child(3) {
    margin-left: -11px;
    z-index: 3
}

.post-card__category-img {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    -o-object-fit: cover;
    object-fit: cover
}

.post-card__content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 6px;
    margin-top: auto
}

.post-card__title {
    font-weight: 700;
    font-size: 22px;
    line-height: 122%;
    letter-spacing: -.2px;
    -webkit-transition: all .4s ease;
    transition: all .4s ease
}

.post-card__desc {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden
}

.post-card__play {
    width: 130px;
    height: 80px;
    background: radial-gradient(50% 50% at 50% 50%, rgba(245, 245, 245, .3) 34.62%, rgba(255, 255, 255, .5) 100%);
    -webkit-backdrop-filter: blur(15px);
    backdrop-filter: blur(15px);
    border-radius: 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    position: absolute;
    bottom: 24px;
    left: 24px;
    -webkit-transition: all .4s ease;
    transition: all .4s ease;
    opacity: 0
}

.post-card__play::after {
    content: "";
    width: 47px;
    height: 54px;
    background: url(../img/play.svg) no-repeat center
}

.post-card__time {
    position: absolute;
    bottom: 32px;
    right: 56px;
    padding: 2px 8px;
    height: 32px;
    background: #00000080;
    border-radius: 7px;
    font-weight: 500;
    font-size: 16px;
    color: #fff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-transition: all .4s ease;
    transition: all .4s ease;
    opacity: 0
}

.post-card:hover .post-card__img img {
    -webkit-transform: scale(1.1);
    transform: scale(1.1)
}

.post-card:hover .post-card__play, .post-card:hover .post-card__time {
    opacity: 1
}

.post-card:hover .post-card__title {
    color: #2c207c
}

@media screen and (max-width: 768px) {
    .post-card__img {
        height: 250px
    }

    .post-card__category {
        height: 44px;
        padding: 7px;
        font-size: 14px
    }

    .post-card__category-text {
        padding: 0 9px
    }

    .post-card__category_pr {
        padding-right: 11px
    }

    .post-card__category_pl {
        padding-left: 11px
    }

    .post-card__category-images img {
        width: 28px;
        height: 28px
    }

    .post-card__category-images img:nth-child(2) {
        margin-left: -9px
    }

    .post-card__category-images img:nth-child(3) {
        margin-left: -9px
    }

    .post-card__category-img {
        width: 28px;
        height: 28px
    }

    .post-card__desc {
        -webkit-line-clamp: 4
    }

    .post-card__content {
        margin-top: 0
    }

    .post-card__play {
        left: 50%;
        top: 50%;
        -webkit-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%)
    }

    .post-card__time {
        bottom: 20px;
        right: 20px
    }
}

.audio-card {
    background: #fffFFF80;
    padding: 45px 26px;
    padding-right: 52px;
    width: 580px;
    border-radius: 24px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    gap: 20px;
    height: auto
}

.audio-card__img {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    -o-object-fit: cover;
    object-fit: cover
}

.audio-card__content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    width: calc(100% - 56px);
    max-width: 445px;
    gap: 2px
}

.audio-card__desc {
    line-height: 160%
}

.audio-card__title {
    font-weight: 700;
    font-size: 22px;
    line-height: 122%;
    letter-spacing: -.2px;
    -webkit-transition: all .4s ease;
    transition: all .4s ease
}

.audio-card__meta {
    color: #999
}

.breadcrumbs {
    margin-bottom: 60px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 8px;
    color: #999
}

.breadcrumbs__link:hover {
    color: #2c207c
}

@media screen and (max-width: 768px) {
    .breadcrumbs__item:last-child {
        display: none
    }
}

.post__title {
    font-weight: 400;
    font-size: 45px;
    line-height: 145%;
    letter-spacing: -.8px;
    margin-bottom: 33px;
    color: #2c207c
}

.post__head {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    margin-bottom: 40px
}

.post__meta {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 10px;
    width: calc(100% - 190px);
    margin-bottom: 33px;
    position: relative;
    z-index: 3
}

.post__meta-inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 10px
}

.post__category {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    height: 48px;
    padding: 8px;
    border-radius: 99px;
    background: #fffFFF80;
    color: #2c207c;
    font-weight: 600;
    font-size: 16px;
    letter-spacing: -.2px;
    cursor: pointer;
    position: relative;
    z-index: 2
}

.post__category-text {
    padding: 0 10px
}

.post__category_pr {
    padding-right: 13px
}

.post__category_pl {
    padding-left: 13px
}

.post__category-images {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

.post__category-images img {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    position: relative;
    -o-object-fit: cover;
    object-fit: cover
}

.post__category-images img:nth-child(2) {
    margin-left: -11px;
    z-index: 2
}

.post__category-images img:nth-child(3) {
    margin-left: -11px;
    z-index: 3
}

.post__category-img {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    -o-object-fit: cover;
    object-fit: cover
}

.post__media {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    position: relative;
    min-height: 56px
}

.post__img {
    width: 100%;
    height: 543px;
    -o-object-fit: cover;
    object-fit: cover;
    border-radius: 24px
}

.post__poster {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    cursor: pointer;
    z-index: 2;
    -webkit-transition: all .4s ease;
    transition: all .4s ease
}

.post__poster.hide {
    opacity: 0;
    pointer-events: none
}

.post__video {
    width: 100%;
    height: 543px;
    -o-object-fit: cover;
    object-fit: cover;
    border-radius: 24px
}

.post__audio {
    width: 100%;
    padding: 24px 26px
}

.post__audio-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    background: #6543db url(../img/play.svg) no-repeat center;
    background-size: 16px 20px;
    margin-top: 40px
}

.post__play {
    width: 130px;
    height: 80px;
    background: radial-gradient(50% 50% at 50% 50%, rgba(245, 245, 245, .3) 34.62%, rgba(255, 255, 255, .5) 100%);
    -webkit-backdrop-filter: blur(15px);
    backdrop-filter: blur(15px);
    border-radius: 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    position: absolute;
    bottom: 24px;
    left: 24px
}

.post__play::after {
    content: "";
    width: 47px;
    height: 54px;
    background: url(../img/play.svg) no-repeat center
}

.post__time {
    position: absolute;
    bottom: 32px;
    right: 56px;
    padding: 2px 8px;
    height: 32px;
    background: #00000080;
    border-radius: 7px;
    font-weight: 500;
    font-size: 16px;
    color: #fff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center
}

.post__date {
    position: absolute;
    right: 0;
    top: 9px
}

.post__content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    padding: 60px;
    background: radial-gradient(50% 50% at 50% 50%, rgba(245, 245, 245, .3) 34.62%, rgba(255, 255, 255, .5) 100%);
    -webkit-backdrop-filter: blur(24px);
    backdrop-filter: blur(24px);
    border-radius: 32px;
    gap: 12px;
    font-size: 22px;
    line-height: 170%;
    font-weight: 400
}

.post__content_small {
    padding: 32px
}

.post__content_small .post-btn {
    margin-top: 0;
    margin-bottom: 20px
}

.post__content_small .post__wrap p {
    font-size: 14px;
    line-height: 150%
}

.post__content_small .post__wrap p:not(:last-child) {
    margin-bottom: 16px
}

.post__content .h3 {
    margin-top: 50px;
    margin-bottom: 10px;
    color: #2c207c
}

.post__content .h3:first-child {
    margin-top: 0
}

.post__content p {
    line-height: 170%
}

.post__content-inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start
}

.post__content ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 6px;
    font-size: 22px;
    line-height: 170%
}

.post__content ul li {
    position: relative;
    padding-left: 24px
}

.post__content ul li::before {
    content: "";
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: #000;
    margin: 10px;
    position: absolute;
    left: -3px;
    top: 1px
}

.post-btn {
    margin-bottom: 10px;
    border: 1px solid rgba(13, 53, 72, .3);
    height: 48px;
    background: 0 0;
    padding: 16px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    cursor: pointer;
    gap: 10px;
    white-space: nowrap;
    font-weight: 600;
    font-size: 16px;
    color: #000;
    opacity: .7;
    border-radius: 49px;
    margin-top: 30px;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between
}

.post-btn path {
    stroke: #000
}

.post-btn .svg {
    -webkit-transition: all .4s ease;
    transition: all .4s ease
}

.post-btn.active .svg {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg)
}

.post__wrap {
    padding: 0 !important;
    width: 100% !important;
    font-size: 18px;
    line-height: 160%
}

@media screen and (max-width: 768px) {
    .post__title {
        font-size: 26px;
        line-height: 120%;
        letter-spacing: -.2px;
        margin-bottom: 40px
    }

    .post__head {
        margin-bottom: 16px
    }

    .post__meta {
        width: 100%;
        margin-bottom: 16px
    }

    .post__category {
        height: 44px;
        padding: 7px;
        font-size: 14px
    }

    .post__category-text {
        padding: 0 9px
    }

    .post__category_pr {
        padding-right: 11px
    }

    .post__category_pl {
        padding-left: 11px
    }

    .post__category-images img {
        width: 28px;
        height: 28px
    }

    .post__category-images img:nth-child(2) {
        margin-left: -9px
    }

    .post__category-images img:nth-child(3) {
        margin-left: -9px
    }

    .post__category-img {
        width: 28px;
        height: 28px
    }

    .post__media {
        margin-bottom: 16px
    }

    .post__img {
        height: 250px
    }

    .post__video {
        height: 250px
    }

    .post__play {
        left: 50%;
        top: 50%;
        -webkit-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%)
    }

    .post__time {
        bottom: 20px;
        right: 20px
    }

    .post-btn {
        width: 100%
    }

    .post__date {
        position: static;
        font-size: 16px
    }

    .post__audio {
        margin-bottom: 20px;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column
    }

    .post__audio .audio-card__content {
        width: 100%
    }

    .post__audio-btn {
        margin-top: 16px
    }

    .post__content {
        padding: 16px;
        border-radius: 24px;
        gap: 6px;
        font-size: 18px;
        line-height: 150%
    }

    .post__content .h3 {
        margin-top: 34px;
        margin-bottom: 14px
    }

    .post__content ul {
        font-size: 18px;
        line-height: 150%
    }

    .post__content ul li {
        word-break: break-all
    }

    .post__content ul li::before {
        top: 1px
    }
}

.favorite-btn {
    position: absolute;
    top: 32px;
    right: 28px;
    width: 56px;
    height: 56px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    border-radius: 50%;
    background: radial-gradient(50% 50% at 50% 50%, rgba(245, 245, 245, .3) 34.62%, rgba(255, 255, 255, .5) 100%);
    -webkit-backdrop-filter: blur(15px);
    backdrop-filter: blur(15px);
    cursor: pointer;
    z-index: 5
}

@media screen and (max-width: 768px) {
    .favorite-btn {
        top: 15px;
        right: 12px
    }
}

.author-btn {
    cursor: pointer;
    -webkit-transition: all .4s ease;
    transition: all .4s ease
}

.author-btn.hide {
    display: none
}

.author-btn:hover {
    background: #6543db;
    color: #fff
}

.author-btn:hover path {
    stroke: #fff
}

.author-item {
    display: none;
    padding: 0 !important
}

.author-modal {
    position: absolute;
    width: 700px;
    background: radial-gradient(50% 50% at 50% 50%, rgba(245, 245, 245, .3) 34.62%, rgba(255, 255, 255, .5) 100%);
    -webkit-backdrop-filter: blur(24px);
    backdrop-filter: blur(24px);
    border-radius: 24px;
    padding: 30px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    gap: 40px;
    left: 0;
    top: calc(100% + 10px);
    z-index: 10;
    opacity: 0;
    pointer-events: none;
    -webkit-transition: all .4s ease;
    transition: all .4s ease
}

.author-modal__img {
    width: 174px;
    height: 174px;
    border-radius: 50%;
    -o-object-fit: cover;
    object-fit: cover
}

.author-modal__inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    gap: 20px;
    width: calc(100% - 214px)
}

.author-modal__title {
    font-weight: 700;
    font-size: 22px;
    line-height: 122%;
    letter-spacing: -.2px;
    color: #2c207c
}

.author-modal__desc {
    color: #000
}

.author-modal-btn.inactive {
    opacity: .4;
    z-index: -1
}

.author-modal-btn.active .author-modal {
    opacity: 1;
    pointer-events: all
}

@media screen and (max-width: 768px) {
    .author-modal {
        width: calc(100vw - 16px);
        top: calc(100% + 8px);
        left: -8px;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        padding: 30px
    }

    .author-modal__inner {
        width: 100%
    }
}

.default {
    background: radial-gradient(50% 50% at 50% 50%, rgba(245, 245, 245, .3) 34.62%, rgba(255, 255, 255, .5) 100%);
    -webkit-backdrop-filter: blur(24px);
    backdrop-filter: blur(24px);
    padding: 60px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 40px;
    border-radius: 32px
}

.default p {
    line-height: 160%;
    letter-spacing: -.2px
}

@media screen and (max-width: 768px) {
    .default {
        padding: 16px
    }
}

.information {
    background: radial-gradient(50% 50% at 50% 50%, rgba(245, 245, 245, .3) 34.62%, rgba(255, 255, 255, .5) 100%);
    -webkit-backdrop-filter: blur(24px);
    backdrop-filter: blur(24px);
    padding: 60px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 40px;
    border-radius: 32px
}

.information p {
    font-size: 22px;
    line-height: 170%;
    letter-spacing: -.2px;
    max-width: 980px
}

.information strong {
    font-weight: 700
}

@media screen and (max-width: 768px) {
    .information {
        padding: 16px
    }

    .information p {
        font-size: 18px;
        line-height: 150%
    }
}

.use {
    background: radial-gradient(50% 50% at 50% 50%, rgba(245, 245, 245, .3) 34.62%, rgba(255, 255, 255, .5) 100%);
    -webkit-backdrop-filter: blur(24px);
    backdrop-filter: blur(24px);
    padding: 60px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 50px;
    border-radius: 32px
}

.use .h3 {
    color: #2c207c
}

.use__list {
    display: grid;
    grid-gap: 46px;
    grid-template-columns:repeat(auto-fill, minmax(280px, 1fr))
}

.use__item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 12px
}

@media screen and (max-width: 768px) {
    .use {
        padding: 16px
    }

    .use p {
        font-size: 18px;
        line-height: 150%
    }
}

.why {
    background: radial-gradient(50% 50% at 50% 50%, rgba(245, 245, 245, .3) 34.62%, rgba(255, 255, 255, .5) 100%);
    -webkit-backdrop-filter: blur(24px);
    backdrop-filter: blur(24px);
    padding: 60px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 50px;
    border-radius: 32px
}

.why .h3 {
    color: #2c207c
}

.why__list {
    display: grid;
    grid-gap: 46px;
    grid-template-columns:repeat(auto-fill, minmax(280px, 1fr))
}

.why__item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    padding-left: 20px;
    border-left: 3px solid #6f46dc
}

@media screen and (max-width: 768px) {
    .why {
        padding: 16px
    }

    .why p {
        font-size: 18px;
        line-height: 150%
    }
}

.contains {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

.contains-swiper {
    overflow: visible;
    width: 100%
}

.contains-card {
    width: 632px;
    background: radial-gradient(50% 50% at 50% 50%, rgba(245, 245, 245, .3) 34.62%, rgba(255, 255, 255, .5) 100%);
    padding: 40px 32px 32px;
    border-radius: 24px;
    height: auto
}

.contains-card__head {
    margin-bottom: 14px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    color: #2c207c;
    gap: 20px
}

.contains-card__number {
    font-size: 143px;
    line-height: 100%;
    font-weight: 300
}

.contains-card__title {
    padding-bottom: 16px
}

.contains-card__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 12px;
    margin-top: auto
}

.contains-card__item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 16px 20px;
    background: radial-gradient(50% 50% at 50% 50%, rgba(245, 245, 245, .3) 34.62%, rgba(255, 255, 255, .5) 100%);
    border-radius: 32px;
    gap: 10px
}

.contains-card__item-text {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

.contains-card__item-text span {
    color: #999
}

.contains-card__item .btn {
    margin-left: auto
}

@media screen and (max-width: 768px) {
    .contains-card {
        background: radial-gradient(50% 50% at 50% 50%, rgba(245, 245, 245, .3) 34.62%, rgba(255, 255, 255, .5) 100%);
        padding: 16px
    }

    .contains-card__head {
        margin-bottom: 40px;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        gap: 10px
    }

    .contains-card__title {
        padding-bottom: 0;
        font-size: 26px
    }

    .contains-card__item {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        padding: 20px;
        border-radius: 24px;
        height: 80px;
        color: #fff;
        background: #6543db
    }

    .contains-card__item-text span {
        color: #fff
    }

    .contains-card__item circle, .contains-card__item path {
        stroke: #fff
    }

    .contains-card__item .btn {
        display: none
    }
}

.tabs-nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 10px
}

.tabs-nav__item {
    padding: 8px 10px;
    border: 1px solid #fffFFF80;
    font-weight: 700;
    border-radius: 7px;
    cursor: pointer;
    -webkit-transition: all .4s ease;
    transition: all .4s ease;
    font-size: 16px;
    line-height: 28px
}

.tabs-nav__item.active, .tabs-nav__item:hover {
    background-color: #fff;
    color: #6543db
}

.tabs-content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
}

.tabs-content__item {
    display: none
}

.tabs-content__item.active {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
}

.how {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 16px
}

.how__left {
    padding: 50px 40px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    width: calc(50% - 8px);
    border-radius: 32px;
    color: #fff;
    gap: 60px;
    background: url(../img/bg2.svg) no-repeat center/cover
}

.how__left .h3 {
    max-width: 460px
}

.how__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 30px
}

.how__item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 20px
}

.how__desc {
    max-width: 300px
}

.how__right {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 20px;
    width: calc(50% - 8px)
}

.how__card {
    min-height: 300px;
    border-radius: 32px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 24px;
    padding: 33px
}

.how__card-left {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 20px;
    width: calc(100% - 150px)
}

.how__card-number {
    color: #6543db;
    font-size: 87px;
    line-height: 80px
}

.how__card-number span {
    font-size: 42px;
    line-height: 36px
}

.how__card:first-child {
    background: #6543DB33
}

.how__card:nth-child(2) {
    background: #fff
}

@media screen and (max-width: 768px) {
    .how {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column
    }

    .how__left {
        padding: 36px 24px;
        min-height: 1px;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        width: 100%;
        gap: 40px
    }

    .how__right {
        width: 100%
    }

    .how__card {
        padding: 24px;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column
    }

    .how__card-left {
        width: 100%
    }
}

.farma-wrap {
    color: #fff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 20px;
    position: relative;
    z-index: 20;
    display: none
}

.farma-wrap.open {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
}

.farma-wrap .h1 {
    margin-bottom: 10px
}

.farma-wrap__desc {
    font-size: 20px;
    line-height: 150%
}

.farma-wrap .close-btn {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #0d35484D;
    -webkit-backdrop-filter: blur(24px);
    backdrop-filter: blur(24px);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    position: absolute;
    right: 0;
    top: -134px;
    cursor: pointer;
    z-index: 20;
    -webkit-transition: all .4s ease;
    transition: all .4s ease
}

.farma-wrap .close-btn path {
    stroke: #fff
}

.farma-wrap .close-btn:hover {
    background-color: #2c207c
}

@media screen and (max-width: 768px) {
    .farma-wrap {
        padding-bottom: 16px;
        padding-left: 14px;
        padding-right: 14px;
        gap: 16px
    }

    .farma-wrap__title.h1 {
        font-size: 26px;
        line-height: 120%
    }

    .farma-wrap__title.h3 {
        font-size: 18px;
        line-height: 150%
    }

    .farma-wrap__desc {
        font-size: 16px
    }

    .farma-wrap .close-btn {
        right: 10px;
        top: -96px
    }
}

.s412 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    text-align: center;
    color: #fff;
    gap: 32px;
    position: relative;
    z-index: 4
}

.s412__title {
    font-weight: 400;
    font-size: 45px;
    line-height: 145%;
    max-width: 800px
}

.s412__desc {
    font-size: 14px;
    line-height: 140%;
    text-align: left
}

@media screen and (max-width: 768px) {
    .s412 {
        padding-left: 14px;
        padding-right: 14px;
        padding-bottom: 16px
    }

    .s412__title {
        font-size: 26px;
        line-height: 110%
    }

    .s412__img {
        max-width: 160px
    }
}

.profile-info {
    position: absolute;
    z-index: 5;
    left: 0;
    top: calc(100% + 20px);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    width: 100%;
    max-width: 630px;
    background: #fffFFF99;
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    padding: 24px;
    opacity: 0;
    pointer-events: none;
    -webkit-transition: all .4s ease;
    transition: all .4s ease
}

.profile-info__tabs {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%
}

.profile-info__tab {
    display: none;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    width: 100%
}

.profile-info__tab .form-column {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 0 8px
}

.profile-info__tab .half {
    width: calc(50% - 4px)
}

.profile-info__tab.active {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
}

.profile-info__img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    -o-object-fit: cover;
    object-fit: cover;
    margin-bottom: 32px
}

.profile-info__upload {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: relative
}

.profile-info .upload {
    position: absolute;
    left: 0;
    top: 0;
    width: 120px;
    height: 120px;
    z-index: 1;
    border-radius: 50%
}

.profile-info .upload input {
    display: none
}

.profile-info .upload-handler {
    background: #0000004D;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    border-radius: 50%;
    width: 100%;
    height: 100%;
    cursor: pointer;
    opacity: 0;
    -webkit-transition: all .4s ease;
    transition: all .4s ease
}

.profile-info .upload-handler::after {
    content: "";
    width: 48px;
    height: 40px;
    background: url(../img/image.svg) no-repeat center/cover
}

.profile-info .upload:hover .upload-handler {
    opacity: 1
}

.profile-info__title {
    font-weight: 700;
    font-size: 26px;
    line-height: 110%;
    margin-bottom: 2px;
    color: #2c207c;
    max-width: 290px
}

.profile-info__desc {
    margin-bottom: 32px
}

.profile-info.open {
    opacity: 1;
    pointer-events: all
}

@media screen and (max-width: 768px) {
    .profile-info__img {
        margin-bottom: 24px
    }

    .profile-info__desc {
        margin-bottom: 24px
    }

    .profile-info .upload {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center
    }

    .profile-info .upload-handler {
        width: 56px;
        height: 56px;
        opacity: 1;
        -webkit-transform: translateX(60px);
        transform: translateX(60px)
    }

    .profile-info .upload-handler::after {
        width: 30px;
        height: 25px
    }

    .profile-info__tab .half {
        width: 100%
    }

    .profile-info__tab.active {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex
    }
}
