body {
    position: relative;
}

.free-course-popup-background {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;

    width: 100%;
    height: 100%;

    backdrop-filter: blur(2px);
    background-color: transparent;
}

.free-course-popup {
    width: 95%;
    max-width: 944px;
    border-radius: 20px;
    background: #fff;
    box-shadow: 0 0 10px 0 rgba(51, 51, 51, 0.25);

    display: none;
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    right: 0;
    z-index: 9999;

    margin-left: auto;
    margin-right: auto;
    padding: 36px;
}

.free-course-popup__close-btn {
    cursor: pointer;

    position: absolute;
    top: 15px;
    right: 15px;
}

.free-course-popup__title {
    color: #333333;

    font-family: Raleway, sans-serif;
    font-weight: 700;
    font-size: 20px;
    line-height: 24px;

    margin-bottom: 20px;
    margin-right: 20px;
}

.phone-form__title {
    color: #333333;

    font-family: 'Rubik', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;

    margin-bottom: 6px;
}

.phone-form__success-text {
    color: #333333;

    font-family: Raleway, sans-serif;
    font-weight: 700;
    font-size: 20px;
    line-height: 24px;
}

.phone-form__terms-of-use {
    color: #9499AC;

    font-family: 'Rubik', sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 16px;

    margin-top: 6px;
}

.phone-form__link {
    color: #9499AC;
}

.phone-form__link:hover {
    color: #0562D0;
}

.phone-form-group {
    display: flex;
}

.phone-form-group__input {
    color: #333333;

    font-family: 'Rubik', sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 24px;

    width: 50%;
    border-radius: 5px;
    border: 1px solid #0562D0;

    margin-right: 6px;
    padding: 8px 12px;
}

.phone-form-group__input:focus {
    outline: none;
    border: 1px solid;
}


.phone-form-group__send-btn {
    color: #fff;
    background: #0562D0;

    font-family: Raleway, sans-serif;
    font-weight: 700;
    font-size: 16px;
    line-height: 18px;

    border: none;
    border-radius: 5px;
    width: 190px;
    height: 40px;
    text-align: center;
    user-select: none;
}

.phone-form-group__send-btn:focus {
    outline: none;
    border: #E6E9EF 1px solid;
}

.phone-form-group__send-btn:hover {
    color: #0562D0;
    border: #0562D0 1px solid;
    background-color: #fff;
    cursor: pointer;
}

.phone-form-group__send-btn_disabled {
    background-color: #7db5fa;
    pointer-events: none;
}

.reviews-slider {
    margin-top: 40px;
}

.reviews-slider__title {
    color: #333333;

    font-family: Raleway, sans-serif;
    font-weight: 700;
    font-size: 20px;
    line-height: 24px;

    margin-bottom: 16px;
}

.review-slide {
    max-width: 280px;
    border-radius: 10px;
    border: 1px solid #C9CDDA;

    display: flex;
    flex-direction: column;
    justify-content: space-between;

    padding: 16px;
}

