@font-face {
    font-family: "e-Ukraine";
    src: url("../../font/e-Ukraine/e-Ukraine-Thin.otf") format("opentype");
    font-weight: 100;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "e-Ukraine";
    src: url("../../font/e-Ukraine/e-Ukraine-UltraLight.otf") format("opentype");
    font-weight: 200;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "e-Ukraine";
    src: url("../../font/e-Ukraine/e-Ukraine-Light.otf") format("opentype");
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "e-Ukraine";
    src: url("../../font/e-Ukraine/e-Ukraine-Regular.otf") format("opentype");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "e-Ukraine";
    src: url("../../font/e-Ukraine/e-Ukraine-Medium.otf") format("opentype");
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "e-Ukraine";
    src: url("../../font/e-Ukraine/e-Ukraine-Bold.otf") format("opentype");
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "e-Ukraine Head";
    src: url("../../font/e-Ukraine Head/e-UkraineHead-Medium.otf")
        format("opentype");
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

html {
    font-weight: 400;
    font-family: "e-Ukraine", sans-serif;
    font-size: 16px;
    line-height: 150%;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    -webkit-tap-highlight-color: transparent;

    @media (max-width: 767px) {
        font-size: 14px;
    }

    * {
        box-sizing: border-box;
    }
}

html,
body {
    height: 100%;
    background: #fff;
}

::selection {
    background: #b3d4fc;
    text-shadow: none;
}

audio,
canvas,
iframe,
img,
svg,
video {
    vertical-align: middle;
}

textarea {
    resize: vertical;
}

h1 {
    margin: 0;
}

ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

input:-webkit-autofill,
select:-webkit-autofill,
textarea:-webkit-autofill {
    -webkit-box-shadow: 0 0 0 100px transparent inset;
}

img {
    max-width: 100%;
    height: auto;
}

.wrapper {
    max-width: 1164px;
    margin: auto;
    padding: 0 12px;
}

button {
    border: none;
    background-color: transparent;
    outline: 0;
}

a {
    transition: all 0.2s;
}

.mobile-only {
    @media (min-width: 768px) {
        display: none !important;
    }
}

.mobile-hide {
    @media (max-width: 767px) {
        display: none !important;
    }
}

hr {
    margin: 32px 0 80px;
    border-top: 1px solid #000;

    @media (max-width: 767px) {
        margin: 20px 0 40px;
    }
}

.text-hide {
    font: 0/0 a;
    color: transparent;
    text-shadow: none;
    background-color: transparent;
    border: 0;
}

@keyframes right-overflow {
    0% {
        right: 41px;
    }

    50% {
        right: -100%;
    }

    51% {
        opacity: 0;
    }

    75% {
        opacity: 0;
        right: 41px;
    }

    100% {
        opacity: 1;
    }
}

@keyframes right-overflow-mobile {
    0% {
        right: 21px;
    }

    50% {
        right: -100%;
    }

    51% {
        opacity: 0;
    }

    75% {
        opacity: 0;
        right: 21px;
    }

    100% {
        opacity: 1;
    }
}

@keyframes shake-it {
    0% {
        transform: rotate(0);
    }

    25% {
        transform: rotate(30deg);
    }

    50% {
        transform: rotate(-30deg);
    }

    75% {
        transform: rotate(9deg);
    }

    95% {
        transform: rotate(-9deg);
    }

    100% {
        transform: rotate(0);
    }
}

.btn-main {
    position: relative;
    display: inline-block;
    padding: 22px 30px;
    color: #fff;
    font-size: 19px;
    font-weight: 700;
    line-height: 140%;
    text-decoration: none;
    border: 0;
    outline: none;
    transition: all 0.2s;
    border-radius: 15px;
    overflow: hidden;
    padding-right: 140px;
    background: #0047ff;

    @media (max-width: 992px) {
        padding: 16px 16px;
        padding-right: 70px;
        font-size: 16px;
    }

    @media (max-width: 767px) {
        font-size: 13px;
        border-radius: 7px;
    }

    &:disabled {
        opacity: 0.2;
    }

    &:active {
        top: 1px;
    }

    &:after {
        content: url(../img/btn-arrow.svg);
        position: absolute;
        top: 0;
        right: 30px;
        bottom: 0;
        width: 83px;
        height: 24px;
        margin: auto;

        @media (max-width: 992px) {
            content: url(../img/btn-arrow-mobile.svg);
            right: 15px;
            width: 46px;
            height: 20px;
        }
    }

    &:hover {
        &:after {
            animation: right-overflow 1.4s;

            @media (max-width: 767px) {
                animation: right-overflow-mobile 1.4s;
            }
        }
    }
}

.btn-main-reverse {
    position: relative;
    display: inline-block;
    padding: 22px 30px;
    color: #fff;
    font-size: 19px;
    font-weight: 700;
    line-height: 140%;
    text-decoration: none;
    border: 0;
    outline: none;
    transition: all 0.2s;
    border-radius: 15px;
    overflow: hidden;
    padding-right: 196px;
    color: #000;
    background: #fff;

    &:after {
        content: url(../img/btn-arrow-black.svg);
        position: absolute;
        top: 0;
        right: 30px;
        bottom: 0;
        width: 83px;
        height: 24px;
        margin: auto;

        @media (max-width: 767px) {
            display: none;
        }
    }

    &:hover {
        &:after {
            animation: right-overflow 1.4s;
        }
    }

    &:disabled {
        opacity: 0.2;
    }

    &:active {
        top: 1px;
    }
}

#container {
    transition: filter 0.2s;

    &.open-modal {
        filter: blur(30px);
    }
}

.modal {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 999;
    display: flex;
    padding: 35px 0;
    visibility: hidden;
    opacity: 0;
    transition: all 0.3s;
    background: rgba(0, 0, 0, 0.15);
    pointer-events: none;

    &.open {
        visibility: visible !important;
        opacity: 1;
        pointer-events: auto;
        overflow-y: auto;
    }
}

.modal-dialog {
    position: relative;
    max-width: 900px;
    width: calc(100% - 35px);
    margin: auto;
    padding: 0;
    background-color: #fff;
}

.modal-content {
    position: relative;
    display: flex;
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    padding: 60px;

    @media (max-width: 992px) {
        display: block;
        padding: 40px;
    }

    @media (max-width: 767px) {
        padding: 20px;
    }

    .modal-close {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 20px;
        height: 20px;
        position: absolute;
        top: 24px;
        right: 26px;
        transition: all 0.3s;
        cursor: pointer;

        &:hover {
            transform: rotate(90deg);
        }

        svg {
            pointer-events: none;
        }
    }

    .info {
        width: 35%;
        margin-right: 10%;

        @media (max-width: 992px) {
            width: 100%;
            margin-right: 0;
        }
    }

    .modal-title {
        margin: 0 0 23px 0;
        font-size: 32px;
        line-height: 36px;

        @media (max-width: 992px) {
            margin: 0 0 16px 0;
            font-size: 24px;
            line-height: 30px;
        }
    }

    .modal-text {
        margin: 0 0 18px 0;
        font-size: 14px;
        font-weight: 100;
        line-height: 18px;
    }

    .modal-contact-info {
        margin-top: 30px;

        @media (max-width: 992px) {
            display: none;
        }

        li {
            margin: 14px 0;
        }

        .telegram {
            a {
                color: #0047ff;
            }

            svg {
                margin-right: 7px;
            }
        }

        a {
            display: flex;
            align-items: center;
            font-size: 18px;
            font-weight: 700;
            line-height: 100%;
            color: #000;
            text-decoration: none;

            &:hover {
                opacity: 0.7;
            }

            svg {
                margin-right: 12px;
            }
        }
    }

    .form {
        width: 55%;
        padding: 25px;
        border: 4px solid #0047ff;

        @media (max-width: 992px) {
            width: 100%;
        }

        @media (max-width: 767px) {
            padding: 0;
            border: none;
        }

        .sp-form-outer .sp-form {
            width: auto;
            padding: 0;
            font-family: "e-Ukraine", sans-serif;
            border: none;
            background: none;

            .sp-field {
                & > div > p {
                    font-family: "e-Ukraine", sans-serif;
                    font-weight: 200;
                }

                label {
                    font-weight: 200;
                    color: #000;
                }

                input[type="checkbox"] {
                    margin-right: 7px;

                    + span {
                        font-weight: 200;
                    }
                }
            }

            .sp-form-control {
                height: auto;
                padding: 12px 16px 12px;
                color: #000;
                font-size: 14px;
                font-weight: 300;
                line-height: 20px;
                background-color: #f7f7f7;
                border: 4px solid #f7f7f7;
                transition: all 0.3s;
                outline: 0;
                border-radius: 0;

                &.sp-invalid {
                    border-color: rgba(187, 15, 15, 0.5);
                }

                &::placeholder {
                    font-family: "e-Ukraine", sans-serif;
                    color: #666666;
                }

                &:focus {
                    border: 4px solid #0047ff;
                }
            }

            .sp-button {
                width: 100%;
                height: auto;
                padding: 16px 16px;
                font-family: "e-Ukraine", sans-serif;
                color: #fff;
                text-align: center;
                font-size: 14px;
                font-weight: 500;
                line-height: 20px;
            }
        }

        .sp-link-wrapper.sp-brandname__left {
            display: none;
        }
    }
}

