.background-image {
    height: calc(100vh + 400px);
    width: calc(200vw + 400px);
    position: absolute;
    top: 0;
    left: -400px;
    background: url(https://www.toptal.com/designers/subtlepatterns/patterns/funky-lines.png);
    -webkit-animation: backgroundscroll 30s linear infinite;
    animation: backgroundscroll 30s linear infinite;
}
.animated-bg-container {
    overflow: hidden;
    height: 100vh;
    width: 100vw;
    position: absolute;
}

@-webkit-keyframes backgroundscroll {
    to {
        -webkit-transform: translate(400px, -400px);
        transform: translate(400px, -400px);
    }
}

@keyframes backgroundscroll {
    to {
        -webkit-transform: translate(400px, -400px);
        transform: translate(400px, -400px);
    }
}

.containerh {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    height: 100vh;
    z-index: -100;
}

.headera {
    height: 100px;
    z-index: 10;
}

h1 {
    text-align: center;
}

.placeholder {
    height: 200px;
}

.footah {
    text-align: center;
    height: 70px;
}

.footah {
    text-align: center;
    height: 70px;
    padding: 15px 0;
    z-index: 10;
}

.footah a {
    text-decoration: none;
    color: inherit;
}

.footah i{
    padding-top: 25px;
    font-size: 20px;
}

.clicktrigger {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    overflow: hidden;
    z-index: 100000;
    clip-path: circle(100px at 50% 50%);
    cursor: pointer;
}

.slidek {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    opacity: 0;
    overflow: hidden;
    transition: clip-path 1s;
    clip-path: circle(100px at 50% 50%);
    z-index: 100;
}

.loader{
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: rgb(31, 31, 31);
    overflow: hidden;
    clip-path: circle(5px at 50% 50%);
    z-index: 100;
    animation: loading infinite 2s ease-in-out;
}

.slidek.startslide{
    clip-path: circle(0px at 50% 50%);
}

.fullscreen-bg {}

.roll-in {
    animation: roll-in-left 1s ease-out forwards;
}

.roll-in-rev {
    animation: roll-in-right 1s ease-in forwards;
}

.roll-out {
    animation: roll-out-right 1s ease-in forwards;
}

.roll-out-rev {
    animation: roll-out-left 1s ease-out forwards;
}



.fullscreen-bg__video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -100;
}

@media (min-aspect-ratio: 16/9) {
    .fullscreen-bg__video {
        height: 300%;
        top: -100%;
    }
}

@media (max-aspect-ratio: 16/9) {
    .fullscreen-bg__video {
        width: 400%;
        left: -150%;
    }
}

@media only screen and (max-height: 400px) {
    .clicktrigger {
        clip-path: circle(50px at 50% 50%);
    }
    
    .slidek {
        clip-path: circle(50px at 50% 50%);
    }
    .placeholder {
        height: 200px;
    }
}

.focus-video {
    position: absolute;
    min-height: 100%;
    min-width: 100%;
    transition: clip-path 1s;
    cursor: pointer;
    right: 0;
    bottom: 0;
}

.active-image {
    clip-path: circle(110% at 50% 50%);
    transition: clip-path 1s;
}

@keyframes loading {
    0%{
        clip-path: circle(5px at 50% 50%);
    }
    50%{
        clip-path: circle(50px at 50% 50%);
    }
    100%{
        clip-path: circle(5px at 50% 50%);
    }
}


@keyframes roll-in-left {
    0% {
        -webkit-transform: translateX(-900px) rotate(-540deg);
        transform: translateX(-900px) rotate(-540deg);
        opacity: 0;
    }

    100% {
        -webkit-transform: translateX(0) rotate(0deg);
        transform: translateX(0) rotate(0deg);
        opacity: 1;
    }
}

@keyframes roll-out-right {
    0% {
        -webkit-transform: translateX(0) rotate(0deg);
        transform: translateX(0) rotate(0deg);
        opacity: 1;
    }

    100% {
        -webkit-transform: translateX(900px) rotate(540deg);
        transform: translateX(900px) rotate(540deg);
        opacity: 0;
    }
}

@keyframes roll-out-left {
    0% {
        -webkit-transform: translateX(0) rotate(0deg);
        transform: translateX(0) rotate(0deg);
        opacity: 1;
    }

    100% {
        -webkit-transform: translateX(-900px) rotate(-540deg);
        transform: translateX(-900px) rotate(-540deg);
        opacity: 0;
    }
}

@keyframes roll-in-right {
    0% {
        -webkit-transform: translateX(900px) rotate(540deg);
        transform: translateX(900px) rotate(540deg);
        opacity: 0;
    }

    100% {
        -webkit-transform: translateX(0) rotate(0deg);
        transform: translateX(0) rotate(0deg);
        opacity: 1;
    }
}