.swiper {
    width: 90vw;
}

img {
    width: 100%;
}

.slides {
    display: flex;
    flex-direction: column;
    width: 100%;
    position: relative;
    z-index: 1;
    margin-bottom: 2rem;
}


.slides .list {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.slides .slide {
    display: flex;
    width: 100vw;
    height: 100vh;
    position: relative;
    overflow: hidden;
}


.slide .background {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    left: 0;
    top: 0;
    width: 96%;
    height: 100%;
    background-position: center;
    will-change: transform;
    background-size: cover;
    background-repeat: no-repeat;
    margin: 0 2%;
}


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

.slide .background.one::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(11, 19, 63, 0.35), rgba(11, 19, 63, 0));
    mix-blend-mode: multiply;
}

.slide .background.two::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(11, 19, 63, 0.8), rgba(11, 19, 63, 0));
    mix-blend-mode: multiply;
}

.slide .background.three::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(11, 19, 63, 0.7), rgba(11, 19, 63, 0));
    mix-blend-mode: multiply;
}

.slide .slidecontent {
    flex-direction: row;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    display: flex;
    text-align: center;
    width: 95%;
    padding: 3rem;
    margin: 0 auto;
    position: relative;
    color: #ffffff;
    letter-spacing: 2px;
}

.slide .slidecontent h2 {
    color: #ffffff;
    cursor: pointer;
    font-family: var(--baskerville-font);
    font-size: 2.25rem;
    letter-spacing: 10px;
    font-weight: 500;

}

.slide .slidecontent .expand {
    color: #000000;
    letter-spacing: 12px;
    font-size: 5rem;
}

@media screen and (min-width: 1024px) and (max-width: 1200px) {
    .slide .slidecontent h2 {
        font-size: 2rem;
        letter-spacing: 3px;
    }

    .background {
        padding: 0;
    }
}

@media screen and (min-width: 769px) and (max-width: 1023px) {
    .slide .slidecontent h2 {
        font-size: 1.75rem;
        letter-spacing: 3px;
    }

    .background {
        padding: 0;
    }
}

@media screen and (min-width: 481px) and (max-width: 768px) {
    .slide .slidecontent h2 {
        font-size: 1.55rem;
        letter-spacing: 3px;
    }

    .background {
        padding: 0;
    }
}

@media screen and (min-width: 320px) and (max-width: 480px) {
    .slide .slidecontent h2 {
        font-size: 1.25rem;
        letter-spacing: 3px;
    }
}