.sendpulse-form {
    .sp-form-outer .sp-form {
        width: auto;
        padding: 0;
        font-family: "e-Ukraine", sans-serif;
        border: none;
        background: none;

        .sp-form-fields-wrapper {
            width: auto;
        }

        .sp-field {
            padding-left: 0;

            & > div > p > span {
                font-family: "e-Ukraine", sans-serif;
                color: #000;
                font-weight: 300;
            }

            label {
                font-size: 16px;
                font-weight: 200;
                color: #000;
            }

            input[type="checkbox"] {
                margin-right: 7px;

                + span {
                    font-size: 14px;
                    font-weight: 300;
                }
            }
        }

        .sp-form-control {
            height: auto;
            padding: 16px 18px 16px;
            color: #000;
            font-size: 16px;
            font-weight: 300;
            line-height: 120%;
            background-color: #f7f7f7;
            border: 4px solid #f7f7f7;
            transition: all 0.3s;
            outline: 0;
            border-radius: 0;

            &.sp-invalid {
                border-color: rgba(187, 15, 15, 0.5);
            }

            @include placeholder {
                font-family: "e-Ukraine", sans-serif;
                color: #666666;
            }

            &:focus {
                border: 4px solid #0047ff;
            }
        }

        .sp-button {
            width: 100%;
            height: auto;
            margin-top: 15px;
            padding: 20px 30px;
            font-family: "e-Ukraine", sans-serif;
            font-size: 18px;
            font-weight: 700;
            line-height: 140%;
            text-align: center;
            color: #fff;
            border-radius: 15px;

            &:after {
                display: none;
            }

            @media (max-width: 767px) {
                font-size: 16px;
                padding: 16px 20px;
            }
        }

        .sp-link-wrapper.sp-brandname__left {
            display: none;
        }
    }

    &.white-input {
        .sp-form .sp-form-control {
            background-color: #fff;
            border-color: #fff;
        }

        .iti__flag-container {
            padding: 4px;
        }

        .iti--separate-dial-code .iti__selected-flag {
            background-color: #fff;
        }
    }
}

.header-top {
    height: 88px;
    color: #fff;
    background-color: #000;
    border-radius: 0 0 20px 20px;

    @media (max-width: 767px) {
        height: 56px;
    }

    .wrapper {
        display: flex;
        align-items: center;
        height: 100%;
    }

    .logo {
        margin: 0 28px 0 0;

        @media (max-width: 767px) {
            margin: 0 20px 0 0;
        }
    }

    .hover {
        position: relative;

        &:after {
            content: "";
            position: absolute;
            left: 0;
            bottom: -5px;
            height: 2px;
            width: 0;
            background-color: #fff;
            transition: all 0.2s;

            @media (max-width: 767px) {
                display: none;
            }
        }
    }

    a {
        display: block;
        font-weight: 500;
        font-size: 13px;
        line-height: normal;
        color: #fff;
        text-decoration: none;

        &:hover .hover:after {
            width: 100%;
        }
    }

    .consultation {
        display: flex;
        align-items: center;

        @media (max-width: 992px) {
            max-width: 400px;
        }

        @media (max-width: 767px) {
            width: 100px;
            .hover {
                font-size: 7px;
            }
        }
    }

    .telegram {
        display: flex;
        align-items: center;
        margin-left: auto;
        text-transform: uppercase;

        a {
            display: flex;
            align-items: center;
        }

        @media (max-width: 1120px) {
            a:not(.tel) .hover {
                display: none;
            }
        }

        a:hover {
            svg {
                animation: shake-it 0.4s ease-in-out;
            }
        }

        svg {
            margin-left: 18px;

            @media (max-width: 767px) {
                width: 22px;
                height: 22px;
            }
        }
    }

    .tel {
        font-weight: 700;
        margin-left: 14px;

        @media (max-width: 767px) {
            margin-left: 11px;
            font-size: 10px;
        }
    }

    .language {
        position: relative;
        display: flex;
        align-items: center;
        margin-left: 12px;
        font-weight: 700;
        font-size: 14px;
        line-height: normal;
        text-transform: uppercase;

        @media (max-width: 767px) {
            margin-left: 14px;
            font-size: 10px;
        }

        .arrow {
            position: relative;
            margin-right: 3px;
            transition: all 0.2s;
        }

        ul {
            position: absolute;
            top: 1px;
            right: 0;
            padding-top: 22px;
            opacity: 0;
            transition: all 0.2s;

            @media (max-width: 767px) {
                right: -5px;
                padding-top: 17px;

                li {
                    padding: 5px;
                    background: #000;
                }

                a {
                    font-size: 10px;
                }
            }
        }

        &:hover {
            ul {
                opacity: 1;
            }

            .arrow {
                transform: rotate(180deg);
            }
        }
    }
}

.header-bottom {
    height: 66px;
    border-bottom: 1px solid #d1d3d7;

    @media (max-width: 767px) {
        height: 37px;
    }

    .wrapper {
        display: flex;
        align-items: center;
        justify-content: space-between;
        height: 100%;
    }

    ul {
        display: flex;
        align-items: center;
        width: 100%;

        @media (max-width: 992px) {
            overflow-y: auto;
            width: 100%;

            li {
                flex-shrink: 0;
                margin: 0 10px;
            }
        }

        li {
            display: flex;

            &:not(:last-child) {
                margin-right: 4%;
            }
        }
    }

    li:hover,
    li.active {
        a:after {
            visibility: visible;
            opacity: 1;
            overflow: visible;
            width: 100%;
        }
    }

    a {
        position: relative;
        color: #000;
        font-size: 14px;
        font-weight: 400;
        line-height: normal;
        text-decoration: none;
        text-decoration-color: transparent;
        text-underline-offset: 10px;

        @media (max-width: 767px) {
            font-size: 9px;
            line-height: 11px;
        }

        &:after {
            content: "";
            position: absolute;
            left: 50%;
            bottom: -5px;
            overflow: hidden;
            visibility: hidden;
            height: 2px;
            width: 0;
            transform: translateX(-50%);
            background: #0047ff;
            opacity: 0;
            transition: all 0.3s ease-in-out;
        }
    }
}

#footer {
    padding: 100px 0 40px;
    font-weight: 400;
    font-size: 16px;
    line-height: 150%;
    background: #000;
    color: #fff;
    border-radius: 20px 20px 0 0;

    @media (max-width: 767px) {
        padding: 25px 0 20px;
        font-size: 16px;
    }

    a {
        color: #fff;
        text-decoration: none;

        &:hover {
            color: #0047ff !important;
        }
    }

    .footer-contacts {
        display: flex;
        align-items: center;
        margin-bottom: 56px;

        @media (max-width: 1280px) {
            flex-wrap: wrap;
            justify-content: center;
            margin: 20px;
        }

        @media (max-width: 767px) {
            flex-direction: column;
            align-items: flex-start;
            margin: 0 0 40px 0;
        }

        .logo {
            margin-right: 76px;

            @media (max-width: 1280px) {
                margin: 20px 40px 20px 0;
            }

            @media (max-width: 767px) {
                margin: 0;
                svg {
                    width: 105px;
                    height: 47px;
                }
            }
        }

        .footer-docs {
            margin: 0;
            font-weight: 500;

            @media (max-width: 767px) {
                order: 1;
                width: auto;
                margin-bottom: 40px;
            }
        }

        .footer-contact-info {
            margin-left: 76px;

            @media (max-width: 1280px) {
                margin: 20px 40px;
            }

            @media (max-width: 767px) {
                order: 0;
                margin: 20px 0 30px 0;
            }
        }

        .social-media {
            display: flex;
            align-items: center;
            margin-left: auto;

            @media (max-width: 1280px) {
                margin-top: 40px;
                margin-left: 0;
            }

            @media (max-width: 767px) {
                order: 2;
                justify-content: center;
                width: 100%;
                margin-left: 0;
            }

            li:not(:first-child) {
                margin-left: 20px;
            }

            a:hover {
                svg {
                    animation: shake-it 0.4s;
                }
            }
        }
    }

    .footer-bottom {
        display: flex;
        justify-content: flex-end;

        @media (max-width: 1280px) {
            justify-content: center;
        }

        @media (max-width: 767px) {
            justify-content: flex-start;
        }

        p {
            margin: 0;
            color: #484848;
            font-size: 13px;
            font-weight: 400;
            line-height: 30px;

            @media (max-width: 767px) {
                font-size: 12px;
            }
        }
    }
}

