
:root{
	
	--themecolor:#eee;
	--themecolor2:#24252a;
	--webfonthead: 'Montserrat';
	--webfontpara: 'Montserrat';
	--sidemargin:120px;
	--topmargin:50px;
}

.root-font{
    font-family: 'Montserrat', serif;
}

.colorbg{
	background-color:var(--themecolor);
	color:var(--themecolor2);
    height: auto;
    display: block;
}

.color2bg{
	background-color:var(--themecolor2);
	color:var(--themecolor);
    height: auto;
    display: block;
}
	
	/* BASE CSS */
	::selection {
	  background: #4b9ac2; /* WebKit/Blink Browsers */
	  height:1em;
	}
	::-moz-selection {
	  background: #4b9ac2; /* Gecko Browsers */
	  height:1em;
	}
	*,
	:before,
	:after {
	margin:0;
	padding:0;
	    -webkit-box-sizing: border-box;
	       -moz-box-sizing: border-box;
	            box-sizing: border-box;
	}
	.grid{
	    display: grid;
		grid-template-columns: auto auto auto;
		justify-items: stretch;
	}
	.row{
		margin-left:-50px;
		margin-right:-50px;
	}
	.fontwrap,
	.colorwrap,
	.imagewrap{
		place-self: center stretch;
		
	    float: left;
		transition: all 0.1s ease-in;
		-webkit-transition: all 1.4s cubic-bezier(0.69, 0.02, 0, 1.17);
	
		background-color:transparent;
		color:var(--themecolor2);
		padding:50px;
/* 		margin: 100px 50px 0 50px; */
		
		/* These are technically the same, but use both */
	  overflow-wrap: break-word;
	  word-wrap: break-word;
	
	  -ms-word-break: break-all;
	  word-break: break-word;

	}
