

/* Start:/local/templates/regular/components/bitrix/news.detail/landing_course_new/style.css?176468314714947*/
/* new fix */

.seminar-hero__container.wrap {
    width: 100%;
    display: flex;
    gap: 44px;

    @media (max-width: 1023px) {
        flex-direction: column;
        gap: 32px;
        width: auto;
    }

    @media (max-width: 767px) {
        margin-top: 24px;
    }

    .seminar-hero__title {
        margin-bottom: 32px;
        line-height: 120%;

        @media (max-width: 767px) {
            font-size: 24px;
            font-weight: 800;
            line-height: 130%;
            margin-bottom: 12px;
        }
    }
}

.seminar-hero__col {
    @media (max-width: 1023px) {
        width: 100%;
    }
}

.seminar-hero__btns {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-bottom: 54px;

    @media (max-width: 767px) {
        flex-direction: column-reverse;
        align-items: flex-start;
        gap: 16px;
        margin-bottom: 40px;
    }

    .btn {
        background-color: #fff;
        color: #E11B11;
        transition: background-color 0.3s, color 0.3s;
        display: flex;
        align-items: center;
        gap: 10px;

        @media (max-width: 767px) {
            width: 100%;
        }

        .btn-arrow {
            width: 18px;
            height: 18px;
            background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 18 18' xmlns='http://www.w3.org/2000/svg' fill='none'%3E%3Cpath fill='none' d='M0 0h18v18H0z'/%3E%3Cpath d='M3.75 9h10.5M9 3.75 14.25 9 9 14.25' stroke='%23E72430' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.6'/%3E%3C/svg%3E");
            background-repeat: no-repeat;
            transition: background-image 0.3s;
        }

        &:hover {
            background-color: #E11B11;
            color: #fff;

            .btn-arrow {
                background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 18 18' xmlns='http://www.w3.org/2000/svg' fill='none'%3E%3Cpath fill='none' d='M0 0h18v18H0z'/%3E%3Cpath d='M3.75 9h10.5M9 3.75 14.25 9 9 14.25' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.6'/%3E%3C/svg%3E");
            }
        }
    }

    .seminar-hero__btn-price {
        font-size: 14px;
        font-weight: 400;
        line-height: 120%;

        @media (max-width: 767px) {
            font-size: 16px;
        }

        span {
            font-weight: 700;
            font-size: 24px;

            @media (max-width: 767px) {
                font-size: 24px;
            }
        }
    }
}

.seminar-hero__cards {
    display: flex;
    gap: 16px;

    @media (max-width: 767px) {
        flex-direction: column;
    }
}

.seminar-hero__card {
    border-radius: 10px;
    background-color: #1e2228;
    position: relative;
    overflow: hidden;
    padding: 16px;
    color: #fff;
    width: calc(33.3333% - 1px);
    height: 172px;

    @media (max-width: 767px) {
        height: auto;
        width: 100%;
        display: flex;
        flex-direction: column;
    }

    img {
        position: absolute;
    }

    &:first-of-type {
        img {
            right: -101px;
            bottom: -111px;
            width: 341px;
            max-width: unset;

            @media (max-width: 1200px) {
                width: 250px;
                right: -63px;
                bottom: -26px;
            }
        }
    }

    &:nth-of-type(2) {
        img {
            bottom: -79px;
            right: 18px;
            width: 138px;
        }
    }

    &:hover {
        cursor: pointer;

        .seminar-hero__card-title,
        .seminar-hero__card-arrow {
            opacity: 0;
        }

        .seminar-hero__card-text {
            opacity: 1;
        }
    }
}

.seminar-hero__card-title {
    font-size: 18px;
    font-weight: 600;
    line-height: 120%;
    color: #fff;
    transition: opacity 0.5s ease;

    @media (max-width: 767px) {
        margin-bottom: 4px;
    }
}

.seminar-hero__card-text {
    font-size: 14px;
    font-weight: 400;
    line-height: 130%;
    position: absolute;
    top: 16px;
    opacity: 0;
    transition: opacity 0.5s ease;
    color: #fff;

    @media (max-width: 767px) {
        position: static;
        opacity: 1;
    }
}

.seminar-hero__cards-col {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: calc(33.3333% - 1px);

    @media (max-width: 767px) {
        width: 100%;
        flex-direction: row;
    }

    .seminar-hero__feat {
        padding: 16px;
        border-radius: 10px;
        backdrop-filter: blur(8px);
        background: rgba(255, 255, 255, 0.1);

        @media (max-width: 767px) {
            flex: 1 0 0;
        }
    }
}

.seminar-hero__card-arrow {
    position: absolute;
    bottom: 16px;
    width: 18px;
    height: 18px;
    background-repeat: no-repeat;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 18 18' xmlns='http://www.w3.org/2000/svg' fill='none'%3E%3Cpath fill='none' d='M0 0h18v18H0z'/%3E%3Cpath d='M3.75 9h10.5M9 3.75 14.25 9 9 14.25' stroke='%23E72430' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.6'/%3E%3C/svg%3E");
    opacity: 1;
    transition: opacity 0.5s ease;

    @media (max-width: 767px) {
        position: static;
        margin-top: 20px;
    }
}

.seminar-hero__feat-num {
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    line-height: 120%;
    margin-bottom: 4px;
}

.seminar-hero__feat-text {
    color: #fff;
    font-size: 14px;
    font-weight: 400;
    line-height: 130%;
}

.seminar-hero__form {
    width: 514px;
    position: relative;

    @media (max-width: 1200px) {
        width: 400px;
    }

    @media (max-width: 1023px) {
        width: 100%;
    }
}

.seminar-hero__form-success {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    border-radius: 10px;
    background: #fff;
    z-index: 10;
    color: #1f1f1f;
    padding: 24px;

    .form-success__title {
        font-size: 24px;
        font-weight: 600;
        line-height: 32px;
        margin-bottom: 32px;
    }

    .form-success__img {
        margin-bottom: 32px;
    }

    .form-success__subtitle {
        font-size: 18px;
        font-weight: 600;
        line-height: 130%;
        margin-bottom: 12px;
    }

    .form-success__text {
        font-size: 18px;
        font-weight: 400;
        line-height: 150%;
    }
}

.seminar-hero__form-title {
    font-size: 18px;
    font-weight: 600;
    line-height: 24px;
    margin-bottom: 24px;
    color: #fff;
}

.seminar-hero__form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;

    @media (max-width: 767px) {
        flex-direction: column;
        gap: 12px;
    }
}

.seminar-hero__form-col {
    flex: 1 0 0;

    .btn {
        text-align: center;
    }

    label {
        font-size: 16px;
        font-weight: 400;
        line-height: 130%;

        a {
            color: #fff;
            font-size: 16px;
            font-weight: 400;
            line-height: 130%;
            text-decoration: underline;

            &:hover {
                text-decoration: none;
            }
        }
    }

    .form-control:focus~label,
    .form-control:not(:placeholder-shown)~label,
    .iti~label {
        background-color: #fff;
        padding: 2px 6px;
        border-radius: 5px;
        font-size: 12px;
    }
}

.iti__country-name {
    color: #1f1f1f;
}

.seminar-schedule {
    background-color: #f5f6fa;
    padding: 80px 0;

    @media (max-width: 767px) {
        padding: 60px 0;
    }
}

.seminar-schedule__inner {
    background-color: #fff;
    border-radius: 10px;
    padding: 40px;
    display: flex;
    align-items: stretch;
    gap: 40px;

    @media (max-width: 1023px) {
        gap: 0;
    }

    @media (max-width: 767px) {
        padding: 40px 20px;
    }
}

.seminar-schedule__img {
    position: relative;
    width: 327px;
    overflow: hidden;
    display: flex;
    align-items: center;
    max-height: 478px;

    @media (max-width: 1023px) {
        width: 300px;
    }

    @media (max-width: 960px) {
        display: none;
    }
}

.seminar-schedule__img-bg {
    position: absolute;

    @media (max-width: 1023px) {
        width: 150px;
    }
}

.seminar-schedule__img-main {
    position: relative;
    z-index: 1;

    @media (max-width: 1023px) {
        width: 200px;
    }
}

.seminar-schedule__content {
    flex: 1 0 0;
}

.seminar-schedule__title {
    font-size: 34px;
    font-weight: 800;
    line-height: 120%;
}

.seminar-schedule__search-wrap {
    margin-top: 16px;
}

.seminar-schedule__subtitle {
    color: #667387;
    font-size: 16px;
    line-height: 150%;
    margin-bottom: 32px;
}

.seminar-schedule__list {
    margin-top: 24px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    overflow: hidden;
    transition: max-height 0.3s ease;

    @media (max-width: 767px) {
        grid-template-columns: 1fr;
    }
}

.seminar-schedule__item {
    border-radius: 8px;
    background: #f5f6fa;
    padding: 16px;
    position: relative;
}

.seminar-schedule__item-top {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
}

.seminar-schedule__item-city {
    &::after {
        content: '';
        width: 3px;
        height: 3px;
        background-color: #9CA3B6;
        border-radius: 50%;
        display: inline-block;
        margin-left: 2px;
    }
}

.seminar-schedule__item-city,
.seminar-schedule__item-price {
    color: #9CA3B6;
    display: flex;
    align-items: center;
    gap: 6px;

    &::before {
        content: '';
        width: 16px;
        height: 16px;
        background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 16 16' xmlns='http://www.w3.org/2000/svg' fill='none'%3E%3Cpath fill='none' d='M0 0h16v16H0z'/%3E%3Cg stroke='%239CA3B6'%3E%3Cpath d='M11.624 10.12c.06.72.72 1.247 1.44 1.247h1.267v.793a2.512 2.512 0 0 1-2.507 2.506H4.171a2.512 2.512 0 0 1-2.507-2.506V7.673a2.512 2.512 0 0 1 2.507-2.506h7.653a2.512 2.512 0 0 1 2.507 2.506v.96h-1.347c-.373 0-.713.147-.96.4-.28.274-.44.667-.4 1.087Z' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M1.664 8.273V5.227c0-.794.487-1.5 1.227-1.78l5.293-2c.827-.314 1.713.3 1.713 1.186v2.534'/%3E%3Cpath d='M15.037 10.687a.685.685 0 0 1-.667.68h-1.307c-.72 0-1.38-.527-1.44-1.247-.04-.42.12-.813.4-1.086.247-.254.587-.4.96-.4h1.387a.684.684 0 0 1 .667.68v1.373Z' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M4.664 8h4.667'/%3E%3C/g%3E%3C/svg%3E");
    }
}

.seminar-schedule__item-btn {
    position: absolute;
    right: 16px;
    width: 24px;
    height: 24px;
    top: 50%;
    transform: translateY(-50%);
}

.seminar-schedule__item-date {
    span {
        color: #1F1F1F;
        font-size: 18px;
        font-weight: 600;
        line-height: 130%;
    }
}

.seminar-schedule__btn-wrap {
    display: flex;
    justify-content: center;
    margin-top: 24px;
}

.seminar-schedule__btn {
    border-width: 0;
    background-color: transparent;
    color: #e72430;
    font-size: 16px;
    font-weight: 600;
    line-height: 130%;
    display: flex;
    align-items: center;
    gap: 5px;
    cursor: pointer;
}

.seminar-schedule__btn-icon {
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 18 18' xmlns='http://www.w3.org/2000/svg' fill='none'%3E%3Cpath fill='none' d='M18 0v18H0V0z'/%3E%3Cpath d='M9 3.75v10.5M14.25 9 9 14.25 3.75 9' stroke='%23E72430' stroke-width='1.6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    width: 18px;
    height: 18px;
}

.seminar-schedule__btn-icon.--rotate {
    transform: rotate(180deg);
}

.seminar-form {
    background: #f5f6fa;
    padding: 80px 0;

    @media (max-width: 767px) {
        padding: 60px 0;
    }
}

.seminar-form__inner {
    display: flex;
    gap: 40px;
    padding: 40px;
    background-color: #fff;
    border-radius: 10px;
    position: relative;

    @media (max-width: 1023px) {
        gap: 0;
    }

    @media (max-width: 767px) {
        flex-direction: column;
        padding: 40px 20px;
    }

    .seminar-form__img {
        flex-shrink: 0;
        width: 328px;

        @media (max-width: 1023px) {
            width: 250px;
        }

        @media (max-width: 960px) {
            display: none;
        }
    }

    .seminar-hero__form-title {
        color: #1f1f1f;
        font-size: 34px;
        font-weight: 800;
        line-height: 120%;
    }

    .seminar-hero__form {
        width: auto;
    }

    .seminar-hero__form-col {
        font-size: 14px;
    }

    .checkbox-control input[type=checkbox]+label {
        font-size: 14px;
    }

    .seminar-hero__form-success {
        display: flex;
        align-items: center;
    }

    .form-success__title {
        font-size: 34px;
        font-weight: 800;
        line-height: 120%;
        margin-bottom: 40px;
    }

    .form-success__subtitle {
        font-size: 20px;
        font-weight: 600;
        line-height: 120%;
        margin-bottom: 12px;
    }

    .form-success__text {
        font-size: 18px;
        font-weight: 400;
        line-height: 150%;
    }
}



.course-whom__icon.course-whom__icon--new {
    width: 52px;
    height: 52px;
    margin-right: 0;
    flex-shrink: unset;
}


.seminar-plan__categories {
    white-space: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    margin-bottom: 24px;
    position: relative;
}

.seminar-plan__categories .seminar-plan__category {
    margin-right: 4px;
    box-sizing: border-box !important;
    scroll-snap-align: center;
    margin-bottom: 8px;
    /* 32 - 24 */
}

@media (max-width: 700px) {
    .seminar-plan__categories {
        margin-bottom: 12px;
    }

    .seminar-plan__categories .seminar-plan__category {
        margin-bottom: 8px;
        /* 20 - 12 */
    }
}

.seminar-plan__categories .seminar-plan__category.seminar-plan__category--unselected {
    background-color: #FFFFFF;
    color: #676B77;
    outline: 1px solid #E1E5EE;
    outline-offset: -1px;
    cursor: pointer;
}

.seminar-plan__categories .seminar-plan__category:last-child {
    margin-right: 0px;
}


.seminar-plan__schedule.seminar-plan__schedule--unselected {
    display: none;
}


.section__landing_course .projects-special__link {
    border-radius: 10px;
    background-color: #fff !important;
    height: 100%;
    color: #676b77 !important;
    padding: 30px;
    transform: translateZ(0);
    border: 1px solid #e1e5ee;
}

.section__landing_course .projects-special__link .projects-special__info .h2 {
    color: #1f1f1f !important;
}

.section__landing_course .projects-special__link .icon-svg {
    stroke: #e72430;
}


.seminar-coaches__card-name,
.seminar-coaches__card-desc,
.seminar-coaches__card-details {
    width: calc(100% - 10px);
}


.seminar-coach__person-img img {
    object-fit: cover;
}


.seminar-knowledge {
    gap: 20px;
}

.seminar-knowledge .seminar-knowledge__item:nth-child(3n) {
    border-right: 0;
}
/* End */