.learning-main-banner {
    position: relative;
    padding: 64px 0 128px;
    color: #000;

    @media (max-width: 992px) {
        display: flex;
        flex-direction: column;
        padding: 10px 0 25px;
    }

    .wrapper {
        position: relative;
        z-index: 1;

        @media (max-width: 992px) {
            order: 2;
        }
    }

    .img {
        position: absolute;
        top: 0;
        bottom: 0;
        width: 53%;
        right: 0;
        overflow: hidden;

        @media (max-width: 1280px) {
            width: 49%;
        }

        @media (max-width: 992px) {
            position: relative;
            order: 1;
            width: 100%;
            padding-bottom: 67%;
        }

        .bg {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-attachment: fixed;
            background-position: right center;
            background-repeat: no-repeat;

            @media (max-width: 992px) {
                background-position: center top;
                background-size: 130%;
            }

            @media (max-width: 767px) {
                background-size: 145%;
            }
        }

        .mask {
            position: absolute;
            top: 0;
            left: -1px;
            right: 0;
            bottom: 0;
            background: url(../img/bg-mask.svg) left center no-repeat;
            background-size: 2000px;

            @media (max-width: 992px) {
                left: -9%;
                background-size: 156%;
            }
        }
    }

    h1 {
        max-width: 530px;
        margin: 0 0 24px 0;
        font-size: 40px;
        font-weight: 300;
        line-height: 120%;
        word-break: break-word;

        @media (max-width: 992px) {
            max-width: 100%;
            width: 100%;
            margin-top: 10px;
            font-size: 25px;
            line-height: normal;
        }
    }

    p {
        margin: 0 0 24px 0;
        font-size: 16px;
        font-weight: 300;
        line-height: 150%;

        @media (max-width: 992px) {
            font-size: 16px;
        }
    }

    .text {
        width: 50%;

        @media (max-width: 992px) {
            width: 100%;
        }
    }
}

.learning-requirements {
    padding: 110px 0;
    background: #f7f7f7;

    @media (max-width: 992px) {
        padding: 60px 0;
    }

    .title {
        margin: 0 0 16px 0;
        font-size: 40px;
        line-height: 120%;

        @media (max-width: 992px) {
            font-size: 30px;
        }
    }

    .list {
        margin-bottom: 50px;

        @media (max-width: 992px) {
            margin-bottom: 40px;
        }

        ul {
            list-style: disc;
            padding-left: 18px;
            font-size: 16px;
            line-height: 150%;
        }
    }

    .instruction {
        margin: 40px 0 62px 0;

        @media (max-width: 992px) {
            margin: 30px 0 42px 0;
        }

        ol {
            margin: 0;
            padding-left: 0;
            font-size: 16px;
            line-height: 150%;
            list-style: none;
        }

        li {
            position: relative;
            margin-bottom: 40px;
            padding-left: 70px;
            counter-increment: li;

            @media (max-width: 992px) {
                margin-bottom: 20px;
                padding-left: 46px;
            }

            &::before {
                content: counter(li);
                position: absolute;
                top: 0;
                bottom: 0;
                left: 0;
                display: flex;
                align-items: center;
                justify-content: center;
                flex-shrink: 0;
                width: 50px;
                height: 50px;
                margin: auto;
                color: #fff;
                font-size: 28px;
                font-weight: 700;
                line-height: 100%;
                border-radius: 50%;
                background-color: #0047ff;

                @media (max-width: 992px) {
                    width: 36px;
                    height: 36px;
                    font-size: 22px;
                }
            }
        }
    }

    a:not(.btn-main) {
        color: #0047ff;
        text-decoration: none;

        &:hover {
            text-decoration: underline;
        }
    }
}

.main-banner-webinar {
    padding: 50px 0 100px;

    @media (max-width: 992px) {
        padding: 20px 0 40px;
    }

    .wrapper {
        display: flex;

        @media (max-width: 992px) {
            display: block;
        }
    }

    .text {
        padding-right: 6%;
        width: 55%;

        @media (max-width: 1280px) {
            width: 55%;
            padding-right: 3%;
        }

        @media (max-width: 992px) {
            width: 100%;
            padding-right: 0;
        }
    }

    img {
        width: 45%;
        object-fit: cover;

        @media (max-width: 992px) {
            width: 100%;
        }
    }

    .meta {
        display: flex;
        align-items: center;

        @media (max-width: 992px) {
            display: block;
        }

        p {
            margin: 0;

            @media (max-width: 992px) {
                font-size: 14px;
            }

            &:first-child:before {
                content: "";
                display: block;
                width: 17px;
                height: 17px;
                margin-right: 8px;
                background-color: #ff81b6;
                border-radius: 50%;
            }

            &:first-child {
                display: flex;
                align-items: center;
                margin-right: 10%;

                @media (max-width: 992px) {
                    margin-right: 0;
                    margin-bottom: 20px;
                }
            }
        }
    }

    .title {
        margin: 20px 0 12px 0;
        font-size: 40px;
        line-height: 48px;

        @media (max-width: 992px) {
            font-size: 25px;
            line-height: normal;
        }
    }

    .desc {
        max-width: 450px;
        margin: 16px 0;

        @media (max-width: 992px) {
            font-size: 14px;
        }
    }

    .registration-box {
        margin-top: 30px;
        padding: 6% 8%;
        background-color: #f7f7f7;

        @media (max-width: 992px) {
            margin: 20px 0;
            padding: 0;
            background-color: #fff;
        }

        h3 {
            margin: 5px 0;
            font-size: 24px;
            line-height: 24px;

            @media (max-width: 992px) {
                font-size: 18px;
                line-height: 20px;
            }
        }

        p {
            max-width: 450px;
            margin: 5px 0 12px 0;

            @media (max-width: 992px) {
                font-size: 14px;
            }
        }

        .btn-main {
            padding-right: 27%;

            @media (max-width: 992px) {
                padding-right: 120px;
            }

            &:after {
                content: url(../img/btn-arrow-mobile.svg);
                right: 21px;
                width: 78px;
                height: 24px;
            }
        }
    }
}

.webinar-features-block {
    padding: 110px 0;
    background: #f7f7f7;

    @media (max-width: 992px) {
        padding: 75px 0;
    }

    @media (max-width: 767px) {
        padding: 25px 0;
    }

    .title {
        margin: 0;
        font-size: 40px;
        line-height: 100%;

        @media (max-width: 767px) {
            margin: 16px 0;
            font-size: 25px;
        }
    }

    .features {
        display: flex;
        flex-wrap: wrap;
        margin-top: 40px;

        li {
            width: 47%;
            display: flex;
            align-items: center;
            margin: 0 3% 30px 0;

            @media (max-width: 767px) {
                width: 100%;
                margin: 0 0 20px 0;
            }
        }
    }

    .thumb {
        display: flex;
        flex-shrink: 0;
        align-items: center;
        justify-content: center;
        width: 100px;
        height: 100px;
        margin-right: 5%;
        background-color: #0047ff;

        @media (max-width: 992px) {
            width: 80px;
            height: 80px;

            img {
                max-width: 50%;
                max-height: 50%;
            }
        }
    }

    .desc {
        font-size: 16px;
        font-weight: 300;
        line-height: 150%;

        @media (max-width: 992px) {
            font-size: 16px;
        }
    }
}

.get-free-webinar-access-block {
    padding: 110px 0;
    background: #0047ff;
    color: #fff;

    @media (max-width: 1280px) {
        padding: 75px 0;
        text-align: center;
    }

    @media (max-width: 767px) {
        padding: 25px 0;
        text-align: center;

        .btn-main-reverse {
            width: 100%;
            text-align: center;
        }
    }

    .wrapper {
        display: flex;
        align-items: center;
        justify-content: space-between;

        @media (max-width: 1280px) {
            display: block;
        }
    }

    .title {
        max-width: 660px;
        margin-right: 16px;
        font-size: 40px;
        font-weight: 700;
        line-height: 120%;

        @media (max-width: 1280px) {
            max-width: none;
        }

        @media (max-width: 767px) {
            font-size: 25px;
        }
    }
}

.webinar-teacher-block {
    padding: 100px 0;
    background-color: #f7f7f7;

    @media (max-width: 767px) {
        padding: 20px 0;
    }

    .wrapper {
        display: flex;
        align-items: center;

        @media (max-width: 767px) {
            display: block;
        }
    }

    img {
        width: 45%;
        object-fit: cover;

        @media (max-width: 767px) {
            width: 100%;
        }
    }

    .text {
        padding-left: 6%;
        width: 55%;

        @media (max-width: 767px) {
            width: 100%;
            padding-left: 0;
        }

        h2 {
            margin: 5px 0 30px;
            font-size: 40px;
            line-height: 120%;

            @media (max-width: 767px) {
                margin: 20px 0;
                font-size: 25px;
            }
        }

        ul {
            margin: 20px 0;
            padding-left: 20px;
            list-style: disc;
        }
    }

    .linkedin {
        display: flex;
        align-items: center;
        margin-top: 40px;
        font-weight: 700;

        .linkedin-text {
            margin-left: 20px;
        }
    }
}

