@charset "utf-8";
/* CSS Document */

@font-face {
    font-family: 'NationalLight';
    src: url('../../_fonts/NationalWeb-Light.eot');
    src: url('../../_fonts/NationalWeb-Light.eot?#iefix') format('embedded-opentype'),
         url('../../_fonts/NationalWeb-Light.woff') format('woff'),
         url('../../_fonts/NationalWeb-Light.ttf') format('truetype'),
         url('../../_fonts/NationalWeb-Light.svg#NationalLight') format('svg');
    font-weight:200;
	font-style:normal;
}
@font-face {
    font-family: 'NationalRegular';
    src: url('../../_fonts/NationalWeb-Regular.eot');
    src: url('../../_fonts/NationalWeb-Regular.eot?#iefix') format('embedded-opentype'),
         url('../../_fonts/NationalWeb-Regular.woff') format('woff'),
         url('../../_fonts/NationalWeb-Regular.ttf') format('truetype'),
         url('../../_fonts/NationalWeb-Regular.svg#NationalRegular') format('svg');
    font-weight:500;
	font-style:normal;
}
@font-face {
    font-family: 'NationalSemibold';
    src: url('../../_fonts/NationalWeb-Semibold.eot');
    src: url('../../_fonts/NationalWeb-Semibold.eot?#iefix') format('embedded-opentype'),
         url('../../_fonts/NationalWeb-Semibold.woff') format('woff'),
         url('../../_fonts/NationalWeb-Semibold.ttf') format('truetype'),
         url('../../_fonts/NationalWeb-Semibold.svg#Semibold') format('svg');
    font-weight:700;
	font-style:normal;
}
@font-face {
    font-family: 'NationalBold';
    src: url('../../_fonts/NationalWeb-Bold.eot');
    src: url('../../_fonts/NationalWeb-Bold.eot?#iefix') format('embedded-opentype'),
         url('../../_fonts/NationalWeb-Bold.woff') format('woff'),
         url('../../_fonts/NationalWeb-Bold.ttf') format('truetype'),
         url('../../_fonts/NationalWeb-Bold.svg#NationalBold') format('svg');
    font-weight:800;
	font-style:normal;
}
@font-face {
    font-family: 'NationalExtrabold';
    src: url('../../_fonts/NationalWeb-Extrabold.eot');
    src: url('../../_fonts/NationalWeb-Extrabold.eot?#iefix') format('embedded-opentype'),
         url('../../_fonts/NationalWeb-Extrabold.woff') format('woff'),
         url('../../_fonts/NationalWeb-Extrabold.ttf') format('truetype'),
         url('../../_fonts/NationalWeb-Extrabold.svg#NationalExtrabold') format('svg');
    font-weight:900;
	font-style:normal;
}
@font-face {
    font-family: 'NationalItalic';
    src: url('../../_fonts/NationalWeb-Italic.eot');
    src: url('../../_fonts/NationalWeb-Italic.eot?#iefix') format('embedded-opentype'),
         url('../../_fonts/NationalWeb-Italic.woff') format('woff'),
         url('../../_fonts/NationalWeb-Italic.ttf') format('truetype'),
         url('../../_fonts/NationalWeb-Italic.svg#NationalItalic') format('svg');
    font-weight:500;
	font-style:normal;
}

[tabindex]:not([tabindex="-1"]), a, button, input, select, textarea {
    outline: 3px solid transparent;
    outline-offset: 5px;
    transition: outline-offset .2s linear;
}

[tabindex]:not([tabindex="-1"]):focus, a:focus, button:focus, input:focus, select:focus:focus, textarea:focus {
    outline-color: blue;
    outline-offset: 3px;
	box-shadow: 0 0 0 1px white;
}

html, body {
	margin:0px;
	width: 100%;
	height: 100%;
}

/* ------------------------ */
/* --- SLIDESHOW HOME 1 --- */
/* ------------------------ */

button{
	background: none;
	border: none;
	padding: 0;
	margin: 0;
	-webkit-appearance: none;
    -moz-appearance: none;
}

