@import url(https://fonts.googleapis.com/css2?family=Unbounded:wght@200..900&display=swap);
@import url(https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&family=Unbounded:wght@200..900&display=swap);
* {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    outline: none;
}

body {
    font-family:
            Open Sans,
            sans-serif;
    font-size: 16px;
    line-height: 156%;
    color: #19191a;
    margin: 0;
}
@media (max-width: 575px) {
    body {
        line-height: 144%;
    }
}

a {
    color: #5728fe;
    font-weight: 700;
    text-decoration: none;
    -webkit-transition: color 0.3s ease;
    transition: color 0.3s ease;
}

h1,
h2 {
    font-family: Unbounded;
}

h1,
h2,
h3,
h4 {
    margin: 24px 0 16px 0;
}

h1 {
    font-size: 38px;
    font-weight: 500;
    line-height: 140%;
}
@media (max-width: 575px) {
    h1 {
        font-size: 24px;
    }
}

h2 {
    font-size: 28px;
    font-weight: 500;
    line-height: 140%;
}
@media (max-width: 575px) {
    h2 {
        font-size: 20px;
    }
}

h3 {
    font-size: 20px;
    font-weight: 700;
    line-height: normal;
}
@media (max-width: 575px) {
    h3 {
        font-size: 16px;
        font-weight: 700;
        line-height: 128%;
    }
}

h4 {
    font-size: 16px;
    font-weight: 700;
    line-height: normal;
}
@media (max-width: 575px) {
    h4 {
        font-size: 14px;
        font-weight: 700;
    }
}

h5 {
    font-size: 14px;
    font-weight: 700;
    line-height: normal;
}

ul {
    list-style-image: url("../images/icons/ul-item-icon.svg");
    padding-left: 28px;
}
ul li:not(:last-of-type) {
    margin-bottom: 12px;
}

ol {
    list-style: none;
    counter-reset: li;
    padding-left: 28px;
}
ol li {
    position: relative;
    padding-left: 40px;
}
ol li:not(:last-of-type) {
    margin-bottom: 12px;
}
@media (max-width: 575px) {
    ol li {
        padding-left: 8px;
    }
}
ol li::before {
    position: absolute;
    left: -30px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 50px;
    height: 34px;
    background: #d3ff24;
    border-radius: 12px;
    font-weight: 700;
    counter-increment: li;
    content: counter(li);
}
@media (max-width: 575px) {
    ol li::before {
        width: 25px;
        height: 25px;
        border-radius: 8px;
        font-size: 14px;
    }
}

.table-wrapper {
    width: 100%;
    margin: 20px 0;
    overflow-x: auto;
    border-radius: 12px;
    border: 1px solid #e8e8ed;
    -webkit-box-shadow: 2px 4px 18px 0px rgba(162, 170, 172, 0.16);
    box-shadow: 2px 4px 18px 0px rgba(162, 170, 172, 0.16);
}

table {
    width: 100%;
    border-collapse: collapse;
}
@media (max-width: 575px) {
    table {
        font-size: 14px;
    }
}
table th {
    padding: 20px 16px;
    background: #f9f9f9;
    text-align: left;
    border-bottom: 1px solid #e8e8ed;
}
table th:not(:last-of-type) {
    border-right: 1px solid #e8e8ed;
}
@media (max-width: 575px) {
    table th {
        padding: 8px 12px;
    }
}
table td {
    padding: 20px 16px;
    border-bottom: 1px solid #e8e8ed;
}
table td:not(:last-of-type) {
    border-right: 1px solid #e8e8ed;
}
@media (max-width: 575px) {
    table td {
        padding: 8px 12px;
    }
}
table tr:last-of-type td {
    border-bottom: none;
}

.container {
    max-width: 1352px;
    width: 100%;
    margin: 0 auto;
    padding: 0 16px;
}

.content {
    max-width: 970px;
    margin-bottom: 48px;
}
.content img {
    max-width: 100%;
    max-height: 550px;
    border-radius: 10px;
}
@media (max-width: 767px) {
    .content img {
        max-height: 400px;
    }
}
@media (max-width: 575px) {
    .content img {
        max-height: 300px;
    }
}
@media (max-width: 390px) {
    .content img {
        max-height: 200px;
    }
}

.d-none {
    display: none;
}

.overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 100%;
    height: 100px;
    background: -webkit-gradient(
            linear,
            left top,
            left bottom,
            color-stop(-6.73%, rgba(255, 255, 255, 0)),
            color-stop(32.25%, rgba(255, 255, 255, 0.75)),
            color-stop(60.1%, rgba(255, 255, 255, 0.88)),
            color-stop(93.84%, #fff)
    );
    background: linear-gradient(
            180deg,
            rgba(255, 255, 255, 0) -6.73%,
            rgba(255, 255, 255, 0.75) 32.25%,
            rgba(255, 255, 255, 0.88) 60.1%,
            #fff 93.84%
    );
}
@media (max-width: 575px) {
    .overlay {
        height: 70px;
    }
}
.overlay__button {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: #fff;
    border: 1px solid #e8e8ed;
    border-radius: 8px;
    cursor: pointer;
}
@media (max-width: 575px) {
    .overlay__button {
        width: 36px;
        height: 36px;
    }
}

.tooltip {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: relative;
}
.tooltip__button {
    width: 16px;
    height: 16px;
    background-image: url("../images/icons/tooltip-icon.png");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    border: none;
    background-color: transparent;
    cursor: pointer;
}
.tooltip__content {
    opacity: 0;
    visibility: hidden;
    position: absolute;
    padding: 16px;
    background: #fff;
    border: 2px solid #f3f3f3;
    border-radius: 10px;
    -webkit-box-shadow: 2px 4px 20px 0px rgba(142, 155, 158, 0.24);
    box-shadow: 2px 4px 20px 0px rgba(142, 155, 158, 0.24);
    font-size: 14px;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    z-index: 10;
}
.tooltip:hover .tooltip__content {
    opacity: 1;
    visibility: visible;
}
@media (max-width: 575px) {
    .tooltip__content {
        padding: 12px;
    }
}

blockquote {
    position: relative;
    width: 100%;
    margin: 20px 0;
    padding: 20px 24px;
    background-color: #f9f9f9;
    border-radius: 10px;
}
@media (max-width: 575px) {
    blockquote {
        padding: 16px 8px;
    }
}
blockquote::before {
    content: url("../images/main-reviews-icon1.svg");
    position: absolute;
    bottom: -30px;
    left: -25px;
}
@media (max-width: 1079px) {
    blockquote::before {
        bottom: -15px;
        left: -5px;
    }
}
blockquote::after {
    content: url("../images/main-reviews-icon2.svg");
    position: absolute;
    top: -25px;
    right: -25px;
}
@media (max-width: 1079px) {
    blockquote::after {
        top: -15px;
        right: -5px;
    }
}

.pros-cons {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    gap: 36px;
    margin: 20px 0;
}
@media (max-width: 575px) {
    .pros-cons {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        gap: 16px;
        margin: 16px 0;
    }
}
.pros-cons__col {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
}
.pros-cons__col_pros ul {
    list-style-image: url("../images/icons/pros-icon.png");
}
.pros-cons__col_cons ul {
    list-style-image: url("../images/icons/cons-icon.png");
}
.pros-cons__title {
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    padding: 6px 12px;
    border-radius: 12px;
    font-weight: 700;
    color: #fff;
}
@media (max-width: 575px) {
    .pros-cons__title {
        font-size: 14px;
    }
}
.pros-cons__col_pros .pros-cons__title {
    background: #09d937;
}
.pros-cons__col_cons .pros-cons__title {
    background: #f85f4a;
}

.table-button {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    padding: 8px 24px;
    background: #fff;
    border: 2px solid #5728fe;
    border-radius: 8px;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    font-size: 14px;
}
.table-button:hover {
    background: #5728fe;
    color: #fff;
}
@media (max-width: 575px) {
    .table-button {
        padding: 4px 12px;
    }
}

.rank-math-breadcrumb {
    margin-bottom: 24px;
    font-size: 14px;
}
@media (max-width: 575px) {
    .rank-math-breadcrumb {
        margin-bottom: 16px;
    }
}
.rank-math-breadcrumb p {
    margin: 0;
}
.rank-math-breadcrumb span {
    padding: 0 6px;
}
.rank-math-breadcrumb a {
    font-weight: 400;
    color: #868895;
}

.grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 48px;
}
@media (max-width: 1079px) {
    .grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 767px) {
    .grid {
        grid-template-columns: repeat(1, 1fr);
    }
}
@media (max-width: 575px) {
    .grid {
        gap: 16px;
    }
}
.grid-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    gap: 8px;
    min-height: 200px;
    padding: 24px 20px;
    background: #fff;
    border: 1px solid #e8e8ed;
    border-radius: 12px;
    -webkit-box-shadow: 2px 4px 18px 0px rgba(162, 170, 172, 0.16);
    box-shadow: 2px 4px 18px 0px rgba(162, 170, 172, 0.16);
}
@media (max-width: 575px) {
    .grid-item {
        gap: 20px;
        min-height: auto;
        padding: 16px 12px;
    }
}
.grid-item__link {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: #5728fe;
    border-radius: 8px;
    color: #fff;
}
@media (max-width: 575px) {
    .grid-item__link {
        width: 100%;
        padding: 10px 24px;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        font-size: 14px;
    }
}
.grid-item__link img {
    width: 20px;
    height: 20px;
}
@media (max-width: 575px) {
    .grid-item__link img {
        margin-top: 2px;
    }
}
.grid-item__title {
    font-size: 20px;
    font-weight: 700;
    line-height: normal;
}
@media (max-width: 575px) {
    .grid-item__title {
        font-size: 16px;
    }
}