.webinar-target-audience {
    padding: 90px 0;

    @media (max-width: 767px) {
        padding: 20px 0;
    }

    .title {
        margin: 0 0 20px 0;
        font-size: 40px;
        line-height: 120%;

        @media (max-width: 767px) {
            font-size: 25px;
        }
    }

    .list {
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
        margin: 0 -15px;

        @media (max-width: 992px) {
        }

        li {
            position: relative;
            display: flex;
            align-items: flex-end;
            width: 278px;
            margin: 15px;
            padding: 30px;
            padding-top: 140px;
            background-color: #ececec;

            &:nth-child(odd) {
                svg path {
                    fill: #0047ff;
                }
            }

            &:last-child {
                color: #fff;
            }

            svg {
                position: absolute;
                top: 30px;
                left: 30px;
                z-index: 1;
            }

            &:nth-child(1) {
                .thumb {
                    top: 30px;
                    right: 30px;
                    width: 90px;
                    height: 90px;
                }
            }

            &:nth-child(2) {
                .thumb {
                    top: 0;
                    left: 0;
                    right: 0;
                    height: 110px;
                }
            }

            &:nth-child(3) {
                .thumb {
                    top: 30px;
                    right: 30px;
                    width: 90px;
                    height: 90px;
                    border-radius: 50%;
                }
            }

            &:nth-child(4) {
                .thumb {
                    top: 0;
                    left: 0;
                    right: 0;
                    bottom: 0;
                }
            }
        }

        .thumb {
            position: absolute;
            background-size: cover;
            background-repeat: no-repeat;
        }

        h3 {
            position: relative;
            z-index: 1;
            margin: 0;
            font-weight: 500;
            font-size: 24px;
            line-height: 120%;
        }
    }
}

.webinar-access-register-block {
    padding: 90px 0;
    text-align: center;
    color: #fff;
    background-color: #0047ff;

    @media (max-width: 767px) {
        padding: 30px 0;
    }

    .title {
        margin: 16px 0;
        font-size: 40px;
        font-weight: 700;
        line-height: 120%;

        @media (max-width: 767px) {
            font-size: 25px;
        }
    }

    .desc {
        margin: 16px 0 30px;
        font-weight: 300;
        font-size: 24px;
        line-height: 135%;

        @media (max-width: 767px) {
            margin: 10px 0 20px;
            font-size: 20px;
        }
    }

    .present-text {
        margin: 30px 0;

        @media (max-width: 767px) {
            margin: 15px 0;
        }

        strong {
            font-weight: 400;
            font-size: 24px;
            line-height: 150%;
        }
    }
}

.news-page-list {
    padding: 50px 0;

    @media (max-width: 767px) {
        padding: 20px 0;
    }

    .title {
        margin: 0 0 50px 0;
        font-size: 40px;
        line-height: 120%;

        span {
            font-weight: 400;
        }

        @media (max-width: 767px) {
            margin-bottom: 20px;
            font-size: 25px;
        }
    }

    .list {
        display: grid;
        grid-template-columns: 1fr 1fr 1fr;
        gap: 50px 32px;
        padding-bottom: 40px;

        @media (max-width: 767px) {
            grid-template-columns: 1fr 1fr;
            gap: 25px 16px;
        }

        @media (max-width: 500px) {
            grid-template-columns: 1fr;
            gap: 25px 16px;
        }

        li {
            position: relative;

            &:hover {
                svg {
                    transform: scale(1.2);
                }

                img {
                    transform: scale(1.03);
                }

                a {
                    color: #0047ff;
                }
            }
        }

        .representation {
            position: relative;
            background-color: #0047ff;
            aspect-ratio: 16/10;
            overflow: hidden;

            svg {
                position: absolute;
                top: 0;
                left: 0;
                right: 0;
                bottom: 7%;
                z-index: 0;
                margin: auto;
                transition: transform 0.2s;
            }
        }

        img {
            position: relative;
            z-index: 1;
            aspect-ratio: 16/10;
            object-fit: cover;
            transition: transform ease-in-out 0.8s;
        }

        h3 {
            overflow: hidden;
            max-height: 104px;
            margin: 0;
            font-family: "e-Ukraine Head", sans-serif;
            font-size: 20px;
            font-weight: 500;
            line-height: 130%;

            @media (max-width: 992px) {
                max-height: 83px;
                font-size: 16px;
            }

            a {
                padding-top: 18px;
            }
        }

        a {
            display: block;
            color: #000;
            text-decoration: none;
        }
    }

    .btn-main {
        margin-top: 40px;
    }
}

.news-single-page {
    padding: 50px 0;

    @media (max-width: 1024px) {
        padding: 20px 0;
    }

    .two-col {
        display: flex;

        @media (max-width: 1280px) {
            display: block;
        }

        .main-col {
            width: calc(100% - 380px + 46px);

            @media (max-width: 1280px) {
                width: 100%;
            }
        }

        .side-col {
            width: 380px;
            margin-top: 10px;
            margin-left: 46px;

            @media (max-width: 1280px) {
                width: 100%;
                margin-top: 30px;
                margin-left: 0;
            }
        }
    }

    .page-heading {
        margin: 0 0 50px 0;
        font-size: 40px;
        line-height: 120%;

        @media (max-width: 1024px) {
            margin-bottom: 20px;
            font-size: 25px;
        }
    }

    .list {
        display: grid;
        grid-template-columns: 1fr;
        gap: 50px 32px;
        padding-bottom: 40px;

        @media (max-width: 1280px) {
            grid-template-columns: 1fr 1fr;
            gap: 25px 16px;
        }

        @media (max-width: 500px) {
            grid-template-columns: 1fr;
            gap: 25px 16px;
        }

        li {
            position: relative;

            &:hover {
                svg {
                    transform: scale(1.2);
                }

                img {
                    transform: scale(1.03);
                }

                a {
                    color: #0047ff;
                }
            }
        }

        .representation {
            position: relative;
            background-color: #0047ff;
            aspect-ratio: 16/10;
            overflow: hidden;

            svg {
                position: absolute;
                top: 0;
                left: 0;
                right: 0;
                bottom: 7%;
                z-index: 0;
                margin: auto;
                transition: transform 0.2s;
            }
        }

        img {
            position: relative;
            z-index: 1;
            aspect-ratio: 16/10;
            object-fit: cover;
            transition: transform ease-in-out 0.8s;
        }

        h3 {
            overflow: hidden;
            max-height: 104px;
            margin: 0;
            font-family: "e-Ukraine Head", sans-serif;
            font-size: 20px;
            font-weight: 500;
            line-height: 130%;

            @media (max-width: 992px) {
                max-height: 83px;
                font-size: 16px;
            }

            a {
                padding-top: 18px;
            }
        }

        a {
            display: block;
            color: #000;
            text-decoration: none;
        }
    }
}

.main-banner-course {
    position: relative;
    padding: 100px 0 150px;
    color: #000;

    @media (max-width: 992px) {
        display: flex;
        flex-direction: column;
        padding: 10px 0 25px;
    }

    .wrapper {
        position: relative;
        z-index: 1;

        @media (max-width: 992px) {
            order: 2;
        }
    }

    .img {
        position: absolute;
        top: 0;
        bottom: 0;
        width: 48%;
        right: 0;
        overflow: hidden;

        @media (max-width: 1280px) {
            width: 49%;
        }

        @media (max-width: 992px) {
            position: relative;
            order: 1;
            width: 100%;
            padding-bottom: 67%;
        }

        .bg {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-attachment: fixed;
            background-position: right center;
            background-repeat: no-repeat;

            @media (max-width: 992px) {
                background-position: center top;
                background-size: 130%;
            }

            @media (max-width: 767px) {
                background-size: 145%;
            }
        }

        .mask {
            position: absolute;
            top: 0;
            left: -1px;
            right: 0;
            bottom: 0;
            background: url(../img/bg-mask.svg) left center no-repeat;
            background-size: 1940px;

            @media (max-width: 992px) {
                left: -9%;
                background-size: 156%;
            }
        }
    }

    .title {
        width: 55%;
        margin: 0;
        font-size: 48px;
        font-weight: 700;
        line-height: 120%;
        word-break: break-word;
        text-transform: uppercase;

        @media (max-width: 992px) {
            max-width: 100%;
            width: 100%;
            margin-top: 10px;
            font-size: 25px;
            line-height: normal;
        }

        span {
            font-weight: 300;
            font-style: normal;
        }
    }

    .row {
        display: flex;
        align-items: center;
        margin-top: 20px;

        p {
            margin-top: 0;
            margin-bottom: 0;
        }
    }

    .start-date {
        padding: 22px 32px;
        color: #fff;
        font-size: 20px;
        font-weight: 300;
        line-height: 140%;
        background-color: #0047ff;

        @media (max-width: 767px) {
            font-size: 14px;
        }
    }

    .duration {
        margin-left: 32px;
        font-size: 28px;
        font-weight: 500;
        line-height: 200%;

        @media (max-width: 767px) {
            font-size: 18px;
        }
    }

    .features {
        margin-top: 44px;
        font-size: 20px;
        line-height: 180%;

        @media (max-width: 1280px) {
            max-width: 55%;
        }

        @media (max-width: 992px) {
            max-width: 100%;
        }

        @media (max-width: 767px) {
            font-size: 14px;
        }

        svg {
            margin-right: 2%;

            @media (max-width: 767px) {
                width: 25px;
                height: 25px;
            }
        }
    }
}

