@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..900;1,400..900&family=Roboto+Condensed:ital,wght@0,100..900;1,100..900&display=swap");

:root {
    --violet: #742281;
    --roboto: "Roboto Condensed", sans-serif;
    --play: "Playfair Display", serif;
}

ol,
ul,
menu {
    list-style: none;
}

/*# sourceMappingURL=var.css.map */

body {
    font-family: var(--roboto);
    padding: 0;
}

/*# sourceMappingURL=common.css.map */

.header-iae {
    z-index: 9999;
}

.header-iae--mobile-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-inline: 40px;
    padding-top: 16px;
    padding-bottom: 16px;
}

@media screen and (min-width: 992px) {
    .header-iae--mobile-bar {
        display: none;
    }
}

.header-iae--mobile-bar div {
    display: flex;
    align-items: center;
    gap: 10px;
}

.header-iae--mobile-bar a:has(img) {
    display: flex;
}

.header-iae--mobile-bar .site-logo {
    height: 34px;
    -o-object-fit: contain;
    object-fit: contain;
}

.header-iae--mobile-bar button {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: var(--violet);
    border-radius: 2px;
}

.header-iae--mobile-bar .burger-btn {
    gap: 6px;
}

.header-iae--mobile-bar .burger-btn span {
    display: inline-block;
    width: 20px;
    height: 1px;
    background: white;
    transition: all 0.3s ease;
}

.header-iae--mobile-bar .burger-btn.open span:nth-child(2) {
    opacity: 0;
}

.header-iae--mobile-bar .burger-btn.open span:nth-child(1) {
    transform: translateY(7px) rotate(0.125turn);
}

.header-iae--mobile-bar .burger-btn.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-0.125turn);
}

.header-iae--mobile-bar .search::before {
    content: "";
    width: 32px;
    height: 32px;
    background: white;
    -webkit-mask: url("../images/search.svg") no-repeat center;
    mask: url("../images/search.svg") no-repeat center;
    -webkit-mask-size: contain;
    mask-size: contain;
}

.header-iae--wrapper {
    display: none;
}

@media screen and (min-width: 992px) {
    .header-iae--wrapper {
        display: block !important;
    }
}

.header-iae--inner {
    display: flex;
    flex-direction: column;
}

.header-iae--primary {
    padding: 40px 24px 56px;
    background: var(--violet);
    color: white;
}

@media screen and (min-width: 992px) {
    .header-iae--primary {
        display: flex;
        align-items: center;
        justify-content: space-between;
        position: relative;
        padding: 0px clamp(16px, 5.56vw, 80px);
        background: white;
        color: var(--violet);
    }
}

.header-iae--primary a {
    display: flex;
}

.header-iae--primary a:hover {
    color: white;
    text-decoration: underline;
}

.header-iae--primary a:has(img) {
    display: none;
}

@media screen and (min-width: 992px) {
    .header-iae--primary a:has(img) {
        display: flex;
    }
}

.header-iae--primary a:has(img) img {
    height: 38px;
    -o-object-fit: contain;
    object-fit: contain;
}

.header-iae--primary>button {
    display: none;
}

@media screen and (min-width: 992px) {
    .header-iae--primary>button {
        display: flex;
        align-items: center;
        justify-content: center;
        background: var(--violet);
        border: 1px solid var(--violet);
        border-radius: 4px;
        width: 56px;
        height: 56px;
    }

    .header-iae--primary>button::before {
        content: "";
        width: 32px;
        height: 32px;
        -webkit-mask: url("../images/search.svg") no-repeat center;
        mask: url("../images/search.svg") no-repeat center;
        -webkit-mask-size: contain;
        mask-size: contain;
        background: white;
    }
}

@media screen and (min-width: 1100px) {
    .header-iae--primary>button {
        width: auto;
        height: auto;
        display: block;
        padding: 16px 28px;
        font-size: 1.125rem;
        font-style: normal;
        font-weight: 400;
        line-height: normal;
        text-transform: uppercase;
        color: white;
        cursor: pointer;
    }

    .header-iae--primary>button:hover {
        transition: all 0.4s ease;
        background: white;
        color: var(--violet);
    }
}

.header-iae--primary>button span {
    display: none;
}

@media screen and (min-width: 1100px) {
    .header-iae--primary>button span {
        display: block;
    }
}

@media screen and (min-width: 992px) {
    .header-iae--primary>ul {
        display: flex;
        gap: clamp(8px, 2.78vw, 40px);
    }
}

.header-iae--primary>ul>li {
    border-bottom: 1px solid white;
}

.header-iae--primary>ul>li:first-child {
    border-top: 1px solid white;
}

@media screen and (min-width: 992px) {
    .header-iae--primary>ul>li:hover>ul {
        opacity: 1;
        z-index: 99;
        transform: translateY(0);
        transition: all 0.6s 0.08s ease;
        pointer-events: auto;
    }

    .header-iae--primary>ul>li:hover>a::after {
        transform: rotate(-0.5turn);
        transition: transform 0.2s ease;
    }
}

.header-iae--primary>ul>li>a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 0;
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    text-transform: uppercase;
}

