.swiper-container {
    width: 100%;
    height: 100vh;
    position: relative;
    overflow: hidden;
}

.swiper-container .slider {
    min-height: 50vh;
}

.swiper-container .slider .swiper-slide {

    overflow: hidden;
    position: relative;
    height: 100%;
    text-align: center;
    font-size: 18px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.swiper-container .slider .swiper-slide .slide-inner {
    position: absolute;
    width: 100%;
    height: 100vh;
    left: 0;
    top: 0;
}

.swiper-container .slider .swiper-slide .slide-inner img {
    position: absolute;
    width: 100%;
    left: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    height: 100%;
    object-fit: cover;
}

.swiper-container .swiper-pagination-bullet {
    background-color: rgba(0, 0, 0, 0);
}

.swiper-container .swiper-pagination {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    width: 7em;
    position: absolute;
    z-index: 3;
    right: 0;
}

.swiper-container .swiper-pagination span {
    margin-bottom: 3em;
    font-family: "Montserrat", sans-serif;
    font-size: 0.8rem;
    letter-spacing: 0.07em;
    color: #000;
}

.swiper-container .swiper-pagination span:focus {
    outline: none;
}

#content {
    text-align: center;
    color: white;
    padding: 200px 0;
    background: #002020;
}

.swiper-container .slider .swiper-slide .slide-inner::before {
    content: " ";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: #00000047;
    z-index: 1;
}


/* 
 */


.ends {
    min-height: 50vh;
    display: flex;
    text-align: center;
    align-items: center;
    justify-content: center;
    font-size: 50px;
    font-weight: bold;
}

main {
    display: flex;
    flex-direction: column;
}

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

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

.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: 100vw;
    height: 100vh;
    background-position: center;
    will-change: transform;
    background-size: cover;
}

.slide .content {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    display: flex;
    text-align: center;
    width: 95%;
    padding: 3rem;
    margin: 0 auto;
    box-sizing: border-box;
    max-width: 40rem;
    position: relative;
    align-items: center;
    color: white;
    font-size: 4.6rem;
    line-height: 1.25em;
    font-weight: 500;
}