@media (min-width:1024px) {

.animate-on-load .fold1d-wrapper {
    opacity: 0;
    transition: all 500ms ease;
}

.animate-on-load.active .fold1d-wrapper {
    opacity: 1;
    transition: all 500ms ease;
}

.animate-on-load .fold1d-content {
    opacity: 0;
    transition: all 500ms ease;
    transform: translatey(200px) scale(0.8);
}

.animate-on-load.active .fold1d-content {
    opacity: 1;
    transition: all 500ms ease 500ms;
    transform: translatey(0px) scale(1);
}

.animate .content-fold-b-header {
    opacity: 0;
    transition: all 500ms ease;
}

.animate.animate-complete .content-fold-b-header {
    opacity: 1;
    transition: all 500ms ease;
}

.animate .content-fold-b-img {
    transform: translatex(-200px);
    opacity: 0;
    transition: all 500ms ease;
}

.animate.animate-complete .content-fold-b-img {
    transform: translatex(0px);
    opacity: 1;
    transition: all 500ms ease 250ms;
}

.animate .content-fold-b-content {
    transform: translatex(200px);
    opacity: 0;
    transition: all 500ms ease;
}

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

.animate .product-slider-header {
    opacity: 0;
    transition: all 500ms ease;
}

.animate.animate-complete .product-slider-header {
    opacity: 1;
    transition: all 500ms ease;
}

.animate .product-slider-wrapper {
    opacity: 0;
    transition: all 500ms ease;
}

.animate.animate-complete .product-slider-wrapper {
    opacity: 1;
    transition: all 500ms ease 500ms;
}
}