:root {
    --color-bk:#202124;
    --color-gy: #848890;
    --color-wh: #ffffff;

    --color-bg: #FAFAFA;
    --color-line: #FAFAFA;

    --color-hl: #FFC41C;
}

/* ---------------- COMMON ---------------- */

::selection {
    background-color: var(--color-bg);
    color: var(--color-hl);
}

* {
    margin: 0;
    padding: 0;
    list-style: none;
    text-decoration: none;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    line-height: 0%;
    position: relative;
    min-width: 320px;
    max-width: 100vw;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    background-color: var(--color-bg);
}

.bottom-cta{
    position: fixed;
    bottom: 0;
    z-index: 4;
}

body > div{
    max-width: 860px;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
}

body > img, body > div > img, body > a > img{
    max-width: 860px;
    width: 100%;
    object-fit: contain;
}


.footer{
    z-index: 5;
}

.swiper {
    width: 100%;
    height: 100%;
    background-color: var(--color-bk);
}

.swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
}

.swiper-slide img {
    display: block;
    max-width: 560px;
    width: 100%;
    object-fit: contain;
}

.reviewSwiper .swiper-slide {
    opacity: 0.4;
    transition: opacity 0.2s ease;
}

.reviewSwiper .swiper-slide-active {
    opacity: 1;
}


@media screen and (max-width: 860px) {

.swiper-slide img {
    max-width: 85vw;
    width: 100%;
}

}