.slideshow-home-1 .slideshow-wrapper{
	width: 100%;
	height: 100%;
	/* background: #E2E2E2; */
	overflow: hidden;
	position: relative;
}
.slideshow-home-1 .slide{
	position: absolute;
	top: 0px;
	left: 0px;
	width: 100%;
	background-position: left;
	background-repeat: no-repeat;
	background-size: cover;
	display: none;
}
.slideshow-home-1 .slide.animate{
	-webkit-transition: opacity 0.5s;
	-moz-transition:    opacity 0.5s;
	-o-transition:      opacity 0.5s;
	transition:         opacity 0.5s;
}
.slideshow-home-1 .slide.visible{
	display: block;
}
.slideshow-home-1 .slide a:focus img{
	outline: 1px solid white;
	border: solid 3px blue;
	width: calc(100% - 4px);
	height: calc(100% - 4px);
}
.slideshow-home-1 .slide img{
	position: relative;
	top: 0px;
	left: 0px;
}
.slideshow-home-1 .slide .text-area{
	position: absolute;
	bottom: 60px;
	left: 60px;
	border: solid 4px white;
	padding: 20px 100px 20px 20px;
	font-size: 50px;
	line-height: 43px;
	color: white;
	font-family: 'NationalLight';
	background: transparent;
	background: rgba(0,0,0,0.4);
}
.slideshow-home-1 .text-area span,
.slideshow-home-1 .text-area b,
.slideshow-home-1 .text-area strong{
	font-family: 'NationalBold';
}
.slideshow-home-1 .controller{
	position: absolute;
	right: 60px;
	bottom: 43px;
	z-index: 99999;
	/*background-color: rgba(153,0,0,0.7);*/
	background-color: rgba(208,50,49,0.87);
	border-radius: 24px;
	border: solid 1px white;
	padding: 0px 10px;
}
.slideshow-home-1 .controller li{
	display: inline-block;
	list-style: none;
	margin: 0px;
	padding: 0px;
	width: 36px;
	height: 36px;
}
.slideshow-home-1 .controller .play-button,
.slideshow-home-1 .controller .pause-button,
.slideshow-home-1 .controller .arrow{
	width: 30px;
	height: 30px;
	float: left;
	margin: 5px;
	cursor: pointer;
	background-repeat: no-repeat;
	background-size: contain;
	background-position: center;
}
.slideshow-home-1 .controller .pause-button{
	background-image: url(../assets/icon-pause.png);
}
.slideshow-home-1 .controller .pause-button.paused{
	background-image: url(../assets/icon-play.png);
}
.slideshow-home-1 .controller .arrow.left{
	background-image: url(../assets/icon-arrow-left.png);
}
.slideshow-home-1 .controller .arrow.right{
	background-image: url(../assets/icon-arrow-right.png);
}
.slideshow-home-1 .controller .dot{
	padding: 10px;
	float: left;
	margin: 2px;
	margin-top: 0px;
	transform: translateY(5px);
	cursor: pointer;
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	-webkit-transition: background-color 0.5s;
	-moz-transition:    background-color 0.5s;
	-o-transition:      background-color 0.5s;
	transition:         background-color 0.5s;
}
.slideshow-home-1 .controller .dot div{
	width: 9px;
	height: 9px;
	border: none;
	background-color: white;
	border-radius: 100%;
}
.slideshow-home-1 .controller .dot.selected{
	margin-top: 0px;
	transform: translateY(3px);
}
.slideshow-home-1 .controller .dot.selected div{
	width: 10px;
	height: 10px;
	border-radius: 100%;
	border: solid 2px white;
	background-color: #900;
	cursor: auto;
}

/* ------------------------ */
/* --- SLIDESHOW HOME 2 --- */
/* ------------------------ */

