:root {
    interpolate-size: allow-keywords;
}

main section#hero {
    padding: 0;
    overflow: hidden;
}

main section#hero .row {
    margin: 0;
}

@media (max-width: 850px) {
    main section#hero .illustration-wrapper {
        order: -1;
    }

    main section#hero .illustration-wrapper .illustration {
        margin-left: calc(-50vw + 50%);
        margin-right: calc(-50vw + 50%);
    }

    main section#hero .illustration-wrapper #raster {
        width: 100%;
        aspect-ratio: 4/2.5;
    }

    main section#hero .illustration-wrapper #vector {
        width: 55%;
    }
}

@media (min-width: 850px) {
    main section#hero .illustration {
        margin-right: calc(100% - 50vw + 20px);
    }
}

main section#hero .illustration {
    position: relative;
}

main section#hero .illustration #vector {
    position: absolute;
    bottom: -1px;
    left: -1px;
}

main section#whatis .cards-wrapper .col:nth-child(1) .card {
    transition-delay: 0.1s;
}

main section#whatis .cards-wrapper .col:nth-child(2) .card {
    transition-delay: 0.2s;
}

main section#whatis .cards-wrapper .col:nth-child(3) .card {
    transition-delay: 0.3s;
}

main section#whatis .cards-wrapper .col:nth-child(4) .card {
    transition-delay: 0.4s;
}

main section#whatis .card {
    color: #fff;
    background-color: #0e5a67;
    border-radius: clamp(12px, 2vw, 24px);
    padding: clamp(12px, 2vw, 24px);
    height: 100%;
    box-sizing: border-box;
    position: relative;
    overflow: hidden;
    transition: opacity 0.4s, transform 0.4s;
    opacity: 0;
    transform: translateY(2vw);
}

main section#whatis .card.in-sight {
    opacity: 1;
    transform: none;
}

main section#whatis .card .icon {
    color: #9dd800;
    font-size: 3rem;
    transform: translateX(-0.3em);
}

main section#whatis .card .id svg {
    position: absolute;
    height: 100%;
    right: -5%;
    top: 0;
}

main section#whatis .card .id svg text {
    fill: rgba(255, 255, 255, 0.062745098);
    font-weight: bold;
    font-size: 70px;
    transform: translateY(50%);
}

main section#benefits {
    background-color: #0e5a67;
}

main section#benefits .benefits-wrapper .col:nth-child(1) .benefit-card {
    transition-delay: 0.05s;
}

main section#benefits .benefits-wrapper .col:nth-child(2) .benefit-card {
    transition-delay: 0.1s;
}

main section#benefits .benefits-wrapper .col:nth-child(3) .benefit-card {
    transition-delay: 0.15s;
}

main section#benefits .benefits-wrapper .col:nth-child(4) .benefit-card {
    transition-delay: 0.2s;
}

main section#benefits .benefits-wrapper .col:nth-child(5) .benefit-card {
    transition-delay: 0.25s;
}

main section#benefits .benefits-wrapper .col:nth-child(6) .benefit-card {
    transition-delay: 0.3s;
}

main section#benefits .benefits-wrapper .col:nth-child(7) .benefit-card {
    transition-delay: 0.35s;
}

main section#benefits .benefits-wrapper .col:nth-child(8) .benefit-card {
    transition-delay: 0.4s;
}

main section#benefits h2 {
    color: #fff;
}

main section#benefits .benefit-card {
    background-color: #fff;
    border-radius: clamp(12px, 2vw, 24px);
    padding: clamp(12px, 2vw, 24px);
    display: flex;
    gap: 1rem;
    height: 100%;
    box-sizing: border-box;
    transition: transform 0.4s, opacity 0.4s;
    transform: translateY(2vw);
    opacity: 0;
}

main section#benefits .benefit-card.in-sight {
    transform: none;
    opacity: 1;
}

main section#benefits .benefit-card .icon {
    width: 50px;
    flex-shrink: 0;
}

main section#benefits .benefit-card .description {
    font-weight: bold;
    font-size: clamp(18px, 1.2vw, 32px);
    hyphens: auto;
}

