@import url('https://fonts.googleapis.com/css?family=Average+Sans|Open+Sans');
html, body{
    height: 100%;
}
html, body, p{
    font-family: 'Open Sans', sans-serif;
    font-size: 17px;
}
h1, h2, h3, h4 {
    font-family: 'Average Sans', sans-serif;
    margin: 1em 0em;
}
main{
    min-height: 100%;
    margin-bottom: -104px; 
}
.wrapper:after {
  content: "";
  display: block;
}
footer {
    color: #333;
    width: 100%;
    bottom: 0;
    left: 0;
    margin-bottom: 0px;
    padding-bottom: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #e2e2e2;
}
footer, .wrapper:after {
  /* .push must be the same height as footer */
    height: 104px; 
}
.nav > li > a {
    padding: 15px 20px;
}
.container-fluid {
    padding-right: 30px;
    padding-left: 30px;
}
.row {
    padding-top: 15px;
    padding-bottom: 15px;
}
.section {
    margin-top: 50px;
    padding-top: 30px;
    padding-bottom: 30px;
}
.navbar-default {
    background-color: #191D1D;
    box-shadow: 0 1px 5px rgba(12,13,14,0.15),0 0 0 transparent,0 0 0 transparent,0 0 0 transparent;
    border: none;
}
.navbar-default .navbar-nav > .active > a,
.navbar-default .navbar-nav > .open > a,
.navbar-default .navbar-nav > .open > a:hover,
.navbar-default .navbar-nav > .open > a:focus,
.navbar-default .navbar-nav > .active > a:focus,
.navbar-default .navbar-nav > .active > a:hover {
    background-color: #191D1D;
    color: #fff;
}
.bg-alt {
    background-color: #191D1D;
    color: #fff;
}
.item .img-thumbnail {
    border: none;
}
.img-thumbnail {
    position: relative;
    padding: 0;
    border: none;
    border-radius: 0;
    -moz-box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);
    -webkit-box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);
    box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);
    width:  100%;
    background-position: 50% 50%;
    background-repeat:   no-repeat;
    background-size:     cover;
}
.navbar-default .navbar-nav > li > a {
    font-size: 20px;
    color: #fff;
    display: inline-block;
    vertical-align: middle;
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    box-shadow: 0 0 1px transparent;
    position: relative;
    overflow: hidden;
}
.navbar-default .navbar-nav > li > a:hover {
    color: #fff;
}
.navbar-default .navbar-nav > li > a:before {
    content: "";
    position: absolute;
    z-index: -1;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    border-color: #fff;
    border-style: solid;
    border-width: 0;
    -webkit-transition-property: border-width;
    transition-property: border-width;
    -webkit-transition-duration: 0.1s;
    transition-duration: 0.1s;
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
}
.navbar-default .navbar-nav > li > a:hover:before,
.navbar-default .navbar-nav > li > a:focus:before,
.navbar-default .navbar-nav > li.active > a:before,
.navbar-default .navbar-nav > li.active > a {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    border-width: 4px;
    color: #fff;
}
.dropdown-menu > .active > a,
.dropdown-menu > .active > a:focus,
.dropdown-menu > .active > a:hover {
    background-color: #191D1D;
    color: #fff;
    text-decoration: none;
    outline: 0;
}
.slideanim {visibility:hidden;}
.slideup {
    animation-name: slide;
    -webkit-animation-name: slide;
    animation-duration: 1s;
    -webkit-animation-duration: 1s;
    visibility: visible;
}
.section-img {
    width: 320px;
    height: 300px;
}
@media (max-width:988px) {
	.section-img {
        width: 250px;
        height: 230px;
    }
}
@keyframes slide {
    0% {
        opacity: 0;
        transform: translateY(70%);
    }
    100% {
        opacity: 1;
        transform: translateY(0%);
    }
}
@-webkit-keyframes slide {
    0% {
        opacity: 0;
        -webkit-transform: translateY(70%);
    }
    100% {
        opacity: 1;
        -webkit-transform: translateY(0%);
    }
}