.slideshow-home-2 .slideshow-wrapper{
	width: 100%;
	height: 100%;
	background: #E2E2E2;
	overflow: hidden;
	position: relative;
}
.slideshow-home-2 .slide{
	position: absolute;
	top: 0px;
	left: 0px;
	width: 100%;
	cursor: pointer;
	display: none;
}
.slideshow-home-2 .slide.animate{
	-webkit-transition: opacity 0.5s;
	-moz-transition:    opacity 0.5s;
	-o-transition:      opacity 0.5s;
	transition:         opacity 0.5s;
}
.slideshow-home-2 .slide.visible{
	display: block;
}
.slideshow-home-2 .slide img{
	position: absolute;
	top: 0px;
	left: 0px;
}
.slideshow-home-2 .slide .text-area{
	position: absolute;
	top: 15px;
	left: 60px;
	padding: 20px 100px 20px 20px;
	font-size: 30px;
	line-height: 34px;
	color: #3d3d3d;
	font-family: 'NationalRegular';
}
.slideshow-home-2 .slide .text-area span{
	color: white;
}

/* recipient-boxes */
.home-recipients .recipient-wrapper{
	width: 100%;
	height: 100%;
	background: #E2E2E2;
	overflow: hidden;
	position: relative;
}
.home-recipients .controller{
	position: absolute;
	bottom: 15px;
	left: 30px;
	width: auto;
	height: 30px;
	background-color: rgba(0,0,0,0.5);
	z-index: 9999;
	border: solid 1px white;
	//background-color: #900;
	padding: 5px 10px;
	border-radius: 30px;
}
.home-recipients .controller .button{
	width: 30px;
	height: 30px;
	display: inline-block;
	margin: 0px 3px;
	background-repeat: no-repeat;
	background-size: contain;
	background-position: center;
	cursor: pointer;
}
.home-recipients .controller  .pause-button{
	background-image: url(../assets/icon-pause.png);
}
.home-recipients .controller  .pause-button.paused{
	background-image: url(../assets/icon-play.png);
}
.home-recipients .controller  .prev-button{
	background-image: url(../assets/icon-arrow-left.png);
}
.home-recipients .controller  .next-button{
	background-image: url(../assets/icon-arrow-right.png);
}

.recipient-wrapper{
	font-family: 'NationalRegular';
	color: #3d3d3d;
}
.recipient-wrapper .recipient-box-text a{
	/*color: #3d3d3d;*/
	color: white;
	text-decoration: underline;
	text-underline-offset: 2px;
}
.recipient-wrapper .recipient-box-text a:hover{
	color: white;
}
.recipient-wrapper .recipient-box-text .box-title{
	color: white;
	font-size: 30px;
	line-height: 33px;
}
.recipient-wrapper .recipient-box-text .white-italic{
	font-family: 'NationalItalic';
	color: white;
	line-height: 20px;
}
.recipient-wrapper .recipient-box-text a{
	-webkit-transition: color 0.3s;
	-moz-transition:    color 0.3s;
	-o-transition:      color 0.3s;
	transition:         color 0.3s;
}
.recipient-wrapper .recipient-box-text a:hover{
	color: white;
}

.recipient-wrapper .recipient-box-home-yellow .recipient-box-text,
.recipient-wrapper .recipient-box-home-yellow  .recipient-box-text .white-italic,
.recipient-wrapper .recipient-box-home-yellow .recipient-box-text .box-title,
.recipient-wrapper .recipient-box-home-yellow .recipient-box-text a{
	color: #333333 !important;
}

