/* Section Cards */
#section-cards {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
}

@media only screen and (max-width: 992px) {
    #section-cards {
        flex-direction: column;
        align-items: center;
    }
}

section > div {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 8vw;
}

section li {
    margin-bottom: 2vh;
}

section img {
    max-width: 30vw;
    object-fit: contain;
}

#section-video details {
    width: 40vw;
    text-align: justify;
}

#section-video details[open] > summary {
    display: none;
}

#section-video iframe {
    width: 60vw;
    height: 33.75vw;
    margin-left: 10vw;
}

#section-book img,
#section-assos img {
    max-width: 16vw;
}

#section-group a {
    width: 20vw;

    margin: auto
}

@media only screen and (max-width: 992px) {
    section > div {
        flex-direction: column;
        align-items: center;
    }

    section img {
        max-width: 80vw;
    }

    #section-book img,
    #section-assos img {
        max-width: 60vw;
    }

    #section-video details {
        width: 80vw;
    }

    #section-group a {
        width: 60vw;
    }
}

.bg-custom {
    background-color: #262746 !important;
}

.bg-custom-white {
    background-color: #faf5ef !important;
}

.btn:hover {
    filter: brightness(1.2);
}