
            #loading-overlay{
            background-color: #ffffff;
            position: fixed;
            left: 0; right: 0;
            top:0; bottom: 0;
            z-index:6000;
            }
            #loading-overlay > div{color: #939393}
        

.arrow-to-top{
    height: 50px;
    width: 50px;
    position: fixed;
    bottom: 15px;
    right: 15px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all .4s;
    -moz-transition: all .4s;
    -ms-transition: all .4s;
    -o-transition: all .4s;
    transition: all .4s;
    z-index: -10000;
}

.arrow-to-top.show{
    opacity: 1;
    z-index: 1000;
    visibility: visible;
}


#navigationMobile {
    position: fixed;
    visibility: hidden;
    width: 100vw;
    right: 0;
    top: 0;
    height: 100vh;
}

#navigationMobile .navbar {
    left: 100%;
    top: 0;
    position: absolute;
    height: 100%;
    transition: all .5s ease;
    -moz-transition: all .5s ease;
    -webkit-transition: all .5s ease;
}

#navigationMobile .navbar-nav{
    height:100%;
}

#navigationMobile.open .navbar{
    visibility: visible;
    left:0;
    transition: all .5s ease;
    -moz-transition: all .5s ease;
    -webkit-transition: all .5s ease;
}
#navigationMobile .subnavigation-menu{
    left: 100%;
    -webkit-transition: left .3s;
    -moz-transition: left .3s;
    -ms-transition: left .3s;
    -o-transition: left .3s;
    transition: left .3s;
}
#navigationMobile .subnavigation-menu.open{
    left:0;
}

@media(min-width: 600px){
    #navigationMobile{ width: 600px;}
}


.frame-type-fluidbootstrap_responsiveimage{
    height: 100%;
}

.responsive-image-container {
    overflow: hidden;
    position: relative;
    width: 100%;
}

.responsive-image-link{
    display: block;
    position: absolute;
    top: 0; bottom: 0;
    left: 0; right: 0;
    font-size: 0;
    z-index: 3;
}

.image-overlay{
    position: absolute;
    top: 0; bottom: 0;
    left: 0; right: 0;
    z-index: 1;
    background: transparent linear-gradient(306deg, rgba(43, 79, 43, 0.1) 0%, rgba(43, 79, 43, 1) 100%) 0 0 no-repeat padding-box;
    opacity: 1;
    -webkit-transition: opacity .5s;
    -moz-transition: opacity .5s;
    -ms-transition: opacity .5s;
    -o-transition: opacity .5s;
    transition: opacity .5s;
}

.responsive-image-container:hover .image-overlay{
    opacity: 0;
}
.responsive-image-title{
    position: absolute;
    z-index: 2;
    margin-bottom: 0;
    top:0; bottom:0;
    left:0; right:0;
}

.responsive-image-container.zoom-image:hover .responsive-image-wrap,
.responsive-image-container.zoom-image:hover .responsive-image-bg-wrap{
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
}

.responsive-image-container.zoom-image-in:hover .responsive-image-wrap,
.responsive-image-container.zoom-image-in:hover .responsive-image-bg-wrap{
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -ms-transform: scale(1.1);
    -o-transform: scale(1.1);
    transform: scale(1.1);
}

.responsive-image-container.zoom-image .responsive-image-wrap,
.responsive-image-container.zoom-image .responsive-image-bg-wrap{
    -webkit-transform: scale(1.2);
    -moz-transform: scale(1.2);
    -ms-transform: scale(1.2);
    -o-transform: scale(1.2);
    transform: scale(1.2);
}

.responsive-image-wrap,
.responsive-image-bg-wrap{
    background-repeat: no-repeat;
    -webkit-transition: all .5s;
    -moz-transition: all .5s;
    -ms-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
}

.responsive-image-wrap,
.responsive-image-bg-wrap,
.responsive-image-grayscale-wrap{
    height: 100%;
    width: 100%;
}

.responsive-image-bg-wrap > .responsive-picture,
.responsive-image-grayscale-wrap > .responsive-picture{
    position: relative;
    z-index: -10000;
    /*height:10px;*/
    opacity:0;
    /*visibility: hidden*/
}