.recipient-wrapper .recipient-box-home-light-blue,
.recipient-wrapper .recipient-box-home-yellow,
.recipient-wrapper .recipient-box-home-orange,
.recipient-wrapper .recipient-box-home-gray,
.recipient-wrapper .recipient-box-home-dark-gray,
.recipient-wrapper .recipient-box-home-red{
	margin: 0px;
	padding: 0px;
	position: absolute;
	height: 100%;
	overflow: hidden;
	/*background: url(../_assets/content-box-corner.png) no-repeat right bottom;
	background-size: 57px 57px;*/
	color: #3d3d3d/*#2f2f2f*/;
	/*
	-webkit-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.3);
	-moz-box-shadow:    0px 0px 10px 0px rgba(0, 0, 0, 0.3);
	box-shadow:         0px 0px 10px 0px rgba(0, 0, 0, 0.3);
	*/
}
.recipient-wrapper .recipient-box-home-yellow .box-wrapper,
.recipient-wrapper .recipient-box-home-light-blue .box-wrapper,
.recipient-wrapper .recipient-box-home-orange .box-wrapper,
.recipient-wrapper .recipient-box-home-gray .box-wrapper,
.recipient-wrapper .recipient-box-home-dark-gray .box-wrapper,
.recipient-wrapper .recipient-box-home-red .box-wrapper{
	padding: 60px 54px 65px 30px;
}
.recipient-wrapper .recipient-box-home-yellow .recipient-box-text,
.recipient-wrapper .recipient-box-home-light-blue .recipient-box-text,
.recipient-wrapper .recipient-box-home-orange .recipient-box-text,
.recipient-wrapper .recipient-box-home-gray .recipient-box-text,
.recipient-wrapper .recipient-box-home-dark-gray .recipient-box-text,
.recipient-wrapper .recipient-box-home-red .recipient-box-text{
	float: left;
	width: 50%;
}
.recipient-wrapper .recipient-box-home-yellow .img,
.recipient-wrapper .recipient-box-home-light-blue .img,
.recipient-wrapper .recipient-box-home-orange .img,
.recipient-wrapper .recipient-box-home-gray .img,
.recipient-wrapper .recipient-box-home-dark-gray .img,
.recipient-wrapper .recipient-box-home-red .img{
	float: right;
	cursor: pointer;
	width: 268px;
	height: 268px;
}
.recipient-wrapper .recipient-box-home-yellow .img img,
.recipient-wrapper .recipient-box-home-light-blue .img img,
.recipient-wrapper .recipient-box-home-orange .img img,
.recipient-wrapper .recipient-box-home-gray .img img,
.recipient-wrapper .recipient-box-home-dark-gray .img img,
.recipient-wrapper .recipient-box-home-red .img img{
	width: 100%;
	height: 100%;
}
.recipient-wrapper .box-corner-yellow,
.recipient-wrapper .box-corner-light-blue,
.recipient-wrapper .box-corner-orange,
.recipient-wrapper .box-corner-gray,
.recipient-wrapper .box-corner-dark-gray,
.recipient-wrapper .box-corner-red{
	background: url(../assets/content-box-corner.png) no-repeat right bottom;
	background-size: 57px 57px;
	width: 57px;
	height: 57px;
	position: absolute;
	right: 0px;
	bottom: 0px;
}
.recipient-wrapper .recipient-box-home-light-blue,
.recipient-wrapper .box-corner-light-blue{
	background-color: #21a0b0;
}
.recipient-wrapper .recipient-box-home-yellow,
.recipient-wrapper .box-corner-yellow{
	background-color: #f4c145;
}
.recipient-wrapper .recipient-box-home-orange,
.recipient-wrapper .box-corner-orange{
	background-color: #ed831b;
}
.recipient-wrapper .recipient-box-home-gray,
.recipient-wrapper .box-corner-gray{
	/*background-color: #c6c6c6;*/
	background-color: #757575;
}
.recipient-wrapper .recipient-box-home-dark-gray,
.recipient-wrapper .box-corner-dark-gray{
	background-color: #454645;
}
.recipient-wrapper .recipient-box-home-red,
.recipient-wrapper .box-corner-red{
	background-color: #d03232;
}
.recipient-wrapper .box-corner-light-blue,
.recipient-wrapper .box-corner-yellow,
.recipient-wrapper .box-corner-orange,
.recipient-wrapper .box-corner-gray,
.recipient-wrapper .box-corner-dark-gray,
.recipient-wrapper .box-corner-red{
	cursor: pointer;
}
.recipient-wrapper .recipient-box-home-yellow.animate,
.recipient-wrapper .recipient-box-home-light-blue.animate,
.recipient-wrapper .recipient-box-home-orange.animate,
.recipient-wrapper .recipient-box-home-gray.animate,
.recipient-wrapper .recipient-box-home-dark-gray.animate,
.recipient-wrapper .recipient-box-home-red.animate{
	-webkit-transition: opacity 0.5s;
	-moz-transition:    opacity 0.5s;
	-o-transition:      opacity 0.5s;
	transition:         opacity 0.5s;
}

