/* Fonts */

@font-face {
    font-family: 'Montserrat-Bold';
    src: url("../fonts/Montserrat-Bold.otf");
}

@font-face {
    font-family: 'Montserrat-Light';
    src: url("../fonts/Montserrat-Light.otf");
}

@font-face {
    font-family: 'Montserrat-Regular';
    src: url("../fonts/Montserrat-Regular.otf");
}

/* General Layout */
* {
    margin: 0;
    box-sizing: border-box;
}

body {
    background-color: #66AC47;
    background-attachment: fixed;
    background-size: 100% auto;
    background-image: url("../..//tokenImages/Home.BackgroundImage.Width-1920.Height-1280.20250730005633.jpeg");
    background-repeat: no-repeat;
}

button, .btn {
    border-radius: 3px;
    font-size: 16px;
    padding: 7px 14px;
    color: #FFF;
    font-family: 'Montserrat-Bold';
    cursor: pointer;
    background: #66AC47;
    border: 1px solid #66AC47;
}

button:hover, .btn:hover {
    background-color: #FFC20E;
}

h1 {
    font-size: 44px;
    font-family: 'Montserrat-Regular';
    padding: 5px 0;
    margin-bottom: 40px;
    line-height: 1.1;
}

.page-title {
    border-bottom: 1px solid #FFC20E;
    color: #005030;
}

h2 {
    font-size: 27px;
    font-family: 'Montserrat-Regular';
    line-height: 1.1;
}

h3 {
    font-size: 23px;
    font-family: 'Montserrat-Bold';
    line-height: 1.1;
    margin: 14px 0;
}

h4 {
    font-size: 20px;
    font-family: 'Montserrat-Light';
    line-height: 1.4;
}

p {
    font-size: 16px;
    font-family: 'Montserrat-Light';
    margin: 0.5em;
    line-height: 1.6;
}

figcaption {
    font-size: 16px;
    font-family: 'Montserrat-Light';
    margin-top: 0.5em;
}

a {
    text-decoration: none;
}

table {
    border-collapse: collapse;
    width: 100%;
}

tr:nth-child(odd) {
    background-color: #FFC20E;
}

tr > td:first-child {
    min-width: 130px;
}

th {
    font-size: 16px;
    font-family: 'Montserrat-Bold';
    padding: 0.5em;
    text-align: left;
}

td {
    font-size: 16px;
    font-family: 'Montserrat-Light';
    padding: 0.5em;
}

.mg-1 {
    margin: 1em;
}

.mg-rgt-1 {
    margin-right: 1em;
}

#container {
    width: 1000px;
    margin: 20px auto;
}

#account {
    background: #005030;
    padding: 10px;
    position: relative;
    justify-content: flex-end;
}

#hamburger-button {
    display: none;
}

#sidebar {
    width: 215px;
    background: @@Colors.Sidebar.Backgournd@@;
}

#sidebar ul {
    line-height: 1.6;
    padding: 0;
    list-style: none;
}

#sidebar #main-links li {
    font-family: 'Montserrat-Regular';
    font-size: 18px;
    padding: 14px;
    min-height: 55px;
    background-color: #005030;
    border-bottom: 1px solid #FFC20E;
    text-align: center;
}

#sidebar #main-links li:hover {
    background-color: #FFC20E;
}

#sidebar #main-links li.active {
    background-color: #FFF;
}

#sidebar #main-links li:first-child {
    border-top: 1px solid #FFC20E;
}

#sidebar #main-links a {
    color: #FFF;
    display: flex;
    justify-content: center;
    text-decoration: none;
}

#sidebar #main-links li.active a {
    color: #005030;
    pointer-events: none;
}

#sidebar #additional-links a {
    color: #005030;
}

#main {
    overflow: hidden;
    background-color: #FFC20E;
}

.upcoming {
    background: #FFF;
    text-align: center;
    margin: 1em;
    width: 300px;
}

.upcoming-name {
    color: #FFF;
    background-color: #005030;
    padding: 0.25em;
    align-self: stretch;
}

