@font-face {
    font-family: 'NimbusSanL';
    src: url('../fonts/NimbusSanL/NimbusSanL-Regu.woff2') format('woff2'),
    url('../fonts/NimbusSanL/NimbusSanL-Regu.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'NimbusSanL';
    src: url('../fonts/NimbusSanL/NimbusSanL-Bold.woff2') format('woff2'),
    url('../fonts/NimbusSanL/NimbusSanL-Bold.woff') format('woff');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Garda Nova II';
    src: url('../fonts/GardaNoval/GardaNovaII-Regular.eot');
    src: url('../fonts/GardaNoval/GardaNovaII-Regular.eot?#iefix') format('embedded-opentype'),
    url('../fonts/GardaNoval/GardaNovaII-Regular.woff2') format('woff2'),
    url('../fonts/GardaNoval/GardaNovaII-Regular.woff') format('woff'),
    url('../fonts/GardaNoval/GardaNovaII-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Neue Montreal';
    src: url('../fonts/NeueMontreal/NeueMontreal-Medium.woff') format('woff2'),
    url('../fonts/NeueMontreal/NeueMontreal-Medium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Neue Montreal';
    src: url('../fonts/NeueMontreal/NeueMontreal-Light.woff2') format('woff2'),
    url('../fonts/NeueMontreal/NeueMontreal-Light.woff') format('woff');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}


@font-face {
    font-family: 'Neue Montreal';
    src: url('../fonts/NeueMontreal/NeueMontreal-Regular.woff2') format('woff2'),
    url('../fonts/NeueMontreal/NeueMontreal-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Neue Montreal';
    src: url('../fonts/NeueMontreal/NeueMontreal-Bold.woff2') format('woff2'),
    url('../fonts/NeueMontreal/NeueMontreal-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}
:root {
    --b-white: #fdfdfb;
    --b-black: #020304;
}
* {
    box-sizing: border-box;
}
body {
    font-family: "EB Garamond", serif;
}
#header .logo {
    position: fixed;
    top: 50px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 999;
}
#header .logo img {
    height: 150px;
    object-fit: contain;
    object-position: center top;
}
.main-menu {
    font-family: 'NimbusSanL';
    position: fixed;
    top: 30px;
    left: 30px;
    z-index: 99;
    cursor: pointer;
    color: var(--b-black);
    font-size: 32px;
    font-weight: 700;
}
.contact-block {
    position: fixed;
    top: 50vh;
    left: 0;
    width: 100%;
    transform: translateY(-50%);
    z-index: 99;
    display: flex;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: all 600ms ease;
}
.contact-block.active {
    opacity: 1;
    pointer-events: all;
}
.contact-block a {
    font-family: 'NimbusSanL';
    text-decoration: none;
    font-size: 120px;
    color: var(--b-black);
    text-shadow: 0 0 6px var(--b-white), 0 0 6px var(--b-white), 0 0 10px var(--b-white), 0 0 10px var(--b-white);
}
#slider-mobile {
    display: none;
}
#slider .slider-inner {
    display: flex;
    position: sticky;
    top: 0;
    overflow: hidden;
}
#slider .slide {
    width: 100%;
    height: 100vh;
    min-width: 100%;
    overflow: hidden;
}
#slider .slide img {
    display: flex;
}

#slider .slide-1 img {
    width: 100%;
    height: 100dvh;
    object-position: center center;
    object-fit: cover;
}
#slider .slide-2 img {
    max-height: 90vh;
    position: absolute;
    right: 5%;
    bottom: 5vh;
}
#slider .slide-3 img {
    position: absolute;
    left: 2%;
    bottom: 10%;
    height: 75vh;
}
#slider .slide-4 img {
    position: absolute;
    right: 0;
    height: 50vh;
    bottom: 20vh;
}
#slider .slide-5 img {
    position: absolute;
    left: 20%;
    bottom: 12%;
    height: 65vh;
}
#slider .slide-6 img {
    position: absolute;
    left: 50%;
    bottom: 2%;
    height: 80vh;
}
.scroll-down-nudge {
    height: 45vh;
    width: 11em;
    position: fixed;
    top: 55vh;
    display: block;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    pointer-events: none;
    z-index: 3;
    opacity: 0;
    -webkit-transition: opacity 0.5s ease-in;
    transition: opacity 0.5s ease-in;
    cursor: pointer;
}
.scroll-down-nudge.active {
    opacity: 1;
    pointer-events: all;
}
.scroll-down-nudge.bounce {
    -webkit-animation: bouncing-arrow 1s infinite;
    animation: bouncing-arrow 1s infinite;
}
.scroll-down-nudge .scroll-down-text {
    position: absolute;
    height: calc(100% - 6em);
    width: 100%;
    top: 0;
    left: 0;
    background-image: url(../images/scroll-down-txt.svg);
    background-repeat: round;
    background-position: left bottom;
}
.scroll-down-nudge .arrow {
    position: absolute;
    width: 11em;
    height: 6em;
    display: block;
    background-image: url(../images/cursor_down.svg);
    background-size: 50%;
    background-position: center bottom;
    background-repeat: no-repeat;
    bottom: 3em;
}
#slider.changed-cursor:active {
    cursor: pointer;
    cursor: url(../images/scroll-down-cursor.svg), auto;
}

