@media (min-width: 1024px) {
	
	.animate-on-load .fold1-item-img {
    transition: 
        all 600ms ease;
    transform: 
        translatex(200%);
    opacity: 0;
}

.animate-on-load.active .fold1-item-img {
    transition: 
        transform 600ms ease,
        opacity 600ms ease;
    transform: 
        translatex(0%);
    opacity: 1;
}

.animate-on-load .fold1-item-slider {
    transition: 
        all 600ms ease;
    transform: 
        translatex(-200%);
    opacity: 0;
}

.animate-on-load.active .fold1-item-slider {
    transition: 
        transform 600ms ease 600ms,
        opacity 600ms ease 600ms;
    transform: 
        translatex(0%);
    opacity: 1;
}

    .fold1-item-slider .owl-item {
    opacity: 0;
    transform:
        scale(0);
    transition:
        all 600ms ease;
}

.fold1-item-slider .owl-item.active {
    transform:
        scale(1);
    opacity: 1;
    transition:
        all 600ms ease;
}

.animate .logo-slider {
    opacity: 0;
    transition: 
        all 600ms ease;
}

.animate.animate-complete .logo-slider {
    opacity: 1;
    transition:
        all 600ms ease;
}

.animate .content-fold-k-img {
    scale: 0;
    transition:
        all 600ms ease;
    opacity: 0;
}

.animate.animate-complete .content-fold-k-img:first-child {
    scale: 1;
    transition:
        all 600ms ease;
    opacity: 1;
}

.animate.animate-complete .content-fold-k-img:last-child {
    scale: 1;
    transition:
        all 600ms ease 600ms;
    opacity: 1;
}

.animate .content-fold-k-content {
    opacity: 0;
    transition:
        all 600ms ease;
    transform:
        translatex(200%);   
}

.animate.animate-complete .content-fold-k-content {
    opacity: 1;
    transition:
        all 600ms ease 750ms;
    transform:
        translatex(0%);   
}

.animate.animate-complete .content-fold-k-header .title span {
}

.animate-complete .title span {
    transition:
        all 600ms ease 1s;
    animation:
        grow 600ms ease-in-out 2 alternate;
}



/*KEYFRAMES*/

@keyframes grow {
    from{
        transform:
            scale(1);
    }
    to{
        transform:
            scale(1.05);
    }
}

    /*KEYFRAMES END*/



.animate .break-fold-m-wrapper {
    opacity: 0;
    transition:
        all 600ms ease;
}

.animate.animate-complete .break-fold-m-wrapper {
    opacity: 1;
    transition:
        all 600ms ease;
}

.animate .product-fold-d .content-header {
    transform:
        translatex(-200%);
    opacity: 0;
    transition:
        all 600ms ease;
}

.animate.animate-complete .product-fold-d .content-header {
    transform:
        translatex(0%);
    opacity: 1;
    transition:
        all 600ms ease;
}

.animate .product-fold-d-slider {
    transform:
        translatex(300%);
    opacity: 0;
    transition:
        all 600ms ease;
}

.animate.animate-complete .product-fold-d-slider {
    transform:
        translatex(0%);
    opacity: 1;
    transition: 
        all 600ms ease 600ms;
}

.animate .review-fold-h .content-header {
    transform:
        translatex(-200%);
    opacity: 0;
    transition:
        all 600ms ease;
}

.animate.animate-complete .review-fold-h .content-header {
    transform:
        translatex(0%);
    opacity: 1;
    transition:
        all 600ms ease;
}

.animate .review-fold-h-slider {
    transform:
        translatex(300%);
    opacity: 0;
    transition:
        all 600ms ease;
}

.animate.animate-complete .review-fold-h-slider {
    transform:
        translatex(0%);
    opacity: 1;
    transition:
        all 600ms ease;
}

.animate .newsletter-wrapper {
    opacity: 0;
    transition: 
        all 600ms ease;
}

.animate.animate-complete .newsletter-wrapper {
    opacity: 1;
    transition:
        all 600ms ease;
}

.animate .product-fold-e-block {
    transform:
        translatex(-200%);
    opacity: 0;
    transition:
        all 600ms ease;
}

.animate.animate-complete .product-fold-e-block {
    transform:
        translatex(0%);
    opacity: 1;
    transition:
        transform 600ms ease,
        opacity 600ms ease;
}

.animate .product-fold-e-slider {
    transform: 
        translatex(200%);
    opacity: 0;
    transition: 
        all 600ms ease;
}

.animate.animate-complete .product-fold-e-slider {
    transform: 
        translatex(0%);
    opacity: 1;
    transition: 
        transform 600ms ease 600ms,
        opacity 600ms ease 600ms;
}
	
}