.target-audience-block {
    padding: 60px 0 30px 0;
    background: #f7f7f7;

    @media (max-width: 992px) {
        padding: 45px 0 15px 0;
    }

    @media (max-width: 767px) {
        padding: 25px 0 5px 0;
    }

    .title {
        margin: 0;
        font-size: 40px;
        line-height: 100%;

        @media (max-width: 767px) {
            margin: 16px 0;
            font-size: 25px;
        }
    }

    .goals {
        display: flex;
        flex-wrap: wrap;
        margin-top: 40px;

        li {
            width: 47%;
            display: flex;
            align-items: center;
            margin: 0 3% 30px 0;

            @media (max-width: 767px) {
                width: 100%;
                margin: 0 0 20px 0;
            }
        }
    }

    .thumb {
        display: flex;
        flex-shrink: 0;
        align-items: center;
        justify-content: center;
        width: 100px;
        height: 100px;
        margin-right: 5%;
        background-color: #0047ff;

        @media (max-width: 992px) {
            width: 80px;
            height: 80px;

            img {
                max-width: 50%;
                max-height: 50%;
            }
        }
    }

    .desc {
        font-size: 16px;
        font-weight: 300;
        line-height: 150%;

        @media (max-width: 992px) {
            font-size: 16px;
        }
    }
}

.course-development-contact-form {
    padding: 110px 0;
    background-color: #f7f7f7;

    @media (max-width: 992px) {
        padding: 75px 0;
    }

    @media (max-width: 767px) {
        padding: 25px 0;
    }

    .title {
        margin: 0;
        font-size: 40px;
        line-height: 120%;

        @media (max-width: 767px) {
            margin: 16px 0;
            font-size: 25px;
        }
    }

    .description {
        margin-top: 16px;
        margin-bottom: 10px;
        font-size: 16px;
        font-weight: 300;
        line-height: 150%;
    }

    .form {
        margin-top: 30px;

        .wpcf7 {
            width: 100%;
        }

        .wpcf7-spinner {
            display: none;
        }

        form {
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
        }

        p {
            width: calc(33.33% - 16px);
            margin: 12px 0;

            @media (max-width: 992px) {
                width: 100%;
            }
        }

        input {
            width: 100%;
            padding: 20px 27px;
            color: #000;
            font-size: 16px;
            font-weight: 300;
            line-height: 150%;
            background-color: #fff;
            border: 4px solid #fff;
            transition: all 0.3s;
            outline: 0;

            @media (max-width: 767px) {
                padding: 16px;
                font-size: 16px;
            }

            &::placeholder {
                color: #000;
            }

            &:focus {
                border: 4px solid #0047ff;
            }
        }

        button {
            position: relative;
            display: inline-block;
            padding: 22px 32px;
            color: #fff;
            font-size: 20px;
            font-weight: 700;
            line-height: 140%;
            text-decoration: none;
            border: 0;
            outline: none;
            transition: all 0.2s;
            border-radius: 0;
            overflow: hidden;
            padding-right: 157px;
            background: #0047ff;

            width: 100%;
            text-align: left;
            padding-left: 20px;
            padding-right: 20px;

            @media (max-width: 1280px) {
                text-align: center;
                &::after {
                    display: none;
                }
            }

            @media (max-width: 767px) {
                padding: 16px 20px;
                padding-right: 118px;
                font-size: 16px;
            }

            &:disabled {
                opacity: 0.2;
            }

            &:active {
                top: 1px;
            }

            &:after {
                content: url(../img/btn-arrow.svg);
                position: absolute;
                top: 0;
                right: 41px;
                bottom: 0;
                width: 93px;
                height: 24px;
                margin: auto;

                @media (max-width: 767px) {
                    content: url(../img/btn-arrow-mobile.svg);
                    right: 21px;
                    width: 78px;
                    height: 24px;
                }
            }

            &:hover {
                &:after {
                    animation: right-overflow 1.4s;

                    @media (max-width: 767px) {
                        animation: right-overflow-mobile 1.4s;
                    }
                }
            }
        }
    }
}

.about-course-block {
    padding: 60px 0;
    background: #0047ff;
    color: #fff;

    @media (max-width: 992px) {
        padding: 45px 0;
    }

    @media (max-width: 767px) {
        padding: 25px 0;
    }

    .wrapper {
        display: flex;

        @media (max-width: 992px) {
            display: block;
        }
    }

    .text {
        width: 42%;

        @media (max-width: 992px) {
            width: 100%;
            margin-bottom: 30px;
        }
    }

    h2 {
        margin: 0 0 16px 0;
        font-size: 40px;
        font-weight: 700;
        line-height: 120%;

        @media (max-width: 767px) {
            margin: 16px 0;
            font-size: 25px;
        }
    }

    p {
        margin: 16px 0;
        font-size: 16px;
        font-weight: 300;
        line-height: 150%;
    }

    ul {
        list-style-type: disc;
        padding-left: 16px;
    }

    .video,
    .picture {
        width: 56%;
        margin-left: 2%;

        @media (max-width: 992px) {
            width: 100%;
            margin-left: 0;
        }

        iframe {
            width: 100%;
            height: 500px;

            @media (max-width: 767px) {
                height: 320px;
            }
        }
    }
}

.salaries-block {
    padding: 60px 0 60px;
    background-color: #f7f7f7;

    @media (max-width: 992px) {
        padding: 45px 0;
    }

    @media (max-width: 767px) {
        padding: 25px 0;
    }

    .salaries-block-title {
        margin: 0 0 40px 0;
        font-size: 40px;
        line-height: 120%;

        @media (max-width: 767px) {
            margin: 16px 0;
            font-size: 25px;
        }
    }

    .position-data {
        display: none;
    }

    .positions {
        display: flex;
        justify-content: space-between;
        width: 100%;
        margin-top: 45px;

        @media (max-width: 767px) {
            margin-top: 20px;
        }
    }

    .position-title {
        margin: 0;
        font-size: 16px;
        font-weight: 500;
        line-height: 150%;

        @media (max-width: 767px) {
            font-size: 12px;
        }

        span {
            display: block;
            font-weight: 300;
        }
    }

    .salaries-block-row {
        display: flex;
        padding: 32px 40px;
        background: #fff;

        @media (max-width: 992px) {
            display: block;
        }

        @media (max-width: 767px) {
            padding: 0;
            background: #f7f7f7;
        }
    }

    .position-description {
        width: 32%;
        margin-left: 5%;
        font-size: 16px;
        font-weight: 300;
        line-height: 150%;

        @media (max-width: 992px) {
            width: 100%;
            margin-top: 30px;
            margin-left: 0;
        }

        @media (max-width: 767px) {
            margin-top: 20px;
            font-size: 14px;
        }

        h3 {
            margin: 0;
            font-size: 16px;
            line-height: 150%;
        }
    }

    .slide-container {
        width: 63%;

        @media (max-width: 992px) {
            width: 100%;
        }

        .slider {
            appearance: none;
            width: 100%;
            height: 44px;
            background: #f7f7f7;
            outline: none;
            transition: all 0.2s;

            @media (max-width: 767px) {
                background-color: #fff;
            }
        }

        .slider::-webkit-slider-thumb {
            appearance: none;
            width: 76px;
            height: 44px;
            background: url(../img/ic_arrow-slider.svg) center no-repeat #0047ff;
            cursor: pointer;
            border-radius: 40px;
        }

        .slider::-moz-range-thumb {
            appearance: none;
            width: 76px;
            height: 44px;
            background: url(../img/ic_arrow-slider.svg) center no-repeat #0047ff;
            cursor: pointer;
            border-radius: 40px;
        }
    }

    .block-description {
        margin-top: 40px;
        color: #878787;
        font-size: 16px;
        font-weight: 300;
        line-height: 150%;

        @media (max-width: 767px) {
            margin-top: 30px;
            font-size: 14px;
        }
    }

    .logos {
        margin-top: 20px;
        display: flex;
        align-items: flex-end;

        li {
            margin-right: 40px;
        }
    }
}

.course-program {
    padding: 60px 0;

    @media (max-width: 992px) {
        padding: 45px 0;
    }

    @media (max-width: 767px) {
        padding: 25px 0;
    }

    .title {
        margin: 0;
        font-size: 40px;
        font-weight: 700;
        line-height: 120%;

        @media (max-width: 767px) {
            margin: 16px 0;
            font-size: 25px;
        }
    }

    .description {
        margin-top: 16px;
        font-size: 16px;
        font-weight: 300;
        line-height: 150%;
    }

    .row {
        display: flex;
        margin-top: 24px;

        @media (max-width: 767px) {
            display: block;
        }
    }

    .name {
        width: 50%;
        padding: 20px 3%;
        font-size: 22px;
        font-weight: 500;
        line-height: 140%;
        background-color: #f7f7f7;

        @media (max-width: 992px) {
            font-size: 18px;
        }

        @media (max-width: 767px) {
            width: 100%;
            text-align: center;
        }
    }

    .duration,
    .start {
        display: flex;
        flex-direction: column;
        justify-content: center;
        width: 25%;
        padding: 20px 4%;
        color: #fff;
        font-size: 14px;
        line-height: 150%;
        background: #0047ff;

        @media (max-width: 767px) {
            width: 100%;
            text-align: center;
        }

        strong {
            font-size: 22px;
            font-weight: 500;
            line-height: 140%;

            @media (max-width: 992px) {
                font-size: 16px;
            }
        }
    }

    .accordion {
        margin-top: 28px;
    }
}