#homepage {
    font-family: 'Garda Nova II';
    overflow-x: hidden;
}
#homepage #header .logo {
    position: absolute;
}
#homepage .borscht-hero .borscht-hero-inner {
    min-height: 100dvh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    padding-bottom: 90px;
}
#homepage .borscht-hero img {
    width: calc(100% - 100px);
}
#homepage .borscht-hero .toggle-color path {
    stroke-width: 1.5px;
    fill: none;
    stroke: #1d1d1b;
}
#homepage .borscht-hero .toggle-color line {
    fill: none;
    stroke: #1d1d1b;
}
#homepage .borscht-hero .hero-links {
    display: flex;
    width: 100%;
    justify-content: space-between;
    padding: 0 50px;
    height: 90px;
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 99;
    background-color: var(--b-white);
}
#homepage .borscht-hero .hero-links.fixed-menu {
    position: fixed;
    top: 0;
    bottom: auto;
    width: 100%;
}
#homepage .borscht-hero .hero-links-right,
#homepage .borscht-hero .hero-links-left {
    display: flex;
    align-items: center;
    column-gap: 15px;
}
#homepage .hero-links .link {
    text-transform: uppercase;
    text-decoration: none;
    color: var(--b-black);
    font-size: 21px;
    cursor: pointer;
    font-family: "Neue Montreal";
}
#homepage .hero-links .links-delimiter {
    width: 100px;
    height: 1px;
    background-color: var(--b-black);
}
#homepage .hero-links .toggle-color {
    cursor: pointer;
}
#homepage .hero-links .toggle-color svg {
    width: 24px;
}
#homepage .borscht-hero .borscht-hero-dates {
    width: calc(100% - 100px);
    padding-bottom: 20dvh;
    flex-direction: column;
    row-gap: 20px;
    display: none;
}
#homepage .borscht-hero .borscht-hero-date {
    display: flex;
    align-items: center;
    justify-content: space-between;
    column-gap: 20px;
    font-size: 21px;
}
#homepage .borscht-hero .borscht-hero-date .venue {
    min-width: 200px;
}
#homepage .borscht-hero .borscht-hero-date .date-delimiter {
    width: 100%;
    height: 1px;
    background-color: var(--b-black);
}
.footer-menu .menu {
    margin: 0;
    list-style: none;
    display: flex;
    width: 100%;
    padding: 20px 50px;
    justify-content: space-between;
    align-items: center;
    column-gap: 20px;
    background-color: var(--b-black);
}
.footer-menu .menu a {
    text-decoration: none;
    color: var(--b-white);
    font-size: 21px;
    white-space: nowrap;
    font-family: "Neue Montreal";
}
.footer-menu .menu .item-delimiter {
    width: 100%;
}
.footer-menu .menu .item-delimiter a {
    font-size: 0;
    width: 100%;
    height: 1px;
    background-color: var(--b-white);
    display: flex;
}
.borscht-image .borscht-image-inner {
    display: flex;
}
.borscht-image .borscht-image-inner img {
    width: 100%;
}
.borscht-images .borscht-images-inner {
    background-color: var(--b-black);
    padding: 400px 0 600px;
}
.borscht-images .borscht-images-inner .image {
    position: absolute;
}
.borscht-images .borscht-images-inner .image_1 {
    top: 20px;
    right: 20vw;
}
.borscht-images .borscht-images-inner .image_1 img {
    height: 280px;
}
.borscht-images .borscht-images-inner .image_2 {
    top: 150px;
    left: 20px;
}
.borscht-images .borscht-images-inner .image_2 img {
    height: 350px;
}
.borscht-images .borscht-images-inner .image_3 {
    right: 40px;
    bottom: 280px;
}
.borscht-images .borscht-images-inner .image_3 img {
    height: 320px;
}
.borscht-images .borscht-images-inner .image_4 {
    left: 150px;
    bottom: 200px;
}
.borscht-images .borscht-images-inner .image_4 img {
    height: 250px;
}
.borscht-images .borscht-images-inner .image_5 {
    left: 50%;
    transform: translateX(-50%);
    bottom: 20px;
}
.borscht-images .borscht-images-inner .image_5 img {
    height: 300px;
}
.borscht-images .borscht-images-inner .content {
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
    padding: 0 50px;
    z-index: 2;
}
.borscht-images .borscht-images-inner .title {
    color: var(--b-white);
    margin: 0;
    font-weight: 400;
    font-size: 46px;
}
.borscht-images .borscht-images-inner .subtitle {
    color: var(--b-white);
    margin-top: 10px;
    font-family: "Neue Montreal";
}
#homepage.theme-dark .borscht-hero .hero-links,
#homepage.theme-dark .footer-menu .menu .item-delimiter a,
#homepage.theme-dark {
    background-color: var(--b-black);
}
#homepage.theme-dark .hero-links .toggle-color svg,
#homepage.theme-dark .borscht-hero img,
#homepage.theme-dark .logo img {
    filter: invert(1);
}
#homepage.theme-dark .borscht-hero .borscht-hero-date,
#homepage.theme-dark .hero-links .link {
    color: var(--b-white);
}
#homepage.theme-dark .borscht-images .borscht-images-inner,
#homepage.theme-dark .footer-menu .menu,
#homepage.theme-dark .borscht-hero .borscht-hero-date .date-delimiter,
#homepage.theme-dark .hero-links .links-delimiter {
    background-color: var(--b-white);
}
#homepage.theme-dark .borscht-images .title,
#homepage.theme-dark .borscht-images .subtitle,
#homepage.theme-dark .footer-menu .menu a {
    color: var(--b-black);
}
#menu-trigger {
    display: none;
}
.header-menu {
    display: none;
}
@keyframes bouncing-arrow {
    from, 20%, 53%, 80%, to {
        animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
        transform: translate3d(-50%,0,0);
    }

    40%, 43% {
        animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
        transform: translate3d(-50%, -30px, 0);
    }

    70% {
        animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
        transform: translate3d(-50%, -15px, 0);
    }

    90% {
        transform: translate3d(-50%,-4px,0);
    }
}
@media screen and (max-width: 1450px ) {
    .contact-block a {
        font-size: clamp(1.75rem, -0.2921rem + 8.5981vw, 7.5rem);
    }

}
@media screen and (max-width: 800px ) {
    .scroll-down-nudge,
    #slider {
        display: none;
    }
    #slider-mobile {
        width: 100%;
        position: relative;
        display: flex;
        flex-direction: column;
    }
    #slider-mobile .slide {
        width: 100%;
        height: 100dvh;
        overflow: hidden;
        display: flex;
        position: sticky;
        top: 0;
    }
    #slider-mobile .slide img {
        display: flex;
    }

    #slider-mobile .slide-1 img {
        width: 100%;
        height: 100dvh;
        object-position: left bottom;
        object-fit: cover;
    }
	#slider-mobile .slide-2 img {
		position: absolute;
		left: 10px;
		bottom: 2vh;
		width: calc(100% - 20px);
	}
    #slider-mobile .slide-3 img {
        position: absolute;
        left: 10px;
        bottom: 10%;
        width: calc(100% - 20px);
    }
    #slider-mobile .slide-4 img {
        position: absolute;
        left: 10px;
        width: calc(100% - 20px);
        bottom: 5vh;
    }
    #slider-mobile .slide-5 img {
        position: absolute;
        left: 10px;
        bottom: 20%;
        width: calc(100% - 20px);
    }
    #slider-mobile .slide-6 img {
        position: absolute;
        left: 10px;
        bottom: 2%;
        width: calc(100% - 20px);
    }
    #header .logo img {
        height: 100px;
    }
    .main-menu {
        font-weight: 21;
    }
}
@media screen and (max-width: 768px ) {
    #homepage .borscht-hero .hero-links {
        width: 100%;
        flex-direction: column;
        row-gap: 10px;
        height: auto;
        display: none;
    }
    #homepage .borscht-hero img {
        width: calc(100% - 40px);
    }
    #homepage .borscht-hero .hero-links-right, #homepage .borscht-hero .hero-links-left {
        width: 100%;
        justify-content: space-between;
    }
    #homepage .hero-links .link {
        font-size: 18px;
    }
    #homepage .hero-links .hero-links-left a,
    #homepage .hero-links .hero-links-right a,
    #homepage .hero-links .hero-links-left span,
    #homepage .hero-links .hero-links-right span {
        min-width: auto;
    }
    #homepage .hero-links .toggle-color {
        min-width: 140px;
    }
    #homepage .hero-links .links-delimiter {
        width: 50px;
    }
    #homepage .hero-links .hero-links-left>:last-child,
    #homepage .hero-links .hero-links-right>:last-child {
        text-align: right;
        white-space: wrap;
        width: auto;
    }
    #homepage .hero-links .links-delimiter {
        width: 0;
    }
    #homepage .borscht-hero .borscht-hero-dates {
        width: calc(100% - 40px);
    }
    #homepage .borscht-hero .borscht-hero-date {
        font-size: 18px;
    }
    #homepage .borscht-hero .borscht-hero-date .venue {
        min-width: 100px;
    }
    .footer-menu .menu {
        flex-direction: column;
        row-gap: 10px;
    }
    .footer-menu .menu .item-delimiter {
        width: 50px;
    }
    .footer-menu .menu a {
        font-size: 18px;
    }
    .borscht-images .borscht-images-inner .content {
        padding: 0 20px;
    }
    .borscht-images .borscht-images-inner .title {
        font-size: 28px;
    }
    .borscht-images .borscht-images-inner .image_1 img {
        height: 200px;
    }
    .borscht-images .borscht-images-inner .image_2 img {
        height: 240px;
    }
    .borscht-images .borscht-images-inner .image_3 img {
        height: 220px;
    }
    .borscht-images .borscht-images-inner .image_3 {
        bottom: 360px;
    }
    .borscht-images .borscht-images-inner .image_5 img {
        height: 200px;
    }
    .borscht-images .borscht-images-inner .image_4 {
        left: 50px;
    }
    .borscht-images .borscht-images-inner .image_4 img {
        height: 180px;
    }
    #homepage .borscht-hero .borscht-hero-inner {
        min-height: auto;
        padding-bottom: 20px;
    }
    #homepage #header .logo {
        display: inline-block;
        position: relative;
        top: auto;
        padding: 80px 0;
    }
    #menu-trigger {
        display: block;
        position: absolute;
        top: 20px;
        right: 20px;
        border: 1px solid var(--b-black);
        border-radius: 50px;
        text-transform: uppercase;
        padding: 0 20px;
        height: 30px;
        line-height: 30px;
        font-family: "Neue Montreal";
        cursor: pointer;
    }
    .header-menu {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100dvh;
        background-color: var(--b-black);
        z-index: 999;
        display: flex;
        align-items: center;
        transition: transform 400ms ease;
        transform: translateY(-110%);
    }
    .header-menu.active {
        transform: translateY(0);
    }
    .header-menu .close-menu {
        display: block;
        position: absolute;
        top: 20px;
        right: 20px;
        border: 1px solid var(--b-white);
        color: var(--b-white);
        border-radius: 50px;
        text-transform: uppercase;
        padding: 0 20px;
        height: 30px;
        line-height: 30px;
        font-family: "Neue Montreal";
        cursor: pointer;
    }
    .header-menu .menu {
        margin: 0;
        padding: 0;
        width: 100%;
        border-top: 1px solid rgba(255, 255, 255, 0.5);
    }
    .header-menu .menu a {
        text-decoration: none;
        color: var(--b-white);
        font-size: 46px;
        display: flex;
        border-bottom: 1px solid rgba(255, 255, 255, 0.5);
        padding: 15px 0 15px 20px;
    }
    .theme-dark #menu-trigger {
        color: var(--b-white);
        border-color: var(--b-white);
    }
}