html, body {
    max-widt: 1920px;
    margin: 0 auto;
}

img {
    max-width: 100%;
}

h1, h2, h3, h4 {
    color: #637DBB; //#7163bb; //#D2896D;
    margin: 35px auto;
}

.below-55 {
    margin-top: 55px;
}

.below-105 {
    margin-top: 105px;
}

.silverbg {
    background: silver;
}

a, a:hover, a:active, a:visited, h2, .green {
color: #5f623e;
}

#jumbotron {
    min-height: 100vh;
    max-height: 100vh;
    background: url('../img/jumbobg.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: bottom center;
}

@media screen and (max-width: 768px) {
    #jumbotron {
        background: url('../img/jumbobg-mob.jpg');
    }
}

#jumbotron img {
    width: 100%;
    height: auto;
    margin: 0 auto;
}

.anchor {
    margin-top: -65px;
    padding-top: 65px;
}

.slide {
    animation-name: slide;
    -webkit-animation-name: slide;
    animation-duration: 1s;
    -webkit-animation-duration: 1s;
    visibility: visible;
}

.slideanim {
    visibility: hidden;
}

@keyframes slide {
    0% {
        opacity: 0;
        transform: translateY(70%);
    }
    100% {
        opacity: 1;
        transform: translateY(0%);
    }
}