.course-webinar-block {
    padding: 110px 0;
    background-color: #f7f7f7;

    @media (max-width: 992px) {
        padding: 75px 0;
    }

    @media (max-width: 767px) {
        padding: 25px 0;
    }

    .row {
        display: flex;
        margin-bottom: 40px;

        @media (max-width: 992px) {
            display: block;
        }
    }

    .title {
        margin: 0;
        font-size: 40px;
        line-height: 120%;

        @media (max-width: 767px) {
            margin: 16px 0;
            font-size: 25px;
        }
    }

    .description {
        margin-top: 16px;
        font-size: 16px;
        font-weight: 300;
        line-height: 150%;
    }

    .text {
        width: 38%;

        @media (max-width: 992px) {
            margin-top: 20px;
            width: 100%;
        }
    }

    .picture {
        display: flex;
        justify-content: center;
        align-items: flex-start;
    }

    .video,
    .picture {
        width: 60%;
        margin-right: 2%;

        @media (max-width: 992px) {
            width: 100%;
            margin-right: 0;
        }

        iframe {
            width: 100%;
            height: 500px;

            @media (max-width: 767px) {
                height: 320px;
            }
        }
    }
}

.get-free-learning-block {
    padding: 60px 0;
    background: #0047ff;
    color: #fff;

    @media (max-width: 992px) {
        padding: 45px 0;
    }

    @media (max-width: 767px) {
        padding: 25px 0;
        text-align: center;

        .btn-main-reverse {
            width: 100%;
            text-align: center;
        }
    }

    .wrapper {
        display: flex;
        align-items: center;
        justify-content: space-between;

        @media (max-width: 992px) {
            display: block;
        }
    }

    .title {
        margin-right: 16px;
        font-size: 40px;
        font-weight: 700;
        line-height: 120%;

        @media (max-width: 767px) {
            font-size: 25px;
        }
    }
}

.instruments-block {
    padding: 60px 0 60px;

    @media (max-width: 992px) {
        padding: 45px 0;
    }

    @media (max-width: 767px) {
        padding: 25px 0;
    }

    .instruments-block-title {
        margin: 40px 0;
        font-size: 40px;
        line-height: 120%;

        @media (max-width: 767px) {
            margin: 16px 0;
            font-size: 25px;
        }
    }

    .instruments-tabs {
        display: flex;
        position: relative;

        @media (max-width: 767px) {
            display: block;
        }
    }

    .brace {
        position: absolute;
        top: -16px;
        left: calc(280px + 3%);

        @media (max-width: 767px) {
            display: none;
        }
    }

    .tab-titles {
        flex-shrink: 0;
        width: 280px;
        margin-right: 8%;

        @media (max-width: 767px) {
            display: none;
        }

        li {
            padding: 16px 24px;
            color: #000;
            font-size: 20px;
            font-weight: 700;
            line-height: 200%;
            transition: all 0.2s ease-in-out;
            background-color: #f7f7f7;
            cursor: pointer;

            &:hover {
                color: #0047ff;
            }

            &.active {
                color: #fff;
                background-color: #0047ff;
            }
        }
    }

    .tab-descriptions {
        width: calc(89% - 350px);

        @media (max-width: 767px) {
            width: 100%;
            margin-top: 30px;
        }

        li {
            font-size: 16px;
            font-weight: 300;
            line-height: 150%;

            @media (max-width: 767px) {
                display: block !important;
            }

            h3 {
                margin: 0 0 24px 0;
                font-size: 28px;
                line-height: 100%;

                @media (max-width: 767px) {
                    font-size: 20px;
                }
            }

            p {
                margin: 24px 0;
            }
        }
    }
}

.teachers-block {
    padding: 60px 0 110px;
    background-color: #f7f7f7;

    @media (max-width: 992px) {
        padding: 45px 0;
    }

    @media (max-width: 767px) {
        padding: 25px 0;
    }

    .teachers-block-title {
        margin: 32px 0;
        font-size: 40px;
        line-height: 120%;

        @media (max-width: 767px) {
            margin: 16px 0;
            font-size: 25px;
        }
    }

    .teachers-list {
        .photo {
            width: 25%;
            margin-right: 3%;

            @media (max-width: 767px) {
                width: auto;
                margin: 0 0 20px 0;
            }

            img {
                max-width: 100%;
                height: auto;
            }
        }

        .info {
            width: 72%;
            font-size: 16px;
            font-weight: 400;
            line-height: 150%;

            @media (max-width: 767px) {
                width: 100%;
                font-size: 14px;
            }

            h3 {
                margin: 16px 0;
                font-size: 24px;
                line-height: 100%;

                @media (max-width: 767px) {
                    font-size: 20px;
                }
            }

            p {
                margin: 16px 0;
            }
        }

        li {
            display: flex;

            @media (max-width: 767px) {
                display: block;
            }
        }

        li:not(:last-child) {
            margin-bottom: 110px;

            @media (max-width: 767px) {
                margin-bottom: 30px;
            }
        }
    }

    .linkedin {
        margin-top: 24px;

        svg {
            margin-right: 22px;
        }

        a {
            color: #000;
            font-size: 16px;
            font-weight: 700;
            line-height: 150%;
            text-decoration: none;

            &:hover {
                opacity: 0.8;

                svg {
                    animation: shake-it 0.4s ease-in-out;
                }
            }
        }
    }
}

.faq-block {
    padding: 60px 0;

    @media (max-width: 767px) {
        padding: 25px 0 25px;
    }

    .faq-block-title {
        font-size: 32px;
        font-weight: 700;
        line-height: 120%;

        @media (max-width: 767px) {
            font-size: 25px;
        }
    }
}

.accordion {
    .question {
        margin-bottom: 8px;

        @media (max-width: 767px) {
            width: 100%;
            margin: 0;
        }

        .question-title {
            padding: 0 0 12px;
            cursor: pointer;

            p {
                position: relative;
                padding-right: 50px;
                margin: 0;
                display: inline-block;
                font-size: 28px;
                font-weight: 500;
                line-height: 160%;

                @media (max-width: 767px) {
                    font-size: 18px;
                }
            }
        }

        .question-answer {
            display: none;

            p {
                margin: 0;
                padding: 12px 0 8px;
            }
        }

        &.opened {
            .arrow span {
                &:first-of-type {
                    transform: rotate(-45deg);
                }

                &:last-of-type {
                    transform: rotate(45deg);
                }
            }
        }
    }

    .arrow {
        position: relative;
        position: absolute;
        top: 0;
        right: 5px;
        bottom: 0;
        width: 31px;
        height: 18px;
        display: inline-block;
        vertical-align: baseline;
        margin: auto;
        pointer-events: none;

        span {
            top: 8px;
            position: absolute;
            width: 19px;
            height: 3px;
            border-radius: 3px;
            background-color: #0047ff;
            display: inline-block;
            transition: all 0.2s ease;

            &:first-of-type {
                left: 0;
                transform: rotate(45deg);
            }

            &:last-of-type {
                right: 0;
                transform: rotate(-45deg);
            }
        }
    }
}

.main-page-banner {
    padding: 70px 0 0 0;
    color: #000;
    display: flex;

    @media (max-width: 992px) {
        flex-direction: column;
        padding: 10px 0 25px;
    }

    .wrapper {
        display: flex;
        gap: 50px;

        @media (max-width: 767px) {
            flex-direction: column;
            gap: 20px;
        }
    }

    img {
        object-fit: cover;
        height: 100%;
        border-radius: 20px;
    }

    .col:first-child {
        width: fit-content;
        align-self: flex-end;

        @media (max-width: 767px) {
            align-self: start;
            width: 100%;
        }
    }

    .col:last-child {
        @media (max-width: 767px) {
            order: -1;
        }
    }

    .title {
        width: max-content;
        font-size: 44px;
        font-weight: 700;
        line-height: 120%;
        word-break: break-word;

        @media (max-width: 992px) {
            max-width: 100%;
            width: 100%;
            margin-top: 10px;
            font-size: 25px;
            line-height: normal;
        }
    }

    .text {
        width: max-content;
        margin: 20px 0;
        font-size: 24px;
        font-weight: 300;
        line-height: 150%;

        @media (max-width: 992px) {
            margin: 10px 0;
            font-size: 16px;
        }

        @media (max-width: 767px) {
            width: 100%;
        }
    }

    .btn-main {
        width: max-content;
    }
}

.main-banner-partners-logos {
    padding: 60px 0;

    @media (max-width: 992px) {
        padding: 40px 0;
    }

    @media (max-width: 767px) {
        padding: 20px 0;
    }
    .list {
        display: flex;
        gap: 20px;
        align-items: center;
        justify-content: center;

        @media (max-width: 992px) {
            flex-wrap: wrap;

            li {
                max-width: calc(25% - 15px);
            }

            img {
                max-height: 70px;
            }
        }

        @media (max-width: 500px) {
            gap: 15px;
            justify-content: space-between;

            li {
                max-width: fit-content;
            }

            img {
                max-width: 20vw;
                max-height: 11vw;
            }
        }
    }
}