.page-tabs {
    width: 100%;
    margin-bottom: 30px;
    border-bottom: 1px solid #e8e8ed;
}
.page-tabs__items {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 16px;
}
@media (max-width: 767px) {
    .page-tabs__items {
        gap: 12px;
    }
}
.page-tabs__item {
    position: relative;
    min-width: 160px;
    padding: 0 6px 12px 6px;
    text-align: center;
    color: #868895;
}
@media (max-width: 767px) {
    .page-tabs__item {
        min-width: auto;
        padding: 0 10px 10px;
        font-size: 14px;
    }
}
.page-tabs__item_active {
    color: #5728fe;
}
.page-tabs__item_active::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: #5728fe;
    border-radius: 12px 12px 0px 0px;
}
@media (max-width: 767px) {
    .page-tabs__item_active::after {
        height: 4px;
    }
}

.hidden-list__button {
    color: #5728fe;
    font-weight: 700;
    cursor: pointer;
}
.hidden-list_active .hidden-list__button {
    display: none;
}

.header {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    height: 80px;
    margin-bottom: 32px;
    z-index: 9;
}
@media (max-width: 575px) {
    .header {
        margin-bottom: 20px;
    }
}
.header::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 10px;
    height: 100%;
    background: #fff;
    -webkit-box-shadow: 0px 4px 16px 0px rgba(19, 31, 37, 0.06);
    box-shadow: 0px 4px 16px 0px rgba(19, 31, 37, 0.06);
}
@media (max-width: 575px) {
    .header {
        height: 52px;
    }
}
.header__container {
    max-width: 1352px;
    width: 100%;
    margin: 0 auto;
    padding: 0 16px;
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    height: 100%;
}
.header__wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    height: 100%;
}
@media (max-width: 1079px) {
    .header__wrapper {
        gap: 8px;
    }
}
.header__logo {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 204px;
    margin-right: 32px;
}
@media (max-width: 1279px) {
    .header__logo {
        width: 174px;
        margin-right: 16px;
    }
}
.header__logo img {
    width: 100%;
}
.header__search-button {
    display: none;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: #d3ff24;
    border: none;
    border-radius: 8px;
    cursor: pointer;
}
@media (max-width: 1079px) {
    .header__search-button {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }
}
.header__menu-button {
    display: none;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: #5728fe;
    border: none;
    border-radius: 8px;
    cursor: pointer;
}
@media (max-width: 767px) {
    .header__menu-button {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }
}
.header__menu-button-icon {
    display: none;
}
.header__menu-button-icon_active {
    display: block;
}
.header-search {
    position: relative;
    width: 400px;
    height: 36px;
}
@media (max-width: 1279px) {
    .header-search {
        width: 280px;
    }
}
@media (max-width: 1079px) {
    .header-search {
        display: none;
        width: calc(100% - 32px);
        position: absolute;
        top: 90px;
        right: 16px;
    }
}
@media (max-width: 575px) {
    .header-search {
        top: 60px;
    }
}
.header-search__input {
    width: 100%;
    height: 100%;
    padding: 0 12px;
    background: #fff;
    border: 1px solid #f3f3f3;
    border-radius: 8px;
    -webkit-box-shadow: 2px 4px 8px 0px rgba(19, 31, 37, 0.04);
    box-shadow: 2px 4px 8px 0px rgba(19, 31, 37, 0.04);
}
.header-search__input::-webkit-input-placeholder {
    color: #868895;
    font-size: 14px;
}
.header-search__input::-moz-placeholder {
    color: #868895;
    font-size: 14px;
}
.header-search__input:-ms-input-placeholder {
    color: #868895;
    font-size: 14px;
}
.header-search__input::-ms-input-placeholder {
    color: #868895;
    font-size: 14px;
}
.header-search__input::placeholder {
    color: #868895;
    font-size: 14px;
}
.header-search__button {
    position: absolute;
    top: 50%;
    right: 0;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: #d3ff24;
    border: none;
    border-radius: 8px;
    cursor: pointer;
}
.header-menu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 32px;
    height: 100%;
}
@media (max-width: 1079px) {
    .header-menu {
        gap: 16px;
    }
}
@media (max-width: 767px) {
    .header-menu {
        display: none;
        position: absolute;
        top: 90px;
        right: 0;
        width: calc(100% - 16px);
        height: auto;
        padding: 20px 16px;
        background: #f9f9f9;
        border: 1px solid #e8e8ed;
        border-radius: 12px 0px 0px 12px;
        -webkit-box-shadow: 2px 4px 18px 0px rgba(162, 170, 172, 0.16);
        box-shadow: 2px 4px 18px 0px rgba(162, 170, 172, 0.16);
    }
}
@media (max-width: 575px) {
    .header-menu {
        top: 60px;
    }
}
.header-menu-item {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    height: 100%;
}
.header-menu-item:hover .header-submenu,
.header-menu-item:hover .header-bigmenu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
@media (max-width: 767px) {
    .header-menu-item {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
    }
    .header-menu-item:not(:last-of-type) {
        margin-bottom: 16px;
        padding-bottom: 16px;
        border-bottom: 1px solid #e8e8ed;
    }
    .header-menu-item:hover .header-bigmenu-mobile {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }
}
.header-menu-item__link {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    height: 100%;
    color: #19191a;
}
.header-menu-item_with-submenu .header-menu-item__link,
.header-menu-item_with-bigmenu .header-menu-item__link {
    position: relative;
}
.header-menu-item_with-submenu .header-menu-item__link::after,
.header-menu-item_with-bigmenu .header-menu-item__link::after {
    content: url("../images/icons/arrow-icon.svg");
    width: 20px;
    height: 20px;
    margin-left: 6px;
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
}
.header-menu-item__link:hover {
    color: #5728fe;
}
.header-menu-item__link:hover::after {
    content: url("../images/icons/arrow-color-icon.svg");
    margin-top: 4px;
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
}
.header-submenu {
    display: none;
    position: absolute;
    top: 80px;
    z-index: -1;
}
@media (max-width: 767px) {
    .header-submenu {
        position: relative;
        top: auto;
        z-index: auto;
    }
}
.header-submenu__wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 16px;
    width: 280px;
    padding: 18px 20px;
    background: #fff;
    border-radius: 0px 0px 10px 10px;
    border: 2px solid #f3f3f3;
    -webkit-box-shadow: 2px 4px 20px 0px rgba(142, 155, 158, 0.24);
    box-shadow: 2px 4px 20px 0px rgba(142, 155, 158, 0.24);
}
@media (max-width: 767px) {
    .header-submenu__wrapper {
        width: 100%;
        padding: 20px 0 0 0;
        background: none;
        border: none;
        -webkit-box-shadow: none;
        box-shadow: none;
    }
}
.header-submenu-item__link {
    color: #19191a;
}
@media (max-width: 575px) {
    .header-submenu-item__link {
        font-size: 14px;
    }
}
.header-submenu-item__link:hover {
    color: #5728fe;
}
.header-bigmenu {
    position: absolute;
    top: 80px;
    left: -30px;
    display: none;
    width: 860px;
    height: 500px;
    background: #ffffff;
    border: 2px solid #f3f3f3;
    border-top: none;
    border-radius: 0px 0px 10px 10px;
    -webkit-box-shadow: 2px 4px 20px 0px rgba(142, 155, 158, 0.24);
    box-shadow: 2px 4px 20px 0px rgba(142, 155, 158, 0.24);
    z-index: -1;
}
@media (max-width: 1079px) {
    .header-bigmenu {
        width: 750px;
        left: -200px;
    }
}
@media (max-width: 767px) {
    .header-bigmenu {
        display: none;
    }
}
.header-bigmenu__sections {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 12px;
    width: 35%;
    padding: 24px 20px;
    background: #f9f9f9;
    border-radius: 0px 16px 16px 0px;
}
.header-bigmenu__sections-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    height: 46px;
    padding: 10px 20px;
    background: #fff;
    border: 2px solid #f3f3f3;
    border-radius: 8px;
    -webkit-box-shadow: 2px 4px 16px 0px rgba(190, 198, 200, 0.18);
    box-shadow: 2px 4px 16px 0px rgba(190, 198, 200, 0.18);
    cursor: pointer;
}
.header-bigmenu__sections-item_active {
    position: relative;
    color: #5728fe;
    font-weight: 700;
    border-color: #5728fe;
}
.header-bigmenu__sections-item_active::after {
    content: url("../images/icons/big-arrow-icon.svg");
    position: absolute;
    right: 16px;
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
}
.header-bigmenu__menu {
    display: none;
    margin: 0;
    padding: 24px 16px 0 16px;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    gap: 20px 0;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    height: -webkit-max-content;
    height: -moz-max-content;
    height: max-content;
}
.header-bigmenu__menu-wrapper {
    width: 65%;
    overflow: auto;
    border-left: none;
    border-radius: 0 8px 8px 0;
}
.header-bigmenu__menu-wrapper::-webkit-scrollbar-track {
    background: #fff;
}
.header-bigmenu__menu-wrapper::-webkit-scrollbar-thumb {
    border-radius: 6px;
    background-color: #5728fe;
}
.header-bigmenu__menu-wrapper::-webkit-scrollbar {
    width: 6px;
}
.header-bigmenu__menu-item {
    width: 49%;
}
.header-bigmenu__menu-link {
    display: block;
    color: #19191a;
    font-size: 16px;
    font-weight: 400;
    line-height: 160%;
}
.header-bigmenu__menu-link:hover {
    color: #5728fe;
}
.header-bigmenu__menu_active {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
.header-bigmenu-mobile {
    display: none;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 16px;
    padding-top: 20px;
}
.header-bigmenu-mobile-item__title {
    position: relative;
    font-size: 14px;
    font-weight: 700;
}
.header-bigmenu-mobile-item__title::after {
    content: url("../images/icons/arrow-icon.svg");
    position: absolute;
    width: 20px;
    height: 20px;
    margin-top: 2px;
    margin-left: 4px;
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
}
.header-bigmenu-mobile-item__title:hover::after {
    margin-top: 4px;
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
}
.header-bigmenu-mobile-item__title:hover + .header-bigmenu-mobile-item__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
.header-bigmenu-mobile-item__list {
    display: none;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 8px;
    padding-top: 6px;
}
.header-bigmenu-mobile-item__link {
    padding: 4px 8px;
    background: #fff;
    border: 1px solid #e8e8ed;
    border-radius: 6px;
    color: #19191a;
    font-size: 14px;
    font-weight: 400;
    line-height: 144%;
}

.footer {
    padding: 36px 0 48px 0;
    background: #3a3b44;
}
@media (max-width: 575px) {
    .footer {
        padding: 24px 0 32px 0;
    }
}
.footer__container {
    max-width: 1352px;
    width: 100%;
    margin: 0 auto;
    padding: 0 16px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 60px;
}
@media (max-width: 1079px) {
    .footer__container {
        gap: 32px;
    }
}
@media (max-width: 767px) {
    .footer__container {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        gap: 24px;
    }
}
.footer__wrapper {
    width: 280px;
}
@media (max-width: 1079px) {
    .footer__wrapper {
        width: 220px;
    }
}
@media (max-width: 767px) {
    .footer__wrapper {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        width: 100%;
    }
    .footer__wrapper .footer__text {
        display: none;
    }
}
.footer__logo {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    max-width: 280px;
    width: 100%;
    margin-bottom: 16px;
}
.footer__logo img {
    width: 100%;
}
.footer__text {
    margin-top: 14px;
    color: #868895;
    font-size: 14px;
    line-height: normal;
}
@media (max-width: 575px) {
    .footer__text {
        margin-top: 10px;
    }
}
.footer-socials {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}
@media (max-width: 767px) {
    .footer-socials {
        margin-bottom: 0;
    }
}
.footer-socials__link {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #fff;
}
.footer-menu {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
}
@media (max-width: 1079px) {
    .footer-menu {
        gap: 16px;
    }
}
@media (max-width: 575px) {
    .footer-menu {
        width: 100%;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        gap: 24px;
    }
}
.footer-menu__column {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 12px;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
}
.footer-menu__link {
    display: block;
    color: #fff;
    font-weight: 400;
}
.footer-menu__link:hover {
    color: #5728fe;
}
.footer__mobile-text {
    display: none;
}
@media (max-width: 767px) {
    .footer__mobile-text {
        display: block;
    }
}

.page-header {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-bottom: 48px;
    padding: 55px;
    background: #f9f9f9;
    border-radius: 20px;
}
.page-header.page-header_subject {
    padding: 40px 55px 30px 55px;
}
@media (max-width: 575px) {
    .page-header {
        margin-bottom: 32px;
        padding: 20px 8px 32px 8px;
    }
    .page-header.page-header_subject {
        padding: 29px 8px 12px 8px;
    }
}
.page-header__content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    max-width: 850px;
}
.page-header__title-wrapper {
    position: relative;
}
.page-header__title-wrapper::after {
    content: url("../images/main-title-bg.png");
    position: absolute;
    bottom: 30px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
}
@media (max-width: 575px) {
    .page-header__title-wrapper::after {
        content: url("../images/main-title-bg-mobile.png");
        bottom: 15px;
    }
}
@media (max-width: 390px) {
    .page-header__title-wrapper::after {
        bottom: 53px;
    }
}
.page-header_subject .page-header__title-wrapper::after {
    display: none;
}
@media (max-width: 575px) {
    .page-header__title-wrapper {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }
}
.page-header__title {
    position: relative;
    max-width: 460px;
    margin: 0 0 48px 0;
    text-align: center;
    line-height: 1.4;
    z-index: 1;
}
@media (max-width: 575px) {
    .page-header__title {
        max-width: 360px;
        margin: 0 0 24px 0;
    }
}
@media (max-width: 390px) {
    .page-header__title {
        max-width: 260px;
    }
}
.page-header_subject .page-header__title {
    max-width: 838px;
    margin: 0 0 9px 0;
}
.page-header__title-icon {
    position: absolute;
    top: -5px;
    left: -10px;
    width: 60px;
    height: 60px;
}
@media (max-width: 575px) {
    .page-header__title-icon {
        position: static;
        width: 32px;
        height: 32px;
    }
}
.page-header__description-wrapper {
    position: relative;
}
.page-header__description-wrapper .overlay {
    display: none;
    left: -8px;
    width: calc(100% + 16px);
}
.page-header__description p {
    margin-top: 1em;
    margin-bottom: 0;
}
.page-header__description p:not(:last-child) {
    margin-bottom: 1em;
}
.page-header__meta-wrapper  {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-top: 14px;
}
.page-meta {
    font-size: 14px;
    line-height: 1.28em;
}
.page-meta__date {
    color: #868895;
    border: 1px solid #E8E8ED;
    border-radius: 8px;
    padding: 4px 12px;
}
.page-meta__date span {
    color: #111111;
}
@media (max-width: 390px) {
    .page-header__description-wrapper .overlay {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }
}
.page-header__description {
    text-align: center;
}
@media (max-width: 390px) {
    .page-header__description {
        max-height: 140px;
        overflow: hidden;
    }
    .page-header__description_active {
        max-height: none;
        overflow: visible;
    }
}
.page-header-dropdown {
    position: relative;
    width: 100%;
    margin-top: 32px;
}
.page-header-dropdown__header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    gap: 16px;
    padding: 14px 20px;
    background: #fff;
    border: 2px solid #f3f3f3;
    border-radius: 10px;
    -webkit-box-shadow: 2px 4px 16px 0px rgba(190, 198, 200, 0.18);
    box-shadow: 2px 4px 16px 0px rgba(190, 198, 200, 0.18);
    cursor: pointer;
}
@media (max-width: 575px) {
    .page-header-dropdown__header {
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
        padding: 12px;
    }
}
.page-header-dropdown__title {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    font-size: 20px;
    font-weight: 700;
}
@media (max-width: 767px) {
    .page-header-dropdown__title {
        font-size: 16px;
    }
}
.page-header-dropdown__icon {
    -webkit-transition: rotate 0.2s ease;
    transition: rotate 0.2s ease;
    rotate: 180deg;
}
.page-header-dropdown_active .page-header-dropdown__icon {
    rotate: 0deg;
}
@media (max-width: 575px) {
    .page-header-dropdown__rating-icon {
        display: none;
    }
}
.page-header-dropdown__content {
    display: none;
    position: absolute;
    z-index: 1;
    top: 60px;
    gap: 16px;
    padding: 0 20px 14px 20px;
    background: #fff;
    border: 2px solid #f3f3f3;
    border-top: none;
    border-radius: 0 0 10px 10px;
    -webkit-box-shadow: 2px 4px 16px 0px rgba(190, 198, 200, 0.18);
    box-shadow: 2px 4px 16px 0px rgba(190, 198, 200, 0.18);
    font-size: 14px;
}
.page-header-dropdown_active .page-header-dropdown__content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
@media (max-width: 767px) {
    .page-header-dropdown__content {
        top: 75px;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        gap: 8px;
    }
}
@media (max-width: 575px) {
    .page-header-dropdown__content {
        top: 65px;
        padding: 0 12px 12px;
        font-size: 14px;
    }
}
@media (max-width: 390px) {
    .page-header-dropdown__content {
        top: 85px;
    }
}
.page-header-dropdown__list {
    min-width: 320px;
}
@media (max-width: 767px) {
    .page-header-dropdown__list {
        min-width: auto;
    }
}
.page-header-reviews {
    position: absolute;
    top: 30px;
    right: 30px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 130px;
    padding: 6px;
    border-radius: 10px;
    background: #fff;
    border: 3px solid #d3ff24;
}
@media (max-width: 1079px) {
    .page-header-reviews {
        position: relative;
        top: auto;
        right: auto;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row;
        gap: 4px;
        width: auto;
        margin-top: 20px;
        padding: 8px 10px;
    }
}
@media (max-width: 575px) {
    .page-header-reviews {
        border-width: 2px;
    }
}
.page-header-reviews::before {
    content: url("../images/main-reviews-icon1.svg");
    position: absolute;
    bottom: -30px;
    left: -25px;
}
.page-header-reviews::after {
    content: url("../images/main-reviews-icon2.svg");
    position: absolute;
    top: -25px;
    right: -25px;
}
.page-header-reviews__text {
    font-size: 14px;
}
.page-header-reviews__value {
    color: #5728fe;
    font-size: 20px;
    font-weight: 700;
}
@media (max-width: 575px) {
    .page-header-reviews__value {
        font-size: 16px;
    }
}
.page-header-reviews .tooltip {
    position: absolute;
    top: 3px;
    right: 6px;
}
@media (max-width: 1079px) {
    .page-header-reviews .tooltip {
        position: relative;
        top: auto;
        right: auto;
    }
}
.page-header-reviews .tooltip__content {
    min-width: 290px;
    right: 0;
}
@media (max-width: 575px) {
    .page-header-reviews .tooltip__content {
        bottom: 35px;
        right: -30px;
    }
}