main section#modules .modules-wrapper {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(auto-fit, 1fr);
    gap: 20px;
}

main section#modules .modules-wrapper .card {
    border-radius: clamp(12px, 2vw, 24px);
    padding: clamp(12px, 2vw, 24px);
    box-sizing: border-box;
    display: flex;
    width: 100%;
    color: #fff;
    position: relative;
    z-index: 1;
    background-color: #0e5a67;
    transform: translateY(2vw);
    opacity: 0;
    transition: transform 0.4s, opacity 0.4s;
}

main section#modules .modules-wrapper .card:nth-child(1) {
    transition-delay: 0.05s;
}

main section#modules .modules-wrapper .card:nth-child(2) {
    transition-delay: 0.1s;
}

main section#modules .modules-wrapper .card:nth-child(3) {
    transition-delay: 0.15s;
}

main section#modules .modules-wrapper .card:nth-child(4) {
    transition-delay: 0.2s;
}

main section#modules .modules-wrapper .card:nth-child(5) {
    transition-delay: 0.25s;
}

main section#modules .modules-wrapper .card:nth-child(6) {
    transition-delay: 0.3s;
}

main section#modules .modules-wrapper .card:nth-child(7) {
    transition-delay: 0.35s;
}

main section#modules .modules-wrapper .card:nth-child(8) {
    transition-delay: 0.4s;
}

main section#modules .modules-wrapper .card.in-sight {
    opacity: 1;
    transform: none;
}

main section#modules .modules-wrapper .card .image-wrapper {
    position: absolute;
    inset: 0;
    border-radius: clamp(12px, 2vw, 24px);
    overflow: hidden;
}

main section#modules .modules-wrapper .card .image-wrapper img {
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    width: 50%;
}

main section#modules .modules-wrapper .card .data-wrapper {
    position: relative;
    z-index: 1;
}

main section#modules .modules-wrapper .card .title {
    font-size: clamp(21px, 1.5vw, 32px);
    line-height: 1.2em;
    margin-bottom: 1rem;
}

main section#modules .modules-wrapper .card .description {
    font-size: clamp(16px, 1.2vw, 24px);
}

main section#modules .modules-wrapper .card.image {
    aspect-ratio: 2/1;
    grid-column: auto/span 2;
    padding-left: calc(50% + 40px);
}

main section#modules .modules-wrapper .card.image.reverse {
    padding-left: clamp(12px, 2vw, 24px);
    padding-right: 55%;
}

main section#modules .modules-wrapper .card.image.reverse .image-wrapper img {
    width: 70%;
    margin-left: auto;
    -o-object-fit: contain;
    object-fit: contain;
    -o-object-position: bottom right;
    object-position: bottom right;
}

main section#modules .modules-wrapper .card.image.overflow {
    padding: 0;
    padding-left: 50%;
    height: 100%;
}

main section#modules .modules-wrapper .card.image.overflow .image-wrapper {
    overflow: visible !important;
}

main section#modules .modules-wrapper .card.image.overflow .image-wrapper img {
    height: unset;
    position: absolute;
    bottom: 0;
    width: calc(50% - 40px);
    margin-left: 20px;
}

@media (max-width: 460px) {
    main section#modules .modules-wrapper .card.image.overflow .image-wrapper img {
        -o-object-fit: contain;
        object-fit: contain;
        -o-object-position: left center;
        object-position: left center;
        margin-left: 20px !important;
    }
}

main section#modules .modules-wrapper .card.image.overflow .data-wrapper {
    padding: clamp(12px, 2vw, 24px);
}

@media (max-width: 600px) {
    main section#modules .modules-wrapper .card.image {
        aspect-ratio: unset;
    }
}

main section#modules .modules-wrapper .card.icon {
    flex-direction: column-reverse;
}

main section#modules .modules-wrapper .card.icon .data-wrapper {
    flex-grow: 1;
}

main section#modules .modules-wrapper .card.icon .image-wrapper {
    position: relative;
}

