/*

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: 575px) {}
@media (min-width: 576px) {}

md (medium devices)
@media (max-width: 767px) {}
@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) {}

xxl (extra extra large devices)
@media (max-width: 1399px) {}
@media (min-width: 1400px) {}
*/

.container {
    max-width: 1600px;
}

@font-face {
    font-family: 'HelveticaNeue-Extended';
    src: url('../fonts/HelveticaNeue-Extended.otf') format('opentype');
}

body {
    font-family: "HelveticaNeue-Extended", sans-serif;
    font-size: 1.1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #555;
    background-color: #fff;
}
h1, h2, h3, h4, h5, h6 {
    font-family: "HelveticaNeue-Extended", sans-serif;
    margin-bottom: 0.5rem;
    font-family: inherit;
    font-weight: 700;
    line-height: 1.2;
    color: #4169e1;
}
h1 {
    margin-bottom: 1.2rem;
    font-size: 2.5rem;
}
    h1:first-letter {
        color: #ff6200;
    }
h2 {
    font-size: 2rem;
    margin-bottom: 1.2rem;
}
h3 {font-size: 1.75rem;}
h4 {font-size: 1.5rem;}
h5 {font-size: 1rem;}
h6 {font-size: 1rem;}

@media (max-width: 767px) {
    h1 {
        font-size: 1.5rem;
    }
    h2 {
        font-size: 1.5rem;
    }
    h3 {
        font-size: 1.2rem;
    }
}

p {margin-bottom: 1.5rem;}
/*main #content p:last-of-type {
    margin-bottom: 0;
}*/
main ul {
    margin-bottom: 1.5rem;
    padding-left:1rem;
}

a {
    color: #ff6200;
    text-decoration: none;
}
a:hover {
    color: #4169e1;
    text-decoration: none;
}

td.noWrap {white-space: nowrap;}

td.maxWidth {width: 100%;}

td.valignMiddle {vertical-align: middle;}

/* buttons */
.btn-primary {
    background-color: #ff6200 !important;
    border: 2px solid #ff6200 !important;
    color: #fff !important;
}
    .btn-primary:hover, .btn-primary:active {
        background-color: #fff !important;
        color: #ff6200 !important;
        text-decoration: none !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;
    }
}

/* Small inline row-action controls (OneOnOne/Recommendations/Turnover's "Gezien"/"Niet gezien"
   toggle) - a <button> so it can submit the AJAX form, but styled to read as a plain link like
   the "Wijzigen"/"Info" links next to it, not a boxed <button>. */
.link-btn {
    display: inline-flex;
    align-items: center;
    border: none;
    background: none;
    padding: 0;
    color: #ff6200;
    cursor: pointer;
}
.link-btn:hover {
    color: #4169e1;
}
.link-btn:disabled,
.link-btn.disabled {
    color: #9a9a9a;
    cursor: default;
}

