﻿/* Add Poppins font */
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

body {
    margin: 0;
    padding: 0;
    border: 0;
    background-color: #efefef;
    font-size: 16px;
    font-weight: 300;
    font-family: Poppins,oxygen-sans,ubuntu,cantarell,"Helvetica Neue",sans-serif;
    color: #444444;
}

    body * {
        box-sizing: border-box;
    }

.restrict-width {
    margin: 0 auto;
    max-width: 1400px;
}

.skip-link {
    display: none;
}

.clearfix::after {
    content: ".";
    display: block;
    height: 0;
    clear: both;
    visibility: hidden;
}



/* HEADER */
.header {
    border-top: 5px solid #C9D845;
}

    .header .top-bar {
        background-color: #0B3A1D;
    }

    .header .menu-bar {
        background-color: #1E4D2B;
    }

        .header .menu-bar ul {
            list-style-type: none;
            margin: 0;
            padding: 0;
        }
/* Menu */
#main-nav > li {
    display: inline-block;
    border-right: 1px solid #0B3A1D;
}

    #main-nav > li > a {
        display: inline-block;
        font-size: 18px;
        font-weight: 400;
    }

#main-nav li.has-sub-menu > a:first-of-type {
    padding-right: 5px;
}

#main-nav li.has-sub-menu > a:last-of-type {
    padding-left: 5px;
}

    #main-nav li.has-sub-menu > a:last-of-type span {
        border: 1px solid rgba(0,0,0,0);
    }

    #main-nav li.has-sub-menu > a:last-of-type:hover span,
    #main-nav li.has-sub-menu > a:last-of-type:focus span {
        border: 1px solid rgba(255, 255, 255, 0.75);
        border-radius: 5px;
        background-color: rgba(0,0,0,.5);
    }

#main-nav a {
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
    padding: 35px;
    font-weight: 500;
}

    #main-nav a:hover {
        color: #C9D845
    }

#main-nav .sub-menu {
    display: none;
    position: absolute;
    background-color: #1E4D2B;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
}

#main-nav > li:hover > .sub-menu {
    display: block;
}

#main-nav .sub-menu a {
    display: block;
    padding: 15px;
}

    #main-nav .sub-menu a:hover {
        background-color: #0B3A1D;
    }
/* Mobile Menu Icon */
.hamburger-icon {
    cursor: pointer;
    padding: 25px 20px;
    display: none; /* Hide by default */
}

.hamburger-line {
    background-color: #fff;
    display: block;
    height: 2px;
    position: relative;
    width: 24px;
}

    .hamburger-line::before,
    .hamburger-line::after {
        background-color: #fff;
        content: '';
        display: block;
        height: 100%;
        position: absolute;
        transition: all 0.2s ease-out;
        width: 100%;
    }

    .hamburger-line::before {
        top: 5px;
    }

    .hamburger-line::after {
        top: -5px;
    }

.mobile-menu-opened .hamburger-icon .hamburger-line {
    background: transparent;
}

    .mobile-menu-opened .hamburger-icon .hamburger-line::before {
        transform: rotate(-45deg);
        top: 0;
    }

    .mobile-menu-opened .hamburger-icon .hamburger-line::after {
        transform: rotate(45deg);
        top: 0;
    }

/* BODY */
.wrapper {
    padding: 15px;
}

.main-content {
    background-color: #fff;
    padding: 40px;
}

.page-title {
    margin-top: 0;
    padding-top: 0;
}

/* Headers */
h1, h2, h3, h4, h5, h6 {
    font-family: "Poppins";
}

h1 {
    font-size: 48px;
    font-weight: 300;
}

h2 {
    font-size: 40px;
    font-weight: 400;
}

h3 {
    font-size: 32px;
    font-weight: 300;
}

h4 {
    font-size: 28px;
    font-weight: 300;
}

h5 {
    font-size: 20px;
    font-weight: 300;
}

h6 {
    font-size: 16px;
    font-weight: 300;
}

/* Common Elements */
.main-content p {
    font-size: 16px;
    line-height: 2em;
    margin: 0;
    padding: 0;
    border: 0;
    margin-bottom: 1.5em;
}

.main-content a {
    color: #1E4D2B;
}

blockquote {
    border: 0;
    border-left: 5px solid rgba(0,0,0,.05);
    padding: 20px;
    font-size: 1.2em;
    font-style: italic;
    margin: 0 0 1.5em;
    position: relative;
}

figure {
    padding: 0;
    border: 0;
    margin: 0;
}

    figure img {
        height: auto;
        max-width: 100%;
        border: none;
        border-radius: 0;
        box-shadow: none;
    }

