@media (min-width:1024px) {
	
.animate .f1-banner-title {
    transform: translatey(100px);
    opacity: 0;
    transition: all 500ms ease;
}

.animate.animate-complete .f1-banner-title {
    transform: translatey(0px);
    opacity: 1;
    transition: all 500ms ease;
}

.animate :is(.content-fold-b-content-header, .content-fold-b-content-inner, .content-fold-b-content-readmore) {
    transform: translatey(100px);
    transition:all 500ms ease;
    opacity:0;
}

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

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

.animate.animate-complete .content-fold-b-content-readmore{
    transform:translatey(0px);
    transition:all 700ms ease 1200ms;
    opacity:1;
}

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

.animate.animate-complete .content-fold-b-img {
    transform: translatey(0px);
    opacity: 1;
    transition: all 500ms ease;
}
	
.animate .accordion-wrapper .accordion-item-row:nth-of-type(1) {
    transform: translatex(-50px);
    opacity: 0;
    transition: all 700ms ease;
}

.animate.animate-complete .accordion-wrapper .accordion-item-row:nth-of-type(1) {
    transform: translatex(0px);
    opacity: 1;
    transition: all 700ms ease 500ms; 
}

.animate .accordion-wrapper .accordion-item-row:nth-of-type(2) {
    transform: translatex(50px);
    opacity: 0;
    transition: all 700ms ease;
}

.animate.animate-complete .accordion-wrapper .accordion-item-row:nth-of-type(2) {
    transform: translatex(0px);
    opacity: 1;
    transition: all 700ms ease 1000ms;
}

.animate .accordion-wrapper .accordion-item-row:nth-of-type(3) {
    transform: translatex(-50px);
    opacity: 0;
    transition: all 700ms ease;
}

.animate.animate-complete .accordion-wrapper .accordion-item-row:nth-of-type(3) {
    transform: translatex(0px);
    opacity: 1;
    transition: all 700ms ease 1300ms;
}


.animate .accordion-wrapper .accordion-item-row:nth-of-type(4) {
    transform: translatex(-50px);
    opacity: 0;
    transition: all 700ms ease;
}

.animate.animate-complete .accordion-wrapper .accordion-item-row:nth-of-type(4) {
    transform: translatex(0px);
    opacity: 1;
    transition: all 700ms ease 1600ms;
}

.animate .accordion-wrapper .accordion-item-row:nth-of-type(5) {
    transform: translatex(-50px);
    opacity: 0;
    transition: all 700ms ease;
}

.animate.animate-complete .accordion-wrapper .accordion-item-row:nth-of-type(5) {
    transform: translatex(0px);
    opacity: 1;
    transition: all 700ms ease 2000ms;
}
	
}