@font-face {
    font-family: 'Inter';
    src: url('./fonts/Inter/Inter-Regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Inter';
    src: url('./fonts/Inter/Inter-SemiBold.woff2') format('woff2');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Inter';
    src: url('./fonts/Inter/Inter-Bold.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}


#header-root, #burger-root {
    margin-top: 0;
}

html {
    margin: 0;
    padding: 0px 16px;
    scroll-behavior: smooth;
    background-color: #D7F0E2;
}

body {
    display: flex;
    flex-direction: column;
    margin: 0;
    padding: 0;
    padding-top: 80px;
}

body > * + * {
    margin-top: 100px;
}

body > #footer-root {
    margin-top: 4px;
}

#contacts-root {
    scroll-margin-top: calc(var(--header-height) + 24px);
}

@media (min-width: 770px) {

    body > * + * {
        margin-top: 120px;
    }

    html {
        padding: 0px 24px;
    }
}

@media (min-width: 1400px) {
    html {
        padding: 0px 117px;
    }

    body > * + * {
        margin-top: 150px;
    }
}

@media (min-width: 1920px) {

    html {
        padding: 0px 160px;
    }

    body {
        padding-top: 100px;
    }

}



:root {
    --header-height: 78px;
}

body {
    padding-top: var(--header-height);
}

body > #hero-root {
    margin-top: 0;
}

.header-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1300;
    background-color: #FFFFFF;
}

.header-content {
    position: relative;
    z-index: 1201;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    height: 78px;
    padding: 8px 16px;
    background-color: #FFFFFF;
    box-sizing: border-box;
}

.header-logo {
    position: relative;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    order: 0;

}

.header-logo img {
    display: block;
}

.header-logo .logo-small {
    display: block;
    width: 70px;
    height: 62px;
}

.header-logo .logo-large {
    display: none;
}

.header-menu {
    display: none;
}

.header-menu nav a {
    color: #27509B;
    text-decoration: none;
    font-family: 'Inter';
    font-size: 12px;
    line-height: 100%;
    font-weight: 400;
    letter-spacing: 0.01em;
    font-style: Regular;
    white-space: nowrap;
    transition: color 0.25s ease;
}

.header-menu nav a:hover {
    color: #376BCA;
}

.header-language {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 16px;
}

.header-language a {
    text-decoration: none;
    font-family: 'Inter';
    font-size: 14px;
    line-height: 100%;
    font-weight: 400;
    letter-spacing: 0.01em;
    font-style: Regular;
    color: #27509B;
    transition: color 0.25s ease;
}
.header-language a:hover {
    color: #376BCA;
}

.header-language a.is-active {
    color: #000000;
}

.header-button-register {
    position: relative;
    z-index: 2;
    display: none;
    justify-content: center;
    align-items: center;
    border: 1px solid #27509B;
    border-radius: 32px;
    background: #27509B;
    padding: 16px 24px;
    cursor: pointer;
    text-decoration: none;
    color: #FFFFFF;
    font-family: 'Inter';
    font-size: 14px;
    line-height: 130%;
    font-weight: 700;
    font-style: Bold;
    transition: background-color 0.25s ease, border-color 0.25s ease, color 0.25s ease;
}
.header-button-register:hover {
    background-color: #376BCA;
    border-color: #376BCA;
}

.header-burger-wrapper {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
}