/*
	.fontwrap:first-of-type{
		grid-row-start: 1;
		grid-row-end: 3;
	}
*/
	
	.fontwrap:hover,
	.colorwrap:hover,
	.imagewrap:hover{
		background-color:var(--themecolor2);
		color:var(--themecolor) !important;
	}
	
	.wrapindicator{
		opacity: 0.5;
	}
	.f1,
	.f1 h2,
	.f1name{
		font-family: var(--webfonthead) !important;
	}		
	
	h2.f1name {
		font-size: 60px;
		line-height: 1.2em;
	}
	h3.f1name {
		font-size: 50px;
		line-height: 1.2em;
	}
	h4.f1name {
		font-size: 40px;
		line-height: 1.2em;
	}
	h5.f1name {
		font-size: 30px;
		line-height: 1.2em;
	}
	h6.f1name {
		font-size: 20px;
		line-height: 1.2em;
	}
	.f2,
	.f2 h2,
	.f2name{
		font-family: var(--webfontpara) !important;
	}	
	
	h2.f2name {
		font-size: 60px;
		line-height: 1.2em;
	}
	h3.f2name{
		font-size: 50px;
		line-height: 1.2em;
	}
	h4.f2name {
		font-size: 40px;
		line-height: 1.2em;
	}
	h5.f2name {
		font-size: 30px;
		line-height: 1.2em;
	}
	h6.f2name {
		font-size: 20px;
		line-height: 1.2em;
	}
	
	html{
		background:var(--themecolor2);
		color:var(--themecolor); 
	}
	
	h2{
		font-family: var(--webfonthead), serif;
		font-size: 65px;
		line-height: 65px;
		font-weight: 400;
	}
	@media (min-width:1435px){
		h2{    
			font-size: 8vw;
    		line-height: 6.2vw;
		}
	}
	.fa{
		color:var(--themecolor);
	}
	.noclick{
		pointer-events: none;
	}
	.fa-angle-left:hover,
	.fa-angle-right:hover{
	    font-size: 28px;
	    line-height: 15px;
/* 		color:#fff; */
	}
	
	.fa-angle-left.noclick,
	.fa-angle-right.noclick,
	.fa-angle-left.noclick:hover,
	.fa-angle-right.noclick:hover{
	    font-size: inherit !important;
	    line-height: inherit !important;
	    opacity: 0.3;
	}

	.fa-angle-left:active,
	.fa-angle-right:active,
	.fa-angle-left:focus,
	.fa-angle-right:focus{
		color:#fff;
	}
	body{
		font-family: var(--webfontpara);
		overflow-x:hidden;
		overflow-y:auto;
		cursor: url('../images/wing-cursor.png'),auto;
	}
	body.loading{
		overflow: hidden;
	}
	.clear{
		clear:both;
	}
	a,button{
		cursor: pointer;
		text-decoration: none;
		border:none;
		color:inherit;
	}
	a:focus,
	button:focus{
		outline-color: #6a6b6f;
	}
	.button{
    	display: inline-block;
		height: auto;
		font-family: var(--webfonthead) cursive;
		font-size: 14px;
		line-height: 1.5em;
		position: relative;
		padding:15px;
		color:#35363f;
		margin-bottom: 80px;
	}
	.button:before{
		position: absolute;
		z-index: -1;  /* to be below the parent element */
		background:#d79f2a;
		transform: translate(-10px,-10px);
		height:100%;
		width:100%;
		content:"";
	}
	.button-ghost{
		font-family: var(--webfonthead), cursive;
		font-size: 14px;
		position: relative;
		border: 3px solid #d79f2a;
		padding:15px;
		color:#d79f2a;
		margin-bottom: 80px;
	}
	ul{
		font-size: 17px;
	}
	ul li{
		padding: 8px 0;
	}
	ul li a{
		
		font-size: 17px;
		line-height: 1em;
	}
	ul li:first-of-type{
		line-height: 17px;
		margin-bottom: 5px;
	}
	
	p,
	.inner-content{
		font-size: 15px;
		line-height: 1.8em;
	}
	p a{
		text-decoration: underline;
	}
	
	.vertical-align{
		position: relative;
		top: 50%;
		transform: translateY(-50%);
	}
	
	
	blockquote p{
		padding:30px 0px;
		font-size: 30px;
		line-height: 1em;
	}
	
	
	body #loading{
		background: -moz-linear-gradient(top, rgba(255,255,255,1) 43%, rgba(255,255,255,1) 61%, rgba(255,255,255,0.61) 73%, rgba(255,255,255,0) 100%); /* FF3.6-15 */
	background: -webkit-linear-gradient(top, rgba(255,255,255,1) 43%,rgba(255,255,255,1) 61%,rgba(255,255,255,0.61) 73%,rgba(255,255,255,0) 100%); /* Chrome10-25,Safari5.1-6 */
	background: linear-gradient(to bottom, rgba(255,255,255,1) 43%,rgba(255,255,255,1) 61%,rgba(255,255,255,0.61) 73%,rgba(255,255,255,0) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#00ffffff',GradientType=0 ); /* IE6-9 */

		position: fixed;
		top:0;
		left: 0;
		width: 100%;
		height: 100%;
		z-index:12;
		opacity: 0;
		visibility: hidden;
		transition: all 1.4s cubic-bezier(0.69, 0.02, 0, 1.17);
	}
	body.loading #loading{
		opacity: 0.8;
		visibility: visible;
	}
	
	
	@media (max-width:480px){
		body.loading #loading{
		opacity: 0;
		visibility: hidden;
		}
	}
	/*

	body.loading .inner-content{
		z-index: 7;
	}
*/
	@keyframes menuShow {
	    0 { transform: translateY(-100%);}
	    50% { transform: translateY(2%); }
	    100% { transform: translateY(0);}
	}
	@keyframes fadeIn {
	    0 { opacity: 0;}
	    100% {opacity: 1;}
	}
	
	

	
	
	/* base end */
	

.line{
	position: relative;
	width: 40%;
	height: 1px;

    white-space: pre;
	border-bottom: 2px solid var(--themecolor);
}


.left_head--logo{
    width: 120px;
    margin-top: 30px;
}
.left_head--logo svg{
    max-width: 72px;
    margin: auto;
    text-align: center;
    display: block;

}
.left_head--logo svg path{
	fill:var(--themecolor);
}
.left_head_edge_items{
    width: 120px;
    height: 100vh;
    position: fixed;
    z-index: 1010;
    mix-blend-mode: difference;
}
.left_head_edge_items.movedOut{
	transform: translateX(-100%);
	-webkit-transform: translateX(-100%);
}

