.site-main_index{
    padding: 0!important;
}
.hero {
    position: relative;
    background: url("../images/main-bg.webp") no-repeat center bottom, #000;
    background-size: 1312px;
}
.hero .hero__content {
    position: relative;
    padding: 173px 0 172px;
}
@media (max-width: 1199px) {
    .hero .hero__content {
        padding: 100px 0;
    }
}
@media (max-width: 991px) {
    .hero .hero__content {
        padding: 50px 0 270px;
    }
}
@media (max-width: 767px) {
    .hero .hero__content {
        padding: 50px 0 378px;
    }
}
.hero .hero__content:before {
    content: '';
    display: block;
    width: 1585px;
    height: 216px;
    background: url("../images/VYSOTSKY.svg") no-repeat center;
    background-size: contain;
    position: absolute;
    top: 50px;
    right: -750px;
}
@media (max-width: 991px) {
    .hero .hero__content:before {
        top: auto;
        bottom: 50px;
    }
}
@media (max-width: 575px) {
    .hero .hero__content:before {
        width: 947px;
        height: 129px;
        right: auto;
        left: -30px;
        bottom: 228px;
    }
}
@media (max-width: 575px) {
    .hero .hero__content:after {
        content: '';
        display: block;
        background: url("../images/VYSOTSKY.svg") no-repeat center;
        background-size: contain;
        position: absolute;
        bottom: 79px;
        right: -30px;
        width: 947px;
        height: 129px;
    }
}
.hero .hero__title {
    position: relative;
    z-index: 5;
    font-size: 40px;
    font-weight: 800;
    line-height: 1.25;
    margin: 0 0 30px;
}
@media (max-width: 1199px) {
    .hero .hero__title {
        font-size: 34px;
    }
}
@media (max-width: 575px) {
    .hero .hero__title {
        font-size: 24px;
        margin-bottom: 20px;
    }
}
.hero .hero__subtitle {
    position: relative;
    z-index: 5;
    max-width: 635px;
    font-size: 28px;
    line-height: 1.25;
    margin: 0;
}
@media (max-width: 1199px) {
    .hero .hero__subtitle {
        font-size: 24px;
    }
}
@media (max-width: 991px) {
    .hero .hero__subtitle {
        max-width: 300px;
        font-size: 18px;
        line-height: 1.28;
    }
}
.hero .hero__image {
    width: 636px;
    position: absolute;
    z-index: 4;
    bottom: 0;
    right: -60px;
    pointer-events: none;
}
@media (max-width: 1199px) {
    .hero .hero__image {
        width: 450px;
    }
}
@media (max-width: 991px) {
    .hero .hero__image {
        width: 460px;
    }
}
@media (max-width: 767px) {
    .hero .hero__image {
        width: 500px;
        right: -130px;
    }
}
@media (max-width: 575px) {
    .hero .hero__image {
        width: 370px;
        right: -60px;
    }
}

.mk {
    position: relative;
    background: #fed700;
    padding: 40px 0;
}
@media (max-width: 991px) {
    .mk {
        padding: 24px 0;
    }
}
.mk .mk__content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 225px;
    font-size: 20px;
    line-height: 1.3;
    color: #000;
}
@media (max-width: 1199px) {
    .mk .mk__content {
        font-size: 18px;
        gap: 24px;
    }
}
@media (max-width: 991px) {
    .mk .mk__content {
        flex-direction: column;
        font-size: 16px;
        text-align: center;
    }
}
@media (max-width: 575px) {
    .mk .mk__text {
        line-height: 1.5;
        margin: 0 -20px;
    }
}

