@-webkit-keyframes pop-in {
    0% {
        opacity: 0;
        -webkit-transform: scale(0.5);
    }
    100% {
        opacity: 1;
        -webkit-transform: scale(1);
    }
}

@-moz-keyframes pop-in {
    0% {
        opacity: 0;
        -moz-transform: scale(0.5);
    }
    100% {
        opacity: 1;
        -moz-transform: scale(1);
    }
}

@keyframes pop-in {
    0% {
        opacity: 0;
        transform: scale(0.5);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

@font-face {
    font-family: KGRedHands;
    src: url(../assets/fonts/KGRedHands.ttf);
}

html {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}

body {
    margin: 0;
}

.main-small {
    max-width: 1140px;
    margin: 0 auto;
    padding: 24px;
    display: block;
    z-index: 10;
}

.header {
    width: 100%;
    display: block;

}

.slick-next, .slick-previous, .slick-arrow {
    display: none !important;
}

.slider {

}

.slider:after {
    /*content: " ";
    width: 100%;
    bottom: 0;
    position: absolute;
    height: 150px;
    background: -webkit-linear-gradient(
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 1) 100%
    );
    background-image: -webkit-gradient(
        linear,
        left top, left bottom,
        from(rgba(255, 255, 255, 0)),
        to(rgba(255, 255, 255, 1))
    );
    background-image: linear-gradient(
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 1) 100%
    );
    background-image: -ms-linear-gradient(
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 1) 100%
    );*/
}

.slider-item {
    height: 125px;
    max-height: 500px;
    width: 100%;
    /*
        background: #297bab;
        background: -moz-linear-gradient(left, #297bab 0%, #ffffff 5%, #ffffff 95%, #297bab 100%);
        background: -webkit-linear-gradient(left, #297bab 0%,#ffffff 5%,#ffffff 95%,#297bab 100%);
        background: linear-gradient(to right, #297bab 0%,#ffffff 5%,#ffffff 95%,#297bab 100%);
        filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#297bab', endColorstr='#297bab',GradientType=1 );*/
    display: block;
}

.slider-item img {
    opacity: 0.5;
    -webkit-filter: blur(3px);
    filter: blur(3px);
    min-width: 100%;
    -webkit-transform: translate(0, -25%);
    transform: translate(0, -25%);
    display: block;
}

.banner-title {
    z-index: 5;
    position: absolute;
    font-family: KGRedHands, sans-serif;
    display: block;
    /*top: calc(50% - 12px);*/
    top: 214px;
    width: 100%;
    bottom: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: middle;
    -ms-flex-align: middle;
    align-items: middle;
    /*text-align: center;*/
    font-size: 56px;
    height: 56px;
    color: #297bab;
    /*text-shadow: 0px 0px 15px rgba(0, 0, 0, 1);*/

}

.banner-title > span {
    text-shadow: 0 0 50px rgba(255, 255, 255, 1);
    display: inline-block;
    padding-left: 24px;
    padding-right: 24px;
}

.banner-title img {
    height: 72px;
}

.section--title {
    font-family: KGRedHands, sans-serif;
    color: #297bab;
    text-align: center;
    padding-bottom: 24px;
    font-weight: 300;

}

.section {
    padding: 60px 24px 120px;
    display: block;
    margin: 0;
}

.section--description {
    width: 60%;
    text-align: center;
    margin: auto;
    font-size: 18px;
    line-height: 150%;
}

.lazyload {
    display: none;
    height: 25px;
    width: 25px;
}

.section-inverse {
    background-color: #297bab !important;
    color: white;
    padding: 12px;
    text-align: center;

}

.section-inverse > h1 {
    color: white;
    font-weight: 300;
}

.table--openingsuren {
    display: flex;
    justify-content: space-around;
    margin-left: 0;
    padding-left: 0;
}

.table--openingsuren > li {
    width: 100%;
    list-style-type: none;
    border-right: 1px solid rgba(255, 255, 255, 0.51);
}

.table--openingsuren > li:last-of-type {
    border: none;
}

.table--openingsuren > li > h1 {
    font-family: KGRedHands, sans-serif;
    color: white;
    font-size: 16px;
    text-align: center;

}

.button-contact {
    cursor: pointer;
    font-family: KGRedHands, sans-serif;
    font-weight: 100;
    text-transform: uppercase;
    background-color: white;
    padding: 12px 32px;
    margin: 20px 0;
    color: #297bab;
    border: 1px solid white;
    -webkit-transition: background 0.25s, color 0.25s;
    -moz-transition: background 0.25s, color 0.25s;
    -ms-transition: background 0.25s, color 0.25s;
    -o-transition: background 0.25s, color 0.25s;
    transition: background 0.25s, color 0.25s;
}

.button-contact:hover {
    background-color: #297bab;
    color: white;
}

#map {
    width: 80% !important;
    height: 500px !important;
}

.section--contact {
    margin-bottom: 0 !important;
}

.sliderPictures .slick-slide img {

    margin: 1px !important;
}

.flex-row {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
}

.flex-row > div {
    width: 100%;
    text-align: left;
}

i {
    display: inline-block;
    margin-right: 6px;
}

.address {
    display: block;
    padding-bottom: 12px;
    text-align: center;
    font-size: 18px;
}

form {

}

.form-row {
    width: 100%;
    display: flex;
    justify-content: space-between;
    margin-bottom: 12px;
    align-items: center;
}

.form-row label {
    display: inline-block;
    width: 250px;

}

.form-row input, .form-row textarea {
    width: 100%;
}

.padding-24 {
    padding: 24px;
}

section:nth-of-type(odd) {
    background-color: rgba(41, 123, 171, 0.04);
}

input[type=submit] {
    float: right;

}

input[type=text], textarea {
    color: #297bab;
    padding: 6px;
    border: none;
    font: 100%/120% Arial, sans-serif;
    font-size: 14px !important;
    font-weight: 400;
}

.footer {
    background-color: #297bab;
    border-top: 1px solid rgba(255, 255, 255, 0.51);
    margin: 20px 24px 0 0;
    color: rgba(255, 255, 255, 0.51);
    padding-top: 12px;
    display: flex;
    width: 100%;
    justify-content: space-between;
}

.footer > span {
    display: block;
}
.footer a{

    color: rgba(255, 255, 255, 0.51) !important;
    text-decoration: none;
}
.footer a:hover{
    color: white;
}
.form-underline {
    display: block;
    padding-bottom: 12px;
    border-bottom: 1px solid #ffffff;
    margin-bottom: 25px;
    font-size: 18px;
    line-height: 150%;
}

.form-success {
    color: lime;
    display: block;
    padding: 5px;
    margin-bottom: 6px;
    border-radius: 2px;
    background-color: rgba(0, 0, 0, 0.59);

}
.address p{
    line-height: 100% !important;
}

.button-contact:disabled {
    opacity: 0.5;
    cursor: default;
}
@media only screen and (max-width: 780px) {
    .flex-row-contact{
        display: block;

    }
    #map{
        width: 100% !important;
        height: 250px !important;
    }
    .section--description{
        margin: 0;
        width: 100%;
        font-size: 16px !important;
    }
    .banner-title{
        font-size: 25px;
        top:115px;
    }
    .banner-title img{
        height: 34px;
    }
    .slider-item {
        height: 125px;
        max-height: 250px;
    }
    .address p{

        line-height: 100% !important;
    }
}
