.groupsHero {
    text-align: center;
    padding-top: 20px;
    background-color: #598896;
    color: #ffffff;
    margin-bottom: 20px;
    padding-bottom: 20px;
    width: 100%;
}

.groupsHero h2 {
    font-size: 32px;
    color: #ffffff;
}

.groupsContainer {
    margin-bottom: 32px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.groupSection {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    width: 90%;
    padding: 20px;
    flex-wrap: wrap;
    gap: 40px;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
    will-change: opacity, transform;
}

.groupSection.visible, .groupSection-alt.visible {
    opacity: 1;
    transform: translateY(0);
  }

.groupSection-alt {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    width: 90%;
    padding: 20px;
    flex-wrap: wrap;
    gap: 40px;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
    will-change: opacity, transform;
}

.groupSection-content {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 10px;
    width: 100%;
    max-width: 650px;
}

.groupSection-image {
    width: 100%;
    border-radius: 10px;
    width: 200px;
    height: 200px;
}

.infoContainer {
    border-radius: 20px;
    background-color: #598896;
    color: #ffffff;
    padding: 20px;
    text-align: center;
    margin-top: 12px;

}