@media screen and (min-width: 992px) {
    .header-iae--primary>ul>li>a {
        gap: 16px;
        padding: 40px 0 40px 20px;
    }

    .header-iae--primary>ul>li>a:hover,
    .header-iae--secondary>ul>li>a:hover {
        color: #9a67a2;
        transition: color 0.3s ease;
    }

    .header-iae--primary>ul>li>a+ul {
        opacity: 0;
        pointer-events: none;
        transform: translateY(6px);
    }
}

.header-iae--primary>ul>li>a.has-child::after {
    content: "";
    width: 16px;
    height: 16px;
    background: white;
    rotate: -0.25turn;
    -webkit-mask: url("../images/chevron.svg") no-repeat center;
    mask: url("../images/chevron.svg") no-repeat center;
    -webkit-mask-size: contain;
    mask-size: contain;
}

@media screen and (min-width: 992px) {
    .header-iae--primary>ul>li>a.has-child::after {
        width: 12px;
        height: 12px;
        background: var(--violet);
        rotate: -0.25deg;
    }
}

@media screen and (min-width: 992px) {
    .header-iae--primary>ul>li>a+ul {
        position: absolute;
        left: 0;
        top: calc(100% - 1px);
        width: 100%;
        background: var(--violet);
        color: white;
        padding: 48px clamp(16px, 5.56vw, 80px);
        display: flex;
        flex-wrap: wrap;
        gap: clamp(32px, 6.94vw, 100px);
        row-gap: 32px;
    }
}

.header-iae--primary>ul>li>ul {
    padding-left: 20px;
}

.header-iae--primary>ul>li>ul .has-child {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 0;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 17px;
}

.header-iae--primary>ul>li>ul .has-child::after {
    content: "";
    width: 12px;
    height: 12px;
    background: url("../images/chevron.svg") no-repeat center;
    background-size: contain;
}

@media screen and (min-width: 992px) {
    .header-iae--primary>ul>li>ul .has-child::after {
        content: none;
    }
}

@media screen and (min-width: 992px) {
    .header-iae--primary>ul>li>ul .has-child {
        margin-bottom: 8px;
    }
}

.header-iae--primary>ul>li>ul ul {
    padding-bottom: 16px;
}

