/*

16px = 1rem
18px = 1.125rem
20px = 1.25rem
22px = 1.375rem
24px = 1.5rem
26px = 1.625rem
28px = 1.75rem
30px = 1.875rem
32px = 2rem

sm (small devices)
@media (max-width: 991px) {}
@media (min-width: 576px) {}

md (medium devices)
@media (max-width: 991px) {}
@media (min-width: 768px) {}

lg (large devices)
@media (max-width: 991px) {}
@media (min-width: 992px) {}

xl (extra large devices)
@media (max-width: 1199px) {}
@media (min-width: 1200px) {}

*/

.container {
    max-width: 1310px;
}

body {
    font-family: 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    font-weight: 300;
    font-style: normal;
    font-size: 1.2rem;
    line-height: 1.5;
    color: #666;
    background-color: #fff;
    /* vanweg fixed top */
    margin-top: 134px;
    transition: all ease-in 250ms;
}
strong{
    font-weight:600;
}
body.scroll {
    margin-top: 74px;
    transition: all ease-in 250ms;
}
@media (max-width: 1199px) {
    body {
        margin-top: 114px;
        transition: all ease-in 250ms;
    }
}
h1, h2, h3, h4, h5, h6 {
    margin-bottom: .5rem;
    font-family: inherit;
    font-weight: 700;
    line-height: 1.2;
    color: #666;
}
h1 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #e30613
}
h2 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: #e30613;
}
h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: #e30613;
}
h4 {font-size: 1.25rem;}
h5 {font-size: 1rem;}
h6 {font-size: 0.75rem;}

p {margin-bottom: 1.5rem;}

a {
    color: #e30613;
    text-decoration:none;
}
a:hover {
    color: #e30613;
    text-decoration: underline;
}

td.noWrap{
     white-space: nowrap;
}
td.maxWidth{
    width:100%;
}
td.valignMiddle{
    vertical-align:middle;
}

/* buttons */
.btn-primary {
    background-color: #e30613;
    border-color: #e30613;
}
.btn-primary:hover,
.btn-primary.active,
.btn-primary:focus {
    color: #e30613!important;
    background-color: #fff !important;
    border-color: #e30613 !important;
}

/* Bootstrap Extension - Partially Disable Class image-responsive */

#main .img-not-fluid {display: inline-block;}

/* Bootstrap Extension - Reset Content Image Sizes */

@media (max-width: 991px) {
    #main .img-fluid {width: auto !important; height: auto !important;}
}

/* Input */
input[type=checkbox] {
    vertical-align: top;
    margin-top: 6px;
}
input[type=radio] + label,
input[type=checkbox] + label {
    margin-left: 4px;
    margin-right: 10px;
    display: inline-block;
}
.required-field {
    display: none;
}
.inputErr {
    background-color: #ffe5e5;
}
table.inputErr,
span.inputErr {
    border-radius: 4px;
}
table.inputErr td,
span.inputErr {
    padding: 10px;
}

.btn.submit-loader {
    color: transparent;
    background: #fff url(/images/submit-loader.gif) center center no-repeat;
}

/* Header */
header {
    height: 400px;
    height: CALC(50vh - 134px);
}
/*body.home header {
    height: CALC(100vh - 134px);
}*/
header .top-wrapper {
    background-color: #fff;
    transition: all ease-in 250ms;
}
body.scroll header .top-wrapper {
    opacity: 0.95;
    transition: all ease-in 250ms;
}
#top {
    padding-top: 10px;
    color: #fff;
    font-size:1rem;
    transition: all ease-in 250ms;
}
body.scroll #top{
    margin-top:-40px;
    transition:all ease-in 250ms;
}
#top .info {
    color:#666;
    text-align:right;
    transition: all ease-in 250ms;
}
@media (max-width: 991px) {
    #top .info .email {
        display:none;
    }
}
#visual .info{
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
}
    #visual .info .payoff {
        font-size: 2rem;
        font-weight: bold;
        color: #fff;
        text-align: center;
        text-shadow: 2px 2px 4px #000;
    }