main section#modules .modules-wrapper .card.icon .image-wrapper img {
    height: 160px;
    max-height: 100%;
    -o-object-fit: contain;
    object-fit: contain;
    -o-object-position: left center;
    object-position: left center;
}

@media (max-width: 460px) {
    main section#modules .modules-wrapper .card.icon {
        flex-direction: column;
    }
}

main section#modules .modules-wrapper #card-1, main section#modules .modules-wrapper #card-6 {
    background-image: linear-gradient(to right, #7bcaf8, #30b1fb, #0f89c8);
}

main section#modules .modules-wrapper #card-2, main section#modules .modules-wrapper #card-3, main section#modules .modules-wrapper #card-7 {
    background-image: linear-gradient(to bottom, #ff5000, #ff9100);
}

main section#modules .modules-wrapper #card-4 {
    background-image: linear-gradient(to bottom, #82b306, #bbeb51);
}

main section#modules .modules-wrapper #card-5 {
    background-image: linear-gradient(to left, #30b1fb, #0f89c8);
}

@media (max-width: 1400px) and (min-width: 920px) {
    main section#modules .modules-wrapper {
        grid-template-columns: repeat(3, 1fr);
    }

    main section#modules .modules-wrapper .card:nth-child(2) {
        order: 2;
    }

    main section#modules .modules-wrapper .card:nth-child(5) {
        order: 1 !important;
    }

    main section#modules .modules-wrapper .card:nth-child(n+4) {
        order: 3;
    }

    main section#modules .modules-wrapper .card:nth-child(n+4):last-of-type {
        padding-right: clamp(12px, 2vw, 24px);
        grid-column: 3/4;
        grid-row: 3/5;
        aspect-ratio: 1/2.12;
        background-size: 100% auto;
        background-position: bottom center;
    }

    main section#modules .modules-wrapper .card:nth-child(n+4):last-of-type img {
        border: 1px solid green;
        width: 100% !important;
    }
}

@media (max-width: 900px) {
    main section#modules .modules-wrapper {
        grid-template-columns: repeat(2, 1fr);
    }

    main section#modules .modules-wrapper .card {
        aspect-ratio: 1/1;
    }

    main section#modules .modules-wrapper .card:nth-child(4), main section#modules .modules-wrapper .card:nth-child(n+6) {
        order: 3;
    }

    main section#modules .modules-wrapper .card.image {
        padding-left: calc(50% + clamp(12px, 2vw, 24px));
    }
}

@media (max-width: 900px) and (max-width: 600px) {
    main section#modules .modules-wrapper .card.overflow {
        overflow: hidden;
    }
}

@media (max-width: 600px) {
    main section#modules .modules-wrapper {
        grid-template-columns: 1fr;
    }

    main section#modules .modules-wrapper .card {
        flex-direction: column;
        grid-column: 1/2 !important;
        aspect-ratio: 2/1;
    }
}

@media (max-width: 450px) {
    main section#modules .modules-wrapper .card {
        padding-left: clamp(12px, 2vw, 24px) !important;
        padding-right: clamp(12px, 2vw, 24px) !important;
        padding-top: clamp(12px, 2vw, 24px) !important;
        aspect-ratio: unset;
    }

    main section#modules .modules-wrapper .card .image-wrapper {
        position: relative;
        border-radius: 0;
        width: 100%;
        border-radius: 6px;
        margin-bottom: 1rem;
        border: 2px solid #fff;
    }

    main section#modules .modules-wrapper .card .image-wrapper img {
        position: relative !important;
        bottom: unset;
        margin-left: unset !important;
        width: 100% !important;
        aspect-ratio: 2/1;
        -o-object-position: center;
        object-position: center;
    }

    main section#modules .modules-wrapper .card:nth-child(1) img {
        -o-object-position: top center !important;
        object-position: top center !important;
    }

    main section#modules .modules-wrapper #card-2 {
        order: -1;
    }
}

main section#program {
    background-color: rgba(157, 216, 0, 0.1);
    overflow: hidden;
}

main section#program .illustration {
    background-color: #fff;
    border-radius: 50%;
    width: calc(100% - 8vmax);
    margin: 4vmax;
    aspect-ratio: 1/1;
    position: relative;
}

