:root {
    --primary: #227093;
    --secondary: #ff5252;
    --background: #eee;
    --highlight: #ffda79;
    /* Theme color */
    --theme: var(--primary);
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

/* Ensure scrollbars are visible on all pages */
html {
    overflow-y: scroll;
    scrollbar-width: auto;
    -ms-overflow-style: scrollbar;
}

html::-webkit-scrollbar {
    display: block;
    width: 8px;
}

html::-webkit-scrollbar-track {
    background: #f1f1f1;
}

html::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 4px;
}

html::-webkit-scrollbar-thumb:hover {
    background: #888;
}

body {
    overflow-y: auto;
}

/* 
* {
    font-family: "Zen Old Mincho", serif;
} */

.simpleParallax {
    height: 100%;
}

.font-mincho {
    font-family: "Zen Old Mincho", serif;
}

.font-gothic {
    font-family: 'Zen Maru Gothic', sans-serif !important;
}

.featured-swiper .swiper-pagination-bullet {
    background: #fff !important;
    opacity: 1 !important;
}

.featured-swiper .swiper-pagination-bullet-active {
    background: #C4B28C !important;
}

@keyframes flow {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.animate-flow {
    animation: flow 18s linear infinite;
}


@keyframes bounce {
    25% {
        transform: rotate(90deg) translate(.25rem);
    }

    75% {
        transform: rotate(90deg) translate(-.25rem);
    }
}

@keyframes marquee {
    0% {
        transform: translateX(0%);
    }

    100% {
        transform: translateX(-33.33%);
    }
}

@media (min-width: 767px) {

    .top-about-swiper .swiper-slide.swiper-slide-next {
        transition: width .5s;
    }

    .top-about-swiper .swiper-slide {
        width: 30%;
        transition: width .5s;
    }

    .top-about-swiper .swiper-slide.swiper-slide-next {
        width: 38%;
        transition: width .5s;
    }
}

@media (max-width: 425px) {
    .top-about-swiper .swiper-slide {
        width: 80%;
        transition: width .5s;
    }

    .top-about-swiper .swiper-slide.swiper-slide-next {
        width: 90%;
    }
}


@keyframes scrollCircleMoveFade {
    0% {
        top: -15px;
        opacity: 0;
    }

    10% {
        top: -5px;
        opacity: 1;
    }

    86% {
        top: 80px;
        opacity: 1;
    }

    98% {
        top: 80px;
        opacity: 0;
    }

    100% {
        top: 0;
        opacity: 0;
    }
}

#scroll-circle {
    animation: scrollCircleMoveFade 1.6s linear infinite;
}




