@charset "UTF-8";
@font-face {
    font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: "Racing Sans One";
    font-style: normal;
    font-weight: 400;
    src: url("/site/templates/fonts/racing-sans-one-v13-latin-regular.woff2") format("woff2"),
        /* Chrome 36+, Opera 23+, Firefox 39+ */ url("/site/templates/fonts/racing-sans-one-v13-latin-regular.woff") format("woff"); /* Chrome 5+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}
@font-face {
    font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: "Anton";
    font-style: normal;
    font-weight: 400;
    src: url("/site/templates/fonts/anton-v25-latin-regular.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

:root {
    --bs-link-color: #34495e;
    --bs-link-color-rgb: 20, 29, 37;
    --bs-link-hover-color: #c00000;
    --bs-link-hover-color-rgb: 75, 0, 0;
    --bs-font-sans-serif: "Roboto Serif", serif;
}

.btn-primary {
    --bs-btn-color: #fff;
    --bs-btn-bg: #0d6efd;
    --bs-btn-border-color: #0d6efd;
    --bs-btn-hover-color: #fff;
    --bs-btn-hover-bg: #fff6cd;
    --bs-btn-hover-border-color: #0a58ca;
    --bs-btn-focus-shadow-rgb: 49, 132, 253;
    --bs-btn-active-color: #fff;
    --bs-btn-active-bg: #0a58ca;
    --bs-btn-active-border-color: #0a53be;
    --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    --bs-btn-disabled-color: #fff;
    --bs-btn-disabled-bg: #0d6efd;
    --bs-btn-disabled-border-color: #0d6efd;
}

.btn-secondary {
    --bs-btn-color: #666;
    --bs-btn-bg: #ffefa9;
    --bs-btn-border-color: #ffefa9;
    --bs-btn-hover-color: #fff;
    --bs-btn-hover-bg: #fff6cd;
    --bs-btn-hover-border-color: #ffea90;
    --bs-btn-focus-shadow-rgb: 49, 132, 253;
    --bs-btn-active-color: #fff;
    --bs-btn-active-bg: #242218;
    --bs-btn-active-border-color: #ffe67b;
    --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    --bs-btn-disabled-color: #fff;
    --bs-btn-disabled-bg: #ffefa9;
    --bs-btn-disabled-border-color: #ffefa9;
}

body {
    font-family: "Merriweather", serif;
    font-weight: 300;
    overscroll-behavior: contain;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 300;
}

.align_center {
    text-align: center;
}
.align-right {
    text-align: right;
}
.align-left {
    text-align: left;
}

#header-top {
    width: 100%;
    height: 64px;
    font-family: "Diplomata SC", serif;
    font-size: 15px;
    background-color: rgba(255, 239, 169, 0.5);
    color: #666;
    text-transform: uppercase;
    z-index: 1000;
    position: relative;
    transition: transform 0.25s;
}

.sticky-top {
    text-transform: uppercase;
    font-size: 18x;
    z-index: 1000;
    background-color: white;
    font-family: "Montserrat", sans-serif;
    transition: transform 0.25s;
}

.nav-link.active {
    color: var(--bs-link-hover-color);
}

.slides .slide {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    transition: transform 0.5s;
    padding-top: 200px;
    overflow: auto;
}

.bg-box-black {
    background-color: rgba(0, 0, 0, 0.5);
    padding: 16px 0 16px;
    color: white;
    font-weight: bold;
    font-size: 1.1em;
}

.bg-box {
    box-shadow: 0 5px 10px 0 #bbb;
    background-color: rgba(240, 240, 240, 0.9);
    padding: 16px 0 16px;
}

.home-header {
    background-position: center top;
    background-size: cover;
}

.home-header h1 {
    font-size: 24px;
}
.home-header h2 {
    font-size: 18px;
}

.spinning-text {
    font-family: "Montserrat", sans-serif;
    font-size: 32px;
    text-transform: uppercase;
    height: 1.2em;
    overflow: hidden;
    position: relative;
}
.spinning-text div {
    position: relative;
}

#copyright-footer {
    font-size: 12px;
}

#scroll-indicator {
    position: fixed;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 999;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 30px;
    height: 50px;
    border-radius: 25px;
    background-color: white;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
    opacity: 0.7;
}

#scroll-indicator i {
    font-size: 30px;
    color: #333;
    animation-name: bounce;
    animation-duration: 1.5s;
    animation-iteration-count: infinite;
    animation-timing-function: ease-in-out;
}

@keyframes bounce {
    0%,
    100% {
        transform: translateY(px) scale(0.8);
    }
    50% {
        transform: translateY(2px) scale(1.2);
    }
}

.resp-img {
    display: block;
}

/* Timeline */
/* The actual timeline (the vertical ruler) */
.main-timeline-2 {
    position: relative;
}

/* The actual timeline (the vertical ruler) */
.main-timeline-2::after {
    content: "";
    position: absolute;
    width: 3px;
    background-color: #999;
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -3px;
}

/* Container around content */
.timeline-2 {
    position: relative;
    background-color: inherit;
    width: 50%;
}

/* The circles on the timeline */
.timeline-2::after {
    content: "";
    position: absolute;
    width: 25px;
    height: 25px;
    right: -11px;
    background-color: white;
    border: 3px solid #999;
    top: 15px;
    border-radius: 50%;
    z-index: 1;
}

/* Place the container to the left */
.left-2 {
    padding: 0px 40px 20px 0px;
    left: 0;
}

/* Place the container to the right */
.right-2 {
    padding: 0px 0px 20px 40px;
    left: 50%;
}

/* Add arrows to the left container (pointing right) */
.left-2::before {
    content: " ";
    position: absolute;
    top: 18px;
    z-index: 1;
    right: 30px;
    border: medium solid white;
    border-width: 10px 0 10px 10px;
    border-color: transparent transparent transparent white;
}

/* Add arrows to the right container (pointing left) */
.right-2::before {
    content: " ";
    position: absolute;
    top: 18px;
    z-index: 1;
    left: 30px;
    border: medium solid white;
    border-width: 10px 10px 10px 0;
    border-color: transparent white transparent transparent;
}

/* Fix the circle for containers on the right side */
.right-2::after {
    left: -14px;
}

.page-builder {
    position: relative;
}

.pb_violator {
    position: absolute;
    top: 50px;
    right: 50px;
    background-color: #cc0502;
    padding: 20px;
    color: white;
}

/* Media queries - Responsive timeline on screens less than 600px wide */
@media screen and (max-width: 600px) {
    /* Place the timelime to the left */
    .main-timeline-2::after {
        left: 31px;
    }

    /* Full-width containers */
    .timeline-2 {
        width: 100%;
        padding-left: 70px;
        padding-right: 25px;
    }

    /* Make sure that all arrows are pointing leftwards */
    .timeline-2::before {
        left: 60px;
        border: medium solid white;
        border-width: 10px 10px 10px 0;
        border-color: transparent white transparent transparent;
    }

    /* Make sure all circles are at the same spot */
    .left-2::after,
    .right-2::after {
        left: 18px;
    }

    .left-2::before {
        right: auto;
    }

    /* Make all right containers behave like the left ones */
    .right-2 {
        left: 0%;
    }
}
/* End Timeline */

@media (min-width: 768px) {
    #header-top {
        font-size: 24px;
    }
    .home-header h1 {
        font-size: 32px;
    }
    .home-header h2 {
        font-size: 20px;
    }
    #copyright-footer {
        font-size: 14px;
    }
    #scroll-indicator {
        bottom: 75px;
    }
    .bg-box {
        padding: 64px 0 16px;
    }
    .resp-img {
        display: inline-block;
        float: left;
    }
}
@media (min-width: 1200px) {
    .sticky-top {
        font-size: 14px;
    }
}

@media (max-width: 767px) {
    html {
        overflow: hidden;
        width: 100%;
    }
    body {
        height: 100%;
        width: 100vw;
        position: fixed;
        overflow-y: scroll;
        -webkit-overflow-scrolling: touch;
    }
}
