/* CONFIG FOR THE SITE */
/* END OF THE CONFIG DO NOT EDIT BELOW THIS LINE*/
a {
    color: #000000 !important;
    text-decoration: none;
}

/* Typography */
html, body {
    height: 100%;
}

body {
    color: #000000 !important;
    font: 400 16px/1.5 "Open Sans", Arial, sans-serif;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Transitions */
a, input, select, textarea, button, .transition {
    -webkit-transition: all ease-in-out 0.4s;
    -moz-transition: all ease-in-out 0.4s;
    -o-transition: all ease-in-out 0.4s;
    transition: all ease-in-out 0.4s;
}

h1, h2, h3, h4, h5, h6 {
    margin: 0 0 0.8em;
}

h1 {
    font-size: 3.052em;
}

h2 {
    font-size: 2.441em;
}

h3 {
    font-size: 1.953em;
}

h4 {
    font-size: 1.563em;
}

h5 {
    font-size: 1em;
}

h6 {
    font-size: 0.8em;
}

p {
    margin-bottom: 1em;
    font-size: 1.25em;
}

img {
    width: auto;
    max-width: 100%;
    height: auto;
    vertical-align: middle;
}

.form-control {
    font-size: 16px;
    font-family: 'Lato', sans-serif;
    height: 44px;
    padding: 8px 12px;
}

.form-control:focus {
    border-color: #947C00;
    outline: 0;
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px #b78727;
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px #b78727;
}

textarea.form-control {
    resize: none;
    height: 100px;
}

/* Start Buttons */
.button {
    border-radius: 4px;
    border-width: 3px;
    border-style: solid;
    cursor: pointer;
    display: inline-block;
    letter-spacing: 1px;
    margin-bottom: 10px;
    padding: 8px 12px;
    text-decoration: none;
    text-transform: uppercase;
    text-align: center;
}

.button:hover, .button:focus {
    text-decoration: none;
}

.button.cta-alt {
    background-color: #ffffff;
    border-color: #ffffff;
    color: #947C00;
}

.button.default,
.button.cta,
.button.cta-alt:hover {
    background-color: #947C00;
    border-color: #947C00;
    color: #ffffff !important;
}

.button.default:hover,
.button.cta:hover {
    background-color: #ffffff;
    color: #947C00 !important;
}

.button.cta:hover {
    border-color: #947C00;
}

.button + .button {
    margin-left: 15px;
}

/* End Buttons */
.divider {
    background-color: #947C00;
    margin: 20px 0 25px;
    max-width: 250px;
    height: 6px;
}

/* Layout */
#wrapper {
    min-height: 100%;
    margin-bottom: -40px;
}

#wrapper:after {
    content: "";
    display: block;
    height: 40px;
}

/* Start Header */
#header {
    background: #f7f7f7;
    padding: 10px 0;
}

.logo {
    display: inline-block;
}

.logo img {
    max-height: 100px;
}

.loginlogo img {
    max-width: 50%;
}

.form-img {
    border-radius: 5px;
}

.nav {
    font-size: 14px;
    font-weight: 300;
    float: right;
}

.nav > ul {
    margin: 0;
    padding: 0;
}

.nav > ul > li {
    display: inline-block;
}

.nav > ul > li > a {
    border-bottom: 3px solid transparent;
    cursor: pointer;
    color: #242424;
    display: block;
    line-height: 1;
    letter-spacing: 0.5px;
    padding: 4px 5px;
    text-transform: uppercase;
    text-decoration: none;
    text-decoration: none;
}

.nav > ul > li:hover > a {
    border-bottom-color: #947C00;
    color: rgba(36, 36, 36, 0.7);
}

.nav > ul > li.active > a {
    border: 3px solid #947C00;
    border-radius: 4px;
    color: #947C00 !important;
    padding: 10px;
}

.nav > ul > li.active:hover > a {
    background-color: #947C00;
    color: #ffffff !important;
}

.hamburger-menu {
    background: none;
    border: none;
    width: 30px;
    height: 25px;
    position: relative;
    float: right;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: .5s ease-in-out;
    -moz-transition: .5s ease-in-out;
    -o-transition: .5s ease-in-out;
    transition: .5s ease-in-out;
    cursor: pointer;
    display: block;
    margin-top: 5px;
    outline: none;
}

.hamburger-menu span {
    display: block;
    position: absolute;
    height: 5px;
    width: 100%;
    background: #947C00;
    border-radius: 9px;
    opacity: 1;
    left: 0;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: .25s ease-in-out;
    -moz-transition: .25s ease-in-out;
    -o-transition: .25s ease-in-out;
    transition: .25s ease-in-out;
}

.hamburger-menu span:first-child {
    top: 0px;
}

.hamburger-menu span:nth-child(2) {
    top: 10px;
}

.hamburger-menu span:last-child {
    top: 20px;
}

.hamburger-menu.active {
    position: fixed;
    right: 10px;
    top: 5px;
    z-index: 992;
}

.hamburger-menu.active span:first-child {
    top: 10px;
    -webkit-transform: rotate(135deg);
    -moz-transform: rotate(135deg);
    -o-transform: rotate(135deg);
    transform: rotate(135deg);
}

.hamburger-menu.active span:nth-child(2) {
    opacity: 0;
    left: -50px;
}

.hamburger-menu.active span:last-child {
    top: 10px;
    -webkit-transform: rotate(-135deg);
    -moz-transform: rotate(-135deg);
    -o-transform: rotate(-135deg);
    transform: rotate(-135deg);
}

/* End Header */
/* Start Breadcrumbs */
.breadcrumb-wrapper {
    background: #947C00;
    box-shadow: inset 1px 1px 3px rgba(0, 0, 0, 0.3);
    padding: 10px 0;
}

