/* 
// Small devices (landscape phones, 576px and up)
@media (max-width: 576px) { ... }

// Medium devices (tablets, 768px and up)
@media (max-width: 768px) { ... }

// Large devices (desktops, 992px and up)
@media (max-width: 992px) { ... }

// X-Large devices (large desktops, 1200px and up)
@media (max-width: 1200px) { ... }

// XX-Large devices (larger desktops, 1400px and up)
@media (max-width: 1400px) { ... } 
*/

/* swiper */
.mainSwiper {
    width: 100%;
    height: 95%;
}

    .mainSwiper .swiper-slide {
        /* Center slide text vertically */
        display: -webkit-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        -webkit-justify-content: center;
        justify-content: center;
        -webkit-box-align: center;
        -ms-flex-align: center;
        -webkit-align-items: center;
        align-items: center;
        background-size: cover;
    }

.swiper-slide {
    background-repeat: no-repeat;
    background-position: bottom center;
}

    .swiper-slide::before {
        content: "";
        position: absolute;
        width: 100%;
        height: 100%;
        background-color: black;
        opacity: 0.4;
    }

.mainSwiper .swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

#mainSlogn {
    position: absolute;
    top: 40%;
    left: 0;
    width: 100%;
    text-align: center;
    z-index:10;
}
    #mainSlogn h2 {
        font-size: 75px;
        letter-spacing: 7px;
        color: white;
        font-weight: 500;
        text-shadow: #000000c2 0em 0em 10px;
    }

    #mainSlogn h3 {
        font-size: 30px;
        letter-spacing: 2px;
        color: white;
        font-weight: 500;
        text-shadow: black 0em 0em 7px;
    }


#circleOutline {
    position: absolute;
    bottom: 0px;
    height: 80px;
    overflow: hidden;
    z-index: 9999;
    width: 100%;
    text-align: center;
    /* border: 1px solid blue; */
}

#circle {
    width: 2200px;
    margin-left: calc((2200px - 100%) / -2);
    height: 300px;
    border-radius: 50%;
    background: rgb(255, 255, 255);
    z-index: 1112000;
    /* border: 1px solid rgb(62, 0, 121); */
}

@media (min-width: 992px) {
    #circleOutline {
        height: 30px;
    }
}

@media (min-width: 1200px) {
    #circleOutline {
        height: 40px;
    }
}

@media (min-width: 1500px) {
    #circleOutline {
        height: 52px;
    }
}

@media (min-width: 1600px) {
    #circleOutline {
        height: 60px;
    }
}

@media (min-width: 1700px) {
    #circleOutline {
        height: 80px;
    }
}
