@font-face {
    font-family: 'OpenSans';
    src: url("/sfmember/assets/fonts/OpenSans-Regular.eot"),
    url("/sfmember/assets/fonts/OpenSans-Regular.eot") format("embedded-opentype"),
    url("/sfmember/assets/fonts/OpenSans-Regular.woff") format("woff"),
    url("/sfmember/assets/fonts/OpenSans-Regular.woff2") format("woff2"),
    url("/sfmember/assets/fonts/open-sans/OpenSans-Regular.ttf") format("truetype"),
    url("/sfmember/assets/fonts/OpenSans-Regular.svg") format("svg");
    font-style: normal;
    font-weight: normal;
}

@font-face {
    font-family: 'OpenSans';
    src: url("/sfmember/assets/fonts/OpenSans-Bold.eot"),
    url("/sfmember/assets/fonts/OpenSans-Bold.eot") format("embedded-opentype"),
    url("/sfmember/assets/fonts/OpenSans-Bold.woff") format("woff"),
    url("/sfmember/assets/fonts/OpenSans-Bold.woff2") format("woff2"),
    url("/sfmember/assets/fonts/OpenSans-Bold.ttf") format("truetype"),
    url("/sfmember/assets/fonts/OpenSans-Bold.svg") format("svg");
    font-style: normal;
    font-weight: bold;
}

@font-face {
    font-family: 'OpenSans-Semibold';
    src: url("/sfmember/assets/fonts/open-sans/OpenSans-Semibold.eot"),
    url("/sfmember/assets/fonts/open-sans/OpenSans-Semibold.eot") format("embedded-opentype"),
    url("/sfmember/assets/fonts/open-sans/OpenSans-Semibold.ttf") format("truetype"),
    url("/sfmember/assets/fonts/open-sans/OpenSans-Semibold.svg") format("svg");
    font-style: normal;
    font-weight: 600;
}

:root {
    --sf-header-top-h: 60px;
    --sf-header-bottom-h: 45px;
    --sf-header-h: var(--sf-header-top-h);

    --sf-header-bg: #f5f5f5;
    --sf-header-top-bg: #0077b3;
    --sf-color-blue: #0077b3;

    --sf-gutter-mobile: 16px;
    --sf-pad-desktop-x: 10px;
    --sf-vh: 100vh;

    --sf-desktop-container-w: 964px;
    --sf-offset-max: 114px;

    --sf-cta-h-m: 44px;
    --sf-cta-h-d: 44px;
    --sf-cta-icon: 18px;
    --sf-cta-icon-scale: 1;

    --sf-main-top-gap: 20px;
}

@supports (height: 100lvh) {
    :root {
        --sf-vh: 100lvh;
    }
}

@supports (height: 100dvh) {
    :root {
        --sf-vh: 100dvh;
    }
}

@media (min-width: 992px) {
    :root {
        --sf-header-h: calc(var(--sf-header-top-h) + var(--sf-header-bottom-h));
    }
}

html, body {
    height: 100%;
    margin: 0;
    font-family: 'OpenSans', Arial, serif;
    overflow-y: auto;
    overflow-x: clip;
    overscroll-behavior: auto;
}

.sf-content  ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

.sf-content  ul  li {

    width: 100%;
    box-sizing: border-box;
    max-width: 100%;
    list-style: none;
}


.sf-header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: var(--sf-header-h);
    box-shadow: 0 2px 8px rgba(0, 0, 0, .12);
    z-index: 1000;
    background: transparent;
    color: #fff;
}

.sf-header__top {
    height: var(--sf-header-top-h);
    background-color: var(--sf-header-top-bg);
    display: block;
}