.academia-block {
    position: relative;
    padding: 50px 0;
    background-color: #f7f7f7;

    @media (max-width: 992px) {
        padding: 40px 0;
    }

    @media (max-width: 767px) {
        padding: 25px 0;
    }

    .wrapper {
        display: flex;
        gap: 30px;

        @media (max-width: 992px) {
            flex-direction: column;
        }

        @media (max-width: 992px) {
            gap: 10px;
        }
    }

    .picture {
        width: 36%;

        @media (max-width: 992px) {
            width: 100%;
            margin-right: 0;
            text-align: center;
        }

        img {
            border-radius: 20px;
            object-fit: cover;
            height: 100%;

            &:nth-child(1) {
                @media (max-width: 993px) {
                    display: none;
                }
            }

            &:nth-child(2) {
                display: none;
                @media (max-width: 992px) {
                    display: inline;
                }
            }

            @media (max-width: 992px) {
                height: 500px;
            }

            @media (max-width: 767px) {
                height: 100%;
            }
        }
    }

    .desc {
        width: calc(64% - 30px);
        @media (max-width: 992px) {
            width: 100%;
        }
    }

    .title {
        margin: 16px 0;
        font-size: 44px;
        font-weight: 700;
        line-height: 120%;

        @media (max-width: 767px) {
            margin: 16px 0;
            font-size: 22px;
            line-height: normal;
        }
    }

    .text {
        font-size: 16px;
        font-weight: 300;
        line-height: 150%;

        @media (max-width: 767px) {
            font-size: 16px;
        }
    }
}

.faculties-block {
    padding: 50px 0;

    @media (max-width: 992px) {
        padding: 40px 0;
    }

    @media (max-width: 767px) {
        padding: 25px 0;
    }

    .wrapper {
        padding: 0 12px;

        @media (max-width: 767px) {
            padding: 0 15px;
        }
    }

    .title {
        margin: 8px 0 24px;
        font-size: 40px;
        line-height: 120%;

        @media (max-width: 767px) {
            font-size: 25px;
        }

        span {
            font-weight: 300;
        }
    }

    .list {
        display: flex;
        align-items: center;
        flex-wrap: wrap;
        gap: 20px;

        @media (max-width: 767px) {
            margin: 0 -7px;
            gap: 12px;
        }

        li {
            position: relative;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            width: calc(25% - 15px);
            padding: 2.4%;
            background-color: #0047ff;
            transition: all 0.4s;
            border-radius: 20px;

            @media (max-width: 1140px) {
                width: calc(33.33% - 14px);
            }

            @media (max-width: 992px) {
                width: calc(50% - 10px);
            }

            @media (max-width: 767px) {
                width: calc(50% - 6px);
                padding: 20px;
            }

            &:hover {
                background-color: #ececec;

                svg path {
                    fill: #0047ff;
                }

                .thumb {
                    opacity: 1;
                }

                a {
                    color: #000;
                }
            }
        }

        .link-stretch {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            display: block;
        }

        .representation {
            display: flex;
            justify-content: space-between;
            margin-bottom: 8px;
        }

        .thumb {
            width: 38%;
            padding-bottom: 36%;
            background-repeat: no-repeat;
            background-size: cover;
            opacity: 0;
            transition: opacity 0.3s;
            border-radius: 15px;
        }

        h3 {
            overflow: hidden;
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
            height: 104px;
            margin: 0;
            color: #fff;
            font-family: "e-Ukraine Head", sans-serif;
            font-size: 20px;
            font-weight: 500;
            line-height: 130%;

            @media (max-width: 767px) {
                height: 63px;
                font-size: 12px;
                line-height: normal;
            }
        }

        a {
            color: #fff;
            text-decoration: none;
        }
    }
}

.our-advantages {
    padding: 50px 0 10px;

    @media (max-width: 992px) {
        padding: 40px 0 10px;
    }

    @media (max-width: 767px) {
        padding: 25px 0 10px;
    }

    .title {
        margin: 0 0 30px 0;
        font-size: 44px;
        font-weight: 700;
        line-height: 120%;

        @media (max-width: 767px) {
            margin: 16px 0;
            font-size: 25px;
            line-height: normal;
            word-break: break-all;
        }
    }

    .desc {
        padding: 60px;
        color: #fff;
        background-size: cover;
        background-position: center;
        border-radius: 12px;
        overflow: hidden;

        @media (max-width: 992px) {
            padding: 20px;

            background-position: 85% 50%;
        }
    }

    .text {
        max-width: 660px;
        p {
            font-size: 16px;
            font-weight: 300;
            margin: 24px 5px 0 0;

            @media (max-width: 992px) {
                line-height: 140%;
                margin: 16px 0;
            }
        }

        em {
            font-size: 18px;
            font-weight: 400;
            margin-left: -5px;
            font-style: normal;
            background-color: #0038ff;
            color: #fff;
            border-radius: 10px;
            padding: 5px 10px 5px;
            box-decoration-break: clone;
            line-height: 140%;

            @media (max-width: 767px) {
                font-size: 16px;
            }
        }
    }

    .list {
        margin-top: 50px;
        display: flex;
        flex-wrap: wrap;
        gap: 20px;

        li {
            margin-bottom: 20px;
            width: calc(50% - 10px);
            display: flex;
            gap: 25px;
            align-items: center;

            @media (max-width: 992px) {
                gap: 15px;
                width: 100%;
                align-items: flex-start;
            }
        }

        .thumb {
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            width: 100px;
            height: 100px;
            background-color: #8bff51;
            border-radius: 15px;

            @media (max-width: 992px) {
                width: 80px;
                height: 80px;

                img {
                    max-width: 40px;
                    max-height: 33px;
                }
            }
        }

        .heading {
            margin: 8px 0;
            font-size: 20px;
            line-height: 120%;

            @media (max-width: 992px) {
                font-size: 16px;
            }
        }

        .description {
            margin: 0;
            font-size: 13px;
            font-weight: 300;
            line-height: 140%;
            color: #848889;
        }
    }
}

.learning-process-block {
    padding: 60px 0;

    @media (max-width: 992px) {
        padding: 45px 0;
    }

    @media (max-width: 767px) {
        padding: 20px 0;
    }

    .learning-process-block-title {
        margin: 0 0 40px 0;
        font-size: 44px;
        line-height: 120%;

        @media (max-width: 767px) {
            margin: 0 0 25px 0;
            font-size: 25px;
        }

        span {
            font-weight: 300;
        }
    }

    .flex {
        display: flex;
        gap: 30px;
        flex-wrap: wrap;

        @media (max-width: 992px) {
            gap: 15px;
        }

        .col {
            display: flex;
            flex-direction: column;
            gap: 25px;
            width: calc(50% - 15px);

            @media (max-width: 992px) {
                width: 100%;
                gap: 15px;
            }
        }

        .item {
            position: relative;
            font-weight: 700;
            font-size: 24px;
            line-height: 120%;
            padding: 40px 80px 40px 35px;
            background-color: #f7f7f7;
            border-radius: 20px;

            @media (max-width: 992px) {
                padding: 20px 45px 20px 20px;
                font-size: 16px;
                border-radius: 7px;
                white-space: nowrap;
            }

            &:after {
                content: "";
                position: absolute;
                top: 20px;
                right: 20px;
                background-color: #0047ff;
                width: 40px;
                height: 40px;
                color: #fff;
                font-size: 20px;
                font-weight: bold;
                border-radius: 12px;
                text-align: center;
                line-height: 40px;

                @media (max-width: 992px) {
                    top: 10px;
                    right: 10px;
                    font-size: 18px;
                    line-height: 30px;
                    width: 30px;
                    height: 30px;
                }
            }
        }

        .col:first-child {
            .item:nth-child(1):after {
                content: "1";
            }

            .item:nth-child(2):after {
                content: "2";
            }

            .item:nth-child(3):after {
                content: "3";
            }

            .item:nth-child(4):after {
                content: "4";
            }
        }

        .col:last-child {
            .item:nth-child(1):after {
                content: "5";
            }

            .item:nth-child(2):after {
                content: "6";
            }

            .item:nth-child(3):after {
                content: "7";
                background-color: #fff;
                color: #000;
            }

            .item:nth-child(3) {
                flex-grow: 1;
                background-color: #8bff51;

                @media (max-width: 992px) {
                    height: 190px;
                }

                &:before {
                    content: url("../img/Jobaufnahme.png");
                    position: absolute;
                    right: 3px;
                    bottom: -3px;
                    scale: 0.75;
                }
            }
        }
    }
}

.certificate-block {
    padding: 60px 0 0 0;
    background-color: #f7f7f7;

    @media (max-width: 992px) {
        padding: 45px 0 0 0;
    }

    @media (max-width: 767px) {
        padding: 40px 0 0 0;
    }

    .img {
        margin-top: 50px;
        display: flex;
        align-items: flex-end;

        img {
            height: auto;
            flex-grow: 0;

            @media (max-width: 767px) {
                width: 100%;
            }
        }

        img:nth-child(1) {
            width: 36%;
        }

        img:nth-child(2) {
            width: 36%;
        }

        img:nth-child(3) {
            width: 26%;
        }

        img:nth-child(1),
        img:nth-child(2),
        img:nth-child(3) {
            @media (max-width: 992px) {
                width: 100%;
            }
        }

        @media (max-width: 992px) {
            flex-direction: column;
            align-items: center;
        }
    }

    .title {
        margin: 0 0 20px 0;
        font-size: 44px;
        line-height: 120%;

        @media (max-width: 767px) {
            font-size: 25px;
        }
    }

    .text {
        p {
            margin: 30px 0;
            font-size: 16px;
            font-weight: 300;
            line-height: 140%;

            @media (max-width: 767px) {
                margin: 16px 0;
                font-size: 16px;
            }
        }
    }

    .linkedin {
        display: flex;
        align-items: center;
        max-width: 767px;

        @media (max-width: 767px) {
            display: none;
        }
    }

    .linkedin-img {
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
        width: 100px;
        height: 100px;
        margin-right: 28px;
        background-color: #fff;
        border-radius: 20px;
    }

    .linkedin-text {
        font-size: 12px;
        font-weight: 200;
        line-height: 130%;
    }
}