/* Input */
.required-field {display:none;}
.inputErr {background-color: #ffe5e5;}

/* Input */
input[type=checkbox] {
    vertical-align: top;
    margin-top: 6px;
}
input[type=radio] + label,
input[type=checkbox] + label {
    margin-left: 4px;
    margin-right: 10px;
    margin-bottom:0;
    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;
}

/* Header */
header {
    height: CALC(40vh);
}
body.home header {
    height: 60vh;
}
@media (max-width: 767px) {
    header {
        height: CALC(60vh);
    }
    body.home header {
        height: 100vh;
        max-height: -webkit-fill-available;
    }
}
header .vegas-content {
    height: 100%;
}

/* top */
#top {
    padding-top: 10px;
    padding-bottom: 10px;
    background-color: rgba(255,255,255,0.9);
    border-bottom: 1px solid;
    z-index: 9999;
}
#top .logo {
    padding-right:55px;
    height: 60px;
    transition: all ease-in 250ms;
}
body.scroll #top .logo{
    height:40px;
}
#top .contact {
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
}
@media (max-width: 1720px) {
    #top .contact {
        padding-right:80px;
    }
}
@media (max-width: 991px) {
    #top .contact {
        display: flex;
        align-items: flex-end;
        justify-content: flex-start;
        padding-right: 0;
    }
    /*#top .contact .content{
        display:none;
    }*/
}
#top .contact .fa-regular{
    font-size:1.2rem;
}
#visual .info {
    display:flex;
    flex-direction:column;
    justify-content: center;
    align-items: center;
    margin-top:80px;
}
@media (max-width: 767px) {
    #visual .info {
        margin-top: 122px;
    }
}
#visual .info h2.CTA-text {
    text-align: center;
    font-size: 3rem;
    color: #fff;
    text-shadow: 2px 2px 4px #000;
}
body.home #visual .info h2.CTA-text {
    font-size: 4rem;
}
@media (max-width: 767px) {
    #visual .info h2.CTA-text {
        font-size: 2rem;
    }
    body.home #visual .info h2.CTA-text {
        font-size: 2rem;
    }
}
#visual .info .CTA-button {
    margin-top: 20px;
    animation-delay: 500ms;
}
@media (max-width: 767px) {
    #visual .info .CTA-button {
        margin-top: 0;
    }
}
#visual .info .CTA-button .btn-primary {
    font-size: 1.5rem;
    -webkit-box-shadow: 1px 1px 1px 1px rgba(0,0,0,0.5);
}
body.home #visual .info .CTA-button .btn-primary {
    font-size: 2rem;
    -webkit-box-shadow: 1px 1px 1px 1px rgba(0,0,0,0.5);
}
@media (max-width: 767px) {
    #visual .info .CTA-button .btn-primary {
        font-size: 1.2rem;
    }
    body.home #visual .info .CTA-button .btn-primary {
        font-size: 1.2rem;
    }
}

/* NAV */
.nav-open {
    position: absolute;
    right: 15px;
    top: 5px;
    -webkit-filter: drop-shadow(2px 2px 2px RGBA(0,0,0, 0.8));
    filter: drop-shadow(2px 2px 2px RGBA(0,0,0, 0.8));
}
body.scroll .nav-open{
    top:-3px;
}
a.nav-open {
    color: #ff6200;
    font-size: 3rem;
    transition: all ease-in 250ms;
}
body.scroll a.nav-open {
    font-size: 2.5rem;
}
a.nav-open:hover {
    color: #4169e1;
}
body.scroll a.nav-open:hover {
}

.sidenav {
    position: absolute;
    left: 100vw;
    top: 0;
    padding-top: 80px;
    width: auto;
    height: 100%;
    position: fixed;
    z-index: 9999;
    top: 0;
    right: 0;
    background-color: #4169e1;
    overflow-x: hidden;
    transition: 0.5s;
}

.sidenav ul {
    list-style: none;
    padding-left: 0;
}
.sidenav li.nav-item{
    position:relative;
}
.sidenav a.nav-link {
    display: block;
    padding: 8px 8px 8px 30px;
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: 600;
    color: #fff;
    transition: 0.3s;
    white-space: nowrap;
}
.sidenav ul ul.sub-menu {
    margin-top:-10px;
    padding-left: 20px;
}
.sidenav ul ul.sub-menu li a {
    padding: 4px 4px 4px 30px;
    font-size: 1rem;
}
.sidenav a.nav-link:hover {
    color: #e7745a;
}
.sidenav a.nav-link.active {
    color: #e7745a;
}
.sidenav ul a.nav-link + ul.sub-menu {
    display: none;
}
.sidenav ul a.nav-link.active + ul.sub-menu {
    display: block;
}
.sidenav a.arrow {
    position: absolute;
    right: 0;
    top: 0;
    padding: 8px 10px 8px 8px;
    font-size: 1.5rem;
    font-weight: 600;
    color: #fff;
    transition: 0.3s;
    text-decoration: none;
}
.sidenav a.arrow:hover {
    color: #1b98cc;
}
.sidenav .nav-close {
    position: absolute;
    top: 5px;
    right: 10px;
    font-size: 3rem;
    color: #fff;
}
   
/* Content */
main {
    margin-top: 40px;
    margin-bottom:40px;
}
@media (max-width: 1600px){
    main {
        padding-left: 40px;
        padding-right: 40px;
    }
}
@media (max-width: 991px) {
    main {
        padding-left: 0;
        padding-right: 0;
    }
}
/* special */
.block {
    background-color: #293150;
    padding:15px;
    color: #fff;
}
.block h3{
    color:#fff;
}
.block p:last-of-type{
    margin-bottom:0;
}

