/* Section 2 */
.section-2 .content-about * {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.section-2.active .content-about * {
    opacity: 1;
    transform: translateY(0);
}


/* Section 3 */
.section-3 .heading-box * {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.section-3.active .heading-box * {
    opacity: 1;
    transform: translateY(0);
}

/* Section 4 */
.section-4 .title-box * {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.section-4.active .title-box * {
    opacity: 1;
    transform: translateY(0);
}

/* Section 5 */
.section-5 * {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.section-5.active * {
    opacity: 1;
    transform: translateY(0);
}