.schools-table {
    margin-bottom: 48px;
}
@media (max-width: 1079px) {
    .schools-table {
        overflow: hidden;
    }
}
.schools-table__title-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 24px;
    margin-bottom: 16px;
}
@media (max-width: 575px) {
    .schools-table__title-wrapper {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
        gap: 8px;
    }
}
.schools-table__title {
    margin: 0;
}
.schools-table__date {
    color: #868895;
    font-size: 14px;
    line-height: 152%;
}
.schools-table__date span {
    color: #19191a;
}
.schools-table-categories {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 12px;
    overflow: auto;
    padding-bottom: 10px;
    margin-bottom: 20px;
}
@media (max-width: 575px) {
    .schools-table-categories {
        gap: 8px;
        margin-bottom: 14px;
    }
}
.schools-table-categories__link {
    min-width: -webkit-max-content;
    min-width: -moz-max-content;
    min-width: max-content;
    padding: 8px 24px;
    background: #fff;
    border: 2px solid #e8e8ed;
    border-radius: 8px;
    color: #868895;
    font-weight: 400;
}
@media (max-width: 575px) {
    .schools-table-categories__link {
        padding: 6px 12px;
        font-size: 14px;
        line-height: normal;
    }
}
.schools-table-categories__link_active,
.schools-table-categories__link:hover {
    border-color: #5728fe;
    color: #5728fe;
    font-weight: 700;
}
.schools-table-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 16px;
    width: 100%;
    background: #f9f9f9;
    border: 1px solid #e8e8ed;
    border-radius: 12px;
    -webkit-box-shadow: 2px 4px 18px 0px rgba(162, 170, 172, 0.16);
    box-shadow: 2px 4px 18px 0px rgba(162, 170, 172, 0.16);
}
@media (max-width: 1079px) {
    .schools-table-list {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 767px) {
    .schools-table-list {
        grid-template-columns: repeat(1, 1fr);
    }
}
.schools-table-item {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 16px;
    padding: 8px 16px;
    background: #fff;
    border-top: 1px solid #e8e8ed;
    border-bottom: 1px solid #e8e8ed;
}
@media (max-width: 1079px) {
    .schools-table-item {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
    }
}
@media (max-width: 575px) {
    .schools-table-item {
        padding: 16px 8px;
    }
}
.schools-table-item:first-of-type {
    border-top: none;
    border-radius: 12px 12px 0 0;
}
.schools-table-item:last-of-type {
    border-bottom: none;
    border-radius: 0 0 12px 12px;
}
.schools-table-item__label {
    position: absolute;
    top: -12px;
    left: 10px;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    padding: 6px 20px;
    border-radius: 10px;
    background: #d3ff24;
    font-size: 14px;
}
@media (max-width: 575px) {
    .schools-table-item__label {
        left: auto;
        top: -15px;
        right: 10px;
        padding: 4px 12px;
    }
}
.schools-table-item__logo-wrapper {
    display: block;
    width: 200px;
    height: 100px;
}
@media (max-width: 1279px) {
    .schools-table-item__logo-wrapper {
        width: 170px;
    }
}
@media (max-width: 390px) {
    .schools-table-item__logo-wrapper {
        width: 110px;
        height: 64px;
    }
}
.schools-table-item__logo {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    border-radius: 8px;
}
@media (max-width: 1279px) {
    .schools-table-item__logo {
        border-radius: 6px;
    }
}
.schools-table-item__info-wrapper {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    gap: 16px;
}
@media (max-width: 1279px) {
    .schools-table-item__info-wrapper {
        padding-top: 30px;
        gap: 8px;
    }
}
.schools-table-item__info {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    gap: 6px;
}
.schools-table-item__name {
    font-size: 20px;
    font-weight: 700;
    line-height: normal;
    color: #19191a;
}
@media (max-width: 1184px) {
    .schools-table-item__name {
        font-size: 16px;
    }
}
@media (max-width: 575px) {
    .schools-table-item__name {
        position: absolute;
        top: 0;
        left: 0;
    }
}
.schools-table-item__reviews {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-size: 14px;
}
.schools-table-item__reviews img {
    width: 16px;
    height: 16px;
    margin-right: 6px;
}
.schools-table-item__wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 8px;
}
@media (max-width: 1184px) {
    .schools-table-item__wrapper {
        width: 100%;
    }
}
.schools-table-item__price {
    font-weight: 700;
}
.schools-table-item__price span {
    font-weight: 400;
    color: #868895;
}
.schools-table-item__link {
    padding: 10px 28px;
    background: #5728fe;
    font-weight: 700;
    color: #fff;
    border-radius: 8px;
    text-align: center;
}
@media (max-width: 1184px) {
    .schools-table-item__link {
        padding: 10px 12px;
    }
}
@media (max-width: 1184px) {
    .schools-table-item__link {
        width: 100%;
    }
}
@media (max-width: 575px) {
    .schools-table-item__link {
        font-size: 14px;
    }
}
@media (max-width: 575px) {
    .schools-table-item__more {
        font-size: 14px;
    }
}
.schools-table-item-rating {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 8px;
}
.schools-table-item-rating__stars {
    height: 22px;
}
@media (max-width: 1184px) {
    .schools-table-item-rating__stars img:not(:first-of-type) {
        display: none;
    }
}
.schools-table-item-rating__value {
    font-weight: 700;
    line-height: normal;
}
.schools-table-item-rating__value span {
    font-size: 14px;
    font-weight: 400;
    color: #868895;
}
.schools-table-item-rating .tooltip__button {
    background-image: url("../images/icons/tooltip-color-icon.png");
}
.schools-table-item-rating .tooltip__content {
    width: 450px;
    bottom: 20px;
    left: -100px;
}
@media (max-width: 1079px) {
    .schools-table-item:nth-of-type(2n) .schools-table-item-rating .tooltip__content {
        left: auto;
        right: -50px;
    }
}
@media (max-width: 767px) {
    .schools-table-item-rating .tooltip__content {
        width: 350px;
        left: auto !important;
        right: -100px !important;
    }
}
@media (max-width: 575px) {
    .schools-table-item-rating .tooltip__content {
        width: 300px;
        right: -50px !important;
    }
}
@media (max-width: 390px) {
    .schools-table-item-rating .tooltip__content {
        width: 280px;
        right: -80px !important;
    }
}
.schools-table-item-features {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 4px;
    max-width: 310px;
}
@media (max-width: 1279px) {
    .schools-table-item-features {
        max-width: 240px;
    }
}
@media (max-width: 1184px) {
    .schools-table-item-features {
        max-width: none;
    }
}
.schools-table-item-features__item {
    font-size: 14px;
    line-height: 152%;
}
.schools-table-item-features__item::before {
    content: url("../images/icons/check-icon.svg");
    position: relative;
    top: 4px;
}
.schools-table-item-props {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 8px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    max-width: 280px;
}
@media (max-width: 1184px) {
    .schools-table-item-props {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        width: 100%;
        max-width: none;
    }
}
@media (max-width: 575px) {
    .schools-table-item-props {
        gap: 4px;
    }
}
.schools-table-item-props__item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    gap: 3px;
    padding: 6px;
    background: #f9f9f9;
    border: 1px solid #e8e8ed;
    border-radius: 8px;
    font-size: 14px;
}
@media (max-width: 1079px) {
    .schools-table-item-props__item {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        gap: 8px;
    }
}
@media (max-width: 575px) {
    .schools-table-item-props__item {
        gap: 4px;
    }
}
@media (max-width: 390px) {
    .schools-table-item-props__item {
        font-size: 12px;
    }
}
.schools-table-item-props__item img {
    width: 16px;
    height: 16px;
}