.left_head_edge_nav_outer{
}
.left_head_edge_items_wrap{
    height: calc(100vh - 141px);
    width: 80px;
    display: inline-block;
    transform-origin: left;
    position: fixed;
    left: 21px;
    top: 140px;
    overflow: hidden;
    overflow-y: scroll;
    font-family: 'Montserrat', serif;
    text-transform: uppercase;
}

.left_head_edge_items ul{
    transform: rotate(180deg);
    display: inline-block;
    width: 100vw;
    width: 600px;
    overflow: auto;
    transform: rotate(-270deg);
    transform-origin: 40px;
    font-size: 12px;
    line-height: 0;
}
.left_head_edge_items ul li:first-of-type{
    line-height: inherit;
    margin-bottom: 0;

}
.left_head_edge_items ul li{
	display: inline-block;
    transform: rotate(180deg); 
    width:auto;
    padding-left:30px;
    padding-right: 2px;
	float:left;
	margin-left: 30px;
	border-left:1px solid var(--themecolor);
	height: 10px;
	transition: color 0.4s cubic-bezier(0.76, 0.03, 0.57, 0.9);
	-webkit-transition: color 0.4s cubic-bezier(0.76, 0.03, 0.57, 0.9);
}
.left_head_edge_items ul li:hover{
	color:var(--themecolor);
}

.right_head_edge_items{
    width: 120px;
    height: 100vh;
    transform-origin: right;
    position: absolute;
    margin-top: 30px;
    right: 0;
    top:0;
}
.right_head_edge_items svg{
    position: absolute;
    right: 60px;
    top: -50px;
    z-index: 1000;
    opacity: 0.1 !important;
}
.contenticon{
	pointer-events: none;
	opacity: 0.3 !important;
	transition: all 1.2s cubic-bezier(0.76, 0.03, 0.57, 0.9) 0.4s;
	-webkit-transition: all 1.2s cubic-bezier(0.76, 0.03, 0.57, 0.9) 0.4s;
}

.right_head_edge_items_wrap{
    font-family: 'Montserrat', serif;
    transform: rotate(90deg);
    display: inline-block;
    position: absolute;
    right: 50px;
    top: calc(100% - 200px);
    text-align: right;
    float: right;
}

.right_head--main_slider_btns{
	width: 200px;
	position: absolute;
	z-index: 10001;
}
.right_head--main_slider_btns span{
	padding-right: 5px;
	float:left;
}
.arrow-left{
	text-align: center;
	float:left;
/* 	padding-right: 25px; */
	width: 40px;
	height: 40px;
}
.arrow-right{
	text-align: center;
	float:left;
/* 	padding-left: 25px; */
	width: 40px;
	height: 40px;
}




/* ****************************** */
/* **********   INTRO  ********** */
/* ****************************** */
.intro{
	
	transition: all 0.8s cubic-bezier(0.76, 0.03, 0.57, 0.9) 3s;
	-webkit-transition: all 0.8s cubic-bezier(0.76, 0.03, 0.57, 0.9) 3s ;
	background-color: var(--themecolor2);
	height: 100vh;
	height: 100%;
	position: fixed;
	top:0;
	left: 0;
	right:0;
	z-index: 10000;
	opacity: 0;
	visibility: hidden;
}


.introicon {
	transition: transform 0.8s ease-in-out;
	-webkit-transition: transform 0.8s ease-in-out;
	
	position: absolute;
	display: block;
	text-align: center;
	z-index: 10000;
	width: 300px;
	margin: auto;
	left: -100px;
	right: 0;
	transform: translateX(50vw) scale(1);
	-webkit-transform: translateX(50vw) scale(1);
	
    --x: 0;
	--y: -50px;
	margin-left: var(--x);
	margin-top:  var(--y);
}
.intro p{
	font-size: 13px;
	font-family: 'Montserrat';
}

.introicon.scale{
	transform: translateX(50vw) scale(1.2);
	-webkit-transform: translateX(50vw) scale(1.2);
}
.introicon svg{
	padding:50px;
	width:100%;
	animation: glitch 3s ease;
}
.introicon .path {
  stroke-dasharray: 600;
  stroke-dashoffset: 600;
  animation: dash 2s linear forwards;
}
html .introicon .path.slow{
  animation: dash 2.4s linear forwards 0.1s;
}

