.detail-banner {
    background-image: url("images/banner-bg.png?v=2");
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
}
.detail-banner > img {
    position: absolute;
    top: 0;
    right: 0;
}
.detail-banner h1 {
    font-family: "HelveticaNeueCyr-Bold", sans-serif;
    font-size: 40px;
    line-height: 51px;
    color: white;
}
.banner__left div {
    font-size: 32px;
    line-height: 48px;
    color: white;
}
.banner__inner {
    position: relative;
    z-index: 1;
    display: flex;
    padding: 100px 50px 100px 50px;
}
.banner__text {
    display: flex;
    position: relative;
}
.banner__right {
    display: flex;
}
.banner__inner iframe {
    height: 340px;
    margin-top: auto;
}
.btn-transparent {
    cursor: pointer;
    display: block;
    width: fit-content;
    font-size: 18px;
    padding: 12px 20px;
    border-radius: 24px;
    color: white;
    box-shadow: 0 0 20px rgba(0, 0, 0, .3);
    margin-top: 20px;
    transition: box-shadow .2s;
    background-color: var(--pink);
}
.btn-transparent._white {
    background-color: white;
    color: #A46E94;
}
.js--anchor-menu.eko {
    position: relative;
    z-index: 1;
    background-color: #FAF6F5;
    transition: background-color .3s;
    margin-bottom: 80px;
}
.js--anchor-menu.eko._fix {
    position: fixed;
    z-index: 98;
    background-color: white !important;
}
.tabs__head__item {
    font-size: 18px;
    padding: 0 36px;
    margin: 12px 0;
}
.tabs__head__item:first-child {
    padding-left: 0;
}
.tabs__head__item:last-child {
    padding-right: 0;
}
.tabs__head__item:not(:last-child) {
    border-right: 1px solid #646565;
}
.tabs__head__item.no-style {
    line-height: initial;
    padding: 0;
    margin: 0;
}
.eko .tabs__head__item.no-style a:hover {
    color: initial;
}
.eko .tabs__head__item.no-style:hover a {
    color: white;
}
.eko .tabs__head__item a {
    white-space: nowrap;
}
.eko .tabs__head__item a:hover {
    color: var(--pink);
}
.eko .btn-arrow::after {
    content: none !important;
}
.banner-img {
    position: absolute;
    bottom: -3px;
    right: 120px;
}

@media screen and (max-width: 1200px) {
    .banner-img {
        bottom: -3px;
        right: 0;
    }
    .banner-img img {
        width: 100%;
    }
}

@media screen and (max-width: 1000px) {
    .js--anchor-menu.eko {
        display: none;
    }
    .banner-img {
        width: 100%;
        max-width: 320px;
    }
    .banner__inner {
        padding: 60px;
    }
}

.mobile-page-burger {
    display: none;
}

@media screen and (max-width: 800px) {
    .detail-banner h1 {
        margin-bottom: 300px;
    }
    .banner__inner {
        width: 100%;
        padding: 15px;
    }
    .banner-img {
        bottom: 60px;
        right: 50%;
        transform: translateX(50%);
    }
    .banner-img img {
        transform: scale(-1, 1);
    }
    .banner__text {
        margin-bottom: 0;
    }
    .mobile-page-burger {
        display: block;
        width: 30px;
        height: 22px;
        background-image: url("images/icon-burger.svg?v=2");
        background-repeat: no-repeat;
        background-size: cover;
        position: absolute;
        right: 0;
        bottom: 10px;
        z-index: 2;
    }
    .mobile-page-burger__inner {
        position: relative;
    }
    .mobile-page-burger__list {
        display: none;
        position: absolute;
        right: 40px;
        top: 0;
        background-color: white;
        padding: 20px;
        border-radius: 20px;
        z-index: 1;
        box-shadow: 0 0 4px 0 rgba(0, 0, 0, .4);
    }
    .mobile-page-burger.act .mobile-page-burger__list {
        display: block;
    }
    .mobile-page-burger__list a {
        color: #646565;
    }
    .mobile-page-burger__list li {
        position: relative;
        font-size: 24px;
        line-height: 31px;
    }
    .mobile-page-burger__list li:not(:last-child) {
        margin-bottom: 20px;
    }
    .mobile-page-burger__list li:not(:last-child)::after {
        content: "";
        width: 30px;
        height: 1px;
        background-color: #646565;
        position: absolute;
        left: 0;
        bottom: -10px;
    }
    html {
        scroll-behavior: smooth;
    }
}

.detail-page {
    margin-bottom: 80px;
}
.detail-page h2 {
    font-family: "HelveticaNeueCyr-Bold", sans-serif;
    font-size: 32px;
    line-height: 46px;
    color: #EA89A2;
    margin-bottom: 24px;
}