/* --------------- */
/* --- PRESETS --- */
/* --------------- */

.opacity-1{
	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
	filter: alpha(opacity=100);
	-moz-opacity: 1;
	-khtml-opacity: 1;
	opacity: 1;
}
.opacity-0{
	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
	filter: alpha(opacity=0);
	-moz-opacity: 0;
	-khtml-opacity: 0;
	opacity: 0;
}



@media only screen and (max-width: 1100px) {
	.slideshow-home-1{
		display: flex;
		justify-content: space-around;
	}
	.slideshow-home-1 .controller{
		position: absolute;
		left: auto;
		right: auto;
		bottom: 0px;
		margin: 0 auto;
	}
}

@media only screen and (max-width: 1024px) {
	.slideshow-home-1 .slide .text-area{
		position: absolute;
		font-size: 40px;
		line-height: 35px;
	}
	.slideshow-home-1 .controller{

	}
	.slideshow-home-1 .slide img{
		width: 100% !important;
		height: 100% !important;
	}
	.slideshow-home-1 .slide{
		overflow: hidden;
	}
	.slideshow-home-2 .slide img{
		width: 100%;
	}
	.slideshow-home-2 .slide .text-area{
		font-size: 25px;
		line-height: 28px;
	}
}
@media only screen and (max-width: 979px) {
	.slideshow-home-1 .slide .text-area{
		font-size: 30px;
		line-height: 28px;
		left: 40px;
	}
	.slideshow-home-1 .controller{

	}
	.slideshow-home-2 .slide .text-area{
		font-size: 20px;
		line-height: 22px;
		padding-left: 0px;
		left: 40px;
	}
}
@media only screen and (max-width: 799px) {
	.slideshow-home-2 .slide .text-area{
		font-size: 17px;
		line-height: 20px;
		padding-left: 0px;
	}
}
@media only screen and (max-width: 767px) {
	.slideshow-home-1 .slide img{
		width: 100% !important;
		height: 100% !important;
	}
	.slideshow-home-2 .slide img{
		width: auto;
		height: 314px;
	}
	.slideshow-home-1 .slide .text-area{
		padding-right: 20px;
		min-width: 222px;
		left: 25px;
	}
	.slideshow-home-1 .controller{

	}
}
@media only screen and (max-width: 580px) {
	.recipient-wrapper .recipient-box-home-yellow .img,
	.recipient-wrapper .recipient-box-home-light-blue .img,
	.recipient-wrapper .recipient-box-home-orange .img,
	.recipient-wrapper .recipient-box-home-gray .img,
	.recipient-wrapper .recipient-box-home-dark-gray .img,
	.recipient-wrapper .recipient-box-home-red .img{
		width: 200px;
		height: 200px;
	}
}
@media only screen and (max-width: 570px) {

}
@media only screen and (max-width: 479px) {
	.slideshow-home-1 .text-area{
		width: 190px;
	}
	.slideshow-home-1 .controller{

	}
}
@media only screen and (max-width: 450px) {
	.recipient-wrapper .recipient-box-home-yellow .box-wrapper,
	.recipient-wrapper .recipient-box-home-light-blue .box-wrapper,
	.recipient-wrapper .recipient-box-home-orange .box-wrapper,
	.recipient-wrapper .recipient-box-home-gray .box-wrapper,
	.recipient-wrapper .recipient-box-home-dark-gray .box-wrapper,
	.recipient-wrapper .recipient-box-home-red .box-wrapper{
		padding: 30px;
	}
	.recipient-wrapper .recipient-box-home-yellow .img,
	.recipient-wrapper .recipient-box-home-light-blue .img,
	.recipient-wrapper .recipient-box-home-orange .img,
	.recipient-wrapper .recipient-box-home-gray .img,
	.recipient-wrapper .recipient-box-home-dark-gray .img,
	.recipient-wrapper .recipient-box-home-red .img{
		width: 100px;
		height: 100px;
		float: none;
	}
	.recipient-wrapper .recipient-box-home-yellow .recipient-box-text,
	.recipient-wrapper .recipient-box-home-light-blue .recipient-box-text,
	.recipient-wrapper .recipient-box-home-orange .recipient-box-text,
	.recipient-wrapper .recipient-box-home-gray .recipient-box-text,
	.recipient-wrapper .recipient-box-home-dark-gray .recipient-box-text,
	.recipient-wrapper .recipient-box-home-red .recipient-box-text{
		float: none;
		width: 100%;
	}
}