.sf-header__inner.sf-container {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.sf-header__logo {
    display: inline-block;
    text-decoration: none;
}

.sf-header__logo img {
    display: block;
    width: 140px;
    height: 24px;
}

.sf-header__cta {
    display: inline-block;
    text-decoration: none;
    color: #fff;
    font-size: 15px;
    line-height: 1;
}

@media (min-width: 992px) {

    .sf-header__logo img {
        width: 187px;
        height: 33px;
    }

    .sf-header {
        --sf-side-gutter: calc((100vw - var(--sf-desktop-container-w)) / 2 + var(--sf-pad-desktop-x));
        --sf-offset-x: clamp(0px, var(--sf-side-gutter), var(--sf-offset-max));
    }

    .sf-header__logo {
        transform: translateX(calc(-1 * var(--sf-offset-x)));
    }

    .sf-header__cta {
        transform: translateX(var(--sf-offset-x));
        letter-spacing: .2px;
    }
}

.sf-main {
    background-image: url("/i/public/responsive/icon-schoolbag-small.svg");
    background-repeat: no-repeat;
    background-position: right -30px top -40px;
    padding-top: var(--sf-main-top-gap);
    margin-bottom: 30px;
}

@media (max-width: 991.98px) {
    .sf-main:has(.sf-states-row) {
        background-image: none !important;
    }
}

.sf-intro {
    display: flex;
    align-items: flex-start;
    gap: 0;
}

.sf-intro__copy {
    flex: 1 1 auto;
    min-width: 0;
    margin-right: 10px;
}

.sf-intro__media {
    flex: 0 0 auto;
    margin-right: calc(-1 * var(--sf-gutter-mobile));
}

.sf-intro__seal {
    flex: 0 0 auto;
}

.sf-intro__seal img {
    width: 66px;
    height: 112px;
}

.sf-intro__media img {
    display: block;
    width: 76px;
    height: 136px;
    margin: 0;
    padding: 0;
    border: 0;
}

.sf-intro__teaser {
    color: #333;
    font-size: 18px;
    font-weight: 400;
    margin: 0 0 8px;
}

.sf-intro__title {
    color: #333;
    font-size: 24px;
    font-weight: 700;
    margin: 0;
}

.sf-intro__back {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    color: var(--sf-color-blue);
    font-family: OpenSans-Semibold, Arial, sans-serif;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    margin-bottom: 13px;
}

.sf-intro__back:focus-visible {
    outline: 2px solid var(--sf-color-blue);
    outline-offset: 2px;
}

.sf-intro__back::before {
    content: "";
    display: inline-block;
    width: 24px;
    height: 24px;
    background-size: 24px 24px;
    flex: 0 0 24px;
    background-color: var(--sf-color-blue);
    -webkit-mask-image: url("/i/public/responsive/icon-arrow.svg");
    mask-image: url("/i/public/responsive/icon-arrow.svg");
}

.sf-intro__back:hover {
    text-decoration: none;
}

.sf-intro--left {
    text-align: left;
}

.sf-intro--left .sf-intro__copy {
    margin-right: 0;
}

.sf-intro__schoolinfo .sf-badge {
    display: flex;
}


.sf-intro__schoolinfo {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    column-gap: 15px;
    margin-top: 5px;
    row-gap: 15px;
    margin-bottom: 20px;
}

.schoolinfo__left {
    order: 1;
    flex: 0 0 100%;
}

.schoolinfo__location {
    color: rgba(51, 51, 51, 1);
    font-family: OpenSans, Arial, sans-serif;
    font-size: 15px;
}

.schoolinfo__image {
    order: 2;
    flex: 0 0 170px;
    width: 170px;
}

.schoolinfo__image img {
    max-width: 170px;
}

@media screen and (max-width: 320px) {
    .schoolinfo__image {
        order: 2;
        flex: 0 0 120px;
        width: 120px;
    }

    .schoolinfo__image img {
        max-width: 120px;
    }
}


.schoolinfo__kpis {
    display: flex;
    flex-direction: column;
    row-gap: 10px;
    order: 3;
    flex: 1 1 0;
    min-width: 0;
}

.schoolinfo__left.is-open .schoolinfo__names {
    display: block;
}

.schoolinfo__toggle-link--less {
    display: none;
}

.schoolinfo__left.is-open .schoolinfo__toggle-link--more {
    display: none;
}

.schoolinfo__left.is-open .schoolinfo__toggle-link--less {
    display: inline;
}

.schoolinfo__names {
    display: none;
    margin-top: 10px;
    color: rgba(51, 51, 51, 1);
    font-family: OpenSans, Arial, sans-serif;
    font-size: 15px;
    line-height: 25px;
}

.schoolinfo__names strong {
    display: block;
    font-family: OpenSans-Semibold, Arial, sans-serif;
    font-size: 15px;
    line-height: 25px;
    margin-top: 8px;
}


.schoolinfo__toggle-link {
    display: inline-block;
    cursor: pointer;
    color: var(--sf-color-blue);
    font-family: OpenSans, Arial, sans-serif;
    font-size: 15px;
    margin-top: 8px;
    text-decoration: none;
}

.schoolinfo__toggle-link:hover {
    text-decoration: none;
}

.sf-intro__personinfo .sf-badge {
    display: flex;
}

.sf-intro__personinfo {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    column-gap: 15px;
    row-gap: 15px;
    margin-top: 5px;
    margin-bottom: 20px;
}

.sf-intro__report a {
    color: var(--sf-color-blue);
    font-family: OpenSans, Arial, sans-serif;
    font-size: 15px;
    text-decoration: none;
}

.sf-intro__report a:focus-visible {
    outline: 2px solid var(--sf-color-blue);
    outline-offset: 2px;
}

.personinfo__image {
    order: 1;
    flex: 0 0 90px;
}

.personinfo__image img {
    max-width: 170px;
    width: 80px;
    height: auto;
}

.personinfo__kpis {
    display: flex;
    flex-direction: column;
    row-gap: 10px;
    order: 2;
    flex: 1 1 0;
    min-width: 0;
}

.personinfo__schools {
    order: 3;
    flex: 0 0 100%;
    color: rgba(51, 51, 51, 1);
    font-family: OpenSans, Arial, sans-serif;
    font-size: 15px;

}

.personinfo__schools-more {
    display: inline-block;
    margin-top: 5px;
    border: 0;
    background: none;
    padding: 0;
    text-decoration: none;
    cursor: pointer;
    font: inherit;
    color: var(--sf-color-blue);
    font-family: OpenSans, Arial, sans-serif;
    font-size: 15px;
}

.personinfo__schools.is-collapsed .personinfo__school--extra {
    display: none;
}

.personinfo__school {
    margin-bottom: 3px;
}

.personinfo__school a{
    color: var(--sf-color-blue);
    font-family: OpenSans, Arial, sans-serif;
    font-size: 15px;
    text-decoration: none;
}

.personinfo__school a:focus-visible {
    outline: 2px solid var(--sf-color-blue);
    outline-offset: 2px;
}


@media (min-width: 992px) {
    .sf-intro__media {
        display: none;
    }

    .sf-intro__seal {
        display: none;
    }

    .sf-intro {
        display: block;
        text-align: center;
        width: 964px;
    }

    .sf-intro__teaser {
        color: #666;
        font-size: 19px;
        font-weight: 400;
        line-height: 26px;
    }

    .sf-intro__title {
        color: #333;
        font-size: 24px;
        font-weight: 700;
    }

    .sf-intro__title-school {
        max-width: 560px;
    }

    .sf-intro__copy {
        margin: 0;
        padding: 0 35px;
    }

    .sf-intro__back {
        margin-bottom: 23px;
    }

    .sf-main {
        --sf-main-white-stop: 300px;
        --sf-main-fade: 160px;
        background-image: url("/i/public/responsive/icon-schoolbag-large.svg"),
        linear-gradient(180deg, #FEFEFE 0, #FEFEFE var(--sf-main-white-stop), #F1F9FD calc(var(--sf-main-white-stop) + var(--sf-main-fade)), #F1F9FD 100%);
        background-repeat: no-repeat, no-repeat;
        background-position: -80px 120px, left top;
        margin-bottom: 0;
    }

    .sf-intro.sf-intro--left {
        text-align: left;
    }

    .sf-intro__schoolinfo {
        display: flex;
        flex-direction: row;
        gap: 15px;
        justify-content: space-between;
        align-items: stretch;
    }

    .schoolinfo__left {
        flex: 1 1 0;
        align-self: flex-start;
    }

    .schoolinfo__names {
        display: block;
    }

    .schoolinfo__toggle-link {
        display: none;
    }

    .schoolinfo__image {
        flex: 0 0 170px;
        align-self: flex-start;
    }

    .schoolinfo__kpis {
        display: flex;
        flex-direction: column;
        flex: 0 1 auto;
        row-gap: 10px;
        align-self: flex-start;
    }
    .sf-intro__personinfo {
        display: flex;
        flex-direction: row;
        gap: 15px;
        justify-content: space-between;
        align-items: stretch;
        margin-top: 20px;
    }

    .personinfo__schools {
        order: 1;
        flex: 1 1 0;
        margin-inline-end: 15px;
        align-self: flex-start;
    }

    .personinfo__image {
        order: 2;
        flex: 0 0 90px;
        align-self: flex-start;
    }

    .personinfo__kpis {
        order: 3;
        display: flex;
        flex-direction: column;
        flex: 0 1 auto;
        row-gap: 10px;
        align-self: flex-start;
    }
}

.sf-content {
    background: none;
    border-radius: 0;
    box-shadow: none;
    padding: 0;
    margin: 16px 0 0;
}

@media (min-width: 992px) {
    .sf-content {
        margin: 0 auto;
        background: rgba(255, 255, 255, 0.7);
        border-radius: 12px;
        padding: 24px 35px;
    }

    .sf-content.sf-content--federal-states {
        padding: 35px 16px 20px 16px;
    }
}

.sf-states-row {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.sf-states-side {
    display: none;
    flex: 0 0 174px;
}

.sf-states-side img {
    display: block;
    width: 174px;
    height: auto;
}

.sf-states-wrap {
    flex: 1 1 auto;
    display: flex;
    flex-wrap: wrap;
    column-gap: 10px;
    row-gap: 6px;
}

.sf-tile {
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-decoration: none;
    background-color: #EEF7FC;
    color: var(--sf-color-blue);
    border-radius: 10px;
    padding: 9px 16px 9px 18px;
    transition: box-shadow 160ms ease;
    width: 100%;
    box-sizing: border-box;
    max-width: 100%;
    position: relative;
    overflow: hidden;
}
.sf-tile::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: linear-gradient(90deg, #FDF3EB 0%, #F2FAFD 100%);
    opacity: 0;
    transition: opacity 160ms ease;
    pointer-events: none;
    z-index: 0;
}
.sf-tile::after {
    content: "";
    display: inline-block;
    width: 24px;
    height: 24px;
    background-size: 24px 24px;
    flex: 0 0 24px;
    background-color: var(--sf-color-blue);
    transform: rotate(180deg);
    -webkit-mask-image: url(/i/public/responsive/icon-arrow.svg);
    mask-image: url(/i/public/responsive/icon-arrow.svg);
    position: relative;
    z-index: 1;
}

.sf-tile:focus-visible {
    outline: 2px solid var(--sf-color-blue);
    outline-offset: 2px;
}

.sf-tile__label {
    color: var(--sf-color-blue);
    font-family: 'OpenSans-Semibold', Arial, sans-serif;
    font-size: 15px;
    font-weight: 400;
    letter-spacing: .19px;
    flex: 1 1 auto;
    min-width: 0;
    position: relative;
    z-index: 1;
}

.sf-tile__icon {
    font-size: 20px;
    color: var(--sf-color-blue);
    line-height: 1;
    margin-left: 10px;
    flex: 0 0 auto;
    position: relative;
    z-index: 1;
}


@media (min-width: 992px) {
    .sf-tile:hover::before,
    .sf-tile:focus::before {
        opacity: 1;
    }
    .sf-states-side {
        display: block !important;
    }

    .sf-states-wrap {
        display: block;
        column-count: 2;
        column-gap: 10px;
    }

    .sf-states-wrap .sf-tile {
        break-inside: avoid;
        -webkit-column-break-inside: avoid;
        margin: 0 0 6px 0;
        width: 100%;
    }
}

.sf-content.sf-content--cta {
    margin-top: 16px;
}

.sf-cta-row {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 16px 0;
}

.sf-cta {
    font-family: OpenSans-Semibold, Arial, sans-serif;
    font-size: 15px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--sf-color-blue);
    border-radius: 6px;
    color: var(--sf-color-blue);
    background: transparent;
    text-decoration: none;
    line-height: 1.2;
    width: 100%;
    flex: 0 1 auto;
    min-height: var(--sf-cta-h-m);
}

.sf-cta:focus-visible {
    outline: 2px solid var(--sf-color-blue);
    outline-offset: 2px;
}

.sf-cta__icon {
    order: -1;
    margin-right: 5px;
    margin-left: 0;
    display: inline-block;
    font-size: var(--sf-cta-icon);
    line-height: 1;
    transform: scale(var(--sf-cta-icon-scale));
    transform-origin: left center;
    will-change: transform;
}

.sf-cta--orange {
    background: #F4A35F;
    border-color: #F4A35F;
    color: #2f2f2f;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: visible;
    width: 100%;
    cursor: pointer;
}

.sf-cta--orange::before {
    content: "";
    flex: 0 0 2px;
}

.sf-cta--orange::after {
    content: "";
    width: 24px;
    height: 24px;
    position: absolute;
    inset-block-start: 50%;
    inset-inline-end: 8px;
    transform: translateY(-50%) rotate(180deg);
    background: url("/i/public/responsive/icon-arrow.svg") no-repeat center / 24px 24px;
    pointer-events: none;
    z-index: 1;
}

.sf-cta--search::before {


    content: "";
    display: inline-block;
    width: 34px;
    height: 34px;
    background-size: 23px 34px;
    flex: 0 0 34px;
    background-color: var(--sf-color-blue);
    -webkit-mask-image: url(/i/public/responsive/icon-search.svg);
    mask-image: url(/i/public/responsive/icon-search.svg);

}

.is-desktop-cta {
    display: none;
}

.is-mobile-cta {
    display: flex;
}

@media (min-width: 992px) {
    .is-mobile-cta {
        display: none !important;
    }

    .is-desktop-cta {
        display: block;
    }

    .sf-cta-row {
        flex-direction: row;
        align-items: center;
        justify-content: center;
        gap: 24px;
        padding: 0;
        display: flex;
    }

    .sf-cta {
        max-width: 250px;
        flex: 0 1 auto;
        min-height: var(--sf-cta-h-d);
    }

    .sf-cta--orange {
        max-width: unset;
        width: 328px;
    }
}

.sf-feature {
    text-align: center;
}

.sf-feature__icon {
    display: block;
    margin: 0 auto 8px;
    width: 38px;
    height: 38px;
}

.sf-feature__title {
    margin: 8px 0 6px;
    font-size: 15px;
    font-family: 'OpenSans-Semibold', Arial, sans-serif;
    color: #3e3e3e;
}

.sf-feature__text {
    margin: 0;
    font-size: 13px;
    font-family: OpenSans, Arial, sans-serif;
    color: #5a5a5a;
}

.sf-features {
    position: relative;
    margin: 0 24px;
}

.sf-features__viewport {
    overflow: hidden;
}

.sf-features__track {
    display: flex;
    transition: transform 260ms ease;
    will-change: transform;
}

.sf-feature {
    flex: 0 0 100%;
    box-sizing: border-box;
    padding: 12px 16px;
}

.sf-features__btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 36px;
    height: 36px;
    display: inline-flex;
    border: none;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 999;
    background-color: var(--sf-color-blue);
    -webkit-mask: url('/i/public/responsive/icon-arrow.svg') center / 36px 36px no-repeat;
    mask: url('/i/public/responsive/icon-arrow.svg') center / 36px 36px no-repeat;
}

.sf-features__btn--prev {
    left: -35px;
}

.sf-features__btn--next {
    right: -35px;
    transform: translateY(-50%) rotate(180deg);
}

.sf-features__btn[disabled] {
    opacity: .4;
    pointer-events: none;
}

.sf-seal {
    display: none;
}

.sf-states-bottom-collage {
    display: flex;
    flex-direction: row;
    justify-content: center;
    margin-top: 20px;
}

.sf-states-bottom-collage img {
    width: 188px;
    height: 124px;
}

@media (prefers-reduced-motion: reduce) {
    .sf-features__track {
        transition: none;
    }
}

@media (min-width: 992px) {

    .sf-features {
        margin: 24px 24px 0 24px;
    }

    .sf-features__btn {
        display: none;
    }

    .sf-features__viewport {
        overflow: visible;
    }

    .sf-features__track {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 24px;
        transform: none !important;
    }

    .sf-feature {
        flex: initial;
        padding: 0;
    }

    .sf-seal {
        display: flex;
        flex-direction: row;
        justify-content: center;
        margin-top: 20px;
    }

    .sf-seal img {
        width: 66px;
        height: 112px;
    }

    .sf-states-bottom-collage {
        display: none;
    }
}

.sf-container {
    margin-left: var(--sf-gutter-mobile);
    margin-right: var(--sf-gutter-mobile);
    margin-bottom: var(--sf-gutter-mobile);
}

@media (min-width: 992px) {
    .sf-container {
        max-width: 964px;
        min-width: 800px;
        margin-left: auto;
        margin-right: auto;
    }
}

.sf-app {
    min-height: calc(var(--sf-vh) - var(--sf-header-h));
    display: flex;
    flex-direction: column;
    margin-top: var(--sf-header-h);
}

.sf-app > main.sf-main {
    flex: 1 1 auto;
}

.sf-main > *:last-child,
.sf-main > .sf-container:last-child,
.sf-main > .sf-content:last-child {
    margin-bottom: 0 !important;
}

.sf-footer {
    background: #ffffff;
    color: #37474f;
    border-top: 1px solid rgba(0, 0, 0, .08);
    flex: 0 0 auto;
}

@media (min-width: 992px) {
    .sf-footer {
        background: #F1F9FD;
        border: none;
    }
}

.sf-footer__inner.sf-container {
    padding-top: 16px;
    padding-bottom: 16px;
    margin-bottom: 0;
}

.sf-footer nav.sf-footer__nav {
    background: transparent !important;
    box-shadow: none !important;
    height: auto !important;
    min-height: 0 !important;
    line-height: normal !important;
    margin: 8px 0 0;
    padding: 0 !important;
    display: flex;
    justify-content: center;
    align-items: center;
}

.sf-footer nav.sf-footer__nav:first-of-type {
    margin-top: 0;
}

.sf-footer nav.sf-footer__nav .nav-wrapper {
    height: auto !important;
    line-height: normal !important;
    background: transparent !important;
}

.sf-footer nav.sf-footer__nav ul.sf-footer__list, .sf-footer .row > ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    list-style: none;
    margin: 0 !important;
    padding: 0 !important;
}

