/*Custom CSS*/

header li:hover {
    text-decoration: underline;
    text-underline-offset: 0.5rem;
    text-decoration-color: #44AF93;
}

.hover-button {
    transition: color 0.2s ease;
}

.hover-button:hover {
    color: #fff;
}

.info-cards {
    gap: 5rem;
    max-width: 90%;
}

.info-cards span {
    margin: 0.5rem 0 0.5rem;
}

.about-section img {
    max-width: 60%;
    margin-top: 4rem;
}

@media (max-width: 768px) {
    .about-section img {
        max-width: 85%;
    }
}

@media (max-width: 1024px) and (min-width: 768px) {
    .about-section img {
        max-width: 70%;
    }
}

[data-slides] > div {
    display: none;
    opacity: 0;
}

[data-slides] > div[data-active] {
    display: flex;
    opacity: 1;
}
