.projects-detail{
    margin-top: 150px;
    margin-bottom: 150px;
}
.projects-detail__swiper{
    position: relative;
}
.projects-detail__slider{
    overflow: hidden;
}
.projects-detail__title{
    margin-bottom: 40px;
}
a.projects-detail__item{
    overflow: hidden;
    padding: 40px;
    border-radius: 16px;
    background: #EDF1F8;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.projects-detail__item:hover img{
    width: 220px;
}
.projects-detail__img{
    -ms-flex-negative: 0;
    flex-shrink: 0;
    width: 260px;
    height: 260px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.projects-detail__img img{
    width: 210px;
    -webkit-transition: 0.3s ease;
    -o-transition: 0.3s ease;
    transition: 0.3s ease;
}
.projects-detail__title{
    font-size: 2.4rem;
    line-height: 140%;
}

.projects-detail__pagination{
    position: absolute;
    display: flex;
    justify-content: space-between;
    top: 50%;
    left: -25px;
    right: -25px;
    z-index: 2;
    transform: translateY(-50%);
    pointer-events: none;
}
.projects-detail__pag{
    cursor: pointer;
    pointer-events: all;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0px 6px 16px rgb(109 122 152 / 25%);
    background-color: #fff;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    transition: 0.3s ease;
}
.projects-detail__pag--next{
    margin-left: auto;
}
.projects-detail__pag--prev{
    margin-right: auto;
}
.projects-detail__pag.swiper-button-disabled{
    display: none;
}
.projects-detail__pag svg{
    transition: 0.3s ease;
}
.projects-detail__pag:hover svg{
    opacity: 0.4;
}
.projects-detail__pag:active{
    box-shadow: 0px 2px 8px rgba(109, 122, 152, 0.25);
}

@media (max-width: 768px) {
    .projects-detail{
        margin-top: 56px;
        margin-bottom: 64px;
    }
    a.projects-detail__item{
        width: 210px;
        flex-shrink: 0;
        flex-direction: column;
        border-radius: 12px;
        padding: 20px;
        row-gap: 16px;
    }
    .projects-detail__title{
        font-size: 1.4rem;
        line-height: 140%;
        min-height: 65px;
    }
    .projects-detail__img{
        width: 170px;
        height: 170px;
    }

    .projects-detail__img img{
        width: 142px;
    }
    .projects-detail:hover img{
        width: 150px;
    }
    .projects-detail__pagination{
        display: none;
    }
}