.introicon .path:hover {
    opacity: 0.2;
    stroke:var(--themecolor);
}

@keyframes dash {
  from {
    stroke-dashoffset: 600;
  }
  to {
    stroke-dashoffset: 0;
  }
}

@keyframes glitch {
  0% {
    opacity: 0.2;
  }
  1% {
    opacity: 1;
  }
  10% {
    opacity: 0.2;
  }
  11% {
    opacity: 1;
  }
  13% {
    opacity: 0.2;
  }
  14% {
    opacity: 1;
  }
  43% {
    opacity: 0.2;
  }
  44% {
    opacity: 1;
  }
  54% {
    opacity: 0.2;
  }
  55% {
    opacity: 1;
  }
  78% {
    opacity: 0.2;
  }
  79% {
    opacity: 1;
  }
  98% {
    opacity: 0.2;
  }
  99% {
    opacity: 0;
  }
}




body.loading .intro{
	opacity: 1;
	visibility: visible;
}
.intro.moveOut{
    transform: translateY(-100%) !important;
    -webkit-transform: translateY(-100%) !important;
    -moz-transform: translateY(-100%) !important;
}


.content-bounderies{
	width:calc(100% - 240px);
	margin:auto;
/* 	overflow: hidden; */
}

.tns-outer .tns-nav,
.tns-outer button,
.tns-outer .tns-liveregion{
	display: none;
}


.main_slider--header{
    height: auto;
    width: auto;
    max-width: 85%;
    transform: translateY(-50%) !important;
    -webkit-transform: translateY(-50%) !important;
    -moz-transform: translateY(-50%) !important;
    position: fixed;
    top: 52%;
    right: 0;
    text-align: right;
    z-index: 100 !important;
}


/*
.main_slider--header .line:before{
	content:"";
	height:9px;
	width: 1px;
	background-color:#fff;
	position: relative;
	float: left;
	top:-4px;
}
.main_slider--header .line:after{
	content:"";
	height:9px;
	width: 1px;
	background-color:#fff;
	position: relative;
	float: right;
	top:-4px;
}
*/
.main_slider--header h2{
	margin-bottom: 20px;
	line-height: auto;
	clear: both;
	text-shadow: 0px 0px 6px var(--themecolor2);
}


.main_slider--header h2 small{
	font-size:75%;
}
.main_slider--header h3{
    line-height: 1.4em;
	margin-top: 40px;
	margin-bottom: 10px;
	clear: both;
	text-shadow: 0px 0px 2px  var(--themecolor2);
}
.main_slider--header p{
	text-shadow: 0px 0px 2px  var(--themecolor2);
	width: 26vw;
	float: right;
	color:var(--themecolor);
}


.main_slider--area{
    width:100%;
    height:inherit;
    height:calc(100vh - 100px); 
	margin-top:50px;
	margin-bottom:50px;
	overflow: hidden;
    display: block;
}
.main_slider--wrap{
    width:100%;
	overflow: hidden;
}

.main-slider--item{
	opacity: 0;
	overflow: hidden;
    height:calc(100% - 100px);
    width: calc(100% - 240px);
    position: absolute;
    transform: translateY(-100%);
    -webkit-transform: translateY(-100%);
	transition: opacity 0.3s cubic-bezier(0.76, 0.03, 0.57, 0.9), transform 0.1s cubic-bezier(0.76, 0.03, 0.57, 0.9) 0.3s;
	-webkit-transition: opacity 0.3s cubic-bezier(0.76, 0.03, 0.57, 0.9), transform 0.1s cubic-bezier(0.76, 0.03, 0.57, 0.9) 0.3s;
	
}
.active-slide.main-slider--item{
	transition: opacity 0.3s cubic-bezier(0.76, 0.03, 0.57, 0.9), transform 0.1s cubic-bezier(0.76, 0.03, 0.57, 0.9) 0s;
	-webkit-transition: opacity 0.3s cubic-bezier(0.76, 0.03, 0.57, 0.9), transform 0.1s cubic-bezier(0.76, 0.03, 0.57, 0.9) 0s;
    transform: translateY(0%);
    -webkit-transform: translateY(0%);
	opacity: 1;

}
.main-slider--itemimage-dots{
	list-style-type: none;
	position: relative;
	top: 50px;
    padding: 25px 40px 25px 0px;

    float: right;
}
.main-slider--itemimage-dots li{
	transition: all 0.3s cubic-bezier(0.76, 0.03, 0.57, 0.9) 0.2s;
	-webkit-transition: all 0.3s cubic-bezier(0.76, 0.03, 0.57, 0.9) 0.2s;
	/* slide intro fallback when slide class removed */
    transform: translateY(-40vh);
    -webkit-transform: translateY(-40vh);
    
	display: inline-block;
	float: left;
	margin: 0 10px;
	
	padding:14px 5px;
}
.main-slider--itemimage-dots li div{
/* 	pointer-events: none; */
	transform-origin: center;
	-webkite-transform-origin:center;
	transition: all 0.3s cubic-bezier(0.76, 0.03, 0.57, 0.9);
	-webkit-transition: all 0.3s cubic-bezier(0.76, 0.03, 0.57, 0.9);
	width:15px;
	height:1px;
	background-color:var(--themecolor);
	opacity: 0.3;
}

