﻿/*

    Blue: #0A64BF
    Green: #458C18
    Dark Green: #186500


*/

:root {
    /*
        *
        Auto Scaling Font Sizes
        Generated using https://clamp.font-size.app/
        *
        * Font Used: Palatino / Times - need to increase font size by roughly 10% compared to Arial.
        Min width = 768
        Max width = 1200
        1rem = 16px (based on the font size at the "html" tag level).
        *
        Small: Scales from 14px - 18px
        Medium: Scales from 16px - 20px
        Large: Scales from 18px - 22px;
        Header: Fixed at 18px
        Nav: Scales from 18px - 22px;
        Nav Icons: Fixed at 36px;
        Footer: Scales from 16px - 18px
        H6: Scales from 16px - 20px
        H5: Scales from 18px - 22px
        H4: Scales from 20px - 24px
        H3: Scales from 24px - 28px
        H2: Scales from 28px - 32px
        H1: Scales from 32px -40px
        *
    */

    --font-header: 1.25rem;
    --font-nav: clamp(1rem, 0.7778rem + 0.463vw, 1.125rem);
    --font-nav-dropdown: clamp(1rem, 0.7778rem + 0.463vw, 1.125rem);
    --font-nav-icon: 2.25rem;
    --font-small: clamp(0.875rem, 0.4306rem + 0.9259vw, 1.125rem);
    --font-medium: clamp(1rem, 0.5556rem + 0.9259vw, 1.25rem);
    --font-large: clamp(1.125rem, 0.6806rem + 0.9259vw, 1.375rem);
    --font-footer: clamp(0.875rem, 0.6528rem + 0.463vw, 1rem);
    --font-h6: clamp(1rem, 0.5556rem + 0.9259vw, 1.25rem);
    --font-h5: clamp(1.125rem, 0.6806rem + 0.9259vw, 1.375rem);
    --font-h4: clamp(1.25rem, 0.8056rem + 0.9259vw, 1.5rem);
    --font-h3: clamp(1.5rem, 1.0556rem + 0.9259vw, 1.75rem);
    --font-h2: clamp(1.75rem, 1.3056rem + 0.9259vw, 2rem);
    --font-h1: clamp(2rem, 1.1111rem + 1.8519vw, 2.5rem);
}

html {
    height: 100%;
    min-height: 100%;
    min-height: 100vh;
    font-size: 16px;
    line-height: 1.6;
}

body {
    height: 100%;
    min-height: 100%;
    min-height: 100vh;
    margin: 0 0;
    padding: 0 0;
    font-family: 'Open Sans', Arial, Helvetica, sans-serif;
    font-size: var(--font-medium);
    font-weight: normal;
    line-height: 1.6;
    color: #FFFFFF;
    background-color: #202020;
}

#frmMaster {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 100%;
    min-height: 100vh;
}

/* Some Bootstrap Fixes */

.container-xl {
    max-width: 1366px;
}

hr {
    opacity: 1;
}

.modal {
    z-index: 99990;
    background-color: rgba(0, 0, 0, 0.5) !important;
    backdrop-filter: blur(10px) !important;
}

textarea {
    resize: none;
}

.card {
    border-radius: 15px;
    overflow: hidden;
}

.card .card-body {
    padding: 25px 25px;;
}

.btn-primary,
.btn-primary:visited {
    color: #FFFFFF;
    font-weight: bold;
    background-color: #144F37;
    border-color: #003720;
}

.btn-primary:hover {
    background-color: #003720;
    border-color: #003720;
}

.shadow {
    box-shadow: 0px 5px 15px -5px rgba(0,0,0,0.2) !important;
}

figure {
    margin-bottom: 0;
    overflow: hidden;
    border-radius: 10px;
}

figure figcaption {
    display: none;
}

figure img {
    position: relative;
    object-fit: cover;
    object-position: center center;
    width: 100%;
    height: 100%;
}

/* ADA Skip Links */

.skip_links {
    text-align: left;
    position: fixed;
    z-index: 99999;
}

