@keyframes floating{

0%{

transform:translateY(0px);

}

50%{

transform:translateY(-20px);

}

100%{

transform:translateY(0px);

}

}

.card1{

animation:floating 5s infinite;

}

.card2{

animation:floating 6s infinite;

}

.card3{

animation:floating 7s infinite;

}
.stat-card{

    animation:floating 7s ease-in-out infinite;

}

.stat-card:nth-child(2){

    animation-delay:.5s;

}

.stat-card:nth-child(3){

    animation-delay:1s;

}

.stat-card:nth-child(4){

    animation-delay:1.5s;

}
.service-card{

animation:floating 8s ease-in-out infinite;

}

.service-card:nth-child(2){

animation-delay:.4s;

}

.service-card:nth-child(3){

animation-delay:.8s;

}

.service-card:nth-child(4){

animation-delay:1.2s;

}
.why-card{

    animation:floating 8s ease-in-out infinite;

}

.why-card:nth-child(2){

    animation-delay:.4s;

}

.why-card:nth-child(3){

    animation-delay:.8s;

}

.why-card:nth-child(4){

    animation-delay:1.2s;

}
.process-step{

animation:floating 8s ease-in-out infinite;

}

.process-step:nth-child(2){

animation-delay:.4s;

}

.process-step:nth-child(3){

animation-delay:.8s;

}

.process-step:nth-child(4){

animation-delay:1.2s;

}

.process-step:nth-child(5){

animation-delay:1.6s;

}
.mission-card{

animation:floating 8s infinite ease-in-out;

}

.mission-card:nth-child(2){

animation-delay:.5s;

}

.mission-card:nth-child(3){

animation-delay:1s;

}
.tech-card{

animation:floating 8s ease-in-out infinite;

}

.tech-card:nth-child(even){

animation-delay:.5s;

}
.review-placeholder{

animation:floating 8s ease-in-out infinite;

}
@keyframes pulse{

0%{

transform:scale(1);

opacity:.6;

}

50%{

transform:scale(1.08);

opacity:1;

}

100%{

transform:scale(1);

opacity:.6;

}

}