/* ================================================== */
@import url('https://fonts.googleapis.com/css2?family=Sacramento&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Marcellus:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

/* init */
* {
    --body-font: "Plus Jakarta Sans";
    --title-font: "Marcellus", Helvetica, Arial, sans-serif;
    --deco-font-1: "Sacramento";
    --body-font-color: #707070;
    --body-font-color-dark: #bbbbbb;
    --body-font-size: 15px;
    --body-font-weight: 400;
    --title-font-color: #000000;
    --title-font-color-dark: #ffffff;
    --title-font-weight: bold;
    --bg-dark-1: #151c22;
    --bg-dark-1-rgb: 21, 28, 34;
    --bg-dark-2: #18212a;
    --bg-light-1: #ffffff;
    --bg-light-2: #f8f8f8;
    --page-border-size: 0;
    --page-border-color: #ffffff;
}

h2 {
    font-size: 48px;
    letter-spacing: -.015em;
    margin-bottom: 20px;
}

body {
    background-image: url('../03_images/background/bg-main.jpg') !important;
    background-size: cover !important;
    background-position: center center !important;
    background-repeat: no-repeat !important;
    background-attachment: fixed !important;
    background-color: #111 !important; /* fallback color */
}


.form-control,
#contact_form input[type=text],
#contact_form textarea,
#contact_form input[type=email],
#contact_form textarea,
#search {
    border-radius: 3px !important;
    -moz-border-radius: 3px !important;
    -webkit-border-radius: 3px !important;
}

@media only screen and (min-width: 992px) {
    #subheader {
        padding-top: 200px;
        padding-bottom: 60px;
    }
}

section.position-relative {
    z-index: 1;
}

/* Ticker Banner */
.news-ticker {
    background-color: var(--primary-color);
    color: #000;
    padding: 10px 0;
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    z-index: 9999;
    font-size: 14px;
    letter-spacing: 1px;
    font-weight: 600;
}

.news-ticker-content {
    display: inline-block;
    padding-left: 100%;
    animation: ticker 25s linear infinite;
}

@keyframes ticker {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-100%);
    }
}

.news-ticker:hover .news-ticker-content {
    animation-play-state: paused;
}

.news-ticker span {
    margin: 0 50px;
}

@media only screen and (max-width: 768px) {
    .news-ticker {
        font-size: 12px;
        padding: 8px 0;
    }

    .news-ticker span {
        margin: 0 20px;
    }

    .news-ticker-content {
        animation-duration: 20s;
    }
}

@media only screen and (max-width: 991px) {
    .image-container {
        position: relative !important;
        height: 300px !important;
        z-index: 1 !important;
        width: 100% !important;
    }
}