.sf-footer nav.sf-footer__nav ul.sf-footer__list > li, .sf-footer .row > ul > li {
    float: none !important;
    background: transparent !important;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
}

.sf-footer nav.sf-footer__nav ul.sf-footer__list > li:not(:last-child)::after,
.sf-footer .row > ul > li:not(:last-child)::after {
    content: "|";
    margin: 0 5px;
    color: var(--sf-color-blue);
}

.sf-footer nav.sf-footer__nav ul.sf-footer__list > li > a, .sf-footer .row > ul > li > a {
    display: inline !important;
    padding: 0 !important;
    background: transparent !important;
    color: var(--sf-color-blue) !important;
    font-family: OpenSans, Arial, sans-serif !important;
    font-size: 13px !important;
    line-height: 20px !important;
    text-align: center !important;
    text-decoration: none;
}

.sf-footer nav.sf-footer__nav ul.sf-footer__list > li > a:hover,
.sf-footer .row > ul > li > a:hover,
.sf-footer nav.sf-footer__nav ul.sf-footer__list > li > a:focus,
.sf-footer .row > ul > li > a:focus {
    text-decoration: none;
    outline: none;
}

.sf-footer nav.sf-footer__nav ul.sf-footer__list > li > a:focus-visible, .sf-footer .row > ul > li > a:focus-visible {
    outline: 2px solid var(--sf-color-blue);
    outline-offset: 2px;
}