.events {
    margin-bottom: 80px;
}
.events h2 {
    font-family: "HelveticaNeueCyr-Bold", sans-serif;
    font-size: 40px;
    line-height: 56px;
    color: #EA89A2;
    margin-bottom: 40px;
}
.events__grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-gap: 20px;
}
.events__i {
    background-color: #FAF6F5;
    border-radius: 20px;
    padding: 20px 24px;
}
.events__i h3 {
    font-family: "HelveticaNeueCyr-Bold", sans-serif;
    font-size: 48px;
    line-height: 48px;
    color: #EA89A2;
    margin-bottom: 10px;
}
.events__i  p {
    font-size: 20px;
    line-height: 32px;
    margin-bottom: 10px;
}

@media screen and (max-width: 1200px) {
    .events__grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media screen and (max-width: 800px) {
    .events {
        margin-bottom: 40px;
    }
    .events h2 {
        font-size: 28px;
        line-height: 32px;
        margin-bottom: 20px;
    }
    .events__grid {
        grid-template-columns: 1fr;
    }
    .events__i {
        padding: 20px 24px;
    }
}

.program {
    margin-bottom: 80px;
}
.program h2 {
    font-family: "HelveticaNeueCyr-Bold", sans-serif;
    font-size: 40px;
    line-height: 56px;
    color: #EA89A2;
    margin-bottom: 40px;
}
.program__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 33px 20px;
}
.program__i {
    display: flex;
    justify-content: space-between;
    background-color: #FAF6F5;
    border-radius: 20px;
}
.program__i-left {
    padding-top: 55px;
    padding-left: 45px;
    padding-right: 45px;
}
.program__i h3 {
    font-family: "HelveticaNeueCyr-Bold", sans-serif;
    font-size: 32px;
    line-height: 46px;
    color: #EA89A2;
    margin-bottom: 10px;
}
.program__i p {
    font-size: 16px;
    line-height: 24px;
}

@media screen and (max-width: 1000px) {
    .program__grid {
        grid-template-columns: 1fr;
        grid-gap: 20px;
    }
}

@media screen and (max-width: 800px) {
    .program__i {
        display: flex;
        flex-direction: column;
        background-color: white;
    }
    .program__i-left {
        display: flex;
        padding: 0;
    }
    .program__i h3 {
        margin-bottom: 0;
        margin-right: 10px;
    }
    .program__i img {
        display: block;
        margin: 0 auto;
        width: 100%;
        max-width: 280px;
        object-fit: contain;
    }
    .program__i p {
        max-width: calc(100% - 100px);
    }
}

.why-should-go {
    margin-bottom: 80px;
}
.why-should-go h2 {
    font-family: "HelveticaNeueCyr-Bold", sans-serif;
    font-size: 40px;
    line-height: 56px;
    color: #EA89A2;
    margin-bottom: 40px;
}
.why-should-go-row {
    display: flex;
}
.why-should-go-img {
    max-width: 340px;
}
.why-should-go__grid {
    width: 50%;
    flex-grow: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 22px;
}
.why-should-go__i {
    border-radius: 20px;
    background-color: #FAF6F5;
    padding: 25px;
}
.why-should-go__i h3 {
    font-size: 24px;
    line-height: 32px;
    color: #EA89A2;
    margin-bottom: 10px;
}
.why-should-go__i p {
    font-size: 16px;
    line-height: 24px;
}
.why-should-go-img {
    margin-left: 22px;
}
.why-should-go-img img {
    max-width: 100%;
}

@media screen and (max-width: 1000px) {
    .why-should-go-row {
        flex-direction: column;
    }
    .why-should-go-img {
        margin-top: 20px;
        margin-left: auto;
        margin-right: auto;
    }
    .why-should-go__grid {
        width: 100%;
    }
}

@media screen and (max-width: 800px) {
    .why-should-go {
        margin-bottom: 40px;
    }
    .why-should-go__grid {
        grid-template-columns: 1fr;
    }
}

.event-form {
    margin-bottom: 80px;
}
.event-form__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-radius: 20px;
    background-color: #EA89A2;
    padding: 49px 47px;
}
.event-form h2 {
    font-family: "HelveticaNeueCyr-Bold", sans-serif;
    font-size: 32px;
    line-height: 46px;
    color: white;
}

@media screen and (max-width: 1000px) {
    .event-form__inner {
        flex-direction: column;
    }
    .event-form__inner {
        padding: 48px 28px;
    }
}

@media screen and (max-width: 800px) {
    .event-form {
        margin-bottom: 40px;
    }
    .event-form h2 {
        font-size: 28px;
        line-height: 32px;
        margin-bottom: 28px;
    }
}