/* <editor-fold desc="MAIN | Base tags styles"> */
* {
    font-weight: inherit;
    border: 0;
    vertical-align: baseline;
    cursor: default;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
h1, h2, h3, h4, h5, h6 { margin: 0; }
a, a * {
    color: #0776b7;
    text-decoration: none;
    cursor: pointer;
}
a:focus-visible { outline: 3px solid #fff; }
input, textarea {
    outline: none;
    cursor: text;
}
textarea { resize: none; }
strong, b { font-weight: 700; }
em { font-style: italic; }
ul {
    margin: 0;
    padding: 0;
}
p { margin: 0; }
img {
    display: block;
    width: 100%;
    height: auto;
}
img.lazy {
    opacity: 0;
    transition: opacity .3s;
}
img.lazy.loaded { opacity: 1; }
.lazy-svg {
    opacity: 0;
    transition: opacity .5s;
}
.lazy-svg.loaded { opacity: 1; }
.lazy-svg svg { display: block; }
/* </editor-fold> */
/* <editor-fold desc="MAIN | Base layout"> */
html {
    display: block;
    height: 100%;
    font-size: 10px;
    line-height: 1.33;
}
body {
    display: flex;
    position: relative;
    margin: 0;
    height: 100%;
    flex-direction: column;
    color: #f8f9f8;
    background: #252d3c;
    font-family: "Roboto", sans-serif;
    font-optical-sizing: auto;
    font-size: 16px;
    font-weight: 400;
    line-height: 19px;
}
main {
    position: relative;
    flex: 1 0 auto;
    margin-top: 84px;
}

.container {
    position: relative;
    max-width: 1180px;
    width: 100%;
    margin: 0 auto;
}
.container-1440 {
    position: relative;
    max-width: 1440px;
    width: 100%;
    margin: 0 auto;
}

@media (max-width: 1300px) {
    .container { max-width: 960px; }
}
@media (max-width: 992px) {
    .container { max-width: 720px; }
    .container.-adaptive-992 { max-width: 100%; }
    .container.-adaptive-992 .alignit { padding-left: calc((100% - 720px) / 2); }

    main { margin-top: 70px; }
}
@media (max-width: 768px) {
    .container { max-width: 540px; }
    .container.-adaptive-992 .alignit { padding-left: calc((100% - 540px) / 2); }

    main { margin-top: 46px; }
}
@media (max-width: 576px) {
    .container {
        padding-left: 10px;
        padding-right: 10px;
    }
    .container.-adaptive-992 {
        padding-left: 0;
        padding-right: 0;
    }
    .container.-adaptive-992 .alignit { padding-left: 15px; }
}
/* </editor-fold> */
/* <editor-fold desc="MAIN | Titles & Regular text sizes"> */
.t96 {
    font-family: "Montserrat", sans-serif;
    font-size: 96px;
    font-weight: 900;
    line-height: 1;
}
.t72 {
    font-family: "Montserrat", sans-serif;
    font-size: 72px;
    font-weight: 900;
    line-height: 1;
}
.t36 {
    font-family: "Montserrat", sans-serif;
    font-size: 36px;
    font-weight: 700;
    line-height: 1;
}
.t24 {
    font-family: "Montserrat", sans-serif;
    font-size: 24px;
    font-weight: 600;
    line-height: 1.2085;
}
.t24b {
    font-family: "Roboto", sans-serif;
    font-size: 24px;
    font-weight: 700;
    line-height: 1.2085;
}
.t20 {
    font-family: "Montserrat", sans-serif;
    font-size: 20px;
    font-weight: 500;
    line-height: 1.2;
}
.t16 {
    font-family: "Montserrat", sans-serif;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.25;
}
.t16b {
    font-family: "Montserrat", sans-serif;
    font-size: 16px;
    font-weight: 600;
    line-height: 1;
}
.t14 {
     font-family: "Roboto", sans-serif;
     font-size: 14px;
     font-weight: 400;
     line-height: 1.215;
}
.t14b {
    font-family: "Montserrat", sans-serif;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.215;
}

.article-content h1 {
    font-size: 32px;
    font-weight: 900;
    line-height: 1.25;
}
.article-content h2,
.article-content h3,
.article-content h4,
.article-content h5,
.article-content h6 {
    font-size: 18px;
    font-weight: 700;
    line-height: 1.556;
}

@media (max-width: 992px) {
    .t96 { font-size: 70px !important; }
    .t72 { font-size: 56px; }
    .article-content h1 { font-size: 28px; }
}
@media (max-width: 576px) {
    .t96 { font-size: 44px !important; }
    .t72 { font-size: 40px; }
    .t24 {
        font-size: 20px;
        line-height: 1.2;
    }
    .t20 {
        font-size: 16px;
        line-height: 1.25;
    }
    .t16 {
        font-size: 14px;
        line-height: 1.215;
    }
    body {
        font-size: 14px;
        line-height: 1.215;
    }
    .article-content h1 { font-size: 24px; }
    .article-content h2,
    .article-content h3,
    .article-content h4,
    .article-content h5,
    .article-content h6 {
        font-size: 16px;
    }
}
/* </editor-fold> */
/* <editor-fold desc="MAIN | Content block base styles"> */
.alignleft {
    float: left;
    margin: 0 15px 28px 0;
}
.alignright {
    float: right;
    margin: 0 0 28px 15px;
}
.aligncenter {
    display: block;
    margin: 0 auto 28px;
}
.article-content h1,
.article-content h2,
.article-content h3,
.article-content h4,
.article-content h5,
.article-content h6 {
    margin-bottom: 20px;
}
.article-content p { margin-bottom: 24px; }
.article-content p:last-child { margin-bottom: 0; }
.article-content h2 + ul,
.article-content h2 + ol,
.article-content h3 + ul,
.article-content h3 + ol,
.article-content h4 + ul,
.article-content h4 + ol,
.article-content h5 + ul,
.article-content h5 + ol,
.article-content h6 + ul,
.article-content h6 + ol {
    margin-top: -8px;
}
.article-content ul,
.article-content ol {
    margin: 0 0 24px 0;
    padding: 0 0 0 24px;
}
.article-content ul:last-child,
.article-content ol:last-child {
    margin-bottom: 0;
}
.article-content ul li:not(:last-child),
.article-content ol li:not(:last-child) {
    margin-bottom: 12px;
}
.article-content a {
    color: inherit;
    font-weight: 700;
    text-decoration: underline;
    word-break: break-word;
}
.article-content img { max-width: max-content; }
.centered {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}
.article-content iframe {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
}
/* </editor-fold> */
/* <editor-fold desc="MAIN | Admin bar"> */
body.admin-bar {
    height: calc(100% - 32px);
    margin-top: 32px;
}
@media (max-width: 782px) {
    body.admin-bar {
        height: calc(100% - 46px);
        margin-top: 46px;
    }
}
@media (max-width: 600px) { html #wpadminbar { top: -46px; } }
/* </editor-fold> */
/* <editor-fold desc="MAIN | Buttons"> */
.btn {
    display: inline-block;
    padding: 15px 20px;
    background: #ffd205;
    color: #252d3d;
    border-radius: 40px;
    font-family: "Montserrat", sans-serif;
    font-size: 16px;
    font-weight: 600;
    line-height: 20px;
    text-align: center;
    transition: background-color 0.3s;
}
.btn:hover { background: #6acfe0; }

.btn-alt {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding-top: 14px;
    padding-bottom: 14px;
    color: #f8f9f8;
    background: #f8f9f81a;
    border: 1px solid #f8f9f8;
}
.btn-alt:hover { background: #f8f9f84d; }
.btn-alt .icon-wrapper {
    width: 20px;
    height: 20px;
}
/* </editor-fold> */
/* <editor-fold desc="MAIN | Inputs"> */
input[type=text],
input[type=tel],
input[type=email],
input[type=date],
input[type=url],
textarea {
    position: relative;
    width: 100%;
    padding: 12px 16px;
    background: #fff;
    color: #221f1f;
    border: 1px solid #e2e9f3;
    border-radius: 8px;
    font-size: 16px;
    line-height: 1.5;
    transition: border-color .3s;
}
input[type=text]::placeholder,
input[type=tel]::placeholder,
input[type=email]::placeholder,
input[type=date]::placeholder,
input[type=url]::placeholder,
textarea::placeholder {
    color: #6e809a;
}
input[type=text]:focus,
input[type=tel]:focus,
input[type=email]:focus,
input[type=url]:focus,
textarea:focus {
    border-color: #eb4579;
}
input[type=text]:hover,
input[type=tel]:hover,
input[type=email]:hover,
input[type=url]:hover,
textarea:hover {
    border-color: #eb4579;
    box-shadow: 0 0 0 3px #ec578633;
}
input.error,
textarea.error {
    border-color: #f54f4f;
    box-shadow: 0 0 0 3px #ffeaeb;
}

.radio label {
    margin-left: 12px;
    color: #221f1f;
    font-size: 16px;
    line-height: 20px;
    cursor: pointer;
}

input[type=radio] {
    position: relative;
    display: inline-block;
    width: 16px;
    height: 16px;
    margin: 0;
    background: #fff;
    color: #05b04d;
    border: 1px solid #9a9a9a;
    border-radius: 50%;
    vertical-align: middle;
    line-height: 0;
    text-align: center;
    clear: none;
    cursor: pointer;
    outline: 0;
    -webkit-appearance: none;
}
input[type=radio]:focus-visible { outline: 3px solid #06ba52; }
input[type=radio]:checked { border-color: #06ba52; }
input[type=radio]:checked:before {
    content: "";
    position: absolute;
    display: block;
    top: 50%;
    left: 50%;
    width: 8px;
    height: 8px;
    background: #00a046;
    border: none;
    border-radius: 50%;
    transform: translate(-50%, -50%);
}
.input-wrapper.radio.error input[type=radio] { border-color: #f84147; }

input[type=checkbox] {
    display: inline-block;
    position: relative;
    width: 16px;
    height: 16px;
    margin: 0;
    background: #fff;
    color: #221f1f;
    border: 1px solid #eb4579;
    border-radius: 3px;
    line-height: 0;
    text-align: center;
    clear: none;
    cursor: pointer;
    outline: 0;
    -webkit-appearance: none;
}
input[type=checkbox]:active,
input[type=checkbox]:focus,
input[type=checkbox]:focus-visible,
input[type=checkbox]:hover {
    box-shadow: 0 0 0 3px #ec578633;
}
input[type=checkbox]:checked {
    background: #eb4579;
    border-color: #eb4579;
}
input[type=checkbox]:checked:before {
    content: "";
    display: block;
    position: absolute;
    top: 40%;
    left: 50%;
    width: 4px;
    height: 8px;
    border-width: 0 2px 2px 0;
    border-style: solid;
    border-color: #fff;
    transform: translate(-50%, -50%) rotate(45deg);
    cursor: pointer;
}

input[type=button].submit-btn { cursor: pointer; }
input[type=button].submit-btn:focus-visible { outline: 3px solid #06ba52; }

fieldset {
    margin: 0;
    padding: 0;
}
fieldset legend {
    display: block;
    margin: 0;
    padding: 0;
    font-size: 0;
    height: 0;
    opacity: 0;
}

form .label-hidden {
    display: inline-block;
    height: 0;
    font-size: 0;
    opacity: 0;
}
/* </editor-fold> */
/* <editor-fold desc="MAIN | Inputs RZ-styled"> */
.input-rz { position: relative; }
.input-rz input,
.input-rz textarea {
    outline:none;
}
.input-rz .placeholder {
    position: absolute;
    display: flex;
    align-items: center;
    top: 0;
    left: 12px;
    margin: 16px 0;
    padding: 0 4px;
    color:  #797878;
    font-size: 16px;
    transition: all 0.2s;
    transform-origin: 0 0;
    pointer-events: none;
}
.input-rz .placeholder:before {
    content: "";
    position: absolute;
    top: 6px;
    left: 0;
    right: 0;
    height: 8px;
    background: #fff;
    z-index: -1;
}
.input-rz.-input-ready .placeholder { transform: scale(0.75) translate(8px, -32px); }
.input-rz.-input-ready input:focus + .placeholder,
.input-rz textarea:focus + .placeholder {
    color: #eb4579;
}

.input-rz.error input {
    border: 1px solid #f54f4f;
    box-shadow: 0 0 0 3px #ffeaeb;
}
.input-rz.-input-ready.error .placeholder { color: #f54f4f; }

.input-rz .error-msg {
    display: none;
    position: absolute;
    bottom: -16px;
    left: 16px;
    color: #f54f4f;
    font-size: 11px;
    font-weight: 600;
}
.input-rz.error .error-msg { display: block; }

.input-wrapper.checkbox.error { animation: shake .25s ease-in-out 0s 3; }
@keyframes shake {
    0% { transform: translateX(0); }
    25% { transform: translateX(10px); }
    75% { transform: translateX(-10px); }
    100% { transform: translateX(0); }
}
/* </editor-fold> */

/* <editor-fold desc="GLOBAL | Base Slider styles"> */
.slick-slider {
    position: relative;
    display: block;
    box-sizing: border-box;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-touch-callout: none;
    -khtml-user-select: none;
    -ms-touch-action: pan-y;
    touch-action: pan-y;
    -webkit-tap-highlight-color: transparent;
}
.slick-list {
    position: relative;
    display: block;
    overflow: hidden;
    margin: 0;
    padding: 0;
}
.slick-list:focus { outline: none; }
.slick-list.dragging {
    cursor: pointer;
    cursor: hand;
}
.slick-slider .slick-track,
.slick-slider .slick-list {
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    -o-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}
.slick-track {
    position: relative;
    top: 0;
    left: 0;
    display: block;
    margin-left: auto;
    margin-right: auto;
}
.slick-track:before,
.slick-track:after {
    display: table;
    content: '';
}
.slick-track:after { clear: both; }
.slick-loading .slick-track { visibility: hidden; }
.slick-slide {
    display: none;
    float: left;
    height: 100%;
    min-height: 1px;
}
.slick-slide img { display: block; }
.slick-slide.slick-loading img { display: none; }
.slick-slide.dragging img { pointer-events: none; }
.slick-initialized .slick-slide { display: block; }
.slick-loading .slick-slide { visibility: hidden; }
.slick-vertical .slick-slide  {
    display: block;
    height: auto;
    border: 1px solid transparent;
}
.slick-arrow.slick-hidden { display: none; }
/* </editor-fold> */
/* <editor-fold desc="GLOBAL | Slick dots"> */
ul.slick-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    list-style: none;
}
ul.slick-dots li {
    position: relative;
    display: inline-block;
    width: 10px;
    height: 10px;
    padding: 0;
    cursor: pointer;
}
ul.slick-dots li button {
    display: block;
    width: 10px;
    height: 10px;
    padding: 0;
    color: transparent;
    background: transparent;
    border: 0;
    font-size: 0;
    line-height: 0;
    cursor: pointer;
    outline: none;
}
ul.slick-dots li button:before {
    content: "";
    position: absolute;
    inset: 0;
    background: #f8f9f833;
    border-radius: 50%;
    box-shadow: 0 2px 16px 0 #506c7a1a;
    transition: background-color .3s;
}
ul.slick-dots li.slick-active button:before { background: #eb4579; }
/* </editor-fold> */
/* <editor-fold desc="GLOBAL | Popups"> */
.overlay {
    display: none;
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: #252d3d;
    opacity: .9;
    z-index: 8;
}
.overlay:before {
    content: "";
    position: absolute;
    inset: 0;
    background: url(../images/blur.svg);
    opacity: .6;
}
.overlay:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    max-width: 560px;
    max-height: 776px;
    width: 100%;
    height: 100%;
    background: url(../images/popup_gradient.svg) bottom left;
    background-size: 560px 776px;
    z-index: -1;
}


.popup {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    width: 494px;
    min-width: 290px;
    padding: 52px;
    background: #fff;
    border-radius: 12px;
    transform: translate(-50%, -50%);
    overflow-y: auto;
    z-index: 9;
}
.popup.active { display: block; }
.popup .popup-close {
    position: absolute;
    display: block;
    top: 26px;
    right: 26px;
    width: 20px;
    height: 20px;
    margin-left: auto;
    padding: 0;
    background: transparent;
    cursor: pointer;
    transition: background-color .3s;
}
.popup .popup-close svg {
    width: 20px;
    height: 20px;
}
.popup .popup-close:focus-visible { outline: 3px solid #06ba52; }
.popup .popup-close * { cursor: pointer; }
.popup .popup-container {
    width: 100%;
    color: #252d3d;
}

.popup.rate-thank-you .popup-container { text-align: center; }
.popup.rate-thank-you .img-wrapper { width: 136px; }
.popup.rate-thank-you .contact-ty-title { padding-top: 32px; }
.popup.rate-thank-you .contact-ty-subtitle { padding-top: 12px; }
.popup.rate-thank-you .contacts { padding-top: 16px; }
.popup.rate-thank-you .contacts > div { justify-content: center; }
.popup.rate-thank-you .contacts a {
    color: #221f1f;
    font-size: 16px;
    line-height: 24px;
}

@media (max-width: 992px) {

}
@media (max-width: 576px) {
    .popup { width: calc(100% - 20px) !important; }
    .popup .popup-close {
        top: 22px;
        right: 22px;
    }
}
/* </editor-fold> */
/* <editor-fold desc="GLOBAL | POPUP | Get ticket"> */
.get-ticket.popup { width: 904px; }
.get-ticket.popup .title {
    padding-bottom: 20px;
    color: #252d3d;
    border-bottom: 1px solid #e2e9f3;
}
.get-ticket.popup .details {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
    padding-top: 20px;
}
.get-ticket.popup .details .color-label { color: #fff; }
.get-ticket.popup .details .date-location { white-space: nowrap; }
.get-ticket.popup .desc {
    padding-top: 12px;
    color: #6e809a;
}
.get-ticket.popup .form-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    padding-top: 40px;
}
.get-ticket.popup .input-wrapper:not(.checkbox) { width: calc((100% - 20px) / 2); }
.get-ticket.popup .input-wrapper.comment { width: 100%; }
.get-ticket.popup .input-wrapper.promo { display: flex; }
.get-ticket.popup .input-wrapper.promo input {
    width: calc(100% - 169px);
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}
.get-ticket.popup .input-wrapper.promo .popup-promo-submit {
    position: relative;
    width: 169px;
    padding: 16px 10px;
    color: #6e809a;
    background: #edf1f5;
    border: none;
    border-top-right-radius: 8px;
    border-bottom-right-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    text-align: center;
    transition: color .3s, background-color .3s;
    cursor: pointer;
    z-index: 2;
}
.get-ticket.popup .input-wrapper.promo .popup-promo-submit:hover {
    color: #eb4579;
    background: #fbdae4;
}
.get-ticket.popup .input-wrapper.promo.promo-applied input { cursor: default; }
.get-ticket.popup .input-wrapper.promo.promo-applied input:hover {
    border-color: #e2e9f3;
    box-shadow: none;
}
.get-ticket.popup .input-wrapper.promo.promo-applied .popup-promo-submit {
    color: #eb4579;
    background: #f9c7d6;
}
.get-ticket.popup .input-wrapper.checkbox {
    display: flex;
    gap: 10px;
    width: 100%;
}
.get-ticket.popup .input-wrapper.legal-entity { padding-top: 8px; }
.get-ticket.popup .input-wrapper.consent { padding-top: 4px; }
.get-ticket.popup .input-wrapper.checkbox input[type=checkbox] { flex-shrink: 0; }
.get-ticket.popup .input-wrapper.checkbox label {
    display: block;
    font-size: 14px;
}
.get-ticket.popup .input-wrapper .input-desc {
    padding-top: 4px;
    color: #6e809a;
    line-height: 1.143;
}
.get-ticket.popup .btn-wrapper {
    width: 100%;
    padding-top: 20px;
}
.get-ticket.popup .get-ticket-submit {
    max-width: 390px;
    width: 100%;
    cursor: pointer;
}

@media (max-width: 992px) {
    .popup.get-ticket {
        max-width: 494px;
        width: 100%;
        top: 10px;
        bottom: 10px;
        padding: 0 0 52px;
        transform: translateX(-50%);
    }
    body.admin-bar .popup.get-ticket { top: 42px; }
    .get-ticket.popup .title {
        padding: 52px 52px 20px;
        box-shadow: 0 2px 20px 0 #b6cadb80;
        text-align: center;
    }
    .popup.get-ticket .popup-container {
        max-height: calc(100vh - 20px - 131px - 90px); /* window height - top margin - bottom margin - title - btn-wrapper */
        padding: 0 52px 20px;
        overflow-y: auto;
    }
    body.admin-bar .popup.get-ticket .popup-container { max-height: calc(100vh - 20px - 131px - 90px - 32px); }
    .get-ticket.popup .input-wrapper:not(.checkbox) { width: 100%; }
    .get-ticket.popup .btn-wrapper {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        padding: 20px 52px;
        background: #fff;
        box-shadow: 0 -2px 5px 0 #0000001a;
        z-index: 3;
    }
    .get-ticket.popup .get-ticket-submit { max-width: 100%; }
}
@media (max-width: 576px) {
    .get-ticket.popup .title { padding: 52px 20px 20px; }
    .popup.get-ticket .popup-container { padding: 0 20px 20px; }
    .get-ticket.popup .details { gap: 8px; }
    .get-ticket.popup .desc { padding-top: 24px; }
    .get-ticket.popup .form-container {
        gap: 12px;
        padding-top: 24px;
    }
    .get-ticket.popup .input-wrapper.promo input { width: calc(100% - 122px); }
    .get-ticket.popup .input-wrapper.promo .popup-promo-submit {
        width: 122px;
        font-size: 14px;
    }
    .get-ticket.popup .btn-wrapper { padding: 20px 20px; }
}
/* </editor-fold> */
/* <editor-fold desc="GLOBAL | POPUP | Ticket - Thank you"> */
.thank-you.popup .title {
    padding-bottom: 24px;
    color: #252d3d;
    border-bottom: 1px solid #e2e9f3;
    text-align: center;
}
.thank-you.popup .title .img-wrapper {
    width: 150px;
    height: 150px;
    margin: 0 auto 24px;
}
.thank-you.popup .desc {
    padding-top: 24px;
    line-height: 1.286;
}
.thank-you.v3.popup .desc { color: #6e809a; }
.thank-you.popup .desc.article-content p:not(:last-child) { margin-bottom: 16px }
.thank-you.popup .btn-wrapper {
    width: 100%;
    padding-top: 32px;
}
.thank-you.popup .btn-wrapper .btn { width: 100%; }

@media (max-width: 576px) {
    .thank-you.popup { padding: 40px 20px 20px; }
    .thank-you.popup .title { padding-bottom: 20px; }
    .thank-you.popup .title .img-wrapper {
        width: 60px;
        height: 60px;
        margin-bottom: 20px;
    }
    .thank-you.popup .desc { padding-top: 20px; }
    .thank-you.popup .btn-wrapper { padding-top: 24px; }
}
/* </editor-fold> */

/* <editor-fold desc="GLOBAL | Site menu"> */
.site-menu ul {
    display: flex;
    gap: 20px;
    list-style: none;
}
.site-menu ul li { display: block; }
.site-menu ul li a {
    display: block;
    padding: 10px;
    color: #f8f9f8;
    -webkit-tap-highlight-color:  rgba(255, 255, 255, 0);
    font-family: "Montserrat", sans-serif;
    font-weight: 500;
    transition: color .3s;
    line-height: 1.25;
}
.site-menu ul li a.current { color: #eb4579; }
.site-menu ul li a:hover { color: #eb4579; }

@media (max-width: 1300px) {
    .site-menu ul { gap: 10px; }
}
@media (max-width: 576px) {
    .site-menu ul li a {
        font-size: 14px;
        line-height: 1.215;
    }
}
/* </editor-fold> */
/* <editor-fold desc="GLOBAL | Color label"> */
.color-label {
    padding: 2px 8px;
    border-radius: 4px;
    font-weight: 700;
    white-space: nowrap;
}
.color-label.yellow {
    color: #252d3d;
    background: #ffd205;
}
.color-label.red { background: #eb4579; }
/* </editor-fold> */

/* <editor-fold desc="> HEADER"> */
header {
    position: fixed;
    width: 100%;
    transition: background-color .3s;
    z-index: 5;
}
header.solid { background: #252d3d; }
header .container {
    display: flex;
    align-items: center;
    padding-top: 20px;
    padding-bottom: 20px;
}
header .header-logo {
    max-width: 168px;
    width: 100%;
}
header .header-logo-mobile {
    display: none;
    gap: 6px;
    z-index: 2;
}
header .header-logo-mobile .circle {
    width: 16px;
    height: 16px;
    border-radius: 50%;
}
header .header-logo-mobile .circle:nth-child(1) { background: #6acfe0; }
header .header-logo-mobile .circle:nth-child(2) { background: #ffd205; }
header .header-logo-mobile .circle:nth-child(3) { background: #eb4579; }
header .menu-container {
    display: flex;
    align-items: center;
    margin-left: auto;
}
header .socials-container {
    display: none;
    gap: 32px;
    padding-top: 32px;
}

body.disable-scroll { overflow-y: hidden; }
header .mobile-nav {
    display: none;
    position: relative;
    padding: 6px;
    cursor: pointer;
    transition: background-color .5s;
    transition-delay: 1.5s;
    -webkit-tap-highlight-color:  rgba(255, 255, 255, 0);
    z-index: 3;
}
header .mobile-nav .nav-icon {
    width: 18px;
    height: 18px;
    margin-left: auto;
    -webkit-transform: rotate(0);
    -moz-transform: rotate(0);
    -o-transform: rotate(0);
    transform: rotate(0);
    -webkit-transition: .5s ease-in-out;
    -moz-transition: .5s ease-in-out;
    -o-transition: .5s ease-in-out;
    transition: .5s ease-in-out;
    cursor: pointer;
}
header .mobile-nav .nav-icon span {
    display: block;
    position: absolute;
    height: 2px;
    width: 100%;
    background: #fff;
    border-radius: 2px;
    opacity: 1;
    left: 0;
    -webkit-transform: rotate(0);
    -moz-transform: rotate(0);
    -o-transform: rotate(0);
    transform: rotate(0);
    -webkit-transition: .25s ease-in-out;
    -moz-transition: .25s ease-in-out;
    -o-transition: .25s ease-in-out;
    transition: .25s ease-in-out;
    cursor: pointer;
}
header .mobile-nav .nav-icon span:nth-child(1) { top: 0; }
header .mobile-nav .nav-icon span:nth-child(2),
header .mobile-nav .nav-icon span:nth-child(3) { top: 8px; }
header .mobile-nav .nav-icon span:nth-child(4) { top: 16px; }
header .mobile-nav .nav-icon span:nth-child(1),
header .mobile-nav .nav-icon span:nth-child(4) {
    width: 14px;
    left: 4px;
}
body.mobile-menu header .mobile-nav .nav-icon span:nth-child(1) {
    top: 8px;
    width: 0;
    left: 50%;
}
body.mobile-menu header .mobile-nav .nav-icon span:nth-child(2) {
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
}
body.mobile-menu header .mobile-nav .nav-icon span:nth-child(3) {
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
}
body.mobile-menu header .mobile-nav .nav-icon span:nth-child(4) {
    top: 8px;
    width: 0;
    left: 50%;
}

header .header-buttons { margin-left: 145px; }
header .header-buttons .btn {
    width: 208px;
    padding: 12px 15px;
    font-size: 14px;
}

@media (max-width: 1300px) {
    header .header-buttons { margin-left: 50px; }
}
@media (max-width: 992px) {
    header {
        background: #252d3d;
        box-shadow: 0 0 5px 0 #f3f6f81a;
    }
    header:after {
        content: "";
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        height: 1px;
        background: #2e3644;
        opacity: 0;
        transition: opacity .3s .4s;
        z-index: 10;
    }
    body.mobile-menu header:after {
        opacity: 1;
        transition: opacity .3s;
    }
    header .container { justify-content: space-between; }
    header .header-logo { z-index: 2; }
    header .menu-container {
        position: fixed;
        bottom: 150%;
        left: 0;
        right: 0;
        height: calc(100% - 70px);
        flex-direction: column;
        padding-top: 50px;
        padding-bottom: 60px;
        background: #252d3c;
        transition: bottom .7s .3s;
        overflow-y: auto;
    }
    body.mobile-menu header .menu-container {
        bottom: 0;
        transition: bottom .5s;
    }
    body.admin-bar header .menu-container { height: calc(100% - 70px - 32px); }
    header .menu-container * {
        opacity: 0;
        transition: opacity .3s;
    }
    body.mobile-menu header .menu-container * {
        opacity: 1;
        transition: opacity .3s .5s;
    }
    header .site-menu ul {
        flex-direction: column;
        align-items: center;
    }
    header .header-buttons {
        margin-top: auto;
        margin-left: 0;
    }
    header .header-buttons .btn {
        max-width: 300px;
        width: 100%;
    }
    header .socials-container { display: flex; }
    header .mobile-nav { display: block; }
}
@media (max-width: 782px) {
    body.admin-bar header .menu-container { height: calc(100% - 70px - 46px); }
}
@media (max-width: 768px) {
    header .container {
        padding-top: 8px;
        padding-bottom: 8px;
    }
    header .menu-container { height: calc(100% - 46px); }
    body.admin-bar header .menu-container { height: calc(100% - 46px - 46px); }
}
@media (max-width: 576px) {
    header .header-logo { display: none; }
    header .header-logo-mobile { display: flex; }
}
/* </editor-fold> */
/* <editor-fold desc="> FOOTER"> */
footer {
    padding-top: 80px;
    padding-bottom: 80px;
}
footer .footer-container {
    display: flex;
    flex-wrap: wrap;
}

footer .left { width: 280px; }
footer .left .footer-logo {
    display: block;
    max-width: 168px;
    width: 100%;
}
footer .left .desc { padding-top: 20px; }
footer .left .btn-wrapper { padding-top: 44px; }
footer .left .btn { width: 208px; }

footer .center {
    display: flex;
    flex-direction: column;
    margin-left: auto;
}
footer .center .site-menu {
    position: relative;
    top: -10px;
}
footer .center .socials-container {
    display: flex;
    justify-content: center;
    gap: 27px;
    margin-top: auto;
}
footer .center .socials-container a svg * { transition: fill .3s; }
footer .center .socials-container a:hover svg * { fill: #eb4579; }

footer .right {
    width: 219px;
    flex-shrink: 0;
    margin-left: 134px;
}
footer .right .logo-wrapper {
    height: 40px;
    margin-top: 16px;
}
footer .right .logo-wrapper img {
    height: 100%;
    width: auto;
}
footer .right .partner-wrapper { padding-top: 40px; }

footer .mobile-menu {
    display: none;
    order: 2;
    padding-top: 50px;
}
footer .mobile-menu ul { flex-direction: column; }
footer .mobile-btn {
    display: none;
    order: 4;
    width: 100%;
    padding-top: 60px;
    text-align: center;
}
footer .mobile-btn .btn {
    max-width: 400px;
    width: 100%;
}

@media (max-width: 1300px) {
    footer .left { width: 220px; }
    footer .right { margin-left: 50px; }
}
@media (max-width: 992px) {
    footer .left {
        order: 1;
        width: 100%;
        text-align: center;
    }
    footer .left .footer-logo { margin: 0 auto; }
    footer .left .desc {
        max-width: 400px;
        margin: 0 auto;
    }
    footer .left .btn-wrapper { display: none; }
    footer .center {
        order: 5;
        width: 100%;
        padding-top: 32px;
    }
    footer .center .site-menu { display: none; }
    footer .right {
        order: 3;
        margin-left: auto;
        padding-top: 60px;
    }
    footer .right .logo-wrapper { height: 27px; }
    footer .mobile-menu,
    footer .mobile-btn {
        display: block;
    }
}
@media (max-width: 768px) {
    footer {
        padding-top: 60px;
        padding-bottom: 60px;
    }
}
@media (max-width: 576px) {
    footer .left .desc {
        max-width: 300px;
        padding-top: 16px;
    }
    footer .right { width: 150px; }
    footer .right .logo-wrapper { margin-top: 12px; }
    footer .mobile-menu ul { gap: 8px; }
}
/* </editor-fold> */

/* <editor-fold desc="Block 1"> */
.front-page .block-1 {
    position: relative;
    padding-top: 61px;
    padding-bottom: 60px;
}
.front-page .block-1:before {
    content: "";
    position: absolute;
    top: -84px;
    left: 0;
    right: 0;
    bottom: 0;
    background: url(../images/block1_background.svg) center center;
    background-size: 100% 100%;
}
.front-page .block-1 .block-container {
    position: relative;
    display: flex;
    align-items: center;
    gap: 51px;
    z-index: 1;
}
.front-page .block-1 .img-container {
    flex-shrink: 0;
    width: 312px;
    min-height: 500px;
}
.front-page .block-1 .title { text-transform: uppercase; }
.front-page .block-1 .desc { padding-top: 20px; }
.front-page .block-1 .details {
    display: flex;
    align-items: center;
    padding-top: 56px;
}
.front-page .block-1 .color-label.yellow { margin-right: 40px; }
.front-page .block-1 .color-label.red { margin-right: 12px; }

.front-page .block-1 .mobile-register {
    display: none;
    padding-top: 36px;
}
.front-page .block-1 .mobile-register .btn {
    max-width: 400px;
    width: 100%;
}

.front-page .block-1 .partners-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 148px;
}
.front-page .block-1 .partners-container .partner {
    display: flex;
    align-items: center;
}
.front-page .block-1 .partners-container .logo-wrapper {
    height: 40px;
    margin-left: 16px;
}
.front-page .block-1 .partners-container .logo-wrapper img {
    height: 100%;
    width: auto;
}
.front-page .block-1 .partners-container .sep {
    width: 4px;
    height: 4px;
    background: #f8f9f8;
    border-radius: 100%;
}

@media (max-width: 1300px) {
    .front-page .block-1 .img-container {
        width: 270px;
        min-height: 432px;
    }
    .front-page .block-1 .title { font-size: 90px; }
    .front-page .block-1 .color-label.yellow { margin-right: 20px; }
    .front-page .block-1 .partners-container .partner {
        flex-direction: column;
        align-items: start;
    }
    .front-page .block-1 .partners-container .logo-wrapper {
        margin-top: 16px;
        margin-left: 0;
    }
}
@media (max-width: 992px) {
    .front-page .block-1 { overflow: hidden; }
    .front-page .block-1:before { top: 0; }
    .front-page .block-1 .img-container {
        position: absolute;
        top: 0;
        right: calc((100vw - 100%) / 2 * -1 - 30px);
        width: 200px;
        min-height: unset;
    }
}
@media (max-width: 768px) {
    .front-page .block-1:before {
        background: url(../images/block1_background-mobile.svg);
        background-size: 100% 100%;
    }
    .front-page .block-1 .img-container { top: 145px; }
    .front-page .block-1 .details {
        flex-direction: column;
        align-items: start;
        padding-top: 60px;
    }
    .front-page .block-1 .color-label.yellow {
        margin-right: 0;
        margin-bottom: 24px;
    }
    .front-page .block-1 .color-label.red {
        margin-right: 0;
        margin-bottom: 8px;
    }
    .front-page .block-1 .mobile-register { display: block; }
    .front-page .block-1 .partners-container {
        flex-wrap: wrap;
        padding-top: 60px;
    }
    .front-page .block-1 .partners-container .partner:last-child { padding-top: 32px; }
    .front-page .block-1 .partners-container .tooltip {
        position: relative;
        margin-left: 24px;
    }
    .front-page .block-1 .partners-container .tooltip:before {
        content: "";
        position: absolute;
        top: 8px;
        left: -14px;
        width: 3px;
        height: 3px;
        border-radius: 50%;
        background: #f8f9f8;
    }
    .front-page .block-1 .partners-container .sep { display: none; }
}
@media (max-width: 576px) {
    .front-page .block-1 .img-container {
        top: unset;
        bottom: 0;
        right: -30px;
        width: 170px;
    }
    .front-page .block-1 .desc-container { padding-top: 0; }
    .front-page .block-1 .desc { padding-top: 16px; }
    .front-page .block-1 .partners-container .tooltip { margin-left: 20px; }
    .front-page .block-1 .partners-container .tooltip:before {
        top: 6px;
        left: -11px;
    }
    .front-page .block-1 .partners-container .logo-wrapper { height: 27px; }
}
@media (max-width: 480px) {
    .front-page .block-1 .img-container {
        bottom: 50px;
        width: 110px;
    }
}
/* </editor-fold> */
/* <editor-fold desc="Block 2"> */
.front-page .block-2 {
    position: relative;
    padding-top: 160px;
    padding-bottom: 80px;
    z-index: 1;
}
.front-page .block-2 .blocks-container {
    display: flex;
    gap: 120px;
    padding-top: 68px;
}
.front-page .block-2 .block { width: 280px; }
.front-page .block-2 .block .circles-container {
    display: flex;
    gap: 6px;
    padding-bottom: 31px;
    border-bottom: 1px solid #f8f9f8;
}
.front-page .block-2 .block .circle {
    width: 18px;
    height: 18px;
    border-radius: 50%;
}
.front-page .block-2 .block .circle:nth-child(1) { background: #6acfe0; }
.front-page .block-2 .block .circle:nth-child(2) { background: #ffd205; }
.front-page .block-2 .block .circle:nth-child(3) { background: #eb4579; }
.front-page .block-2 .block .desc { padding-top: 31px; }

@media (max-width: 992px) {
    .front-page .block-2 .blocks-container { gap: 30px; }
}
@media (max-width: 768px) {
    .front-page .block-2 {
        padding-top: 80px;
        padding-bottom: 60px;
        text-align: center;
    }
    .front-page .block-2 .container {
        padding-left: 40px;
        padding-right: 40px;
    }
    .front-page .block-2 .blocks-container {
        flex-direction: column;
        gap: 80px;
        padding-top: 40px;
    }
    .front-page .block-2 .block { width: 100%; }
    .front-page .block-2 .block .circles-container {
        justify-content: center;
        padding-bottom: 24px;
    }
    .front-page .block-2 .block .desc { padding-top: 24px; }
}
/* </editor-fold> */
/* <editor-fold desc="Block 3"> */
.front-page .block-3 {
    position: relative;
    padding-top: 80px;
    padding-bottom: 96px;
}
.front-page .block-3:before {
    content: "";
    position: absolute;
    top: -160px;
    right: 0;
    width: 549px;
    height: 1226px;
    background: url(../images/block3_gradient.svg) center center no-repeat;
}
.front-page .block-3 .formats-container {
    margin-top: 68px;
    background: url(../images/block3_background.svg) no-repeat;
    background-size: 100% 100%;
}
.front-page .block-3 .formats-container .container {
    display: flex;
    justify-content: space-between;
}
.front-page .block-3 .block {
    position: relative;
    width: calc((100% - 40px) / 2);
    padding-top: 64px;
    padding-bottom: 64px;
}
.front-page .block-3 .block:nth-child(1) { padding-right: 90px; }
.front-page .block-3 .block:nth-child(2) { padding-left: 90px; }
.front-page .block-3 .block .details {
    display: flex;
    align-items: center;
    padding-bottom: 40px;
    border-bottom: 1px solid #f8f9f84d;
}
.front-page .block-3 .block:nth-child(1) .color-label {
    color: #252d3d;
    background: #ffd205;
}
.front-page .block-3 .block:nth-child(2) .color-label { background: #eb4579; }
.front-page .block-3 .block .date-location { margin-left: 12px; }
.front-page .block-3 .block .benefit {
    display: flex;
    padding-top: 40px;
}
.front-page .block-3 .block .benefit .icon {
    width: 24px;
    flex-shrink: 0;
}
.front-page .block-3 .block .benefit .benefit-info { margin-left: 12px; }
.front-page .block-3 .block .benefit .desc { padding-top: 12px; }
.front-page .block-3 .block .btn-wrapper { padding-top: 48px; }
.front-page .block-3 .block .btn.-w-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 300px;
}
.front-page .block-3 .block .btn.-w-icon .icon-wrapper {
    width: 20px;
    height: 20px;
}
.front-page .block-3 .block .img-wrapper {
    position: absolute;
    bottom: -96px;
    left: 260px;
    max-width: 220px;
}

@media (max-width: 992px) {
    .front-page .block-3 .block {
        padding-top: 40px;
        padding-bottom: 40px;
    }
    .front-page .block-3 .block:nth-child(1) { padding-right: 30px; }
    .front-page .block-3 .block:nth-child(2) { padding-left: 30px; }
    .front-page .block-3 .block .img-wrapper { left: 110px; }
}
@media (max-width: 768px) {
    .front-page .block-3 {
        padding-top: 60px;
        padding-bottom: 60px;
    }
    .front-page .block-3 .title { text-align: center; }
    .front-page .block-3 .formats-container {
        margin-top: 40px;
        background: none;
    }
    .front-page .block-3 .formats-container .container {
        flex-direction: column;
        gap: 40px;
        max-width: 100%;
    }
    .front-page .block-3 .block {
        width: 100%;
        padding-left: calc((100% - 540px) / 2) !important;
        padding-right: calc((100% - 540px) / 2) !important;
        background: url(../images/blur.svg);
        border-radius: 20px;
        overflow: hidden;
    }
    .front-page .block-3 .block:first-child:before {
        content: "";
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: url(../images/block3_gradient_mobile.svg) no-repeat;
        background-size: cover;
        z-index: -1;
    }
    .front-page .block-3 .block .details {
        flex-direction: column;
        padding-bottom: 32px;
    }
    .front-page .block-3 .block .date-location {
        margin-top: 8px;
        margin-left: 0;
    }
    .front-page .block-3 .block .benefit { padding-top: 32px; }
    .front-page .block-3 .block .btn-wrapper { padding-top: 40px; }
    .front-page .block-3 .block .img-wrapper {
        position: static;
        max-width: 150px;
        margin-top: 20px;
        margin-bottom: -25px;
        margin-left: auto;
    }
}
@media (max-width: 576px) {
    .front-page .block-3 .formats-container .container {
        padding-left: 0;
        padding-right: 0;
    }
    .front-page .block-3 .block {
        width: 100%;
        padding-left: 10px !important;
        padding-right: 10px !important;
    }
    .front-page .block-3 .block .btn.-w-icon { width: 100%; }
}
/* </editor-fold> */
/* <editor-fold desc="Block 4"> */
.front-page .block-4 {
    position: relative;
    padding-top: 100px;
    z-index: 1;
}
.front-page .block-4:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 644px;
    height: 1227px;
    background: url(../images/block4_gradient.svg);
    background-size: contain;
    z-index: -1;
}
.front-page .block-4 .video-container {
    position: relative;
    padding-bottom: 53.39%; /* 56.25% for 16:9, for 1:1 = 100% */
    border-radius: 20px;
    overflow: hidden;
}
.front-page .block-4 iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.front-page .block-4 .preview-wrapper {
    position: absolute;
    inset: 0;
}
.front-page .block-4 .preview-wrapper * { cursor: pointer; }
.front-page .block-4 .preview-wrapper .preview-stuff-container {
    position: absolute;
    inset: 0;
    padding: 32px;
}
.front-page .block-4 .circles-wrapper {
    display: flex;
    gap: 6px;
}
.front-page .block-4 .circles-wrapper .circle {
    width: 18px;
    height: 18px;
    border-radius: 50%;
}
.front-page .block-4 .circles-wrapper .circle:nth-child(1) { background: #6acfe0; }
.front-page .block-4 .circles-wrapper .circle:nth-child(2) { background: #ffd205; }
.front-page .block-4 .circles-wrapper .circle:nth-child(3) { background: #eb4579; }
.front-page .block-4 .preview-wrapper .play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 98px;
    height: 100px;
    transform: translate(-50%, -50%);
}

.front-page .block-4 .details-container {
    display: flex;
    padding-top: 60px;
}
.front-page .block-4 .left.part {
    display: flex;
    flex-direction: column;
}
.front-page .block-4 .left.part .circles-wrapper {
    margin-top: auto;
    padding-top: 50px;
}
.front-page .block-4 .sep {
    max-width: 600px;
    padding-top: 32px;
    border-bottom: 1px solid #f8f9f8;
    opacity: .3;
}
.front-page .block-4 .logo-wrapper {
    max-width: 344px;
    padding-top: 36px;
}
.front-page .block-4 .right {
    width: 480px;
    flex-shrink: 0;
    margin-left: 20px;
}
.front-page .block-4 .desc-lower { padding-top: 40px; }

@media (max-width: 1300px) {
    .front-page .block-4 .right { width: 400px; }
}
@media (max-width: 992px) {
    .front-page .block-4 .preview-wrapper .play-btn {
        width: 70px;
        height: 72px;
    }
    .front-page .block-4 .details-container { flex-direction: column; }
    .front-page .block-4 .right {
        width: 100%;
        margin-top: 32px;
        margin-left: 0;
    }
}
@media (max-width: 768px) {
    .front-page .block-4 { padding-top: 60px; }
    .front-page .block-4:before {
        width: 444px;
        height: 845px;
    }
    .front-page .block-4 .details-container { padding-top: 32px; }
    .front-page .block-4 .title { padding-bottom: 0; }
    .front-page .block-4 .sep { padding-top: 32px; }
    .front-page .block-4 .logo-wrapper { padding-top: 32px; }

}
@media (max-width: 576px) {
    .front-page .block-4:before {
        width: 214px;
        height: 407px;
    }
    .front-page .block-4 .preview-wrapper .preview-stuff-container { padding: 12px; }
    .front-page .block-4 .preview-wrapper .circles-wrapper .circle {
        width: 12px;
        height: 12px;
    }
    .front-page .block-4 .preview-wrapper .play-btn {
        width: 40px;
        height: 41px;
    }
}
/* </editor-fold> */
/* <editor-fold desc="Block 5"> */
.front-page .block-5 {
    position: relative;
    padding-top: 100px;
    padding-bottom: 80px;
}
.front-page .block-5:before {
    content: "";
    position: absolute;
    top: -320px;
    right: 0;
    width: 585px;
    height: 1081px;
    background: url(../images/block5_gradient.svg) center center no-repeat;
}
.front-page .block-5 .title { text-align: center; }
.front-page .block-5 .subtitle {
    max-width: 875px;
    margin: 24px auto 0;
    text-align: center;
}
.front-page .block-5 .participants-container { padding-top: 68px; }
.front-page .block-5 .participants-container:before {
    content: "";
    display: block;
    width: calc((100% - (20px * 3)) / 4);
    float: left;
}
.front-page .block-5 .participant {
    position: relative;
    width: calc((100% - (20px * 3)) / 4);
    margin-bottom: 20px;
    padding: 24px 20px;
    border-radius: 20px;
    overflow: hidden;
    transition: box-shadow .3s, backdrop-filter .3s;
}
.front-page .block-5 .participant:hover {
    backdrop-filter: blur(10px);
    box-shadow: 0 0 40px 0 #EB45794D;
}
.front-page .block-5 .participant:after {
    content: "";
    position: absolute;
    inset: 0;
    background: url(../images/blur.svg);
    background-size: cover;
    z-index: -1;
}
.front-page .block-5 .participant .photo-wrapper {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
}
.front-page .block-5 .participant .photo-wrapper .color-label {
    position: absolute;
    bottom: 12px;
    left: 12px;
}
.front-page .block-5 .participant .info-wrapper {
    height: 109px;
    margin-top: 16px;
}
.front-page .block-5 .participant .occupation { margin-top: 12px; }
.front-page .block-5 .participant .occupation span { white-space: nowrap; }
.front-page .block-5 .btn-wrapper {
    padding-top: 17px;
    text-align: center;
}
.front-page .block-5 .btn.load-more { width: 272px; }
.front-page .block-5 .participants-container-hidden { display: none; }

@media (max-width: 1300px) {
    .front-page .block-5 .participant .photo-wrapper .color-label {
        bottom: 4px;
        left: 4px;
        font-size: 12px;
    }
    .front-page .block-5 .participant .info-wrapper { height: 119px; }
    .front-page .block-5 .participant .name { font-size: 18px; }
}
@media (max-width: 992px) {
    .front-page .block-5 .participants-container:before { width: calc((100% - (20px * 2)) / 3); }
    .front-page .block-5 .participant { width: calc((100% - (20px * 2)) / 3); }
    .front-page .block-5 .participant .info-wrapper { height: unset; }
}
@media (max-width: 768px) {
    .front-page .block-5 {
        padding-top: 60px;
        padding-bottom: 60px;
    }
    .front-page .block-5 .participants-container { padding-top: 40px; }
    .front-page .block-5 .participants-container:before { width: calc((100% - 20px) / 2); }
    .front-page .block-5 .participant { width: calc((100% - 20px) / 2); }
    .front-page .block-5 .btn-wrapper { padding-top: 20px; }
}
@media (max-width: 576px) {
    .front-page .block-5 .participants-container {
        max-width: 280px;
        margin: 0 auto;
    }
    .front-page .block-5 .participants-container:before { width: 100%; }
    .front-page .block-5 .participant { width: 100%; }
    .front-page .block-5 .btn.load-more { width: 100%; }
}
/* </editor-fold> */
/* <editor-fold desc="Block 6"> */
.front-page .block-6 {
    position: relative;
    padding-top: 80px;
}
.front-page .block-6:before {
    content: "";
    position: absolute;
    top: 80px;
    bottom: 0;
    right: 0;
    width: calc((100% - 1180px) / 2);
    background: url(../images/blur.svg);
    z-index: -1;
}
.front-page .block-6:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 769px;
    height: 587px;
    background: url(../images/block6_gradient.svg) center center no-repeat;
    z-index: -1;
}
.front-page .block-6 .block-container { display: flex; }
.front-page .block-6 .overview-container {
    position: relative;
    display: flex;
    flex-direction: column;
    padding-right: 75px;
}
.front-page .block-6 .overview-wrapper {
    height: 100%;
    padding-bottom: 60px;
}
.front-page .block-6 .overview-wrapper .sticky {
    position: sticky;
    top: 100px;
}
body.admin-bar .front-page .block-6 .overview-wrapper .sticky { top: 132px; }
.front-page .block-6 .details { padding-top: 68px; }
.front-page .block-6 .color-label { display: inline-block; }
.front-page .block-6 .date-location { padding-top: 12px; }
.front-page .block-6 .img-wrapper {
    max-width: 300px;
    margin-bottom: 100px;
}

.front-page .block-6 .program-container {
    position: relative;
    width: 680px;
    flex-shrink: 0;
    padding: 60px 0 60px 60px;
}
.front-page .block-6 .program-container:before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: url(../images/blur.svg);
    border-top-left-radius: 20px;
    border-bottom-left-radius: 20px;
    z-index: -1;
}
.front-page .block-6 .themes-desc {
    padding-bottom: 40px;
    color: #eb4579;
}
.front-page .block-6 .list .item { border-top: 1px solid #f8f9f833; }
.front-page .block-6 .list .item .item-wrapper {
    display: flex;
    padding-top: 40px;
    padding-bottom: 40px;
}
.front-page .block-6 .list .item .icon {
    width: 24px;
    flex-shrink: 0;
}
.front-page .block-6 .list .item .item-info { margin-left: 12px; }
.front-page .block-6 .list .item .desc { padding-top: 12px; }
.front-page .block-6 .list .hidden {
    display: none;
    opacity: 0;
    transition: opacity .3s;
}
.front-page .block-6 .list .hidden.show { opacity: 1; }

.front-page .block-6 .btn-wrapper { padding-top: 20px; }
.front-page .block-6 .load-more {
    width: 272px;
    cursor: pointer;
}

.front-page .block-6 .list.known > .item.known:first-child { border-top: none; }
.front-page .block-6 .list.known > .item.known:first-child .item-wrapper { padding-top: 0; }
.front-page .block-6 .item.known .item-wrapper { flex-direction: column; }
.front-page .block-6 .item.known .time-wrapper {
    display: flex;
    align-items: center;
    gap: 20px;
}
.front-page .block-6 .item.known .time {
    flex-shrink: 0;
    height: 41px;
    padding: 12px 14px;
    border: 1px solid #f8f9f8;
    border-radius: 8px;
}
.front-page .block-6 .item.known .theme {
    color: #eb4579;
    font-weight: 600;
}
.front-page .block-6 .item.known .speakers-container {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    padding-top: 28px;
}
.front-page .block-6 .item.known .speaker { width: calc((100% - 40px) / 2); }
.front-page .block-6 .item.known .speaker .occupation { padding-top: 12px; }

@media (max-width: 1300px) {
    .front-page .block-6:before { width: calc((100% - 960px) / 2); }
    .front-page .block-6 .program-container {
        width: 480px;
        padding-left: 30px;
    }
}
@media (max-width: 992px) {
    .front-page .block-6:before { width: calc((100% - 720px) / 2); }
    .front-page .block-6 .overview-container { padding-right: 40px; }
    .front-page .block-6 .overview-wrapper .sticky { top: 90px; }
    body.admin-bar .front-page .block-6 .overview-wrapper .sticky { top: 122px; }
    .front-page .block-6 .program-container { width: 370px; }
}
@media (max-width: 992px) and (min-width: 769px) {
    .front-page .block-6 .item.known .time-wrapper {
        flex-direction: column;
        align-items: start;
    }
    .front-page .block-6 .item.known .speaker { width: 100%; }
}
@media (max-width: 768px) {
    .front-page .block-6 { padding-top: 60px; }
    .front-page .block-6:before { display: none; }
    .front-page .block-6:after {
        top: 0;
        right: 0;
        bottom: unset;
        left: unset;
        width: 100%;
        height: 1350px;
        background: url(../images/block6_gradient_mobile.svg);
        background-size: cover;
    }
    .front-page .block-6 .block-container {
        flex-direction: column;
        padding-top: 60px;
        padding-bottom: 120px;
    }
    .front-page .block-6 .overview-container { padding-right: 0; }
    .front-page .block-6 .overview-wrapper {
        height: unset;
        padding-bottom: 0;
    }
    body.admin-bar .front-page .block-6 .overview-wrapper .sticky { position: static; }
    .front-page .block-6 .details { padding-top: 40px; }
    .front-page .block-6 .img-wrapper { display: none; }
    .front-page .block-6 .program-container {
        width: 100%;
        padding: 52px 0 0 0;
    }
    .front-page .block-6 .program-container:before { display: none; }
    .front-page .block-6 .list .item .item-wrapper {
        padding-top: 32px;
        padding-bottom: 32px;
    }

    .front-page .block-6 .item.known .time-wrapper { gap: 12px; }
    .front-page .block-6 .item.known .speakers-container {
        gap: 20px;
        padding-top: 32px;
    }
    .front-page .block-6 .item.known .speaker .occupation { padding-top: 8px; }
}
@media (max-width: 576px) {
    .front-page .block-6:after { height: 1000px; }
    .front-page .block-6 .load-more { width: 100%; }

    .front-page .block-6 .item.known .time-wrapper {
        flex-direction: column;
        align-items: start;
    }
    .front-page .block-6 .item.known .time {
        height: 33px;
        padding: 8px 10px;
    }
    .front-page .block-6 .item.known .speaker { width: 100%; }
    .front-page .block-6 .item.known .speaker .name { font-size: 20px; }
}
/* </editor-fold> */
/* <editor-fold desc="Block 7"> */
.front-page .block-7 {
    padding-top: 160px;
    padding-bottom: 80px;
}
.front-page .block-7 .lottery-container {
    display: flex;
    gap: 20px;
    padding: 100px;
    border-radius: 20px;
    background: url(../images/block7_background.svg) center center no-repeat;
    background-size: 100% 100%;
    overflow: hidden;
}
.front-page .block-7 .desc-container { position: relative; }
.front-page .block-7 .desc { padding-top: 40px; }
.front-page .block-7 .sep {
    margin-top: 40px;
    margin-bottom: 40px;
    border-bottom: 1px solid #f8f8f8;
    opacity: .2;
}
.front-page .block-7 .circles-wrapper {
    display: flex;
    gap: 6px;
}
.front-page .block-7 .circles-wrapper .circle {
    width: 18px;
    height: 18px;
    border-radius: 50%;
}
.front-page .block-7 .circles-wrapper .circle:nth-child(1) { background: #6acfe0; }
.front-page .block-7 .circles-wrapper .circle:nth-child(2) { background: #ffd205; }
.front-page .block-7 .circles-wrapper .circle:nth-child(3) { background: #eb4579; }
.front-page .block-7 .under-btn-text { padding-top: 12px; }
.front-page .block-7 .btn-wrapper { padding-top: 40px; }
.front-page .block-7 .btn { min-width: 206px; }
.front-page .block-7 .img-container {
    width: 480px;
    flex-shrink: 0;
}
.front-page .block-7 .img-container .mobile { display: none; }

@media (max-width: 1300px) {
    .front-page .block-7 .lottery-container {
        align-items: center;
        padding: 80px 40px;
    }
    .front-page .block-7 .img-container { width: 390px; }
}
@media (max-width: 992px) {
    .front-page .block-7 .lottery-container {
        flex-direction: column-reverse;
        padding: 40px;
        overflow: unset;
    }
    .front-page .block-7 .desc-container { padding-top: 12px; }
    .front-page .block-7 .img-container {
        width: 320px;
        margin-top: -140px;
    }
}
@media (max-width: 768px) {
    .front-page .block-7 {
        padding-top: 60px;
        padding-bottom: 60px;
    }
    .front-page .block-7 .lottery-container {
        position: relative;
        padding: 0 20px 48px;
        background: url(../images/blur.svg);
        background-size: cover;
    }
    .front-page .block-7 .lottery-container:before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 412px;
        background: url(../images/block7_gradient-mobile.svg) top center;
        background-size: 540px 412px;
        border-top-left-radius: 20px;
        border-top-right-radius: 20px;
        z-index: -1;
    }
    .front-page .block-7 .desc { padding-top: 24px; }
    .front-page .block-7 .sep {
        margin-top: 32px;
        margin-bottom: 32px;
    }
    .front-page .block-7 .btn-wrapper { padding-top: 32px; }
    .front-page .block-7 .img-container {
        max-width: 284px;
        width: 100%;
        margin-top: -40px;
    }
    .front-page .block-7 .img-container > img { display: none; }
    .front-page .block-7 .img-container .mobile { display: block; }
}
/* </editor-fold> */
/* <editor-fold desc="Block 8"> */
.front-page .block-8 {
    padding-top: 80px;
    padding-bottom: 100px;
}
.front-page .block-8 .title { text-align: center; }
.front-page .block-8 .subtitle {
    padding-top: 24px;
    text-align: center;
}
.front-page .block-8 .tickets-container {
    display: flex;
    justify-content: space-between;
    padding-top: 68px;
}

.front-page .block-8 .ticket {
    position: relative;
    display: flex;
    flex-direction: column;
    width: 570px;
    padding: 68px 60px;
    background: url(../images/blur.svg);
    border-radius: 20px;
    overflow: hidden;
}
.front-page .block-8 .ticket:before {
    content: "";
    position: absolute;
    top: 0;
    left: 37px;
    right: 37px;
    height: 15px;
    background: url(../images/block8_ticket-dash.svg);
}
.front-page .block-8 .ticket:nth-child(odd):after {
    content: "";
    position: absolute;
    bottom: 0;
    right: 0;
    width: 483px;
    height: 672px;
    background: url(../images/block8_gradient1.svg) center center no-repeat;
    z-index: -1;
}
.front-page .block-8 .ticket:nth-child(even):after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 458px;
    height: 672px;
    background: url(../images/block8_gradient2.svg) center center no-repeat;
    z-index: -1;
}
.front-page .block-8 .ticket .details {
    position: relative;
    display: flex;
    align-items: center;
    padding-bottom: 40px;
    border-bottom: 1px solid #f8f9f84d;
}
.front-page .block-8 .ticket:nth-child(odd) .details:before {
    content: "";
    position: absolute;
    top: -67px;
    right: -60px;
    width: 184px;
    height: 326px;
    background: url(../images/block8_image1.png) center center no-repeat;
    z-index: -1;
}
.front-page .block-8 .ticket .color-label { display: inline-block; }
.front-page .block-8 .ticket:nth-child(2) .color-label { color: #252d3d; }
.front-page .block-8 .ticket .date-location { margin-left: 12px; }
.front-page .block-8 .ticket .desc-container { list-style: none; }
.front-page .block-8 .ticket .item {
    display: flex;
    padding-top: 40px;
}
.front-page .block-8 .ticket .item .list-circle {
    flex-shrink: 0;
    width: 18px;
    height: 18px;
    margin-top: 5px;
    margin-right: 16px;
    border-radius: 50%;
}
.front-page .block-8 .ticket .item .desc { padding-top: 12px; }
.front-page .block-8 .ticket .item .desc ul { list-style: disc; }
.front-page .block-8 .ticket .item .desc p:not(:last-child) { margin-bottom: 12px; }
.front-page .block-8 .ticket .ticket-price-container {
    margin-top: 40px;
    padding-top: 40px;
    border-top: 1px solid #f8f9f84d;
}
.front-page .block-8 .ticket .ticket-price { text-align: center; }
.front-page .block-8 .ticket .ticket-price span { vertical-align: text-top; }

.front-page .block-8 .ticket .lottery-tickets-container {
    position: relative;
    margin-top: auto;
    padding-top: 40px;
}
.front-page .block-8 .ticket .lottery-tickets-container:before {
    content: "";
    position: absolute;
    top: -220px;
    right: -60px;
    width: 248px;
    height: 355px;
    background: url(../images/block8_image2.png) center center no-repeat;
    z-index: -1;
}
.front-page .block-8 .ticket .lottery-form {
    display: flex;
    gap: 15px;
}
.front-page .block-8 .ticket .lottery-ticket {
    display: flex;
    align-items: end;
    width: calc((100% - 15px * 2) / 3);
    height: 119px;
}
.front-page .block-8 .ticket .lottery-ticket * { cursor: pointer; }
.front-page .block-8 .ticket .lottery-ticket-container {
    display: flex;
    align-items: end;
    justify-content: center;
    width: 100%;
    height: 89px;
    color: #252d3d;
    background: #88e6f6;
    border-radius: 16px;
    transition: height .3s, background-color .3s, box-shadow .3s;
}
.front-page .block-8 .ticket .lottery-ticket:hover .lottery-ticket-container {
    height: 100%;
    background: #6acfe0;
    box-shadow: 0 0 24px 0 #F3F6F866;
}
.front-page .block-8 .ticket .lottery-ticket-wrapper { padding-bottom: 20px; }
/*.front-page .block-8 .ticket input[type=radio]:checked + .lottery-ticket-wrapper { background: #6acfe0; }*/
/*.front-page .block-8 .ticket .lottery-ticket-desc { position: relative; }
.front-page .block-8 .ticket .lottery-ticket-desc:before {
    content: "";
    position: absolute;
    top: 0;
    left: -40px;
    width: 24px;
    height: 24px;
    background: url(../images/icon_check.svg) center center no-repeat;
    opacity: 0;
    transition: opacity .3s;
}
.front-page .block-8 .ticket input[type=radio]:checked + .lottery-ticket-wrapper .lottery-ticket-desc:before { opacity: 1; }*/
.front-page .block-8 .ticket .lottery-ticket-price { font-weight: 600; }
.front-page .block-8 .ticket .lottery-ticket-price span { vertical-align: text-top; }
.front-page .block-8 .ticket .lottery-ticket input[type=radio] { display: none; }
.front-page .block-8 .ticket .sep {
    margin-top: 40px;
    margin-bottom: 40px;
    border-bottom: 1px solid #f8f8f8;
    opacity: .2;
}
.front-page .block-8 .ticket .circles-wrapper {
    display: flex;
    gap: 6px;
}
.front-page .block-8 .ticket .circles-wrapper .circle {
    width: 18px;
    height: 18px;
    border-radius: 50%;
}
.front-page .block-8 .ticket .circles-wrapper .circle:nth-child(1) { background: #6acfe0; }
.front-page .block-8 .ticket .circles-wrapper .circle:nth-child(2) { background: #ffd205; }
.front-page .block-8 .ticket .circles-wrapper .circle:nth-child(3) { background: #eb4579; }
.front-page .block-8 .ticket .under-btn-text { padding-top: 12px; }
.front-page .block-8 .ticket .btn-wrapper { padding-top: 40px; }
.front-page .block-8 .ticket .btn { width: 100%; }

.front-page .block-8 .disclaimer { padding-top: 32px; }

@media (max-width: 1300px) {
    .front-page .block-8 .ticket {
        width: 465px;
        padding: 68px 40px;
    }
    .front-page .block-8 .ticket:before {
        left: 43px;
        right: 43px;
    }
    .front-page .block-8 .ticket .details {
        flex-direction: column;
        align-items: start;
    }
    .front-page .block-8 .ticket:nth-child(odd) .details:before { right: -40px; }
    .front-page .block-8 .ticket .date-location {
        margin-top: 8px;
        margin-left: 0;
    }
    .front-page .block-8 .ticket .lottery-tickets-container:before {
        top: -160px;
        right: -40px;
    }
}
@media (max-width: 992px) {
    .front-page .block-8 .ticket {
        width: 350px;
        padding: 68px 20px;
    }
    .front-page .block-8 .ticket:before {
        left: 44px;
        right: 44px;
    }
    .front-page .block-8 .ticket .lottery-form { gap: 10px; }
    .front-page .block-8 .ticket .lottery-ticket { width: calc((100% - 10px * 2) / 3); }
    .front-page .block-8 .ticket .lottery-ticket-desc:before {
        top: 20px;
        left: -44px;
    }
}
@media (max-width: 768px) {
    .front-page .block-8 {
        padding-top: 60px;
        padding-bottom: 60px;
    }
    .front-page .block-8 .ticket:before {
        left: 40px;
        right: 40px;
    }
    .front-page .block-8 .tickets-container {
        flex-direction: column;
        gap: 52px;
        padding-top: 40px;
    }
    .front-page .block-8 .ticket {
        width: 100%;
        padding: 48px 10px;
    }
    .front-page .block-8 .ticket .details {
        align-items: center;
        padding-bottom: 32px;
    }
    .front-page .block-8 .ticket .item { padding-top: 32px; }
    .front-page .block-8 .ticket .ticket-price-container {
        margin-top: 32px;
        padding-top: 32px;
    }
    .front-page .block-8 .ticket:nth-child(odd) .details:before {
        top: 93px;
        right: -10px;
        width: 120px;
        height: 210px;
        background-size: contain;
    }
    .front-page .block-8 .ticket .lottery-tickets-container { padding-top: 80px; }
    .front-page .block-8 .ticket .lottery-tickets-container:before {
        top: -25px;
        right: -10px;
        width: 128px;
        height: 180px;
        background-size: contain;
    }
    .front-page .block-8 .ticket .lottery-form {
        flex-direction: column;
        gap: 16px;
    }
    .front-page .block-8 .ticket .lottery-ticket {
        width: 100%;
        height: unset;
    }
    .front-page .block-8 .ticket .lottery-ticket-container { height: unset; }
    .front-page .block-8 .ticket .lottery-ticket-wrapper {
        display: flex;
        align-items: center;
        padding: 20px 5px;
    }
    .front-page .block-8 .ticket .lottery-ticket-price:before {
        content: "/";
        margin: 0 6px 0 8px;
    }
    .front-page .block-8 .ticket .sep {
        margin-top: 32px;
        margin-bottom: 32px;
    }
    .front-page .block-8 .ticket .btn-wrapper { padding-top: 32px; }
}
@media (max-width: 576px) {
    .front-page .block-8 .ticket:before {
        left: 50%;
        right: unset;
        width: 340px;
        transform: translateX(-50%);
    }
    .front-page .block-8 .ticket:nth-child(odd) .details:before {
        width: 100px;
        height: 171px;
    }
    .front-page .block-8 .ticket .lottery-ticket-price { font-size: 20px; }
}
@media (max-width: 430px) {
    .front-page .block-8 .ticket:before { width: 265px; }
}
@media (max-width: 340px) {
    .front-page .block-8 .ticket:before { width: 225px; }
}
/* </editor-fold> */
/* <editor-fold desc="Block 9"> */
.front-page .block-9 {
    padding-top: 80px;
    padding-bottom: 80px;
}
.front-page .block-9 .mobile-title {
    display: none;
    padding-bottom: 40px;
}
.front-page .block-9 .mobile-title .title { text-align: center; }
.front-page .block-9 .mobile-title .subtitle {
    padding-top: 24px;
    text-align: center;
}
.front-page .block-9 .video-container {
    position: relative;
    padding-bottom: 54.167%; /* 56.25% for 16:9, for 1:1 = 100% */
    border-radius: 20px;
    overflow: hidden;
}
.front-page .block-9 iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.front-page .block-9 .preview-wrapper {
    position: absolute;
    inset: 0;
}
.front-page .block-9 .preview-wrapper * { cursor: pointer; }
.front-page .block-9 .preview-wrapper .container {
    position: absolute;
    display: flex;
    flex-direction: column;
    top: 0;
    left: 50%;
    height: 100%;
    transform: translateX(-50%);
}
.front-page .block-9 .preview-wrapper .circles-wrapper {
    display: flex;
    gap: 6px;
    padding-top: 40px;
}
.front-page .block-9 .preview-wrapper .circles-wrapper .circle {
    width: 18px;
    height: 18px;
    border-radius: 50%;
}
.front-page .block-9 .preview-wrapper .circles-wrapper .circle:nth-child(1) { background: #6acfe0; }
.front-page .block-9 .preview-wrapper .circles-wrapper .circle:nth-child(2) { background: #ffd205; }
.front-page .block-9 .preview-wrapper .circles-wrapper .circle:nth-child(3) { background: #eb4579; }
.front-page .block-9 .preview-wrapper .play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 98px;
    height: 100px;
    transform: translate(-50%, -50%);
}
.front-page .block-9 .preview-wrapper .desc-wrapper {
    max-width: 480px;
    margin-top: auto;
    padding-bottom: 60px;
}
.front-page .block-9 .preview-wrapper .subtitle { padding-top: 40px; }

.front-page .block-9 .photos-container {
    position: relative;
    margin: 0 -10px;
    padding-top: 40px;
}
.front-page .block-9 .photos-container .photo {
    width: 380px;
    margin: 0 10px;
    border-radius: 20px;
    overflow: hidden;
}
.front-page .block-9 .photos-container .slick-arrow {
    position: absolute;
    display: block;
    top: 50%;
    width: 40px;
    height: 40px;
    padding: 0;
    color: transparent;
    background: transparent;
    border: 0;
    font-size: 0;
    line-height: 0;
    transform: translateY(-50%);
    cursor: pointer;
    outline: none;
}
.front-page .block-9 .photos-container .slick-arrow.slick-prev { left: -42px; }
.front-page .block-9 .photos-container .slick-arrow.slick-next { right: -42px; }
.front-page .block-9 .photos-container .slick-arrow:before {
    content: "";
    position: absolute;
    inset: 0;
    background: url(../images/icon_slider.svg);
    opacity: .5;
    transition: opacity .3s;
}
.front-page .block-9 .photos-container .slick-arrow:hover:before { opacity: 1; }
.front-page .block-9 .photos-container .slick-arrow.slick-next:before { transform: rotate(180deg); }
.front-page .block-9 .photos-container .slick-dots { padding-top: 32px; }

@media (max-width: 1090px) {
    .front-page .block-9 .photos-container .slick-arrow {
        filter: invert(1);
        z-index: 1;
    }
    .front-page .block-9 .photos-container .slick-arrow.slick-prev { left: 18px; }
    .front-page .block-9 .photos-container .slick-arrow.slick-next { right: 18px; }
}
@media (max-width: 1300px) {
    .front-page .block-9 .photos-container { margin: 0 -8px; }
    .front-page .block-9 .photos-container .photo { margin: 0 8px; }
}
@media (max-width: 992px) {
    .front-page .block-9 .preview-wrapper .play-btn {
        width: 70px;
        height: 72px;
    }
    .front-page .block-9 .preview-wrapper .subtitle { padding-top: 30px; }
    .front-page .block-9 .preview-wrapper .desc-wrapper { padding-bottom: 20px; }
    .front-page .block-9 .photos-container .slick-arrow { filter: invert(0); }
    .front-page .block-9 .photos-container .slick-arrow.slick-prev { left: -42px; }
    .front-page .block-9 .photos-container .slick-arrow.slick-next { right: -42px; }
}
@media (max-width: 840px) {
    .front-page .block-9 .photos-container .slick-arrow {
        filter: invert(1);
        z-index: 1;
    }
    .front-page .block-9 .photos-container .slick-arrow.slick-prev { left: 18px; }
    .front-page .block-9 .photos-container .slick-arrow.slick-next { right: 18px; }
}
@media (max-width: 768px) {
    .front-page .block-9 {
        padding-top: 40px;
        padding-bottom: 60px;
    }
    .front-page .block-9 .mobile-title { display: block; }
    .front-page .block-9 .preview-wrapper .desc-wrapper { display: none; }
    .front-page .block-9 .photos-container .slick-arrow { filter: invert(0); }
    .front-page .block-9 .photos-container .slick-arrow.slick-prev { left: -42px; }
    .front-page .block-9 .photos-container .slick-arrow.slick-next { right: -42px; }
}
@media (max-width: 576px) {
    .front-page .block-9 .preview-wrapper .circles-wrapper { padding-top: 12px; }
    .front-page .block-9 .preview-wrapper .circles-wrapper .circle {
        width: 12px;
        height: 12px;
    }
    .front-page .block-9 .preview-wrapper .play-btn {
        width: 40px;
        height: 41px;
    }
    .front-page .block-9 .photos-slider-container {
        max-width: 100%;
        padding-left: 0;
        padding-right: 0;
    }
    .front-page .block-9 .photos-container {
        margin: 0;
        padding-top: 20px;
    }
    .front-page .block-9 .photos-container .photo {
        max-width: 380px;
        margin: 0 4px;
    }
    .front-page .block-9 .photos-container .slick-dots { padding-top: 20px; }
}
/* </editor-fold> */
/* <editor-fold desc="Block 10"> */
.front-page .block-10 {
    padding-top: 80px;
    padding-bottom: 80px;
    overflow: hidden;
}
.front-page .block-10 .title { text-align: center; }
.front-page .block-10 .partners-container {
    margin-left: -10px;
    margin-right: -10px;
    padding-top: 68px;
}
.front-page .block-10 .partners-wrapper { max-width: 1200px; }
.front-page .block-10 .partner {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: calc((100% - (20px * 4)) / 4);
    margin: 0 10px 20px;
    padding: 0 20px;
    border-radius: 20px;
    overflow: hidden;
    transition: background-color .3s, box-shadow .3s;
}
.front-page .block-10 .partner:before {
    content: "";
    position: absolute;
    inset: 0;
    background: url(../images/blur.svg);
    transition: opacity .3s;
    z-index: -1;
}
.front-page .block-10 .partner:hover {
    background: #f8f9f8e5;
    backdrop-filter: blur(10px);
    box-shadow: 0 0 20px 0 #eb457933;
}
.front-page .block-10 .partner:hover:before { opacity: 7%; }
.front-page .block-10 .partner.size-1 { height: 240px; }
.front-page .block-10 .partner.size-2 { height: 160px; }
.front-page .block-10 .partner .logo-wrapper {
    opacity: .4;
    filter: grayscale(1) contrast(3);
    transition: filter .3s, opacity .3s;
}
.front-page .block-10 .partner:hover .logo-wrapper {
    filter: none;
    opacity: 1;
}
.front-page .block-10 .gutter-sizer { width: 20px; }
.front-page .block-10 .partners-container .slick-dots { padding-top: 12px; }

@media (max-width: 992px) {
    .front-page .block-10 .partners-container {
        margin-left: -6px;
        margin-right: -6px;
    }
    .front-page .block-10 .partners-wrapper {
        margin-left: 6px;
        margin-right: 6px;
    }
    .front-page .block-10 .partner {
        width: calc((100% - (12px * 4)) / 4);
        margin: 0 6px 12px;
    }
    .front-page .block-10 .gutter-sizer { width: 12px; }
    .front-page .block-10 .partner.size-1 { height: 170px; }
    .front-page .block-10 .partner.size-2 { height: 115px; }
}
@media (max-width: 768px) {
    .front-page .block-10 {
        padding-top: 60px;
        padding-bottom: 60px;
    }
    .front-page .block-10 .partners-container { padding-top: 40px; }
    .front-page .block-10 .partner { width: calc((100% - (12px * 3)) / 3); }
    .front-page .block-10 .partner.size-1 { height: 100px; }
    .front-page .block-10 .partner.size-2 { height: 70px; }
}
@media (max-width: 576px) {
    .front-page .block-10 .partners-wrapper {
        margin-left: 0;
        margin-right: 0;
    }
    .front-page .block-10 .partner { width: calc((100% - (12px * 2)) / 2); }
}
/* </editor-fold> */
/* <editor-fold desc="Block 11"> */
.front-page .block-11 {
    padding-top: 80px;
    padding-bottom: 160px;
}
.front-page .block-11 .title { text-align: center; }
.front-page .block-11 .faq-container {
    max-width: 980px;
    margin: 0 auto;
    padding-top: 68px;
}
.front-page .block-11 .question-item {
    padding: 40px;
    border-top: 1px solid #f8f9f84d;
}
.front-page .block-11 .question-item:last-child { border-bottom: 1px solid #f8f9f84d; }
.front-page .block-11 .question-item .question-header {
    display: flex;
    align-items: center;
    cursor: pointer;
}
.front-page .block-11 .question-item .question-header * { cursor: pointer; }
.front-page .block-11 .question-item .question-header .question {
    width: 100%;
    padding-right: 14px;
    transition: color .3s;
}
.front-page .block-11 .question-item.expanded .question-header .question { color: #eb4579; }
.front-page .block-11 .question-item .question-header .expand {
    position: relative;
    width: 40px;
    height: 40px;
    flex-shrink: 0;
}
.front-page .block-11 .question-item .question-header .expand svg { transition: transform .3s; }
.front-page .block-11 .question-item.expanded .question-header .expand svg { transform: rotate(45deg); }
.front-page .block-11 .question-item .question-header .expand svg path { transition: stroke .3s; }
.front-page .block-11 .question-item.expanded .question-header .expand svg path { stroke: #eb4579; }
.front-page .block-11 .question-item .answer {
    display: none;
    padding-top: 20px;
    opacity: 0;
    transition: opacity .2s;
}
.front-page .block-11 .question-item.expanded .answer {
    display: block;
    transition: opacity .3s .4s;
    opacity: 1;
}
.front-page .block-11 .question-item .answer a { font-weight: inherit; }

@media (max-width: 768px) {
    .front-page .block-11 {
        padding-top: 60px;
        padding-bottom: 120px;
    }
    .front-page .block-11 .faq-container { padding-top: 40px; }
    .front-page .block-11 .question-item { padding: 32px 0; }
}
/* </editor-fold> */
/* <editor-fold desc="Block 12"> */
.front-page .block-12 {
    padding-top: 100px;
    padding-bottom: 100px;
    background: url(../images/block12_background.svg) center center no-repeat;
    background-size: cover;
}
.front-page .block-12 .services-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    padding-top: 68px;
}
.front-page .block-12 .service {
    display: block;
    width: calc((100% - (20px * 3)) / 4);
    padding: 40px;
    background: #f8f9f833;
    border-radius: 20px;
    backdrop-filter: blur(10px);
}
.front-page .block-12 .service .logo-wrapper img {
    height: 40px;
    width: auto;
}
.front-page .block-12 .service .desc {
    padding-top: 20px;
    color: #e2e9f3;
}
.front-page .block-12 .dummy { width: calc((100% - (20px * 3)) / 4); }
.front-page .block-12 .img-wrapper {
    position: absolute;
    top: 0;
    right: 23px;
    width: 220px;
}

@media (max-width: 1300px) {
    .front-page .block-12 .service { padding: 30px; }
    .front-page .block-12 .service .logo-wrapper img { height: 30px; }
    .front-page .block-12 .img-wrapper {
        top: 100px;
        right: -5px;
        width: 180px;
    }
}
@media (max-width: 992px) {
    .front-page .block-12 {
        position: relative;
        background: url(../images/blur.svg);
        overflow: hidden;
    }
    .front-page .block-12:before,
    .front-page .block-12:after {
        content: "";
        position: absolute;
        z-index: -1;
    }
    .front-page .block-12:before {
        top: 0;
        right: 0;
        width: 992px;
        height: 659px;
        background: url(../images/block12_gradient1-mobile.svg);
    }
    .front-page .block-12:after {
        bottom: 0;
        left: 0;
        width: 992px;
        height: 561px;
        background: url(../images/block12_gradient2-mobile.svg);
    }
    .front-page .block-12 .service {
        width: calc((100% - (20px * 1)) / 2);
        padding: 28px 36px;
    }
    .front-page .block-12 .service .logo-wrapper img { height: 40px; }
    .front-page .block-12 .dummy { display: none; }
    .front-page .block-12 .img-wrapper {
        top: unset;
        bottom: -170px;
        right: -110px;
        transform: rotate(-10deg);
    }
}
@media (max-width: 768px) {
    .front-page .block-12 {
        padding-top: 60px;
        padding-bottom: 135px;
    }
    .front-page .block-12 .services-container { padding-top: 40px; }
    .front-page .block-12 .service .desc { padding-top: 12px; }
    .front-page .block-12 .img-wrapper { bottom: -230px; }
}
@media (max-width: 576px) {
    .front-page .block-12 .service { width: 100%; }
    .front-page .block-12 .img-wrapper {
        width: 130px;
        bottom: -220px;
        right: -40px;
    }
}
/* </editor-fold> */
/* <editor-fold desc="Block 13"> */
.front-page .block-13 {
    padding-top: 160px;
    padding-bottom: 60px;
}
.front-page .block-13 .guests-container {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 100px;
    border-radius: 20px;
    background: url(../images/block13_background.svg) center center no-repeat;
    background-size: 100% 100%;
    overflow: hidden;
}
.front-page .block-13 .desc { padding-top: 40px; }
.front-page .block-13 .sep {
    margin-top: 40px;
    margin-bottom: 40px;
    border-bottom: 1px solid #f8f8f8;
    opacity: .2;
}
.front-page .block-13 .circles-wrapper {
    display: flex;
    gap: 6px;
}
.front-page .block-13 .circles-wrapper .circle {
    width: 18px;
    height: 18px;
    border-radius: 50%;
}
.front-page .block-13 .circles-wrapper .circle:nth-child(1) { background: #6acfe0; }
.front-page .block-13 .circles-wrapper .circle:nth-child(2) { background: #ffd205; }
.front-page .block-13 .circles-wrapper .circle:nth-child(3) { background: #eb4579; }
.front-page .block-13 .under-btn-text { padding-top: 12px; }
.front-page .block-13 .btn-wrapper { padding-top: 40px; }
.front-page .block-13 .btn { min-width: 206px; }
.front-page .block-13 .img-container {
    width: 480px;
    flex-shrink: 0;
}

@media (max-width: 1300px) {
    .front-page .block-13 .guests-container {
        align-items: center;
        padding: 80px 40px;
    }
    .front-page .block-13 .img-container { width: 390px; }
}
@media (max-width: 992px) {
    .front-page .block-13 .guests-container {
        flex-direction: column-reverse;
        padding: 40px;
        overflow: unset;
    }
    .front-page .block-13 .desc-container { padding-top: 12px; }
    .front-page .block-13 .title { text-align: center; }
    .front-page .block-13 .desc { text-align: center; }
    .front-page .block-13 .img-container { width: 320px; }
}
@media (max-width: 768px) {
    .front-page .block-13 {
        padding-top: 60px;
        padding-bottom: 30px;
    }
    .front-page .block-13 .guests-container {
        position: relative;
        padding: 48px 20px;
        background: url(../images/blur.svg);
        background-size: cover;
    }
    .front-page .block-13 .guests-container:before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 412px;
        background: url(../images/block7_gradient-mobile.svg) top center;
        background-size: 540px 412px;
        border-top-left-radius: 20px;
        border-top-right-radius: 20px;
        z-index: -1;
    }
    .front-page .block-13 .desc { padding-top: 24px; }
    .front-page .block-13 .sep {
        margin-top: 32px;
        margin-bottom: 32px;
    }
    .front-page .block-13 .btn-wrapper { padding-top: 32px; }
    .front-page .block-13 .img-container {
        max-width: 284px;
        width: 100%;
    }
}
/* </editor-fold> */
