* {
    font-family: "Montserrat", sans-serif;
}

body {
    /*background-color: #2F4B26;*/
}

p {
    font-size: 18px;
    font-family: "Montserrat", sans-serif;
}

h1,h2,h3,h4,h5,h6 {
    font-weight: 700;
}

h2 {
    font-weight: 700;
    font-size: 38px;
}

h3 {
    font-size: 24px;
}

ul {
    font-size: 18px;
}

@media only screen and (max-width: 600px) {

    h1 {
        font-size: 42px;
    }

    p {
        font-size: 18px;
    }

}

div.container {
    max-width: 1500px;
    width: 90%;
    margin: 0 auto;
}

div.floatLeft {
    float: left;
}

div.floatRight {
    float: right;
}

div.clearBoth {
    clear: both;
}

div.flexRow {
    display: flex;
}

@media only screen and (max-width: 736px) {
    .valign-wrapper {
        display: unset;
    }
}

nav {
    background-color: #000;
}

nav div.container {
    padding-top: 0;
}

nav div.container h4 {
    margin: 0;
    padding: 13px 0;
}

.btn.primary {
    background-color: #fff;
    color: #000;
    padding: 24px;
    line-height: 0;
    border-radius: 5px;
}

.btn.secondary {
    background-color: unset;
    border: 2px solid #fff;
    padding: 22px;
    line-height: 0;
    border-radius: 5px;
}

.btn.green {
    background-color: unset !important;
    border: 2px solid #2F4B26;
    color: #2F4B26;
}

.card {
    box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.2);
}

.card .card-title {
    font-family: "Montserrat", sans-serif;
    font-weight: 600;
    font-size: 24px;
}

.card .card-content p {
    font-size: 16px;
}

header {
    background-color: rgba(0,0,0,0.6);
    color: #fff;
    padding: 150px 0;
    text-align: center;
    height: 80vh;
    position: relative;
    overflow: hidden;
}

header h1 {
    margin: 0;
    font-size: 48px;
}

header p {
    max-width: 600px;
    margin: 25px auto;
    font-size: 20px;
}

header div.callToAction {
    margin: 50px 0 0 0;
}

header video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    object-fit: cover;
    object-position: center;
    filter: blur(3px);
}

@media only screen and (max-width: 600px) {

    header {
        padding: 80px 0;
    }

    header h1 {
        font-size: 42px;
    }

    header p {
        font-size: 18px;
    }

}

section#intro {

}

section#intro div.container {
    padding: 50px 0;
}

section#intro h2 {
    margin: 0;
}

section#routes {
    /*margin: 50px 0;*/
}

section#routes div.card {
    height: 100%;
}

section#routes div.card div.card-image {
    position: relative;
}

section#routes div.card div.card-image span.caption {
    position: absolute;
    bottom: 0;
    left: 0;
    background-color: #fff;
    padding: 15px 15px 15px 25px;
    border-top-right-radius: 10px;
}

section#routes div.card div.card-image span.caption span.price {
    font-size: 18px;
    font-weight: 600;
    padding-left: 3px;
}

section#routes div.card div.card-content {
    padding: 24px 24px 0 24px;
}

section#routes div.card div.card-content p {
    min-height: 100px;
}

section#routes div.card div.card-content a.btn {
    margin: 15px 0 0 0;
}

section#routes div.card div.card-content span.distance {
    float: right;
    line-height: 80px;
    opacity: 0.4;
}

@media only screen and (max-width: 992px) {

    section#routes div.flexRow {
        display: unset;
    }

    section#routes div.card {
        height: unset;
    }

    section#routes div.card div.card-content {
        padding: 24px;
    }

}

section#cta {
    position: relative;
    background: url(/assets/custom/images/kerkburg.jpg);
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    color: #fff;
    margin: 50px 0;
    padding: 50px 0;
}

section#cta:after {
    content: '';
    background: radial-gradient(circle, rgba(0, 0, 0, 0) 60%, rgba(0, 0, 0, 0.3) 100%), rgba(0,0,0,0.95);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

section#cta div.container {
    position: relative;
    z-index: 1;
}

section#cta div.card,
section#form div.card {
    color: #000;
    padding: 15px 25px;
    border-radius: 25px;
}

section#cta div.card div.input-wrapper,
section#form div.card div.input-wrapper {
    margin: 15px 0;
}

section#cta div.card div.input-wrapper:last-child {
    text-align: center;
}

section#cta div.card div.input-wrapper input.btn.primary.black {
    color: #fff;
    text-align: center;
    margin: 0 auto;
    width: 100%;
    max-width: 250px;
}

@media only screen and (max-width: 600px) {

    section#cta div.card div.input-wrapper input.btn.primary.black {
        width: 100%;
        max-width: unset;
    }

}

section#gear {
    margin: 100px 0;
}

section#gear img {
    width: 90%;
    float: left;
    height: auto;
    border-top-right-radius: 50px;
    border-bottom-left-radius: 50px;
}

section#stats {
    margin: 100px 0;
}

section#stats img {
    margin-top: 50px;
    border-top-left-radius: 50px;
    border-bottom-right-radius: 50px;
    width: 90%;
    float: right;
}

@media only screen and (max-width: 736px) {

    section#stats div.floatLeft,
    section#stats div.floatRight {
        float: unset;
    }

    section#stats img {
        float: unset;
        margin: 0 auto;
    }

}

footer {
    padding: 50px 0;
}

footer span {
    font-weight: 600;
}

footer span.copyright {
    line-height: 30px;
}

footer div.socials span{
    margin-right: 5px;
}

footer a {
    color: #000;
}

footer div.socials a i {
    font-size: 22px;
    margin: 0 5px;
    color: #000;
}

footer div.divider {
    margin-top: 15px;
}

@media only screen and (max-width: 600px) {

    footer span.copyright,
    footer div.socials {
        display: block;
        width: 100%;
    }

}