.projects-swiper {
    width: 100%;
    max-height: 40rem;
    color: #fff;
    position: relative;
}

/* .block-container {
    z-index: -1;
} */

.ovImage {
    position: relative;
    z-index: -1;
}

.ovImage::before {
    content: "";
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    background: rgb(0 0 0 / 15%);
}

.projects-swiper .swiper-slide {
    display: grid;
}

.projects-swiper .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
	max-height: 40rem;
}

.projects-swiper .swiper-slide .name {
    order: 2;
    position: relative;
    left: 2px;
}

.projects-swiper .swiper-slide .name h2 {
    display: inline-block;
	max-width: 65%;
}

.projects-swiper .swiper-slide .name .project-excerpt {
    max-width: 26rem;
    background-color: #000;
    padding: 2.25rem 2rem 2.25rem 0;
}

.projects-swiper .project-number {
    color: #fff;
    font-size: 1.75rem;
    font-weight: bold;
    display: inline-block;
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: 10;
    /* transform: rotate(-90deg) translate(48px, 48px); */
}


.projects-swiper .nav-arrows {
    position: absolute;
    top: 0;
    color: #fff;
    right: 0rem;
    top: 1.5rem;
    z-index: 10;
    display: inline-flex;
}

.projects-swiper .nav-arrows > div:first-of-type {
    border-right: none;
    border-radius: 20px 0 0 20px;
}

.projects-swiper .nav-arrows > div {
    width: 2.5rem;
    text-align: center;
    border: 2px solid;
    cursor: pointer;
    padding: .39rem 0;
}

.projects-swiper .nav-arrows > div:last-of-type {
    border-radius: 0px 20px 20px 0;
}

.projects-swiper .nav-arrows i {
    font-size: 0.9rem;
}

.projects-swiper .nav-arrows > div:hover {
    color: #000;
    background: #fff;
    border-color: #fff;
    transition: all .4s ease-in-out;
}

.projects-swiper .name .project-number {
	position: relative;
	right: auto;
	bottom: auto;
	display: block;
    font-size: 1.4rem;
    margin-top: 0.2em;
}

@media (min-width: 600px) {
    .projects-swiper .project-number {
        transform: rotate(-90deg) translate(50px, 48px);
    }
}

@media (max-width: 960px) {

    .projects-swiper {
        width: 100%;
        max-height: 50rem;
    }

    .projects-swiper .swiper-slide .name {
        margin-top: 30px;
    }

    .projects-swiper .swiper-slide .name h2 {
        font-size: 2rem;
        margin-bottom: 0;
    }

    .swiper-slide a.btn {
        margin: 0;
    }

}

@media (min-width: 960px) {

    .projects-swiper .swiper-slide .name {
        position: absolute;
        top: 65%;
        transform: translateY(-65%);
    }

    .projects-swiper .swiper-slide {
        grid-template-columns: 6rem 1fr 6rem;
        align-items: end;
    }
    

    .projects-swiper .nav-arrows {
        right: 3.5rem;
    }
}
@media (min-width: 1700px) {
	.projects-swiper .project-number {
        transform: rotate(-90deg) translate(65px, 48px);
    }
}
@media (min-width: 2200px) {
	.projects-swiper .project-number {
        transform: rotate(-90deg) translate(82px, 48px);
    }
}