.partners-block {
    padding: 60px 0 25px 0;

    @media (max-width: 767px) {
        padding: 20px 0;
    }

    .title {
        margin: 0 0 40px 0;
        font-size: 44px;
        line-height: 120%;

        @media (max-width: 767px) {
            margin: 0 0 20px 0;
            font-size: 25px;
        }

        span {
            font-weight: 300;
        }
    }

    .list {
        display: flex;
        align-items: center;
        flex-wrap: wrap;

        li {
            width: 25%;
            margin-bottom: 35px;

            @media (max-width: 1024px) {
                width: 33.33%;
                margin-bottom: 40px;
            }

            @media (max-width: 767px) {
                width: 50%;
                margin-bottom: 10px;
            }
        }

        img {
            max-width: 90%;
        }

        a {
            display: block;
            opacity: 1;
            transition: opacity 0.3s;

            &:hover {
                opacity: 0.7;
            }
        }
    }
}

.google-reviews {
    padding: 60px 0 20px 0;
    background-color: #f7f7f7;

    @media (max-width: 992px) {
        padding: 45px 0 20px 0;
    }

    @media (max-width: 767px) {
        padding: 20px 0;
    }

    .title {
        margin: 0 0 40px 0;
        font-size: 36px;
        line-height: 120%;

        span {
            font-weight: 400;
        }

        @media (max-width: 767px) {
            margin-bottom: 20px;
            font-size: 25px;
        }
    }

    .star {
        background: url(https://cdn.trustindex.io/assets/platform/Google/star/f.svg)
            no-repeat center;
        width: 20px;
        height: 20px;
    }

    .list {
        display: flex;
        flex-wrap: wrap;
        gap: 20px;
        margin-bottom: 40px;

        li {
            width: calc(25% - 60px / 4);
            padding: 22px;
            background-color: #fff;
            border-radius: 15px;

            @media (max-width: 992px) {
                width: calc(50% - 20px / 2);
            }

            @media (max-width: 767px) {
                width: 100%;
            }
        }

        .row {
            display: flex;
            align-items: center;
            gap: 15px;

            @media (max-width: 767px) {
                justify-content: center;
            }
        }

        .meta {
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
        }

        .rating {
            display: flex;
            gap: 5px;
        }

        h3 {
            font-size: 13px;
            line-height: 120%;
            margin: 8px 0 0 0;
        }

        .date {
            color: gray;
            font-size: 12px;
        }

        .thumb {
            max-width: 50px;
        }

        .comment {
            text-align: center;
            font-size: 13px;
            font-weight: 200;
            color: #2b2b2b;
            overflow: hidden;
        }
    }
}

.faq-block.faq-block-homepage {
    padding: 60px 0;

    @media (max-width: 992px) {
        padding: 45px 0;
    }

    @media (max-width: 767px) {
        padding: 20px 0;
    }

    .faq-block-title {
        margin: 0 0 30px 0;
        font-size: 44px;
        line-height: 120%;

        span {
            font-weight: 400;
        }

        @media (max-width: 767px) {
            margin-bottom: 20px;
            font-size: 25px;
        }
    }
}

.news-block {
    padding: 60px 0;
    background-color: #f7f7f7;

    @media (max-width: 992px) {
        padding: 45px 0;
    }

    @media (max-width: 767px) {
        padding: 20px 0;
    }

    .title {
        margin: 0 0 30px 0;
        font-size: 44px;
        line-height: 120%;

        span {
            font-weight: 400;
        }

        @media (max-width: 767px) {
            margin-bottom: 20px;
            font-size: 25px;
        }
    }

    .desc {
        font-size: 16px;
        font-weight: 300;
        line-height: 150%;

        @media (max-width: 767px) {
            margin: 16px 0;
            font-size: 16px;
        }
    }

    .list {
        display: flex;
        flex-wrap: wrap;
        gap: 30px;

        @media (max-width: 767px) {
            gap: 15px;
        }

        li {
            position: relative;
            width: calc(50% - 15px);
            border-radius: 20px;
            overflow: hidden;

            @media (max-width: 767px) {
                width: 100%;
            }

            &:hover {
                background-color: #ececec;

                svg {
                    transform: scale(1.2);
                }

                img {
                    transform: scale(1.03);
                }
            }
        }

        .link-stretch {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            z-index: 1;
            display: block;
            background: linear-gradient(
                360deg,
                rgba(0, 0, 0, 0.65) 0%,
                rgba(217, 217, 217, 0) 95.5%
            );
        }

        .representation {
            background-color: #0047ff;
            aspect-ratio: 16/10;
            overflow: hidden;

            svg {
                position: absolute;
                top: 0;
                left: 0;
                right: 0;
                bottom: 7%;
                z-index: 1;
                margin: auto;
                transition: transform 0.2s;
            }
        }

        img {
            aspect-ratio: 16/10;
            object-fit: cover;
            transition: transform ease-in-out 0.8s;
        }

        h3 {
            position: absolute;
            left: 8%;
            bottom: 10%;
            overflow: hidden;
            z-index: 1;
            width: 84%;
            max-height: 104px;
            margin: 0;
            color: #fff;
            font-family: "e-Ukraine Head", sans-serif;
            font-size: 20px;
            font-weight: 500;
            line-height: 130%;

            @media (max-width: 992px) {
                max-height: 83px;
                font-size: 16px;
            }
        }

        a {
            display: block;
            color: #fff;
            text-decoration: none;
        }
    }

    .btn-main {
        margin-top: 40px;
        background-color: #8bff51;
        color: #000;

        &::after {
            content: url(../img/btn-arrow-black.svg);

            @media (max-width: 992px) {
                content: url(../img/btn-arrow-black-mobile.svg);
            }
        }
    }
}

.contact-form {
    padding: 60px 0;

    @media (max-width: 992px) {
        padding: 45px 0;
    }

    @media (max-width: 767px) {
        padding: 20px 0;
    }

    .contact-form-title {
        margin: 0 0 20px 0;
        font-size: 40px;
        font-weight: 400;
        line-height: 120%;

        @media (max-width: 767px) {
            font-size: 25px;
        }
    }

    .contact-form-info {
        margin-top: 64px;
        display: flex;
        align-items: center;
        justify-content: space-between;

        @media (max-width: 1440px) {
            flex-wrap: wrap;
            justify-content: center;
        }

        @media (max-width: 767px) {
            margin: 30px 0 20px;
            flex-direction: column;
            justify-content: flex-start;
            align-items: flex-start;
        }

        a {
            color: #000;
            display: flex;
            align-items: center;
            font-size: 28px;
            font-weight: 500;
            text-decoration: none;

            @media (max-width: 1440px) {
                margin: 20px;
            }

            @media (max-width: 767px) {
                margin: 10px 0;
                font-size: 16px;
            }

            &:hover {
                color: #0047ff !important;

                svg {
                    animation: shake-it 0.4s;

                    path:first-child {
                        fill: #0047ff;
                    }
                }
            }
        }

        svg {
            margin-right: 16px;

            @media (max-width: 767px) {
                margin-right: 15px;
                width: 20px;
                height: 20px;
            }
        }
    }

    button {
        position: relative;
        display: inline-block;
        padding: 22px 32px;
        color: #fff;
        font-size: 20px;
        font-weight: 700;
        line-height: 140%;
        text-decoration: none;
        border: 0;
        outline: none;
        transition: all 0.2s;
        border-radius: 0;
        overflow: hidden;
        padding-right: 157px;
        background: #0047ff;

        @media (max-width: 767px) {
            padding: 16px 20px;
            padding-right: 118px;
            font-size: 16px;
        }

        &:disabled {
            opacity: 0.2;
        }

        &:active {
            top: 1px;
        }

        &:after {
            content: url(../img/btn-arrow.svg);
            position: absolute;
            top: 0;
            right: 41px;
            bottom: 0;
            width: 93px;
            height: 24px;
            margin: auto;

            @media (max-width: 767px) {
                content: url(../img/btn-arrow-mobile.svg);
                right: 21px;
                width: 78px;
                height: 24px;
            }
        }

        &:hover {
            &:after {
                animation: right-overflow 1.4s;

                @media (max-width: 767px) {
                    animation: right-overflow-mobile 1.4s;
                }
            }
        }
    }
}

.page-404 {
    margin: 50px 0 50px;
    min-height: 40vh;
}

.default-page {
    margin: 50px 0 50px;
    min-height: 40vh;

    .page-heading {
        font-size: 40px;
        line-height: 120%;
    }
}

#wpadminbar {
    display: none;
}