@media (max-width: 575.98px) {
    .sf-footer nav.sf-footer__nav ul.sf-footer__list > li:not(:last-child)::after,
    .sf-footer .row > ul > li:not(:last-child)::after {
        margin: 0 8px;
    }
}

.sf-footer__copyright, .sf-footer .copyright {
    color: #666;
    font-family: OpenSans, Arial, sans-serif;
    font-size: 13px;
    line-height: 20px;
    display: block;
    text-align: center;
    width: 100%;
    margin-top: 24px;
}

@media (min-width: 992px) {
    :root {
        --sf-header-h: var(--sf-header-top-h);
    }

}

.sf-cities-row {
    display: flex;
    align-items: flex-start;
    gap: 40px;
    width: 100%;
    justify-content: flex-start;
    margin-bottom: 10px;
}

.sf-cities-wrap {
    flex: 1 1 0;
    min-width: 0;
    display: flex;
    flex-wrap: wrap;
    text-align: left;
    column-gap: 10px;
    row-gap: 6px;
    box-sizing: border-box;
    max-width: 100%;
}

.sf-cities-side {
    display: none;
    flex: 0 0 174px;
    margin-left: auto;
    text-align: right;
}

.sf-cities-side img {
    display: block;
    width: 174px;
    height: auto;
    margin-left: auto;
}