#visual .info .buttons{
    margin-top:10px;
    animation-delay:250ms;
}
#visual .info .buttons .btn {
    font-size: 1.2rem;
}
#visual .magazine {
    position: absolute;
    right: 20px;
    bottom: 20px;
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    animation-delay:1000ms;
}
#visual .magazine img{
    width:CALC(12vh);
    height:auto;
}
@media (max-width: 1199px) {
    #visual .magazine img {
        width: CALC(10vh);
        height: auto;
    }
}
@media (max-width: 991px) {
    #visual .magazine {
        display:none;
    }
}
#visual .magazine a {
    margin-left: 20px;
    transition: all ease-in 100ms;
}
#visual .magazine a:hover {
    -moz-transform: scale(1.1) rotate(-2deg);
    -webkit-transform: scale(1.1) rotate(-2deg);
    -o-transform: scale(1.1) rotate(-2deg);
    -ms-transform: scale(1.1) rotate(-2deg);
    transform: scale(1.1) rotate(-2deg);
    transition: all ease-in 100ms;
}

#visual .arrow{
    visibility:hidden
}
/*body.home #visual .arrow{
    visibility:visible
}*/
/*#visual .arrow {
    position: absolute;
    display: flex;
    width: 100%;
    bottom: 20px;
    font-size: 4rem;
    justify-content: center;
    animation-delay: 1000ms;
}*/
/*#visual .arrow a {
    color: #fff;
    opacity: 0.8;
    transition: all ease-in 250ms;
}*/
/*#visual .arrow a:hover {
    font-size: 5rem;
    opacity: 1;
    transition: all ease-in 250ms;
}*/

/* Nav */
nav {
    /*position:relative;*/
}

#nav .logo-sub {
    position: absolute;
    left: -10px;
    bottom: -34px;
    width: 284px;
    padding: 0 10px 0 10px;
    background-color: #fff;
    opacity: 1;
    transition: all ease-in 250ms;
}
@media (max-width: 1199px) {
    #nav .logo-sub {
        width: 200px;
    }
}
body.scroll #nav .logo-sub {
    left: -1000px;
    opacity: 0;
    transition: all ease-in 250ms;
}
#nav .logo-sub img {
    height: 8.6px;
    opacity:1;
    transition: all ease-in 250ms;
}
@media (max-width: 1199px) {
    #nav .logo-sub img {
        height: 6.5px;
    }
}

body.scroll #nav .logo-sub img {
    opacity: 0;
    transition: all ease-in 250ms;
}

#visual{
    height:100%;
}

/* crumb */
#crumb{
    margin-top:10px;
    padding-bottom:10px;
    border-bottom:1px solid #ccc;
}

/* Content */
main{
    margin-top:40px;
}
/*body.home main{
    margin-top:40px;
}*/

/* Media */
.item {
    margin-bottom: 30px;
    transition: all 200ms ease-in;
}
.item.animation {
    margin-top: 50px;
    opacity: 0.25;
}
.item.animation.in-view {
    margin-top: 0;
    opacity: 1;
    transition: all 200ms ease-in;
}
.item:hover {
    transform: scale(1.05);
    transition: all 200ms ease-in;
}
.item-wrapper{
    position:relative;
    border: 1px solid #ccc;
    height:100%;
    margin-bottom:24px;
}
.item-content{
    padding:0 15px 15px 15px;
}
.item .date {
    padding:10px;
    background-color: #e30613;
    color:#fff;
    text-align:right;
}
.item .date img.logo{
    height:20px;
    float:left;
    border:none;
}
.item h4{
    margin-top:15px;
}
#panel ambassadeur .item h4{
    font-size:1rem;
}
.item .link{
    position:absolute;
    left:15px;
    bottom:15px;
}
a.item:hover{
    text-decoration:none;
}

/* columns */
.column {
}
.column .column-wrapper {
    background-color: #666;
    padding: 30px 20px 10px 20px;
}
.column .column-wrapper2 {
    background-color:rgb(13, 115, 206);
    padding: 30px 20px 10px 20px;
}
.column h4{
    font-size:1rem;
    color:#fff;
    text-align:center;
}
    .column h5 {
        font-size: 1rem;
        font-weight:normal;
        color: #fff;
        text-align: center;
        margin-bottom: 1rem;
        padding-bottom: 1rem;
        border-bottom: 1px solid #fff;
    }
    .column .item img {
        transition: all 200ms ease-in;
        /*padding: 0 40px 0 40px;*/
        padding: 0 80px 0 80px;
    }