/*Grayscale Scrolled*/
.responsive-image-grayscale-wrap { display: grid; }
.responsive-image-grayscale-wrap .grayscaled-monotone,
.responsive-image-grayscale-wrap .colored{
    grid-column: 1;
    grid-row: 1;
    transition: all .3s linear;
}
.responsive-image-grayscale-wrap .grayscaled{
    -webkit-filter: grayscale(100%);
    filter: grayscale(100%);
    opacity: 1;
}
.responsive-image-grayscale-wrap .grayscaled-color{
    position: absolute;
    z-index: 100;
    top: 0;
}
/*LazyLoading and animation*/
.lazyload,
.lazyloading {
    opacity: 0; }

.loading,
.lazyload,
.lazyloaded,
.image, .responsive-image-wrap, .responsive-image-bg-wrap {
    transition: 2s cubic-bezier(0.215, 0.61, 0.355, 1);
    opacity: 1;
}
/*.loading-1 {*/
/*    transform: translateY(100px);*/
/*    opacity:0;*/
/*}*/

/*.loading-2 img {*/
/*    transform: scale(.1);*/
/*    transform-origin: bottom center;*/
/*}*/

@keyframes scaleout {
    0% {
        transform: scale(0); }

    100% {
        transform: scale(1);
        opacity: 0; }
}

.image {
    position: relative;
    /*// Tweak as needed*/
    background-color: transparent;
}

.image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%; }

.loading:before {
    content: "";
    position: absolute;
    z-index: 1;
    top: 50%;
    left: 50%;
    margin-top: -16px;
    margin-left: -16px;
    width: 32px;
    height: 32px;
    border-radius: 32px;
    animation: scaleout 1.2s infinite ease-in-out;
    /*// Tweak as needed*/
    mix-blend-mode: soft-light;
    background-color: rgba(0, 0, 0, .9);
}



                        #supersized-99{
                        background-size: cover;
                        background-position: center center;

                        }
                    


            #row-100{ min-height: 0px}
            @media(min-width:768px){
            #row-100{ min-height: 0px}
            }
            @media(min-width:992px){
            #row-100{ min-height: 0px}
            }
            @media(min-width: 1200px){
            #row-100{ min-height: 0px}
            }
            @media(min-width: 1440px){
            #row-100{ min-height: 0px}
            }
            @media(min-width: 1600px){
            #row-100{ min-height: 0px}
            }
        

.supersized-container .link-scroll-down{
    position: absolute; bottom:30px;
    width: 100px;
    height: 100px;
    left: calc(50vw - 50px);
}



            #row-23{ min-height: 0px}
            @media(min-width:768px){
            #row-23{ min-height: 0px}
            }
            @media(min-width:992px){
            #row-23{ min-height: 0px}
            }
            @media(min-width: 1200px){
            #row-23{ min-height: 0px}
            }
            @media(min-width: 1440px){
            #row-23{ min-height: 0px}
            }
            @media(min-width: 1600px){
            #row-23{ min-height: 0px}
            }
        


            #row-31{ min-height: 0px}
            @media(min-width:768px){
            #row-31{ min-height: 0px}
            }
            @media(min-width:992px){
            #row-31{ min-height: 0px}
            }
            @media(min-width: 1200px){
            #row-31{ min-height: 0px}
            }
            @media(min-width: 1440px){
            #row-31{ min-height: 0px}
            }
            @media(min-width: 1600px){
            #row-31{ min-height: 0px}
            }
        

.slick-slider.min-height{height:auto !important;}

.slider-item{
    background-repeat: no-repeat;
    position: relative;
    background-position: bottom center;
    height:100%;
}
.slider-item picture{
    display: flex;
    justify-content: center;
    align-items: center;
}

.slider-item > div.min-height{height: auto !important;}

@media(min-width: 992px){
    .slider-item{ background-position: top left; }
}

.slick-dots li:before { content: ''; }
.slick-dots.dots li button:before{
    font-family: 'Material Icons';
    content:"\e3fa";
    font-size:20px;
}

.slick-dots.numbers li button{
    font-size: 14px;
    color: black;
}