@media (min-width: 500px) {

    :root {
        --header-height: 127px;
    }

    .header-content {
        position: relative;
        flex-wrap: wrap;
        justify-content: space-between;
        height: 127px;
        padding: 8px 16px 18px;
        row-gap: 16px;
        align-items: center;
    }

    .header-language {
        order: 2;
    }

    .header-button-register {
        display: inline-flex;
        order: 3;
    }

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

    .header-menu {
        order: 4;
        display: block;
        width: calc(100% + 32px);
        margin-left: -16px;
        margin-right: -16px;
        padding: 16px 16px 0;
        border-top: 1px solid #D7F0E2;
        box-sizing: border-box;
    }

    .header-menu nav {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
}

@media (min-width: 770px) {

    .header-content {
        padding: 8px 24px;
    }

}

@media (min-width: 1024px) {
    :root {
        --header-height: 86px;
    }

    .header-content {
        padding: 12px 24px;
        align-items: center;
        justify-content: space-between;
        height: 86px;
    }

    .header-menu {
        position: static;
        flex: 0 1 auto;
        width: auto;
        padding: 0;
        padding-top: 0;
        border-top: 0;
        order: 1;
        margin: 0 0;
    }

    .header-menu nav {
        gap: 32px;
    }

    .header-language {
        gap: 12px;
    }

    .header-button-register {
        display: inline-flex;
        padding: 20px 32px;
    }

    .header-button-register {
        font-size: 16px;
        line-height: 19px;
    }

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

@media (min-width: 1400px) {

    :root {
        --header-height: 107px;
    }

    .header-content {
        padding: 24px 117px;
        height: 107px;
    }

    .header-logo .logo-small {
        display: none;
    }

    .header-logo .logo-large {
        display: block;
    }
}


@media (min-width: 1920px) {

    .header-content {
        padding: 24px 160px;
    }
}



.burger-button {
    position: relative;
    z-index: 3;
    display: flex;
    width: 20px;
    height: 16px;
    padding: 0;
    border: 0;
    background: transparent;
    cursor: pointer;
}

.burger-button span {
    display: none;
}

.burger-button::before,
.burger-button::after {
    content: '';
    position: absolute;
    inset: 0;
    background-repeat: no-repeat;
    background-position: center;
    background-size: 20px 16px;
    transition: opacity 0.25s ease, filter 0.25s ease;
}

.burger-button::before {
    opacity: 1;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='16' viewBox='0 0 20 16' fill='none'%3E%3Cpath d='M0 0.5L20 0.500001' stroke='%23002366' stroke-width='1.15'/%3E%3Cpath d='M0 5.5L20 5.5' stroke='%23002366' stroke-width='1.15'/%3E%3Cpath d='M0 10.5L20 10.5' stroke='%23002366' stroke-width='1.15'/%3E%3Cpath d='M0 15.5L20 15.5' stroke='%23002366' stroke-width='1.15'/%3E%3C/svg%3E");
}

.burger-button::after {
    opacity: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='16' viewBox='0 0 20 16' fill='none'%3E%3Cpath d='M3 2L17 14' stroke='%23002366' stroke-width='1.15'/%3E%3Cpath d='M17 2L3 14' stroke='%23002366' stroke-width='1.15'/%3E%3C/svg%3E");
}

.burger-button.is-open::before {
    opacity: 0;
}

.burger-button.is-open::after {
    opacity: 1;
}

.burger-menu {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 40px;
    width: 100vw;
    height: calc(100dvh - 78px);
    padding: 48px 16px;
    box-sizing: border-box;
    background: #FFFFFF;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    z-index: 1;
    overflow-y: auto;
    transform: translateY(-16px);
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
}

.burger-menu.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    width: 100%;
    gap: 32px;
}

.burger-menu nav {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 32px;
    width: 100%;
}

.burger-menu nav a {
    color: #27509B;
    text-decoration: none;
    font-family: 'Inter';
    font-size: 24px;
    line-height: 100%;
    font-weight: 400;
    letter-spacing: 0.01em;
    text-align: left;
    font-style: Regular;
    transition: color 0.25s ease;
}

.burger-menu nav a:hover {
    color: #376BCA;
}

.burger-register-link {
    display: inline-flex;
    justify-content: flex-start;
    align-items: flex-start;
    min-width: 185px;
    padding: 20px 32px;
    border-radius: 32px;
    border: 1px solid #27509B;
    background: #27509B;
    color: #FFFFFF;
    text-decoration: none;
    font-family: 'Inter';
    font-size: 16px;
    line-height: 120%;
    font-weight: 700;
    letter-spacing: 0.01em;
    box-sizing: border-box;
    font-style: Bold;
    transition: background-color 0.25s ease, border-color 0.25s ease, color 0.25s ease;
}
.burger-register-link:hover {
    background: #376BCA;
    border-color: #376BCA;
}

@media (min-width: 500px) {
    .burger-button,
    .burger-menu {
        display: none;
    }
}



.hero-container {
    width: calc(100% + 32px);
    margin-left: -16px;
    margin-right: -16px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    padding: 48px 16px;
    gap: 24px;
    background-image:
        linear-gradient(
            264.7deg,
            rgba(45, 119, 77, 0.70) 0%,
            rgba(45, 119, 77, 0.92) 45%,
            rgba(10, 30, 18, 0.94) 100%
        ),
        url('../../images/hero.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-blend-mode: multiply, normal;
    border-bottom-left-radius: 16px;
    border-bottom-right-radius: 16px;
}

.hero-content {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.hero-text {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.hero-text h1 {
    color: #FFFFFF;
    margin: 0;
    font-style: Black;
    font-size: 32px;
    line-height: 110.00000000000001%;
    font-family: 'Inter';
    font-weight: 900;
    letter-spacing: 0%;
    text-transform: uppercase;
}

.hero-text p {
    color: #FFFFFF;
    margin: 0;
    font-size: 24px;
    line-height: 100%;
    font-family: 'Inter';
    font-weight: 400;
    font-style: Regular;
    letter-spacing: 0%;
}

.hero-text span {
    color: #A8DFFF;
    margin: 0;
    font-style: italic;
    font-size: 32px;
    line-height: 110.00000000000001%;
    font-family: 'Inter';
    font-weight: 900;
    letter-spacing: 0%;
    text-transform: uppercase;
}

.hero-divider-line {
    width: 100%;
    height: 1px;
    background-color: #FFFFFF99;
    opacity: 0.6;
}

.hero-information {
    display: flex;
    flex-direction: column;
    gap: 16px;
    max-width: 481px;
}

.hero-requests,
.hero-contacts {
    display: flex;
    align-items: flex-start;
    gap: 4px;
}

.hero-requests p {
    display: flex;
    flex-direction: column;
    color: #FFFFFF;
    margin: 0;
    font-size: 14px;
    line-height: 130%;
    font-family: 'Inter';
    font-weight: 400;
    font-style: Regular;
    letter-spacing: 0%;
}

.hero-contacts p {
    color: #FFFFFF;
    margin: 0;
    font-size: 14px;
    line-height: 130%;
    font-family: 'Inter';
    font-weight: 400;
    font-style: Regular;
    letter-spacing: 0%;
}

.hero-requests span {
    color: #A8DFFF;
    margin: 0;
    font-size: 14px;
    line-height: 130%;
    font-family: 'Inter';
    font-weight: 600;
    font-style: italic;
    letter-spacing: 0%;
}

@media (min-width: 500px) {
    .hero-text h1 {
        font-size: 40px;
    }
    .hero-container {
        padding: 64px 16px;
    }


    .hero-text p {
        font-size: 24px;
    }

    .hero-text span {
        font-size: 40px;
    }

    .hero-content {
        gap: 48px;
    }

    .hero-requests p {
        font-size: 18px;
    }

    .hero-contacts p {
        font-size: 18px;
    }

    .hero-requests span {
        font-size: 18px;
    }

    .hero-divider-line {
        max-width: 360px;
    }
}

@media (min-width: 770px) {
    .hero-text h1 {
        font-size: 56px;
    }
    .hero-container {
        padding: 96px 24px;
        margin-left: -24px;
        margin-right: -24px;
        width: calc(100% + 48px);
    }

    .hero-text p {
        font-size: 32px;
    }

    .hero-text span {
        font-size: 56px;
    }
}

@media (min-width: 1024px) {
    .hero-container {
        padding: 112px 24px;
    }
}

@media (min-width: 1400px) {
    .hero-container {
        width: calc(100% + 234px);
        margin-left: -117px;
        margin-right: -117px;
        padding: 112px 117px;
    }
}

@media (min-width: 1920px) {
    .hero-container {
        width: calc(100% + 320px);
        margin-left: -160px;
        margin-right: -160px;
        padding: 112px 160px;
    }
}



.organizators-container {
    width: calc(100% + 32px);
    margin-left: -16px;
    margin-right: -16px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: -96px;
}

.organizators-accordion {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.organizators-title {
    color: #000000;
    margin: 0;
    font-size: 24px;
    line-height: 120%;
    font-family: 'Inter';
    font-weight: 700;
    font-style: Bold;
    letter-spacing: 0%;
    text-transform: uppercase;
    border-radius: 16px;
    background-color: #FFFFFF;
    padding: 32px 16px;
    cursor: pointer;
    justify-content: space-between;
    display: flex;
}

.organizators-accordion-item {
    display: none;
    position: relative;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    transition: transform 0.3s ease, filter 0.3s ease, opacity 0.3s ease;
}

.organizators-accordion-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background-color: #D7F0E2;
    opacity: 0;
    z-index: 1;
    mix-blend-mode: multiply;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.organizators-accordion-content {
    position: relative;
    z-index: 2;
}

.organizators-accordion-item.open {
    display: block;
    background-color: #FFFFFF;
    padding: 24px 16px;
    border-radius: 16px;
    max-height: 1000px;

}


.organizators-accordion-item-image {
    width: auto;
    height: 100px;
    object-fit: contain;
}

.organizators-accordion-content {
    display: flex;
    flex-direction: row;
    gap: 16px;
    align-items: flex-start;
    justify-content: space-between;
}

.organizators-accordion-item-text {
    margin: 0;
    font-size: 16px;
    line-height: 100%;
    font-family: 'Inter';
    font-weight: 400;
    font-style: Regular;
    letter-spacing: 0%;
    color: #27509B;
    text-decoration: none;
    text-transform: none;
}

.organizators-divider {
    width: 1px;
    align-self: stretch;
    flex: 0 0 1px;
    background-color: #D7F0E2;
    opacity: 1;
}

@media (min-width: 500px) {

    .organizators-accordion-item {
        display: block;
        background-color: #FFFFFF;
        padding: 16px;
        border-radius: 16px;
    }
    .organizators-title {
        display: none;
    }
}

@media (min-width: 770px) {
    .organizators-accordion {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .organizators-accordion-item {
        box-sizing: border-box;
        flex: 0 0 calc(50% - 2px);
        max-width: calc(50% - 2px);
    }

    .organizators-container {
        margin-top: -116px;
        margin-left: -24px;
        margin-right: -24px;
        width: calc(100% + 48px);
    }
    .organizators-accordion-item.open {
        padding: 24px;

    }
}

@media (min-width: 1400px) {
    .organizators-container {
        width: calc(100% + 234px);
        margin-left: -117px;
        margin-right: -117px;
    }

    .organizators-accordion {
        flex-wrap: nowrap;
    }

    .organizators-accordion-item {
        flex: 0 0 calc((100% - 12px) / 4);
        max-width: calc((100% - 12px) / 4);
    }

    .organizators-accordion-item:hover {
        transform: translateY(-5px);
        will-change: transform;
    }

    .organizators-accordion:has(.organizators-accordion-item:hover) .organizators-accordion-item:not(:hover),
    .organizators-accordion:hover .organizators-accordion-item:not(:hover) {
        filter: blur(2px);
        opacity: 0.7;
    }

    .organizators-accordion:has(.organizators-accordion-item:hover) .organizators-accordion-item:not(:hover)::after,
    .organizators-accordion:hover .organizators-accordion-item:not(:hover)::after {
        opacity: 0.55;
    }

    .organizators-accordion-item:hover {
        filter: none;
        opacity: 1;
        transform: translateY(-2px);
        z-index: 2;
    }

    .organizators-accordion-item:hover .organizators-accordion-item-text {
        color: #376BCA;
    }

    .organizators-container {
        margin-top: -146px;
    }
}

@media (hover: none) and (pointer: coarse) {
    .organizators-accordion-item {
        transition: none;
    }
}

@media (min-width: 1920px) {
    .organizators-container {
        width: calc(100% + 320px);
        margin-left: -160px;
        margin-right: -160px;
        padding-left: 160px;
        padding-right: 160px;
    }
}



.mission-container {
    display: flex;
    flex-direction: column;
    padding: 48px 16px;
    gap: 24px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 16px;
    position: relative;
    justify-content: center;
    align-items: flex-start;
}

.mission-container::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(
            135deg,
            #A8DFFF 0%,
            #A8DFFF80 100%
        ),
        url('../../images/mission.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-blend-mode: multiply, normal;
    opacity: 0.6;
    border-radius: 16px;
    pointer-events: none;
    z-index: 0;
}

.mission-texts {
    display: flex;
    flex-direction: column;
    gap: 16px;
    max-width: 752px;
}

.mission-title {
    color: #242424;
    margin: 0;
    font-style: Bold;
    font-size: 24px;
    line-height: 120%;
    font-family: 'Inter';
    font-weight: 700;
    letter-spacing: 0%;
    text-transform: uppercase;
    position: relative;
    z-index: 1;
}

.mission-text {
    color: #242424;
    margin: 0;
    font-size: 16px;
    line-height: 140%;
    font-family: 'Inter';
    font-weight: 400;
    font-style: Regular;
    letter-spacing: 0%;
    position: relative;
    z-index: 1;
}

.mission-button {
    display: inline-block;
    padding: 12px 24px;
    background-color: #27509B;
    color: #FFFFFF;
    font-size: 14px;
    line-height: 130%;
    font-family: 'Inter';
    font-weight: 600;
    font-style: SemiBold;
    letter-spacing: 0%;
    text-decoration: none;
    border-radius: 32px;
    position: relative;
    z-index: 1;
    border: 1px solid #27509B;
    cursor: pointer;
    transition: background-color 0.25s ease, border-color 0.25s ease, color 0.25s ease;
}
.mission-button:hover {
    background-color: #376BCA;
    border-color: #376BCA;
}

@media (min-width: 500px) {

    .mission-title {
        font-size: 32px;
    }

    .mission-texts {
        gap: 24px;
    }

}

@media (min-width: 770px) {

    .mission-text {
        font-size: 18px;
    }

    .mission-container {
        gap: 32px;
        padding: 64px 24px;
    }

    .mission-texts {
        gap: 32px;
    }

}


@media (min-width: 1024px) {

    .mission-text {
        font-size: 18px;
    }

    .mission-container {
        gap: 32px;
        padding: 64px 24px;
    }

    .mission-texts {
        gap: 32px;
    }

    .mission-button {
        font-size: 16px;
        padding: 20px 32px;
    }

}


@media (min-width: 1400px) {

    .mission-container {
        gap: 32px;
        padding: 64px 48px;
    }

}



.request-container {
    width: 100%;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    padding: 48px 16px;
    gap: 24px;
    background-image:
        linear-gradient(
            264.7deg,
            rgba(45, 119, 77, 0.70) 0%,
            rgba(45, 119, 77, 0.92) 45%,
            rgba(10, 30, 18, 0.94) 100%
        ),
        url('../../images/request.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-blend-mode: multiply, normal;
    border-radius: 16px;
}

.request-content-container {
    display: flex;
    flex-direction: column;
    gap: 24px;
    max-width: 800px;
}

.request-texts {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.request-title {
    font-family: 'Inter';
    font-weight: 700;
    font-style: Bold;
    font-size: 24px;
    line-height: 120%;
    letter-spacing: 0.00em;
    text-transform: uppercase;
    color: #FFFFFF;
    margin: 0;
}

.request-description {
    font-family: 'Inter';
    font-weight: 400;
    font-style: Regular;
    font-size: 16px;
    line-height: 140%;
    letter-spacing: 0.00em;
    color: #FFFFFF;
    margin: 0;
}

.highlight {
    font-family: 'Inter';
    font-weight: 600;
    font-style: Italic;
    font-size: 16px;
    line-height: 140%;
    letter-spacing: 0%;
    color: #A8DFFF;
    margin: 0;
}

.request-description br {
    content: "";
    margin-bottom: 16px;
    display: block;
}

.bold {
    font-family: 'Inter';
    font-weight: 600;
    font-style: Bold;
    font-size: 16px;
    line-height: 140%;
    letter-spacing: 0%;
    color: #FFFFFF;
    margin: 16px 0 0;
    display: block;
}

.request-step {
    display: block;
    margin: 0;
    padding: 0;
}

.request-button-filled {
    background-color: #FFFFFF;
    color: #003366;
    border: 1px solid #FFFFFF;
    padding: 16px 24px;
    cursor: pointer;
    border-radius: 32px;
    font-family: 'Inter';
    font-weight: 700;
    font-size: 14px;
    line-height: 120%;
    letter-spacing: 0.01em;
    text-decoration: none;
    transition: background-color 0.25s ease, border-color 0.25s ease, color 0.25s ease;
}

.requests-buttons {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
    justify-content: flex-start;
}

.request-button-outline {
    background-color: transparent;
    color: #FFFFFF;
    border: 1px solid #FFFFFF;
    padding: 16px 24px;
    cursor: pointer;
    border-radius: 32px;
    font-family: 'Inter';
    font-weight: 700;
    font-size: 14px;
    line-height: 120%;
    letter-spacing: 0.01em;
    text-decoration: none;
    transition: background-color 0.25s ease, border-color 0.25s ease, color 0.25s ease;
}

.request-button-outline:hover {
    color: #9FC1FF;
    border-color: #9FC1FF;
}

.request-button-filled:hover {
    color: #27509B;
}

@media (min-width: 500px) {
    .request-title {
        font-size: 32px;
    }

    .request-texts {
        gap: 24px;
    }

    .requests-buttons {
        flex-direction: row;
        gap: 32px;
    }
}

@media (min-width: 770px) {
    .request-container {
        gap: 32px;
        padding: 64px 24px;
    }

    .request-content-container {
        gap: 32px;
    }

    .request-texts {
        gap: 32px;
    }

    .request-description,
    .highlight,
    .bold,
    .request-step {
        font-size: 18px;
    }
}

@media (min-width: 1024px) {
    .request-container {
        gap: 32px;
        padding: 64px 24px;
    }

    .request-content-container {
        gap: 32px;
    }

    .request-texts {
        gap: 32px;
    }

    .request-description,
    .highlight,
    .bold,
    .request-step {
        font-size: 18px;
    }

    .request-button-filled {
        font-size: 16px;
    }

    .request-button-outline {
        font-size: 16px;
    }
}

@media (min-width: 1400px) {
    .request-container {
        gap: 32px;
        padding: 64px 48px;
    }
}



.benefits-container {
    width: 100%;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 48px 16px;
    gap: 32px;
    background-image:
        linear-gradient(
            0deg,
            rgba(255, 255, 255, 0.5),
            rgba(255, 255, 255, 0.5)
        ),
        url('../../images/participants.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 16px;
}

.benefits-content-container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 32px;
    width: 100%;
}

.benefits-texts {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    width: 100%;
    max-width: 800px;
}

.benefits-title {
    margin: 0;
    color: #242424;
    font-family: 'Inter';
    font-weight: 700;
    font-style: Bold;
    font-size: 24px;
    line-height: 120%;
    letter-spacing: 0;
    text-transform: uppercase;
}

.benefits-description {
    color: #242424;
    font-family: 'Inter';
    font-weight: 400;
    font-style: Regular;
    font-size: 16px;
    line-height: 140%;
    letter-spacing: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.benefits-description p {
    margin: 0;
}

.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-top: 8px;
    padding-left: 10px;
}

.benefits-list-item {
    position: relative;
    display: block;
    padding-left: 10px;
}

.benefits-list-item::before {
    content: '';
    position: absolute;
    top: 0.6em;
    left: 0;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: #242424;
    transform: translateY(-50%);
}

.benefits-buttons {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 8px;
    width: 100%;
}

.benefits-buttons-row {
    display: contents;
}

.benefits-button {
    box-sizing: border-box;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    padding: 16px 24px;
    border: 1px solid #27509B;
    border-radius: 32px;
    background: #27509B;
    color: #FFFFFF;
    text-decoration: none;
    font-family: 'Inter';
    font-size: 14px;
    line-height: 120%;
    font-weight: 700;
    letter-spacing: 0.01em;
    min-height: 51px;
    height: 51px;
    max-width: 100%;
    transition: background-color 0.25s ease, border-color 0.25s ease, color 0.25s ease;
}
.benefits-button:hover {
    background: #376BCA;
    border-color: #376BCA;
}

.benefits-button-wide {
    width: fit-content;
    justify-content: flex-start;
}

.benefits-button-icon {
    flex: 0 0 16px;
    width: 16px;
    height: 16px;
    background-image: url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M8 12V1M8 12L3 6.86381M8 12L13 6.86381' stroke='white' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M1 12V15H15V12' stroke='white' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 16px 16px;
    transition: filter 0.25s ease, opacity 0.25s ease, transform 0.25s ease;
}
.benefits-button:hover .benefits-button-icon {
    background-image: url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M8 12V1M8 12L3 6.86381M8 12L13 6.86381' stroke='white' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M1 12V15H15V12' stroke='white' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

@media (min-width: 500px) {
    .benefits-title {
        font-size: 32px;
    }

    .benefits-texts {
        gap: 24px;
    }

}

@media (min-width: 770px) {
    .benefits-container {
        padding: 64px 24px;
    }

    .benefits-texts {
        gap: 32px;
    }

    .benefits-description {
        font-size: 18px;
    }
}

@media (min-width: 1024px) {
    .benefits-container {
        padding: 64px 24px;
    }

    .benefits-description {
        font-size: 18px;
    }

    .benefits-buttons {
        gap: 16px;
    }

    .benefits-button {
        font-size: 16px;
        line-height: 19px;
        padding: 20px 32px;
        min-height: 59px;
        height: 59px;
        white-space: nowrap;
    }
}

@media (min-width: 1400px) {
    .benefits-container {
        padding: 64px 48px;
    }
}



.footer-container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: calc(100% + 32px);
    margin-left: -16px;
    margin-right: -16px;
    padding: 48px 16px;
    gap: 24px;
    background: #FFFFFF;
    box-sizing: border-box;
}

.footer-links {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    width: 100%;
}

.footer-link {
    color: #27509B;
    text-decoration: none;
    font-family: 'Inter';
    font-style: medium;
    font-weight: 500;
    font-size: 16px;
    line-height: 100%;
    margin: 0;
    transition: color 0.25s ease;
}
.footer-link:hover {
    color: #376BCA;
}

.footer-copy {
    margin: 0;
    color: #000000;
    font-family: 'Inter';
    font-style: medium;
    font-weight: 500;
    font-size: 16px;
    line-height: 100%;
}

@media (min-width: 770px) {
    .footer-container {
        width: calc(100% + 48px);
        margin-left: -24px;
        margin-right: -24px;
        padding: 48px 24px;
    }
}

@media (min-width: 1400px) {
    .footer-container {
        width: calc(100% + 234px);
        margin-left: -117px;
        margin-right: -117px;
        padding: 48px 117px;
    }
}

@media (min-width: 1536px) {
    .footer-container {
        flex-direction: row;
        align-items: center;
        gap: 0;
        justify-content: space-between;
    }

    .footer-links {
        display: contents;
    }

    .footer-copy {
        order: 1;
    }

    .footer-links > :first-child {
        order: 2;
    }

    .footer-links > :last-child {
        order: 3;
    }
}

@media (min-width: 1920px) {
    .footer-container {
        width: calc(100% + 320px);
        margin-left: -160px;
        margin-right: -160px;
        padding: 48px 160px;
    }
}



.tabs {
    display: flex;
    flex-direction: column;
    gap: 0;
}


.tabs-head {
    display: flex;
    gap: 4px;
    flex-direction: row;
    width: 100%;
    align-items: center;
}

.tabs-dates-title,
.tabs-programs-title {
    cursor: pointer;
    background: #27509B;
    border-top-left-radius: 32px;
    border-top-right-radius: 32px;
    padding: 24px 20px;
    margin: 0;
    font-weight: 600;
    font-style: normal;
    font-family: 'Inter';
    font-size: 12px;
    line-height: 140%;
    letter-spacing: 0.00em;
    color: #FFFFFF;
    width: 100%;
    text-align: center;
    transition: background 0.4s ease, color 0.4s ease;
}

.tabs-dates-title:not(.active):hover,
.tabs-programs-title:not(.active):hover {
    background: #376BCA;
}

.tabs-dates-title.active,
.tabs-programs-title.active {
    background: #FFFFFF;
    color: #27509B;
}

.tabs-dates,
.tabs-programs {
    display: none;
}

.tabs-dates.active,
.tabs-programs.active {
    display: block;
}

@keyframes itemFadeIn {
    from {
        opacity: 0;
        transform: translateY(16px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.tabs-dates.active .tabs-item,
.tabs-programs.active .tabs-item {
    animation: itemFadeIn 0.35s ease both;
}

.tabs-dates.active .tabs-item:nth-child(1),
.tabs-programs.active .tabs-item:nth-child(1) { animation-delay: 0.00s; }
.tabs-dates.active .tabs-item:nth-child(2),
.tabs-programs.active .tabs-item:nth-child(2) { animation-delay: 0.07s; }
.tabs-dates.active .tabs-item:nth-child(3),
.tabs-programs.active .tabs-item:nth-child(3) { animation-delay: 0.14s; }
.tabs-dates.active .tabs-item:nth-child(4),
.tabs-programs.active .tabs-item:nth-child(4) { animation-delay: 0.21s; }
.tabs-dates.active .tabs-item:nth-child(5),
.tabs-programs.active .tabs-item:nth-child(5) { animation-delay: 0.28s; }
.tabs-dates.active .tabs-item:nth-child(6),
.tabs-programs.active .tabs-item:nth-child(6) { animation-delay: 0.35s; }

.tabs-content {
    display: flex;
    flex-direction: column;
    gap: 4px;
    background: #FFFFFF;
    padding: 24px 16px;
    border-bottom-left-radius: 16px;
    border-bottom-right-radius: 16px;
}

.tabs-item p {
    margin: 0;
    font-weight: 400;
    font-style: normal;
    font-family: 'Inter';
    font-size: 16px;
    line-height: 140%;
    letter-spacing: 0.00em;
    color: #222222;
    text-align: left;
}

.tabs-time {
    font-weight: 600;
    font-style: normal;
    font-family: 'Inter';
    font-size: 16px;
    line-height: 140%;
    letter-spacing: 0.00em;
    color: #222222;
    text-align: left;
}

.tabs-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 16px;
    background: #D7F0E2;
    border-radius: 16px;
    align-items: flex-start;
}


.tabs-item.highlight {
    background: #A8DFFF;
    color: #222222;
}


@media (min-width: 500px) {

    .tabs-dates-title,
    .tabs-programs-title {
        font-size: 16px;
    }

}

@media (min-width: 770px) {

    .tabs-content {
        padding: 24px;
        gap: 8px;
    }

    .tabs-item {
        display: grid;
        grid-template-columns: 1fr;
        gap: 8px;
        align-items: flex-start;
    }

    .tabs-dates .tabs-item {
        grid-template-columns: max-content 1fr;
    }

    .tabs-programs .tabs-item {
        grid-template-columns: 190px 1fr;
    }

    .tabs-time {
        font-size: 18px;
    }

    .tabs-item p {
        font-size: 18px;
    }

}

@media (min-width: 1400px) {

    .tabs-content {
        padding: 48px 0px;
    }

    .tabs-item {
        max-width: 800px;
        margin: 0 auto;
        width: 100%;
    }

    .tabs-content {
        justify-content: center;
        align-items: center;
    }

}



.news-container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
    justify-content: center;
}

.news-title {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 700;
    font-size: 24px;
    line-height: 140%;
    text-transform: uppercase;
    color: #000000;
    margin: 0;
}

.news-list {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 32px;
    width: 100%;
}

.news-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    width: 100%;
    cursor: pointer;
    text-decoration: none;
    color: inherit;
}

.news-image-wrapper {
    width: 100%;
    overflow: hidden;
    border-radius: 16px;
}

.news-image {
    width: 100%;
    aspect-ratio: 16 / 9;
    height: auto;
    object-fit: cover;
    border-radius: 16px;
    transition: transform 0.4s ease;
    display: block;
    will-change: transform;
}

.news-date {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 140%;
    color: #555555;
}

.news-text {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 120%;
    color: #000000;
    margin: 0;
    white-space-collapse: break-spaces;
}

.news-button {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 16px 24px;
    background: #27509B;
    border: 1px solid #27509B;
    border-radius: 32px;
    font-family: 'Inter';
    font-style: normal;
    font-weight: 700;
    font-size: 14px;
    line-height: 130%;
    color: #FFFFFF;
    text-decoration: none;
    transition: background-color 0.25s ease, border-color 0.25s ease;
}

.news-button:hover {
    background-color: #376BCA;
    border-color: #376BCA;
}


@media (min-width: 500px) {

    .news-list {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 24px 8px;
    }

    .news-title {
        font-size: 32px;
    }

}

@media (min-width: 770px) {

    .news-list {
        display: flex;
        flex-direction: row;
        gap: 8px;
    }

}

@media (min-width: 1024px) {

    .news-list {
        gap: 16px;
    }

    .news-button {
        font-size: 16px;
    }

}

@media (min-width: 1400px) {

    .news-list {
        gap: 24px;
    }

    .news-container {
        gap: 32px;
    }

    .news-item:hover .news-image {
        transform: scale(1.04);
    }
}



.partners-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

.partners-head {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.partners-title {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 700;
    font-size: 24px;
    line-height: 120%;
    text-transform: uppercase;
    color: #000000;
    margin: 0;
}

.partners-arrows {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 32px;
}

.partners-arrow {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px;
    width: 48px;
    height: 48px;
    background: #FFFFFF;
    border-radius: 100px;
    border: none;
    cursor: pointer;
    transition: background-color 0.25s ease;
}

.partners-slider {
    width: 100%;
    height: 318px;
}

.partners-slide {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 48px;
    gap: 24px;
    background: #FFFFFF;
    border-radius: 16px;
    box-sizing: border-box;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}

.partners-logo-wrapper {
    width: 100%;
    overflow: hidden;
    border-radius: 16px;
}

.partners-logo {
    width: 100%;
    height: 160px;
    object-fit: contain;
    transition: transform 0.4s ease;
    will-change: transform;
}

.partners-name {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 700;
    font-size: 16px;
    line-height: 120%;
    text-align: center;
    color: #000000;
    margin: 0;
    transition: color 0.25s ease;
}

@media (min-width: 500px) {

    .partners-container {
        gap: 32px;
    }


    .partners-title {
        font-size: 32px;
    }

}

@media (min-width: 1400px) {

    .partners-arrow:hover {
        background-color: #D6E4F7;
    }

    .partners-slide:hover .partners-logo {
        transform: scale(1.05);
    }

    .partners-slide:hover .partners-name {
        color: #376BCA;
    }
}



.contacts-container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
}

.contacts-title {
    margin: 0;
    font-family: 'Inter';
    font-style: normal;
    font-weight: 700;
    font-size: 24px;
    line-height: 120%;
    text-transform: uppercase;
    color: #000000;
}

.contacts-card {
    width: 100%;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 32px 16px;
    gap: 16px;
    background: #FFFFFF;
    border-radius: 16px;
}

.contacts-layout {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.contacts-card-title {
    margin: 0;
    font-family: 'Inter';
    font-style: normal;
    font-weight: 600;
    font-size: 24px;
    line-height: 140%;
    color: #000000;
}

.contacts-card-content {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
}

.contacts-map-card {
    width: 100%;
    height: 320px;
    background: #FFFFFF;
    border-radius: 16px;
    overflow: hidden;
}

.contacts-map {
    width: 100%;
    height: 320px;
}

.contacts-organizers-block,
.contacts-person-block {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
}

.contacts-organizers-links,
.contacts-location-block,
.contacts-person-content,
.contacts-person-texts {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.contacts-organizers-links,
.contacts-location-block {
    gap: 8px;
}

.contacts-person-content {
    gap: 12px;
}

.contacts-person-texts {
    gap: 4px;
}

.contacts-organizer-link {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 600;
    font-size: 16px;
    line-height: 140%;
    color: #27509B;
    text-decoration: none;
    transition: color 0.25s ease;
}

.contacts-organizer-link:hover,
.contacts-contact-link:hover {
    color: #376BCA;
}

.contacts-location-row,
.contacts-metro-row {
    width: 100%;
    display: flex;
    align-items: flex-start;
    gap: 4px;
}

.contacts-contact-link {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 4px;
    text-decoration: none;
    color: #27509B;
    transition: color 0.25s ease;
}

.contacts-icon {
    width: 16px;
    min-width: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.contacts-text,
.contacts-contact-text,
.contacts-person-name {
    margin: 0;
    font-family: 'Inter';
    font-style: normal;
    font-size: 16px;
    line-height: 140%;
}

.contacts-text {
    font-weight: 400;
    color: #000000;
}

.contacts-person-name {
    font-weight: 600;
    color: #000000;
}

.contacts-contact-text {
    font-weight: 400;
    color: inherit;
}

@media (min-width: 500px) {

    .contacts-container {
        gap: 32px;
    }

    .contacts-title {
        font-size: 32px;
    }
}

@media (min-width: 770px) {

    .contacts-card {
        padding: 32px 24px;
    }

}

@media (min-width: 1024px) {

    .contacts-layout {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        align-items: stretch;
    }

    .contacts-card,
    .contacts-map-card {
        width: 100%;
        max-width: none;
    }

    .contacts-map-card,
    .contacts-map {
        height: 100%;
    }
}

@media (min-width: 1400px) {

    .contacts-card {
        padding: 32px;
    }

}



.breadcrumbs {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 4px;
    width: fit-content;
    max-width: 100%;
    padding: 12px 0;
    border-radius: 16px 16px 0 0;
}

body > #breadcrumbs {
    margin-top: 0;
}

body > #accordion-root {
    margin-top: 16px;
}

.breadcrumbs,
.breadcrumbs * {
    box-sizing: border-box;
    font-family: 'Inter';
    margin: 0;
}

.breadcrumbs-link,
.breadcrumbs-separator,
.breadcrumbs-current {
    font-size: 12px;
    font-weight: 400;
    line-height: 1.4;
}

.breadcrumbs-link {
    color: #003366;
    text-decoration: none;
}

.breadcrumbs-link:visited {
    color: #003366;
}

.breadcrumbs-separator,
.breadcrumbs-current {
    color: #7A7E84;
}

@media (min-width: 500px) {
    body > #breadcrumbs {
        margin-top: 0;
    }

    body > #accordion-root {
        margin-top: 16px;
    }
}

@media (min-width: 770px) {
    body > #breadcrumbs {
        margin-top: 0;
    }

    body > #accordion-root {
        margin-top: 24px;
    }
}

@media (min-width: 1024px) {
    body > #breadcrumbs {
        margin-top: 0;
    }

    body > #accordion-root {
        margin-top: 24px;
    }
}

@media (min-width: 1400px) {
    body > #breadcrumbs {
        margin-top: 0;
    }

    body > #accordion-root {
        margin-top: 24px;
    }
}

@media (min-width: 1920px) {
    body > #breadcrumbs {
        margin-top: 0;
    }

    body > #accordion-root {
        margin-top: 24px;
    }
}



