﻿.header {
    overflow: hidden;
    position: relative;
    height: calc((100vw / 1920) * 540);
}
.header video {
    width: 100vw;
    height: calc((100vw / 1920) * 1080);
}
.header img {
    position: absolute;
    top: 30px;
    right: 30px;
    width: 40px;
    border-radius: 50%;
    cursor: pointer;
    padding: 5px;
    background-color: white;
}
.module {
    width: 100%;
    position: relative;
}
.module > .content {
    margin: 0 auto;
    max-width: 1040px;
    width: 100%;
    position: relative;
}
.grey-back {
    background: #F1F5F7;
}
.white-back {
    background: white;
}
.red-back {
    background: #EF451C;
}
.title {
    color: #326296;
    text-align: center;
    font-family: "Nexa";
    font-size: 32px;
    font-style: normal;
    font-weight: 900;
    line-height: 38px;
}
.subtitle {
    color: #343434;
    font-family: "Nexa";
    font-size: 24px;
    font-style: normal;
    font-weight: 900;
    line-height: 30px;
}
.caption {
    color: #343434;
    font-family: "Nexa";
    font-size: 24px;
    font-style: normal;
    font-weight: 900;
    line-height: 30px;
}
.text {
    color: #343434;
    font-family: "Nexa";
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 26px;
}
.lighttext {
    color: #8D8D8D;
    font-family: "Nexa";
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: 20px;
}
.block {
    border-radius: 4px;
    background: white;
    padding: 50px;
    display: flex;
    gap: 60px;
}
.column-60 {
    width: 60%;
}
.column-40 {
    width: 40%;
}
a.btn-red {
    border-radius: 4px;
    border-top: 1px solid #EF451C;
    border-right: 1px solid #EF451C;
    border-bottom: 3px solid #EF451C;
    border-left: 1px solid #EF451C;
    background: #EF451C;
    color: white;
    text-align: center;
    font-family: "Nexa";
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    width: fit-content;
    padding: 0 20px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
}

.btn-red:hover {
    background-color: transparent;
    text-decoration: none;
}
a.btn-white {
    border-radius: 4px;
    border-top: 1px solid #EF451C;
    border-right: 1px solid #EF451C;
    border-bottom: 3px solid #EF451C;
    border-left: 1px solid #EF451C;
    color: #EF451C;
    text-align: center;
    font-family: "Nexa";
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin-bottom: 16px;
}
.btn-white:hover {
    border-radius: 4px;
    background: #EF451C;
    color: white;
    text-decoration: none;
}
.btn-white div.icon {
    display: flex;
    align-items: center;
    justify-content: center;
    border-right: 1px solid #EF451C;
    height: 100%;
}
.btn-white svg {
    width: 18px;
    height: 18px;
    margin: 16px 20px;
}
.btn-white:hover svg path {
    fill: white;
}
.btn-white:hover div.icon {
    border-right-color: white;
}
.btn-white div:not(.icon) {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}
a.btn-ind {
    border-radius: 4px;
    border-top: 1px solid white;
    border-right: 1px solid white;
    border-bottom: 3px solid white;
    border-left: 1px solid white;
    color: white;
    text-align: center;
    font-family: "Nexa";
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 250px;
    background: transparent;
}
.btn-ind:hover {
    border-radius: 4px;
    background: white;
    color: #191919;
    text-decoration: none;
}
.btn-ind:hover svg path {
    fill: #191919;
}
.list {
    padding: 24px;
    border-radius: 4px;
    background: #B4DFFF;
    color: #343434;
    font-family: "Nexa";
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 26px;
}
.list ul {
    list-style: none;
    padding-left: 0;
}
.list ul li {
    position: relative;
    padding: 16px 0 16px 40px;
    border-bottom: solid 1px #89BDE5;
}
.list ul li:first-child {
    padding-top: 0;
}
.list ul li:last-child {
    padding-bottom: 0;
    border-bottom: unset;
}
.list ul li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 17px;
    width: 24px;
    height: 24px;
    background-image: url("/images/icons/sponsor/yes.svg");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}