/* panels */
main .animation .panel {
    margin-top: 50px;
    opacity: 0.25;
}
main .animation.in-view .panel {
    margin-top: 0;
    opacity: 1;
    transition: all 200ms ease-in;
}
main .panel-wrapper {
    margin-bottom: 30px;
}
main .panel-wrapper .panel {
    background-color: #1c3455;
}
main .panel {
    display: flex;
    flex-direction: column;
    flex: 1;
    height: 100%;
    padding-left: 15px;
    padding-right: 15px;
    padding-bottom: 15px;
    border: 1px solid #ccc;
    color: #fff;
    transition: all ease-in 250ms;
}
main .panel:hover {
    text-decoration: none;
    -moz-transform: scale(1.05);
    -webkit-transform: scale(1.05);
    -o-transform: scale(1.05);
    -ms-transform: scale(1.05);
    transform: scale(1.05);
    box-shadow: rgba(14, 30, 37, 0.12) 0px 2px 4px 0px, rgba(14, 30, 37, 0.32) 0px 2px 16px 0px;
}
main .panel-wrapper .panel:hover {
    background-color: #1b98cc;
}
main .panel h3{
    margin-bottom:1rem;
}
main .panel p:first-child {
    margin-left: -15px;
    margin-right: -15px;
}
main .panel h3 {
    color: #fff;
}

/* Parallax */
#parallax{
    margin-top:40px;
}
.parallax-container {
    position: relative;
    margin: 0;
    padding: 0;
    width: CALC(100vw - 8px);
    height: CALC(100vw / 5);
    left: calc((100vw - 100%) / -2);
}
@media (orientation:portrait) {
    .parallax-container {
        height: CALC(100vw / 3);
    }
}
.parallax-background {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
}
.parallax-background img {
    position:absolute;
    left:0;
    top:0;
    width:100%;
    min-width: 100%;
    min-height: 100%;
}
.parallax-content {
    display: flex;
    justify-content: center;
    align-items: center;
    z-index:999;
}
.parallax-content h2 {
    font-size: 3rem;
    line-height: 1.2;
    text-align: center;
    color: #fff;
    text-shadow: 2px 2px 4px #000;
}

/* form feedback*/
.feedback {
    display: none !important;
    position: absolute;
    left: 10%;
    top: -40px;
    border: 1px#ccc solid;
    background-color: #fff;
    display: inline-block;
    padding: 4px 10px 4px 10px;
    -webkit-filter: drop-shadow(0px 2px 2px rgba(130,130,130,1));
    filter: drop-shadow(0px 2px 2px rgba(130,130,130,1));
    -ms-filter: "progid:DXImageTransform.Microsoft.Dropshadow(OffX=0, OffY=2, Color='#444')";
    filter: "progid:DXImageTransform.Microsoft.Dropshadow(OffX=0, OffY=2, Color='#444')";
}
.feedback::after {
    background: url(../images/arrow-feedback.png) no-repeat;
    content: "";
    height: 10px;
    width: 20px;
    background-size: 20px 10px;
    position: absolute;
    left: 20px;
    bottom: -10px;
}
.feedback.show {
    display: block !important;
}

/* Media */
.item {
    margin-bottom: 30px;
    transition: all 200ms ease-in;
}
.item.animation .item-wrapper {
    margin-top: 50px;
    opacity: 0.25;
}
.item.animation.in-view .item-wrapper {
    margin-top: 0;
    opacity: 1;
    transition: all 200ms ease-in;
}
.item-wrapper {
    position: relative;
    border: 1px solid #ccc;
    height: 100%;
    margin-bottom: 24px;
    transition: all 200ms ease-in;
}
.item-wrapper:hover {
    transform: scale(1.05);
    box-shadow: rgba(14, 30, 37, 0.12) 0px 2px 4px 0px, rgba(14, 30, 37, 0.32) 0px 2px 16px 0px;
}
.item-content {
    padding: 0 15px 15px 15px;
}
.item .date {
    padding: 10px;
    background-color: RGBA(0,0,0, 0.8);
    font-weight: bold;
    color: #fff;
    text-align: right;
}
.item .date img.logo {
    height: 20px;
    float: left;
    border: none;
}
.item h4 {
    margin-top: 15px;
}
.item .link {
    position: absolute;
    left: 15px;
    bottom: 15px;
}
a.item:hover {
    text-decoration: none;
}