.skip_links a {
    position: absolute;
    left: -10000px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.skip_links a:focus, .skip_links a:active {
    position: static;
    left: 5px;
    top: 5px;
    width: auto;
    height: auto;
    padding: 1rem 1rem;
    overflow: visible;
    text-decoration: none;
    color: #000000;
    border: 1px solid #FFFFFF;
    background-color: #FCFCFC;
} 

/* Header */

header {
    padding-top: 20px;
    padding-bottom: 20px;
    position: relative;
    z-index: 99990;
    font-size: var(--font-header);
    font-weight: bold;
    line-height: 1.4;
    color: #FFFFFF;
    background-color: #071441;
    background-image: url('/Images/Layout/header-bg.webp');
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
}

header a:not(.btn),
header a:not(.btn):visited {
    color: #FFFFFF;
    text-decoration: none;
}

header a:not(.btn):hover {
    color: #FFFFFF;
}

header i {
    color: #FFFFFF;
}

/*header .header-logo {
    position: absolute;
    top: 30px;
    left: calc(50% - 107px);
    z-index: 99995;
}*/

/* Navbar */

nav {
    z-index: 9990;
    color: #FFFFFF;
    background-color: #000938;
    border-top: 1px solid #FFFFFF;
    border-bottom: 1px solid #FFFFFF;
    box-shadow: 0px 10px 5px -5px rgba(0,0,0,0.1);
}

/* Main */

main {
    color: #000000;
    background-color: #FFFFFF;
}

/* Footer */

footer {
    font-size: var(--font-footer);
    color: #FFFFFF;
    background-color: #262626;
}

footer .footer-main {
    padding: 45px 15px;
}

footer .footer-copyright {
    padding: 30px 15px;
    background-color: #202020;
}

footer a:not(.btn),
footer a:visited:not(.btn) {
    color: #FFFFFF;
    text-decoration: none;
}

footer a:hover:not(.btn) {
    color: #FFFF00;
    text-decoration: none;
}

footer ul.fa-ul {
    margin-left: 2rem;
}

footer ul.fa-ul li {
    line-height: 1.8;
}

footer ul.fa-ul li:last-child {
    padding-bottom: 0;
}

footer ul.fa-ul span.fa-li {
    width: 2rem;
}

    footer h2 {
        margin-bottom: 15px;
        padding-bottom: 2px;
        font-family: Palatino Linotype, Palatino LT STD, Book Antiqua, Georgia, serif;
        font-size: var(--font-h4);
        font-weight: bold;
        line-height: 1.2;
        border-bottom: 2px solid #FFFFFF;
    }

/* Back to Top Button */

.back-to-top {
    z-index: 9999;
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: none;
    -webkit-box-shadow: 0px 1px 3px 0px rgba(0,0,0,0.33);
    -moz-box-shadow: 0px 1px 3px 0px rgba(0,0,0,0.33);
    box-shadow: 0px 1px 3px 0px rgba(0,0,0,0.33);
}

/* Main Content */

main section {
    padding: 45px 15px;
}

main a:not(.btn),
main a:not(.btn):visited {
    color: #3333FF;
    text-decoration: none;
}

main a:not(.btn):hover {
    color: #FF3333;
    text-decoration: none;
}

main p, ul, ol {
    margin-bottom: 1.5rem;
}

main ul, ol {
    padding-left: 1.5rem;
}

main h1, main h2, main h3, main h4, main h5, main h6,
main .h1, main .h2, main .h3, main .h4, main .h5, main .h6 {
    margin-bottom: 1.5rem;
    font-family: Palatino Linotype, Palatino LT STD, Book Antiqua, Georgia, serif;
    font-weight: bold;
    text-wrap: balance;
}

main h1, main .h1 {
    font-size: var(--font-h1);
    line-height: 1.2;
}

main h2, main .h2 {
    font-size: var(--font-h2);
    line-height: 1.3;
}

main h3, main .h3 {
    font-size: var(--font-h3);
    line-height: 1.4;
}

main h4, main .h4 {
    font-size: var(--font-h4);
    line-height: 1.5;
}

main h5, main .h5 {
    font-size: var(--font-h5);
    line-height: 1.6;
}

main h6, main .h6 {
    font-size: var(--font-h6);
    line-height: 1.7;
}

main small, main .small {
    font-size: var(--font-small);
    line-height: 1.6;
}

main .big {
    font-size: var(--font-big);
    line-height: 1.6;
}

main .page-titles {
    position: relative;
    display: flex;
    flex-direction: column;
}

/* Contact Page */

section.forest-bg {
    background-color: #000000 !important;
    background-image: url('/Images/Contact/top-1920.webp');
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
}

section.forest-bg h1,
section.forest-bg p{
    color:#fff !important;
   /* -webkit-text-stroke:1px #000;*/
}

@media(max-width:991px){
    section.forest-bg {
        background-image: url('/Images/Contact/top-768.webp');
    }
}

/* Bordered Columns */


.row.with-borders .col-12 {
    border-left: 2px solid transparent;
    border-right: 2px solid transparent;
    border-image-source: linear-gradient(to bottom, rgba(0,0,0,0.0) 10%, rgba(0,9,56,0.50) 33%, rgba(0,9,56,0.50) 64%,rgba(0,0,0,0.0) 90%);
    border-image-slice: 5;
}

    .row.with-borders .col-12:first-child {
        border-left: 0;
    }

    .row.with-borders .col-12:last-child {
        border-right: 0;
    }

@media only screen and (max-width : 991px) {

    .row.with-borders .col-12 {
        padding-top: 1.5rem;
        padding-bottom: 1.5rem;
        border-left: 0;
        border-right: 0;
        border-top: 2px solid transparent;
        border-bottom: 0;
        border-image-source: linear-gradient(to right, rgba(0,0,0,0.0) 10%, rgba(0,9,56,0.50) 33%, rgba(0,9,56,0.50) 64%,rgba(0,0,0,0.0) 90%);
        border-image-slice: 5;
    }

        .row.with-borders .col-12:first-child {
            padding-top: 0;
            border-top: 0;
        }

        .row.with-borders .col-12:last-child {
            padding-bottom: 0;
            border-bottom: 0;
        }
}

/* Google Map */

.google-map {
    padding: 0 0;
    margin: 0 0;
}

    .google-map .container-fluid,
    .google-map .row,
    .google-map .col-12 {
        padding: 0 0;
        margin: 0 0;
    }

    .google-map .ratio-map {
        padding-bottom: 25%
    }

@media only screen and (max-width : 991px) {

    .google-map .ratio-map {
        padding-bottom: 56.25%
    }
}

@media only screen and (max-width : 767px) {

    .google-map .ratio-map {
        padding-bottom: 100%
    }
}

/* Multi Column Lists */

.list-four-col {
    columns: 4;
    column-gap: 30px;
}

.list-three-col {
    columns: 3;
    column-gap: 30px;
}

.list-two-col {
    columns: 2;
    column-gap: 30px;
}

@media (max-width : 991px) {

    .list-four-col,
    .list-three-col,
    .list-two-col {
        columns: 2;
    }

}

@media (max-width : 767px) {

    .list-four-col,
    .list-three-col,
    .list-two-col {
        columns: 1;
    }

}

/* Swiper */

.swiper-container {
    position: relative;
    width: 100%;
    height: auto;
    background-color: #878057;
}

.swiper-slide {
    text-align: center;
}

    .swiper-slide .img-fluid {
        width: 100%;
        height: auto;
    }

    .swiper-slide .slide-title {
        position: absolute;
        bottom: 60px;
        left: 0;
        right: 0;
        display: flex;
        justify-content: center;
        flex-direction: column;
        font-size: var(--font-h1);
        font-weight: bold;
        color: #FFFFFF;
        line-height: 1.5;
        text-align: center;
    }

        .swiper-slide .slide-title .slide-title-text {
            align-self: center;
            padding: 1rem 8rem;
            background-color: rgba(0,0,0,0.75);
            background: linear-gradient(to right, rgba(0,0,0,0) 0%,rgba(0,0,0,0.75) 20%,rgba(0,0,0,0.75) 80%,rgba(0,0,0,0) 100%);
        }

.swiper-button-next,
.swiper-button-prev {
    color: rgba(255,255,255,0.75);
}

.swiper-pagination-bullet {
    width: 16px;
    height: 16px;
    background-color: #000000;
    opacity: 0.5;
}

.swiper-pagination-bullet-active {
    background-color: #FFFFFF;
    opacity: 0.9;
}

@media (max-width : 767px) {

    .swiper-button-next,
    .swiper-button-prev,
    .swiper-pagination {
        display: none;
    }

    .swiper-slide {
        position: relative;
        display: flex;
        flex-direction: column;
    }

    .swiper-slide img {
        position: relative;
    }

    .swiper-slide .slide-title {
        position: relative;
        top: initial;
        right: inherit;
        bottom: inherit;
        left: initial;
        font-size: var(--font-h4);
        line-height: 1.5;
        background-color: #404040;
    }

        .swiper-slide .slide-title .slide-title-text {
            margin-bottom: 0;
            padding: 16px 16px;
            background-color: transparent;
            background: none;
            -webkit-border-radius: 0px;
            -moz-border-radius: 0px;
            border-radius: 0px;
        }
}


/* Marquee */

.marquee-bg {
    position: relative;
    padding-top: 0;
    padding-bottom: 0;
    z-index: 999;
    background-color: #186500;
}

.marquee-bg .container-xl .col-12 {
    padding-left: 0;
    padding-right: 0;
}

.marquee-wrapper {
    overflow: hidden;
    display: none;
    width: 100%;
    background-color: transparent;
}

.marquee {
    font-family: Palatino Linotype, Palatino LT STD, Book Antiqua, Georgia, serif;
    font-weight: bold;
    font-size: var(--font-h1);
    color: #FFFFFF;
    line-height: 2.5;
}

.marquee-background > .container-xl {
    padding-left: 0;
    padding-right: 0;
}

    .marquee-background > .container-xl > .row {
        margin-left: 0;
        margin-right: 0;
    }

        .marquee-background > .container-xl > .row > .col-12 {
            padding-left: 5px;
            padding-right: 5px;
        }

@media only screen and (max-width : 991px) {

    .marquee-background {
        top: 0;
        margin-bottom: 0;
    }

        .marquee-background .container-xl {
            width: 100%;
            margin-left: 0;
            margin-right: 0;
        }

        .marquee-background > .container-xl > .row > .col-12 {
            width: 100%;
        }

    .marquee-wrapper {
        border: 0 none;
        -webkit-border-radius: 0px;
        -moz-border-radius: 0px;
        border-radius: 0px;
    }
}

/* Color Sections */

section.hero {
    overflow-x: hidden;
    padding: 0 0;
}

section.hero img {
    width: 100%;
    height: auto;
}

section.gray-bg {
    color: #000000;
    background-color: #F2F2F2;
}

section.blue-bg {
    color: #FFFFFF;
    background-color: #071441;
}

section.blue-bg a,
section.blue-bg a:visited{
    color:#ffcc !important;
}

section.blue-bg a:hover{
    color:#fff000 !important;
}

section.green-bg {
    color: #FFFFFF;
    background-color: #186500;
}

/* Image Link */

a.image-link figure {
    position: relative;
    background-color: #FFFFFF;
    border: 4px solid #FFFFFF;
    box-shadow: -3px 5px 10px 0px rgba(0,0,0,0.33);
    transition: box-shadow ease-in-out 200ms;
}

a.image-link:hover figure {
    box-shadow: -3px 5px 15px 0px rgba(0,0,0,0.66);
}

/* Image Link with Overlay */

a.image-link-with-overlay figure {
    position: relative;
    background-color: #FFFFFF;
    border: 4px solid #FFFFFF;
    box-shadow: -3px 5px 10px 0px rgba(0,0,0,0.33);
    transition: box-shadow ease-in-out 200ms;
}

a.image-link-with-overlay:hover figure {
    box-shadow: -3px 5px 15px 0px rgba(0,0,0,0.66);
}

    a.image-link-with-overlay figure figcaption {
        display: block;
        position: absolute;
        left: 15px;
        right: 15px;
        bottom: 15px;
        padding: 10px 20px;
        color: #FFFFFF;
        font-family: Palatino Linotype, Palatino LT STD, Book Antiqua, Georgia, serif;
        font-size: var(--font-large);
        font-weight: bold;
        text-align: center;
        background-color: rgba(0,0,0,0.75);
        background: linear-gradient(to right, rgba(0,0,0,0) 0%,rgba(0,0,0,0.75) 25%,rgba(0,0,0,0.75) 75%,rgba(0,0,0,0) 100%);
    }

    a.image-link-with-overlay img {
        transform: scale(1.0);
        transition: transform ease-in-out 200ms;
    }

    a.image-link-with-overlay:hover img {
        transform: scale(1.125);
    }