.header-iae--primary>ul>li>ul ul a {
    display: block;
    margin-bottom: 8px;
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

@media screen and (min-width: 992px) {
    .header-iae--primary>ul>li>ul ul a {
        margin-bottom: 16px;
    }

    .header-iae--primary>ul>li>ul ul a:hover {
        font-weight: 500;
        margin-right: -2px;
        transition: all 0.3s ease;
    }
}

@media screen and (max-width: 991px) {
    .header-iae--primary .has-child+ul {
        display: none;
    }
}

.header-iae--secondary {
    padding: 40px 24px;
    background: #E2DDDC;
}

@media screen and (min-width: 992px) {
    .header-iae--secondary {
        order: -1;
        display: flex;
        justify-content: flex-end;
        align-items: center;
        gap: 40px;
        padding: 16px clamp(16px, 5.56vw, 80px);
    }
}

.header-iae--secondary ul {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

@media screen and (min-width: 992px) {
    .header-iae--secondary ul {
        flex-direction: row;
        justify-content: flex-end;
        gap: 40px;
    }
}

.header-iae--secondary a {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--violet);
    font-size: 1.125rem;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}

@media screen and (min-width: 992px) {
    .header-iae--secondary a {
        font-size: 0.875rem;
        font-style: normal;
        font-weight: 500;
        line-height: normal;
    }
}

.header-iae--secondary a::before {
    content: "";
    width: 10px;
    height: 10px;
    background: var(--violet);
    rotate: -0.25turn;
    -webkit-mask: url("../images/chevron.svg") no-repeat center;
    mask: url("../images/chevron.svg") no-repeat center;
    -webkit-mask-size: contain;
    mask-size: contain;
}

@media screen and (min-width: 992px) {
    .header-iae--secondary a::before {
        content: none;
    }
}

.header-iae--secondary .language-switch {
    flex-shrink: 0;
    display: none;
}

@media screen and (min-width: 992px) {
    .header-iae--secondary .language-switch {
        display: flex;
        gap: 16px;
        align-items: center;
    }
}

.header-iae--secondary .language-switch a {
    font-size: 1.125rem;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    display: flex;
    gap: 16px;
}

.header-iae--secondary .language-switch a:not(:last-child)::after {
    content: "";
    height: 22px;
    width: 1px;
    background: var(--violet);
}

/*# sourceMappingURL=style.css.map */


.footer {
    background: var(--violet);
    color: white;
}

.footer--container {
    max-width: 1280px;
    margin-inline: auto;
    padding: 44px 40px;
}

@media screen and (min-width: 1360px) {
    .footer--container {
        padding-inline: 0;
    }
}

.footer--top {
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 16px;
    padding-bottom: 32px;
}

@media screen and (min-width: 768px) {
    .footer--top {
        flex-direction: row;
        justify-content: center;
        flex-wrap: wrap;
        gap: 56px;
        row-gap: 24px;
    }
}

.footer--top p {
    font-size: 17px;
    font-style: normal;
    font-weight: 700;
    line-height: 22px;
}

.footer--top img {
    height: 70px;
    -o-object-fit: contain;
    object-fit: contain;
}

@media screen and (min-width: 992px) {
    .footer--top img {
        height: 50px;
    }
}

.footer--top a:has(img) {
    margin-bottom: 14px;
}

@media screen and (min-width: 768px) {
    .footer--top a:has(img) {
        margin-right: auto;
    }
}

.footer--top .footer-social {
    display: flex;
    gap: 16px;
    justify-content: center;
    align-items: center;
}

.footer--top .footer-social a {
    display: block;
    width: 16px;
    height: 16px;
    background: white;
    transition: all 0.3s ease;
}

.footer--top .footer-social a:hover {
    background: #e8dbeb;
}

.footer--top .footer-social .fb {
    -webkit-mask: url("../images/fb.svg") no-repeat center;
    mask: url("../images/fb.svg") no-repeat center;
    -webkit-mask-size: contain;
    mask-size: contain;
}

.footer--top .footer-social .yt {
    -webkit-mask: url("../images/yt.svg") no-repeat center;
    mask: url("../images/yt.svg") no-repeat center;
    -webkit-mask-size: contain;
    mask-size: contain;
}

.footer--top .footer-social .lk {
    -webkit-mask: url("../images/lk.svg") no-repeat center;
    mask: url("../images/lk.svg") no-repeat center;
    -webkit-mask-size: contain;
    mask-size: contain;
}

.footer--top .footer-social .ig {
    -webkit-mask: url("../images/ig.svg") no-repeat center;
    mask: url("../images/ig.svg") no-repeat center;
    -webkit-mask-size: contain;
    mask-size: contain;
}

.footer--menus .title {
    font-size: 22px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    display: flex;
    justify-content: space-between;
}

.footer--menus .title::after {
    content: "";
    background: url("../images/chevron.svg") no-repeat center;
    background-size: contain;
    width: 12px;
    height: 26px;
}

@media screen and (min-width: 992px) {
    .footer--menus .title::after {
        display: none;
    }
}

@media screen and (min-width: 992px) {
    .footer--menus .title {
        display: inline-block;
        font-size: 1.75rem;
        pointer-events: none;
    }
}

.footer--menus .footer-menu-wrapper {
    padding: 16px 0;
    border-bottom: 1px solid white;
}

@media screen and (min-width: 992px) {
    .footer--menus .footer-menu-wrapper {
        padding: 16px 0px 24px;
    }

    .footer--menus .footer-menu-wrapper:not(:has(.schools-list)) {
        display: flex !important;
        align-items: center;
        gap: 24px;
    }

    .footer--menus .footer-menu-wrapper:not(:has(.schools-list)) .footer-menu-inner {
        display: flex !important;
        align-items: center;
        gap: 34px;
    }

    .footer--menus .footer-menu-wrapper:has(.schools-list) .title {
        margin-bottom: 24px;
    }
}

.footer--menus .footer-menu-wrapper:first-child {
    border-top: 1px solid white;
}

.footer--menus .footer-menu-inner {
    display: none;
    padding-top: 16px;
}

@media screen and (min-width: 992px) {
    .footer--menus .footer-menu-inner {
        display: block;
        padding-top: 0px;
    }
}

.footer--menus .footer-menu-inner a {
    display: block;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 14px;
}

.footer--menus .footer-menu-inner a:not(:last-child) {
    margin-bottom: 10px;
}

@media screen and (min-width: 992px) {
    .footer--menus .footer-menu-inner a:not(:last-child) {
        margin-bottom: 0;
    }
}

.footer--top a:hover,
.footer--menus .footer-menu-inner a:hover {
    text-decoration: underline !important;
    color: white;
}

.footer--menus .schools-list {
    -moz-column-count: 2;
    column-count: 2;
}

@media screen and (min-width: 768px) {
    .footer--menus .schools-list {
        -moz-column-count: 3;
        column-count: 3;
    }
}

@media screen and (min-width: 992px) {
    .footer--menus .schools-list {
        display: block !important;
    }
}

@media screen and (min-width: 1024px) {
    .footer--menus .schools-list {
        -moz-column-count: 4;
        column-count: 4;
    }
}

@media screen and (min-width: 1280px) {
    .footer--menus .schools-list {
        -moz-column-count: 6;
        column-count: 6;
    }
}

@media screen and (min-width: 992px) {
    .footer--menus .schools-list a {
        margin-bottom: 8px !important;
    }
}

.footer--legal {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
    padding-top: 32px;
}

@media screen and (min-width: 992px) {
    .footer--legal {
        padding-top: 16px;
    }
}

.footer--legal span,
.footer--legal a {
    font-size: 0.6875rem;
    font-style: normal;
    font-weight: 400;
    line-height: 14px;
}

.footer--legal a:hover {
    text-decoration: underline !important;
    color: white;
}

/*# sourceMappingURL=style.css.map */