.upcoming-date {
    margin: 1em;
}

#info-box {
    flex-basis: 632px;
}

#disclaimer {
    background-color: #005030;
    color: #FFF;
    padding: 20px 15px;
    margin: 20px auto;
    width: 1000px;
}

#kjk-plug {
    background-color: #FFC20E;
    color: #FFF;
    padding: 20px 15px;
    margin: 20px auto;
    width: 1000px;
    text-align: center;
}

#kjk-plug a {
    color: #FFF;
}

/* Interior */
#white-bg-color {
    background-color: #FFF;
    padding: 20px;
    height: 100%;
}

#white-bg-color h2 {
    line-height: 2;
}

#white-bg-color p {
    padding-bottom: 1em;
    margin: 0.5em 0;
}

.two-columns {
    flex-wrap: wrap;
}

.two-columns > div {
    flex: 1;
}

.callout-box {
    background-color: #005030;
    padding: 20px;
    color: #FFF;
}

.callout-box .btn {
    margin-top: 1em;
}

.float-left {
    float: left;
    margin: 0 20px 0 0;
}

.float-right {
    float: right;
    width: 50%;
    margin: 20px 20px;
}

.block-container {
    border-bottom: 1px solid #FFC20E;
    padding-bottom: 40px;
    margin-bottom: 40px;
    overflow: auto;
}

.image-container {
    width: 50%;
    margin: 20px 0;
}

.sponsors-container div {
    width: 200px;
    height: 153px;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    margin: 1em;
}

/* Flex */
.flex {
    display: flex;
}

.flex-row {
    flex-direction: row;
}

.flex-col {
    flex-direction: column;
}

.flex-grow-0 {
    flex-grow: 0;
}

.flex-grow-1 {
    flex-grow: 1;
}

.flex-wrap {
    flex-wrap: wrap;
}

.flex-none {
    flex: none;
}

.flex-1 {
    flex: 1;
}

.jc-flex-end {
    justify-content: flex-end;
}

.jc-center {
    justify-content: center;
}

.jc-space-between {
    justify-content: space-between;
}

.jc-space-around {
    justify-content: space-around;
}

.ai-center {
    align-items: center;
}

.ai-flex-start {
    align-items: flex-start;
}

.as-center {
    align-self: center;
}

/* Image Slider */
.glide__arrow {
    background-color: rgba(0,0,0,0.5) !important;
    border: none !important;
}

.glide__arrows i {
    font-size: 30px;
}

.display {
    display: block !important;
}

/* Large devices (desktops, less than 1200px) */
@media only screen and (max-width: 1200px) {
    #container, #disclaimer, #kjk-plug {
        width: 700px;
    }

    .upcoming {
        flex-grow: 1;
    }

    .two-columns {
        flex-direction: column;
    }

    .float-right {
        float: none;
        width: 100%;
        margin: 20px 0;
    }

    .image-container {
        width: 100%;
    }

    .mg-rgt-1 {
        margin-right: 0;
    }

}

/* Medium devices (tablets, less than 992px) */
@media only screen and (max-width: 992px) {

}

/* Small devices (landscape phones, less than 768px) */
@media only screen and (max-width: 768px) {
    #container, #disclaimer, #kjk-plug {
        width: 500px;
    }

    #account {
        justify-content: space-between;
    }

    #hamburger-button {
        display: block;
    }

    #sidebar {
        display: none;
        position: absolute;
        z-index: 3;
        width: 500px;
        box-shadow: 0px 40px 40px rgba(0, 0, 0, 0.8);
    }
}

/* Extra small devices (portrait phones, less than 576px) */
@media only screen and (max-width: 576px) {
    #container, #disclaimer, #kjk-plug {
        width: 300px;
    }

    #sidebar {
        width: 300px;
    }

    .glide__arrows i {
        font-size: 15px;
    }

    h1 {
        font-size: 34px;
    }

    .float-left {
        float: none;
        margin: 0 0 20px 0;
    }

    .headshot-container {
        display: flex;
        flex-direction: row;
        justify-content: center;
    }
}