.main-slider--itemimage-dots li.active div,
.main-slider--itemimage-dots li:hover div{
    transform: translateY(-3px);
    -webkit-transform: translateY(-3px);
	height: 7px;
	opacity: 1;
	background-color:#fff;
}
.main-slider--itemimage-dots li:hover div{
    transform: translateY(-4px);
    -webkit-transform: translateY(-4px);
	height: 9px;
	opacity: 1;
	background-color:#fff;
}

.main-slider--itemimage-dots li.active div,
.main-slider--itemimage-dots li:active div,
.main-slider--itemimage-dots li:focus div{
	background-color: var(--themecolor);
}


.main-slider--images{
	width:66%;
    height:calc(100vh - 100px); /* 100px = the top + bottom position */ 
    overflow: hidden;
}


.main-slider--itemimage{
	transition: transform 0.8s cubic-bezier(0.76, 0.03, 0.57, 0.9), opacity 0.8s cubic-bezier(0.76, 0.03, 0.57, 0.9) ;
	-webkit-transition: transform 0.8s cubic-bezier(0.76, 0.03, 0.57, 0.9), opacity 0.8s cubic-bezier(0.76, 0.03, 0.57, 0.9) ;
	
    width: 66%;
    height:calc(100vh - 100px); /* 100px = the top + bottom position */ 
    background-size: cover ; 
    background-repeat: no-repeat;
    transform-style: preserve-3d;
    --x: 0;
	--y: 0;
	background-position: var(--x) var(--y);

	transform:translateY(100vh) ;
	-webkit-transform:translateY(100vh) ;
	opacity: 0;
	
    position: absolute;
}

.main-slider--itemimage.active-image{
	opacity: 0;
}
.active-slide .main-slider--itemimage.active-image{
	transform: translateY(0) ;
	-webkit-transform: translateY(0) ;
	opacity: 1;
}

.main-slider--itemimage.slideOutUp{
	transform: translateY(-100vh) ;
	-webkit-transform: translateY(-100vh) ;
}


.main-slider--item h2{
	transition: all 0.7s cubic-bezier(0.76, 0.03, 0.57, 0.9) ;
	-webkit-transition: all 0.7s cubic-bezier(0.76, 0.03, 0.57, 0.9) ;
	
	transform: translateY(-40vh) ;
	-webkit-transform: translateY(-40vh) ;
	opacity: 0;
}


/*
.main-slider--item .line{
	transition: all 0.7s cubic-bezier(0.76, 0.03, 0.57, 0.9);
	-webkit-transition: all 0.7s cubic-bezier(0.76, 0.03, 0.57, 0.9) ;
	
	transform: translateY(-40vh) ;
	-webkit-transform: translateY(-40vh) ;
	opacity: 0;
}
*/

.main-slider--item h3{
	transition: all 0.7s cubic-bezier(0.76, 0.03, 0.57, 0.9) ;
	-webkit-transition: all 0.7s cubic-bezier(0.76, 0.03, 0.57, 0.9) ;

	transform: translateY(-40vh) ;
	-webkit-transform: translateY(-40vh) ;
	color:var(--themecolor);
	opacity: 0;
}