code {
    hyphens: manual;
    overflow-wrap: break-word;
    border: 1px solid lightgray;
    font: 15px Monaco,Consolas,"Andale Mono","DejaVu Sans Mono",monospace;
}

pre {
    word-wrap: break-word;
    margin: 0;
    border: 0;
    background: rgba(0,0,0,.05);
    margin-bottom: 1.5em;
    padding: 20px;
    overflow: auto;
    max-width: 100%;
}

/* Tables */
table {
    border-collapse: separate;
    border-spacing: 0;
    border-width: 1px 0 0 1px;
    margin: 0 0 1.5em;
    width: 100%
}

table, td, th {
    border: 1px solid rgba(0,0,0,.1)
}

td, th {
    padding: 8px;
    border-width: 0 1px 1px 0
}

th {
    font-weight: 700;
    vertical-align: bottom;
    background-color: #1e4d2b;
    color: #fff;
}

/* Forms */
fieldset {
    border: 1px solid #ccc;
}

input, textarea, select {
    hyphens: manual;
    overflow-wrap: break-word;
    margin: 0;
    font-weight: 400;
    font-size: 17px;
    line-height: 1.5;
    transition: color .1s ease-in-out,background-color .1s ease-in-out;
    font-family: "Open Sans", sans-serif;
    border: 1px solid;
    border-radius: 5px;
    padding: 10px 15px;
    max-width: 100%;
    color: #666666;
    background-color: #fafafa;
    border-color: #cccccc;
    background-repeat: no-repeat;
    background-attachment: scroll;
    background-size: 16px 18px;
    background-position: 98% 50%;
    cursor: auto;
}

textarea {
    width: 100%;
}

*:disabled {
    cursor: default;
}

button, .button, [type="button"], input[type=submit] {
    margin: 0;
    font-weight: 400;
    font-size: 17px;
    line-height: 1.5;
    border: 0;
    border-radius: 5px;
    cursor: pointer;
    -webkit-appearance: button;
    transition: color .1s ease-in-out,background-color .1s ease-in-out;
    font-family: "Open Sans", sans-serif;
    color: #ffffff;
    background-color: #d9782d;
    padding: 10px 20px;
    display: inline-block;
}

    button:hover, .button:hover, [type="button"]:hover {
        background-color: #c26621;
    }



/* Row and Cols (Using Flex) */
.row {
    display: flex;
    gap: 15px;
}

    .row.gap-10 {
        gap: 10px;
    }

    .row.gap-15 {
        gap: 15px;
    }

    .row.gap-20 {
        gap: 20px;
    }

    .row.gap-25 {
        gap: 25px;
    }

.col-25 {
    flex: 1;
}

.col-75 {
    flex: 3;
}


/* FOOTER */
.top-footer {
    background-color: #004C23;
}

.top-footer_content {
    color: #fff;
    padding-top: 35px;
    padding-bottom: 25px;
}

.footer {
    background: #0B3A1D;
}

.csu-footer-links {
    text-align: right;
}

    .csu-footer-links ul li {
        display: inline-block;
        margin-left: 10px;
    }

        .csu-footer-links ul li::before {
            content: "> ";
            color: #EAB830;
        }

    .csu-footer-links a {
        color: #FFFFFFE0;
        text-decoration: none;
    }

        .csu-footer-links a:hover {
            color: #EAB830;
        }


/* RESPONSIVE */
/* Tablet */
@media only screen and (max-width: 1000px) {
    /* Switch to Mobile Menu */
    .hamburger-icon {
        display: block;
    }

    #main-nav {
        display: none;
    }
        /* Change to Display Block */
        #main-nav a {
            display: block;
        }
    /* Mobile Menu */
    .mobile-menu-closed #main-nav {
        display: none;
    }

    .mobile-menu-opened #main-nav {
        display: block;
    }

    #main-nav li,
    #main-nav li a {
        display: block;
    }

        #main-nav li:hover {
            background-color: rgba(0,0,0,.2);
        }

    #main-nav > li > a {
        padding: 20px 20px;
    }

    #main-nav li.has-sub-menu a {
        display: inline-block;
    }

    #main-nav li.has-sub-menu:hover > ul {
        display: none; /* JS will toggle display on arrow click */
    }

    #main-nav .sub-menu {
        display: none; /* Just default: will be overridden when user interacts */
        position: relative;
    }

        #main-nav .sub-menu a {
            text-align: center;
            width: 100%;
        }
    /* Add Padding to Header and Footer */
    .header .top-bar,
    .top-footer,
    .footer {
        padding-left: 10px;
        padding-right: 10px;
    }
    /* Adjust Columns */
    .col-25, .col-75 {
        flex: 1;
    }
}
/* Phone */
@media only screen and (max-width: 600px) {
    /* Adjust Columns */
    .row {
        flex-direction: column;
    }
}