.school {
    position: relative;
    width: 100%;
    background: #fff;
    border: 1px solid #e8e8ed;
    border-radius: 12px;
    -webkit-box-shadow: 2px 4px 18px 0px rgba(162, 170, 172, 0.16);
    box-shadow: 2px 4px 18px 0px rgba(162, 170, 172, 0.16);
}
.school__content {
    padding: 20px;
}
@media (max-width: 575px) {
    .school__content {
        padding: 16px 8px;
    }
}
.school__header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 16px;
}
.school__body {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #e8e8ed;
}
@media (max-width: 575px) {
    .school__body {
        padding-top: 0;
        border: none;
    }
}
.school__logo-wrapper {
    display: block;
    width: 280px;
    height: 170px;
}
@media (max-width: 1279px) {
    .school__logo-wrapper {
        width: 250px;
        height: 160px;
    }
}
@media (max-width: 1184px) {
    .school__logo-wrapper {
        display: none;
    }
}
.school__logo {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    border-radius: 8px;
}
.school__info {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
}
.school__info-header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 20px;
    margin-bottom: 12px;
}
.school__info-header-title, h2.school__info-header-title {
    font-family: Open Sans, sans-serif;
    font-size: 20px;
    font-weight: 700;
    margin: 0;
    padding: 0;
}
@media (max-width: 575px) {
    .school__info-header {
        margin-bottom: 8px;
    }
}
.school__info-footer {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 16px;
}
@media (max-width: 1184px) {
    .school__info-footer {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }
}
@media (max-width: 575px) {
    .school__info-footer {
        gap: 16px 8px;
    }
}
.school__info-logo-wrapper {
    width: 255px;
    height: 160px;
}
@media (min-width: 1184px) {
    .school__info-logo-wrapper {
        display: none;
    }
}
@media (max-width: 575px) {
    .school__info-logo-wrapper {
        width: 150px;
        height: 90px;
    }
}
@media (max-width: 390px) {
    .school__info-logo-wrapper {
        width: 104px;
        height: 70px;
    }
}
.school__name {
    font-size: 20px;
    font-weight: 700;
    color: #19191a;
}
@media (max-width: 575px) {
    .school__info-header-title, h2.school__info-header-title {
        font-size: 16px;
    }
    .school__name {
        font-size: 16px;
    }
}
.school__label {
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    padding: 6px 20px;
    border-radius: 10px;
    background: #d3ff24;
    font-size: 14px;
}
@media (max-width: 767px) {
    .school__label {
        position: absolute;
        top: -14px;
        right: 10px;
    }
}
@media (max-width: 575px) {
    .school__label {
        padding: 2px 12px;
    }
}
.school__links {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 16px;
}
@media (max-width: 767px) {
    .school__links {
        width: 100%;
    }
}
@media (max-width: 575px) {
    .school__links {
        gap: 8px;
    }
}
.school__link {
    width: 100%;
    text-align: center;
    padding: 10px 24px;
    background: #5728fe;
    border: 2px solid #5728fe;
    border-radius: 8px;
    color: #fff;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.school__link:last-of-type {
    background: #fff;
    color: #5728fe;
}
.school__link:last-of-type:hover {
    background: #5728fe;
    color: #fff;
}
@media (max-width: 575px) {
    .school__link {
        font-size: 14px;
    }
}
.school-our-rating {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    max-width: 270px;
    gap: 10px;
    padding: 24px 16px;
    background: #3a3b44;
    border-radius: 8px;
    color: #fff;
}
@media (max-width: 767px) {
    .school-our-rating {
        max-width: none;
        -webkit-box-flex: 1;
        -ms-flex: 1;
        flex: 1;
    }
}
@media (max-width: 575px) {
    .school-our-rating {
        gap: 4px;
        padding: 8px;
        font-size: 14px;
    }
}
.school-our-rating__title {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 6px;
    width: 100%;
    font-weight: 700;
}
@media (max-width: 390px) {
    .school-our-rating__title {
        gap: 2px;
    }
}
.school-our-rating__value {
    color: rgba(255, 255, 255, 0.64);
}
@media (max-width: 575px) {
    .school-our-rating__value {
        margin-right: 6px;
    }
}
@media (max-width: 390px) {
    .school-our-rating__value {
        margin-right: 0;
    }
}
.school-our-rating__value span {
    color: #fff;
    font-family: "Unbounded", sans-serif;
    font-size: 24px;
}
@media (max-width: 575px) {
    .school-our-rating__value span {
        font-size: 18px;
    }
}
@media (max-width: 390px) {
    .school-our-rating__value span {
        font-size: 16px;
    }
}
@media (max-width: 575px) {
    .school-our-rating__stars {
        margin-top: 4px;
    }
}
.school-our-rating__stars img {
    width: 24px;
    height: 24px;
}
@media (max-width: 575px) {
    .school-our-rating__stars img {
        width: 16px;
        height: 16px;
    }
}
.school-our-rating__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 8px;
}
.school-our-rating__list-title {
    font-size: 14px;
    font-weight: 700;
    margin: 12px 0;
}
.school-our-rating__item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 14px;
}
@media (max-width: 575px) {
    .school-our-rating__item {
        gap: 8px;
    }
}
.school-our-rating__item-value {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 53px;
    height: 31px;
    background-color: #d3ff24;
    border-radius: 10px;
    font-weight: 700;
}
.school-our-rating .tooltip__content {
    bottom: 55px;
    left: -250px;
    width: 500px;
    color: #19191a;
    font-weight: 400;
}
@media (max-width: 1079px) {
    .school-our-rating .tooltip__content {
        width: 450px;
    }
}
@media (max-width: 767px) {
    .school-our-rating .tooltip__content {
        width: 400px;
        bottom: 40px;
        left: auto;
        right: -50px;
    }
}
@media (max-width: 575px) {
    .school-our-rating .tooltip__content {
        width: 300px;
        right: 0;
    }
}
@media (max-width: 390px) {
    .school-our-rating .tooltip__content {
        right: -30px;
    }
}
.school-rating {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 14px;
    max-width: 420px;
    max-height: 120px;
    padding: 8px 16px;
    background-color: #f9f9f9;
    border: 1px solid #e8e8ed;
    border-radius: 8px;
}
@media (max-width: 1279px) {
    .school-rating {
        max-height: none;
    }
}
@media (max-width: 1079px) {
    .school-rating {
        max-width: 60%;
    }
}
@media (max-width: 767px) {
    .school-rating {
        max-width: none;
    }
}
@media (max-width: 575px) {
    .school-rating {
        gap: 14px 24px;
        padding: 0 4px;
        background: none;
        border: none;
    }
}
.school-rating__item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    max-width: 118px;
}
.school-rating__logo {
    width: 118px;
    margin-bottom: 4px;
}
.school-rating__value {
    margin-right: 2px;
    font-size: 14px;
    font-weight: 700;
    line-height: normal;
}
.school-rating__value span {
    font-weight: 400;
    color: #868895;
}
.school-rating__stars {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.school-props {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px 50px;
}
@media (max-width: 1079px) {
    .school-props {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px 20px;
    }
}
@media (max-width: 767px) {
    .school-props {
        grid-template-columns: repeat(1, 1fr);
    }
}
@media (max-width: 575px) {
    .school-props {
        gap: 8px;
    }
}
.school-props-item {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    font-size: 14px;
}
.school-props-item::after {
    content: "";
    position: absolute;
    bottom: 6px;
    width: 100%;
    height: 1px;
    border-top: 1px dashed #d4d4da;
}
@media (max-width: 575px) {
    .school-props-item {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
        gap: 2px;
    }
    .school-props-item::after {
        display: none;
    }
}
.school-props-item__title {
    position: relative;
    z-index: 1;
    background: #fff;
    padding-right: 4px;
    color: #868895;
}
.school-props-item__value {
    width: 35%;
    position: relative;
    padding-left: 4px;
    background: #fff;
    z-index: 1;
}
@media (max-width: 575px) {
    .school-props-item__value {
        padding-left: 0;
    }
}
.school-props-item__icon {
    position: relative;
    top: 2px;
    width: 14px;
    height: 14px;
    rotate: 90deg;
}
.school-sections-item {
    border-top: 1px solid #e8e8ed;
    background: #f9f9f9;
}
.school-sections-item:last-of-type {
    border-radius: 0 0 12px 12px;
}
.school-sections-item__header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    gap: 8px;
    padding: 16px 20px;
}
@media (max-width: 575px) {
    .school-sections-item__header {
        padding: 12px 8px;
    }
}
.school-sections-item__content {
    background: #fff;
    border-radius: 0 0 12px 12px;
}
.school-sections-item__title {
    font-weight: 700;
}
.school-sections-item__button {
    width: 32px;
    height: 32px;
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
}
.school-sections-item__button img {
    rotate: 180deg;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.school-sections-item_active .school-sections-item__button img {
    rotate: 0deg;
}
.school-sections-table {
    position: relative;
    max-height: 400px;
    overflow: hidden;
}
@media (max-width: 767px) {
    .school-sections-table {
        max-height: 600px;
    }
}
.school-sections-table_active {
    max-height: none !important;
}
.school-sections-table table {
    width: 100%;
    border-collapse: collapse;
}
@media (max-width: 1079px) {
    .school-sections-table table {
        font-size: 14px;
    }
}
@media (max-width: 767px) {
    .school-sections-table table {
        display: none;
    }
}
.school-sections-table th {
    padding: 12px 22px;
    font-size: 14px;
    font-weight: 400;
    text-align: left;
    color: #868895;
}
@media (max-width: 1079px) {
    .school-sections-table th {
        padding: 12px;
    }
}
.school-sections-table td {
    padding: 20px 22px;
    border-top: 1px solid #e8e8ed;
}
@media (max-width: 1079px) {
    .school-sections-table td {
        padding: 12px;
    }
}
.school-sections-table td:last-of-type {
    width: 200px;
}
@media (min-width: 767px) {
    .school-sections-table-list {
        display: none;
    }
}
.school-sections-table-item {
    padding: 12px 8px;
    border-top: 1px solid #e8e8ed;
    font-size: 14px;
}
.school-sections-table-item__title {
    margin-bottom: 6px;
    font-weight: 700;
}
.school-sections-table-item__features {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 8px;
    line-height: normal;
}
.school-sections-table-item__prop {
    color: #868895;
}
.school-sections-table .overlay__button {
    background-color: #f9f9f9;
}
.school-sections-table .overlay__button img {
    width: 22px;
    height: 22px;
}
.school-sections-reviews {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 20px;
}
@media (max-width: 575px) {
    .school-sections-reviews {
        padding: 16px 8px;
    }
}
.school-sections-reviews-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}
@media (max-width: 1079px) {
    .school-sections-reviews-list {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 575px) {
    .school-sections-reviews-list {
        grid-template-columns: repeat(1, 1fr);
        gap: 12px;
    }
}
.school-sections-reviews-item {
    position: relative;
    height: 214px;
    overflow: hidden;
    padding: 16px 12px;
    background: #fff;
    border: 1px solid #f3f3f3;
    border-radius: 10px;
    -webkit-box-shadow: 2px 4px 12px 0px rgba(190, 198, 200, 0.12);
    box-shadow: 2px 4px 12px 0px rgba(190, 198, 200, 0.12);
    font-size: 14px;
}
@media (max-width: 575px) {
    .school-sections-reviews-item {
        padding: 16px 8px;
    }
}
.school-sections-reviews-item_active {
    height: auto;
}
.school-sections-reviews-item__header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    gap: 8px;
}
.school-sections-reviews-item__name {
    font-weight: 700;
}
.school-sections-reviews-item__date {
    color: #868895;
}
.school-sections-reviews-item__text {
    line-height: normal;
}
.school-sections-reviews-item .overlay {
    display: none;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    padding-bottom: 12px;
}
.school-sections-reviews-item .overlay__button {
    width: 36px;
    height: 36px;
    margin-top: 12px;
}
.school-sections-reviews__link {
    display: block;
    margin-top: 16px;
}
.school-sections-info {
    padding: 1px 20px 20px;
}
@media (max-width: 575px) {
    .school-sections-info {
        padding: 1px 8px 16px 8px;
    }
}
.school-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 36px;
    margin-bottom: 48px;
}