.about-accordion-section {
    width: 100%;
}

.about-accordion-section,
.about-accordion-section * {
    box-sizing: border-box;
    font-family: 'Inter';
    margin: 0;
}

.about-accordion {
    display: flex;
    flex-direction: column;
    gap: 4px;
    width: 100%;
}

.accordion-item {
    position: relative;
    isolation: isolate;
    width: 100%;
    padding: 32px 16px;
    border: 0;
    border-radius: 16px;
    background: #ffffff;
    overflow: hidden;
}

.accordion-item::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url('../../images/accordion.png');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    opacity: 0.3;
    z-index: 0;
}

.accordion-item > * {
    position: relative;
    z-index: 1;
}

.accordion-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    width: 100%;
    padding: 0;
    border: 0;
    background: transparent;
    text-align: left;
    font-size: 24px;
    font-weight: 700;
    line-height: 1.2;
    color: #000000;
    cursor: pointer;
}

.accordion-header::after {
    content: '';
    flex: 0 0 auto;
    width: 24px;
    height: 24px;
    background-image: url('../../images/plus.svg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: 24px 24px;
}

.accordion-header.is-open::after {
    transform: rotate(45deg);
}

.accordion-content {
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
    overflow: visible;
    padding-top: 24px;
    background: transparent;
}

.accordion-content.is-open {
    display: flex;
}

.accordion-content-body {
    width: 100%;
}

.accordion-rich-content {
    display: flex;
    flex-direction: column;
    gap: 24px;
    max-width: 800px;
}

.accordion-rich-block {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.accordion-rich-block h3 {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.4;
    color: #222222;
}

.accordion-rich-block h2 {
    margin: 0;
    font-size: 24px;
    font-weight: 600;
    line-height: 1.4;
    color: #222222;
}

.accordion-intro {
    font-weight: 600;
    font-size: 18px;
}

.accordion-emphasis {
    font-weight: 600;
    font-size: 18px;
}

.accordion-cta {
    align-self: flex-start;
    width: fit-content;
    max-width: 100%;
}

.accordion-content p,
.accordion-content ul {
    margin: 0;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.4;
    color: #222222;
}

.accordion-collapse-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 16px 24px;
    border: 1px solid #27509b;
    border-radius: 32px;
    background: transparent;
    color: #003366;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.4;
    text-decoration: none;
    cursor: pointer;
    align-self: flex-start;
    flex: 0 0 auto;
    transition: color 0.25s ease, border-color 0.25s ease;
}

.accordion-collapse-button::after {
    content: '';
    flex: 0 0 16px;
    width: 16px;
    height: 16px;
    background-image: url("data:image/svg+xml,%3Csvg width='16' height='2' viewBox='0 0 16 2' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1H15' stroke='%23003366' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 14px 2px;
    transition: background-image 0.25s ease;
}

.accordion-collapse-button:hover,
.accordion-collapse-button:focus-visible {
    color: #376BCA;
    border-color: #376BCA;
}

.accordion-collapse-button:hover::after,
.accordion-collapse-button:focus-visible::after {
    background-image: url("data:image/svg+xml,%3Csvg width='16' height='2' viewBox='0 0 16 2' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1H15' stroke='%23376BCA' stroke-linecap='round'/%3E%3C/svg%3E");
}

.accordion-content ul {
    padding-left: 20px;
}

.accordion-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.accordion-list-organizers li {
    color: #27509b;
    font-weight: 600;
}

.accordion-organizer-link {
    color: inherit;
    font-weight: inherit;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.accordion-organizer-link:hover {
    color: #376BCA;
}

.accordion-content li + li {
    margin-top: 0;
}

@media (min-width: 770px) {
    .accordion-item {
        padding: 32px 24px;
    }

    .accordion-header {
        padding: 0;
    }
}

@media (min-width: 1400px) {
    .accordion-item {
        padding: 48px;
    }

    .accordion-header {
        padding: 0;
    }
}



.about-navigation-section {
    width: 100%;
}

.about-navigation,
.about-navigation * {
    box-sizing: border-box;
    font-family: 'Inter';
    margin: 0;
}

.about-navigation {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    width: 100%;
}

.about-navigation-button {
    width: 100%;
    justify-content: center;
}

.about-navigation-button-download {
    min-height: 51px;
}

@media (min-width: 1024px) {
    .about-navigation {
        flex-direction: row;
        gap: 16px;
    }

    .about-navigation-button {
        flex: 1 1 0;
        width: auto;
        max-width: none;
    }

    .about-navigation-button-download {
        min-height: 59px;
    }
}



.participants-request-section {
    width: 100%;
}

.participants-nominations-section {
    display: flex;
    flex-direction: column;
    gap: 24px;
    scroll-margin-top: calc(var(--header-height) + 24px);
}

body > #participants-request-root {
    margin-top: 16px;
}

.participants-request-container {
    position: relative;
    width: 100%;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 48px 16px;
    background:
        linear-gradient(87.52deg, #0E2C1B 0%, #369D62 100%),
        url('../../images/request.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-blend-mode: multiply, normal;
    border-radius: 16px;
    gap: 32px;
}

.participants-request-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 0;
    gap: 24px;
    width: 100%;
    max-width: 800px;
    flex-grow: 1;
}

.participants-request-title {
    margin: 0;
    width: 100%;
    font-family: 'Inter';
    font-style: normal;
    font-weight: 700;
    font-size: 24px;
    line-height: 120%;
    text-transform: uppercase;
    font-feature-settings: 'pnum' on, 'lnum' on;
    color: #FFFFFF;
}

.participants-request-block {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 0;
    gap: 16px;
    width: 100%;
}

.participants-request-block-title,
.participants-request-description,
.participants-request-button,
.participants-request-venue-text {
    font-family: 'Inter';
    font-style: normal;
    font-feature-settings: 'pnum' on, 'lnum' on;
}

.participants-request-block-title {
    margin: 0;
    width: 100%;
    font-weight: 700;
    font-size: 18px;
    line-height: 140%;
    color: #FFFFFF;
}

.participants-request-description {
    margin: 0;
    width: 100%;
    font-weight: 400;
    font-size: 18px;
    line-height: 140%;
    color: #FFFFFF;
}

.participants-request-highlight {
    font-style: italic;
    color: #A8DFFF;
}

.participants-request-highlight-underlined {
    text-decoration: underline;
    text-underline-offset: 2px;
}

.participants-request-anchor {
    text-decoration-color: currentColor;
}

.participants-request-description-line {
    display: block;
}

.participants-request-venue-meta {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    width: 100%;
}

.participants-request-venue-row {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 4px;
    width: 100%;
}

.participants-request-venue-row-address {
    align-items: flex-start;
}

.participants-request-venue-icon {
    width: 16px;
    min-width: 16px;
    height: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.participants-request-venue-text {
    margin: 0;
    font-weight: 400;
    font-size: 18px;
    line-height: 140%;
    color: #FFFFFF;
}

.participants-request-venue-text-accent {
    color: #A8DFFF;
}

.participants-request-documents {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    align-self: stretch;
    gap: 16px;
    width: 100%;
    padding: 40px 32px;
    box-sizing: border-box;
    background: rgba(168, 223, 255, 0.3);
    border-radius: 32px;
}

.participants-request-documents-title {
    margin: 0;
    width: 100%;
    font-family: 'Inter';
    font-style: normal;
    font-weight: 700;
    font-size: 18px;
    line-height: 140%;
    font-feature-settings: 'pnum' on, 'lnum' on;
    color: #FFFFFF;
}

.participants-request-documents-list {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    width: 100%;
}

.participants-request-document-link {
    display: inline-flex;
    justify-content: flex-start;
    align-items: center;
    gap: 8px;
    width: fit-content;
    max-width: 100%;
    text-decoration: none;
    color: #A8DFFF;
    transition: color 0.25s ease;
}

.participants-request-document-link:hover {
    color: #D7F0E2;
}

.participants-request-document-text {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 700;
    font-size: 16px;
    line-height: 120%;
    letter-spacing: 0.01em;
    text-decoration: underline;
    text-underline-offset: 2px;
    font-feature-settings: 'pnum' on, 'lnum' on;
    color: inherit;
}

.participants-request-documents .participants-request-button-icon {
    background-image: url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M8 12V1M8 12L3 6.86381M8 12L13 6.86381' stroke='%23A8DFFF' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M1 12V15H15V12' stroke='%23A8DFFF' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.participants-request-documents .participants-request-document-link:hover .participants-request-button-icon {
    background-image: url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M8 12V1M8 12L3 6.86381M8 12L13 6.86381' stroke='%23D7F0E2' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M1 12V15H15V12' stroke='%23D7F0E2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.participants-request-button {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    padding: 16px 24px;
    border: 1px solid #27509B;
    border-radius: 32px;
    background: #27509B;
    color: #FFFFFF;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    line-height: 120%;
    letter-spacing: 0.01em;
    box-sizing: border-box;
    width: fit-content;
    max-width: 100%;
    transition: background-color 0.25s ease, border-color 0.25s ease, color 0.25s ease;
}

.participants-request-button:hover {
    background: #376BCA;
    border-color: #376BCA;
}

.participants-request-buttons {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 8px;
    width: 100%;
}

.participants-request-buttons-row {
    display: contents;
}

.participants-request-button-wide {
    width: 100%;
    justify-content: space-between;
}

.participants-request-button-icon {
    flex: 0 0 16px;
    width: 16px;
    height: 16px;
    background-image: url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M8 12V1M8 12L3 6.86381M8 12L13 6.86381' stroke='white' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M1 12V15H15V12' stroke='white' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 16px 16px;
    transition: filter 0.25s ease, opacity 0.25s ease, transform 0.25s ease;
}

.participants-request-button:hover .participants-request-button-icon {
    background-image: url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M8 12V1M8 12L3 6.86381M8 12L13 6.86381' stroke='white' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M1 12V15H15V12' stroke='white' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.participants-request-submit-button {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    align-self: flex-start;
    padding: 20px 32px;
    gap: 24px;
    border: 1px solid #FFFFFF;
    border-radius: 32px;
    background: #FFFFFF;
    color: #27509B;
    text-decoration: none;
    font-family: 'Inter';
    font-style: normal;
    font-feature-settings: 'pnum' on, 'lnum' on;
    font-weight: 700;
    font-size: 16px;
    line-height: 120%;
    letter-spacing: 0.01em;
    transition: color 0.25s ease, background-color 0.25s ease, border-color 0.25s ease;
}

.participants-request-submit-button:hover {
    color: #376BCA;
}

@media (min-width: 500px) {
    .participants-request-title {
        font-size: 32px;
    }

    .participants-nominations-section {
        gap: 32px;
    }

    .participants-request-button-wide {
        width: fit-content;
        justify-content: center;
    }

    .participants-request-documents {
        min-height: 280px;
    }
}

@media (min-width: 770px) {
    body > #participants-request-root {
        margin-top: 24px;
    }

    .participants-request-container {
        padding: 48px 24px;
    }

    .participants-request-content {
        gap: 32px;
    }
}

@media (min-width: 1024px) {
    .participants-request-buttons {
        gap: 16px;
    }

    .participants-request-button {
        font-size: 16px;
        line-height: 19px;
        padding: 20px 32px;
    }
}

@media (min-width: 1400px) {
    .participants-request-container {
        padding: 48px;
    }
}



.partners-request-section {
    width: 100%;
}

body > #partners-request-root {
    margin-top: 16px;
}

.partners-request-container {
    width: 100%;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    padding: 48px 16px;
    background-image:
        linear-gradient(
            264.7deg,
            rgba(45, 119, 77, 0.7) 0%,
            rgba(45, 119, 77, 0.92) 45%,
            rgba(10, 30, 18, 0.94) 100%
        ),
        url('../../images/partners.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-blend-mode: multiply, normal;
    border-radius: 16px;
}

.partners-request-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 32px;
    max-width: 800px;
}

.partners-request-texts {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 32px;
    width: 100%;
}

.partners-request-title {
    margin: 0;
    width: 100%;
    font-family: 'Inter';
    font-style: normal;
    font-weight: 700;
    font-size: 32px;
    line-height: 120%;
    text-transform: uppercase;
    font-feature-settings: 'pnum' on, 'lnum' on;
    color: #FFFFFF;
}

.partners-request-description {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    row-gap: 8px;
    width: 100%;
    font-family: 'Inter';
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 140%;
    font-feature-settings: 'pnum' on, 'lnum' on;
    color: #FFFFFF;
}

.partners-request-description-line {
    display: block;
    position: relative;
    padding-left: 14px;
}

.partners-request-description-line::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.7em;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: #FFFFFF;
    transform: translateY(-50%);
}

.partners-request-contacts {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    width: 100%;
}

.partners-request-contacts-title {
    margin: 0;
    width: 100%;
    font-family: 'Inter';
    font-style: normal;
    font-weight: 700;
    font-size: 18px;
    line-height: 140%;
    font-feature-settings: 'pnum' on, 'lnum' on;
    color: #FFFFFF;
}

.partners-request-contact-link {
    display: flex;
    align-items: center;
    gap: 4px;
    width: 100%;
    text-decoration: none;
    color: #A8DFFF;
    transition: color 0.25s ease;
}

.partners-request-contact-link:hover {
    color: #D7F0E2;
}

.partners-request-contact-icon {
    width: 16px;
    min-width: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.partners-request-contact-text {
    margin: 0;
    font-family: 'Inter';
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 19px;
    color: inherit;
}

@media (min-width: 770px) {
    body > #partners-request-root {
        margin-top: 24px;
    }

    .partners-request-container {
        padding: 64px 24px;
    }
}

@media (min-width: 1400px) {
    .partners-request-container {
        padding: 64px 48px;
    }
}
