@media (min-width:1024px) {
	
.animate .video-fold-header {
    transform: translatey(-50px);
    opacity: 0;
    transition: all 750ms ease;
}

.animate.animate-complete .video-fold-header {
    transform: translatey(0px);
    opacity: 1;
    transition: all 750ms ease;
}

.animate .video-fold-content {
    transform: translatey(50px);
    opacity: 0;
    transition: all 750ms ease;
}

.animate.animate-complete .video-fold-content {
    transform: translatey(0px);
    opacity: 1;
    transition: all 750ms ease 500ms;
}

.animate .video-fold-inner-video {
    transform: translatey(150px);
    transition: all 750ms ease;
    opacity: 0;
}

.animate.animate-complete .video-fold-inner-video {
    transform: translatey(0px);
    transition: all 750ms ease 1000ms;
    opacity: 1;
}

.animate .brochure-foldb-img,
.animate .brochure-foldb-header{
    transform: translatey(-70px);
    opacity: 0;
    transition: all 750ms ease;
}

.animate.animate-complete .brochure-foldb-img,
.animate.animate-complete .brochure-foldb-header{
    transform: translatey(0px);
    opacity: 1;
    transition: all 750ms ease;
}

.animate .brochure-foldb-content, 
.animate .brochure-foldb-readmore {
    transform:translatey(50px);
    opacity:0;
    transition:all 750ms ease;
}

.animate.animate-complete .brochure-foldb-content, 
.animate.animate-complete .brochure-foldb-readmore {
    transform:translatey(0px);
    opacity:1;
    transition:all 750ms ease 750ms;
}
	
}