.directions {
    margin-bottom: 48px;
}
.directions-top {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 16px;
    margin-bottom: 32px;
}
@media (max-width: 1184px) {
    .directions-top {
        grid-template-columns: repeat(3, 1fr);
    }
}
@media (max-width: 767px) {
    .directions-top {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 575px) {
    .directions-top {
        grid-template-columns: repeat(1, 1fr);
        gap: 8px;
    }
}
.directions-top-item {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    gap: 16px;
    padding: 16px;
    border: 3px solid #5728fe;
    border-radius: 10px;
    color: #19191a;
}
@media (max-width: 575px) {
    .directions-top-item {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        padding: 12px;
        font-size: 14px;
    }
}
@media (max-width: 390px) {
    .directions-top-item {
        padding: 6px 10px;
    }
}
.directions-top-item__button {
    width: 44px;
    height: 44px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-item-align: end;
    align-self: flex-end;
    background: #5728fe;
    border: none;
    border-radius: 8px;
    cursor: pointer;
}
@media (max-width: 390px) {
    .directions-top-item__button {
        width: 36px;
        height: 36px;
    }
    .directions-top-item__button img {
        width: 20px;
        height: 20px;
    }
}
.directions-main {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 24px;
}
.directions-main-item__title {
    margin-bottom: 12px;
    font-size: 14px;
    font-weight: 700;
}
.directions-main-item__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 8px;
}
.directions-main-item__link {
    padding: 6px 16px;
    background: #f9f9f9;
    border: 1px solid #e8e8ed;
    border-radius: 8px;
    color: #19191a;
    font-weight: 400;
}
@media (max-width: 575px) {
    .directions-main-item__link {
        padding: 6px 8px;
        font-size: 14px;
    }
}

