/**
 * Swiper 8.1.6
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * https://swiperjs.com
 *
 * Copyright 2014-2022 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: May 25, 2022
 */


.swiper {
    position: relative;
    overflow: hidden;
    list-style: none;
    padding: 0;
    top: -10vw;
    /* z-index: 1; */
}
.swiper-vertical>.swiper-wrapper {
    flex-direction: column
}
.swiper-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    /* z-index: 1; */
    display: flex;
    transition-property: transform;
    box-sizing: content-box;
    /* cursor: grab; */
}
.swiper-slide {
    display: flex;
    flex-direction: column;
    flex-shrink: 0;
    top: 20vw;
    left: 10vw;
    width: 10vw;
    height: 10vw;
    position: relative;
    transition-property: transform;
    background-image: url(image/dialogue\ box.png);
    background-repeat: no-repeat;
    background-size: 21vw;
    color: white;
}
.swiper-slide h1{
    display: flex;
    position: relative;
    top: -2vw;
    left: -6vw;
    font-size: 2.3vw;
}
.swiper-slide p{
    display: flex;
    position: relative;
    top: -2vw;
    left: -6vw;
    font-size: 1vw;
}
.line-history-start{
    position: absolute;
    top: 11vw;
    left: 8.9vw;
    width: 33.1vw;
    height: 2vw;
}
.line-history-end{
    position: absolute;
    top: 11vw;
    right:22.1vw;
    width: 33.1vw;
    height: 2vw;
}
.swiper-button-next,
.swiper-button-prev {
    position: absolute;
    top: 40vw;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    display: inline-block;
    height: 3.9vw;
    width: 3.9vw;
    background-color: #DA3556;
    text-align: center;
    line-height: 3.9vw;
    border-radius: 50%;
    font-size: 1vw;
    color: white;
}


.swiper-button-prev,
.swiper-rtl .swiper-button-next {
    left: 40vw;
    right: auto;
}
.swiper-button-next,
.swiper-rtl .swiper-button-prev {
    right: 40vw;
    left: auto;
}

@media(max-width:768px)
{
    .swiper {
        position: relative;
        overflow: hidden;
        list-style: none;
        padding: 0;
        top: -10vw;
        /* z-index: 1; */
    }
    .swiper-vertical>.swiper-wrapper {
        flex-direction: column
    }
    .swiper-wrapper {
        position: relative;
        width: 100%;
        height: 100%;
        /* z-index: 1; */
        display: flex;
        transition-property: transform;
        box-sizing: content-box;
        /* cursor: grab; */
    }
    .swiper-slide {
        display: flex;
        flex-direction: column;
        flex-shrink: 0;
        top: 20vw;
        left: 1.5vw;
        width: 20vw;
        height: 20vw;
        position: relative;
        transition-property: transform;
        background-image: url(image/dialogue\ box.png);
        background-repeat: no-repeat;
        background-size: 31vw;
        color: white;
    }
    .swiper-slide h1{
        display: flex;
        position: relative;
        top: -5.5vw;
        left: -2vw;
        font-size: 5vw;
    }
    .swiper-slide p{
        display: flex;
        position: relative;
        top: -5.5vw;
        left: -1vw;
        font-size: 3vw;
    }
    .line-history-start{
        position: absolute;
        top: 13vw;
        left: 14vw;
        width: 33.1vw;
        height: 2vw;
    }
    .line-history-end{
        position: absolute;
        top: 13vw;
        right:16.9vw;

    }
    .swiper-button-next,
    .swiper-button-prev {
        position: absolute;
        top: 48vw;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        display: inline-block;
        height: 4.9vw;
        width: 4.9vw;
        background-color: #DA3556;
        text-align: center;
        line-height: 4.9vw;
        border-radius: 50%;
        font-size: 1.5vw;
        color: white;
    }
    
    
    .swiper-button-prev,
    .swiper-rtl .swiper-button-next {
        left: 35vw;
        right: auto;
    }
    .swiper-button-next,
    .swiper-rtl .swiper-button-prev {
        right: 35vw;
        left: auto;
    }
}