.main-slider--item p{
	transition: all 0.7s cubic-bezier(0.76, 0.03, 0.57, 0.9);
	-webkit-transition: all 0.7s cubic-bezier(0.76, 0.03, 0.57, 0.9);

	transform: translateY(-40vh) ;
	-webkit-transform: translateY(-40vh) ;

	opacity: 0;
}

/* Has been slided */


/*
1160 / 100 = 11.6
770 / 11.6 = 66.37
*/

/* Before used as left corner mask on itemimage */
.itemimage-leftblock{
	transition: all 0.6s ease ;
	-webkit-transition: all 0.6s ease ;
	content: "";
	position: absolute;
	bottom: 0;
    background-color: var(--themecolor2);
	height:500px;
	width: 120px;
    z-index: 90;
    opacity: 1 !important;
	transform: translateY(100%) ;
	-webkit-transform: translateY(100%) ;
}
.itemimage-leftblock form{
/* 	padding:20px 30px 20px 20px; */
	height: 100%;
	display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    padding-bottom: 16px;
}

.itemimage-leftblock form label input{
    opacity: 0;
    position: absolute;
    height: 30px;
    left: 0;
    width: 100%;
}
.itemimage-leftblock form label.checked span{
}
.itemimage-leftblock form label.checked span:before{
	content:"✓ ";
	text-decoration: none !important;
	
}
.itemimage-leftblock form label span{
	font-size: 14px;
	height: 35px;
    width: 35px;
    line-height: 35px;
}
.itemimage-leftblock label,
.itemimage-leftblock button{
	text-align: center;
    width: 100%;
    clear: both;
    display: block;
	margin: 20px auto;
	border-bottom: 1px solid var(--thmecolor);
}

#changeComposition{
    width: 100%;
    clear: both;
    display: inline-block;
    height: 55px;
    font-size: 14px;
    line-height: 1.5em;
    position: relative;
    background: var(--themecolor);
    color:var(--themecolor2);
    font-weight: 400;
    margin: 0px auto;
    text-align: left;
    margin-top: -17px;
    top: -19px;
    padding: 15px 20px;
    z-index: 1000;
}
#changeComposition .right{
	float:right;
}
#changeComposition:hover #changeComposition:before{
	content:"✓ ";
}

.itemimage-leftblock.slideInUp,
.itemimage-leftblock.slideInUp.slideOutUp{
	height:33vh;
}

.itemimage-leftblock.slideInUp.slideOutUp{
	transition: all 0.6s ease 0.2s;
	-webkit-transition: all 0.6s ease 0.2s;
}

/* After used as right corner mask on itemimage */
.itemimage-rightblock{
	transition: all 0.3s ease ;
	-webkit-transition: all 0.3s ease;
    content: "";
    position: absolute;
    left: calc(66% - 28vw);
/*     right: calc(40% - 120px); */

    right: 0;
    padding-right: calc(40% - 120px);
    transform-origin: right;
    background-color: var(--themecolor2);
    height: 100vh;
    width: auto;
	z-index: 90;
    opacity: 1 !important;
}
@media only screen and (max-width:1475px) {

	.itemimage-rightblock{
		left: calc(66% - 420px) !important;
	}
}
.itemimage-rightblockinner{
    display: block;
	padding: 6px 60px 6px 15px;
    height: 100%;
    width: auto;
    float: none;
}
.itemimage-rightblock.slideInUp{
	transition: all 0.8s ease 0.4s;
	-webkit-transition: all 0.8s ease 0.4s;

	height:150px;
}
.itemimage-rightblock.slideInUp.slideOutUp{
	transition: all 0.8s ease 0;
	-webkit-transition: all 0.8s ease 0s;
}



.itemimage-rightblock .arrows{
	transition: all 0.3s cubic-bezier(0.76, 0.03, 0.57, 0.9), opacity 0.8s cubic-bezier(0.76, 0.03, 0.57, 0.9);
	-webkit-transition: all 0.3s cubic-bezier(0.76, 0.03, 0.57, 0.9), opacity 0.8s cubic-bezier(0.76, 0.03, 0.57, 0.9);
    transform: translateY(-40vh);
    -webkit-transform: translateY(-40vh);
	position: relative;
	top: 50px;
/*
    right: 34.8vw;
    right: calc(34vw + 30px);
*/
	padding:20px 9px;
	float:left;
}
.itemimage-rightblock .arrow-left{
    padding: 10px 5px;
}