@media (min-width: 992px) {

    .sf-cities-side {
        display: block;
    }

    .sf-cities-wrap {
        display: block;
        padding-top: 3px;
    }

    .sf-cities-wrap.sf-cities-wrap--cols-1 {
        column-count: 1;
    }

    .sf-cities-wrap.sf-cities-wrap--cols-2 {
        column-count: 2;
    }

    .sf-cities-wrap.sf-cities-wrap--cols-3 {
        column-count: 3;
    }

    .sf-cities-wrap .sf-tile {
        break-inside: avoid;
        -webkit-column-break-inside: avoid;
        margin: 0 0 6px 0;
    }

    .sf-cities-wrap.sf-cities-wrap--cols-1 .sf-tile, .sf-cities-wrap.sf-cities-wrap--cols-2 .sf-tile {
        width: 100%;
        max-width: none;
    }

    .sf-cities-wrap.sf-cities-wrap--cols-3 .sf-tile {
        width: auto;
        max-width: 237px;
    }
}

.is-desktop-only {
    display: none;
}

@media (min-width: 992px) {
    .is-desktop-only {
        display: block;
    }
}

.is-mobile-only {
}

@media (min-width: 992px) {
    .is-mobile-only {
        display: none !important;
    }
}

.sf-alpha {
    margin-top: 24px;
}