/* Content - Pagination */
.pagination .page-item .page-link {
    border-color: #ccc;
    color: #1b98cc;
    text-decoration: none;
}
.pagination .page-item .page-link:hover {
    background-color: #1b98cc;
    color: #fff;
}
.pagination .page-item.disabled .page-link {
    color: #ccc;
}
.pagination .page-item.active .page-link {
    background-color: #d01d30;
    color: #fff;
}

/* team */
.team {
    margin-bottom: 30px;
    height: CALC(100% - 30px) !important;
    background-color: #fff;
    border: 1px solid #d01d30;
    font-size:1rem;
    transition: all ease-in 250ms;
    padding-left:20px;
    padding-right:20px;
}
.team p:first-of-type {
    margin-bottom: 0;
    margin-left: -20px;
    margin-right: -20px;
}
.team h3 {
    margin-left: -20px;
    margin-right: -20px;
    margin-bottom:1.3rem;
    padding: 4px;
    background-color: #d01d30;
    color: #fff;
    transition: all ease-in 250ms;
}
.team:hover {
    box-shadow: rgba(14, 30, 37, 0.12) 0px 2px 4px 0px, rgba(14, 30, 37, 0.32) 0px 2px 16px 0px;
    transform: scale(1.05);
}
.team a.vcard img {
    width: 30%;
}

/* dashboard */
.dashboard-icon {
    position: relative;
    float: left;
    text-align: center;
    border: #ccc 1px solid;
    padding: 20px;
    margin-left: 15px;
    margin-right: 15px;
    margin-bottom: 30px;
    width: CALC(50% - 30px);
    -moz-transition: all 200ms ease-in;
    -ms-transition: all 200ms ease-in;
    -o-transition: all 200ms ease-in;
    transition: all 200ms ease-in;
}
.dashboard-icon .icon-icon {
    font-size: 4rem;
}
.dashboard-icon .icon-title {
    clear: left;
    margin-top: 10px;
}
@media (max-width: 991px) {
    .dashboard-icon .icon-title {
        font-size: 0.8rem;
    }
}
.dashboard-icon:hover {
    color: #9a1121;
    text-decoration: none;
    -moz-transform: scale(1.03);
    -webkit-transform: scale(1.03);
    -o-transform: scale(1.03);
    -ms-transform: scale(1.03);
    transform: scale(1.03);
    -webkit-transition: all 200ms ease-in;
    -moz-transition: all 200ms ease-in;
    -ms-transition: all 200ms ease-in;
    -o-transition: all 200ms ease-in;
    transition: all 200ms ease-in;
}
.dashboard-icon .icon-count {
    position: absolute;
    right: -10px;
    top: -10px;
    width: 30px;
    height: auto;
    font-size: 1.2rem;
    color: #fff;
    background-color: #f00;
    border-radius: 50%;
    /* -webkit-box-shadow: 1px 1px 1px 1px rgba(0,0,0,0.3);
    box-shadow: 1px 1px 1px 1px rgba(0,0,0,0.3);*/
    -webkit-transition: all 200ms ease-in;
    -moz-transition: all 200ms ease-in;
    -ms-transition: all 200ms ease-in;
    -o-transition: all 200ms ease-in;
    transition: all 200ms ease-in;
}
.dashboard-icon:hover .icon-count {
    -webkit-box-shadow: 2px 2px 1px 1px rgba(0,0,0,0.3);
    box-shadow: 2px 2px 1px 1px rgba(0,0,0,0.3);
    -moz-transform: scale(1.5) rotate(10deg);
    -webkit-transform: scale(1.5) rotate(10deg);
    -o-transform: scale(1.5) rotate(10deg);
    -ms-transform: scale(1.5) rotate(10deg);
    transform: scale(1.5) rotate(10deg);
    -webkit-transition: all 200ms ease-in;
    -moz-transition: all 200ms ease-in;
    -ms-transition: all 200ms ease-in;
    -o-transition: all 200ms ease-in;
    transition: all 200ms ease-in;
}

