.lowerOpacityBottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-left: 10px;
    padding-right: 10px;
    box-sizing: border-box;
    height: 20%;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.753);
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
}

.lowerOpacityBottom>p {
    font-size: 1.3rem;
    font-weight: 500;

}

.ofnNumber {
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    height: 70%;
}

.exploreMenu {
    width: 80%;
    margin-top: 20px;
    margin-bottom: 60px;
    display: grid;
    justify-content: center;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

.oneEventExplore {
    width: 300px;
    flex-shrink: 0;
    display: flex;
    align-items: end;
    background-size: 110%;
    background-position: center;
    background-repeat: no-repeat;
    transition: all 0.7s;
    aspect-ratio: 3 / 2;
    border-radius: 8px;
}

.oneEventExplore:hover {
    background-size: 120%;
}

@media (max-width: 1300px) {
    .exploreMenu {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 992px) {
    .exploreMenu {
        grid-template-columns: repeat(2, 1fr);
    }

    .oneEventExplore {
        width: 370px;
    }
}

@media (max-width: 768px) {
    .exploreMenu {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .oneEventExplore {
        width: 400px;
    }
}

@media (max-width: 768px) {
    .oneEventExplore {
        width: 490px;
    }
}

@media (max-width: 560px) {
    .oneEventExplore {
        width: 270px;
    }
}