.faq {
    margin-bottom: 48px;
}
.faq__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 16px;
}
.faq__item {
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 10px;
    cursor: pointer;
}
@media (max-width: 575px) {
    .faq__item {
        padding: 16px 8px;
    }
}
.faq__question {
    position: relative;
}
.faq__question::after {
    content: url("../images/icons/big-arrow-icon.svg");
    position: absolute;
    top: 50%;
    right: 0;
    translate: 0 -50%;
    rotate: 180deg;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
@media (max-width: 575px) {
    .faq__question::after {
        top: -6px;
        translate: 0 0;
    }
}
.faq__item_open .faq__question::after {
    rotate: 0deg;
}
.faq__question p {
    margin: 0;
}
.faq__question-text {
    margin: 0 30px 0 0;
}
.faq__answer {
    margin-top: 16px;
}

.school-page-header {
    margin-bottom: 48px;
}
.school-page-header__title {
    margin-top: 0;
}
.school-page-header__content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 24px;
}
@media (max-width: 1079px) {
    .school-page-header__content {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }
}
@media (max-width: 1079px) {
    .school-page-header__content-left {
        -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
        order: 1;
    }
    .school-page-header__content-left .school-page-header__logo {
        display: none;
    }
}
.school-page-header__content-right {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}
.school-page-header__content-right .school-page-header__logo {
    display: none;
}
@media (max-width: 1079px) {
    .school-page-header__content-right .school-page-header__logo {
        display: block;
    }
}
.school-page-header__logo {
    width: 345px;
    height: 206px;
    margin-bottom: 24px;
    border-radius: 8px;
    -o-object-fit: cover;
    object-fit: cover;
}
@media (max-width: 1079px) {
    .school-page-header__logo {
        height: 180px;
        margin-bottom: 0;
    }
}
@media (max-width: 767px) {
    .school-page-header__logo {
        width: 280px;
        height: 150px;
    }
}
@media (max-width: 575px) {
    .school-page-header__logo {
        width: 160px;
        height: 90px;
    }
}
@media (max-width: 390px) {
    .school-page-header__logo {
        width: 104px;
        height: 70px;
    }
}
.school-page-header__link {
    display: block;
    width: 100%;
    padding: 10px 24px;
    background: #5728fe;
    border-radius: 8px;
    color: #fff;
    text-align: center;
}
.school-page-header__description-wrapper {
    position: relative;
    margin-bottom: 22px;
}
.school-page-header__description-wrapper .overlay {
    display: none;
    height: 70px;
}
.school-page-header__description-wrapper .overlay__button {
    width: 36px;
    height: 36px;
}
.school-page-header__description {
    max-height: 125px;
    overflow: hidden;
}
.school-page-header__description_active {
    max-height: none;
    overflow: visible;
}
.school-page-header__info {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 16px;
}
@media (max-width: 1079px) {
    .school-page-header__info {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }
}
@media (max-width: 575px) {
    .school-page-header__info {
        gap: 16px 8px;
    }
}
@media (max-width: 1079px) {
    .school-page-header__info .school-our-rating {
        -webkit-box-flex: 1;
        -ms-flex: 1;
        flex: 1;
        max-width: none;
    }
}
@media (max-width: 1079px) {
    .school-page-header__info .school-rating {
        max-width: none;
        width: 100%;
    }
}