main section#program .illustration .illustration-wrapper {
    position: relative;
    position: absolute;
    inset: 0;
}

main section#program .illustration .illustration-wrapper.in-sight .image-wrapper img {
    right: 0;
    opacity: 1;
}

main section#program .illustration .image-wrapper {
    position: relative;
    position: absolute;
    transition: width 0.4s;
    width: 120%;
    transform-origin: center center;
    top: 50%;
    left: 50%;
    transform: translateX(-50%);
    transition: transform 0.4s, opacity 0.4s;
}

main section#program .illustration .image-wrapper img {
    position: absolute;
    top: 50%;
    right: -5vw;
    width: 30%;
    transform: translateY(-50%);
    transition: right 0.6s cubic-bezier(0.66, -0.43, 0.36, 1.35), opacity 0.6s;
    opacity: 0;
}

main section#program .illustration .image-wrapper:nth-child(1) img {
    transition-delay: 0.05s;
}

main section#program .illustration .image-wrapper:nth-child(2) img {
    transition-delay: 0.1s;
}

main section#program .illustration .image-wrapper:nth-child(3) img {
    transition-delay: 0.15s;
}

main section#program .illustration .image-wrapper:nth-child(4) img {
    transition-delay: 0.2s;
}

main section#program .illustration .image-wrapper:nth-child(5) img {
    transition-delay: 0.25s;
}

@keyframes rotate-wrapper-item-1 {
    from {
        transform: translate(-50%, -50%) rotate(125deg);
    }

    to {
        transform: translate(-50%, -50%) rotate(485deg);
    }
}

@keyframes rotate-img-item-1 {
    from {
        transform: translateY(-50%) rotate(-125deg);
    }

    to {
        transform: translateY(-50%) rotate(-485deg);
    }
}

main section#program .illustration .image-wrapper:nth-child(1) {
    animation: rotate-wrapper-item-1 20s linear infinite;
}

main section#program .illustration .image-wrapper:nth-child(1) img {
    animation: rotate-img-item-1 20s linear infinite;
    transform: translateY(-50%) rotate(-125deg);
}

@keyframes rotate-wrapper-item-2 {
    from {
        transform: translate(-50%, -50%) rotate(50deg);
    }

    to {
        transform: translate(-50%, -50%) rotate(410deg);
    }
}

@keyframes rotate-img-item-2 {
    from {
        transform: translateY(-50%) rotate(-50deg);
    }

    to {
        transform: translateY(-50%) rotate(-410deg);
    }
}

main section#program .illustration .image-wrapper:nth-child(2) {
    animation: rotate-wrapper-item-2 20s linear infinite;
}

main section#program .illustration .image-wrapper:nth-child(2) img {
    animation: rotate-img-item-2 20s linear infinite;
    transform: translateY(-50%) rotate(-50deg);
}

@keyframes rotate-wrapper-item-3 {
    from {
        transform: translate(-50%, -50%) rotate(-25deg);
    }

    to {
        transform: translate(-50%, -50%) rotate(335deg);
    }
}

@keyframes rotate-img-item-3 {
    from {
        transform: translateY(-50%) rotate(25deg);
    }

    to {
        transform: translateY(-50%) rotate(-335deg);
    }
}

main section#program .illustration .image-wrapper:nth-child(3) {
    animation: rotate-wrapper-item-3 20s linear infinite;
}

main section#program .illustration .image-wrapper:nth-child(3) img {
    animation: rotate-img-item-3 20s linear infinite;
    transform: translateY(-50%) rotate(25deg);
}

@keyframes rotate-wrapper-item-4 {
    from {
        transform: translate(-50%, -50%) rotate(-100deg);
    }

    to {
        transform: translate(-50%, -50%) rotate(260deg);
    }
}

@keyframes rotate-img-item-4 {
    from {
        transform: translateY(-50%) rotate(100deg);
    }

    to {
        transform: translateY(-50%) rotate(-260deg);
    }
}

main section#program .illustration .image-wrapper:nth-child(4) {
    animation: rotate-wrapper-item-4 20s linear infinite;
}

