@charset "UTF-8";

html, body {
    height: 100%;
}

body {
    background-color: #FFFFFF !important;
    font-family: source-sans-3, sans-serif;
    font-weight: 400;
    width: 100%;
    overflow-x: hidden !important;
    position: relative;
}

main {
    min-height: 100%;
}

.container-fluid {
    overflow-x: hidden;
}

.container {
    max-width: 1300px !important;
}

img, object, embed, video {
    max-width: 100%;
}

.small-text {
    font-size: .8em;
}

/* IE 6 does not support max-width so default to width 100% */
.ie6 img {
    width: 100%;
}

img {
    border: none;
    outline: none;
}

hr {
    clear: both;
}

a:active {
    outline: none;
}

a:link, a:visited {
    color: #25292a;
    text-decoration: none;
}

a:hover, a:active {
    color: #836844;
}


/* Bounce Stuff */
.bounceit {
    margin-top: 50px;
    width: 100%;
    text-align: center;
    bottom: 0px;
    animation: bounce 1s infinite alternate;
    -webkit-animation: bounce 1s infinite alternate;
    position: absolute;
}

@keyframes bounce {
    from {
        transform: translateY(0px);
    }
    to {
        transform: translateY(-15px);
    }
}

@-webkit-keyframes bounce {
    from {
        transform: translateY(0px);
    }
    to {
        transform: translateY(-15px);
    }
}

/*Page Fade In*/
/* make keyframes that tell the start state and the end state of our object */
@-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;
    }
}

@media screen {
    body {
        opacity: 0; /* make things invisible upon start */
        -webkit-animation: fadeIn ease-in 1; /* call our keyframe named fadeIn, use animattion ease-in and repeat it only 1 time */
        -moz-animation: fadeIn ease-in 1;
        animation: fadeIn ease-in 1;

        -webkit-animation-fill-mode: forwards; /* this makes sure that after animation is done we remain at the last keyframe value (opacity: 1)*/
        -moz-animation-fill-mode: forwards;
        animation-fill-mode: forwards;

        -webkit-animation-duration: 1s;
        -moz-animation-duration: 1s;
        animation-duration: 1s;

        -webkit-animation-delay: 0.1s;
        -moz-animation-delay: 0.1s;
        animation-delay: 0.1s;
    }
}

/*Page Fade End*/

h1, h2, h3, h4, h5, h6 {
    color: #85714d;
    font-weight: 700;
    line-height: normal;
    font-family: Oswald, sans-serif;
}

h1 {
    font-size: 2.7em;
    margin-top: 0px;
    margin-right: 0px;
    margin-bottom: 10px;
    margin-left: 0px;
}

h2 {
    font-size: 2.2em;
    margin-top: 0px;
    margin-right: 0px;
    margin-bottom: 5px;
    margin-left: 0px;
    font-weight: bold;
}

h3 {
    font-size: 2em;
    margin-top: 0px;
    margin-right: 0px;
    margin-bottom: 5px;
    margin-left: 0px;
}

h4 {
    font-size: 1.7em;
    margin-top: 0px;
    margin-right: 0px;
    margin-bottom: 5px;
    margin-left: 0px;
}

h5 {
    font-size: 1.4em;
    margin-top: 0px;
    margin-right: 0px;
    margin-bottom: 5px;
    margin-left: 0px;
}

h6 {
    font-size: 1.1em;
    color: #8B8C8D;
    margin-top: 0px;
    margin-right: 0px;
    margin-bottom: 5px;
    margin-left: 0px;
}

.home-text {

    font-size: 1.2em;
    line-height: 1.2em;
    padding-left: 40px;
    padding-right: 40px;
}

.home-text p {
    margin-top: 30px;
}

.footer-bg {
    background-color: #25292a;
}

footer {
    position: relative;
    height: 150px;
    clear: both;
}

footer .list-group-item.active, footer .list-group-item {
    padding: 0.2rem 1.25rem;
    background: none;
    border: none;
    color: #FFFFFF;
}

footer .list-group-item a {
    color: #FFFFFF;
}

footer .list-group-item a:hover {
    color: #a1bdac;
}

@-webkit-keyframes move {
    0% {
        -webkit-transform-origin: bottom right;
        -moz-transform-origin: bottom left;
        -ms-transform-origin: bottom left;
        -o-transform-origin: bottom left;
        transform-origin: bottom left;
        transform: scale(1.0);
        -ms-transform: scale(1.0);
        /* IE 9 */

        -webkit-transform: scale(1.0);
        /* Safari and Chrome */

        -o-transform: scale(1.0);
        /* Opera */

        -moz-transform: scale(1.0);
        /* Firefox */
    }
    100% {
        transform: scale(1.2);
        -ms-transform: scale(1.2);
        /* IE 9 */

        -webkit-transform: scale(1.2);
        /* Safari and Chrome */

        -o-transform: scale(1.2);
        /* Opera */

        -moz-transform: scale(1.2);
        /* Firefox */
    }
}

/*
    X-Small devices (portrait phones, less than 576px)
    No media query for `xs` since this is the default in Bootstrap
*/

/* Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) {

}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) {
    .home-text {
        font-size: 1.6em;
        line-height: 1.6em;
        padding-left: 0;
        padding-right: 0;
    }
}

/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) {
}

/* X-Large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
}

/* XX-Large devices (larger desktops, 1400px and up) */
@media (min-width: 1400px) {

}