.itemimage-rightblock .arrow-right{
    padding: 10px 5px;
}



/* CONTENT */
.colorwrap{
	width:100%;
	height:auto;
	padding:70px 0;
	
}

.belowfold{
    position: relative;
    z-index: 100;
}



.colors{
    height: 500px;
    position: relative;
}


.colors .color{
    width:50%;
    height: 100%;
    position: relative;
    text-align: center;
    float: left;
}
.colors .color h3{
	font-size: 60px;
}
.colors .color p{
	font-size: 20px;
}

.imageswrap .images {
		
	display: flex;
	flex-flow: row wrap;
}

.imageswrap .images .image{
    flex: 1 1 auto;
    
    width: 500px;
    height: 500px;
    object-fit: cover;
}
.imageswrap .images .image:after{
	content:"";
	background:rgba(0,0,0,0.3);
	width: 100%;
	height: 100%;
	position: absolute;
	top:0;
	left: 0;
}


.slideOutDown{
	opacity: 0!important;
	transform: translateY(-40vh)!important;
/*
  animation-name: slideOutDown;
  animation-duration: 1s;
  animation-fill-mode:forwards;
  animation-iteration-count: 1;
*/
}

.slideOutUp{
	opacity: 0!important;
	transform: translateY(-40vh)!important;; 

}

.slideInDown{
	opacity: 1!important;
	transform: translateY(0vh)!important;;

}
.slideInDown.slideOutDown{
	transform: translateY(40vh)!important;
	opacity: 0!important;
}
.slideInDown.slideOutUp{
	transform: translateY(-40vh)!important;
	opacity: 0!important;
}

.slideInUp{
 opacity: 1!important;
 transform: translateY(0vh)!important;;
 /*
 animation-name: slideInUp;
  animation-duration: 1s;
  animation-fill-mode:forwards;
  animation-iteration-count: 1;
  
*/
}

.slideInUp.slideOutUp{
	transform: translateY(-40vh)!important;
	opacity: 0!important;
}
.slideInUp.slideOutDown{
	transform: translateY(40vh)!important;
	opacity: 0!important;
}


.fadeOut{
	opacity: 0 !important;
}

@keyframes slideOutDown {
    0 { transform: translateY(0) !important;}
    100% { transform: translateY(-40vh)!important; opacity: 0!important;}
}

@keyframes slideOutUp {
    0 { transform: translateY(0);}
    100% { transform: translateY(40vh); opacity: 0;}
}

@keyframes slideInDown {
    0 { transform: translateY(40vh);opacity: 0;}
    100% { transform: translateY(0vh);opacity: 1;}
}
@keyframes slideInUp {
    0 { transform: translateY(-40vh);opacity: 0;}
    100% { transform: translateY(0vh);opacity: 1;}
}
/*
@keyframes slideGoToPrev {
    0 { transform: translateY(0);}
    100% { transform: translateY(40vh);opacity: 0;}
}
*/
body .overlay{
    width: 100%;
    height: 100vh;
    position: fixed;
    display: none;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
	font-size: 30px;
}
@media only screen and (max-width:915px){
	body .overlay{    
		display: table;
		table-layout: fixed;
	}
	body .overlay .table > div{
		margin-bottom: 20px;
	}    
	.overlay div.row{
		height:70vh;
		display: table-row;
	}
	.overlay div.row:nth-child(1){
		height:30vh;
		display: table-row;
		font-size: 18px;
		
	}.overlay div.row:nth-child(1) div{
		display: table-cell;
		width: 100%;
		vertical-align: middle;
		padding: 40px;
		text-align: center;
	}
	.overlay div.row div{
		display: table-cell;
	}
	.overlay h3{
		text-align: center;
	}
	.overlay > div:not(.row){    
		display: table-cell;
		vertical-align: middle;
	}
	body .overlay  div:not(.row) div{
		width: 100%;
		display:block;
		text-align: center;
	}
	body .overlay  div:not(.row) div:nth-child(2){
		font-family: var(--webfonthead), serif;
	}
}