body:after {
    content: '';
    width: 100%;
    height: 100%;
    top: 0;
    position: fixed;
    z-index: 999999;
    background: #FFF
    url(https://i.imgur.com/RgwUGUn.png);
    left: 0;
    background-repeat: no-repeat;
    background-position: center;
    background-size: 160px;
    animation-name: fade-in;
    animation-duration: 1.5s;
    transform: scale(0);
    border: none;
}



@keyframes fade-in {
    0% {
        opacity: 1;
        transform: scale(1);
    }

    75% {
        opacity: 1;
        transform: scale(1);
    }

    100% {
        opacity: 0;
        transform: scale(.1);
    }
}


.s-block--categories .box-img img {
    width: 100%;
    height: auto;
    padding: 18px;
    border-radius: 150px;
    transition: transform 0.3s ease;
}
.s-block--categories {
    margin: 20px auto;
    padding: 20px;
}

.s-block--categories .s-block__title {
    margin-bottom: 15px;
}

.s-block--categories .s-block__title h2 {
    font-size: 24px;
    color: #333;
    text-align: right;
}

.s-block--categories .swiper {
    padding: 10px 0;
}

.s-block--categories .swiper-slide {
    width: 209.167px;
    text-align: center;
}

.s-block--categories .box-img {
    overflow: hidden;
    position: relative;
}

.s-block--categories .box-img img {
    width: 100%;
    height: auto;
    transition: transform 0.3s ease;
}

.s-block--categories .box-img img:hover {
    transform: scale(1.1);
}

.s-block--categories h3 {
    font-size: 14px;
    color: #333;
    margin-top: 10px;
}

@media (max-width: 768px) {
    .s-block--categories .swiper-slide {
        width: 150px;
    }
}