body.index #body-inner {
    min-height: unset;
}

body.index #scroll-container{
    height: 100%;
}

body.index #content-wrap{
    height: 100%;
}

body.index .scroll-content{
    height: 100%;
}

body.index .tt-portfolio-slider{
    height: 100%;
}

body.index{
    height: 100dvh;
    padding-bottom: env(safe-area-inset-bottom);
}

body.index .tt-portfolio-slider .swiper {
    height: 100%;
}

body.is-mobile video.no-borders{
    transform: scale(1.25);
}

.progress {
    background: rgba(255,255,255,0.1);
    justify-content: flex-start;
    border-radius: 100px;
    align-items: center;
    position: relative;
    padding: 0 5px;
    display: flex;
    height: 7px;
    width: 200px;
}

.progress-value {
    /*animation: load 3s normal forwards;*/
    box-shadow: 0 10px 40px 1px #fff;
    border-radius: 100px;
    background: #fff;
    height: 3px;
    width: 0;
}

@keyframes load {
    0% { width: 0; }
    100% { width: 68%; }
}

.loader {
    width: 25px;
    height: 25px;
    border: 3px solid #FFF;
    border-bottom-color: transparent;
    border-radius: 50%;
    display: inline-block;
    box-sizing: border-box;
    animation: rotation 1.5s linear infinite;
    opacity: .4;
}

@keyframes rotation {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@keyframes pulse {
    0% {
        transform: scale(1, 1);
    }

    50% {
        transform: scale(1.05, 1.05);
    }

    100% {
        transform: scale(1, 1);
    }
}

.anim-pulse {
    animation: pulse 3s ease-in-out infinite;
}