.sf-alpha__heading {
    margin: 16px 0 12px;
    color: #333;
    font-weight: 700;
    font-size: 20px;
    line-height: 26px;
}

.sf-chip-group {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
    justify-content: flex-start;
}

.sf-chip {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 30px;
    min-width: 30px;
    border-radius: 6px;
    background: var(--sf-color-blue);
    color: #fff;
    text-decoration: none;
    font-family: OpenSans-Semibold, Arial, sans-serif;
    font-size: 14px;
    line-height: 1;
    box-shadow: 0 1px 0 rgba(0, 0, 0, .04), 0 1px 3px rgba(0, 0, 0, .06);
    transition: transform 120ms ease, box-shadow 120ms ease, background-color 120ms ease;
}


.sf-chip.is-active, .sf-chip.is-active:focus, .sf-chip.is-active:hover {
    background: none;
    color: #000;
    box-shadow: none;
}

.sf-chip:hover {
    background: #0A8FCC;
    box-shadow: 0 2px 6px rgba(0, 0, 0, .12);
    transform: translateY(-1px);
    outline: none;
}

.sf-chip:focus-visible {
    outline: 2px solid var(--sf-color-blue);
    outline-offset: 2px;

}

.releaseInfo {
    position: absolute;
    left: 0;
    top: 0;
    z-index: 1000;
    font-size: 10px;
}

.sf-alpha-panels {
    margin-top: 16px;
}

.sf-alpha-panel[hidden] {
    display: none !important;
}

@media (min-width: 992px) {
    .sf-chip {
        font-size: 15px;
        height: 29px;
        min-width: 29px;
    }

    .sf-alpha-panel {
        opacity: 0;
        transform: translateY(6px);
        visibility: hidden;
        pointer-events: none;
        height: 0;
        overflow: hidden;
        transition: opacity 160ms ease, transform 160ms ease;
    }

    .sf-alpha-panel.is-active {
        opacity: 1;
        transform: translateY(0);
        visibility: visible;
        pointer-events: auto;
        height: auto;
        overflow: visible;
    }

    .sf-alpha-panel--cols-3 {
        column-count: 3;
    }

    .sf-alpha-panel--cols-4 {
        column-count: 4;
    }

    .sf-alpha-panel--cols-5 {
        column-count: 5;
    }

    .sf-alpha__link {
        display: block;
        padding: 6px 0;
        color: var(--sf-color-blue);
        font-size: 15px;
        line-height: 17px;
        text-decoration: none;
        break-inside: avoid;
        -webkit-column-break-inside: avoid;
    }

    .sf-alpha__link.bigcity {
        font-weight: 700;
    }
}

@media (prefers-reduced-motion: reduce) {
    .sf-alpha-panel {
        transition: none;
    }
}

nav {
    color: #fff;
    border: none;
    box-shadow: none;
    background: none;
    height: unset;
}

.sf-cityletters.is-mobile-only {
}

@media (min-width: 992px) {
    .sf-cityletters {
        display: none !important;
    }
}

.sf-alpha-sec {
    margin: 12px 0 18px;
}

.sf-alpha-sec__letter {
    margin: 8px 0 8px;
    color: #333;
    font-family: OpenSans-Semibold, Arial, sans-serif;
    font-size: 15px;
    line-height: 1;
}

.sf-alpha-sec__list {
    display: grid;
    gap: 8px;
}

@media (max-width: 991.98px) {
    .sf-content--with-rail .sf-cityletters {
        display: flex;
        flex-direction: row-reverse;
        gap: 16px;
    }

    nav.sf-alpha-rail {
        position: static;
        top: auto;
        margin-top: 180px;
        display: flex;
        flex-direction: column;
        gap: 8px;
        align-items: center;
        background: transparent;
        box-shadow: none;
        flex: 0 0 auto;
    }
    ul.sf-alpha-stack {
        flex: 1 1 auto;
    }
}

.sf-tile.is-big .sf-tile__label {
    font-weight: 700;
}

.sf-schools-wrap .sf-tile__label {
    min-width: 0;
    max-width: 100%;
}

.sf-schooltype__title {
    font-family: OpenSans-Semibold, Arial, sans-serif;
    font-size: 15px;
    margin-top: 0;
}

.sf-schools-list h2 {
    font-family: OpenSans-Semibold, Arial, sans-serif;
    font-size: 15px;
    margin: 0 0 16px 0;
    color: #333333;
}

.sf-list--schools {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 20px;
}

@media (min-width: 992px) {
    .sf-list--schools .sf-list__item {
        padding-right: 12px;
    }

    .sf-list--schools {
        gap: 25px;
    }
}

.sf-list--schools .sf-list__item {
    display: flex;
    align-items: center;
    gap: 20px;
    justify-content: flex-start;
    width: 100%;
    box-sizing: border-box;
    min-width: 0;
    max-width: 100%;
}

.sf-listlink {
    display: block;
    text-decoration: none;
    color: var(--sf-color-blue);
    font-family: OpenSans-Semibold, Arial, sans-serif;
    font-size: 15px;
    line-height: 18px;
}

@media (min-width: 992px) {
    .sf-listlink {
        font-size: 15px;
        line-height: 18px;
    }
}