main section#program .illustration .image-wrapper:nth-child(4) img {
    animation: rotate-img-item-4 20s linear infinite;
    transform: translateY(-50%) rotate(100deg);
}

@keyframes rotate-wrapper-item-5 {
    from {
        transform: translate(-50%, -50%) rotate(-175deg);
    }

    to {
        transform: translate(-50%, -50%) rotate(185deg);
    }
}

@keyframes rotate-img-item-5 {
    from {
        transform: translateY(-50%) rotate(175deg);
    }

    to {
        transform: translateY(-50%) rotate(-185deg);
    }
}

main section#program .illustration .image-wrapper:nth-child(5) {
    animation: rotate-wrapper-item-5 20s linear infinite;
}

main section#program .illustration .image-wrapper:nth-child(5) img {
    animation: rotate-img-item-5 20s linear infinite;
    transform: translateY(-50%) rotate(175deg);
}

main section#program .illustration .coin-wrapper {
    width: 40%;
    aspect-ratio: 1/1;
    top: 50%;
    left: 50%;
    position: absolute;
    transform: translate(-50%, -50%);
}

@media (max-width: 800px) {
    main section#program .illustration {
        width: calc(100% - 16vmax);
        margin: 8vmax;
    }
}

@media (max-width: 400px) {
    main section#program .illustration {
        width: 240px;
        margin: calc((100vw - 240px) / 2);
    }
}

main section#teachers {
    overflow: hidden;
}

main section#teachers .slider-wrapper {
    position: relative;
}

main section#teachers .slider-wrapper:before {
    content: "";
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100vw;
    height: 40%;
    transform: translate(-50%, -50%);
    background-color: #9dd800;
}

main section#teachers .slider-wrapper .swiper-slide {
    height: unset;
}

main section#teachers .slider-wrapper .teacher-card {
    height: 100%;
    background-color: #fff;
    box-sizing: border-box;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    border-radius: clamp(12px, 2vw, 24px);
    padding: clamp(12px, 2vw, 24px);
    display: flex;
    gap: 2rem;
}

main section#teachers .slider-wrapper .teacher-card .image-wrapper {
    width: 140px;
    flex-shrink: 0;
}

main section#teachers .slider-wrapper .teacher-card .image-wrapper img {
    border-radius: 50%;
}

main section#teachers .slider-wrapper .teacher-card .data-wrapper {
    padding-top: 1.4rem;
}

main section#teachers .slider-wrapper .teacher-card .data-wrapper .fio {
    font-size: clamp(18px, 2vw, 26px);
    margin-bottom: 0.5rem;
}

main section#teachers .slider-wrapper .teacher-card .data-wrapper .regalia {
    color: #888;
    font-size: clamp(14px, 1.5vw, 16px);
}

@media (max-width: 900px) {
    main section#teachers .slider-wrapper .teacher-card {
        flex-direction: column;
        gap: 1rem;
    }

    main section#teachers .slider-wrapper .teacher-card .image-wrapper {
        width: 120px;
    }

    main section#teachers .slider-wrapper .teacher-card .data-wrapper {
        padding-top: 0;
    }
}

main section#teachers .swiper-pagination {
    position: relative;
    bottom: unset;
    left: unset;
    width: -moz-fit-content;
    width: fit-content;
    transform: none;
    margin: auto;
    padding-bottom: 4px;
}

main section#teachers .swiper-pagination-bullet {
    width: 1rem;
    height: 1rem;
    transition: all 0.2s;
}

main section#teachers .swiper-pagination-bullet-active {
    background-color: #0e5a67;
}

main section#teachers .swiper {
    padding: 2vmax 1vmax;
    box-sizing: border-box;
    width: calc(100% + 2vmax);
    margin-left: -1vmax;
}

main section#faq {
    background-color: #0e5a67;
    color: #fff;
    position: relative;
    background-image: url("../../img/question.svg");
    background-size: contain;
    background-position: right center;
    background-repeat: no-repeat;
}

@media (max-width: 750px) {
    main section#faq {
        background-size: cover;
        background-position: center center;
    }
}

