*,
*::before,
*::after {
    -webkit-box-sizing: inherit;
    box-sizing: inherit;
    font-family: inherit;
}

body {
    font-family: "Unbounded", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
    box-sizing: border-box;
}

.display-none {
    display: none !important;
}

.alert {
    max-width: 300px;
    position: absolute;
    top: 10px;
    right: 20px;
    padding: 20px;
    margin-bottom: 1rem;
    border: 1px solid transparent;
    -webkit-border-radius: .25rem;
    border-radius: .25rem;
}

.alert ul {
    list-style: none;
}

.alert--error {
    color: #721c24;
    background-color: #f8d7da;
    border-color: #f5c6cb;
}

.alert--success {
    color: #155724;
    background-color: #d4edda;
    border-color: #c3e6cb;
}

.alert--fixed {
    position: fixed;
    top: 90px;
    z-index: 100;
}

a.disabled {
    pointer-events: none;
    cursor: default;
}

a {
    color: #0a53be;
}

.btn {
    padding: 16px 24px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    line-height: 150%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    background: unset;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border: unset;
    transition: 0.5s ease;
}

.btn--blue {
    background: #3259e8;
    color: #fff;
}

.btn--transparent {
    color: #fff;
    background: none;
    border: 2px solid #fff;
}
.btn--white {
    color: #3259e8;
    background: #fff;
    border: 2px solid #3259e8;
}

.btn--white:hover, .btn--blue:hover {
    opacity: 0.8;
    transition: 0.5s ease;
}

.btn--gray {
    background: #e2e5eb;
    color: #000;
}

.btn--gray:hover {
    background: #BDBDBD;
}

.btn {
    transition: 0.5s ease;
}

.container {
    max-width: 1440px;
    padding: 0 32px;
    margin: 0 auto;
}

h1, .section__title {
    font-weight: 600;
    font-size: 52px;
    line-height: 120%;
    text-align: center;
    margin-bottom: 40px;
}

h3 {
    font-weight: 600;
    font-size: 28px;
    line-height: 114%;
    text-align: center;
    color: #181d27;
    margin-bottom: 24px;
}

h2 {
    font-weight: 500;
    font-size: 40px;
    line-height: 120%;
    text-align: center;
    margin-bottom: 64px;
}

.accordion {
    width: calc(100% + 32px + 32px);
    margin: 0 -32px;
}

.accordion-item {

}

.accordion-header {
    border-bottom: 1px solid #e9eaeb;
    border-top: 1px solid #e9eaeb;
    cursor: pointer;
    padding: 24px 32px;
    font-weight: 500;
    font-size: 24px;
    line-height: 137%;
    color: #000;

    background-image: url("/img/accordion-open.svg");
    background-repeat: no-repeat;
    background-position: 100% 50%;
}

.accordion-header--active {
    background-image: url("/img/accordion-close.svg");
    border-bottom: none;
}

.accordion-header:hover {
    background-color: #eaeaea;
}

.accordion-content {
    display: none;
}

.accordion-content--calendar {
    background: #f1f1f1;
    padding: 32px;
}

.accordion-content.active {
    display: block;
}

.accordion__desc-text {
    padding: 16px 32px;
}

.input {
    border: 1px solid #d5d7da;
    border-radius: 8px;
    padding: 10px 14px;
    height: 44px;
    box-shadow: 0 1px 2px 0 rgba(10, 13, 18, 0.05);
    background: #fff;

    font-weight: 300;
    font-size: 14px;
    line-height: 171%;
    color: #181d27;
}

.input--short {
    max-width: 343px;
}

.select {
    border: 1px solid #d5d7da;
    border-radius: 8px;
    padding: 10px 14px;
    height: 44px;
    box-shadow: 0 1px 2px 0 rgba(10, 13, 18, 0.05);
    background: #fff;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;

    background-image: url("/img/select-icon.svg");
    background-repeat: no-repeat;
    background-position: calc(100% - 19px) 50%;

    cursor: pointer;
}

