*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.container{
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    position: relative;
}

nav, footer{
    position: fixed;
    width: 100%;
    padding: 2em;
    display: flex;
    justify-content: space-between;
    z-index: 2;
}

footer{bottom: 0;}

.links{display: flex;gap:2em;}

.logo,
.link,
footer p{
    position: relative;
}

a, p{
    text-decoration: none;
    color: #fff;
    font-family: "PP Neue Montreal";
    font-weight: 500;
    font-size: 13px;
    text-transform: uppercase;
}

.tagline{
    width: 30%;
    position: absolute;
    left: 50%;
    bottom: 2em;
    transform: translateX(-50%);
    text-align: center;
}

.hero-video{
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
}

.hero-video video{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blocks{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    display: flex;
}

.block{
    flex: 1;
    height: 100%;
    background: #000;
    clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
}

h1{
    font-family: "PP Monument Extended";
    font-size: 6vw;
    font-weight: 800;
    line-height: 100%;
    color: #DE3E35;
}

.header{
    width: 70%;
    height: 100%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.header-item{
    position: relative;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
    mix-blend-mode: difference;
}

.header-item h1{
    position: relative;
}

.counter{
    width: 40px;
    height: 40px;
    position: absolute;
    bottom: 6em;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    justify-content: center;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
}

.counter p{
    position: relative;
    font-size: 30px;
    color: #DE3E35;
    line-height: 120%;
}

@media (max-width: 900px) {
    .tagline{width:80%;bottom:10em;}
    .counter{bottom: 15em;}
    .block{margin-left: -1px;}
}