.sf-list--schools .sf-listlink {
    flex: 1 1 auto;
    min-width: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.sf-badge {
    display: none;
    align-items: center;
    gap: 6px;
    flex: 0 0 auto;
    white-space: nowrap;
    color: #333;
    font: 13px OpenSans-Semibold, Arial, sans-serif;
}

.sf-badge > span {
    display: inline-block;
    min-width: 34px;
    padding: 1px 0;
    border-radius: 11px;
    background: rgba(253, 243, 235, 1);
    color: #333;
    font: 13px OpenSans-Semibold, Arial, sans-serif;
    text-align: center;
}

@media (min-width: 992px) {
    .sf-badge {
        display: inline-flex;

    }
}

.sf-list__more {
    display: block;
    text-align: right;
    color: var(--sf-color-blue);
    font-family: OpenSans-Semibold, Arial, sans-serif;
    font-size: 13px;
    text-decoration: none;
    margin: 6px 4px 2px 0;
}

.sf-schooltype {
    break-inside: avoid;
    -webkit-column-break-inside: avoid;
}

.sf-schooltype:not(:has(.sf-list__more)) {
    margin: 0 0 24px;
}

.sf-schooltype:has(.sf-list__more) {
    margin: 0 0 6px;
}

.sf-schooltype > .sf-list:last-child {
    margin-bottom: 0;
}

.sf-schools-row, .sf-schools-col {
    min-width: 0;
}

.sf-schools-wrap {
    flex: 1 1 0;
    min-width: 0;
    display: flex;
    flex-wrap: wrap;
    text-align: left;
    column-gap: 10px;
    row-gap: 6px;
    box-sizing: border-box;
    max-width: 100%;
}

.sf-schools-wrap > .sf-schooltype {
    width: 100%;
    break-inside: avoid;
    -webkit-column-break-inside: avoid;
}

@media (min-width: 992px) {
    .sf-schools-wrap {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        row-gap: 0;
        column-gap: 16px;
        list-style: none;
        margin: 0;
        padding: 0;
    }

    .sf-schools-wrap > .sf-schooltype {
        break-inside: avoid;
        -webkit-column-break-inside: avoid;
        width: auto;
    }
}

.sf-schools-row {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.sf-schools-side {
    display: none;
    flex: 0 0 174px;
    margin-left: 0;
    text-align: right;
}

.sf-schools-side img {
    display: block;
    width: 174px;
    height: auto;
    margin-left: auto;
}

.sf-schools-list {
    flex: 1 1 auto;
    min-width: 0;
}

@media (min-width: 992px) {
    .sf-schools-side {
        display: block;
    }

    .sf-schools-list {
        flex: 0 0 calc(100% - 174px - 16px);
        width: calc(100% - 174px - 16px);
        min-width: 0;
        box-sizing: border-box;
    }
}

.sf-form .sf-form__grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px 18px;
    max-width: 660px;
    flex-direction: column;
    padding-top: 7px;
}

.sf-field {
    position: relative;
}

.sf-field--inline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.sf-checkbox {
    -webkit-appearance: none;
    appearance: none;
    width: 30px;
    height: 30px;
    border: 1px solid #333333;
    border-radius: 4px;
    background: #fff;
    display: inline-block;
    margin: 0;
    position: relative;
    cursor: pointer;
    line-height: 1;
    flex: 0 0 30px;
}

.sf-checkbox:checked {
    background-image: url("/i/public/responsive/icon-checkmark.svg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 20px 20px;
}

.sf-checkbox:focus-visible {
    outline: 2px solid var(--sf-color-blue);
    outline-offset: 2px;
}

.sf-checkbox:hover:not(:disabled) {
    box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.05) inset;
}

.sf-checkbox:active:not(:disabled) {
    box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.07) inset;
}

.sf-checkbox:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.sf-label {
    color: #333333;
    font-family: OpenSans-Semibold, Arial, sans-serif;
    font-size: 15px;
}

md-outlined-text-field {
    --md-outlined-text-field-top-space: 8px;
    --md-outlined-text-field-bottom-space: 8px;
    --md-outlined-text-field-container-shape: 6px;
    --md-outlined-text-field-focus-outline-color: var(--sf-color-blue);
    --md-outlined-text-field-focus-outline-width: 2px;
    --md-outlined-text-field-label-text-color: #333333;
    --md-outlined-text-field-input-text-color: #333333;
    --md-outlined-text-field-label-text-font: OpenSans-Semibold, Arial, sans-serif;
    --md-outlined-text-field-input-text-font: OpenSans-Semibold, Arial, sans-serif;
    --md-outlined-text-field-input-text-size: 15px;
    --md-outlined-text-field-label-text-size: 15px;
    --md-sys-color-primary: #333333;
}

md-outlined-select {
    --md-outlined-field-top-space: 8px;
    --md-outlined-field-bottom-space: 8px;
    --md-outlined-select-text-field-outline-color: #333333;
    --md-outlined-select-text-field-outline-width: 1px;
    --md-outlined-select-text-field-focus-outline-color: var(--sf-color-blue);
    --md-outlined-select-text-field-focus-outline-width: 2px;
    --md-outlined-select-text-field-container-shape: 6px;
    --md-outlined-select-text-field-label-text-font: OpenSans-Semibold, Arial, sans-serif;
    --md-item-font: OpenSans-Semibold, Arial, sans-serif;
    --md-outlined-select-text-field-label-text-size: 15px;
    --md-outlined-select-text-field-input-text-font: OpenSans-Semibold, Arial, sans-serif;
    --md-outlined-select-text-field-input-text-size: 15px;
    --md-sys-color-primary: #333333;
    --md-menu-container-color: #ffffff;
    --md-menu-container-shape: 6px;
    --md-list-item-label-text-color: #333333;
    --md-list-item-label-text-font: OpenSans-Semibold, Arial, sans-serif;
    --md-list-item-input-text-font: OpenSans-Semibold, Arial, sans-serif;
    --md-sys-typescale-label-large-size: 15px;
    --md-menu-item-selected-container-color: #bfbfbf;
    --md-menu-list-item-container-height: 10px;
    --md-menu-item-label-text-font: OpenSans-Semibold, Arial, sans-serif;
    --md-menu-item-label-text-size: 15px;
}