.slick-prev,
.slick-next{
    z-index:900;
    width: 40px; height: 40px;
}
.slick-prev{
    left:10px;
}
.slick-next{
    right:10px;
}


.slick-prev::before,
.slick-next::before{
    content: "";
    height:40px;
    width: 40px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' height='40' viewBox='0 -960 960 960' width='40'%3E%3Cpath fill='%23fff' d='M560-240 320-480l240-240 56 56-184 184 184 184-56 56Z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: -2px center ;
    display:block;
    opacity: 1;
}
.slick-next::before{
    content: "";
    background-position: 2px center ;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' height='40' viewBox='0 -960 960 960' width='40'%3E%3Cpath fill='%23fff' d='M504-480 320-664l56-56 240 240-240 240-56-56 184-184Z'/%3E%3C/svg%3E");
}

.slick-item .img-for-background{
    display:none;
}

.carousel-height{
    display:block !important;
    position: relative;
}




.slick-slider.timeline{
    line-height: normal;
}

.slick-slider.timeline-els{
    margin-top: 80px;
}

.slick-slider.timeline .slick-prev{
    left:0;
}
.slick-slider.timeline .slick-next{
    right:0;
}

.slick-slider.timeline .slick-prev,
.slick-slider.timeline .slick-next{
    top: calc(100% - 13px);
    background-color: var(--color-9);
    /*top: unset;*/
}
.slick-slider.timeline .slick-prev::before,
.slick-slider.timeline .slick-next::before{
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' height='40' viewBox='0 -960 960 960' width='40'%3E%3Cpath fill='%23051D01' d='M560-240 320-480l240-240 56 56-184 184 184 184-56 56Z'/%3E%3C/svg%3E");
}
.slick-slider.timeline .slick-next::before{
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' height='40' viewBox='0 -960 960 960' width='40'%3E%3Cpath fill='%23051D01' d='M504-480 320-664l56-56 240 240-240 240-56-56 184-184Z'/%3E%3C/svg%3E");
}

.slick-slider.timeline .slider-item{
    border-bottom: 5px solid var(--color-2);
    padding-bottom:10px;
    margin-bottom: 10px;
    font-size: 20px;
    min-height: 50px;
}

.slick-slider.timeline .slider-item:before{
    content: "";
    display: block;
    background: var(--color-2);
    height: 16px;
    width: 16px;
    border-radius: 100px;
    margin-top: -4px;
    border: 5px solid white;
    cursor: pointer;
    position: absolute;
    bottom: -10px;
    left: calc(50% - 8px);
    z-index: 100;
}
.slick-slider.timeline .slick-slide .timeline-title{
    color: var(--color-2);
}
.slick-slider.timeline .slick-slide.slick-current .timeline-title{
    color: var(--color-8);
    font-weight: 600;
    font-size: 25px;
}
.slick-slider.timeline .slick-slide.slick-current .slider-item:before{
    background-color: var(--color-9);
    height: 22px;
    width: 22px;
    left: calc(50% - 11px);
    bottom: -13px;
}

.slick-slider.timeline-els .slider-item{
    padding: 0 40px;
}