.review-slide__title {
    color: #333333;

    font-family: 'Rubik', sans-serif;
    font-weight: 600;
    font-size: 14px;
    line-height: 16px;

    margin-top: 16px;
    margin-bottom: 8px;

    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.review-slide__text {
    color: #333333;

    font-family: 'Rubik', sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 16px;

    margin: 8px 0;
}

.review-slide__link {
    color: #0562D0;

    font-family: Raleway, sans-serif;
    font-weight: 600;
    font-size: 14px;
    line-height: 16px;

    text-decoration-line: underline;
}

.review-slide__link:hover {
    color: #333;
}

.review-slide__link-wrapper:hover {
    text-decoration: none;
}

.school-info {
    text-decoration: none;
    display: flex;
}

.school-info:hover {
    text-decoration: none;
}

.school-info__logo {
    width: 36px;
    height: 36px;
    flex-shrink: 0;
    border-radius: 6px;
    background-color: #fff;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.school-info__right-column {
    display: flex;
    flex-direction: column;
    padding-left: 12px;
    justify-content: center;
}

.school-info__name {
    color: #333333;

    font-family: 'Rubik', sans-serif;
    font-weight: 600;
    font-size: 14px;
    line-height: 16px;

    margin-bottom: 1px;
    margin-top: 5px;

    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}

.school-info__bottom-row {
    display: flex;

    margin-top: 1px;
}

.school-info__rating {
    color: #9499AC;

    font-family: 'Rubik', sans-serif;
    font-weight: 400;
    font-size: 12px;
    line-height: 16px;

    margin-right: 3px;
    margin-bottom: 0;
}

.school-info__reviews-number {
    color: #9499AC;

    font-family: 'Rubik', sans-serif;
    font-weight: 400;
    font-size: 12px;
    line-height: 16px;

    margin-right: 3px;
    margin-left: 6px;
    margin-bottom: 0;
}

.school-info__reviews-icon {
    display: flex;
    justify-content: center;
    align-items: center;
}

.truncate-text {
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
}

.whatsapp-btn {
    background: #30ac63;
    border-radius: 5px;
    text-decoration: none;
    cursor: pointer;

    display: none;
    justify-content: center;
    align-items: center;

    padding: 10px 34px;
}

.whatsapp-btn:hover {
    text-decoration: none;
}

.whatsapp-btn__icon {
    width: 20px;
    height: 20px;
}

.whatsapp-btn__text {
    color: #fff;

    font-family: Raleway, sans-serif;
    font-weight: 700;
    font-size: 14px;
    line-height: 16px;

    margin: 0 0 0 6px;
}

.header-menu-item {
    display: flex;
    align-items: center;
    justify-content: center;
}

.header-btn-modal-activator {
    max-width: 234px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    background: linear-gradient(231deg, rgba(53, 223, 224, 0.00) 22.79%, rgba(53, 223, 224, 0.50) 76.57%), #056ED0;
    cursor: pointer;
    user-select: none;
    border: transparent 1px solid;

    color: #fff;
    font-variant-numeric: lining-nums proportional-nums;

    padding: 8px 16px;
}

.header-btn-modal-activator p {
    color: inherit;
}

.header-btn-modal-activator:hover {
    color: #0562D0;
    border: #0562D0 1px solid;
    background: #fff;
}

.header-btn-modal-activator_text {
    color: #FFF;
    text-align: center;

    font-family: Raleway, sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: 16px;

    margin: 0;
}

.header-btn-modal-activator_mobile {
    display: none;
}

.success-msg-top-alert {
    display: none;
    position: fixed;
    top: 20px;
    right: 3%;
    max-width: 400px;
    align-items: center;
    gap: 6px;
    border-radius: 5px;
    background: #333;
    z-index: 9999;
    user-select: none;

    padding: 10px;
}

.success-msg-top-alert__icon {
    min-width: 17px;
}

.success-msg-top-alert__text {
    color: #FFF;

    font-family: 'Rubik', sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 18px;

    margin: 0;
}

@media screen and (max-width: 767px) {
    .header-btn-modal-activator_mobile {
        display: flex;
    }

    .header-btn-modal-activator_desktop {
        display: none;
    }
}

@media screen and (max-width: 1024px) {
    .header-btn-modal-activator_desktop {
        margin-right: -39px;
    }
}

@media screen and (max-width: 575px) {
    .header-btn-modal-activator_mobile {
        max-width: 290px;
    }
}

@media screen and (max-width: 767px) {
    .free-course-popup {
        padding: 24px;
    }

    .free-course-popup__title {
        font-size: 16px;
        line-height: 20px;
        margin-bottom: 16px;
    }

    .phone-form {
        display: none;
    }

    .phone-form__title {
        font-size: 14px;
    }

    .phone-form__success-text {
        font-size: 16px;
    }

    .phone-form__terms-of-use {
        font-size: 12px;
    }

    .reviews-slider {
        margin-top: 32px;
    }

    .reviews-slider__title {
        font-size: 16px;
        line-height: 20px;
    }

    .phone-form-group {
        flex-direction: column;
    }

    .phone-form-group__input {
        width: 100%;
    }

    .phone-form-group__send-btn {
        margin-top: 10px;
        width: 100%;
    }
}

@media screen and (max-width: 575px) {
    .success-msg-top-alert {
        max-width: none;
        width: auto;

        left: auto;
        right: auto;
        margin: 0 15px;
    }
}

@media screen and (max-width: 480px) {
    .whatsapp-btn {
        max-width: none;
        width: 100%;
    }
}