.courses-table {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 48px;
}
.courses-table__wrapper {
    width: 100%;
    border: 1px solid #e8e8ed;
    border-radius: 12px;
    -webkit-box-shadow: 2px 4px 18px 0px rgba(162, 170, 172, 0.16);
    box-shadow: 2px 4px 18px 0px rgba(162, 170, 172, 0.16);
}
@media (max-width: 767px) {
    .courses-table__wrapper {
        display: none;
    }
}
.courses-table__link {
    margin-top: 24px;
    padding: 10px 32px;
    border: 2px solid #5728fe;
    border-radius: 10px;
    color: #5728fe;
    font-weight: 700;
    text-align: center;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.courses-table__link:hover {
    color: #fff;
    background: #5728fe;
}
@media (max-width: 390px) {
    .courses-table__link {
        width: 100%;
        margin-top: 20px;
    }
}
.courses-table table {
    width: 100%;
    border-collapse: collapse;
}
@media (max-width: 1079px) {
    .courses-table table {
        font-size: 14px;
    }
}
.courses-table th {
    padding: 12px 20px;
    font-size: 14px;
    text-align: left;
    background: #f9f9f9;
}
.courses-table th:first-of-type {
    border-radius: 12px 0 0 0;
}
.courses-table th:last-of-type {
    border-radius: 0 12px 0 0;
}
@media (max-width: 1079px) {
    .courses-table th {
        padding: 12px;
    }
}
.courses-table td {
    padding: 20px;
    border-top: 1px solid #e8e8ed;
}
@media (max-width: 1079px) {
    .courses-table td {
        padding: 12px;
    }
}
.courses-table td:first-of-type {
    font-weight: 700;
}
.courses-table td:last-of-type {
    width: 200px;
}
.courses-table-list {
    width: 100%;
}
@media (min-width: 767px) {
    .courses-table-list {
        display: none;
    }
}
.courses-table-item {
    padding: 12px 0;
    border-top: 1px solid #e8e8ed;
    font-size: 14px;
}
.courses-table-item:last-of-type {
    border-bottom: 1px solid #e8e8ed;
}
.courses-table-item__title {
    margin-bottom: 6px;
    font-weight: 700;
}
.courses-table-item__features {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 8px;
    line-height: normal;
}
.courses-table-item__prop {
    color: #868895;
}

.reviews-slider {
    margin-bottom: 48px;
}
.reviews-slider-wrapper {
    position: relative;
}
@media (max-width: 767px) {
    .reviews-slider {
        display: -webkit-box !important;
        display: -ms-flexbox !important;
        display: flex !important;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        gap: 20px;
    }
}
.reviews-slider-item {
    padding: 20px;
    background: #fff;
    border: 1px solid #f3f3f3;
    border-radius: 12px;
    -webkit-box-shadow: 2px 4px 18px 0px rgba(162, 170, 172, 0.16);
    box-shadow: 2px 4px 18px 0px rgba(162, 170, 172, 0.16);
}
@media (max-width: 767px) {
    .reviews-slider-item {
        padding: 16px 8px;
    }
}
@media (max-width: 575px) {
    .reviews-slider-item {
        padding: 14px 8px;
    }
}
.reviews-slider-item__stars {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 4px;
    margin-bottom: 12px;
}
.reviews-slider-item__stars img {
    width: 24px !important;
    height: 24px;
}
@media (max-width: 575px) {
    .reviews-slider-item__stars img {
        width: 20px !important;
        height: 20px;
    }
}
.reviews-slider-item__title {
    margin-bottom: 8px;
    font-weight: 700;
}
.reviews-slider-item__name {
    font-weight: 700;
}
.reviews-slider-item__date {
    color: #868895;
}
.reviews-slider-item__footer {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-top: 16px;
    font-size: 14px;
}
.reviews-slider-item__text-wrapper {
    position: relative;
    overflow: hidden;
    height: 300px;
}
.reviews-slider-item__text-wrapper_active {
    height: auto;
}
.reviews-slider-item .overlay {
    display: none;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    padding-bottom: 12px;
}
.reviews-slider-item .overlay__button {
    width: 36px;
    height: 36px;
    margin-top: 12px;
}
.reviews-slider__buttons {
    position: absolute;
    top: -40px;
    right: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 20px;
}
@media (max-width: 767px) {
    .reviews-slider__buttons {
        display: none;
    }
}
.reviews-slider__button {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background-image: url("../images/icons/big-arrow-icon.svg");
    background-position: center;
    background-color: transparent;
    border: none;
    cursor: pointer;
}
.reviews-slider__button_disabled {
    -webkit-filter: grayscale(1);
    filter: grayscale(1);
    opacity: 0.5;
}
.reviews-slider__button:first-of-type {
    rotate: -90deg;
}
.reviews-slider__button:last-of-type {
    rotate: 90deg;
}

.school-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    margin-bottom: 48px;
}
@media (max-width: 1079px) {
    .school-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 767px) {
    .school-grid {
        grid-template-columns: repeat(1, 1fr);
    }
}
.school-grid-item {
    padding: 20px;
    border-radius: 12px;
    border: 1px solid #e8e8ed;
    background: #fff;
    -webkit-box-shadow: 2px 4px 18px 0px rgba(162, 170, 172, 0.16);
    box-shadow: 2px 4px 18px 0px rgba(162, 170, 172, 0.16);
}
@media (max-width: 575px) {
    .school-grid-item {
        padding: 12px;
    }
}
.school-grid-item__logo-wrapper {
    display: block;
    width: 100%;
    height: 200px;
    margin-bottom: 16px;
}
.school-grid-item__logo-wrapper img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    border-radius: 8px;
}
@media (max-width: 575px) {
    .school-grid-item__logo-wrapper {
        height: 200px;
    }
}
@media (max-width: 390px) {
    .school-grid-item__logo-wrapper {
        height: 156px;
    }
}
.school-grid-item__title {
    display: block;
    margin-bottom: 10px;
    font-size: 20px;
    font-weight: 700;
    color: #19191a;
}
@media (max-width: 390px) {
    .school-grid-item__title {
        margin-bottom: 8px;
        font-size: 16px;
    }
}
.school-grid-item__footer {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 20px;
}
@media (max-width: 390px) {
    .school-grid-item__footer {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
        gap: 8px;
    }
}
.school-grid-item__reviews {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    line-height: normal;
}
.school-grid-item-rating {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 8px;
}
.school-grid-item-rating__stars {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 4px;
}
.school-grid-item-rating__stars img {
    width: 16px;
    height: 16px;
}
.school-grid-item-rating__value {
    font-weight: 700;
    line-height: normal;
}
.school-grid-item-rating__value span {
    font-size: 14px;
    font-weight: 400;
    color: #868895;
}
.school-grid-item-rating .tooltip__button {
    background-image: url("../images/icons/tooltip-color-icon.png");
}
.school-grid-item-rating .tooltip__content {
    width: 350px;
    bottom: 20px;
    left: -170px;
}
@media (max-width: 1184px) {
    .school-grid-item-rating .tooltip__content {
        width: 300px;
    }
}
@media (max-width: 767px) {
    .school-grid-item-rating .tooltip__content {
        left: -100px;
    }
}
@media (max-width: 575px) {
    .school-grid-item-rating .tooltip__content {
        left: -150px;
    }
}
@media (max-width: 390px) {
    .school-grid-item-rating .tooltip__content {
        left: -160px;
    }
}