.list ul li:first-child::before {
    top: 0;
}
.list ul li[data-negative="true"]::before {
    background-image: url("/images/icons/sponsor/no.svg");
}
.padding-horizontal-50 {
    padding-left: 50px;
    padding-right: 50px;
}
.padding-vertical-80 {
    padding-top: 80px;
    padding-bottom: 80px;
}
.content > video {
    width: 50%;
    height: auto;
    margin: 40px auto 0;
}
.content > .video-container {
    position: relative;
    width: 100%;
    height: auto;
    margin: 40px auto 0;
}
.content > .video-container video {
    width: 100%;
    height: auto;
}
.video-container div:has(button) {
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}
button.video-play {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: #EF451C;
    border: none;
}
button.video-play svg {
    width: 30px;
    height: auto;
}
.text-red {
    color: #EF451C;
}
.text-white {
    color: white;
}
.text-blue-10 {
    color: #9CCEF3;
}
.columns-2 {
    display: flex;
    gap: 16px;
}
.columns-3 {
    display: flex;
    gap: 16px;
}
.columns-4 {
    display: flex;
    gap: 16px;
}
.pipeline-title {
    max-width: 736px;
    width: calc(100% - 20px);
    margin-left: auto;
    margin-right: auto;
}
.goal-block .filter {
    width: 100%;
    height: 100%;
    position: absolute;
    background: #16324F;
    opacity: 0.7;
    z-index: 1;
    filter: brightness(1.5);
}
.goal-block > .content {
    position: relative;
    z-index: 2;
}
.goal-block ul {
    list-style: none;
    padding-left: 0;
}
.goal-block ul li {
    position: relative;
    padding: 8px 0 8px 40px;
}
.goal-block ul li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 9px;
    width: 24px;
    height: 24px;
    background-image: url("/images/icons/sponsor/mark.svg");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}
.goal-block ul li:first-child {
    margin-top: 16px;
}
.goal-block .col1 {
    width: 50%;
}
.goal-block .col2 {
    width: 50%;
    border-radius: 4px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    padding: 40px;
}
.goal-block .columns-2 .list-title {
    font-size: 16px;
}
.margin-bottom-8 {
    margin-bottom: 8px;
}
.margin-bottom-12 {
    margin-bottom: 12px;
}
.margin-bottom-16 {
    margin-bottom: 16px !important;
}
.margin-bottom-20 {
    margin-bottom: 20px;
}
.margin-bottom-24 {
    margin-bottom: 24px;
}
.margin-bottom-32 {
    margin-bottom: 32px !important;
}
.margin-bottom-40 {
    margin-bottom: 40px;
}
.margin-top-40 {
    margin-top: 40px;
}
.programs .columns-2 {
    gap: 32px;
}
.programs .columns-2 .col1,
.programs .columns-2 .col2 {
    width: 50%;
}
.padding-40 {
    padding: 40px;
}
.programs ul {
    list-style: none;
    margin-block-start: 0;
    margin-block-end: 0;
    padding-inline-start: 0;
}
.programs ul li {
    padding: 24px 0;
    border-bottom: solid 1px #E5EAEE;
}
.programs ul li:first-child {
    padding-top: 0;
}
.programs ul li:last-child {
    padding-bottom: 0;
}
.programs ul li:last-child {
    border-bottom: none;
}
.programs .columns-2 {
    margin-top: 0;
}
.programs .columns-2 .caption {
    margin-bottom: 0;
}
.programs .columns-2 .col1 {
    display: flex;
    align-items: center;
}
.audience cols.columns-2 {
    gap: 54px;
}
.audience cols.columns-2 > .col1 {
    display: flex;
    flex-wrap: wrap;
    align-content: space-between;
}
.audience .title {
    margin-bottom: 16px;
}
.audience .numbers {
    color: #EF451C;
    font-family: "Nexa";
    font-size: 70px;
    font-weight: 900;
    line-height: 80px;
    text-transform: uppercase;
}
.audience .description {
    color: #343434;
    font-family: "Nexa";
    font-size: 14px;
    font-weight: 700;
    line-height: 20px;
}
.card-item {
    padding: 24px 24px 40px;
    border-radius: 4px;
    background: white;
}
.card-highlight {
    color: #326296;
    font-family: "Nexa";
    font-size: 12px;
    font-weight: 700;
    line-height: 18px;
    padding: 3px 10px 2px 10px;
    border-radius: 12px;
    background: #B4DFFF;
    width: fit-content;
}
.card-title {
    color: #326296;
    font-family: "Nexa";
    font-size: 24px;
    font-weight: 900;
    line-height: 30px;
}
.card-description {
    color: #343434;
    font-family: "Nexa";
    font-size: 16px;
    font-weight: 700;
    line-height: 24px;
}
.sponsorship .filter {
    width: 100%;
    height: 100%;
    position: absolute;
    background: #16324F;
    opacity: 0.7;
    z-index: 1;
    filter: brightness(1.5);
}
.sponsorship > .content {
    position: relative;
    z-index: 2;
}
.sponsor-say .inner-wrap {
    border-left: solid 3px #EF451C;
    padding-left: 84px;
    padding-right: 84px;
}
.sponsor-say .pretitle {
    color: #3C73AE;
    font-family: "Nexa";
    font-size: 18px;
    font-weight: 700;
    line-height: 26px;
}
.sponsor-say .group {
    padding-left: 48px;
    position: relative;
}
.sponsor-say .quote-mark {
    position: absolute;
    top: 0;
    left: 0;
    width: 28px;
}
.sponsor-say .quote-mark img {
    width: 100%;
}
.text-grey-70 {
    color: #666;
}
.text-grey-100 {
    color: #343434;
}
.sponsors-line .pretitle {
    color: #343434;
    text-align: center;
    font-family: "Nexa";
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 24px;
    z-index: 2;
    position: relative;
    width: 366px;
    max-width: 100%;
    background-color: white;
    margin: 0 auto;
}
.sponsors-line .line {
    height: 5px;
    border-top: solid 1px #D0D9E0;
    position: absolute;
    top: 91px;
    left: 0;
    width: 100%;
    z-index: 1;
}
.faq ul.droped {
    list-style: none;
    margin-block-start: 0;
    margin-block-end: 0;
    padding-inline-start: 0;
    width: 100%;
}
.faq ul.droped > li {
    position: relative;
    padding: 30px 0;
    border-bottom: solid 1px #E5EAEE;
}
.faq ul.droped > li:first-child {
    padding-top: 0;
}
.faq ul.droped > li:last-child {
    padding-bottom: 0;
    border-bottom: none;
}
.faq ul.droped > li::after {
    content: "";
    position: absolute;
    right: 0;
    top: 32px;
    width: 24px;
    height: 24px;
    background-image: url("/images/icons/sponsor/down.svg");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    cursor: pointer;
}
.faq ul.droped > li:first-child::after {
    top: 9px;
}
.faq ul.droped > li.active .caption {
    color: #326296;
}
.faq ul.droped > li.active::after {
    background-image: url("/images/icons/sponsor/up.svg");
}
.faq .caption {
    padding-right: 30px;
}
.faq ul.droped > li .details {
    height: 0;
    overflow: hidden;
    transition: height 2s ease-in-out 0.5s;
}
.faq ul.droped > li.active .details {
    height: fit-content;
    margin-top: 16px;
}
.feedback .buttons {
    display: flex;
    flex-wrap: nowrap;
    gap: 16px;
    justify-content: center;
}
panel.sticky-panel {
    border-radius: 16px 16px 0 0;
    background: #191919;
    padding: 24px 32px;
    color: white;
    font-family: "Nexa";
    font-size: 18px;
    font-weight: 700;
    line-height: 26px;
    display: flex;
    flex-wrap: nowrap;
    width: 864px;
    max-width: 100%;
    align-items: center;
    justify-content: space-between;
    position: fixed;
    bottom: 0;
    margin: 0 max(0px, calc(50% - 432px));
    z-index: 2;
    gap: 10px;
}
panel.sticky-panel a {
    margin-left: unset;
    margin-right: unset;
}

