/* Vars */
:root {
    --main: #D2232A;
    --dark: #000000;
}

/* Default styles */
*,
*:before,
*:after {
    -webkit-box-sizing: border-box;
    box-sizing: border-box
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
    margin: 0;
    padding: 0
}

*:active,
*:focus {
    outline: none
}

input,
textarea {
    font-family: inherit;
    resize: none
}

b {
    font-weight: 700;
}

ul {
    list-style: none;
    margin: 0;
    padding: 0
}

path {
    transition: 0.3s ease;
}

a {
    text-decoration: none;
    display: inline-block;
    transition: 0.3s ease;
}

select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    position: relative;
}

html {
    overflow-x: hidden;
    scroll-behavior: smooth;
}

button {
    border: none;
    cursor: pointer
}

body {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    overflow: hidden;
    font-size: 18px;
    line-height: 1;
    font-weight: 400;
    margin: 0;
    color: var(--dark);
}

body::-webkit-scrollbar,
body::-webkit-scrollbar-thumb {
    width: 10px;
    background: var(--main);
}

body::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, .2);
    box-shadow: inset 0 0 6px rgba(0, 0, 0, .2);
    background-color: #fff;
    border-radius: 3px;
}


.preloader {
    background-color: var(--dark);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    z-index: 999;
}

.stamp {
    position: absolute;
    opacity: 0;
    transform: scale(0.3);
}

.st1 {
    top: 0;
    left: 135px;
}

.st2 {
    top: 173px;
    left: 172px;
}

.st3 {
    top: 115px;
    left: 357px;
}

.st4 {
    top: 283px;
    left: 396px;
}

.st5 {
    top: 410px;
    left: 517px;
}

.st6 {
    top: 410px;
    left: 850px;
}

.st7 {
    top: 342px;
    left: 792px;
}

@media screen and (max-width: 992px) {
    .stamp svg {
        width: 234px;
        height: 232px;
    }

    .st1 {
        top: 0;
        left: 35px;
    }

    .st2 {
        top: 113px;
        left: 112px;
    }

    .st3 {
        top: 55px;
        left: 157px;
    }

    .st4 {
        top: 183px;
        left: 256px;
    }

    .st5 {
        top: 210px;
        left: 367px;
    }

    .st6 {
        top: 310px;
        left: 550px;
    }

    .st7 {
        top: 272px;
        left: 592px;
    }
}

@media screen and (max-width: 576px) {
    .stamp svg {
        width: 194px;
        height: 193px;
    }

    .st1 {
        top: 0;
        left: 10px;
    }

    .st2 {
        top: 173px;
        left: 32px;
    }

    .st3 {
        top: 165px;
        left: 123px;
    }

    .st4 {
        top: 233px;
        left: 156px;
    }

    .st5 {
        top: 340px;
        left: 87px;
    }

    .st6 {
        top: 380px;
        left: 210px;
    }

    .st7 {
        top: 412px;
        left: 232px;
    }

}

/* Present */

.present {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    cursor: pointer;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 998;
}

.present__logo {
    position: absolute;
    top: -50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.present__video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: -1;
}

.vertical-marquee {
    position: absolute;
    left: calc(50% - 448px);
    top: -100%;
    height: 100vh;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.vertical-marquee--sc {
    left: auto;
    right: calc(50% - 448px);
}

.vertical-marquee__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.vertical-marquee__inner span {
    display: inline-block;
    transform: rotate(-90deg);
    transform-origin: center;
    font-size: 2rem;
    color: #fff;
    letter-spacing: 0.1em;
    margin: 50px 0;
    white-space: nowrap;
    text-transform: uppercase;
    color: var(--main);
    font-weight: 500;
    font-size: 12px;
    font-style: italic;
}

@media screen and (max-width: 992px) {
    .present__logo img {
        width: 380px;
    }

    .vertical-marquee {
        left: calc(50% - 348px);
    }

    .vertical-marquee--sc {
        left: auto;
        right: calc(50% - 348px);
    }
}

@media screen and (max-width: 576px) {
    .present__logo img {
        width: 270px;
    }

    .vertical-marquee {
        left: calc(50% - 200px);
    }

    .vertical-marquee--sc {
        left: auto;
        right: calc(50% - 200px);
    }
}


/* Block */
.block {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #eee;
}

.block:nth-child(odd) {
    background-color: #b8b8b8;
}