.js-projects {
    display: flex;
    align-items: stretch;
    flex-wrap: wrap;
    margin: 0 -16px 30px;
}

.project-item {
    padding: 0 16px;
}

.project {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    height: 100%;
    transition: transform .2s linear;
    border: 2px solid #D45BFA;
    border-radius: 24px;
    overflow: hidden;
    text-decoration: none;
}

.projects .text-center .btn {
    max-width: 240px;
}

.project:hover {
    text-decoration: none;
}

.js-projects .slick-track {
    display: flex !important;
}

.js-projects .slick-slide {
    height: inherit !important;
}

.js-projects .slick-slide div {
    height: 100%;
}

.no-cta .js-projects .slick-arrow {
    bottom: -55px;
}

.js-projects .slick-slide .project div {
    height: auto;
}

.js-projects .slick-arrow {
    bottom: -77px;
}

.js-projects .slick-prev {
    left: 16px;
}

.js-projects .slick-next {
    right: 16px;
}

.js-projects .slick-slide .project .project__img {
    height: 194px;
    position: relative;
}

.js-projects .slick-slide .project .project__img:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background: linear-gradient(to bottom, rgba(39,39,47,0) 0%,rgba(39,39,47,0.7) 100%);
    border-radius: 20px;
    opacity: 0;
}

.js-projects .slick-slide .project .project__img:hover:before {
    opacity: 1;
}

.project__details {
    padding: 22px 28px;
    margin-top: 20px;
}

.project__details h3 {
    color: #111112;
    font-weight: 900;
    font-size: 22px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding-bottom: 15px;
}

.project__details p {
    font-weight: normal;
    font-size: 18px;
    color: #111112;
    font-style: normal;
    font-family: 'brandon_grotesquemedium';
    line-height: 1.555em;
    padding-bottom: 10px;
}

.project__tag {
    position: absolute;
    bottom: -20px;
    right: 0;
    padding: 0 30px;
    text-align: right;
}

.project__tag ul {
    margin: 0;
    padding: 0;
    display: flex;
    gap: 5px;
}

.project__tag ul li {
    margin: 0;
    padding: 0;
    width: 40px;
    height: 40px;
    background-color: #31F4C5;
    border-radius: 11px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.project__tag ul li .project-icon {
    max-width: 20px;
}

.project__tag ul li::before,
.project__tag ul li::after {
    display: none;
}

.project__tag ul li i {
    font-size: 20px;
    color: #111112;
}


@media (min-width: 768px) {
    .js-projects {
        margin: 0 -52px 32px -52px;
    }

    .project {
        width: 420px;
        opacity: 0.5;
    }

    .projects .text-center .btn {
        max-width: none;
    }

    .slick-current .project {
        opacity: 1;
    }

    .js-projects .slick-arrow {
        bottom: -80px;
    }

    .js-projects .slick-prev {
        left: 52px;
    }
    
    .js-projects .slick-next {
        right: 52px;
    }
}

@media (min-width: 1200px) {
    .js-projects {
        margin: 0 -16px 32px -16px;
        justify-content: center;
    }

    .project {
        width: 100%;
        opacity: 1;
        border: none;
    }

    .js-projects .slick-slide {
        width: 452px !important;
    }

    .js-projects .slick-track {
        min-width: 1200px !important;
        justify-content: center;
    }

    .js-projects .slick-slide:hover .project__img {
        transition: all ease-in-out 300ms;
        transform: scale(1.02);
    }

    .js-projects .slick-arrow {
        top: 123px;
    }

    .js-projects .slick-prev {
        left: -40px;
    }
    
    .js-projects .slick-next {
        right: -40px;
    }

    .js-projects .slick-next:hover::before {
        left: 3px;
        color: #0CF7BD;
    }

    .js-projects .slick-prev:hover::before {
        left: -3px;
        color: #0CF7BD;
    }

    .js-projects .slick-slide .project .project__img {
        height: 280px;
    }

    .project__img img {
        border-radius: 20px;
    }

    .project__details {
        padding-left: 0;
    }
}

@media (min-width: 1201px) and (max-width: 1440px) {
    .js-projects {
        padding: 0 50px;
    }

    .js-projects .slick-next {
        right: -10px;
    }

    .js-projects .slick-prev {
        left: -10px;
    }
}