.reviews-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 48px;
}
.reviews-list-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    background: #fff;
    border: 1px solid #e8e8ed;
    border-radius: 12px;
    -webkit-box-shadow: 2px 4px 18px 0px rgba(162, 170, 172, 0.16);
    box-shadow: 2px 4px 18px 0px rgba(162, 170, 172, 0.16);
}
@media (max-width: 767px) {
    .reviews-list-item {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        padding: 20px;
    }
}
@media (max-width: 575px) {
    .reviews-list-item {
        padding: 16px 8px;
    }
}
.reviews-list-item__left {
    width: 192px;
    padding: 20px;
    background: #f9f9f9;
    border-radius: 12px 0 0 12px;
}
@media (max-width: 767px) {
    .reviews-list-item__left {
        padding: 0;
        background: transparent;
    }
    .reviews-list-item__left .reviews-list-item__name,
    .reviews-list-item__left .reviews-list-item__date {
        display: none;
    }
}
.reviews-list-item__right {
    padding: 20px;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
}
@media (max-width: 767px) {
    .reviews-list-item__right {
        padding: 0;
    }
}
.reviews-list-item__stars {
    margin-bottom: 12px;
}
@media (max-width: 767px) {
    .reviews-list-item__stars {
        margin-bottom: 8px;
    }
}
.reviews-list-item__stars img {
    width: 24px;
    height: 24px;
}
@media (max-width: 575px) {
    .reviews-list-item__stars img {
        width: 16px;
        height: 16px;
    }
}
.reviews-list-item__name {
    margin-bottom: 12px;
    font-weight: 700;
}
@media (max-width: 767px) {
    .reviews-list-item__name {
        margin-bottom: 0;
    }
}
@media (max-width: 575px) {
    .reviews-list-item__name {
        font-size: 14px;
    }
}
.reviews-list-item__date {
    font-size: 14px;
    color: #868895;
}
.reviews-list-item__title {
    margin-bottom: 8px;
    font-weight: 700;
}
.reviews-list-item__text-wrapper {
    position: relative;
    overflow: hidden;
    height: 160px;
}
.reviews-list-item__text-wrapper_active {
    height: auto;
}
.reviews-list-item__footer {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-top: 12px;
}
@media (min-width: 767px) {
    .reviews-list-item__footer {
        display: none;
    }
}
.reviews-list-item .overlay {
    display: none;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    padding-bottom: 12px;
}
.reviews-list-item .overlay__button {
    width: 36px;
    height: 36px;
    margin-top: 12px;
}