/* Start:/local/media/css/online_course.min.css?173168706328276*/
.header-online-course{position:relative;background-color:#fff}.header-online-course .wrap{height:100%}.header-online-course__content{position:relative;display:flex;align-items:center;height:100%}.header-online-course__middle{padding:26px 0}@media screen and (max-width: 600px){.header-online-course__middle{padding:15px 0}}@media screen and (max-width: 600px){.header-online-course__middle .header-contacts{display:none}}.header-online-course__link-ext{border-color:rgba(0,0,0,0);font-size:16px;position:relative;font-weight:600;padding-right:10px;white-space:nowrap}@media screen and (max-width: 600px){.header-online-course__link-ext{margin-bottom:2px}}.header-online-course__link-ext:after{content:"";width:10px;height:10px;position:absolute;right:0;top:-6px;background:url(/local/media/css/../img/icons/arrow-external.svg) no-repeat 50% 50%/contain}.header-online-course__link-ext:hover span{border-color:rgba(231,36,48,.3)}.header-online-course__link-ext span{border-bottom:1px solid rgba(0,0,0,0);transition:.2s ease}.header-online-course__menu{position:relative;margin-left:auto}@media screen and (max-width: 600px){.header-online-course__menu{display:none}}@media screen and (max-width: 600px){.header-online-course .logo{margin-right:10px}}.header-online-course .logo a{border:0}.header-online-course .logo img{min-width:210px}@media screen and (max-width: 1199.98px){.header-online-course .logo img{min-width:210px}}@media screen and (max-width: 900px){.header-online-course .logo img{min-width:210px}}@media screen and (max-width: 600px){.header-online-course .logo img{min-width:150px}}.online-course-menu{position:relative;display:flex;align-items:center;justify-content:space-between;font-size:18px}@media screen and (max-width: 1199.98px){.online-course-menu{font-size:14px}}.online-course-menu__item{position:static}.online-course-menu__item:not(:last-child){margin-right:40px}@media screen and (max-width: 1199.98px){.online-course-menu__item:not(:last-child){margin-right:20px}}.online-course-menu__item>a{display:flex;align-items:center;color:#1f1f1f;border:0;text-align:center}.online-course-menu__item:hover>a{color:#e72430}.online-course-lead{display:flex;padding-top:80px;padding-bottom:45px}@media screen and (max-width: 900px){.online-course-lead{flex-direction:column;align-items:initial;padding-top:initial}}@media screen and (max-width: 600px){.online-course-lead{padding-top:20px;padding-bottom:40px}}.online-course-lead__loader .wrap{aspect-ratio:2.52;display:flex;justify-content:center;align-items:center}@supports not (aspect-ratio: 2.52){.online-course-lead__loader .wrap::before{content:"";float:left;padding-top:calc(500/1260*100%)}.online-course-lead__loader .wrap::after{content:"";display:block;clear:both}}.online-course-lead__loader svg,.online-course-lead__loader img{width:50px;height:50px}.online-course-lead__detail-small-text{font-size:13px;line-height:1.1;color:#414e60;margin-top:auto;padding-top:10px}.online-course-lead__detail-wrapper{display:flex;flex-direction:column;flex-grow:1;width:50%;margin-right:20px;align-items:flex-start}@media screen and (max-width: 900px){.online-course-lead__detail-wrapper{width:initial;margin-right:initial;margin-bottom:30px}}.online-course-lead__detail-wrapper__header{margin-top:0px;margin-bottom:19px}@media screen and (max-width: 900px){.online-course-lead__detail-wrapper__header{margin-bottom:20px}}.online-course-lead__detail-wrapper .online-course__switcher{margin-bottom:12px}.online-course-lead__detail-wrapper__addition{color:#1f1f1f;font-family:"Proxima Nova",Arial,sans-serif;font-size:14px;font-style:normal;font-weight:400;line-height:120%;margin-bottom:24px}.online-course-lead__detail-wrapper__description{color:#1f1f1f;font-family:"Proxima Nova",Arial,sans-serif;font-size:18px;font-style:normal;font-weight:400;line-height:150%;margin-bottom:24px}@media screen and (max-width: 600px){.online-course-lead__detail-wrapper__description{font-size:16px}}.online-course-lead__detail-wrapper__button-wrapper{display:flex;width:100%;align-items:center}@media screen and (max-width: 600px){.online-course-lead__detail-wrapper__button-wrapper{flex-direction:column;align-items:initial}}.online-course-lead__detail-wrapper__button{margin-right:24px;min-width:215px;font-size:20px}@media screen and (max-width: 600px){.online-course-lead__detail-wrapper__button{width:100%;margin-right:initial}}.online-course-lead__detail-wrapper__button-addition{color:#1f1f1f;font-family:"Proxima Nova",Arial,sans-serif;font-size:18px;font-style:normal;font-weight:400;line-height:110%}@media screen and (max-width: 600px){.online-course-lead__detail-wrapper__button-addition{font-size:16px;margin-top:8px}}.online-course-lead__form-block{flex-grow:1;width:45%;background:#f5f6fa;padding:30px;border-radius:10px}@media screen and (max-width: 900px){.online-course-lead__form-block{width:initial;margin-bottom:24px}}@media screen and (max-width: 600px){.online-course-lead__form-block{margin-bottom:16px}}.online-course-possibilities .services.-small .services__item{display:flex;align-items:center;padding:52px 63px;background-color:#fff;color:#1f1f1f;border:0;border-radius:10px;font-size:18px;line-height:1.2}@media screen and (max-width: 1199.98px){.online-course-possibilities .services.-small .services__item{padding:28px 28px}}@media screen and (max-width: 600px){.online-course-possibilities .services.-small .services__item{padding:25px 20px;height:100%}}.online-course-possibilities .services.-small .row{margin-left:-15px;margin-right:-15px;margin-bottom:-24px}@media screen and (max-width: 900px){.online-course-possibilities .services.-small .row{margin-bottom:-12px}}.online-course-possibilities .services.-small .row>div{padding-left:15px;padding-right:15px;margin-bottom:24px}@media screen and (max-width: 900px){.online-course-possibilities .services.-small .row>div{margin-bottom:12px}}.online-course-possibilities .services.-small .services__title{font-weight:400}@media screen and (max-width: 900px){.online-course-possibilities .services.-small .services__title{font-size:16px}}.online-course-possibilities .services.-small .services__icon{margin:0 28px 0 0;width:58px;height:58px}@media screen and (max-width: 900px){.online-course-possibilities .services.-small .services__icon{width:34px;height:34px}}@media screen and (max-width: 600px){.online-course-possibilities .services.-small .services__icon{margin:0 14px 0 0}}.online-course-helps__inner-wrapper{display:flex;justify-content:space-between;align-items:center}@media screen and (max-width: 900px){.online-course-helps__inner-wrapper{flex-direction:column;align-items:initial}}.online-course-helps__main{width:41%}@media screen and (max-width: 900px){.online-course-helps__main{width:initial}}.online-course-helps__image-container{width:53%;-webkit-user-select:none;-moz-user-select:none;user-select:none;pointer-events:none}@media screen and (max-width: 900px){.online-course-helps__image-container{width:initial;margin-bottom:24px}}@media screen and (max-width: 600px){.online-course-helps__image-container{margin-bottom:20px}}.online-course-helps__image{display:block;max-width:100%;border-radius:10px;overflow:hidden}.online-course-helps__title{margin:0px 0px 40px}@media screen and (max-width: 900px){.online-course-helps__title{margin:0px 0px 24px}}.online-course-helps__list{display:flex;flex-direction:column;align-items:flex-start;gap:28px;margin:0px}@media screen and (max-width: 600px){.online-course-helps__list{gap:10px}}.online-course-helps__li{position:relative;margin:0px;padding-left:45px;list-style-type:none;font-family:"Proxima Nova",Arial,sans-serif;font-size:18px;font-style:normal;font-weight:400;line-height:150%}@media screen and (max-width: 600px){.online-course-helps__li{font-size:16px}}.online-course-helps__li::before{content:"";position:absolute;top:1px;left:0;width:22px;height:22px;border-radius:5px;background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAA4AAAAKCAYAAACE2W/HAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAACISURBVHgBpdC7DYNAEATQ2TPmcLbiHFtuxRW4BJuOKIFOKIESEBwpARkBYhEBEkL8Tkz+VrNDcEwVmF/fo1GuSAQJPEdktZEyMP9rKGdmZzSm0GFs9TNbO7BbLwez9cNsiY9+ogl7vkpBCt2j+9zb23dcTwjRq62TTTjHRMQCvPfQem1t0jOTD//cQhYp0KIKAAAAAElFTkSuQmCC);background-position:center;background-repeat:no-repeat;background-color:#fff}.online-course-suitable .services.-small .services__item{display:flex;align-items:initial;padding:30px;background-color:#fff;color:#1f1f1f;border:0;border-radius:10px;line-height:1.3;font-size:18px}@media screen and (max-width: 900px){.online-course-suitable .services.-small .services__item{padding:30px 36px}}@media screen and (max-width: 600px){.online-course-suitable .services.-small .services__item{padding:20px 22px;height:100%}}.online-course-suitable .services.-small .services__title{font-weight:400}.online-course-suitable .services.-small .services__text{color:#676b77}@media screen and (max-width: 900px){.online-course-suitable .services.-small .services__text{font-size:16px}}.online-course-suitable .services.-small .row{margin-left:-15px;margin-right:-15px;margin-bottom:-24px}.online-course-suitable .services.-small .row>div{padding-left:15px;padding-right:15px;margin-bottom:24px}.online-course-suitable .services.-small .services__header{margin:0px 0px 12px}@media screen and (max-width: 600px){.online-course-suitable .services.-small .services__header{margin:0px 0px 4px}}.online-course-suitable .services.-small .services__icon{margin:0 28px 0 0;width:28px;height:28px}@media screen and (max-width: 600px){.online-course-suitable .services.-small .services__icon{margin:0 14px 0 0}}.online-course-gift{position:relative;display:flex;align-items:center;border-radius:10px;padding:50px 60px;background-color:#414e60;overflow:hidden}@media screen and (max-width: 900px){.online-course-gift{flex-direction:column;align-items:initial;padding:0px}}@media screen and (max-width: 900px){.online-course-gift__section{padding-top:initial;padding-bottom:initial}}.online-course-gift__image-desktop{display:block;position:absolute;top:0px;right:0px;height:100%;width:auto;-webkit-user-select:none;-moz-user-select:none;user-select:none;pointer-events:none}@media screen and (max-width: 900px){.online-course-gift__image-desktop{display:none}}.online-course-gift__image-mobile{display:none;height:203px;-o-object-fit:cover;object-fit:cover;-webkit-user-select:none;-moz-user-select:none;user-select:none;pointer-events:none}@media screen and (max-width: 900px){.online-course-gift__image-mobile{display:block}}.online-course-gift__inner-wrapper{display:flex;align-items:center;gap:10px}@media screen and (max-width: 900px){.online-course-gift__inner-wrapper{padding:30px 20px}}@media screen and (max-width: 600px){.online-course-gift__inner-wrapper{flex-direction:column;align-items:stretch}}.online-course-gift__header{font-weight:800;font-size:34px;line-height:120%;color:#fff;width:60%;margin-right:10%;position:relative;z-index:2}@media screen and (max-width: 900px){.online-course-gift__header{width:initial;margin-right:5%;font-size:24px;margin-right:initial}}@media screen and (max-width: 600px){.online-course-gift__header{margin-bottom:16px;font-size:20px}}.online-course-gift .btn{border-color:#fff;background-color:#fff;color:#e72430;padding:0px 70px;font-size:18px}@media screen and (max-width: 900px){.online-course-gift .btn{padding:0px 30px}}.online-course-gift .btn:hover{border-color:#e72430}.online-course-content{border-radius:10px}.online-course-content__title-wrapper{width:40%}@media screen and (max-width: 900px){.online-course-content__title-wrapper{width:initial}}.online-course-content__table{border:none !important}.online-course-content__table th{background:rgba(0,0,0,0) !important;font-size:16px;font-weight:400;color:#676b77}.online-course-content__table td{font-size:18px;vertical-align:top;width:50%;line-height:1.2}@media screen and (max-width: 900px){.online-course-content__table td{font-size:14px}}.online-course-content__table td:first-child{font-size:20px;font-weight:600}@media screen and (max-width: 900px){.online-course-content__table td:first-child{font-size:16px}}.online-course-content__table td:first-child,.online-course-content__table th:first-child{padding-left:0 !important}.online-course-content__table td:last-child,.online-course-content__table th:last-child{padding-right:0 !important}.online-course-content__title{margin:0px 0px 28px 0px}@media screen and (max-width: 900px){.online-course-content__title{margin:0px 0px 24px 0px}}.online-course-content__desc{margin-bottom:40px;font-size:18px}@media screen and (max-width: 600px){.online-course-content__desc{margin-bottom:24px}}.online-course-content__list{display:inline-flex;flex-direction:column;align-items:flex-start;gap:24px;padding:24px 20px;background:#f5f6fa;border-radius:10px;font-size:18px;min-width:40%;margin-right:15%;margin-bottom:0px;width:100%}@media screen and (max-width: 900px){.online-course-content__list{min-width:initial;margin-right:50px}}@media screen and (max-width: 600px){.online-course-content__list{margin-right:initial;margin-bottom:24px;font-size:16px}}.online-course-content__li{margin:0px}.online-course-content__tags-title{margin:0px 0px 24px}.online-course-content__tags{display:flex;justify-content:flex-start;align-items:flex-start;gap:15px;flex-wrap:wrap;text-wrap:balance;margin-bottom:30px}@media screen and (max-width: 600px){.online-course-content__tags{gap:5px}}.online-course-content__tag{display:inline-flex;padding:12px 15px;justify-content:center;align-items:center;gap:10px;border-radius:10px;font-size:18px;line-height:1.2;background:#f5f6fa}@media screen and (max-width: 900px){.online-course-content__tag{font-size:16px}}.online-course-teachers__title{margin:0px 0px 37px}@media screen and (max-width: 900px){.online-course-teachers__title{margin:0px 0px 24px}}.online-course-teachers__main-wrapper{display:flex;padding:32px;background-color:#f5f6fa;border-radius:10px;align-items:center}@media screen and (max-width: 900px){.online-course-teachers__main-wrapper{padding:26px;align-items:initial;flex-direction:column}}@media screen and (max-width: 600px){.online-course-teachers__main-wrapper{padding:20px 10px}}.online-course-teachers__main-video-wrapper{position:relative;width:45%;margin-right:40px;-webkit-user-select:none;-moz-user-select:none;user-select:none}@media screen and (max-width: 900px){.online-course-teachers__main-video-wrapper{width:100%;margin-right:initial;margin-bottom:24px}}@media screen and (max-width: 600px){.online-course-teachers__main-video-wrapper{margin-bottom:20px}}.online-course-teachers__video{display:block;width:100%;border-radius:10px;background-color:#000}.online-course-teachers__main-video-play-button{position:absolute;top:50%;left:50%;transform:translate(-50%, -50%);width:60px;height:60px;cursor:pointer;transition:opacity .2s ease;opacity:1}.online-course-teachers__main-video-play-button:hover{opacity:.8}@media screen and (max-width: 900px){.online-course-teachers__main-video-play-button{width:64px;height:64px}}@media screen and (max-width: 600px){.online-course-teachers__main-video-play-button{width:40px;height:40px}}.online-course-teachers__main-name{margin:0px 0px 12px}.online-course-teachers__main-sub{font-size:14px;margin-bottom:20px}.online-course-teachers__main-desc{font-size:18px;line-height:1.3}@media screen and (max-width: 600px){.online-course-teachers__main-desc{font-size:16px}}.online-course-teachers__experts-wrapper{margin-top:40px}@media screen and (max-width: 900px){.online-course-teachers__experts-wrapper{font-size:24px}}.online-course-teachers__experts-header-wrapper{position:relative;display:flex;justify-content:space-between;align-items:center;margin:0px 0px 24px}.online-course-teachers__experts-pagination{position:static;flex-wrap:nowrap}.online-course-teachers__experts-pagination .swiper-pagination-bullet:not(:last-child){margin-right:10px}.online-course-teachers__experts-title{margin:0px 16px 0px 0px}.online-course-teachers__experts-button-wrapper{display:flex;justify-content:center;margin-top:40px}@media screen and (max-width: 900px){.online-course-teachers__experts-button-wrapper{margin-top:28px}}@media screen and (max-width: 900px){.online-course-teachers__experts-button-wrapper{margin-top:24px}}.online-course-teachers__experts-button-wrapper .btn{font-size:18px}@media screen and (max-width: 600px){.online-course-teachers__experts-button-wrapper .btn{width:100%}}.online-course-teachers__experts-list{display:flex;align-items:stretch}@media screen and (max-width: 900px){.online-course-teachers__experts-list{margin-top:66px !important}}.online-course-teachers__experts-item{display:flex;align-items:center;padding:20px 30px;background-color:#f5f6fa;border-radius:10px;height:auto}@media screen and (max-width: 900px){.online-course-teachers__experts-item{flex-direction:column;align-items:initial;justify-content:center;padding:0px 30px 20px;width:70%}}.online-course-teachers__experts-item__name{margin:0px;font-weight:600}@media screen and (max-width: 900px){.online-course-teachers__experts-item__desc-wrapper{margin-top:20px}}@media screen and (max-width: 600px){.online-course-teachers__experts-item__desc-wrapper{margin-top:16px}}.online-course-teachers__experts-item__desc{font-size:14px;margin-top:8px}.online-course-teachers__experts-item__second-desc{font-size:14px;margin-top:14px}.online-course-teachers__experts-item__second-desc b{font-weight:600}.online-course-teachers__experts-item__avatar{display:block;min-width:84px;height:84px;border-radius:2000px;border:3px solid #fff;-o-object-fit:cover;object-fit:cover;margin-right:30px;-webkit-user-select:none;-moz-user-select:none;user-select:none;pointer-events:none}@media screen and (max-width: 900px){.online-course-teachers__experts-item__avatar{margin:-42px auto 0px}}@media screen and (max-width: 600px){.online-course-teachers__experts-item__avatar{margin:-42px auto 0px}}.online-course-plans__title{margin:0px 0px 15px}.online-course-plans__top{display:flex;align-items:flex-end;justify-content:space-between;margin-bottom:40px;gap:15px}@media screen and (max-width: 600px){.online-course-plans__top{flex-wrap:wrap}}.online-course-plans__tag{background:#fff;display:inline-flex;font-size:18px;border-radius:24px;align-items:center;min-height:46px;line-height:1.1;border:solid 1px #e1e5ee;padding:5px 20px}@media screen and (max-width: 600px){.online-course-plans__tag{font-size:16px}}.online-course-plans__text{font-size:18px;max-width:580px;line-height:1.3}@media screen and (max-width: 600px){.online-course-plans__text{font-size:16px}}.online-course-plans__grid{display:grid;grid-template-columns:repeat(4, 1fr);gap:30px}@media screen and (max-width: 1199.98px){.online-course-plans__grid{grid-template-columns:repeat(2, 1fr);gap:20px}}@media screen and (max-width: 600px){.online-course-plans__grid{grid-template-columns:1fr}}.online-course-plans__grid-item{display:flex;flex-direction:column;padding:0px 24px 24px;background-color:#fff;border-radius:10px}.online-course-plans__grid-item__top{border-bottom:1px solid #e1e5ee;margin:0px 0 20px 0;padding:24px 0px 12px;flex-grow:1}.online-course-plans__grid-item__title{font-size:24px;margin-top:0;margin-bottom:0}.online-course-plans__grid-item__title:not(:last-child){margin-bottom:5px}.online-course-plans__grid-item__subtitle{color:#676b77}.online-course-plans__grid-item__subtitle-small{color:#676b77;font-size:12px}.online-course-plans__grid-item__list{margin-top:24px;font-size:14px}.online-course-plans__grid-item__price-wrapper{display:flex;flex-wrap:wrap;margin-top:auto;align-items:center;align-items:baseline}.online-course-plans__grid-item__price-current{font-size:24px;line-height:130%;margin-right:.8rem}.online-course-plans__grid-item__price-old{font-size:16px;color:#676b77;line-height:150%;text-decoration-line:line-through}.online-course-plans__grid-item__button{margin-top:20px;font-size:18px}@media screen and (max-width: 900px){.online-course-cert{padding-top:initial;padding-bottom:0}}.online-course-cert__wrapper{display:flex;justify-content:space-between;align-items:center;margin:-40px 0px}@media screen and (max-width: 900px){.online-course-cert__wrapper{margin:20px 0px;flex-direction:column;align-items:initial;justify-content:initial}}.online-course-cert__desc{width:45%;margin-right:20px}@media screen and (max-width: 900px){.online-course-cert__desc{width:initial;margin-right:initial;margin-bottom:20px}}.online-course-cert__title{margin:0px 0px 40px}@media screen and (max-width: 900px){.online-course-cert__title{margin:0px 0px 24px}}.online-course-cert__text{font-size:18px;margin-bottom:24px;max-width:500px}@media screen and (max-width: 600px){.online-course-cert__text{margin-bottom:20px;font-size:16px}}@media screen and (min-width: 900px){.online-course-cert__link{font-size:18px}}.online-course-cert__image-wrapper{height:auto;-webkit-user-select:none;-moz-user-select:none;user-select:none;pointer-events:none;margin-left:40px}@media screen and (max-width: 900px){.online-course-cert__image-wrapper{margin-left:auto;margin-right:auto}}.online-course-cert__image{display:block;height:auto;width:auto}.online-course-qna__title{margin:0px 0px 40px}@media screen and (max-width: 900px){.online-course-qna__title{margin:0px 0px 24px}}.online-course-qna__list{display:grid;gap:16px}.online-course-qna__item{border-radius:10px;background-color:#f5f6fa !important;border:none !important;margin-top:0 !important}.online-course-qna__item-title-wrapper{display:flex !important;align-items:flex-start;justify-content:space-between;padding:20px 30px !important;font:inherit !important;color:inherit !important}@media screen and (max-width: 900px){.online-course-qna__item-title-wrapper{padding:20px !important}}@media screen and (max-width: 600px){.online-course-qna__item-title-wrapper{padding:15px 20px !important}}.online-course-qna__item-title-wrapper::after{content:none !important}.online-course-qna__item-title{margin:0px;font-weight:600;font-size:18px}@media screen and (max-width: 900px){.online-course-qna__item-title{font-size:16px}}.online-course-qna__item-fold-icon{min-width:24px;min-height:24px;width:auto !important;width:auto !important;padding:0px !important;background-image:url("/local/media/img/online-course/plus.svg");margin-left:20px !important}.is-active .online-course-qna__item-fold-icon{background-image:url("/local/media/img/online-course/minus.svg")}.online-course-qna__item-content{padding:5px 30px 20px !important;font-size:14px !important;line-height:1.3 !important}@media screen and (max-width: 900px){.online-course-qna__item-content{padding:0px 20px 20px !important}}@media screen and (max-width: 600px){.online-course-qna__item-content{padding:0px 20px 15px !important;font-size:14px}}.online-course-reviews__header-wrapper{position:relative;display:flex;justify-content:space-between;align-items:center;margin-bottom:40px}@media screen and (max-width: 900px){.online-course-reviews__header-wrapper{margin-bottom:24px}}.online-course-reviews__title{margin:0px}.online-course-reviews__pagination{position:static;flex-wrap:nowrap}.online-course-reviews__pagination .swiper-pagination-bullet:not(:last-child){margin-right:10px}.online-course-reviews__wrapper{height:initial}.online-course-reviews__item{height:initial;display:flex;flex-direction:column}@media screen and (max-width: 900px){.online-course-reviews__item{max-width:90%}}.online-course-reviews__item__text{position:relative;padding:24px 20px;border-radius:10px;background-color:#f5f6fa;font-size:18px;flex-grow:1}@media screen and (max-width: 600px){.online-course-reviews__item__text{font-size:14px}}.online-course-reviews__item__text::after{content:"";position:absolute;left:21px;top:calc(100% - 1px);width:18px;height:18px;background-image:url("/local/media/img/online-course/corner.svg");background-repeat:no-repeat;background-position:top left;-webkit-user-select:none;-moz-user-select:none;user-select:none;pointer-events:none}.online-course-reviews__item__info-wrapper{display:flex;align-items:center;margin-top:22px}.online-course-reviews__item__avatar{display:flex;border-radius:50%;width:60px;height:60px;border:3px solid #fff;-o-object-fit:cover;object-fit:cover}.online-course-reviews__item__desc-wrapper{margin-left:10px}.online-course-reviews__item__name{font-weight:600;margin:0px}.online-course-reviews__item__desc{color:#676b77;font-size:14px;line-height:120%;margin-top:8px}.online-course-form{position:relative;overflow:hidden}.online-course-form__bg{position:absolute;top:0px;left:0px;width:70%;height:100%;-webkit-user-select:none;-moz-user-select:none;user-select:none;pointer-events:none}@media screen and (max-width: 900px){.online-course-form__bg{top:initial;left:5%;width:100%;height:140%;bottom:0px}}.online-course-form__wrapper{display:flex;align-items:center;justify-content:space-between}@media screen and (max-width: 900px){.online-course-form__wrapper{flex-direction:column;align-items:initial;justify-content:initial}}.online-course-form__success{text-align:center;display:none;position:absolute;left:0;right:0;bottom:0;top:0;flex-direction:column;align-items:center;justify-content:center}.online-course-form__success-title{margin:0 0 20px 0}.online-course-form__success-image{margin-bottom:20px}.online-course-form__title{position:relative;margin:0px 20px 0px 0px}@media screen and (max-width: 900px){.online-course-form__title{margin:initial;margin-bottom:16px}}.online-course-form__button{font-size:18px}.online-course-form__form-wrapper{position:relative;display:grid;align-items:center;grid-template-columns:1fr 1fr;gap:20px 30px;max-width:55%}@media screen and (max-width: 900px){.online-course-form__form-wrapper{gap:16px 24px;max-width:initial}}@media screen and (max-width: 600px){.online-course-form__form-wrapper{grid-template-columns:1fr;gap:16px}}.online-course-form__form-button-addition{font-size:14px}.online-course-form.is-success form,.online-course-form.is-success .online-course-form__title{opacity:0;pointer-events:none}.online-course-form.is-success .online-course-form__success{display:flex}.online-course__switcher{display:flex;padding:4px;margin:0px;align-items:flex-start;border-radius:10px;border:1px solid #e1e5ee;background:#fff;width:100%;max-width:350px}@media screen and (max-width: 600px){.online-course__switcher{max-width:initial}}.online-course__switcher li{margin:0px;padding:0px;flex-grow:1}.online-course__switcher li::before{display:none}.online-course__switcher__button{display:flex;padding:12px 24px;justify-content:center;align-items:center;flex-shrink:0;border-radius:10px;cursor:pointer;font-family:"Proxima Nova",Arial,sans-serif;font-size:18px;font-style:normal;font-weight:400;line-height:150%;background-color:#fff;color:#1f1f1f;-webkit-user-select:none;-moz-user-select:none;user-select:none;transition:background-color 300ms ease,color 300ms ease}.online-course__switcher__input:checked+.online-course__switcher__button{background-color:#414e60;color:#fff}.online-course__switcher__input:not(:checked)+.online-course__switcher__button:hover{background-color:#e1e5ee}@media screen and (max-width: 600px){.online-course__switcher__button{font-size:16px}}.online-course-request{position:relative}.online-course-request__title{font-weight:600;font-size:20px;margin-bottom:30px;margin-top:0}.online-course-request__input-group:not(:last-child){margin-bottom:24px}.online-course-request__success{text-align:center;display:none;position:absolute;left:0;right:0;bottom:0;top:0;flex-direction:column;align-items:center;justify-content:center}.online-course-request__success-title{margin:0 0 20px 0}.online-course-request__success-image{margin-bottom:20px}.online-course-request__footer{display:flex;align-items:center;gap:20px 24px}@media screen and (max-width: 1199.98px){.online-course-request__footer{flex-wrap:wrap}}.online-course-request .field-error{line-height:1}.online-course-request__checkbox{font-size:12px}.online-course-request__checkbox a{color:#156ce1;border:none}.online-course-request__button{font-size:20px}@media screen and (max-width: 600px){.online-course-request__button{width:100%}}.online-course-request.is-success form{opacity:0;pointer-events:none}.online-course-request.is-success .online-course-request__success{display:flex}
/* End */


/* Start:/local/media/js/plugins/accordion.min.css?17128351361132*/
@charset "UTF-8";
/**
 * Accordion v3.3.4
 * Lightweight and accessible accordion module created in pure Javascript
 * https://github.com/michu2k/Accordion
 *
 * Copyright (c) Michał Strumpf
 * Published under MIT License
 */

.ac{margin-top:8px;border:1px solid #eee;background-color:#fff;box-sizing:border-box}.ac .ac-header{margin:0;padding:0}.ac .ac-trigger{font:bold 16px Arial,sans-serif;color:#111;text-align:left;width:100%;padding:8px 32px 8px 8px;display:block;cursor:pointer;background-color:transparent;transition:color .25s ease;position:relative;text-decoration:none;margin:0;border:0}.ac .ac-trigger::after{content:"+";text-align:center;width:15px;-webkit-transform:translate(0,-50%);transform:translate(0,-50%);position:absolute;right:10px;top:50%}.ac .ac-trigger:focus{color:#8a8a8a}.ac .ac-panel{overflow:hidden;transition-property:height,visibility;transition-timing-function:ease}.ac .ac-panel .ac-text{font:15px/24px Arial,sans-serif;color:#111;padding:8px;margin:0}.ac.js-enabled .ac-panel{visibility:hidden}.ac.is-active .ac-panel{visibility:visible}.ac.is-active>.ac-header .ac-trigger::after{content:"–"}
/* End */


/* Start:/local/media/css/academy.min.css?174946501252764*/
.filter-categories-btn{background:#f4f8fb;border:solid 1px rgba(0,0,0,0);display:inline-flex;align-items:center;font-size:16px;padding:0 20px;height:50px;color:#1f1f1f;border-radius:40px;font-weight:600}@media screen and (min-width: 900px){.filter-categories-btn{padding:0 28px;font-size:18px;height:64px}}.filter-categories-btn__count{color:#676b77;opacity:.8}.filter-categories-btn img,.filter-categories-btn__icon{flex-shrink:0}.filter-categories-btn img:first-child,.filter-categories-btn__icon:first-child{margin-right:15px}.filter-categories{display:flex;flex-wrap:wrap}.filter-categories__item{padding:0;margin:0 10px 15px 0}@media screen and (min-width: 900px){.filter-categories__item{margin:0 20px 15px 0}}.filter-categories__item:before{display:none}.filter-categories .is-active .filter-categories-btn{background:#fff;border-color:#e72430;color:#e72430}.filter-categories-scrolled{overflow-x:auto;-ms-overflow-style:none;scrollbar-width:none}@media screen and (max-width: 1270px){.filter-categories-scrolled{margin-right:-30px;margin-left:-30px;padding-right:30px;padding-left:30px}}@media screen and (max-width: 600px){.filter-categories-scrolled{margin-right:-15px;margin-left:-15px;padding-right:15px;padding-left:15px}}.filter-categories-scrolled::-webkit-scrollbar{display:none}.filter-categories-scrolled .filter-categories__item{margin-bottom:0;white-space:nowrap;flex-shrink:0;width:-moz-fit-content;width:fit-content}.filter-categories-scrolled .filter-categories{width:-moz-fit-content;width:fit-content;min-width:100%;flex-wrap:nowrap}.mega-nav{background:#f5f6fa;border-radius:10px;display:flex}.mega-nav__item{width:100%;min-width:0;padding:0 10px;margin:0}.mega-nav__item:first-child{padding-left:0}.mega-nav__item:last-child{padding-right:0}.mega-nav__item:before{display:none}.mega-nav .is-active .mega-nav-btn{background:#fff;border-color:#e72430}.mega-nav .is-active .mega-nav-btn .mega-nav-btn__value{color:#e72430}.mega-nav-btn{padding:15px;padding-right:12px;color:#1f1f1f;display:block;border-radius:10px;border:solid 1px rgba(0,0,0,0);font-size:16px;line-height:124%}@media screen and (min-width: 767px){.mega-nav-btn{font-size:18px;padding:26px}}.mega-nav-btn__value{font-weight:700;font-size:20px;margin-bottom:8px;line-height:120%;display:block}@media screen and (min-width: 767px){.mega-nav-btn__value{font-size:24px}}.mega-nav-scrolled{overflow-x:auto;-ms-overflow-style:none;scrollbar-width:none}@media screen and (max-width: 1270px){.mega-nav-scrolled{margin-right:-30px;margin-left:-30px;padding-right:30px;padding-left:30px}}@media screen and (max-width: 600px){.mega-nav-scrolled{margin-right:-15px;margin-left:-15px;padding-right:15px;padding-left:15px}}.mega-nav-scrolled::-webkit-scrollbar{display:none}.mega-nav-scrolled .mega-nav__item{min-width:235px;white-space:nowrap;width:-moz-fit-content;width:fit-content}@media screen and (max-width: 600px){.mega-nav-scrolled .mega-nav__item{min-width:140px}}.mega-nav-scrolled .mega-nav{width:-moz-fit-content;width:fit-content;min-width:100%}.timeline-indicator{display:flex;align-items:center}.timeline-indicator__after{font-size:16px;line-height:150%;flex-shrink:0;max-width:90px;margin-left:30px;margin-top:auto;margin-bottom:40px}@media screen and (min-width: 900px){.timeline-indicator__after{font-size:18px;max-width:150px}}.timeline-indicator__progress{display:flex;padding-left:0;width:100%;margin-bottom:0}.timeline-indicator__progress-name{font-size:16px;line-height:150%;max-width:150px;margin-bottom:20px;display:flex;flex:1;align-items:flex-end}@media screen and (min-width: 900px){.timeline-indicator__progress-name{font-size:18px;margin-bottom:30px}}.timeline-indicator__progress-value{font-size:20px;font-weight:600;line-height:150%}@media screen and (min-width: 900px){.timeline-indicator__progress-value{font-size:24px}}.timeline-indicator__progress-line{background:#e1e5ee;height:5px;width:100%;margin-bottom:20px;margin-top:auto;position:relative;transition:background .2s linear;cursor:pointer}@media screen and (min-width: 900px){.timeline-indicator__progress-line{margin-bottom:30px}}.timeline-indicator__progress-line:before{content:"";position:absolute;width:33px;height:33px;border-radius:50%;border:3px solid #e1e5ee;background:#f5f8fb;top:50%;left:0;transition:all .2s linear;transform:translateY(-50%)}.timeline-indicator__progress-item{margin-bottom:0;padding-left:0;flex-grow:1;display:flex;flex-direction:column;cursor:pointer}.timeline-indicator__progress-item:hover .timeline-indicator__progress-value{color:#e72430}.timeline-indicator__progress-item:hover .timeline-indicator__progress-line:before{background:#e1e5ee}.timeline-indicator__progress-item.is-prev .timeline-indicator__progress-line{background:#e72430}.timeline-indicator__progress-item.is-prev .timeline-indicator__progress-line:before{background:rgba(245,248,251,.88);border-color:#fff;-webkit-backdrop-filter:blur(2.5px);backdrop-filter:blur(2.5px)}.timeline-indicator__progress-item.is-active .timeline-indicator__progress-value{color:#e72430}.timeline-indicator__progress-item.is-active .timeline-indicator__progress-line:before{background:#e72430;box-shadow:0 0 0 8px #e1e5ee;width:20px;height:20px;border-color:#fff;margin-left:5px}.timeline-indicator__progress-item:last-child .timeline-indicator__progress-line:after{content:"";width:20px;height:34px;position:absolute;background:url("/local/media/css/../img/academy-timeline/arrow.svg") center no-repeat;left:100%;transform:translateY(-50%) translateX(-50%);margin:3px 0 0 -5px}.timeline-indicator__progress-item:before{display:none}.timeline-scrolled{overflow-x:auto;padding-left:5px;-ms-overflow-style:none;scrollbar-width:none}@media screen and (max-width: 1270px){.timeline-scrolled{margin-right:-30px;margin-left:-30px;padding-right:30px;padding-left:30px}}@media screen and (max-width: 600px){.timeline-scrolled{margin-right:-15px;margin-left:-15px;padding-right:15px;padding-left:15px}}.timeline-scrolled::-webkit-scrollbar{display:none}.timeline-scrolled .timeline-indicator__progress-item{min-width:200px;white-space:nowrap;width:-moz-fit-content;width:fit-content}@media screen and (max-width: 600px){.timeline-scrolled .timeline-indicator__progress-item{min-width:140px}}.timeline-scrolled .timeline-indicator{width:-moz-fit-content;width:fit-content;min-width:100%}.quote{background:#f5f6fa;border-radius:16px;position:relative;padding:35px 70px;font-size:18px;line-height:150%}@media screen and (max-width: 900px){.quote{padding:45px 20px 20px}}.quote:before{content:"";position:absolute;display:block;width:23px;height:17px;top:20px;left:30px;background:url("/local/media/css/../img/icons/quote.svg") center no-repeat;background-size:contain}@media screen and (max-width: 900px){.quote:before{left:20px}}.quote p{margin:0}.video-link{position:relative;display:block}.video-link:after{content:"";position:absolute;transition:transform .2s ease;top:50%;left:50%;transform:translateX(-50%) translateY(-50%);background:url("/local/media/css/../img/icons/play.svg") center no-repeat hsla(0,0%,100%,.85);background-size:12px;border:2px solid #fff;display:flex;align-items:center;justify-content:center;border-radius:50%;-webkit-backdrop-filter:blur(6px);backdrop-filter:blur(6px);width:49px;height:49px}@media screen and (min-width: 900px){.video-link:after{width:84px;height:84px;background-size:20px}}.academy-banner{background:#cfe0eb}.academy-banner__row{display:flex}@media screen and (max-width: 767px){.academy-banner__row{flex-wrap:wrap}}.academy-banner__media{display:flex;align-items:flex-end}@media screen and (max-width: 1199.98px){.academy-banner__media{width:75%;justify-content:flex-end}}@media screen and (max-width: 900px){.academy-banner__media{width:35%}}@media screen and (max-width: 767px){.academy-banner__media{width:100%;justify-content:center}}@media screen and (min-width: 767px){.academy-banner__media img{max-width:224%;margin:0 0 0 -44%}}.academy-banner__title{font-size:38px;line-height:124%}@media screen and (max-width: 900px){.academy-banner__title{max-width:400px}}@media screen and (min-width: 900px){.academy-banner__title{font-size:47px;text-transform:uppercase;letter-spacing:.02em}}@media screen and (min-width: 1199.98px){.academy-banner__title{font-size:60px;width:150%}}@media screen and (min-width: 1300px){.academy-banner__title{font-size:71px}}.academy-banner__title-wrap{margin-bottom:18px}.academy-banner__content{padding-top:30px;padding-bottom:0px;position:relative;z-index:2}@media screen and (max-width: 1199.98px){.academy-banner__content{flex-grow:1}}@media screen and (min-width: 767px){.academy-banner__content{padding-top:76px;padding-right:30px;padding-bottom:80px}}.academy-banner__text{font-size:18px;line-height:130%;max-width:580px;margin-bottom:30px}@media screen and (max-width: 1199.98px){.academy-banner__text{max-width:400px}}@media screen and (min-width: 1199.98px){.academy-banner__text{font-size:32px;margin-bottom:58px}}.academy-banner__year{font-size:14px;line-height:120%;display:flex;align-items:center;margin-bottom:30px}@media screen and (min-width: 1199.98px){.academy-banner__year{margin-bottom:102px;font-size:18px}}.academy-banner__year-value{color:#e72430;white-space:nowrap;font-size:40px;margin-right:15px}@media screen and (min-width: 1199.98px){.academy-banner__year-value{font-size:50px}}.academy-banner__year-desc{max-width:190px}.academy-banner__btn{background:#f2f9fd;color:#1f1f1f}@media screen and (max-width: 1199.98px){.academy-banner__btn{padding:0 20px}}@media screen and (max-width: 600px){.academy-banner__btn{width:100%}}.academy-banner__btn-icon{fill:#e72430}@media screen and (min-width: 1200px),(hover){.academy-banner__btn:hover{background-color:#d21e29 !important;color:#fff !important}.academy-banner__btn:hover .academy-banner__btn-icon{fill:#fff}}@media screen and (min-width: 600px){.academy-courses{padding-bottom:57px}}.academy-courses__title-wrap{max-width:495px;margin:0}.academy-courses .filter-categories-btn{height:73px;padding:0 35px}@media screen and (max-width: 900px){.academy-courses .filter-categories-btn__icon{width:50px;display:flex;align-items:center;justify-content:center}}@media screen and (max-width: 900px){.academy-courses .filter-categories-btn{display:flex;height:50px;padding:0 22px}}.academy-courses .filter-categories{margin-bottom:-40px}.academy-courses .filter-categories__item{margin:0 0px 14px 0;width:100%}@media screen and (max-width: 1199.98px){.academy-courses .filter-categories__item:first-child{width:100%}}@media screen and (min-width: 600px){.academy-courses .filter-categories__item{margin:0 20px 20px 0;width:initial}}@media screen and (min-width: 1199.98px){.academy-courses .filter-categories__item{margin:0 40px 40px 0}}.academy-gallery-item{position:relative;display:block;overflow:hidden;border-radius:10px}.academy-gallery-item img{width:100%;border-radius:inherit}.academy-gallery-item__desc{font-size:16px;font-weight:600;line-height:130%;position:absolute;right:30px;bottom:30px;left:30px;padding:10px 24px;transition:color .2s ease,transform .2s ease;color:#1f1f1f;border-radius:8px;background:#fff}.academy-gallery-item--video:after{position:absolute;top:50%;left:50%;width:64px;height:64px;content:"";transition:transform .2s ease;transform:translate(-50%, -70%);border:2px solid #fff;border-radius:50%;background:url("/local/media/css/../img/icons/play.svg") center no-repeat hsla(0,0%,100%,.85);background-size:27%;-webkit-backdrop-filter:blur(6px);backdrop-filter:blur(6px)}.academy-gallery-item--video:hover:after{transform:translate(-50%, -70%) scale(1.1)}.academy-gallery-item:hover .academy-gallery-item__desc{transform:translateY(-10px);color:#e72430}.academy-gallery__btn{width:100%;max-width:280px;color:#e72430 !important}@media screen and (max-width: 600px){.academy-gallery__btn{max-width:100%}}.academy-gallery__footer{display:flex;align-items:center;justify-content:center}.academy-gallery--small-padding{padding-bottom:10px}.academy-gallery .gutter-sizer{width:30px}.academy-gallery .academy-gallery-item{padding:15px}.academy-gallery .grid-sizer,.academy-gallery .academy-gallery-item{width:33.3333%;transition:none}@media screen and (max-width: 1199.98px){.academy-gallery .grid-sizer,.academy-gallery .academy-gallery-item{width:50%}}@media screen and (max-width: 600px){.academy-gallery .grid-sizer,.academy-gallery .academy-gallery-item{width:100%}}.academy-gallery__row{margin-left:-15px;margin-right:-15px;margin-bottom:20px}.academy-gallery__hidden-items .academy-gallery-item{display:none}.academy-gallery .academy-gallery-item.animate{transform:translateY(200px);animation:moveUp .65s ease forwards}@keyframes moveUp{100%{transform:translateY(0);opacity:1}}.academy-goals__row{display:flex;flex-wrap:wrap;margin-left:-10px;margin-right:-10px}.academy-goals__col{margin-bottom:20px;padding-left:10px;padding-right:10px}.academy-goals .academy-goals-item{height:100%}.academy-goals-item{background:#f5f6fa;border-radius:10px;display:flex;overflow:hidden}@media screen and (max-width: 900px){.academy-goals-item{flex-wrap:wrap}}.academy-goals-item__image{display:flex;align-items:flex-end;justify-content:flex-end;padding:0 15px;width:100%}@media screen and (min-width: 900px){.academy-goals-item__image{max-width:44%;padding:0;flex-shrink:0}}.academy-goals-item__content{flex-grow:1;padding:20px}@media screen and (min-width: 600px){.academy-goals-item__content{padding:40px 0px 0px 40px}}@media screen and (min-width: 900px){.academy-goals-item__content{padding:40px 0px 40px 40px}}@media screen and (min-width: 1199.98px){.academy-goals-item__content{padding:40px 0px 40px 60px}}.academy-goals-item__title{font-weight:700;font-size:18px;line-height:120%;margin-bottom:12px}@media screen and (min-width: 600px){.academy-goals-item__title{font-size:24px}}.academy-goals-item__desc{font-size:14px;line-height:150%;color:#676b77;max-width:520px}@media screen and (min-width: 600px){.academy-goals-item__desc{font-size:16px}}@media screen and (min-width: 1199.98px){.academy-goals-item__desc{font-size:18px}}.academy-history-item{color:#1f1f1f}.academy-history-item__image{border-radius:10px;overflow:hidden;display:block;margin-bottom:13px;transition:box-shadow .2s ease}.academy-history-item__image img{width:100%}.academy-history-item__title{font-weight:600;font-size:18px;line-height:130%;display:block}@media screen and (min-width: 600px){.academy-history-item__title{font-size:16px}}@media screen and (min-width: 900px){.academy-history-item__title{font-size:18px}}.academy-history-item:hover .academy-history-item__image{box-shadow:0px 13px 52px rgba(0,0,0,.09)}.academy-history-item-large{display:flex;border:1px solid #e1e5ee;border-radius:10px;position:relative}@media screen and (max-width: 900px){.academy-history-item-large{flex-wrap:wrap}}.academy-history-item-large--play .academy-history-item-large__image:after{content:"";position:absolute;transition:transform .2s ease;top:50%;left:50%;transform:translateX(-50%) translateY(-50%);background:url("/local/media/css/../img/icons/play.svg") center no-repeat hsla(0,0%,100%,.85);background-size:12px;border:2px solid #fff;display:flex;align-items:center;justify-content:center;border-radius:50%;-webkit-backdrop-filter:blur(6px);backdrop-filter:blur(6px);width:49px;height:49px}@media screen and (min-width: 900px){.academy-history-item-large--play .academy-history-item-large__image:after{width:84px;height:84px;background-size:20px}}.academy-history-item-large--play:hover .academy-history-item-large__image:after{transform:translateX(-50%) translateY(-50%) scale(1.1)}.academy-history-item-large:hover .academy-history-item-large__title{color:#e72430}.academy-history-item-large__image{width:100%;flex-shrink:0;display:block;position:relative;overflow:hidden;background-position:center;background-size:cover;border-radius:10px;min-height:260px}@media screen and (min-width: 600px){.academy-history-item-large__image{min-height:340px}}@media screen and (min-width: 900px){.academy-history-item-large__image{width:50%;max-width:593px}}.academy-history-item-large__content{display:flex;flex-direction:column;color:#1f1f1f;padding:20px}@media screen and (min-width: 900px){.academy-history-item-large__content{padding:45px;min-height:400px}}.academy-history-item-large__title{font-weight:700;font-size:18px;line-height:120%;margin:15px 0;display:block;transition:color .1s .2s ease}@media screen and (min-width: 900px){.academy-history-item-large__title{margin:30px 0;font-size:24px}}.academy-history-item-large__subtitle{display:block;color:#9497a3;margin-bottom:auto}.academy-history-item-large__bottom{max-width:285px;display:block;margin-top:auto}.academy-history-item-large__bottom p:last-child{margin-bottom:0}.academy-history__nav{margin-bottom:20px}@media screen and (min-width: 600px){.academy-history__nav{margin-bottom:40px}}.academy-history__footer{display:flex;align-items:center;justify-content:center}.academy-history__btn{color:#e72430 !important}@media screen and (max-width: 600px){.academy-history__btn{width:100%}}.academy-history__col{margin-bottom:20px}@media screen and (min-width: 600px){.academy-history__col{margin-bottom:34px}}.history-modal-wrap{width:100%;max-width:930px;display:none}.history-modal{background:#fff;border-radius:18px;padding:30px 20px}@media screen and (min-width: 900px){.history-modal{padding:60px}}.history-modal__text h1,.history-modal__text h2,.history-modal__text h3,.history-modal__text h4,.history-modal__text h5,.history-modal__text h6{font-weight:600}.history-modal__text img{border-radius:16px}.history-modal .history-top:not(:last-child){margin-bottom:30px}.history-modal__title{font-weight:700;line-height:130%;font-size:20px;margin-bottom:30px}@media screen and (max-width: 900px){.history-modal__title{max-width:90%}}@media screen and (min-width: 900px){.history-modal__title{font-size:32px}}.history-top{background:#f5f6fa;border-radius:16px;display:flex;padding:30px;align-items:center;justify-content:space-between}@media screen and (max-width: 900px){.history-top{flex-wrap:wrap;padding:10px}}.history-top__user{display:flex;align-items:center}@media screen and (max-width: 900px){.history-top__user{width:100%}}.history-top__user-avatar{flex-shrink:0;width:52px;height:52px;border-radius:50%;overflow:hidden;margin-right:15px;border:1px solid #e1e5ee}.history-top__user-name{max-width:140px;text-overflow:ellipsis;overflow:hidden;display:block;white-space:nowrap}.history-top__content-label{color:#676b77}.history-top__content-link{color:#156ce1}.history-top__content{width:44%;padding:0 20px}@media screen and (max-width: 900px){.history-top__content{padding:15px 0;width:100%}}.history-top__social{margin:0;padding:0;display:flex;align-items:center}@media screen and (max-width: 900px){.history-top__social{width:100%}}.history-top__social li{padding:0;margin:5px}.history-top__social li:before{display:none}.history-top__social-link{background:#fff;width:40px;height:40px;display:flex;align-items:center;justify-content:center;border-radius:5px;background-position:center;background-size:19px;background-repeat:no-repeat}.history-top__social-link.-fb{background-image:url(/local/media/css/../img/icons/fb.svg)}.history-top__social-link.-vk{background-image:url(/local/media/css/../img/icons/vk.svg)}.history-top__social-link.-instagram{background-image:url(/local/media/css/../img/icons/instagram.svg)}.history-top__social-link.-odnoklassniki{background-image:url(/local/media/css/../img/icons/odnoklassniki.svg)}.history-top__social-link.-tiktok{background-image:url(/local/media/css/../img/icons/tik-tok.svg)}.history-top__social-link.-dzen{background-image:url(/local/media/css/../img/icons/yandex-dzen.svg)}.history-top__social-link.-youtube{background-image:url(/local/media/css/../img/icons/youtube.svg)}.history-top__social-link.-rutube{background-image:url(/local/media/css/../../img/icons/rutube.svg)}.history-top__social-link.-telegram{background-image:url(/local/media/css/../img/icons/telegram.svg)}.history-top__social-link.-fb{background-image:url(/local/media/css/../img/icons/fb.svg)}.history-top__social-link.-liga{background-image:url(/local/media/css/../img/icons/liga.svg)}.academy-location{position:relative;width:100%}.academy-location__gallery{display:none}.academy-location__choice{display:flex;align-items:center;background:#fff;box-shadow:0px 13px 68px rgba(0,0,0,.06);font-weight:600;height:60px;font-size:18px;line-height:124%;padding:0 26px;cursor:pointer;border-radius:16px;transition:color .2s ease;min-width:285px}.academy-location__choice:hover{color:#e72430}@media screen and (min-width: 900px){.academy-location__choice{position:absolute;top:0px;right:0px}}@media screen and (max-width: 900px){.academy-location__choice{margin-bottom:20px}}.academy-location__choice-empty:not(:last-child),.academy-location__choice-name:not(:last-child){margin-right:14px}.academy-location__choice-name{display:none}.academy-location__choice-img{width:24px;flex-shrink:0;margin-right:14px}.academy-location__choice-icon{width:10px;flex-shrink:0;margin-left:auto}.academy-location__choice.is-active .academy-location__choice-name{display:block}.academy-location__choice.is-active .academy-location__choice-empty{display:none}.academy-location__popup{width:100%}@media screen and (min-width: 900px){.academy-location__popup{max-width:345px;position:absolute;top:20px;right:20px;bottom:20px;z-index:2}}@media screen and (min-width: 1199.98px){.academy-location__popup{right:325px;bottom:initial}}.academy-location__city{color:#e72430 !important;cursor:pointer;border-bottom:2px dashed rgba(231,36,49,.3)}.academy-location__select{position:relative}@media screen and (min-width: 900px){.academy-location__select{position:absolute;top:20px;z-index:2;right:20px;width:285px;bottom:initial;height:60px}.academy-location__select.is-open{bottom:20px;height:initial}}@media screen and (max-width: 900px){.academy-location__select{margin-bottom:20px}}.academy-location__select-list{background:#fff;box-shadow:0px 13px 68px rgba(0,0,0,.06);border-radius:16px;padding:0 26px;overflow-y:auto;height:100%;opacity:0;pointer-events:none;transform:translateY(-10px);transition:opacity .2s ease,transform .2s ease}.academy-location__select-list.is-open{opacity:1;pointer-events:all;transform:none}@media screen and (max-width: 900px){.academy-location__select-list{max-height:200px;height:initial;position:absolute;z-index:2;top:100%;left:0;right:0}.academy-location__select-list.is-open{border-top-left-radius:0;border-top-right-radius:0}}.academy-location__select-inner{display:flex;flex-direction:column}.academy-location__select-icon svg{width:28px;height:28px;flex-shrink:0;fill:#c6ccd8}.academy-location__select-icon-wrap{display:flex;justify-content:center;align-items:center;margin-right:20px}.academy-location__select-item{display:flex;align-items:center;font-weight:600;height:60px;font-size:18px;line-height:124%;cursor:pointer}@media screen and (max-width: 900px){.academy-location__select-item{height:40px;font-size:16px}}.academy-location__select-item.is-active{color:#e72430}@media screen and (max-width: 900px){.academy-location__select-item.is-active{display:none}}.academy-location__select-item.is-active .academy-location__select-icon svg{fill:#e72430}.academy-location__select-item:hover{color:#e72430}.academy-location__select-item:not(:last-child){border-bottom:1px solid #f0f0f0}.academy-location__map-wrap{position:relative}.academy-location__map{background:#fff;height:300px;border-radius:10px;overflow:hidden}@media screen and (min-width: 900px){.academy-location__map{height:530px}}@media screen and (min-width: 1199.98px){.academy-location__map{height:640px}}.academy-location__back{display:flex;align-items:center;background:#fff;box-shadow:0px 13px 68px rgba(0,0,0,.06);font-weight:600;height:60px;font-size:18px;line-height:124%;padding:0 26px;cursor:pointer;border-radius:16px;transition:color .2s ease;min-width:285px;z-index:2;display:none}.academy-location__back:hover{color:#e72430}.academy-location__back.is-active{display:flex}.academy-location__back-icon{width:10px;flex-shrink:0;margin-right:14px;transform:scale(-1, -1)}@media screen and (min-width: 900px){.academy-location__back{position:absolute;top:20px;left:20px}}@media screen and (max-width: 900px){.academy-location__back{margin-bottom:20px}}.location-popup{background:#fff;box-shadow:0px 10px 20px rgba(0,0,0,.08);border-radius:10px;overflow:hidden;overflow-y:auto}.location-popup__user{display:flex;margin-bottom:5px;align-items:center}.location-popup__user-content{font-size:16px;line-height:130%}.location-popup__user-content>*:not(:last-child){margin-bottom:3px}.location-popup__user-content a{color:#156ce1;text-decoration:none;border:none}.location-popup__user-avatar{width:70px;height:70px;overflow:hidden;border-radius:50%;flex-shrink:0;margin-right:15px;border:1px solid #e1e5ee}.location-popup__close{width:30px;height:30px;display:flex;align-items:center;justify-content:center;cursor:pointer;right:20px;top:20px;position:absolute}.location-popup__close svg{width:24px;height:24px}.location-popup__icon{width:40px;position:absolute;bottom:0;right:0;height:40px;background:#fff;border-radius:10px;display:flex;align-items:center;justify-content:center;cursor:pointer}.location-popup__icon img{width:24px}.location-popup__image{min-height:190px;padding:15px 25px;position:relative;color:#fff;background-size:cover;background-position:center;display:flex;flex-direction:column}.location-popup__image-content{position:relative;z-index:2;position:relative;margin-top:auto;padding-right:50px}.location-popup__image:before{content:"";position:absolute;top:0;left:0;right:0;bottom:0;background:linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.89) 100%);opacity:.3}.location-popup__content{padding:30px 25px}.location-popup__btn{width:100%;margin:20px 0;padding:0 20px}.location-popup__title{font-weight:600;font-size:18px;line-height:130%}.location-popup__title:not(:last-child){margin-bottom:6px}.location-popup__desc{font-size:16px;line-height:130%}.location-popup__label{font-weight:600;font-size:18px;line-height:130%}.location-popup__label:not(:last-child){margin-bottom:20px}.location-popup__link{font-weight:600}.location-popup__link span{text-decoration:underline}.location-popup__link-icon:first-child{margin-right:12px}.location-popup__link-wrap{text-align:center}.section_address-gray{margin-top:40px}.location-map{position:relative}.location-map__absolute-block{position:absolute;top:50px;right:50px;width:342px;background:#fff;border-radius:10px;overflow:hidden}@media screen and (max-width: 850px){.location-map__absolute-block{position:relative;width:100%;left:0;top:-100px;margin-bottom:-100px}}.location-map__image-wrapper{width:100%;height:188px;overflow:hidden;position:relative}.location-map__image-wrapper::after{content:"";background:linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.89) 100%);position:absolute;bottom:0;left:0;right:0;top:0;opacity:.6}.location-map__image-wrapper .location-map__image-text{position:absolute;bottom:15px;left:24px;max-width:70%;color:#fff;z-index:2}.location-map__image-wrapper img{width:100%;height:100%}.location-map__image-text-head{font-weight:600;font-size:18px;line-height:130%;padding-bottom:6px}.location-map__image-text-location{font-weight:400;font-size:16px;line-height:130%}.location-map__content{padding:24px}.location-map__content_head{font-weight:600;font-size:18px;line-height:130%;color:#1f1f1f;margin-top:10px;padding-bottom:20px}.location-map__content_flex{display:flex;align-items:center}.location-map__content_flex_img{width:73px}.location-map__content_flex_img img{width:73px;height:73px;border-radius:50%;border:1px solid #e1e5ee}.location-map__content_flex_text{padding-left:15px;width:calc(100% - 73px);font-weight:400;font-size:16px;line-height:130%;color:#1f1f1f}.location-map__content_flex_name{padding-bottom:5px}.location-map__content_flex_phone{color:#1f1f1f;padding-bottom:5px;display:block}.location-map__content_flex_mail{color:#156ce1;display:block}.location-map__content_flex_link{display:flex;align-items:center;justify-content:center;width:100%;height:60px;background:#e72430;border-radius:10px;color:#fff;font-weight:600;font-size:16px;line-height:130%;margin-top:20px}.location-map__content_flex_link:hover{color:#fff}.location-map__content_flex_link img{margin-right:14px}.academy-not-location{background:#fff;display:flex;align-items:center;border-radius:10px;justify-content:space-between}@media screen and (max-width: 900px){.academy-not-location{flex-wrap:wrap}}.academy-not-location__btns{width:240px;flex-shrink:0;max-width:30%}@media screen and (max-width: 1199.98px){.academy-not-location__btns{padding:30px;width:330px}}@media screen and (max-width: 900px){.academy-not-location__btns{padding:30px;width:100%;padding-bottom:0;max-width:initial}}.academy-not-location__btn{width:100%;justify-content:flex-start;padding:0 20px;height:50px}@media screen and (min-width: 1200px),(hover){.academy-not-location__btn:hover{background-color:#f5f6fa !important;border-color:#f5f6fa !important;color:#1f1f1f !important}}.academy-not-location__btn:not(:last-child){margin-bottom:10px}.academy-not-location__title{margin:6px 0 15px 0}@media screen and (max-width: 900px){.academy-not-location__text{font-size:14px !important}}.academy-not-location__image{max-width:36%}@media screen and (max-width: 900px){.academy-not-location__image{margin:10px auto;max-width:100%;display:block}}@media screen and (min-width: 900px){.academy-not-location__image{margin:-32px 11px 10px 0}}.academy-not-location__content{padding-left:72px;max-width:423px;padding-top:30px;padding-bottom:30px}@media screen and (max-width: 1199.98px){.academy-not-location__content{padding-left:40px}}@media screen and (max-width: 900px){.academy-not-location__content{padding:30px;padding-bottom:0}}.academy-skills-item{font-size:16px;line-height:120%}@media screen and (min-width: 900px){.academy-skills-item{font-size:18px;text-align:center}}@media screen and (max-width: 900px){.academy-skills-item br{display:none}}.academy-skills-item__value{font-weight:600;font-size:32px;margin-bottom:22px;position:relative;display:inline-block;vertical-align:top}@media screen and (min-width: 900px){.academy-skills-item__value{font-size:42px}}.academy-skills-item__value span{position:relative;z-index:2}.academy-skills-item__value:before{content:"";left:-5px;top:50%;transform:translateY(-50%);background:#fff;position:absolute;width:64px;height:64px;border-radius:50%}@media screen and (min-width: 900px){.academy-skills-item__value:before{left:-25px}}.academy-skills{position:relative}.academy-skills__circle{position:absolute;top:0px;transform:translateX(-93%);left:50%;bottom:0;height:100%;pointer-events:none}@media screen and (max-width: 900px){.academy-skills__circle{display:none}}.academy-skills__title-wrap{margin-bottom:30px;margin-top:10px}@media screen and (min-width: 600px){.academy-skills__title-wrap{margin-bottom:78px}}@media screen and (max-width: 900px){.academy-skills__title-wrap{text-align:left !important}}.academy-skills__list{display:flex;flex-wrap:wrap;margin:-15px;margin-bottom:-35px}.academy-skills__list-item{width:calc(100% - 30px);margin:15px 15px 30px 15px;padding-left:0}@media screen and (min-width: 600px){.academy-skills__list-item{width:calc(33.3333% - 30px);margin-bottom:48px}}.academy-skills__list-item:before{display:none}.academy-timeline{padding-bottom:10px}.academy-timeline__row{display:flex;align-items:center}@media screen and (max-width: 900px){.academy-timeline__row{flex-wrap:wrap}}.academy-timeline .timeline-scrolled{margin-top:20px}@media screen and (min-width: 900px){.academy-timeline .timeline-scrolled{margin-top:60px}}.academy-timeline__content{width:100%;margin-bottom:30px}@media screen and (min-width: 900px){.academy-timeline__content{padding-right:50px;margin-bottom:0;max-width:43%}}.academy-timeline__text{max-width:410px}.academy-timeline__slides{position:relative}.academy-timeline__slide{opacity:0;visibility:hidden;transition:opacity .2s linear}.academy-timeline__slide:not(:first-child){position:absolute;top:0;left:0;right:0}.academy-timeline__slide.is-active{opacity:1;visibility:visible}.academy-timeline__image{width:100%;max-width:680px}@media screen and (min-width: 900px){.academy-timeline__image{margin-left:auto}}.academy-timeline__image img{border-radius:10px}@media screen and (max-width: 900px){.academy-why-choose-item{display:flex;align-items:center}}.academy-why-choose-item__icon{width:64px;height:64px;background:#f5f6fa;border-radius:10px;display:flex;align-items:center;justify-content:center;margin-right:16px;flex-shrink:0}@media screen and (min-width: 900px){.academy-why-choose-item__icon{margin-bottom:25px;margin-right:0}}.academy-why-choose-item__icon img{width:60%}@media screen and (min-width: 900px){.academy-why-choose-item__icon{width:94px;height:94px}}.academy-why-choose-item__title{font-weight:700;font-size:18px;line-height:120%;margin-bottom:10px}@media screen and (min-width: 900px){.academy-why-choose-item__title{font-size:20px;margin-bottom:15px}}@media screen and (min-width: 1199.98px){.academy-why-choose-item__title{font-size:24px}}.academy-why-choose-item__desc{color:#676b77;font-size:14px;line-height:124%}@media screen and (min-width: 900px){.academy-why-choose-item__desc{font-size:18px}}.academy-why-choose__title-wrap{margin-top:10px;margin-bottom:30px}.academy-why-choose__list{display:flex;flex-wrap:wrap;margin:0}@media screen and (min-width: 900px){.academy-why-choose__list{margin:-15px}}.academy-why-choose__list-item{width:100%;margin:0 0 20px 0;padding-left:0}@media screen and (max-width: 900px){.academy-why-choose__list-item:last-child{margin-bottom:0}}@media screen and (min-width: 900px){.academy-why-choose__list-item{width:calc(33.3333% - 30px);margin:15px 15px 38px 15px}}.academy-why-choose__list-item:before{display:none}.academy-teacher{border:1px solid #e1e5ee;border-radius:10px;padding:20px;display:flex;flex-direction:column;transition:border-color .15s ease;cursor:pointer;color:#1f1f1f}@media screen and (min-width: 1199.98px){.academy-teacher{padding:42px 30px}}@media screen and (min-width: 1300px){.academy-teacher{padding:42px 40px}}@media screen and (min-width: 1200px),(hover){.academy-teacher:hover{color:#1f1f1f;border-color:#e72430}}.academy-teacher__avatar-wrap{position:relative;margin-right:13px;flex-shrink:0}@media screen and (min-width: 600px){.academy-teacher__avatar-wrap{margin-right:5px}}@media screen and (min-width: 1100px){.academy-teacher__avatar-wrap{margin-right:13px}}.academy-teacher__avatar-wrap--play:after{content:"";position:absolute;top:100%;left:50%;transform:translateX(-50%) translateY(-70%);background:url("/local/media/css/../img/icons/play.svg") center no-repeat hsla(0,0%,100%,.85);background-size:33%;border:2px solid #fff;display:flex;align-items:center;justify-content:center;border-radius:50%;-webkit-backdrop-filter:blur(6px);backdrop-filter:blur(6px);width:40px;height:40px}.academy-teacher__avatar{width:80px;height:80px;border-radius:50%;overflow:hidden;box-shadow:0px 22px 64px rgba(0,0,0,.09);border:solid 2px #fff;display:flex;align-items:center;justify-content:center;position:relative}@media screen and (min-width: 1199.98px){.academy-teacher__avatar{width:100px;height:100px}}@media screen and (min-width: 1300px){.academy-teacher__avatar{width:123px;height:123px}}.academy-teacher__top{display:flex;align-items:center;margin-bottom:18px}.academy-teacher__icons{display:flex;align-items:center;flex-wrap:wrap}.academy-teacher__icons-btn{margin:2px;border-radius:50%;height:36px;width:36px;display:flex;align-items:center;justify-content:center;background:linear-gradient(146.31deg, #EFF4FA 23.91%, #EFF3F7 83.26%)}@media screen and (min-width: 1100px){.academy-teacher__icons-btn{height:46px;width:46px;margin:4px}}.academy-teacher__icons-btn svg{width:18px;height:18px;transition:fill .15s ease;fill:#676b77}@media screen and (min-width: 1100px){.academy-teacher__icons-btn svg{width:24px;height:24px}}.academy-teacher__title{font-weight:700;font-size:18px;line-height:120%;display:block;color:#1f1f1f;margin-bottom:8px;transition:color .1s .2s ease}@media screen and (min-width: 1199.98px){.academy-teacher__title{font-size:24px}}.academy-teacher__subtitle{font-size:16px;color:#676b77;line-height:124%;margin-bottom:20px}@media screen and (min-width: 1199.98px){.academy-teacher__subtitle{font-size:18px;margin-bottom:40px}}.academy-teacher__list{margin-top:auto}.academy-teacher__list-name{color:#676b77;padding-right:10px}.academy-teacher__list-item{display:flex;align-items:center;justify-content:space-between;font-size:16px}.academy-teacher__list-item:not(:last-child){margin-bottom:15px}.academy-teachers__nav{margin-bottom:20px}.academy-teachers__footer{display:flex;align-items:center;margin-top:30px;justify-content:center}@media screen and (min-width: 600px){.academy-teachers__footer{display:none}}.academy-teachers .academy-teacher{height:100%}.academy-teachers__btn{color:#e72430 !important}@media screen and (max-width: 600px){.academy-teachers__btn{width:100%}}.academy-teachers__col{margin-bottom:20px}@media screen and (max-width: 600px){.academy-teachers__col{display:none}.academy-teachers__col:nth-child(-n+3){display:block}}@media screen and (min-width: 900px){.academy-teachers__col{margin-bottom:30px}}.academy-teachers .is-show-all .academy-teachers__col{display:block}.academy-teachers__city{color:#e72430 !important;cursor:pointer;border-bottom:2px dashed rgba(231,36,49,.3)}.slider-teacher{position:relative;width:100%}.slider-teacher .slider-teacher-slide{width:100%;border:1px solid #e1e5ee;border-radius:10px;padding:35px;display:flex;flex-direction:row;transition:border-color .15s ease;color:#1f1f1f}@media screen and (max-width: 850px){.slider-teacher .slider-teacher-slide{display:block}}.slider-teacher .slider-teacher_col_left{width:310px}@media screen and (max-width: 850px){.slider-teacher .slider-teacher_col_left{width:100%}}.slider-teacher .slider-teacher_col_left .slider-teacher_head-right{display:block;margin-top:20px}.slider-teacher .slider-teacher_col_left .slider-teacher_head-right .slider-teacher_mame-wrap{font-weight:700;font-size:24px;line-height:120%;color:#1f1f1f}.slider-teacher .slider-teacher_col_left .slider-teacher_head-right .slider-teacher_mame-wrap .slider-teacher_mame-post{font-weight:400;font-size:18px;line-height:124%;color:#676b77;padding-top:8px;display:block}.slider-teacher .slider-teacher_col_left .slider-teacher_head-right .slider-teacher_cont-wrap{display:block}@media screen and (max-width: 1050px){.slider-teacher .slider-teacher_col_left .slider-teacher_head-right .slider-teacher_cont-wrap{margin-top:15px;justify-content:flex-start}}.slider-teacher .slider-teacher_col_left .slider-teacher_head-right .slider-teacher_cont-wrap .slider-teacher_cont-el{display:flex;align-items:center;margin-bottom:15px}.slider-teacher .slider-teacher_col_left .slider-teacher_head-right .slider-teacher_cont-wrap .slider-teacher_cont-el a{color:#1f1f1f;text-decoration:none;padding-left:14px;border-bottom:none}.slider-teacher .slider-teacher_col_left .slider-teacher_head-right .slider-teacher_cont-wrap .slider-teacher_cont-el a:hover{color:#156ce1}.slider-teacher .slider-teacher_col_left .slider-teacher_avatar{position:relative;width:251px;height:251px;background-position:center;background-size:contain;background-repeat:no-repeat;background-color:#fff;border-radius:50%;border:solid 2px #fff;box-shadow:0 0 10px rgba(0,0,0,.0784313725)}@media screen and (max-width: 850px){.slider-teacher .slider-teacher_col_left .slider-teacher_avatar{width:121px;height:121px;margin:0 auto}}.slider-teacher .slider-teacher_col_left .slider-teacher_avatar img{width:100%;height:100%;border-radius:50%}.slider-teacher .slider-teacher_col_left .slider-teacher_years-wrap{width:249px;margin-top:45px;background:#f5f6fa;border-radius:10px;padding:0 20px}@media screen and (max-width: 850px){.slider-teacher .slider-teacher_col_left .slider-teacher_years-wrap{width:100%;max-width:500px}}.slider-teacher .slider-teacher_col_left .slider-teacher_years-wrap .slider-teacher_years-el{padding:24px 0}@media screen and (max-width: 850px){.slider-teacher .slider-teacher_col_left .slider-teacher_years-wrap .slider-teacher_years-el{display:flex;align-items:center;justify-content:space-between}}.slider-teacher .slider-teacher_col_left .slider-teacher_years-wrap .slider-teacher_years-el .slider-teacher_years-head{font-weight:400;font-size:18px;line-height:120%;color:#1f1f1f;padding-bottom:30px}@media screen and (max-width: 850px){.slider-teacher .slider-teacher_col_left .slider-teacher_years-wrap .slider-teacher_years-el .slider-teacher_years-head{padding-bottom:0px}}.slider-teacher .slider-teacher_col_left .slider-teacher_years-wrap .slider-teacher_years-el .slider-teacher_years-num{font-weight:600;font-size:30px;line-height:124%;letter-spacing:.02em;text-transform:uppercase;position:relative;white-space:nowrap;padding-left:27px;z-index:1}@media screen and (max-width: 850px){.slider-teacher .slider-teacher_col_left .slider-teacher_years-wrap .slider-teacher_years-el .slider-teacher_years-num{width:130px;font-size:42px}}.slider-teacher .slider-teacher_col_left .slider-teacher_years-wrap .slider-teacher_years-el .slider-teacher_years-num .slider-teacher_years-small{font-weight:600;font-size:18px;line-height:124%;letter-spacing:.02em;text-transform:uppercase}.slider-teacher .slider-teacher_col_left .slider-teacher_years-wrap .slider-teacher_years-el .slider-teacher_years-num:after{content:"";position:absolute;left:0;bottom:0px;width:64px;height:64px;border-radius:50%;background:#fff;z-index:-1}.slider-teacher .slider-teacher_col_left .slider-teacher_years-wrap .slider-teacher_years-el:first-child{border-bottom:1px solid #e1e5ee}.slider-teacher .slider-teacher_col_right{width:calc(100% - 310px)}@media screen and (max-width: 850px){.slider-teacher .slider-teacher_col_right{width:100%}}.slider-teacher .slider-teacher_col_right .slider-teacher_head-right{display:flex;align-items:center;flex-wrap:wrap;justify-content:space-between}@media screen and (max-width: 1050px){.slider-teacher .slider-teacher_col_right .slider-teacher_head-right{display:block}}.slider-teacher .slider-teacher_col_right .slider-teacher_head-right .slider-teacher_mame-wrap{font-weight:700;font-size:24px;line-height:120%;color:#1f1f1f}.slider-teacher .slider-teacher_col_right .slider-teacher_head-right .slider-teacher_mame-wrap .slider-teacher_mame-post{font-weight:400;font-size:18px;line-height:124%;color:#676b77;padding-top:8px;display:block}.slider-teacher .slider-teacher_col_right .slider-teacher_head-right .slider-teacher_cont-wrap{display:flex;align-items:center}@media screen and (max-width: 1050px){.slider-teacher .slider-teacher_col_right .slider-teacher_head-right .slider-teacher_cont-wrap{margin-top:15px;justify-content:flex-start}}.slider-teacher .slider-teacher_col_right .slider-teacher_head-right .slider-teacher_cont-wrap .slider-teacher_cont-el{display:flex;align-items:center;padding-left:33px;margin-bottom:10px}@media screen and (max-width: 1050px){.slider-teacher .slider-teacher_col_right .slider-teacher_head-right .slider-teacher_cont-wrap .slider-teacher_cont-el:first-child{padding-left:0}}.slider-teacher .slider-teacher_col_right .slider-teacher_head-right .slider-teacher_cont-wrap .slider-teacher_cont-el a{color:#1f1f1f;text-decoration:none;padding-left:14px;border-bottom:none}.slider-teacher .slider-teacher_col_right .slider-teacher_head-right .slider-teacher_cont-wrap .slider-teacher_cont-el a:hover{color:#156ce1}.slider-teacher .slider-teacher_col_right .slider-teacher_content{padding-top:24px;font-weight:400;font-size:16px;line-height:150%;color:#1f1f1f}@media screen and (max-width: 850px){.slider-teacher .slider-teacher_col_right .slider-teacher_content{height:150px;overflow:hidden}}.slider-teacher .slider-teacher_col_right .slider-teacher_content.open{height:auto}.slider-teacher .slider-teacher_col_right .slider-teacher_content p{padding-bottom:15px}.slider-teacher .slider-teacher_col_right .slider-teacher_sert{margin-top:24px}.slider-teacher .slider-teacher_col_right .slider-teacher_sert .slider-teacher_sert-head{font-weight:600;font-size:18px;line-height:130%;padding-bottom:20px}.slider-teacher .slider-teacher_col_right .slider-teacher_sert .slider-teacher_sert-wrapper{width:100%;overflow-x:auto}.slider-teacher .slider-teacher_col_right .slider-teacher_sert .slider-teacher_sert-wrapper .no-list{display:flex;flex-wrap:nowrap}@media screen and (max-width: 1199.98px){.slider-teacher .slider-teacher_col_right .slider-teacher_sert .slider-teacher_sert-wrapper .no-list{flex-wrap:nowrap;margin-left:-30px;margin-right:-30px;padding-left:30px;padding-right:30px}}@media screen and (max-width: 600px){.slider-teacher .slider-teacher_col_right .slider-teacher_sert .slider-teacher_sert-wrapper .no-list{margin-left:-15px;margin-right:-15px;padding-left:15px;padding-right:15px}}.slider-teacher .slider-teacher_col_right .slider-teacher_sert .slider-teacher_sert-wrapper .slider-teacher_sert-elem{padding:15px;border:1px solid #e1e5ee;border-radius:10px;text-align:center;margin-top:15px;min-width:189px;max-width:189px;margin-right:15px}@media screen and (max-width: 850px){.slider-teacher .slider-teacher_col_right .slider-teacher_sert .slider-teacher_sert-wrapper .slider-teacher_sert-elem{width:100%}}.slider-teacher .slider-teacher_col_right .slider-teacher_sert .slider-teacher_sert-wrapper .slider-teacher_sert-elem img{max-width:60%;height:auto}.slider-teacher .slider-teacher_col_right .slider-teacher_sert .slider-teacher_sert-wrapper .slider-teacher_sert-elem .slider-teacher_sert-el-head{padding-top:10px;font-weight:400;font-size:16px;line-height:124%;color:#676b77}@media screen and (max-width: 850px){.slider-teacher .slider-teacher_col_right .slider-teacher_sert .slider-teacher_sert-wrapper .slider-teacher_sert-elem .slider-teacher_sert-el-head{min-width:200px}}.slider-teacher .slider-teacher-slide:not(.swiper-slide-visible){opacity:0}.slider-teacher .swiper-buttons__btn{background:#f5f6fa !important;border:none !important}.slider-teacher .slider-teacher-pagination{bottom:-20px !important}@media screen and (min-width: 1199px){.slider-teacher .slider-teacher-pagination{display:none}}.slider-teacher .slider-teacher_more{font-weight:600;font-size:14px;line-height:130%;color:#e72430 !important}@media screen and (min-width: 851px){.slider-teacher .slider-teacher_more{display:none}}.slider-teacher .slider-teacher_more.open{color:#e72430}.slider-teacher .slider-teacher_more.open svg{transform:rotate(180deg)}@media screen and (max-width: 850px){.slider-teacher .desktop{display:none !important}}@media screen and (min-width: 851px){.slider-teacher .mobile{display:none !important}}.academy-intro{color:#fff;position:relative;overflow:hidden}.academy-intro__wrap{min-height:410px;padding-bottom:30px !important}@media screen and (min-width: 600px){.academy-intro__wrap{padding-bottom:100px !important}}.academy-intro__image{position:absolute;top:0;left:50%;transform:translateX(-50%);bottom:0;background-size:cover;background-position:bottom 35% center;background-repeat:no-repeat;z-index:1;width:100%;max-width:1920px}.academy-intro__bg{position:absolute;top:-30px;left:-30px;right:-30px;bottom:-30px;background-size:cover;background-position:bottom 35% center;filter:blur(25px)}.academy-intro:before{content:"";opacity:.6;position:absolute;left:0;right:0;bottom:0;top:0;z-index:2;background:linear-gradient(262.06deg, rgba(0, 0, 0, 0) 20.18%, rgba(0, 0, 0, 0.66) 54.47%)}.academy-intro__tags{display:flex;flex-wrap:wrap;margin:0;padding:0}.academy-intro__tags-item{margin:0 10px 10px 0;padding:0}.academy-intro__tags-item:before{display:none}@media screen and (min-width: 600px){.academy-intro__tags-item{margin:0 20px 15px 0}}.academy-intro__tag{background:#f4f8fb;display:block;padding:0 18px;border-radius:60px;font-weight:600;display:flex;font-size:14px;line-height:124%;align-items:center;height:40px;color:#1f1f1f}.academy-intro__title{font-weight:800;font-size:30px;line-height:120%}@media screen and (min-width: 900px){.academy-intro__title{font-size:56px}}.academy-intro__title:not(:last-child){margin-bottom:20px}@media screen and (min-width: 600px){.academy-intro__title:not(:last-child){margin-bottom:50px}}.academy-intro .breadcrumbs{padding-top:30px;border:none}.academy-intro .breadcrumbs__item span{color:#fff}.academy-intro .breadcrumbs__item span:hover{color:#fff !important}.academy-intro .breadcrumbs__item a{color:#fff}.academy-intro__content{width:900px;max-width:100%;position:relative;z-index:2}.academy-schedule__btn{color:#e72430 !important;background:rgba(0,0,0,0) !important}@media screen and (min-width: 1200px),(hover){.academy-schedule__btn:hover{background:#e72430 !important;color:#fff !important;border-color:#e72430 !important}}@media screen and (max-width: 600px){.academy-schedule__btn{width:100%}}@media screen and (min-width: 600px){.academy-schedule__title-wrap{margin-bottom:50px}}.academy-schedule .academy-schedule-item{height:100%}.academy-schedule__col{margin-bottom:10px}@media screen and (min-width: 600px){.academy-schedule__col{margin-bottom:20px}}.academy-schedule__footer{margin-top:20px;display:flex;align-items:center;justify-content:center}.academy-schedule-item{background:#fff;border-radius:10px;display:flex;overflow:hidden;border:1px solid #e1e5ee}@media screen and (min-width: 600px){.academy-schedule-item{align-items:center}}.academy-schedule-item__title{font-weight:600;font-size:14px;line-height:120%}.academy-schedule-item__title a{color:#1f1f1f;border:none !important}@media screen and (min-width: 600px){.academy-schedule-item__title{font-size:20px}}.academy-schedule-item__title:not(:last-child){margin-bottom:15px}.academy-schedule-item__tags{display:flex;flex-wrap:wrap;margin-bottom:-10px}@media screen and (min-width: 600px){.academy-schedule-item__tags{margin-right:-15px;margin-bottom:-15px}}.academy-schedule-item__content{padding:20px}@media screen and (min-width: 600px){.academy-schedule-item__content{padding:30px}}.academy-schedule-item__month,.academy-schedule-item__weekday{font-size:12px}.academy-schedule-item__date{font-size:48px;line-height:1}.academy-schedule-item__date-label{color:#676b77;font-size:14px;line-height:1.2}.academy-schedule-item__date-label:not(:last-child){margin-bottom:10px}.academy-schedule-item__col-date{display:flex;flex-direction:column;justify-content:center;height:100%;width:115px;flex-shrink:0;text-align:center;padding:20px;background-color:#e1e5ee}@media screen and (min-width: 600px){.academy-schedule-item__col-date{width:145px;padding:30px}}.academy-schedule-item__tag{margin:0 0 10px 0;display:flex;font-size:12px;align-items:center;width:100%}@media screen and (min-width: 600px){.academy-schedule-item__tag{margin:0 15px 15px 0;width:initial}}.academy-schedule-item__tag a{border-bottom-style:dashed}.academy-schedule-item__tag-icon{width:18px;flex-shrink:0;margin-right:8px}.time-begin{position:relative;margin-top:50px}@media screen and (min-width: 1199.98px){.time-begin{padding-bottom:90px}}@media screen and (min-width: 1300px){.time-begin{padding-bottom:170px}}.time-begin__circle{position:absolute;top:0px;transform:translateX(-85%);left:50%;bottom:0;height:100%}@media screen and (min-width: 1199.98px){.time-begin__hat{margin:-18% 34px 9px auto;max-width:54%}}@media screen and (max-width: 1199.98px){.time-begin__hat{order:2;margin:0 auto}}@media screen and (min-width: 1199.98px){.time-begin__title{font-size:50px}}@media screen and (min-width: 1300px){.time-begin__title{font-size:56px}}.time-begin__title-wrap{margin-bottom:17px}.time-begin__row{display:flex;align-items:flex-end;position:relative;z-index:2}@media screen and (max-width: 1199.98px){.time-begin__row{flex-wrap:wrap}}@media screen and (min-width: 1199.98px){.time-begin__text{font-size:20px;margin-bottom:-10px}}@media screen and (min-width: 1300px){.time-begin__text{font-size:24px}}@media screen and (max-width: 1199.98px){.time-begin__text{margin-bottom:30px}}.time-begin__btn{margin:0 15px 15px 0;padding:0 25px;min-width:211px}@media screen and (max-width: 900px){.time-begin__btn{width:100%;margin-right:0}}@media screen and (min-width: 1199.98px){.time-begin__btn{margin:0 30px 15px 0}}@media screen and (min-width: 1200px),(hover){.time-begin__btn:hover{background:#fff !important;color:#e72430 !important;border-color:#fff !important}}.time-begin__btns{display:flex;justify-content:flex-end;flex-wrap:wrap;margin-right:-30px;margin-bottom:-15px}@media screen and (max-width: 1199.98px){.time-begin__btns{justify-content:flex-start;margin-right:0;width:100%;margin-bottom:10px}}.time-begin__col-content{width:36%}@media screen and (max-width: 1199.98px){.time-begin__col-content{width:100%}}.time-begin__col-media{position:relative;display:flex;flex-direction:column;width:64%}@media screen and (max-width: 1199.98px){.time-begin__col-media{width:100%}}
/* End */


/* Start:/local/media/css/seminar.min.css?176468314721178*/
.seminar-hero{position:relative;padding:20px 0 60px;min-height:546px;color:#fff;z-index:1}@media(max-width: 700px){.seminar-hero{padding-bottom:40px;min-height:unset;}}.seminar-hero__breadcrumbs{width:100%}.seminar-hero__breadcrumbs .breadcrumbs{color:hsla(0,0%,100%,.8);border-bottom:none !important}.seminar-hero__breadcrumbs .breadcrumbs__item a,.seminar-hero__breadcrumbs .breadcrumbs__item a span{color:hsla(0,0%,100%,.8)}.seminar-hero__breadcrumbs .breadcrumbs__item>span{color:#fff}.seminar-hero__img{display:block;width:100%;height:100%;position:absolute;inset:0;z-index:-1}.seminar-hero__img::before{position:absolute;content:"";inset:0;display:block;width:100%;height:100%;background:linear-gradient(0deg, rgba(65, 78, 96, 0.84) 0%, rgba(65, 78, 96, 0) 95.42%),rgba(65,78,96,.5)}.seminar-hero__img img{display:block;width:100%;height:100%;-o-object-fit:cover;object-fit:cover}.seminar-hero__content{display:flex;flex-direction:column;align-items:flex-start;padding-top:40px}@media(max-width: 700px){.seminar-hero__content{margin-top:auto}}.seminar-hero__share{display:inline-flex;align-items:center;gap:10px;font-size:14px;line-height:1.3;margin-bottom:12px;background-color:rgba(0,0,0,0);padding:0;outline:none;border:none;-webkit-user-select:none;-moz-user-select:none;user-select:none}.seminar-hero__share svg{display:block;width:24px;height:24px}@media(max-width: 700px){.seminar-hero__share span{display:none}}.seminar-hero__title{font-size:34px;line-height:1.3;font-weight:800;margin:0 0 12px}@media(max-width: 700px){.seminar-hero__title{font-size:24px}}.seminar-hero__datetime{padding-left:42px;display:flex;flex-direction:column;align-self:flex-start;gap:8px;position:relative}.seminar-hero__datetime svg{display:block;width:32px;height:32px;position:absolute;left:0;top:50%;transform:translateY(-50%)}.seminar-hero__datetime span{font-size:14px;color:hsla(0,0%,100%,.6)}.seminar-hero__schedule-link{display:inline-block;font-weight:600;color:#fff;border-bottom:1px dashed hsla(0,0%,100%,.3)}.seminar-hero__btn{width:248px;margin-top:24px}@media(max-width: 700px){.seminar-hero__btn{width:100%}}.seminar-hero__status{width:auto;display:inline-flex;align-items:center;justify-content:center;gap:8px;margin-top:24px;padding:12px 24px;font-size:16px;line-height:1.3;font-weight:600;background-color:#16c861;border-radius:30px;color:#fff;border:none;outline:none;text-decoration:none}.seminar-details{display:grid;grid-template-columns:repeat(4, 1fr);gap:20px}@media(max-width: 1200px){.seminar-details{grid-template-columns:repeat(2, 1fr)}}@media(max-width: 700px){.seminar-details{gap:12px}}.seminar-details__item{padding:31px 23px;display:flex;align-items:center;gap:20px;background:#f5f6fa;border-radius:10px;border:1px solid #f5f6fa}@media(max-width: 700px){.seminar-details__item{padding:19px;flex-direction:column;align-items:flex-start}}.seminar-details__item--color{background:RGB(255, 242, 243);background:linear-gradient(90deg, rgb(255, 242, 243) 0%, rgb(255, 255, 255) 100%);border-color:#e72430}.seminar-details__item-icon{width:52px;height:52px;display:flex;align-items:center;justify-content:center;flex-shrink:0}.seminar-details__item-icon svg{display:block}.seminar-details__item-subtitle{font-size:14px;line-height:1.3;color:#676b77;margin-bottom:4px}.seminar-details__item-title{font-size:18px;line-height:1.3;font-weight:600}@media(max-width: 700px){.seminar-details__item-title{font-size:14px}}.seminar-plan__top{margin-bottom:32px}.seminar-plan__content{display:flex;align-items:flex-start;justify-content:space-between;gap:40px}@media(max-width: 992px){.seminar-plan__content{flex-direction:column-reverse}}@media(max-width: 700px){.seminar-plan__content{gap:32px}}.seminar-plan__info{max-width:590px;width:100%}@media(max-width: 992px){.seminar-plan__info{max-width:100%}}.seminar-plan__img{display:block;max-width:520px;width:100%;margin-top:78px}@media(max-width: 992px){.seminar-plan__img{max-width:100%;margin-top:0}}.seminar-plan__img img{display:block;width:100%;border-radius:10px}.seminar-plan__category{width:auto;display:inline-block;padding:14px 25px;font-size:14px;line-height:1.3;font-weight:600;background-color:#e72430;color:#fff;border-radius:60px;margin-bottom:32px}@media(max-width: 700px){.seminar-plan__category{margin-bottom:20px}}.seminar-plan__schedule-item-head{display:flex;align-self:center;gap:16px}.seminar-plan__schedule-item-title{font-size:24px;line-height:1.2;font-weight:700}@media(max-width: 700px){.seminar-plan__schedule-item-title{font-size:20px}}.seminar-plan__schedule-item-time{padding:7px 15px;color:#676b77;text-align:center;font-size:14px;line-height:1.3;background-color:#e1e5ee;border-radius:10px;flex-shrink:0}.seminar-plan__schedule-item-desc{margin-top:24px}@media(max-width: 700px){.seminar-plan__schedule-item-desc{margin-top:16px}}.seminar-plan__btn{margin-top:56px}@media(max-width: 700px){.seminar-plan__btn{margin-top:24px;width:100%}}.seminar-knowledge{display:grid;grid-template-columns:repeat(3, 1fr);margin:0 -40px}@media(max-width: 1200px){.seminar-knowledge{margin:0 -20px}}@media(max-width: 992px){.seminar-knowledge{display:block;margin:0}}.seminar-knowledge__item{display:flex;align-items:flex-start;gap:24px;padding:0 40px}@media(max-width: 1200px){.seminar-knowledge__item{padding:0 20px;gap:20px}}@media(max-width: 992px){.seminar-knowledge__item{width:100%;padding:0}.seminar-knowledge__item:not(:last-child){padding-bottom:20px;margin-bottom:20px}}.seminar-knowledge__item:not(:last-child){border-right:1px solid #e1e5ee}@media(max-width: 992px){.seminar-knowledge__item:not(:last-child){border-right:0;border-bottom:1px solid #e1e5ee}}.seminar-knowledge__item-icon{display:flex;align-items:center;justify-content:center;width:52px;height:52px;background-color:#fff;border-radius:10px;flex-shrink:0}.seminar-knowledge__item-icon svg{display:block;width:30px;height:30px}.seminar-knowledge__item-title{font-size:20px;line-height:1.2;font-weight:600;margin-bottom:10px}@media(max-width: 1200px){.seminar-knowledge__item-title{font-size:18px;margin-bottom:8px}}.seminar-knowledge__item-desc{color:#676b77}.seminar-about{display:flex;align-items:flex-start;justify-content:space-between;gap:32px}@media(max-width: 700px){.seminar-about{flex-direction:column}}.seminar-about__info{max-width:643px;width:100%}@media(max-width: 700px){.seminar-about__info{max-width:100%}}.seminar-about__title.h1{margin:0 0 24px 0}@media(max-width: 700px){.seminar-about__title.h1{margin-bottom:16px}}.seminar-about__desc{line-height:1.5}@media(max-width: 700px){.seminar-about__desc{line-height:1.3}}.seminar-about__img{max-width:425px;width:100%}@media(max-width: 700px){.seminar-about__img{max-width:100%}}.seminar-types{display:grid;grid-template-columns:repeat(3, 1fr);gap:20px}@media(max-width: 992px){.seminar-types{grid-template-columns:1fr;grid-template-rows:repeat(3, 1fr)}}.seminar-types__item{display:flex;flex-direction:column;padding:24px;background-color:#fff;border-radius:10px}@media(max-width: 992px){.seminar-types__item{padding:20px}}.seminar-types__item-head{display:flex;align-items:center;justify-content:space-between;padding-bottom:11px;margin-bottom:18px;border-bottom:1px solid #e1e5ee}.seminar-types__item-title{font-size:20px;line-height:1.2;font-weight:600}.seminar-types__item-duration{padding:8px 15px;font-size:14px;line-height:1.3;font-weight:600;color:#676b77;background-color:#e1e5ee;border-radius:30px}.seminar-types__item-desc{margin-bottom:24px}.seminar-types__item-desc h3{font-size:16px;font-weight:600;line-height:1.3;margin:0 0 16px 0}.seminar-types__item-desc p,.seminar-types__item-desc ul{margin:12px 0}.seminar-types__item-desc p:last-child,.seminar-types__item-desc ul:last-child{margin-bottom:0}.seminar-types__item-action{display:flex;align-items:center;gap:10px;margin-top:auto}.seminar-types__item-btn{flex-grow:1}.seminar-types__item-btn.btn{padding:0 18px}.seminar-faq{display:flex;align-items:flex-start;gap:40px}@media(max-width: 700px){.seminar-faq{flex-direction:column;gap:24px}}.seminar-faq__questions{width:68%}@media(max-width: 700px){.seminar-faq__questions{width:100%}}.seminar-faq__asside{width:32%;min-width:270px;display:flex;flex-direction:column;gap:20px}@media(max-width: 700px){.seminar-faq__asside{width:100%;min-width:unset;gap:24px}}.seminar-faq__banner{position:relative;padding:46px 24px 24px;border-radius:16px;background-color:#f5f7fa}@media(max-width: 700px){.seminar-faq__banner{padding:46px 20px 20px}}.seminar-faq__banner-img{display:block;width:95px;position:absolute;top:-15px;left:24px}.seminar-faq__banner-title{font-weight:700;margin-bottom:10px}@media(max-width: 700px){.seminar-faq__banner-title{margin-bottom:8px}}.seminar-faq__banner-desc{font-size:14px;color:#62727f}.seminar-faq__banner-desc a{display:inline;color:#e72430;font-weight:600;border-color:rgba(0,0,0,0)}@media(any-hover: hover){.seminar-faq__banner-desc a:hover{border-color:currentColor}}.seminar-faq__cto{padding:32px 24px;background:url("/local/media/img/seminar/cto-banner.svg") top 0px right -50px/auto auto no-repeat,#414e60;border-radius:16px;color:#fff}@media(max-width: 700px){.seminar-faq__cto{padding:20px}}.seminar-faq__cto-title{font-size:20px;font-weight:600;line-height:1.2;margin-bottom:10px}.seminar-faq__cto-desc{font-size:14px;line-height:1.3}.seminar-faq__cto-btn{width:100%;margin-top:32px}.seminar-similar__list{display:grid;grid-template-columns:repeat(2, 1fr);gap:20px}@media(max-width: 992px){.seminar-similar__list{grid-template-columns:1fr;gap:12px}}.seminar-similar__btn{margin-top:24px;display:inline-flex;align-items:center;justify-content:center;gap:5px}.seminar-similar__item{padding:30px 34px 30px 29px;border:1px solid #e1e5ee;border-radius:10px;text-decoration:none;color:#1f1f1f}@media(max-width: 700px){.seminar-similar__item{padding:14px 19px}}@media(any-hover: hover){.seminar-similar__item:hover{color:#1f1f1f}.seminar-similar__item:hover .seminar-similar__item-title{color:#e72430}}.seminar-similar__item-title{font-size:20px;line-height:1.2;font-weight:600;margin-bottom:20px}@media(max-width: 700px){.seminar-similar__item-title{font-size:16px;margin-bottom:16px}}.seminar-similar__item-details{display:flex;align-items:center;flex-wrap:wrap;gap:20px}@media(max-width: 700px){.seminar-similar__item-details{flex-direction:column;align-items:flex-start;gap:8px}}.seminar-similar__item-detail{display:flex;align-items:center;gap:5px;font-size:12px;line-height:1.2}.seminar-similar__item-detail svg{display:block;width:18px;height:18px}.seminar-coach{display:flex;align-items:stretch;gap:20px}@media(max-width: 1200px){.seminar-coach{flex-direction:column;align-items:flex-start}}.seminar-coach__person{display:flex;align-items:center;gap:32px;padding:24px;background-color:#f5f6fa;border-radius:10px}@media(max-width: 575px){.seminar-coach__person{padding:20px;gap:16px;flex-wrap:wrap}}.seminar-coach__person-img{--imgSize: 132px;display:block;width:var(--imgSize);height:var(--imgSize);flex-shrink:0}@media(max-width: 575px){.seminar-coach__person-img{--imgSize: 88px}}.seminar-coach__person-img img{display:block;width:100%;height:100%;border-radius:8px}.seminar-coach__person-info{width:100%}@media(max-width: 575px){.seminar-coach__person-info{width:calc(100% - 88px - 16px)}}.seminar-coach__person-name{font-size:20px;line-height:1.2;font-weight:600;margin-bottom:8px}@media(max-width: 575px){.seminar-coach__person-name{font-size:18px}}.seminar-coach__person-desc{line-height:1.5;color:#676b77}@media(max-width: 575px){.seminar-coach__person-desc{font-size:14px;line-height:1.3}.seminar-coach__person-desc span{display:none}}.seminar-coach__person-special{display:none}@media(max-width: 575px){.seminar-coach__person-special{display:block;margin-top:4px;width:100%;font-size:16px;line-height:1.3}}.seminar-coach__details{display:flex;align-items:center;gap:20px;flex-shrink:0}@media(max-width: 1200px){.seminar-coach__details{width:100%}}@media(max-width: 575px){.seminar-coach__details{flex-direction:column;align-items:flex-start;gap:12px}}.seminar-coach__detail{width:180px;height:100%;display:flex;flex-direction:column;align-items:flex-start;justify-content:space-between;padding:23px;border:1px solid #e1e5ee;border-radius:10px}@media(max-width: 1200px){.seminar-coach__detail{width:100%}}@media(max-width: 575px){.seminar-coach__detail{flex-direction:row;justify-content:flex-start;gap:28px;align-items:center;padding:19px}}.seminar-coach__detail-icon{width:56px;height:56px;flex-shrink:0;display:flex;align-items:center;justify-content:center;margin-bottom:28px}@media(max-width: 575px){.seminar-coach__detail-icon{margin-bottom:0}}.seminar-coach__detail-icon svg{display:block}.seminar-coach__detail-subtitle{font-size:14px;line-height:1.3;color:#676b77;margin-bottom:4px}.seminar-coach__detail-title{font-size:20px;line-height:1.3;font-weight:600}.seminar-coach__btn{width:100%;gap:4px}.seminar-awards{gap:20px;display:grid;grid-template-columns:repeat(4, 1fr)}@media(max-width: 1280px){.seminar-awards{grid-template-columns:repeat(2, 1fr)}}@media(max-width: 700px){.seminar-awards{display:flex;flex-direction:column;gap:16px}}.seminar-awards__item{width:100%;height:100%;grid-column:span 2}.seminar-awards__item--sm{grid-column:span 1}.seminar-awards__exp{width:100%;display:flex;flex-direction:column;align-items:flex-start;margin-top:auto;gap:35px}@media(max-width: 700px){.seminar-awards__exp{margin-top:24px;gap:36px}}.seminar-awards__exp-num{display:inline-flex;align-items:center;gap:10px;padding:12px 20px;border-radius:10px;background-color:#f5f6fa;margin-left:15px;font-size:24px;line-height:1.2;font-weight:600}.seminar-awards__exp-link{border-bottom:1px dashed currentColor;font-weight:600;font-size:14px}@media(max-width: 700px){.seminar-awards__exp-link{font-size:12px}}.seminar-awards__card{width:100%;height:100%;border:1px solid #e1e5ee;padding:17px 24px;border-radius:10px;display:flex;flex-direction:column}@media(max-width: 700px){.seminar-awards__card{padding:19px}}.seminar-awards__card-head{display:flex;align-items:center;gap:8px;font-size:20px;line-height:1.2;font-weight:600;margin-bottom:12px}@media(max-width: 700px){.seminar-awards__card-head{font-size:16px}}.seminar-awards__card-head::before{content:"";display:block;width:8px;height:8px;background-color:#e72430;border-radius:50%;flex-shrink:0}.seminar-awards__block{width:100%;padding:15px;background-color:#f5f6fa;border-radius:10px;display:flex;align-items:center;gap:12px}.seminar-awards__block-img{width:70px;padding:10px 4px;background-color:#fff;border:1px solid #e1e5ee;border-radius:8px;height:100px;display:flex;align-items:center;justify-content:center;flex-shrink:0}@media(max-width: 700px){.seminar-awards__block-img{height:auto;min-height:56px}}.seminar-awards__block-img--xl{width:124px}@media(max-width: 700px){.seminar-awards__block-img--xl{width:70px}}.seminar-awards__block-title{font-weight:600;margin-bottom:5px}@media(max-width: 700px){.seminar-awards__block-title{font-size:12px;line-height:1.3}}.seminar-awards__block-link{border-bottom:1px dashed currentColor;font-weight:600;font-size:14px}@media(max-width: 700px){.seminar-awards__block-link{font-size:12px}}.seminar-awards__img{display:block;width:100%;height:100%}@media(max-width: 1280px){.seminar-awards__img{height:200px}}@media(max-width: 700px){.seminar-awards__img{height:180px}}.seminar-awards__img img{display:block;width:100%;height:100%;border-radius:10px;-o-object-fit:cover;object-fit:cover;-o-object-position:top;object-position:top}.location-map__absolute-block--shadow{box-shadow:0 20px 30px 0 rgba(17,17,17,.04)}.location-map__contacts{display:flex;flex-direction:column;align-items:flex-start;gap:12px}.location-map__contacts-item-label{font-size:14px;line-height:1.3;color:#676b77;margin-bottom:4px}.location-map__contacts-item-mail{font-weight:600;color:#e72430;border-bottom:1px solid currentColor}.location-map__contacts-item-tel{color:#1f1f1f;text-decoration:none}.location-map__image-text-link{display:inline-block;width:auto;font-size:16px;font-weight:600;margin-top:10px;color:#fff;border-bottom:1px dashed hsla(0,0%,100%,.3)}.seminar-preparation{display:grid;grid-template-columns:repeat(3, 1fr);gap:20px}@media(max-width: 700px){.seminar-preparation{grid-template-columns:repeat(3, 299px);overflow-x:auto;width:calc(100% + 30px);padding:0 15px;margin:0 -15px}.seminar-preparation::-webkit-scrollbar{display:none}}.seminar-preparation__item{text-decoration:none;color:#1f1f1f;border:none}.seminar-preparation__item-main{position:relative;height:218px;margin-bottom:20px}@media(max-width: 700px){.seminar-preparation__item-main{height:180px}}.seminar-preparation__item-title{font-size:18px;line-height:1.3;font-weight:700}@media(max-width: 700px){.seminar-preparation__item-title{font-size:16px}}.seminar-preparation__item-stickers{padding:12px 16px;position:absolute;bottom:0;left:0;display:flex;align-items:center;flex-wrap:wrap;gap:4px}@media(max-width: 700px){.seminar-preparation__item-stickers{padding:12px 15px}}.seminar-preparation__item-sticker{width:auto;display:inline-flex;align-items:center;gap:6px;padding:8px 15px;border-radius:30px;font-size:14px;line-height:1.3;color:#676b77;border:1px solid #e1e5ee;background-color:#fff;z-index:3}.seminar-preparation__item-img{position:absolute;display:block;width:100%;height:100%;inset:0;top:0;left:0;border-radius:10px;overflow:hidden}.seminar-preparation__item-img::before{content:"";position:absolute;inset:0;width:100%;height:100%;background:linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(31, 31, 31, 0.6) 100%);z-index:2}.seminar-preparation__item-img img{display:block;width:100%;height:100%;-o-object-fit:cover;object-fit:cover}.seminar-sign-up{padding:40px;background-color:#fff;display:flex;align-items:flex-start;gap:40px;overflow:hidden;border-radius:10px}@media(max-width: 992px){.seminar-sign-up{gap:32px;padding:40px 20px}}@media(max-width: 700px){.seminar-sign-up{flex-direction:column-reverse;align-items:center}}.seminar-sign-up--sm{align-items:center}.seminar-sign-up--sm .seminar-sign-up__img{width:316px;margin-top:-16px;margin-bottom:-100px}@media(max-width: 700px){.seminar-sign-up--sm .seminar-sign-up__img{margin-top:0}}.seminar-sign-up__img{display:block;width:327px;margin-bottom:-50px;flex-shrink:0}@media(max-width: 992px){.seminar-sign-up__img{width:240px}}@media(max-width: 560px){.seminar-sign-up__img{width:100%}}.seminar-sign-up__img img{display:block;width:100%}.seminar-sign-up__info{width:100%;padding-right:85px}@media(max-width: 1280px){.seminar-sign-up__info{padding-right:0}}.seminar-sign-up__title.h1{margin:0 0 30px 0}@media(max-width: 992px){.seminar-sign-up__title.h1{margin-bottom:32px}}.seminar-sign-up__details{display:grid;grid-template-columns:1.5fr 1fr;gap:80px;margin-bottom:20px}@media(max-width: 992px){.seminar-sign-up__details{gap:20px;margin-bottom:24px}}@media(max-width: 700px){.seminar-sign-up__details{display:flex;flex-direction:column;align-items:flex-start;gap:16px}}.seminar-sign-up__details-col{width:100%;display:flex;flex-direction:column;align-items:flex-start;gap:20px}@media(max-width: 700px){.seminar-sign-up__details-col{gap:16px}}.seminar-sign-up__detail{width:100%;line-height:1.3}.seminar-sign-up__detail-label{font-size:18px;font-weight:700;margin-bottom:10px}.seminar-sign-up__detail-text p{margin:0}.seminar-sign-up__detail-text p:not(:last-child){margin-bottom:4px}.seminar-sign-up__desc{color:#676b77}.seminar-coaches{position:relative}.seminar-coaches__prev,.seminar-coaches__next{width:60px;height:60px;display:flex;align-items:center;justify-content:center;background-color:rgba(0,0,0,0);padding:0;border:1px solid #e1e5ee;color:#1f1f1f;border-radius:10px;position:absolute;top:50%;transform:translateY(-50%);transition:.25s ease-in-out}.seminar-coaches__prev svg,.seminar-coaches__next svg{display:block;width:24px;height:24px}.seminar-coaches__prev svg path,.seminar-coaches__next svg path{stroke:currentColor}@media(any-hover: hover){.seminar-coaches__prev:hover,.seminar-coaches__next:hover{background-color:#e72430;border-color:#e72430;color:#fff}}@media(max-width: 1400px){.seminar-coaches__prev,.seminar-coaches__next{display:none}}.seminar-coaches__prev{left:-84px}.seminar-coaches__next{right:-84px}.seminar-coaches__slider{overflow:hidden}@media(max-width: 767px){.seminar-coaches__slider{overflow:visible}.seminar-coaches__slider .swiper-slide{width:299px}}.seminar-coaches__card-img{display:block;width:100%;height:380px;margin-bottom:32px}@media(max-width: 767px){.seminar-coaches__card-img{margin-bottom:24px}}.seminar-coaches__card-img img{display:block;width:100%;height:100%;-o-object-fit:cover;object-fit:cover;border-radius:10px}.seminar-coaches__card-name{font-size:24px;font-weight:700;margin-bottom:8px}.seminar-coaches__card-desc{font-size:18px;color:#676b77;margin-bottom:20px}@media(max-width: 767px){.seminar-coaches__card-desc{font-size:16px;margin-bottom:16px}}.seminar-coaches__card-details{display:flex;flex-direction:column;align-items:flex-start;gap:10px}.seminar-coaches__card-detail{display:flex;align-items:flex-start;gap:10px}.seminar-coaches__card-detail svg{display:block;width:24px;height:24px;flex-shrink:0}
/* End */


/* Start:/local/templates/.default/components/minisol/learning.appoint/.default/style.css?17480012631337*/
.success-course {
    padding: 40px;
    background: #f5f6fa;
    border-radius: 10px;
    width: 100%;
    height: 100%;
    position: relative;

}

.success-course__image {
    position: absolute;
    max-height: 340px;
    width: auto;
    right: 40px;
    top: 44px;
}

.success-course__header {
    font-size: 34px;
    font-weight: bold;
    margin-bottom: 30px;
}

.success-course__address,
.success-course__contact {
    margin-bottom: 20px;
    max-width: 54%;

    b {
        display: inline-block;
        margin-bottom: 10px;
    }
}



.margin20 {
    margin-top: 20px;
}

.success-course__note {
    width: 100%;
    font-size: 14px;
    color: #676B77;
    font-weight: 400;
    margin: 10px 0 0;
}

@media (max-width: 700px) {
    .success-course {
        padding: 20px;
        overflow: hidden;
    }

    .success-course__image {
        margin: 0 auto;
        display: block;
        position: relative;
        bottom: -20px;
        right: 0;
    }

    .success-course__header {
        font-size: 24px;
        margin-bottom: 15px;
    }

    .success-course__address,
    .success-course__contact {
        margin-bottom: 12px;
        max-width: 100%;

        b {
            margin-bottom: 16px;
        }
    }
}


@media (min-width: 900px) {
    .success-course__info {
        min-height: 270px;
    }
}
/* End */
/* /local/templates/regular/components/bitrix/news.detail/landing_course_new/style.css?176468314714947 */
/* /local/media/css/online_course.min.css?173168706328276 */
/* /local/media/js/plugins/accordion.min.css?17128351361132 */
/* /local/media/css/academy.min.css?174946501252764 */
/* /local/media/css/seminar.min.css?176468314721178 */
/* /local/templates/.default/components/minisol/learning.appoint/.default/style.css?17480012631337 */