main section#faq h2 {
    color: #fff;
}

main section#faq .collapsible {
    border-top: 1px solid rgba(255, 255, 255, 0.1882352941);
}

main section#faq .collapsible:last-of-type {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1882352941);
}

main section#faq .collapsible .collapsible-title {
    display: flex;
    font-size: clamp(1.2rem, 1.8vmax, 1.7rem);
    padding: 1rem 0;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: background-color 0.2s;
}

main section#faq .collapsible .collapsible-title:hover {
    background-color: rgba(255, 255, 255, 0.062745098);
}

main section#faq .collapsible .collapsible-title:after {
    content: "\e80a";
    font-family: "icon";
}

main section#faq .collapsible .collapsible-content {
    display: grid;
    grid-template-rows: 0fr;
    overflow: hidden;
    transition: grid-template-rows 0.2s;
}

main section#faq .collapsible .collapsible-content .answer-wrapper {
    min-height: 0;
    color: rgba(255, 255, 255, 0.6666666667);
}

main section#faq .collapsible .collapsible-content .answer-wrapper:after, main section#faq .collapsible .collapsible-content .answer-wrapper:before {
    content: "";
    display: block;
    width: 100%;
    height: 0;
    transition: height 0.2s;
}

main section#faq .collapsible.open .collapsible-content {
    grid-template-rows: 1fr;
}

main section#faq .collapsible.open .collapsible-content .answer-wrapper:after, main section#faq .collapsible.open .collapsible-content .answer-wrapper:before {
    height: 1.6rem;
}

main section#curator {
    background-color: rgba(157, 216, 0, 0.1);
}

main section#curator .curator-card {
    background-color: #fff;
    padding: clamp(12px, 2vw, 24px);
    border-radius: clamp(12px, 2vw, 24px);
    display: flex;
    gap: 2rem;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.1);
}

main section#curator .curator-card .image-wrapper {
    width: 120px;
    flex-shrink: 0;
}

main section#curator .curator-card .image-wrapper img {
    border-radius: 12px;
}

main section#curator .curator-card .position {
    color: #888;
}

main section#curator .curator-card .name {
    font-size: clamp(1.2rem, 2vmax, 2.6rem);
    font-weight: bold;
    color: #0e5a67;
    margin: 1rem 0;
}

main section#curator .curator-card .contacts {
    display: table;
    width: 100%;
    margin-top: 1rem;
}

main section#curator .curator-card .contacts .contacts-row {
    display: table-row;
}

main section#curator .curator-card .contacts .contacts-entry {
    display: table-cell;
    width: 40%;
    white-space: nowrap;
    padding: 0.2rem 0.2rem 0.2rem 0;
}

main section#curator .curator-card .contacts .contacts-entry a {
    color: #0e5a67;
    text-decoration: none;
}

@media (max-width: 600px) {
    main section#curator .curator-card .contacts, main section#curator .curator-card .contacts .contacts-row, main section#curator .curator-card .contacts .contacts-row .contacts-entry {
        display: block !important;
    }
}

@media (max-width: 800px) {
    main section#curator .curator-card {
        flex-direction: column;
    }
}

main section#contacts {
    padding: 0;
}

main section#contacts #map {
    background-color: silver;
    width: 100%;
    aspect-ratio: 2.5/1;
    min-height: 500px;
}

@media (max-width: 600px) {
    main section#contacts #map {
        min-height: unset;
        width: 100%;
        aspect-ratio: 1/1;
    }
}

main section#contacts #map .map-label {
    width: 600px;
    max-width: 80vw;
    position: absolute;
    bottom: 20px;
    transform: translateX(-50%);
    background-color: #fff;
    padding: clamp(12px, 2vw, 24px);
    box-sizing: border-box;
    border-radius: clamp(12px, 2vw, 24px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

main section#contacts #map .map-label__tail {
    position: absolute;
    top: 100%;
    left: calc(50% - 15px);
    border: 15px solid transparent;
    border-top-color: #fff;
}

@media (max-width: 640px) {
    main section#contacts #map .map-label {
        display: none;
    }
}