.fp-viewing-section-1,
.loaded{
    header{
        transform: translateY(0);
        transition: all 1.5s cubic-bezier(0.86, 0, 0.07, 1);
    }
}
.fp-viewing-section-2{
    header{
        transition: all .5s cubic-bezier(0.86, 0, 0.07, 1);
    }
    .circle-red{
        top: -25vw;
    }
}
.fp-viewing-section-3{
    .circle-white,
    .circle-red{
        top: -25vw;
    }
}
.fp-viewing-section-4{
    .circle-blue,
    .circle-white{
        top: -25vw;
    }
}
.fp-viewing-section-5 {
    .circle-white-1,
    .circle-blue{
        top: -25vw;
    }
    .portal-img{
        img{
            top: 0;

            @include mqx(m){
                top: -15%;
            }
        }
    }
}
.fp-viewing-section-6{
    .circle-white-1 {
        top: -25vw;
    }
}
[data-anchor=section-2].active,
[data-anchor=section-3].active,
[data-anchor=section-4].active,
[data-anchor=section-5].active,
[data-anchor=section-6].active{
    .section-text{
        @include animation;
    }
}
[data-anchor=section-7].active{
    .clients{
        @include animation(.6s,.1s);
    }
}
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translate3d(0, 100%, 0);
    }

    to {
        opacity: 1;
        transform: none;
    }
}