/* class for password */
.red {
    color: #f00;
}
.grey {
    color: #ccc;
}
.green {
    color: #a1c838;
}
span.input-group-text {
    height: calc(1.5em + .75rem + 2px);
    width: 42px;
}

/* tables */
@media (max-width: 767px) {
    .table-responsive {
        font-size: 1rem;
    }
    .table .fa-regular {
        font-size: 1.5rem;
    }
}

/* special */
.align-center {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Footer */
footer {
    padding: 40px 0 40px 0;
    background-color:RGBA(0,0,0, 0.8);
    color: #fff;
}
footer h3 {
    color: #fff;
}
footer a{
    color:#fff;
}
footer a:hover {
    color: #fff;
    text-decoration:underline;
}
footer .links a{
    display:block;
}

footer .icons{
    font-size:2rem;
}
footer .icons a{
    margin-left:5px;
}

/* Overlay */
#overlay {
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background: rgba(0,0,0,0.6);
    display:none;
}

/* 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;
    padding: 20px;
    width: 100%;
    background-color: #eee;
    text-align: center;
}
@media (max-width: 991px) {
    #cookie-alert{
        padding-bottom:50px;
    }
}

.fade-in-right {
    -webkit-animation: fade-in-right 0.6s cubic-bezier(0.390, 0.575, 0.565, 1.000) both;
    animation: fade-in-right 0.6s cubic-bezier(0.390, 0.575, 0.565, 1.000) both;
}
/* ----------------------------------------------
 * Generated by Animista on 2023-3-6 13:19:35
 * Licensed under FreeBSD License.
 * See http://animista.net/license for more info. 
 * w: http://animista.net, t: @cssanimista
 * ---------------------------------------------- */

/**
 * ----------------------------------------
 * animation fade-in-right
 * ----------------------------------------
 */
@-webkit-keyframes fade-in-right {
    0% {
        -webkit-transform: translateX(50px);
        transform: translateX(50px);
        opacity: 0;
    }

    100% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes fade-in-right {
    0% {
        -webkit-transform: translateX(50px);
        transform: translateX(50px);
        opacity: 0;
    }

    100% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
        opacity: 1;
    }
}

.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 2023-2-24 9:40:40
 * 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-bottom {
    -webkit-animation: slide-in-bottom 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) 250ms both;
    animation: slide-in-bottom 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) 250ms both;
}
/* ----------------------------------------------
 * Generated by Animista on 2023-5-11 10:23:0
 * Licensed under FreeBSD License.
 * See http://animista.net/license for more info. 
 * w: http://animista.net, t: @cssanimista
 * ---------------------------------------------- */

/**
 * ----------------------------------------
 * animation slide-in-bottom
 * ----------------------------------------
 */
@-webkit-keyframes slide-in-bottom {
    0% {
        -webkit-transform: translateY(1000px);
        transform: translateY(1000px);
        opacity: 0;
    }

    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes slide-in-bottom {
    0% {
        -webkit-transform: translateY(1000px);
        transform: translateY(1000px);
        opacity: 0;
    }

    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
        opacity: 1;
    }
}

.slide-in-top {
    -webkit-animation: slide-in-top 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
    animation: slide-in-top 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
}
/* ----------------------------------------------
 * Generated by Animista on 2023-6-23 11:55:10
 * Licensed under FreeBSD License.
 * See http://animista.net/license for more info. 
 * w: http://animista.net, t: @cssanimista
 * ---------------------------------------------- */

/**
 * ----------------------------------------
 * animation slide-in-top
 * ----------------------------------------
 */
@-webkit-keyframes slide-in-top {
    0% {
        -webkit-transform: translateY(-1000px);
        transform: translateY(-1000px);
        opacity: 0;
    }

    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes slide-in-top {
    0% {
        -webkit-transform: translateY(-1000px);
        transform: translateY(-1000px);
        opacity: 0;
    }

    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
        opacity: 1;
    }
}