.input:focus {
    outline: 1px solid black;
}

.select:focus {
    outline: 1px solid black;
}

.custom-checkbox input {
    position: relative;
    width: 0;
    height: 0;
}

.custom-checkbox input {
    margin-right: 40px;
}

.custom-checkbox {
    position: relative;
}

.custom-checkbox input + span {
    content: "";
    position: absolute;
    top: -4px;
    left: 0;
    /*right: 12px;*/
    width: 24px;
    height: 24px;
    border-radius: 4px;
    border: 1px solid #d5d7da;
    transition: border-color 0.3s;
    cursor: pointer;
}

.custom-checkbox input:checked + span {
    background: url('/img/checkbox-checked.svg') no-repeat center center;
    background-size: cover;
    border: none;
}

.custom-radio input {
    position: relative;
    width: 0;
    height: 0;
    margin-right: 40px;
}

.custom-radio {
    position: relative;
}

.custom-radio input + span {
    content: "";
    position: absolute;
    top: -4px;
    left: 0;
    right: 12px;
    width: 24px;
    height: 24px;
    border-radius: 100%;
    border: 1px solid #d5d7da;
    transition: border-color 0.3s;
    cursor: pointer;
}

.custom-radio input:checked + span {
    background: url('/img/radio-checked.svg') no-repeat center center;
    background-size: cover;
    border: none;
}

.custom-label {
    cursor: pointer;
}

.calendar {
    padding-top: 48px;
    padding-bottom: 48px;
    background: #f1f1f1;
}

.calendar__header {
    display: flex;
    align-items: center;
    padding-top: 34px;
}

.calendar__buy-btn {
    margin-left: auto;
}

.calendar__show-more {
    margin: 40px auto 0 auto;
    background: none;
}


.calendar__title {
    margin: 0;
}

.calendar__buy-btn {
    margin-left: auto;
}

.calendar__btns,
.switch-btns {
    margin-left: 72px;
    gap: 32px;
    display: flex;
    align-items: center;
}

.calendar__btn,
.switch-btn {
    border: none;
    font-weight: 500;
    font-size: 14px;
    line-height: 143%;
    padding-bottom: 12px;
    cursor: pointer;
}

.calendar__btn--active,
.switch-btn--active {
    color: #3259e8;
    border-bottom: 5px solid #3259e8;
    padding-bottom: 7px;
}

.calendar__cards {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
    margin-top: 48px;
}

.calendar__cards > * {
    max-width: 442px;
}


.video {
    background: #f1f1f1;
    padding: 32px 0 48px 0;
}

