.swiper {
    position: relative;
    width: 100%;
    height: 100svh;

}

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

.swiper-slide:before {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, .45);
}

.swiper-button {
    color: var(--main-bg-color);
    z-index: 1000;
}

.hero__project-link {
    position: absolute;
    bottom: 25;
    left: 50%;
    transform: translateX(-50%);
    color: var(--main-bg-color);
    font-weight: bold;
    font-size: 1.2rem;
}

.hero__header {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    color: var(--main-bg-color);

    h1 {
        font-size: 4rem;
        margin-bottom: 1rem;
    }
    h2 {
        font-size: 2.5rem;
        margin-bottom: 2rem;
    }
}

@media screen and (max-width: 768px) {
    .hero__header {
        h1 {
            font-size: 1.5rem;
            line-height: 1.6;
        }
        h2 {
            font-size: 1.2rem;
            line-height: 1.6;
        }
    }
    
    .swiper-button {
        padding: 0 !important;

        &::after {
            font-size: 1.3rem;
        }
    }
    
}