.update {
    background: #000;
    color: #fff;
    padding: 80px 0;
}
@media (max-width: 991px) {
    .update {
        padding: 50px 0;
    }
}
.update .update__title {
    text-align: center;
    margin-bottom: 40px;
}
@media (max-width: 991px) {
    .update .update__title {
        margin-bottom: 24px;
    }
}
.update .articles {
    display: flex;
    gap: 24px;
}
@media (max-width: 991px) {
    .update .articles {
        flex-wrap: wrap;
    }
}
.update .article-card{
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 15px;
    color: #fff;
    transition: 0.3s;
}
.update .article-card__image {
    position: relative;
    overflow: hidden;
    border: solid 1px #4f4f4f;
    border-radius: 16px;
    padding-bottom: 66%;
    transition: 0.3s;
}
@media (max-width: 991px) {
    .update .article-card {
        width: calc(50% - 12px);
    }
}
@media (max-width: 575px) {
    .update .article-card {
        width: 100%;
    }
}
.update .article-card__image:after{
    content: '⟶';
    position: absolute;
    z-index: 2;
    right: 20px;
    bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    font-size: 26px;
    font-weight: 800;
    border-radius: 50%;
    background: #fed700;
    color: #000;
    transform: rotateZ(45deg);
    transition: 0.3s;
}
.update .article-card__image img{
    position: absolute;
    z-index: 1;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.update .article-card:hover{
    transform: translateY(-4px);
}
.update .article-card:hover .article-card__image:after{
    transform: rotateZ(-135deg);
}
.update .article-card:hover .article-card__title{
    color: #fed700;
}
.update .article-card__title{
    font-size: 16px;
    font-weight: 700;
    line-height: 1.25;
    height: calc(3em * 1.25);
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    transition: 0.3s;
}
.owner {
    background: #000;
    padding: 80px 0;
}
@media (max-width: 991px) {
    .owner {
        padding: 50px 0;
    }
}
.owner .owner__content {
    display: flex;
    align-items: stretch;
    gap: 32px;
    margin-bottom: 40px;
}
@media (max-width: 991px) {
    .owner .owner__content {
        flex-direction: column;
        gap: 24px;
        margin-bottom: 24px;
    }
}
.owner .owner__image {
    max-width: 584px;
    width: 100%;
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
    border-radius: 20px;
}
@media (max-width: 1199px) {
    .owner .owner__image {
        max-width: 315px;
    }
}
@media (max-width: 991px) {
    .owner .owner__image {
        max-width: 100%;
        border-radius: 16px;
    }
}
.owner .owner__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.owner .owner__cards {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    gap: 24px;
}
@media (max-width: 575px) {
    .owner .owner__cards {
        gap: 16px;
    }
}
.owner .owner-card {
    width: calc(50% - 12px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 16px;
    background: #262626;
    box-shadow: inset 0 0 0 1px #4F4F4F;
    border-radius: 16px;
    padding: 24px 16px;
}
@media (max-width: 991px) {
    .owner .owner-card {
        align-items: center;
        text-align: center;
    }
}
@media (max-width: 575px) {
    .owner .owner-card {
        width: calc(50% - 8px);
        gap: 8px;
        border-radius: 8px;
        padding: 16px 8px;
    }
    .owner .owner-card:nth-child(2) {
        order: 1;
    }
    .owner .owner-card:nth-child(5) {
        order: 2;
    }
    .owner .owner-card:nth-child(6) {
        order: 3;
    }
    .owner .owner-card:nth-child(4) {
        order: 4;
    }
}
.owner .owner-card .owner-card__num {
    font-size: 40px;
    line-height: 1.25;
}
@media (max-width: 575px) {
    .owner .owner-card .owner-card__num {
        font-size: 24px;
    }
}
.owner .owner-card .owner-card__text {
    font-size: 16px;
    line-height: 1.5;
}
@media (max-width: 575px) {
    .owner .owner-card .owner-card__text {
        font-size: 14px;
        line-height: 1.43;
    }
}
.owner .press-section {
    background: #fff;
    border-radius: 24px;
    padding: 35px;
}
.owner .press-title {
    font-size: 20px;
    font-weight: 800;
    color: #000;
    margin-bottom: 25px;
    text-align: left;
}
.owner .press-logos {
    display: flex;
    flex-wrap: wrap;
    row-gap: 20px;
    align-items: center;
    justify-content: space-between;
}
.owner .press-logo {
    display: flex;
    align-items: center;
}
@media (min-width: 768px) {
    .owner {
        /* Размеры колонок */
        /* Выравнивание внутри колонок */
    }
    .owner .logo-forbes {
        width: 19%;
    }
    .owner .logo-ok {
        width: 9.4%;
    }
    .owner .logo-digital {
        width: 28.16%;
    }
    .owner .logo-authority {
        width: 31%;
    }
    .owner .logo-marketer {
        width: 13.6%;
    }
    .owner .logo-bell {
        width: 13.6%;
    }
    .owner .logo-founder {
        width: 17.3%;
    }
    .owner .logo-entrepreneur {
        width: 20%;
    }
    .owner .logo-inc {
        width: 13.6%;
    }
    .owner .logo-forbes {
        justify-content: flex-start;
    }
    .owner .logo-ok {
        justify-content: center;
    }
    .owner .logo-digital {
        justify-content: center;
    }
    .owner .logo-authority {
        justify-content: flex-end;
    }
    .owner .logo-marketer {
        justify-content: flex-start;
    }
    .owner .logo-bell {
        justify-content: center;
    }
    .owner .logo-founder {
        justify-content: center;
    }
    .owner .logo-entrepreneur {
        justify-content: center;
    }
    .owner .logo-inc {
        justify-content: flex-end;
    }
}
@media (max-width: 767px) {
    .owner {
        /* Размеры колонок для мобилки */
        /* Порядок элементов (Order) согласно макету */
        /* Уменьшение высоты логотипов для мобилок */
    }
    .owner .press-section {
        padding: 19px 16px;
        border-radius: 16px;
    }
    .owner .press-title {
        font-size: 18px;
        margin-bottom: 15px;
    }
    .owner .press-logos {
        row-gap: 10px;
    }
    .owner .logo-forbes, .owner .logo-authority, .owner .logo-digital, .owner .logo-ok, .owner .logo-bell, .owner .logo-entrepreneur {
        width: 50%;
    }
    .owner .logo-marketer, .owner .logo-inc, .owner .logo-founder {
        width: 33.333%;
    }
    .owner .logo-forbes {
        width: 40%;
        order: 1;
        justify-content: flex-start;
    }
    .owner .logo-authority {
        width: 55%;
        order: 2;
        justify-content: flex-end;
    }
    .owner .logo-digital {
        width: 65%;
        order: 3;
        justify-content: flex-start;
    }
    .owner .logo-ok {
        width: 30%;
        order: 4;
        justify-content: flex-end;
    }
    .owner .logo-marketer {
        order: 5;
        justify-content: flex-start;
    }
    .owner .logo-inc {
        order: 6;
        justify-content: center;
    }
    .owner .logo-founder {
        order: 7;
        justify-content: flex-end;
    }
    .owner .logo-bell {
        width: 45%;
        order: 8;
        justify-content: flex-start;
    }
    .owner .logo-entrepreneur {
        width: 55%;
        order: 9;
        justify-content: flex-end;
    }
    .owner .logo-marketer, .owner .logo-founder {
        height: 80px;
    }
    .owner .logo-digital {
        height: 60px;
    }
    .owner .logo-bell, .owner .logo-entrepreneur {
        height: 60px;
    }
}
.progress {
    background: #000;
    padding: 80px 0;
}
@media (max-width: 991px) {
    .progress {
        padding: 50px 0;
    }
}
.progress .progress__title {
    text-align: center;
    margin-bottom: 24px;
}
@media (max-width: 991px) {
    .progress .progress__title {
        margin-bottom: 16px;
    }
}
.progress .progress__subtitle {
    max-width: 850px;
    font-size: 20px;
    line-height: 1.3;
    text-align: center;
    margin: 0 auto 64px;
}
@media (max-width: 991px) {
    .progress .progress__subtitle {
        font-size: 18px;
        margin-bottom: 32px;
    }
}
.progress .progress__content {
    position: relative;
    display: flex;
    align-items: flex-start;
    gap: 20px;
}
@media (max-width: 991px) {
    .progress .progress__content {
        flex-direction: column;
    }
}
.progress .progress__content:before {
    content: '';
    display: block;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #000000 5%, #FED700 50%, #000000 95%);
    position: absolute;
    top: 15px;
    left: 0;
}
@media (max-width: 991px) {
    .progress .progress__content:before {
        width: 3px;
        height: 100%;
        top: 0;
        left: 15px;
        background: linear-gradient(#000000 5%, #FED700 50%, #000000 95%);
    }
}
.progress .progress__item {
    width: 100%;
    position: relative;
    z-index: 5;
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 16px;
    line-height: 1.5;
    text-align: center;
    gap: 16px;
}
@media (max-width: 991px) {
    .progress .progress__item {
        flex-direction: row;
        align-items: center;
        text-align: left;
        line-height: 1.49;
    }
}
.progress .progress__item:before {
    content: '';
    display: block;
    width: 30px;
    height: 30px;
    flex-shrink: 0;
    box-shadow: 2px 1px 29.1px 0px #FED70069;
    background: #fed700;
    border-radius: 50%;
}
.progress .progress__item .progress__year {
    font-size: 20px;
    line-height: 1.3;
    color: #fed700;
}
.books {
    background: #000;
    padding: 80px 0;
}
@media (max-width: 991px) {
    .books {
        padding: 50px 0;
    }
}
.books .books__title {
    text-align: center;
    margin-bottom: 40px;
}
@media (max-width: 991px) {
    .books .books__title {
        margin-bottom: 24px;
    }
}
.books .books__content {
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    gap: 24px;
}
@media (max-width: 991px) {
    .books .books__content {
        flex-wrap: wrap;
    }
}
.books .book-card {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 8px 12px 24px;
    background: #262626;
    box-shadow: inset 0 0 0 1px #4F4F4F;
    border-radius: 16px;
}
@media (max-width: 991px) {
    .books .book-card {
        width: calc(50% - 12px);
    }
}
@media (max-width: 575px) {
    .books .book-card {
        width: 100%;
        gap: 8px;
        padding: 8px 16px 15px;
    }
}
.books .book-card__image {
    width: 230px;
    height: 230px;
}
@media (max-width: 1199px) {
    .books .book-card__image {
        width: 190px;
        height: 190px;
    }
}
@media (max-width: 991px) {
    .books .book-card__image {
        width: 240px;
        height: 240px;
        margin: auto;
    }
}
@media (max-width: 767px) {
    .books .book-card__image {
        width: 220px;
        height: 220px;
    }
}
@media (max-width: 575px) {
    .books .book-card__image {
        width: 200px;
        height: 200px;
    }
}
.books .book-card__title {
    width: 100%;
    font-size: 20px;
    font-weight: 800;
    line-height: 1.3;
    text-align: center;
}
@media (max-width: 1199px) {
    .books .book-card__title {
        font-size: 16px;
    }
}
@media (max-width: 991px) {
    .books .book-card__title {
        font-size: 18px;
    }
}
.accelerator {
    background: #000;
    padding: 80px 0;
}
@media (max-width: 991px) {
    .accelerator {
        padding: 50px 0;
    }
}
.accelerator .accelerator__content {
    display: flex;
    align-items: stretch;
    gap: 32px;
}
@media (max-width: 991px) {
    .accelerator .accelerator__content {
        flex-direction: column;
        gap: 24px;
    }
}
.accelerator .accelerator__info {
    max-width: 690px;
    width: 100%;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
}
@media (max-width: 1199px) {
    .accelerator .accelerator__info {
        max-width: 500px;
    }
}
@media (max-width: 991px) {
    .accelerator .accelerator__info {
        max-width: 100%;
    }
}
.accelerator .accelerator__title {
    font-size: 20px;
    line-height: 1.3;
    margin-bottom: 24px;
}
@media (max-width: 991px) {
    .accelerator .accelerator__title {
        font-size: 18px;
    }
}
.accelerator .accelerator__list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.accelerator .accelerator__card {
    display: flex;
    flex-direction: column;
    background: #262626;
    box-shadow: inset 0 0 0 1px #4F4F4F;
    border-radius: 16px;
    padding: 16px 24px;
}
@media (max-width: 991px) {
    .accelerator .accelerator__card {
        align-items: center;
        text-align: center;
        padding: 16px;
    }
}
.accelerator .accelerator__card__value {
    font-size: 28px;
    font-weight: 800;
    line-height: 1.25;
    color: #FED700;
    margin-bottom: 4px;
}
@media (max-width: 575px) {
    .accelerator .accelerator__card__value {
        font-size: 20px;
    }
}
.accelerator .accelerator__card__title {
    font-size: 20px;
    font-weight: 800;
    line-height: 1.3;
    margin-bottom: 8px;
}
@media (max-width: 575px) {
    .accelerator .accelerator__card__title {
        font-size: 18px;
    }
}
.accelerator .accelerator__card__desc {
    font-size: 16px;
    line-height: 1.5;
}
@media (max-width: 575px) {
    .accelerator .accelerator__card__desc {
        line-height: 1.49;
    }
}
.accelerator .accelerator__video {
    position: relative;
    overflow: hidden;
    width: 100%;
    border-radius: 20px;
}
@media (max-width: 991px) {
    .accelerator .accelerator__video {
        padding-bottom: 140%;
        border-radius: 16px;
    }
}
.accelerator .accelerator__video video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    pointer-events: none;
}
.cases {
    position: relative;
    overflow: hidden;
    background: #000;
    padding: 80px 0;
}
@media (max-width: 991px) {
    .cases {
        padding: 50px 0;
    }
}
.cases .cases__heading {
    padding: 17px 200px 17px 0;
    margin-bottom: 40px;
}
@media (max-width: 767px) {
    .cases .cases__heading {
        padding: 0;
        margin-bottom: 24px;
    }
}
.cases .cases__title {
    margin: 0;
}
@media (max-width: 767px) {
    .cases .cases__title {
        text-align: center;
    }
}
.cases .cases__slider-wrap {
    position: relative;
}
.cases .cases__slider-wrap .cases__nav {
    margin: 0;
}
@media (min-width: 768px) {
    .cases .cases__slider-wrap .cases__nav {
        position: absolute;
        z-index: 5;
        top: -107px;
        right: 0;
        width: 148px;
    }
}
@media (max-width: 767px) {
    .cases .cases__slider-wrap .cases__nav {
        position: relative;
        z-index: 10;
    }
    .cases .cases__slider-wrap .cases__nav .custom-nav-btn {
        position: absolute;
        top: 160px;
    }
    .cases .cases__slider-wrap .cases__nav .cases-prev {
        left: 10px;
    }
    .cases .cases__slider-wrap .cases__nav .cases-next {
        right: 10px;
    }
}
.cases .cases__slider-wrap .swiper-slide {
    height: unset;
}
.cases .case {
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: stretch;
    height: 100%;
    gap: 20px;
    background: #262626;
    border-radius: 20px;
    padding: 20px;
}
@media (max-width: 1199px) {
    .cases .case {
        gap: 15px;
        padding: 15px;
    }
}
@media (max-width: 767px) {
    .cases .case {
        flex-direction: column;
    }
}
@media (max-width: 575px) {
    .cases .case {
        padding: 10px;
    }
}
.cases .case__image {
    position: relative;
    overflow: hidden;
    max-width: 285px;
    width: 100%;
    height: 100%;
    flex-shrink: 0;
    background: var(--white, #fff);
    border-radius: var(--radius-x, 20px);
    transition: 0.3s;
}
@media (max-width: 1199px) {
    .cases .case__image {
        max-width: 260px;
        align-self: flex-start;
    }
}
@media (max-width: 991px) {
    .cases .case__image {
        max-width: 270px;
        height: unset;
    }
}
@media (max-width: 767px) {
    .cases .case__image {
        align-self: center;
        max-width: 330px;
    }
}
.cases .case__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.cases .case__content {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 20px;
}
@media (max-width: 1199px) {
    .cases .case__content {
        gap: 15px;
    }
}
.cases .case__head {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    font-size: 20px;
    line-height: 1.35;
}
@media (max-width: 1199px) {
    .cases .case__head {
        gap: 2px;
        font-size: 18px;
    }
}
@media (max-width: 767px) {
    .cases .case__head {
        align-items: center;
        text-align: center;
    }
}
@media (max-width: 575px) {
    .cases .case__head {
        gap: 8px;
        font-size: 19px;
        line-height: 1.3;
    }
}
.cases .case__name {
    font-weight: 800;
}
.cases .case__company {
    position: relative;
    background: var(--yellow, #fed700);
    color: #000;
    border-radius: var(--radius-s, 5px);
    padding: 3px 7px;
}
@media (max-width: 575px) {
    .cases .case__company {
        width: 100%;
    }
}
.cases .case__progress {
    background: var(--yellow, #fed700);
    color: #000;
    border-radius: var(--radius-s, 5px);
    font-weight: 700;
    padding: 0 10px;
}
@media (min-width: 992px) {
    .cases .case__progress {
        position: absolute;
        top: 0;
        right: 0;
    }
}
@media (max-width: 991px) {
    .cases .case__progress {
        padding: 1px 10px;
        margin-top: 6px;
    }
}
.cases .case__info {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: stretch;
    gap: 20px;
}
@media (max-width: 1199px) {
    .cases .case__info {
        gap: 15px;
    }
}
@media (max-width: 991px) {
    .cases .case__info {
        flex-direction: column;
    }
}
@media (max-width: 575px) {
    .cases .case__info {
        gap: 10px;
    }
}
.cases .info-card {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
    background: #323232;
    border-radius: 20px;
    padding: 20px 20px 30px;
}
@media (max-width: 1199px) {
    .cases .info-card {
        padding: 15px;
    }
}
@media (max-width: 575px) {
    .cases .info-card {
        gap: 14px;
        border-radius: var(--radius-l, 15px);
    }
}
.cases .info-card__title {
    font-size: 20px;
    line-height: 1.4;
    font-weight: 800;
    border-radius: var(--radius-s, 5px);
    padding: 2px 15px;
}
@media (max-width: 575px) {
    .cases .info-card__title {
        font-size: 19px;
        line-height: 1.3;
        text-align: center;
    }
}
.cases .case__list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
    font-weight: 400;
    line-height: 1.5;
    padding: 0;
    margin: 0;
}
.cases .case__list li {
    position: relative;
    padding-left: 28px;
}
.cases .case__list li:before {
    content: '';
    position: absolute;
    top: 2px;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
    width: 18px;
    height: 18px;
    border-radius: 50%;
}
@media (max-width: 575px) {
    .cases .case__list li:before {
        top: 0;
    }
}
.cases .info-card_before .info-card__title {
    background: #fff;
    color: #000;
}
.cases .info-card_before .case__list li:before {
    content: '!';
    background: #fff;
    color: #000;
}
.cases .info-card_after .info-card__title {
    color: #000;
    background: var(--yellow, #fed700);
}
.cases .info-card_after .case__list li:before {
    background: url("../images/check.svg") no-repeat center, var(--yellow, #fed700);
    background-size: 10px;
}
.links {
    position: relative;
    overflow: hidden;
    background: #000;
    padding: 80px 0;
}
@media (max-width: 991px) {
    .links {
        padding: 50px 0;
    }
}
@media (min-width: 1200px) {
    .links .links__slider {
        overflow: visible;
    }
}
.links .link-card {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 316px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border-radius: 16px;
    background: #262626;
    box-shadow: inset 0 0 0 1px #4F4F4F;
    padding: 64px 24px 24px;
}
@media (max-width: 575px) {
    .links .link-card {
        height: 260px;
        border-radius: 8px;
        padding: 30px 20px 20px;
    }
}
.links .link-card.link-card__bb, .links .link-card.link-card__mc, .links .link-card.link-card__blog {
    background: url("../images/link-bb.svg") no-repeat left bottom, #262626;
    background-size: 263px;
}
.links .link-card.link-card__tg {
    background: url("../images/link-tg.svg") no-repeat left bottom, #262626;
    background-size: 297px;
}
.links .link-card.link-card__yt {
    background: url("../images/link-yt.svg") no-repeat left bottom, #262626;
    background-size: 320px;
}
.links .link-card.link-card__insta {
    background: url("../images/link-insta.svg") no-repeat left center, #262626;
    background-size: 260px;
}
.links .link-card.link-card__tt {
    background: url("../images/link-tt.svg") no-repeat left bottom, #262626;
    background-size: 320px;
}
.links .link-card__head {
    position: relative;
    z-index: 2;
    max-width: 180px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}
@media (max-width: 575px) {
    .links .link-card__head {
        max-width: 150px;
    }
}
.links .link-card__title {
    font-size: 24px;
    font-weight: 800;
    line-height: 1.25;
}
@media (max-width: 575px) {
    .links .link-card__title {
        font-size: 18px;
    }
}
.links .followers {
    position: relative;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.4;
    padding-left: 22px;
}
.links .followers:before {
    content: '';
    display: block;
    width: 14px;
    height: 14px;
    background: url("../images/users.svg") no-repeat center;
    background-size: contain;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    margin: auto;
}
.links .link-card__btn {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 156px;
    height: 36px;
    background: #fed700;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 800;
    color: #000;
}
.links .link-card__btn:hover {
    animation: pulse 1.5s infinite;
}
@media (max-width: 575px) {
    .links .link-card__btn {
        width: 137px;
        height: 36px;
    }
}
.links .link-card__image {
    position: absolute;
    bottom: 0;
    right: 0;
}
.links .link-card__bb .link-card__image {
    width: 248px;
}
@media (max-width: 575px) {
    .links .link-card__bb .link-card__image {
        width: 204px;
    }
}
.links .link-card__tg .link-card__image,
.links .link-card__yt .link-card__image,
.links .link-card__insta .link-card__image,
.links .link-card__tt .link-card__image {
    width: 173px;
    right: 30px;
}
@media (max-width: 575px) {
    .links .link-card__tg .link-card__image,
    .links .link-card__yt .link-card__image,
    .links .link-card__insta .link-card__image,
    .links .link-card__tt .link-card__image {
        width: 130px;
        right: 20px;
    }
}
.links .link-card__mc .link-card__image,
.links .link-card__blog .link-card__image {
    width: 305px;
}
@media (max-width: 575px) {
    .links .link-card__mc .link-card__image,
    .links .link-card__blog .link-card__image {
        width: 240px;
    }
}
.links .link__nav {
    justify-content: center;
    gap: 12px;
    margin-top: 40px;
    margin-bottom: 0;
}
@media (min-width: 1200px) {
    .links .link__nav {
        display: none;
    }
}
.links .link__nav .custom-nav-btn {
    width: 42px;
    height: 42px;
    border-radius: 5px;
}
.youtube {
    position: relative;
    overflow: hidden;
    background: #000;
    padding: 80px 0;
}
@media (max-width: 991px) {
    .youtube {
        padding: 50px 0;
    }
}
.youtube .youtube__heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 48px;
}
@media (max-width: 1199px) {
    .youtube .youtube__heading {
        flex-direction: column;
        gap: 16px;
        align-items: center;
        text-align: center;
    }
}
@media (max-width: 991px) {
    .youtube .youtube__heading {
        margin-bottom: 24px;
    }
}
.youtube .youtube__title {
    margin: 0;
}
.youtube .youtube__subtitle {
    max-width: 588px;
    font-size: 20px;
    line-height: 1.3;
}
@media (max-width: 1199px) {
    .youtube .youtube__subtitle {
        max-width: 100%;
    }
}
@media (max-width: 991px) {
    .youtube .youtube__subtitle {
        font-size: 18px;
    }
}
.youtube .youtube__content {
    display: flex;
    align-items: stretch;
    gap: 24px;
    margin-bottom: 48px;
}
@media (max-width: 1199px) {
    .youtube .youtube__content {
        flex-wrap: wrap;
    }
}
@media (max-width: 767px) {
    .youtube .youtube__content {
        flex-direction: column;
        gap: 16px;
        margin-bottom: 24px;
    }
}
.youtube .youtube-card {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 16px;
    background: #fff;
    border-radius: 16px;
    padding: 8px 8px 14px;
}
@media (max-width: 1199px) {
    .youtube .youtube-card {
        width: calc(50% - 12px);
        padding: 16px;
    }
}
@media (max-width: 767px) {
    .youtube .youtube-card {
        width: 100%;
    }
}
@media (max-width: 575px) {
    .youtube .youtube-card {
        padding: 10px 10px 25px;
    }
}
.youtube .youtube-video-title {
    height: calc(2em * 1.3);
    font-size: 14px;
    font-weight: 700;
    line-height: 1.3;
    color: #000;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}
@media (max-width: 1199px) {
    .youtube .youtube-video-title {
        font-size: 18px;
    }
}
@media (max-width: 575px) {
    .youtube .youtube-video-title {
        font-size: 16px;
    }
}
.youtube .embed-wrap {
    position: relative;
    display: block;
    width: 100%;
    overflow: hidden;
    border-radius: 16px;
    background: #262626;
    padding-bottom: 56%;
}
.youtube .embed-wrap .embed-video,
.youtube .embed-wrap .embed-image {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border: 0;
    cursor: pointer;
}
.youtube .embed-wrap:hover .youtube-logo {
    transform: translate3d(-2px, -2px, 0);
    filter: drop-shadow(2px 2px 2px #000);
}
.youtube .youtube-logo {
    position: absolute;
    width: 23%;
    height: 30%;
    background: url("../images/yt-logo.svg") no-repeat center;
    background-size: contain;
    inset: 0;
    margin: auto;
    cursor: pointer;
}
.youtube .youtube__btn {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 480px;
    width: 100%;
    height: 58px;
    font-size: 20px;
    font-weight: 800;
    background: #fed700;
    border-radius: 8px;
    color: #000;
    margin: auto;
}
.youtube .youtube__btn:hover {
    animation: pulse 1.5s infinite;
}
@media (max-width: 575px) {
    .youtube .youtube__btn {
        height: 55px;
        font-size: 18px;
    }
}
@charset "UTF-8";
.expertise {
    position: relative;
    z-index: 50;
    overflow: hidden;
    background: #000;
    padding: 80px 0;
    /* Темный полупрозрачный фон (оверлей) */
    /* Само окно с контентом */
    /* Класс, который будет добавляться при открытии для поднятия окна */
    /* Кнопка закрытия (крестик) */
}
@media (max-width: 991px) {
    .expertise {
        padding: 50px 0;
    }
}
.expertise .expertise__title {
    margin-bottom: 16px;
}
@media (max-width: 991px) {
    .expertise .expertise__title {
        text-align: center;
    }
}
.expertise .expertise__subtitle {
    font-size: 20px;
    margin-bottom: 48px;
}
@media (max-width: 991px) {
    .expertise .expertise__subtitle {
        font-size: 18px;
        text-align: center;
        margin-bottom: 24px;
    }
}
.expertise .expertise__content {
    display: flex;
    align-items: stretch;
    gap: 24px;
}
@media (max-width: 991px) {
    .expertise .expertise__content {
        flex-direction: column;
    }
}
.expertise .expertise__card {
    display: flex;
    flex-direction: column;
    background: #262626;
    border-radius: 16px;
    padding: 24px;
}
@media (max-width: 575px) {
    .expertise .expertise__card {
        padding: 24px 16px;
    }
}
.expertise .expertise__card__title {
    font-size: 28px;
    font-weight: 800;
    line-height: 1.25;
    margin-bottom: 16px;
}
@media (max-width: 1199px) {
    .expertise .expertise__card__title {
        font-size: 24px;
    }
}
@media (max-width: 575px) {
    .expertise .expertise__card__title {
        font-size: 20px;
        margin-bottom: 8px;
    }
}
.expertise .expertise__card__info {
    display: flex;
    flex-direction: column;
    gap: 8px;
    font-size: 20px;
    margin-bottom: 32px;
}
@media (max-width: 1199px) {
    .expertise .expertise__card__info {
        font-size: 18px;
    }
}
@media (max-width: 575px) {
    .expertise .expertise__card__info {
        font-size: 16px;
        line-height: 1.5;
        margin-bottom: 24px;
    }
}
.expertise .conference {
    width: 100%;
}
@media (min-width: 992px) and (max-width: 1199px) {
    .expertise .conference {
        width: 80%;
    }
}
.expertise .conference__image {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    margin-bottom: 32px;
}
@media (max-width: 575px) {
    .expertise .conference__image {
        margin-bottom: 24px;
    }
}
.expertise .speakers {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-bottom: 16px;
}
@media (max-width: 1199px) {
    .expertise .speakers {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 991px) {
    .expertise .speakers {
        grid-template-columns: repeat(3, 1fr);
    }
}
@media (max-width: 575px) {
    .expertise .speakers {
        grid-template-columns: repeat(2, 1fr);
    }
}
.expertise .speaker-card {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #fff;
    border-radius: 6px;
}
.expertise .speaker-photo {
    position: relative;
    overflow: hidden;
    width: 52px;
    height: 52px;
    flex-shrink: 0;
    border-radius: 6px;
    box-shadow: 0 0 0 2px #fff;
}
.expertise .speaker-name {
    font-size: 14px;
    line-height: 1.4;
    color: #000;
}
.expertise .speakers-more {
    width: 100%;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 800;
    text-align: center;
    color: #000;
    background: #fff;
    border-radius: 8px;
    cursor: pointer;
}
.expertise .speakers-popup {
    display: none;
    /* Скрыт по умолчанию */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 9999;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    padding: 0 15px;
}
.expertise .popup-content {
    width: 100%;
    max-width: 580px;
    /* Ширина окна 500px */
    position: relative;
    background: #242424;
    box-shadow: 0 4px 24.1px 0 #00000040;
    box-sizing: border-box;
    border-radius: 16px;
    transform: translateY(50px);
    transition: transform 0.3s ease-out;
    padding: 40px;
    margin: 50px auto;
}
@media (max-width: 767px) {
    .expertise .popup-content {
        padding: 25px;
    }
}
.expertise .popup-content .speakers {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
@media (max-width: 575px) {
    .expertise .popup-content .speakers {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
}
.expertise .popup-content.show {
    transform: translateY(0);
}
.expertise .popup-close {
    position: absolute;
    top: 0;
    right: -50px;
    font-size: 56px;
    color: #fff;
    background: none;
    border: none;
    cursor: pointer;
    line-height: 1;
    padding: 0;
}
@media (max-width: 767px) {
    .expertise .popup-close {
        right: 0;
        top: -40px;
        font-size: 40px;
    }
}
.expertise .media {
    width: 100%;
}
@media (min-width: 992px) and (max-width: 1199px) {
    .expertise .media .expertise__card__info {
        width: 310px;
    }
}
@media (max-width: 575px) {
    .expertise .media .expertise__card__info {
        margin-bottom: 16px;
    }
}
.expertise .media__gallery {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1.056fr;
    gap: 16px 11px;
}
@media (max-width: 575px) {
    .expertise .media__gallery {
        gap: 6px;
    }
}
.contact {
    position: relative;
    overflow: hidden;
    background: #000;
    padding: 80px 0;
}
@media (max-width: 991px) {
    .contact {
        padding: 50px 0;
    }
}
.contact .contact__title {
    width: 100%;
    color: #000;
    text-align: center;
    background: #fff;
    border-radius: 16px;
    padding: 16px;
    margin-bottom: 24px;
}
@media (max-width: 575px) {
    .contact .contact__title {
        border-radius: 8px;
    }
}
.contact .contact__content {
    display: flex;
    align-items: stretch;
    gap: 24px;
}
@media (max-width: 991px) {
    .contact .contact__content {
        flex-direction: column;
    }
}
.contact .contact__part {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 24px;
    font-size: 20px;
    line-height: 1.3;
    background: #262626;
    border-radius: 16px;
    padding: 24px;
}
@media (max-width: 575px) {
    .contact .contact__part {
        gap: 16px;
        font-size: 18px;
        padding: 16px;
    }
}
.contact .contact__top__info {
    margin-bottom: 8px;
}
@media (max-width: 575px) {
    .contact .contact__top__info {
        margin: 0;
    }
}
.contact .manager-social {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
}
@media (max-width: 575px) {
    .contact .manager-social {
        margin-top: 8px;
    }
}
.contact .social-link {
    display: flex;
    align-items: center;
    gap: 16px;
    color: #fff;
    transition: 0.3s;
}
.contact .social-link:before {
    content: '';
    display: block;
    width: 32px;
    height: 32px;
    flex-shrink: 0;
    transition: 0.3s;
}
@media (max-width: 575px) {
    .contact .social-link:before {
        width: 24px;
        height: 24px;
    }
}
.contact .social-link:hover {
    color: #fed700;
}
.contact .social-link:hover:before {
    transform: scale(1.05);
}
.contact .social-link_email:before {
    background: url("../images/social-mail.svg") no-repeat center;
    background-size: contain;
}
.contact .social-link_tg:before {
    background: url("../images/social-tg.svg") no-repeat center;
    background-size: contain;
}
.black-btn{
    position: relative;
    z-index: 20;
    width: fit-content;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 16px;
    font-weight: 800;
    line-height: 1.5;
    text-align: center;
    text-decoration: none!important;
    color: #fff !important;
    background: #262626;
    border-radius: 10px;
    box-shadow: inset 0 0 0 1px #000;
    cursor: pointer;
    user-select: none;
    padding: 16px;
    transition: 0.3s;
}
.black-btn:hover{
    -webkit-animation: pulseBlack 2s infinite;
    animation: pulseBlack 1.5s infinite;
}
@keyframes pulseBlack {
    0% {
        box-shadow: 0 0 0 0 #000;
    }
    70% {
        box-shadow: 0 0 0 10px rgb(218 103 68 / 0%);
    }
    100% {
        box-shadow: 0 0 0 0 rgb(218 103 68 / 0%);
    }
}