.video__header {
    margin-bottom: 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.video__title {

}

.video__link {

}

.video__items {

}

.video__header-title {
    margin: 0;
}

.video__item {
    border-radius: 16px;
    background: #fff;
}

.video__video-wrapper iframe {
    width: 100%;
    height: 100%;
    border-radius: 16px;
}

.video__video-wrapper {
    height: 260px;
    position: relative;
}

/*
.video__video-wrapper::before {
    border-radius: 0 16px 0 0;
    position: absolute;
    z-index: 100;
    content: "";
    width: 64px;
    height: 64px;
    left: 0;
    bottom: 0;
    background-image: url("/img/video-icon.svg");
}

.video__video-wrapper::after {
    border-radius: 0 16px 0 0;
    position: absolute;
    content: "";
    width: 64px;
    height: 64px;
    left: 0;
    bottom: 0;
    backdrop-filter: blur(53.333335876464844px);
    background: rgba(255, 255, 255, 0.17);
}*/

.video__subtitle {
    font-weight: 400;
    font-size: 12px;
    line-height: 133%;
    color: #717680;
    margin: 16px 0;
    padding: 0 16px;
}

.video__title {
    font-weight: 600;
    font-size: 20px;
    line-height: 120%;
    color: #000;
    margin-bottom: 16px;
    padding: 0 16px;
}

.video__date {
    font-weight: 400;
    font-size: 12px;
    line-height: 133%;
    color: #535862;
    padding: 0 16px 16px 16px;
}

.gallery {
    padding: 32px 4px 48px 4px;
    background: #f1f1f1;
}

.gallery__title {
    margin-bottom: 32px;
}

.gallery__item {
    display: flex;
    gap: 4px;
}

.gallery__inner-wrapper {
    width: 100%;
    display: flex;
    gap: 4px;
}

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

.gallery__big {
    border-radius: 16px;
    background-repeat: no-repeat !important;
    background-size: cover !important;
    background-position: center !important;
    width: 100%;
    height: 640px;
}

.gallery__small {
    border-radius: 16px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    height: 318px;
    width: 50%;
}

.gallery__medium {
    border-radius: 16px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    height: 318px;
    width: 100%;
}

.news {
    padding: 32px 0 48px 0;
    background: #f1f1f1;
}

.news__header {
    margin-bottom: 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.news__header-title {
    margin: 0;
}

.news__wrapper {
    display: flex;
    gap: 7px;
    height: 628px;
}

.news__big-item {
    display: flex;
    flex-direction: column;
    padding: 16px;
    width: 50%;
    height: 100%;
    background-repeat: no-repeat !important;
    background-size: cover !important;
    background-position: center !important;
    position: relative;
    border-radius: 16px;
}

.news__big-item .news__subtitle {
    margin-top: auto;
    font-weight: 400;
    font-size: 12px;
    line-height: 133%;
    color: #fff;
}

.news__big-item .news__title {
    font-weight: 600;
    font-size: 28px;
    line-height: 114%;
    color: #fff;
}

.news__big-item .news__date {
    margin-top: 16px;
    font-weight: 400;
    font-size: 12px;
    line-height: 133%;
    color: #fff;
}

.news__subtitle {
    font-weight: 400;
    font-size: 12px;
    line-height: 133%;
    color: #717680;
    margin-bottom: 16px;
}

.news__title {
    font-weight: 600;
    font-size: 16px;
    line-height: 125%;
    color: #000;
}

.news__date {
    margin-top: auto;
    font-weight: 400;
    font-size: 12px;
    line-height: 133%;
    color: #000;
}

.news__info-wrapper {
    padding: 16px;
    width: 50%;
    display: flex;
    flex-direction: column;
}

.news__items-wrapper {
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 50%;
}

.news__small-item {
    background: #fff;
    display: flex;
    width: 100%;
    border-radius: 16px;
}

.news__pic {
    background-repeat: no-repeat !important;
    background-size: cover !important;
    background-position: center !important;
    width: 50%;
    height: 100%;
    min-height: 204px;
    border-radius: 0 16px 16px 0;
}

.btn--show-all {
    font-weight: 500;
    font-size: 16px;
    line-height: 150%;
    color: #000;
    padding: 0 25px 0 0;
    position: relative;
}

.btn--show-all::after {
    top: 3px;
    right: 0;
    position: absolute;
    content: "";
    display: block;
    width: 9px;
    height: 16px;
    background: url('/img/arrow.svg');
}

.hero {
}

.hero-1 {
    height: 760px;
    position: relative;
    padding: 0 32px;

    background-image: url("/img/hero-1.jpg");
    background-repeat: no-repeat;
    background-size: cover;
}

.hero-2 {
    height: 760px;
    position: relative;
    padding: 0 32px;

    background-image: url("/img/hero-2.jpg");
    background-repeat: no-repeat;
    background-size: cover;
}

.hero-1__subtitle {
    padding-top: 143px;
    display: flex;
    gap: 24px;
    align-items: center;
}

.hero-1__stage {
    font-weight: 400;
    font-size: 32px;
    line-height: 125%;
    color: #fff;
}

.hero-1__date {
    font-weight: 900;
    font-size: 32px;
    line-height: 125%;
    color: #db0404;
}

.hero-1__title {
    max-width: 881px;
    font-weight: 600;
    font-size: 52px;
    line-height: 123%;
    color: #fff;
    margin: 16px 0 24px 0;
}

.hero-1__desc {
    font-weight: 400;
    font-size: 18px;
    line-height: 156%;
    color: #fff;
    max-width: 642px;
}

.hero-1__timer {
    position: absolute;
    right: 32px;
    top: 143px;
}

.hero-1__timer-title {
    font-weight: 500;
    font-size: 14px;
    line-height: 143%;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 4px;
}

.timer {
    display: flex;
    justify-content: center;
    gap: 38px;
    max-width: max-content;
}

.timer .time-unit {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    width: 65px;
}

.timer .time-unit div {
    font-weight: 400;
    font-size: 48px;
    line-height: 117%;
    color: #fff;
}

.time-unit span {
    font-weight: 500;
    font-size: 12px;
    line-height: 167%;
    text-transform: uppercase;
    text-align: center;
    color: #fff;
}

.time-unit + .time-unit::before {
    content: ':';
    position: absolute;
    font-weight: 200;
    font-size: 48px;
    line-height: 117%;
    color: #fff;
    left: -25px;
    top: -4px;
}

.hero-2__title {
    padding-top: 143px;
    font-weight: 600;
    font-size: 52px;
    line-height: 123%;
    color: #fff;
    max-width: 928px;
}

.hero-2__desc {
    max-width: 667px;
    font-weight: 300;
    font-size: 18px;
    line-height: 156%;
    color: #fff;
    margin-top: 24px;
}

.hero-2__btn {
    max-width: max-content;
    background: none;
    color: white;
    border: 2px solid #d9d9d9;
    border-radius: 16px;
    padding: 20px 58px;
    margin-top: 40px;
}

.calendar__cards .calendar-card {
    min-height: auto;
    height: auto;
}

.calendar__cards .calendar-card__content {
    height: 100%;
}

.calendar__cards .calendar-card__address {
    margin-top: auto;
}

.ticket-btn {
    font-family: "Unbounded", sans-serif !important;
    padding: 10px 18px !important;
    border-radius: 12px !important;
    font-weight: 500 !important;
    font-size: 14px !important;
    line-height: 20px !important;
    text-transform: unset !important;
    box-shadow: unset !important;
    text-shadow: unset !important;
}

.btn--white.ticket-btn {
    color: #3259e8 !important;
    background: #fff !important;
    border: 2px solid #3259e8 !important;
}

.btn--blue.ticket-btn {
    color: #fff !important;
    background: #3259e8 !important;
    padding: 16px 24px !important;
}

.btn--blue.ticket-btn:hover {
    background: #fff !important;
    color: #3259e8 !important;
}

.btn--vip.ticket-btn {
    color: #fff !important;
    background: rgba(219, 4, 4, 1) !important;
    padding: 14px 10px !important;
}

.btn--vip.ticket-btn:hover {
    background: #fff !important;
    color: rgba(219, 4, 4, 1) !important
}

.menu-actions .btn--white.ticket-btn {
    padding: 16px 24px !important;
}

.contacts {
    padding-bottom: 48px;
}

.contact__title {
    text-align: left;
    margin-bottom: 40px;
    margin-top: 40px;
}

.contacts-wrapper {
    display: flex;
    justify-content: space-between;
    gap: 24px;
}

.contacts__column {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 420px;
}

.contacts__column--map {
    max-width: 932px;
    width: 100%;
}

.contacts__row {

}

.contacts__title {
    font-weight: 400;
    font-size: 12px;
    line-height: 133%;
    color: #717680;
}

.contacts__value {
    font-weight: 300;
    font-size: 16px;
    line-height: 150%;
    color: #181d27;
}

.contacts__subtitle {
    font-weight: 500;
    font-size: 18px;
    line-height: 156%;
    color: #181d27;
    text-align: left;
}

.btn-download {
    display: flex;
    gap: 8px;
}

.entity-form__file-wrapper input[type="file"] {
    display: none;
}

.signup .iti {
    width: 100%;
}

.field-signupform-is_representative_info label {
    font-size: 13px;
    margin-left: -10px;
    cursor: pointer;
}

.document {
    display: flex;
    gap: 45px;
    padding: 20px 32px;
}

.document__title {
    font-weight: 500;
    font-size: 16px;
    line-height: 150%;
    color: #000;
    margin-right: auto;
}

.document__info {
    min-width: 160px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.document__format {
    border-radius: 8px;
    padding: 4px 12px;
    background: rgba(0, 0, 0, 0.08);
    font-weight: 400;
    font-size: 16px;
    line-height: 150%;
    color: #535862;
}

.document__size {
    font-weight: 400;
    font-size: 16px;
    line-height: 150%;
    color: #535862;
}

.document__date {
    min-width: 190px;
    font-weight: 400;
    font-size: 16px;
    line-height: 150%;
    color: #535862;
    display: flex;
    align-items: center;
}

.document__btn {
    font-weight: 400;
    font-size: 16px;
    line-height: 150%;
    color: #3259e8;

    display: flex;
    gap: 4px;
    padding: 0;
}

.documents__subgroups-btns {
    display: flex;
}

.documents__subgroups-btn {
    font-weight: 400;
    font-size: 14px;
    line-height: 143%;
    padding: 16px;
    border-bottom: 1px solid #e9eaeb;
    color: #000;
    border-radius: unset;
}

.documents__subgroups-btn--active {
    border-bottom: 4px solid #3259e8;
    color: #3259e8;
}

.media-section {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.media-section + .media-section {
    margin-top: 28px;
}

.media-section .gallery__big {
    height: 440px;
}

.media-section .video__video-wrapper video {
    width: 100%;
    /*height: 100%;*/
}

.media-section .video__video-wrapper {
    height: auto;
}

.media-section .video__item {
    background: none;
    border-radius: 16px;
    overflow: hidden;
}

.media-section .video__items {
    width: 100%;
}

@media (max-width: 1200px) {
    .hero-1__timer {
        top: 104px;
        left: 32px;
    }

    .hero-1__subtitle {
        padding-top: 235px;
    }
}

@media (max-width: 1450px) {
    .calendar__cards .calendar-card {
        max-width: calc(50% - 16px);
    }
}

@media (max-width: 1100px) {
    .calendar__header {
        flex-direction: column;
        gap: 40px;
        align-items: start;
    }

    .calendar__btns,
    .switch-btns {
        margin-left: 0;
    }

    .calendar__buy-btn {
        margin-left: 0;
    }
}

@media (max-width: 1000px) {
    .news__wrapper {
        flex-direction: column;
    }

    .news__big-item {
        min-height: 294px;
        height: 294px;
        width: 100%;
    }

    .news__items-wrapper {
        width: 100%;
    }

    .news__subtitle {
        font-size: 10px;
        line-height: 160%;
    }

    .news__title {
        font-size: 20px;
        line-height: 120%;
    }

    .news__date {
        font-size: 10px;
        line-height: 160%;
    }

    .news__big-item .news__subtitle {
        top: 186.5px;
        font-size: 10px;
        line-height: 160%;
    }

    .news__big-item .news__title {
        top: 210.5px;
        font-size: 20px;
        line-height: 120%;
    }

    .news__big-item .news__date {
        top: 266.5px;
        font-size: 10px;
        line-height: 160%;
    }

    .news__wrapper {
        padding: 0;
        height: auto;
    }

    .news__info-wrapper {
        width: 100%;
    }

    .news__pic {
        min-width: 120px;
        height: auto;
        min-height: unset;
        width: 120px;
        background-position: center;
    }

    .news__small-item {
        height: auto;
    }

    .news__big-item {
        height: auto;
        min-height: 380px;
        background-position: center;
    }

    .news__big-item .news__date {
        bottom: 16px;
        top: unset;
    }
}

@media (max-width: 900px) {
    .calendar__cards .calendar-card {
        max-width: 100%;
    }

    .contacts-wrapper {
        flex-direction: column;
    }

    .contacts__column {
        max-width: 100%;
        width: 100%;
    }
}

@media (max-width: 650px) {
    .container {
        padding: 0 16px;
    }

    h1 {
        font-size: 30px;
        line-height: 120%;
    }

    h2 {
        font-size: 24px;
        line-height: 120%;
    }

    h3 {
        font-size: 20px;
        line-height: 120%;
    }

    .accordion-header {
        font-size: 20px;
        line-height: 120%;
    }

    .hero-1__title {
        font-size: 24px;
        line-height: 120%;
        margin: 9px 0 16px 0;
    }

    .hero-1__desc {
        font-size: 12px;
        line-height: 133%;
    }

    .hero-1__stage {
        font-size: 18px;
        line-height: 156%;
    }

    .hero-1__date {
        font-size: 20px;
        line-height: 140%;
    }

    .hero-1__timer-title {
        font-size: 10px;
        line-height: 160%;
    }

    .time-unit span {
        font-size: 7px;
        line-height: 200%;
    }

    .timer .time-unit div {
        font-size: 27px;
        line-height: 117%;
    }

    .hero-2, .hero-1 {
        height: 651px;
    }

    .hero-1 {
        background-image: url("/img/hero-1-mobile.jpg");
        padding: 0 16px;
        background-position: center;
    }

    .hero-1:before {
        content: '';
        display: block;
        width: 100%;
        height: 100%;
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-color: rgba(0, 0, 0, .2);
        z-index: 0;
    }

    .hero-1 * {
        position: relative;
        z-index: 1;
    }

    .hero-2 {
        background-image: url("/img/hero-2-mobile.jpg");
        padding: 0 16px;
    }

    .hero-2__title {
        font-size: 30px;
        line-height: 120%;
    }

    .hero-2__desc {
        font-size: 14px;
        line-height: 143%;
        margin-top: 16px;
    }

    .hero-2__btn {
        position: absolute;
        bottom: 72px;
        width: calc(100vw - 16px - 16px);
        max-width: 100%;
    }

    .time-unit + .time-unit::before {
        font-size: 27px;
        line-height: 117%;
        left: -11px;
    }

    .hero-1__timer {
        top: 104px;
        left: 16px;
    }

    .hero-1__subtitle {
        padding-top: 195px;
    }

    .timer {
        gap: 16px;
    }

    .timer .time-unit {
        width: 46px;
    }

    .calendar__buy-btn {
        display: none;
    }

    .calendar__cards {
        padding: 0;
    }

    .calendar-card {
        width: 100%;
        max-width: 100%;
    }

    .calendar__cards {
        gap: 16px;
    }

    .calendar__show-more {
        width: calc(100% - 16px - 16px);
        margin: 32px 16px 0 16px;
    }

    .calendar__cards .calendar-card__address {
        margin-top: 24px;
    }

    .calendar {
        padding-top: 44px;
    }

    .news {
        padding-top: 0;
        padding-bottom: 44px;
    }

    .gallery {
        padding-top: 0;
        padding-bottom: 44px;
    }

    .video {
        padding-top: 0;
        padding-bottom: 44px;
    }

    .btn--show-all span {
        display: none;
    }

    .gallery__small {
        height: 185px;
    }

    .gallery__medium {
        height: 185px;
    }

    .gallery__big {
        height: 375px;
    }

    .partners__row {
        padding-left: 16px;
        padding-right: 16px;
    }

    .news__title {
        font-size: 14px;
        margin-bottom: 8px;
    }

    .news__big-item .news__title {
        top: unset;
        bottom: 36px;
        margin-bottom: 0;
    }
}