.column .item:hover img {
    transform: scale(1.05);
    transition: all 200ms ease-in;
}
.column .item:hover h4 {
    color: #ccc;
}
.column .item:hover h5 {
    color: #ccc;
}

/* slider */
#news .advertisement {
    display: flex;
}

/* Pagination */
.pagination .page-item .page-link {
    border-color: #ccc;
    color: #000;
}
.pagination .page-item .page-link:hover {
    background-color: #e30613;
    color: #fff;
}
.pagination .page-item.disabled .page-link {
    color: #ccc;
}
.pagination .page-item.active .page-link {
    background-color: #e30613;
    color: #fff;
}

/* banner */
#banner{
    text-align:center;
}
#banner h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    text-align:left;
}
#banner a{
    display:block;
    margin-bottom:40px;
}

/* banner2 */
#banner2 {
    display: flex;
    flex-wrap: wrap;
}
#banner2 a {
    margin: 20px;
    width: 190px;
    height: 75px;
    text-align: center;
    transition: all 200ms ease-in;
}
#banner2 a:hover {
    -moz-transform: scale(1.1);
    -webkit-transform: scale(1.1);
    -o-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
}
#banner2 a img {
    width: auto;
    height: auto;
    max-width: 190px;
    max-height: 75px;
}


/* panel */
.fancybox-slide--html .fancybox-content {
    max-width: 1280px;
    max-height: 90%;
}

/* newsletter */
#newsletter {
    margin-top: 40px;
    padding: 40px;
    color: #313131;
    background-color: #c7c7c7;
}
#newsletter h3 {
    color: #313131;
    margin-top:10px;
}

/* Footer */
footer {
    padding-top: 20px;
    padding-bottom: 20px;
    background-color: #4f4f4f;
    color: #fff;
}
@media (max-width: 991px) {
    footer {
        padding-bottom: 70px;
    }
}
footer h3{
    color:#fff;
}
footer .links a{
    display:block;
    color:#fff;
}
footer .links a:hover{
    color: #fff;
    text-decoration:underline;
}
footer .contact a{
    color:#fff;
}
footer .contact a:hover {
    color: #fff;
    text-decoration: underline;
}
footer .social a{
    color:#fff;
    font-size:2rem;
    margin-right:8px;
}
footer .social a:hover {
    color: #fff;
    text-decoration: underline;
}

footer #colofon{
    margin-top:20px;
    padding-top:20px;
    border-top:#ccc 1px solid;
    font-size:0.8rem;
}
footer #colofon a{
    color:#fff;
}
footer #colofon a:hover {
    text-decoration:underline;
}

/* separator */
.separator {
    position: relative;
    border-top: 1px solid #ccc;
    margin-top:40px;
    margin-bottom:20px;
}
.separator img{
    position:absolute;
    left:CALC(50% - 24px);
    top:-9px;
}

/* Loader */
#loader {
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background: url('/images/ajax-loader.gif') center center no-repeat rgba(255,255,255,0.9);
}

/* Cookie Alert */
#cookie-alert {
    position: fixed;
    bottom: 0;
    width: 100%;
    height: auto;
    border-top: 1px solid #ccc;
    padding: 20px;
    padding-bottom:70px;
    z-index: 99999;
    background-color: #e30613;
    color: #fff;
    text-align: center;
}
#cookie-alert a {
    color: #fff;
    text-decoration:underline;
}
#cookie-alert a:hover {
    color: #fff;
    text-decoration: none;
}

.slide-in-right {
    -webkit-animation: slide-in-right 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
    animation: slide-in-right 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
}
/* ----------------------------------------------
 * Generated by Animista on 2021-3-25 15:37:21
 * Licensed under FreeBSD License.
 * See http://animista.net/license for more info. 
 * w: http://animista.net, t: @cssanimista
 * ---------------------------------------------- */

/**
 * ----------------------------------------
 * animation slide-in-right
 * ----------------------------------------
 */
