.categories {
    text-align: center;
    padding-top: 30px;
    font-family: Sahel-Bold;
}
.slide {
    padding-left: 0;
    padding-right: 0;
}
.container {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}
.container .card {
    position: relative;
    width: 180px;
    height: 240px;
    background: #fff;
    margin: 20px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 25px rgba(0,0,0,0.2);
    transition: 0.5s;
}
@media screen and (max-width: 600px) {
    .container .card {
        width: 140px;
        height: 200px;
    }
}
.container .card:hover {
    filter: blur(0px);
    transform: scale(1.1);
    opacity: 1;
}
.container .card .circle {
    position: relative;
    width: 100%;
    height: 100%;
    background: #000;
    clip-path: circle(150px at center 0);
    text-align: center;
}
@media screen and (max-width: 600px) {
    .container .card .circle {
        clip-path: circle(135px at center 0);
    }
}
.container .card .circle h2 {
    color: #fff;
    font-size: 4.5em;
    padding: 30px 0;
}
.container .card .content {
    padding-bottom: 15px;
    text-align: center;
}
.container .card .content p {
    color: #666;
}
.container .card .content a {
    width: 70%;
    position: relative;
    display: inline-block;
    padding: 10px 20px;
    background: #000;
    color: #fff;
    border-radius: 30px 3px 20px 3px;
    text-decoration: none;
}
@media screen and (max-width: 600px) {
    .container .card .content a {
        font-size: 13px;
        padding: 5px 10px;
    }
}