.swiper-container {
    height: 100vh;
}

.swiper {
    width: 100vw;
    height: 100vh;
    background: #121921;
}

.swiper-slide {
    color: #fff;
    background-size: cover !important;
    background-position: center !important;
    font-size: 16px;
}

.swiper-content {
    width: 50%;
    margin-left: 18%;
    position: absolute;
    bottom: 6vw;
}

.swiper-title {
    font-size: 48px;
    font-weight: bolder;
}

.swiper-pagination {
    top: 60% !important;
    right: 90% !important;
    flex-direction: column;
    z-index: 1;
}

.swiper-pagination::before {
    content: "";
    position: absolute;
    right: -30px;
    top: 0;
    height: 100%;
    width: 1px;
    background-color: #fff;
}

.swiper-pagination-bullet {
    width: auto;
    height: auto;
    text-align: center;
    opacity: 1;
    background: transparent;
    font-size: 16px;
    color: #fff;
    margin: 15px 0 !important;
    position: relative;
}

.swiper-pagination-bullet::before {
    content: "";
    position: absolute;
    top: 8px;
    right: -32.5px;
    width: 6px;
    height: 6px;
    border-radius: 100%;
    background-color: #fff;
    transform: scale(2);
    transition: .2s;
    border: 1px solid black;
}

.swiper-pagination-bullet-active {
    color: #FC5B62;
    font-size: 22px;
}

.swiper-pagination-bullet-active::before {
    top: 12px;
    background-color: #FC5B62;
    transform: scale(2);
}

.swiper-icon {
    display: flex;
    justify-content: center;
    width: 100%;
    position: absolute;
    z-index: 99;
    font-size: 30px;
    bottom: 20px;
    color: white;
}

@media only screen and (max-width: 768px) {
    .swiper-container {
        position: fixed;
        height: 100%;
    }

    .swiper-pagination {
        display: none;
    }

    .swiper-title {
        font-size: 24px;
        padding-bottom: 10px;
    }

    .swiper-slide {
        font-size: 14px;
        padding: 0;
    }

    .swiper-content {
        width: 100vw;
        padding-bottom: 30%;
        padding-left: 10px;
        padding-right: 10px;
        margin-left: 0;
    }
}