@media(min-width: 768px){
    .slick-slider.timeline-els .slider-item{
        padding: 0 60px;
    }
}



            #row-64{ min-height: 0px}
            @media(min-width:768px){
            #row-64{ min-height: 0px}
            }
            @media(min-width:992px){
            #row-64{ min-height: 0px}
            }
            @media(min-width: 1200px){
            #row-64{ min-height: 0px}
            }
            @media(min-width: 1440px){
            #row-64{ min-height: 0px}
            }
            @media(min-width: 1600px){
            #row-64{ min-height: 0px}
            }
        


                            #row-background-64{
                            background-size: cover;
                            background-position: center bottom;
                            }
                        


            #row-66{ min-height: 0px}
            @media(min-width:768px){
            #row-66{ min-height: 0px}
            }
            @media(min-width:992px){
            #row-66{ min-height: 0px}
            }
            @media(min-width: 1200px){
            #row-66{ min-height: 0px}
            }
            @media(min-width: 1440px){
            #row-66{ min-height: 0px}
            }
            @media(min-width: 1600px){
            #row-66{ min-height: 0px}
            }
        


            .responsive-image-69{
            background-size: cover;
            background-position: center center;
            
                min-height: 550px;
            
            }
            
                @media(min-width:768px){
                .responsive-image-69{
                min-height: 500px;
                }
                }
                @media(min-width:992px){
                .responsive-image-69{
                min-height: 500px;
                }
                }
                @media(min-width:1200px){
                .responsive-image-69{
                min-height: 600px;
                }
                }
                @media(min-width:1440px){
                .responsive-image-69{
                min-height: 650px;
                }
                }
                @media(min-width:1600px){
                .responsive-image-69{
                min-height: 650px;
                }
                }
            
        


            .responsive-image-70{
            background-size: cover;
            background-position: center center;
            
                min-height: 550px;
            
            }
            
                @media(min-width:768px){
                .responsive-image-70{
                min-height: 500px;
                }
                }
                @media(min-width:992px){
                .responsive-image-70{
                min-height: 500px;
                }
                }
                @media(min-width:1200px){
                .responsive-image-70{
                min-height: 600px;
                }
                }
                @media(min-width:1440px){
                .responsive-image-70{
                min-height: 650px;
                }
                }
                @media(min-width:1600px){
                .responsive-image-70{
                min-height: 650px;
                }
                }
            
        


            #row-35{ min-height: 0px}
            @media(min-width:768px){
            #row-35{ min-height: 0px}
            }
            @media(min-width:992px){
            #row-35{ min-height: 0px}
            }
            @media(min-width: 1200px){
            #row-35{ min-height: 0px}
            }
            @media(min-width: 1440px){
            #row-35{ min-height: 0px}
            }
            @media(min-width: 1600px){
            #row-35{ min-height: 0px}
            }
        


            #row-42{ min-height: 0px}
            @media(min-width:768px){
            #row-42{ min-height: 0px}
            }
            @media(min-width:992px){
            #row-42{ min-height: 0px}
            }
            @media(min-width: 1200px){
            #row-42{ min-height: 0px}
            }
            @media(min-width: 1440px){
            #row-42{ min-height: 0px}
            }
            @media(min-width: 1600px){
            #row-42{ min-height: 0px}
            }
        


            #row-37{ min-height: 0px}
            @media(min-width:768px){
            #row-37{ min-height: 0px}
            }
            @media(min-width:992px){
            #row-37{ min-height: 0px}
            }
            @media(min-width: 1200px){
            #row-37{ min-height: 0px}
            }
            @media(min-width: 1440px){
            #row-37{ min-height: 0px}
            }
            @media(min-width: 1600px){
            #row-37{ min-height: 0px}
            }
        


			
			
		

.imagebox .box-content-text{
    padding-left: 30px;
    padding-right: 30px;
}
.imagebox .responsive-image-container{ display:block;}

@media(min-width: 992px){
    .imagebox .responsive-image-container{
        display:block;
        position: absolute;
        top: -30px;
        left: -50px;
        width: 150px;
    }
    .imagebox{
        margin-top: 30px;
        margin-left: 50px;
    }
    .imagebox .box-content-text{
        padding-left: 135px;
        padding-right: 30px;
    }
}

.imagebox{
    -webkit-transition: height .5s;
    -moz-transition: height .5s;
    -ms-transition: height .5s;
    -o-transition: height .5s;
    transition: height .5s;
}
@media(min-width: 1200px){
    .imagebox .responsive-image-container{
        left: -60px;
        width: 170px;
    }
}
@media(min-width: 1440px){
    .imagebox .responsive-image-container{
        left: -80px;
        width: 200px;
    }
}







			
			
		


			
			
		


			
			
		


            #row-47{ min-height: 0px}
            @media(min-width:768px){
            #row-47{ min-height: 0px}
            }
            @media(min-width:992px){
            #row-47{ min-height: 0px}
            }
            @media(min-width: 1200px){
            #row-47{ min-height: 0px}
            }
            @media(min-width: 1440px){
            #row-47{ min-height: 0px}
            }
            @media(min-width: 1600px){
            #row-47{ min-height: 0px}
            }
        

