swiper-container {
    width: 100%;
    height: 100%;
}

swiper-slide {
    text-align: center;
    font-size: 18px;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-block: 50px;
}

.category-card {
    width: 280px;
    height: 280px;
    box-shadow: rgba(0, 0, 0, 0.15) 0px 5px 15px 0px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    &:before {
        content: "";
        position: absolute;
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
        border-radius: 50%;
        background: rgba(0, 0, 0, 0.25);
        z-index: -1;
    }
    &:after {
        content: "";
        position: absolute;
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
        border-radius: 50%;
        z-index: -1;
        background: rgba(0, 0, 0, 0.133);
        transform: scale(0.5);
        opacity: 0;
        transition: 0.3s;
    }
    &:hover {
        .title p {
            transform: translateY(-10px);
        }
        &:after {
            transform: scale(1);
            opacity: 1;
        }
    }
}

h2 {
    font-size: 50px;
}
