.projects{
    padding-bottom: 15px;
}
.projects-list{
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 20px;
}

.projects-item {
    position: relative;
    overflow: hidden;
    width: 100%;
    max-width: 321px;
    height: 361px;
}

.projects-item-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-position: center;
    background-size: cover;
    -webkit-transition: -webkit-transform 0.6s cubic-bezier(0.15, 0.85, 0.45, 1);
    transition: transform 0.6s cubic-bezier(0.15, 0.85, 0.45, 1);
    z-index: 1;
}

.projects-link {
    position: relative;
    z-index: 2;
    text-decoration: none;
    color: #fff;
    display: block;
    height: 100%;
}

.projects-item:hover .projects-item-bg {
    -webkit-transform: scale(1.08);
    transform: scale(1.08);
}

.projects-item-wrap{
    display: flex;
    align-items: end;
    width: 100%;
    height: inherit;
}
.projects-title--ttu{
    text-transform: uppercase;
    font-size: 36px !important;
}
.projects-item-name{
    color: #fff;
    text-transform: uppercase;
    font-weight: bold;
    font-size: 16px;
    padding-bottom: 7px;
    margin-bottom: auto;
    letter-spacing: 0.6px;
}
.projects-item-info{
    background: -webkit-linear-gradient(top, rgb(0 0 0 / 84%) 0%, rgba(0, 0, 0, 0) 35%, rgba(0, 0, 0, 0) 65%, rgb(0 0 0) 100%);
    background: linear-gradient(to bottom, rgb(0 0 0 / 84%) 0%, rgba(0, 0, 0, 0) 35%, rgba(0, 0, 0, 0) 65%, rgb(0 0 0) 100%);
    padding: 20px 20px 20px;
    font-size: 12px;
    width: 100%;
    min-height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}
.projects-item-author-bold{
    font-weight: bold;
}
.projects-item-author{
    line-height: 1.5;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8), 0 1px 2px rgba(0, 0, 0, 0.5);
    letter-spacing: 0.02em;
    color: rgb(239 239 239);
}
.projects-title{
    margin-top: 11px;
    margin-bottom: 30px;
    font-size: 30px;
}
.projects-title--bold{
    font-weight: bold;
}
.projects-list--pb{
    padding-bottom: 30px;
}
.projects-action{
    display: flex;
    justify-content: center;
    align-items: center;
}
.projects-action--mt{
    margin-top: 60px;
}
.projects-action-link{
    text-decoration: none;
    color: var(--color-black);
    border: 1px solid var(--color-black);
    -webkit-transition: 0.5s;
    transition: 0.5s;
    font-size: 14px;
    padding: 9px 29px;
}
.projects--pt{
    padding-top: 100px;
}
.designers-form-wrap{
    padding-bottom: 84px;
    display: flex;
    justify-content: end;
}
.designers-form{
    background-color: #FAFAFA;
    padding-top: 80px;
    padding-bottom: 86px;
    display: flex;
    align-items: center;
}
.designers-form-content{
    background-color: #fff;
    padding: 3rem;
    max-width: 843px;
    padding-left: 286px;
}
.designers-form-pic{
    position: absolute;
}
.designers-form__img{
    position: relative;
    bottom: 40px;
}
@media screen {
    .projects-link:hover{
        color: #fff !important;
    }
    .projects-action-link:hover{
        background-color: var(--color-black);
        color: #fff;
    }
}
@media(max-width: 1700px){
    .designers-form__img{
        max-width: 800px;
    }
}
@media(max-width: 1400px){
    .projects-item{
        max-width: 356px;
    }
}
@media(max-width: 1200px){
    .projects-item{
        max-width: 296px;
    }
}
@media(max-width: 990px){
    .projects-item{
        max-width: 334px;
    }
}
@media(max-width: 768px){
    .projects-item{
        max-width: 100%;
    }
}

.projects-pagination {
    display: flex;
    justify-content: center;
    margin-top: 40px;
    margin-bottom: 30px;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}