@media(max-width:1040px) {
    .module > .content {
        max-width: 1040px;
        width: calc(100% - 20px);
        position: relative;
    }
    .block {
        padding: 20px;
        gap: 30px;
    }
    .padding-vertical-80 {
        padding-top: 50px;
        padding-bottom: 50px;
    }
    .padding-horizontal-50 {
        padding-left: 30px;
        padding-right: 30px;
    }
    .margin-bottom-40 {
        margin-bottom: 30px;
    }
    .sponsors-line .line {
        top: 61px;
    }
}
@media(max-width:800px) {
    .block {
        flex-wrap: wrap;
    }
    .columns-2, .columns-3, .columns-4 {
        flex-wrap: wrap;
    }
    .col1 {
        width: 100% !important;
    }
    .col2 {
        width: 100% !important;
    }
    .column-60 {
        width: 100%;
    }
    .column-40 {
        width: 100%;
    }
    button.video-play {
        width: 80px;
        height: 80px;
    }
    button.video-play svg {
        width: 24px;
    }
    .padding-vertical-80 {
        padding-top: 30px;
        padding-bottom: 30px;
    }
    .padding-horizontal-50 {
        padding-left: 20px;
        padding-right: 20px;
    }
    .margin-bottom-40 {
        margin-bottom: 20px;
    }
    .sponsor-say .inner-wrap {
        border-left: none;
        padding-left: 20px;
        padding-right: 20px;
    }
    .sponsors-line .line {
        top: 41px;
    }
}
@media(max-width:660px) {
    .title {
        font-size: 28px;
    }
    .caption {
        font-size: 22px;
    }
    .text {
        font-size: 16px;
    }
    .feedback .buttons {
        flex-wrap: wrap;
        gap: 16px;
    }
    a.btn-ind {
        width: 100%;
    }
    a.btn-red {
        padding: 0 10px;
    }
}
@media(max-width:450px) {
    .title {
        font-size: 24px;
    }
    .caption {
        font-size: 20px;
    }
    panel.sticky-panel {
        flex-wrap: wrap;
        padding: 14px 15px;
    }
    panel.sticky-panel a {
        width: 100%;
    }
}