md-outlined-select#salutation,
md-outlined-select[name="salutation"],
md-outlined-select[name="gender"],
select#salutation {
    width: 144px;
    cursor: pointer;
}

md-outlined-text-field[name="birthDate"],
input[name="birthDate"] {
    width: 170px;
    min-height: 40px;
}

md-outlined-text-field:focus-visible {
    outline: 2px solid var(--sf-color-blue);
    outline-offset: 2px;
}

md-outlined-text-field[name="firstName"],
md-outlined-text-field[name="lastName"],
md-outlined-text-field[name="formerLastName"],
md-outlined-text-field[name="birthName"],
md-outlined-text-field[name="school"],
md-outlined-text-field[name="email"],
input[name="firstName"],
input[name="lastName"],
input[name="formerLastName"],
input[name="birthName"],
input[name="school"],
input[type="email"][name="email"] {
    width: 100%;
}

md-outlined-text-field[name="endYear"],
input[name="endYear"] {
    width: 100%;
}
@media (min-width: 992px) {
    md-outlined-text-field[name="firstName"],
    md-outlined-text-field[name="lastName"],
    md-outlined-text-field[name="formerLastName"],
    md-outlined-text-field[name="birthName"],
    md-outlined-text-field[name="school"],
    md-outlined-text-field[name="email"],
    input[name="firstName"],
    input[name="lastName"],
    input[name="formerLastName"],
    input[name="birthName"],
    input[name="school"],
    input[type="email"][name="email"] {
        width: 328px;
    }

    md-outlined-text-field[name="endYear"],
    input[name="endYear"] {
        width: 170px;
    }
}
.sf-form__legal, .sf-form__hint {
    color: #333333;
    font-family: OpenSans, Arial, sans-serif;
    font-size: 13px;
    margin-bottom: 27px;
    max-width: 328px;
}

.sf-form__legal a {
    color: var(--sf-color-blue);
    text-decoration: none;
}

.sf-form__legal a:focus-visible {
    outline: 2px solid var(--sf-color-blue);
    outline-offset: 2px;
}

.sf-sayt-list {
    position: absolute;
    z-index: 2000;
    background: #ffffff;
    width: 100%;
    max-width: 328px;
    max-height: 300px;
    overflow-y: auto;
    padding-left: 0;
    box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.5);
    border-radius: 6px;
    margin-top: 6px;
    scrollbar-width: thin;
    scrollbar-color: rgba(0, 0, 0, 0.35) transparent;

}

.sf-sayt-list::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

.sf-sayt-list::-webkit-scrollbar-thumb {
    background: rgba(0, 0, 0, 0.35);
    border-radius: 999px;
    border: 2px solid transparent;
    background-clip: padding-box;
}

.sf-sayt-list::-webkit-scrollbar-thumb:hover {
    background: rgba(0, 0, 0, 0.5);
}

.sf-sayt-list::-webkit-scrollbar-track {
    background: transparent;
}

.sf-sayt-list::-webkit-scrollbar-button {
    display: none;
    width: 0;
    height: 0;
}

.sf-sayt-list::-webkit-scrollbar-corner {
    background: transparent;
}


.sf-sayt-list li {
    list-style: none;
    padding: 15px;
    cursor: pointer;
}

.sf-sayt-list li:hover {
    background-color: rgba(245, 245, 245, 1);

}

.sf-sayt-name {
    font-family: OpenSans, Arial, sans-serif;
    font-size: 14px;
    color: #333333;

}

.sf-sayt-name mark {
    font-weight: bold;
    background-color: transparent;

}

.sf-sayt-type {
    font-family: OpenSans, Arial, sans-serif;
    font-size: 13px;
    color: #333333;
}

.sf-outro {
    margin-top: 24px;
    display: flex;
    width: 100%;
    justify-content: space-around;
    align-items: center;
}

@media (min-width: 992px) {
    .sf-outro {
        width: 328px;
    }
}

.sf-outro__contacts,
.sf-outro__classphotos {
    position: relative;
    text-align: center;
}

.sf-outro__image {
    position: relative;
    display: inline-block;
}

.sf-outro__image--contacts img {
    display: block;
    width: 78px;
    height: 78px;
}

.sf-outro__image--classphotos img {
    display: block;
    width: 102px;
    height: 78px;
}

.sf-outro__image .sf-badge {
    position: absolute;
    top: -6px;
    right: -6px;
    display: block;
}

.sf-outro__label {
    font-family: "OpenSans-Semibold", "Open Sans", sans-serif;
    font-size: 13px;
    font-weight: 600;
    line-height: 17px;
    text-align: center;
    max-width: 140px;
    margin-left: auto;
    margin-right: auto;
    color: #333333;
}