.breadcrumbs {
    font-size: 14px;
}

.breadcrumbs ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.breadcrumbs ul li {
    float: left;
}

.breadcrumbs ul li + li {
    margin-left: 5px;
}

.breadcrumbs ul li + li:before {
    content: '>';
    color: #f1f1f1;
    display: block;
    float: left;
    margin-right: 5px;
}

.breadcrumbs ul li a {
    color: #f1f1f1;
    text-decoration: none;
}

.breadcrumbs ul li:last-child a {
    color: #ffffff;
    pointer-events: none;
}

/* End Breadcrumbs */
/* Login */
.box {
    background-color: rgba(247, 247, 247, 0.7);
    border: 1px solid rgba(230, 230, 230, 0.7);
    border-radius: 4px;
    margin: 0 auto 20px;
    padding: 1em;
}

.box .divider {
    margin: 10px auto 30px;
}

/* Home */
.home-content {
    padding: 40px 0;
}

/* Start Footer */
#footer {
    background: #242424;
    color: rgba(255, 255, 255, 0.5);
    height: 40px;
    line-height: 40px;
    letter-spacing: 0.5px;
    padding: 0 10px;
    word-spacing: 1.5px;
    text-align: center;
    text-transform: uppercase;
}

#footer p {
    margin: 0;
    font-size: 0.8em;
}

/* End Footer */
/* Start Animations */
@-webkit-keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@-moz-keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.fade-in {
    opacity: 0;
    opacity: 1 \9;
    /*just in case ie*/
    -webkit-animation: fadeIn ease-in 1;
    -moz-animation: fadeIn ease-in 1;
    animation: fadeIn ease-in 1;
    -webkit-animation-fill-mode: forwards;
    -moz-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
    -webkit-animation-duration: 1s;
    -moz-animation-duration: 1s;
    animation-duration: 1s;
}

nav.main_menu.right {
    -webkit-animation-delay: 0.5s;
    -moz-animation-delay: 0.5s;
    animation-delay: 0.5s;
}

.fade-in.one {
    -webkit-animation-delay: 0.4s;
    -moz-animation-delay: 0.4s;
    animation-delay: 0.4s;
}

.fade-in.two {
    -webkit-animation-delay: 0.6s;
    -moz-animation-delay: 0.6s;
    animation-delay: 0.6s;
}

.fade-in.three {
    -webkit-animation-delay: 0.8s;
    -moz-animation-delay: 0.8s;
    animation-delay: 0.8s;
}

/* End Animations */
/* Media Queries */
@media only screen and (min-width: 1200px) {
    .hamburger-menu {
        display: none;
    }
}

@media only screen and (max-width: 1199px) {
    .nav {
        background: rgba(255, 255, 255, 0.8);
        box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.25);
        position: fixed;
        top: 0;
        right: -300px;
        width: 250px;
        height: 100%;
        margin: 0;
        -webkit-transition: all .3s ease-in-out;
        -moz-transition: all .3s ease-in-out;
        -o-transition: all .3s ease-in-out;
        transition: all .3s ease-in-out;
        z-index: 991;
        overflow: auto;
    }

    .nav:after {
        content: '';
        background: rgba(255, 255, 255, 0.7);
        position: fixed;
        left: 0;
        top: 0;
        height: 100%;
        width: 100%;
        opacity: 0;
        visibility: hidden;
        z-index: -1;
        -webkit-transition: all .3s ease-in-out;
        -moz-transition: all .3s ease-in-out;
        -o-transition: all .3s ease-in-out;
        transition: all .3s ease-in-out;
    }

    .nav > ul {
        margin-top: 56px;
    }

    .nav > ul > li {
        display: block;
    }

    .nav > ul > li > a,
    .nav > ul > li.active > a,
    .nav > ul > li.active:hover > a {
        border-bottom-color: #242424;
        padding: 12px 15px;
    }

    .nav > ul > li.active > a,
    .nav > ul > li.active:hover > a {
        background-color: #947C00;
        border-radius: 0;
        border-width: 0 0 3px;
        color: #ffffff;
    }

    .menu-open .nav {
        right: 0;
    }

    .menu-open .nav:after {
        visibility: visible;
        opacity: 1;
    }
}

@media only screen and (max-width: 991px) {
    h1 {
        font-size: 2.5em;
    }

    h2 {
        font-size: 2em;
    }

    h3 {
        font-size: 1.6em;
    }

    h4 {
        font-size: 1.2em;
    }
}

@media only screen and (max-width: 767px) {
    .button + .button {
        margin-left: 5px;
    }

    .nav {
        max-width: 220px;
    }

    .home-content {
        padding: 20px 0;
    }

    .home-content .banner-buttons .button {
        width: calc(50% - 7px);
        font-size: 12px;
        padding: 8px;
    }
}

@media only screen and (max-width: 420px) {
    #footer p {
        font-size: 0.7em;
    }
}

/*# sourceMappingURL=style.css.map */

/* The Modal (background) */
.col-xs-12 {
    position: relative;
    z-index: 0;
}

.modal {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 100; /* Sit on top */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgb(0, 0, 0); /* Fallback color */
    background-color: rgba(0, 0, 0, 0.4); /* Black w/ opacity */
}

/* Modal Content/Box */
.modal-content {
    background-color: #fefefe;
    margin: 5%; /* 5% from the top */
    padding: 10px;
    border: 1px solid #888;
    width: 50%; /* Could be more or less, depending on screen size */
    z-index: 100;
}

/* The Close Button */
.close {
    color: black;
    float: right;
    font-size: 2em;
    font-weight: bold;
}

.close:hover,
.close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}

@media only screen and (max-width: 767px) {
    .modal-content {
        width: 90%;
    }
}

/* END Modals */