@media only screen and (max-width: 430px) {
	.slideshow-home-1 .controller{

	}
}


html.lat-bigger-text-1 .recipient-wrapper .recipient-box-text{
	font-size: 20px !important;
	line-height: 28px !important;
}
html.lat-bigger-text-1 .recipient-wrapper .recipient-box-text p{
	line-height: 28px !important;
}
html.lat-bigger-text-1 .recipient-wrapper .recipient-box-text .box-title{
	font-size: 33px !important;
}
html.lat-bigger-text-2 .recipient-wrapper .recipient-box-text{
	font-size: 24px !important;
	line-height: 32px !important;
}
html.lat-bigger-text-2 .recipient-wrapper .recipient-box-text p{
	line-height: 32px !important;
}
html.lat-bigger-text-2 .recipient-wrapper .recipient-box-text .box-title{
	font-size: 38px !important;
}
html.lat-dark .recipient-wrapper,
html.lat-dark .recipient-wrapper *{
	background-color: black !important;
	color: white !important;
}
html.lat-dark .recipient-wrapper .white-italic,
html.lat-dark .recipient-wrapper .box-title{
	color: white !important;
}
html.lat-dark .recipient-wrapper .recipient-box-home-yellow .recipient-box-text, 
html.lat-dark .recipient-wrapper .recipient-box-home-yellow .recipient-box-text .white-italic, 
html.lat-dark .recipient-wrapper .recipient-box-home-yellow .recipient-box-text .box-title, 
html.lat-dark .recipient-wrapper .recipient-box-home-yellow .recipient-box-text a, 
html.lat-dark .recipient-wrapper .recipient-box-home-orange .recipient-box-text, 
html.lat-dark .recipient-wrapper .recipient-box-home-orange .recipient-box-text .white-italic, 
html.lat-dark .recipient-wrapper .recipient-box-home-orange .recipient-box-text .box-title, 
html.lat-dark .recipient-wrapper .recipient-box-home-orange .recipient-box-text a{
    color: white !important;
}
html.lat-light .recipient-wrapper,
html.lat-light .recipient-wrapper *{
	background-color: white !important;
	color: black !important;
}
html.lat-light .recipient-wrapper .recipient-box-home-yellow .recipient-box-text, 
html.lat-light .recipient-wrapper .recipient-box-home-yellow .recipient-box-text .white-italic, 
html.lat-light .recipient-wrapper .recipient-box-home-yellow .recipient-box-text .box-title, 
html.lat-light .recipient-wrapper .recipient-box-home-yellow .recipient-box-text a, 
html.lat-light .recipient-wrapper .recipient-box-home-orange .recipient-box-text, 
html.lat-light .recipient-wrapper .recipient-box-home-orange .recipient-box-text .white-italic, 
html.lat-light .recipient-wrapper .recipient-box-home-orange .recipient-box-text .box-title, 
html.lat-light .recipient-wrapper .recipient-box-home-orange .recipient-box-text a{
    color: black !important;
}
html.lat-highlight-links .recipient-wrapper .recipient-box-text a{
	background-color: yellow !important;
	color: blue !important;
}
html.lat-dark.lat-highlight-links .recipient-wrapper .recipient-box-text a{
	background-color: blue !important;
	color: white !important;
}