@import url('../fonts/fonts.css');

* {
    box-sizing: border-box;
}

:root {
    --text-color: #0B4F89;
    --yellow: #f3ac12;
    --orange: #FF8234;
    --orange-dark: #DE6920;
    --background: #FFFCF6;
    --background-dark: #1C1C1C;
    --scroll-x: -200%;

    --marquee-width: 100%;
    --marquee-height: 400px;
    /* --marquee-elements: 12; */ /* defined with JavaScript */
    --marquee-elements-displayed: 5;
    --marquee-element-width: calc(var(--marquee-width) / var(--marquee-elements-displayed));
    --marquee-animation-duration: calc(var(--marquee-elements) * 3s);
}

body {
    min-height: 100vh;
    margin: 0;
    font-family: "Courier Prime", sans-serif;
    color: var(--text-color);
    font-size: 18px;
    line-height: 26px;
    display: flex;
    flex-direction: column;
    background-color: var(--background);
    overflow-x: hidden;
}

#page {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

#wpadminbar {
    position: fixed;
    top: 0;
    left: 0;
}

.title {
    font-family: "Passion One", sans-serif;
    color: var(--text-color);
    font-size: 100px;
    line-height: 70px;
    font-weight: 300;
}

.subtitle {
    font-family: "Just Another Hand", sans-serif;
    color: var(--text-color);
    font-size: 70px;
    line-height: 50px;
    font-weight: 300;
    color: #8bacc9;
}

/* .to-animate {
    opacity: 0;
} */

.animate__animated.animate__delay-03s {
    -webkit-animation-delay: .3s;
    animation-delay: .3s;
    -webkit-animation-delay: .3s;
    animation-delay: .3s;
}

.animate__animated.animate__delay-05s {
    -webkit-animation-delay: .5s;
    animation-delay: .5s;
    -webkit-animation-delay: .5s;
    animation-delay: .5s;
}

.text {
    font-size: 28px;
    line-height: 36px;
}

.plain {
    font-family: "Poppins", sans-serif;
}

.content {
    flex: 1;
    padding-top: 100px;
}

@media screen and (max-width: 1800px) {
    .title {
        font-size: 80px;
    }

    .subtitle {
        font-size: 60px;
    }
}

@media screen and (max-width: 1400px) {
    .title {
        font-size: 100px;
    }

    .subtitle {
        font-size: 70px;
        line-height: 60px;
    }
}

@media screen and (max-width: 800px) {
    .text {
        font-size: 24px;
        line-height: 30px;
    }
}

@media screen and (max-width: 600px) {
    .title {
        font-size: 75px;
        line-height: 65px;
        padding: 0 10px;
    }

    .subtitle {
        font-size: 60px;
        line-height: 50px;
        padding: 0 10px;
    }

    .text {
        font-size: 20px;
        line-height: 26px;
    }
}

















.marquee {
    width: var(--marquee-width);
    height: var(--marquee-height);
    background-color: #ffffff;
    color: #eee;
    overflow: hidden;
    position: relative;
}

.marquee:before,
.marquee:after {
    position: absolute;
    top: 0;
    width: 10rem;
    height: 100%;
    content: "";
    z-index: 1;
}

.marquee:before {
    left: 0;
    background: linear-gradient(to right, #ffffff80 0%, transparent 100%);
}

.marquee:after {
    right: 0;
    background: linear-gradient(to left, #ffffff81 0%, transparent 100%);
}

.marquee-content {
    list-style: none;
    height: 100%;
    display: flex;
    animation: scrolling var(--marquee-animation-duration) linear infinite;
    margin: 0;
}

/* .marquee-content:hover {
  animation-play-state: paused;
} */
@keyframes scrolling {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-1 * var(--marquee-element-width) * var(--marquee-elements)));
    }
}

.marquee-content li {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    width: var(--marquee-element-width);
    max-height: 100%;
    font-size: calc(var(--marquee-height) * 3 / 4);
    white-space: nowrap;
    padding: 0 5px;
    cursor: pointer;
}

.marquee-content li img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 600px) {
    html {
        font-size: 12px;
    }

    :root {
        --marquee-width: 100vw;
        --marquee-height: 16vh;
        --marquee-elements-displayed: 3;
    }

    .marquee:before,
    .marquee:after {
        width: 5rem;
    }
}