@-webkit-keyframes slide-in-right {
    0% {
        -webkit-transform: translateX(1000px);
        transform: translateX(1000px);
        opacity: 0;
    }

    100% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slide-in-right {
    0% {
        -webkit-transform: translateX(1000px);
        transform: translateX(1000px);
        opacity: 0;
    }

    100% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
        opacity: 1;
    }
}

.slide-in-elliptic-top-fwd {
    -webkit-animation: slide-in-elliptic-top-fwd 0.7s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
    animation: slide-in-elliptic-top-fwd 0.7s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
}
/* ----------------------------------------------
 * Generated by Animista on 2021-3-19 12:49:57
 * Licensed under FreeBSD License.
 * See http://animista.net/license for more info. 
 * w: http://animista.net, t: @cssanimista
 * ---------------------------------------------- */

/**
 * ----------------------------------------
 * animation slide-in-elliptic-top-fwd
 * ----------------------------------------
 */
@-webkit-keyframes slide-in-elliptic-top-fwd {
    0% {
        -webkit-transform: translateY(-600px) rotateX(-30deg) scale(0);
        transform: translateY(-600px) rotateX(-30deg) scale(0);
        -webkit-transform-origin: 50% 100%;
        transform-origin: 50% 100%;
        opacity: 0;
    }

    100% {
        -webkit-transform: translateY(0) rotateX(0) scale(1);
        transform: translateY(0) rotateX(0) scale(1);
        -webkit-transform-origin: 50% 1400px;
        transform-origin: 50% 1400px;
        opacity: 1;
    }
}

@keyframes slide-in-elliptic-top-fwd {
    0% {
        -webkit-transform: translateY(-600px) rotateX(-30deg) scale(0);
        transform: translateY(-600px) rotateX(-30deg) scale(0);
        -webkit-transform-origin: 50% 100%;
        transform-origin: 50% 100%;
        opacity: 0;
    }

    100% {
        -webkit-transform: translateY(0) rotateX(0) scale(1);
        transform: translateY(0) rotateX(0) scale(1);
        -webkit-transform-origin: 50% 1400px;
        transform-origin: 50% 1400px;
        opacity: 1;
    }
}

.slide-in-blurred-bottom {
    -webkit-animation: slide-in-blurred-bottom 0.6s cubic-bezier(0.230, 1.000, 0.320, 1.000) both;
    animation: slide-in-blurred-bottom 0.6s cubic-bezier(0.230, 1.000, 0.320, 1.000) both;
}
/* ----------------------------------------------
 * Generated by Animista on 2021-3-19 13:11:24
 * Licensed under FreeBSD License.
 * See http://animista.net/license for more info. 
 * w: http://animista.net, t: @cssanimista
 * ---------------------------------------------- */

/**
 * ----------------------------------------
 * animation slide-in-blurred-bottom
 * ----------------------------------------
 */
@-webkit-keyframes slide-in-blurred-bottom {
    0% {
        -webkit-transform: translateY(1000px) scaleY(2.5) scaleX(0.2);
        transform: translateY(1000px) scaleY(2.5) scaleX(0.2);
        -webkit-transform-origin: 50% 100%;
        transform-origin: 50% 100%;
        -webkit-filter: blur(40px);
        filter: blur(40px);
        opacity: 0;
    }

    100% {
        -webkit-transform: translateY(0) scaleY(1) scaleX(1);
        transform: translateY(0) scaleY(1) scaleX(1);
        -webkit-transform-origin: 50% 50%;
        transform-origin: 50% 50%;
        -webkit-filter: blur(0);
        filter: blur(0);
        opacity: 1;
    }
}

@keyframes slide-in-blurred-bottom {
    0% {
        -webkit-transform: translateY(1000px) scaleY(2.5) scaleX(0.2);
        transform: translateY(1000px) scaleY(2.5) scaleX(0.2);
        -webkit-transform-origin: 50% 100%;
        transform-origin: 50% 100%;
        -webkit-filter: blur(40px);
        filter: blur(40px);
        opacity: 0;
    }

    100% {
        -webkit-transform: translateY(0) scaleY(1) scaleX(1);
        transform: translateY(0) scaleY(1) scaleX(1);
        -webkit-transform-origin: 50% 50%;
        transform-origin: 50% 50%;
        -webkit-filter: blur(0);
        filter: blur(0);
        opacity: 1;
    }
}

