.swiper {
    overflow: hidden;
    width: 100%;
    padding-top: 100px;
    padding-bottom: 100px;
}

.swiper-slide {
    display: flex;
    align-items: center;
    background-position: center;
    background-size: cover;
    width: 600px;
    height: 600px;
}

.swiper-slide img {
    position: relative;
    z-index: -1;
    display: block;
    width: 100%;
    transition: 0.5s;
}

.swiper-slide img:hover {
    border-radius: 5%;
    transform: scale(1.05);
}


/* media requests */
@media screen and (max-width: 650px) {
    /* projects */
    .swiper-slide {
        width: 500px;
        height: 500px;
    }
}

@media screen and (max-width: 550px) {
    /* projects */
    .swiper-slide {
        width: 390px;
        height: 390px;
    }
}

@media screen and (max-width: 410px) {
    /* projects */
    .swiper-slide {
        width: 300px;
        height: 300px;
    }
}