

#page-home {
	background-color: #fff
}

#page-home .section-hero {
	height: 100vh;
	position: relative
}



#page-home .section-hero::before {
	background-color: #fff;
	-webkit-animation: home_hero_scroll_line 2s cubic-bezier(.5, 0, 0, 1) infinite;
	animation: home_hero_scroll_line 2s cubic-bezier(.5, 0, 0, 1) infinite;
	-webkit-animation-delay: .3s;
	animation-delay: .3s;
	z-index: 5
}



@-webkit-keyframes home_hero_scroll_line {
	0% {
		-webkit-clip-path: polygon(0 -150%, 100% -150%, 100% 0, 0 0);
		clip-path: polygon(0 -150%, 100% -150%, 100% 0, 0 0)
	}

	100%,
	80% {
		-webkit-clip-path: polygon(0 100%, 100% 100%, 100% 350%, 0 350%);
		clip-path: polygon(0 100%, 100% 100%, 100% 350%, 0 350%)
	}
}

@keyframes home_hero_scroll_line {
	0% {
		-webkit-clip-path: polygon(0 -150%, 100% -150%, 100% 0, 0 0);
		clip-path: polygon(0 -150%, 100% -150%, 100% 0, 0 0)
	}

	100%,
	80% {
		-webkit-clip-path: polygon(0 100%, 100% 100%, 100% 350%, 0 350%);
		clip-path: polygon(0 100%, 100% 100%, 100% 350%, 0 350%)
	}
}

#page-home .section-hero .slide {
	height: 100vh;
	position: relative
}

#page-home .section-hero .slide-items {
	position: relative;
	z-index: 1
}

#page-home .section-hero .slide-items .item {
	height: 100vh;
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	overflow: hidden;
	opacity: 0;
	visibility: hidden;
	-webkit-transition: opacity 1s ease, visibility 1s ease;
	transition: opacity 1s ease, visibility 1s ease
}

#page-home .section-hero .slide-items .item.active {
	opacity: 1;
	visibility: visible
}

#page-home .section-hero .slide-items .item-cover {
	background-color: #112e55;
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 1;
	pointer-events: none
}

#page-home .section-hero .slide-items .item-cover::before {
	content: '';
/*
	background-image: -webkit-gradient(linear, left top, left bottom, from(transparent), color-stop(95%, #112e55));
	background-image: linear-gradient(to bottom, transparent, #112e55 98%);
*/
	position: absolute;
	top: 0;
	right: 0;
    opacity: 0.7;
	bottom: 0;
	left: 0;
	z-index: 3
}

#page-home .section-hero .slide-items .item-cover .blur-window,
#page-home .section-hero .slide-items .item-cover .image {
	position: absolute;
	top: -30px;
	right: -30px;
	bottom: -30px;
	left: -30px
}

#page-home .section-hero .slide-items .item-cover .blur-window img,
#page-home .section-hero .slide-items .item-cover .image img {
	display: block;
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
	pointer-events: none;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none
}

#page-home .section-hero .slide-items .item-cover .blur-window {
	background-color: grey;
	z-index: 2;
	-webkit-clip-path: polygon(0 0, 20% 0, 20% 100%, 0 100%);
	clip-path: polygon(0 0, 20% 0, 20% 100%, 0 100%);
	-webkit-transition: background-color 1s ease, -webkit-clip-path 1s cubic-bezier(.5, 0, 0, 1);
	transition: background-color 1s ease, -webkit-clip-path 1s cubic-bezier(.5, 0, 0, 1);
	transition: background-color 1s ease, clip-path 1s cubic-bezier(.5, 0, 0, 1);
	transition: background-color 1s ease, clip-path 1s cubic-bezier(.5, 0, 0, 1), -webkit-clip-path 1s cubic-bezier(.5, 0, 0, 1);
	-webkit-transition-delay: .5s;
	transition-delay: .5s
}

#page-home .section-hero .slide-items .item-cover .blur-window img {
	/*opacity: .5;*/
	opacity: 1;
	-webkit-filter: blur(10px);
	filter: blur(10px);
	-webkit-transition: opacity 1s ease;
	transition: opacity 1s ease
}

#page-home .section-hero .slide-items .item-cover .image {
	z-index: 1;
	opacity: 1;
	/*opacity: .5;*/
}

#page-home .section-hero .slide-items .item-hints {
	position: absolute;
        width: 100%;
    height: 100%;
/*
	top: 180px;
	right: calc(50% - 400px);
	bottom: 320px;
	left: calc(50% - 130px);
	z-index: 3;
	pointer-events: none
*/
}

#page-home .section-hero .slide-items .item-hints .hint {
	width: 60px;
	height: 60px;
	position: absolute;
	pointer-events: all;
/*	cursor: none;*/
	-webkit-transition: opacity .5s ease, -webkit-transform .5s cubic-bezier(.5, 0, 0, 1);
	transition: opacity .5s ease, -webkit-transform .5s cubic-bezier(.5, 0, 0, 1);
	transition: opacity .5s ease, transform .5s cubic-bezier(.5, 0, 0, 1);
	transition: opacity .5s ease, transform .5s cubic-bezier(.5, 0, 0, 1), -webkit-transform .5s cubic-bezier(.5, 0, 0, 1);
	-webkit-transition-delay: 1s;
	transition-delay: 1s
}

#page-home .section-hero .slide-items .item-hints .hint-radius {
	background-color: #51a8b1;
	border-radius: 50%;
	width: 250px;
	height: 250px;
	position: absolute;
	top: 50%;
	left: 50%;
	margin: -125px 0 0 -125px;
	opacity: 0;
	visibility: hidden;
	-webkit-transform: scale(0);
	transform: scale(0);
	-webkit-transition-property: background-color, opacity, visibility, -webkit-transform;
	transition-property: background-color, opacity, visibility, -webkit-transform;
	transition-property: background-color, opacity, visibility, transform;
	transition-property: background-color, opacity, visibility, transform, -webkit-transform;
	-webkit-transition-duration: .5s;
	transition-duration: .5s;
	-webkit-transition-timing-function: ease, ease, ease, cubic-bezier(.5, 0, 0, 1);
	transition-timing-function: ease, ease, ease, cubic-bezier(.5, 0, 0, 1)
}

#page-home .section-hero .slide-items .item-hints .hint-dot,
#page-home .section-hero .slide-items .item-hints .hint::after,
#page-home .section-hero .slide-items .item-hints .hint::before {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%)
}

#page-home .section-hero .slide-items .item-hints .hint-dot {
    opacity: 0;
	z-index: 3;
	border: 1px solid;
	border-radius: 50%;
	width: 60px;
	height: 60px;
	-webkit-transform: translate(-50%, -50%) scale(.95);
	transform: translate(-50%, -50%) scale(.95);
	-webkit-animation: home_hero_item_hints_border 2s linear infinite;
	animation: home_hero_item_hints_border 2s linear infinite
}

@-webkit-keyframes home_hero_item_hints_border {

	0%,
	100% {
		border-color: rgba(255, 255, 255, .6);
		-webkit-transform: translate(-50%, -50%) scale(.95);
		transform: translate(-50%, -50%) scale(.95)
	}

	50% {
		border-color: rgba(255, 255, 255, .3);
		-webkit-transform: translate(-50%, -50%) scale(1);
		transform: translate(-50%, -50%) scale(1)
	}
}

@keyframes home_hero_item_hints_border {

	0%,
	100% {
		border-color: rgba(255, 255, 255, .6);
		-webkit-transform: translate(-50%, -50%) scale(.95);
		transform: translate(-50%, -50%) scale(.95)
	}

	50% {
		border-color: rgba(255, 255, 255, .3);
		-webkit-transform: translate(-50%, -50%) scale(1);
		transform: translate(-50%, -50%) scale(1)
	}
}

#page-home .section-hero .slide-items .item-hints .hint::before {
    opacity: 0;
	background-color: #fff;
	width: 8px;
	height: 8px;
	z-index: 2;
	-webkit-clip-path: polygon(50% 0, 100% 50%, 50% 100%, 0 50%);
	clip-path: polygon(50% 0, 100% 50%, 50% 100%, 0 50%)
}

#page-home .section-hero .slide-items .item-hints .hint::after {
	border-radius: 50%;
	width: 2px;
	height: 2px;
	z-index: 1;
	-webkit-box-shadow: 0 0 50px 30px rgba(72, 170, 72, .3);
	box-shadow: 0 0 50px 30px rgba(72, 170, 72, .3);
	-webkit-animation: home_hero_item_hints_glow 2s cubic-bezier(.25, .1, .2, 1) infinite;
	animation: home_hero_item_hints_glow 2s cubic-bezier(.25, .1, .2, 1) infinite;
	-webkit-transition: opacity .5s ease;
	transition: opacity .5s ease
}

@-webkit-keyframes home_hero_item_hints_glow {
	0% {
		-webkit-box-shadow: 0 0 30px 5px #51a8b1;
		box-shadow: 0 0 30px 5px #51a8b1
	}

	70% {
		-webkit-box-shadow: 0 0 70px 50px rgba(72, 170, 72, 0);
		box-shadow: 0 0 70px 50px rgba(72, 170, 72, 0)
	}

	100% {
		-webkit-box-shadow: 0 0 0 50px rgba(72, 170, 72, 0);
		box-shadow: 0 0 0 50px rgba(72, 170, 72, 0)
	}
}

@keyframes home_hero_item_hints_glow {
	0% {
		-webkit-box-shadow: 0 0 30px 5px #51a8b1;
		box-shadow: 0 0 30px 5px #51a8b1
	}

	70% {
		-webkit-box-shadow: 0 0 70px 50px rgba(72, 170, 72, 0);
		box-shadow: 0 0 70px 50px rgba(72, 170, 72, 0)
	}

	100% {
		-webkit-box-shadow: 0 0 0 50px rgba(72, 170, 72, 0);
		box-shadow: 0 0 0 50px rgba(72, 170, 72, 0)
	}
}

#page-home .section-hero .slide-items .item-hints .hint-content {
	color: #fff;
	width: 300px;
	position: absolute;
	z-index: 5;
	position: absolute;
	padding: 12px 12px;
	opacity: 0;
	visibility: hidden;
	-webkit-transition: opacity .7s ease, visibility .7s ease;
	transition: opacity .7s ease, visibility .7s ease;
	pointer-events: none
}

#page-home .section-hero .slide-items .item-hints .hint-content::after,
#page-home .section-hero .slide-items .item-hints .hint-content::before {
	content: '';
	background-color: #fff;
	height: 1px;
	position: absolute;
	opacity: 0;
	-webkit-transition: opacity .5s ease;
	transition: opacity .5s ease;
	-webkit-transition-delay: 0s;
	transition-delay: 0s
}

#page-home .section-hero .slide-items .item-hints .hint-content::before {
	width: 180px
}

#page-home .section-hero .slide-items .item-hints .hint-content::after {
	width: 80px
}

#page-home .section-hero .slide-items .item-hints .hint-content p {
	font-size: 16px;
	line-height: 140%;
    margin-bottom: 0px;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale
}

#page-home .section-hero .slide-items .item-hints .hint-content p s {
	color: #fff;
	display: inline-block;
	-webkit-transform: translateY(2px);
	transform: translateY(2px);
	-webkit-transition: color 1s ease, opacity .5s ease, -webkit-transform .5s cubic-bezier(.5, 0, 0, 1);
	transition: color 1s ease, opacity .5s ease, -webkit-transform .5s cubic-bezier(.5, 0, 0, 1);
	transition: color 1s ease, opacity .5s ease, transform .5s cubic-bezier(.5, 0, 0, 1);
	transition: color 1s ease, opacity .5s ease, transform .5s cubic-bezier(.5, 0, 0, 1), -webkit-transform .5s cubic-bezier(.5, 0, 0, 1)
}

#page-home .section-hero .slide-items .item-hints .hint.split-text-transition .hint-content p s {
	color: #fff;
	opacity: 1;
	-webkit-transform: translateY(0);
	transform: translateY(0)
}

#page-home .section-hero .slide-items .item-hints .hint.split-text-transition .hint-content p s:nth-child(1) {
	-webkit-transition-delay: 30ms;
	transition-delay: 30ms
}

#page-home .section-hero .slide-items .item-hints .hint.split-text-transition .hint-content p s:nth-child(2) {
	-webkit-transition-delay: 60ms;
	transition-delay: 60ms
}

#page-home .section-hero .slide-items .item-hints .hint.split-text-transition .hint-content p s:nth-child(3) {
	-webkit-transition-delay: 90ms;
	transition-delay: 90ms
}

#page-home .section-hero .slide-items .item-hints .hint.split-text-transition .hint-content p s:nth-child(4) {
	-webkit-transition-delay: .12s;
	transition-delay: .12s
}

#page-home .section-hero .slide-items .item-hints .hint.split-text-transition .hint-content p s:nth-child(5) {
	-webkit-transition-delay: .15s;
	transition-delay: .15s
}

#page-home .section-hero .slide-items .item-hints .hint.split-text-transition .hint-content p s:nth-child(6) {
	-webkit-transition-delay: .18s;
	transition-delay: .18s
}

#page-home .section-hero .slide-items .item-hints .hint.split-text-transition .hint-content p s:nth-child(7) {
	-webkit-transition-delay: .21s;
	transition-delay: .21s
}

#page-home .section-hero .slide-items .item-hints .hint.split-text-transition .hint-content p s:nth-child(8) {
	-webkit-transition-delay: .24s;
	transition-delay: .24s
}

#page-home .section-hero .slide-items .item-hints .hint.split-text-transition .hint-content p s:nth-child(9) {
	-webkit-transition-delay: .27s;
	transition-delay: .27s
}

#page-home .section-hero .slide-items .item-hints .hint.split-text-transition .hint-content p s:nth-child(10) {
	-webkit-transition-delay: .3s;
	transition-delay: .3s
}

#page-home .section-hero .slide-items .item-hints .hint.split-text-transition .hint-content p s:nth-child(11) {
	-webkit-transition-delay: .33s;
	transition-delay: .33s
}

#page-home .section-hero .slide-items .item-hints .hint.split-text-transition .hint-content p s:nth-child(12) {
	-webkit-transition-delay: .36s;
	transition-delay: .36s
}

#page-home .section-hero .slide-items .item-hints .hint.split-text-transition .hint-content p s:nth-child(13) {
	-webkit-transition-delay: .39s;
	transition-delay: .39s
}

#page-home .section-hero .slide-items .item-hints .hint.split-text-transition .hint-content p s:nth-child(14) {
	-webkit-transition-delay: .42s;
	transition-delay: .42s
}

#page-home .section-hero .slide-items .item-hints .hint.split-text-transition .hint-content p s:nth-child(15) {
	-webkit-transition-delay: .45s;
	transition-delay: .45s
}

#page-home .section-hero .slide-items .item-hints .hint.split-text-transition .hint-content p s:nth-child(16) {
	-webkit-transition-delay: .48s;
	transition-delay: .48s
}

#page-home .section-hero .slide-items .item-hints .hint.split-text-transition .hint-content p s:nth-child(17) {
	-webkit-transition-delay: .51s;
	transition-delay: .51s
}

#page-home .section-hero .slide-items .item-hints .hint.split-text-transition .hint-content p s:nth-child(18) {
	-webkit-transition-delay: .54s;
	transition-delay: .54s
}

#page-home .section-hero .slide-items .item-hints .hint.split-text-transition .hint-content p s:nth-child(19) {
	-webkit-transition-delay: .57s;
	transition-delay: .57s
}

#page-home .section-hero .slide-items .item-hints .hint.split-text-transition .hint-content p s:nth-child(20) {
	-webkit-transition-delay: .6s;
	transition-delay: .6s
}

#page-home .section-hero .slide-items .item-hints .hint.split-text-transition .hint-content p s:nth-child(21) {
	-webkit-transition-delay: .63s;
	transition-delay: .63s
}

#page-home .section-hero .slide-items .item-hints .hint.split-text-transition .hint-content p s:nth-child(22) {
	-webkit-transition-delay: .66s;
	transition-delay: .66s
}

#page-home .section-hero .slide-items .item-hints .hint.split-text-transition .hint-content p s:nth-child(23) {
	-webkit-transition-delay: .69s;
	transition-delay: .69s
}

#page-home .section-hero .slide-items .item-hints .hint.split-text-transition .hint-content p s:nth-child(24) {
	-webkit-transition-delay: .72s;
	transition-delay: .72s
}

#page-home .section-hero .slide-items .item-hints .hint.split-text-transition .hint-content p s:nth-child(25) {
	-webkit-transition-delay: .75s;
	transition-delay: .75s
}

#page-home .section-hero .slide-items .item-hints .hint.split-text-transition .hint-content p s:nth-child(26) {
	-webkit-transition-delay: .78s;
	transition-delay: .78s
}

#page-home .section-hero .slide-items .item-hints .hint.split-text-transition .hint-content p s:nth-child(27) {
	-webkit-transition-delay: .81s;
	transition-delay: .81s
}

#page-home .section-hero .slide-items .item-hints .hint.split-text-transition .hint-content p s:nth-child(28) {
	-webkit-transition-delay: .84s;
	transition-delay: .84s
}

#page-home .section-hero .slide-items .item-hints .hint.split-text-transition .hint-content p s:nth-child(29) {
	-webkit-transition-delay: .87s;
	transition-delay: .87s
}

#page-home .section-hero .slide-items .item-hints .hint.split-text-transition .hint-content p s:nth-child(30) {
	-webkit-transition-delay: .9s;
	transition-delay: .9s
}

#page-home .section-hero .slide-items .item-hints .hint.split-text-transition .hint-content p s:nth-child(31) {
	-webkit-transition-delay: .93s;
	transition-delay: .93s
}

#page-home .section-hero .slide-items .item-hints .hint.split-text-transition .hint-content p s:nth-child(32) {
	-webkit-transition-delay: .96s;
	transition-delay: .96s
}

#page-home .section-hero .slide-items .item-hints .hint.split-text-transition .hint-content p s:nth-child(33) {
	-webkit-transition-delay: .99s;
	transition-delay: .99s
}

#page-home .section-hero .slide-items .item-hints .hint.split-text-transition .hint-content p s:nth-child(34) {
	-webkit-transition-delay: 1.02s;
	transition-delay: 1.02s
}

#page-home .section-hero .slide-items .item-hints .hint.split-text-transition .hint-content p s:nth-child(35) {
	-webkit-transition-delay: 1.05s;
	transition-delay: 1.05s
}

#page-home .section-hero .slide-items .item-hints .hint.split-text-transition .hint-content p s:nth-child(36) {
	-webkit-transition-delay: 1.08s;
	transition-delay: 1.08s
}

#page-home .section-hero .slide-items .item-hints .hint.split-text-transition .hint-content p s:nth-child(37) {
	-webkit-transition-delay: 1.11s;
	transition-delay: 1.11s
}

#page-home .section-hero .slide-items .item-hints .hint.split-text-transition .hint-content p s:nth-child(38) {
	-webkit-transition-delay: 1.14s;
	transition-delay: 1.14s
}

#page-home .section-hero .slide-items .item-hints .hint.split-text-transition .hint-content p s:nth-child(39) {
	-webkit-transition-delay: 1.17s;
	transition-delay: 1.17s
}

#page-home .section-hero .slide-items .item-hints .hint.split-text-transition .hint-content p s:nth-child(40) {
	-webkit-transition-delay: 1.2s;
	transition-delay: 1.2s
}

#page-home .section-hero .slide-items .item-hints .hint.split-text-transition .hint-content p s:nth-child(41) {
	-webkit-transition-delay: 1.23s;
	transition-delay: 1.23s
}

#page-home .section-hero .slide-items .item-hints .hint.split-text-transition .hint-content p s:nth-child(42) {
	-webkit-transition-delay: 1.26s;
	transition-delay: 1.26s
}

#page-home .section-hero .slide-items .item-hints .hint.split-text-transition .hint-content p s:nth-child(43) {
	-webkit-transition-delay: 1.29s;
	transition-delay: 1.29s
}

#page-home .section-hero .slide-items .item-hints .hint.split-text-transition .hint-content p s:nth-child(44) {
	-webkit-transition-delay: 1.32s;
	transition-delay: 1.32s
}

#page-home .section-hero .slide-items .item-hints .hint.split-text-transition .hint-content p s:nth-child(45) {
	-webkit-transition-delay: 1.35s;
	transition-delay: 1.35s
}

#page-home .section-hero .slide-items .item-hints .hint.split-text-transition .hint-content p s:nth-child(46) {
	-webkit-transition-delay: 1.38s;
	transition-delay: 1.38s
}

#page-home .section-hero .slide-items .item-hints .hint.split-text-transition .hint-content p s:nth-child(47) {
	-webkit-transition-delay: 1.41s;
	transition-delay: 1.41s
}

#page-home .section-hero .slide-items .item-hints .hint.split-text-transition .hint-content p s:nth-child(48) {
	-webkit-transition-delay: 1.44s;
	transition-delay: 1.44s
}

#page-home .section-hero .slide-items .item-hints .hint.split-text-transition .hint-content p s:nth-child(49) {
	-webkit-transition-delay: 1.47s;
	transition-delay: 1.47s
}

#page-home .section-hero .slide-items .item-hints .hint.split-text-transition .hint-content p s:nth-child(50) {
	-webkit-transition-delay: 1.5s;
	transition-delay: 1.5s
}

#page-home .section-hero .slide-items .item-hints .hint.split-text-transition .hint-content p s:nth-child(51) {
	-webkit-transition-delay: 1.53s;
	transition-delay: 1.53s
}

#page-home .section-hero .slide-items .item-hints .hint.split-text-transition .hint-content p s:nth-child(52) {
	-webkit-transition-delay: 1.56s;
	transition-delay: 1.56s
}

#page-home .section-hero .slide-items .item-hints .hint.split-text-transition .hint-content p s:nth-child(53) {
	-webkit-transition-delay: 1.59s;
	transition-delay: 1.59s
}

#page-home .section-hero .slide-items .item-hints .hint.split-text-transition .hint-content p s:nth-child(54) {
	-webkit-transition-delay: 1.62s;
	transition-delay: 1.62s
}

#page-home .section-hero .slide-items .item-hints .hint.split-text-transition .hint-content p s:nth-child(55) {
	-webkit-transition-delay: 1.65s;
	transition-delay: 1.65s
}

#page-home .section-hero .slide-items .item-hints .hint.split-text-transition .hint-content p s:nth-child(56) {
	-webkit-transition-delay: 1.68s;
	transition-delay: 1.68s
}

#page-home .section-hero .slide-items .item-hints .hint.split-text-transition .hint-content p s:nth-child(57) {
	-webkit-transition-delay: 1.71s;
	transition-delay: 1.71s
}

#page-home .section-hero .slide-items .item-hints .hint.split-text-transition .hint-content p s:nth-child(58) {
	-webkit-transition-delay: 1.74s;
	transition-delay: 1.74s
}

#page-home .section-hero .slide-items .item-hints .hint.split-text-transition .hint-content p s:nth-child(59) {
	-webkit-transition-delay: 1.77s;
	transition-delay: 1.77s
}

#page-home .section-hero .slide-items .item-hints .hint.split-text-transition .hint-content p s:nth-child(60) {
	-webkit-transition-delay: 1.8s;
	transition-delay: 1.8s
}

#page-home .section-hero .slide-items .item-hints .hint.split-text-transition .hint-content p s:nth-child(61) {
	-webkit-transition-delay: 1.83s;
	transition-delay: 1.83s
}

#page-home .section-hero .slide-items .item-hints .hint.split-text-transition .hint-content p s:nth-child(62) {
	-webkit-transition-delay: 1.86s;
	transition-delay: 1.86s
}

#page-home .section-hero .slide-items .item-hints .hint.split-text-transition .hint-content p s:nth-child(63) {
	-webkit-transition-delay: 1.89s;
	transition-delay: 1.89s
}

#page-home .section-hero .slide-items .item-hints .hint.split-text-transition .hint-content p s:nth-child(64) {
	-webkit-transition-delay: 1.92s;
	transition-delay: 1.92s
}

#page-home .section-hero .slide-items .item-hints .hint.split-text-transition .hint-content p s:nth-child(65) {
	-webkit-transition-delay: 1.95s;
	transition-delay: 1.95s
}

#page-home .section-hero .slide-items .item-hints .hint.split-text-transition .hint-content p s:nth-child(66) {
	-webkit-transition-delay: 1.98s;
	transition-delay: 1.98s
}

#page-home .section-hero .slide-items .item-hints .hint.split-text-transition .hint-content p s:nth-child(67) {
	-webkit-transition-delay: 2.01s;
	transition-delay: 2.01s
}

#page-home .section-hero .slide-items .item-hints .hint.split-text-transition .hint-content p s:nth-child(68) {
	-webkit-transition-delay: 2.04s;
	transition-delay: 2.04s
}

#page-home .section-hero .slide-items .item-hints .hint.split-text-transition .hint-content p s:nth-child(69) {
	-webkit-transition-delay: 2.07s;
	transition-delay: 2.07s
}

#page-home .section-hero .slide-items .item-hints .hint.split-text-transition .hint-content p s:nth-child(70) {
	-webkit-transition-delay: 2.1s;
	transition-delay: 2.1s
}

#page-home .section-hero .slide-items .item-hints .hint.split-text-transition .hint-content p s:nth-child(71) {
	-webkit-transition-delay: 2.13s;
	transition-delay: 2.13s
}

#page-home .section-hero .slide-items .item-hints .hint.split-text-transition .hint-content p s:nth-child(72) {
	-webkit-transition-delay: 2.16s;
	transition-delay: 2.16s
}

#page-home .section-hero .slide-items .item-hints .hint.split-text-transition .hint-content p s:nth-child(73) {
	-webkit-transition-delay: 2.19s;
	transition-delay: 2.19s
}

#page-home .section-hero .slide-items .item-hints .hint.split-text-transition .hint-content p s:nth-child(74) {
	-webkit-transition-delay: 2.22s;
	transition-delay: 2.22s
}

#page-home .section-hero .slide-items .item-hints .hint.split-text-transition .hint-content p s:nth-child(75) {
	-webkit-transition-delay: 2.25s;
	transition-delay: 2.25s
}

#page-home .section-hero .slide-items .item-hints .hint.split-text-transition .hint-content p s:nth-child(76) {
	-webkit-transition-delay: 2.28s;
	transition-delay: 2.28s
}

#page-home .section-hero .slide-items .item-hints .hint.split-text-transition .hint-content p s:nth-child(77) {
	-webkit-transition-delay: 2.31s;
	transition-delay: 2.31s
}

#page-home .section-hero .slide-items .item-hints .hint.split-text-transition .hint-content p s:nth-child(78) {
	-webkit-transition-delay: 2.34s;
	transition-delay: 2.34s
}

#page-home .section-hero .slide-items .item-hints .hint.split-text-transition .hint-content p s:nth-child(79) {
	-webkit-transition-delay: 2.37s;
	transition-delay: 2.37s
}

#page-home .section-hero .slide-items .item-hints .hint.split-text-transition .hint-content p s:nth-child(80) {
	-webkit-transition-delay: 2.4s;
	transition-delay: 2.4s
}

#page-home .section-hero .slide-items .item-hints .hint.split-text-transition .hint-content p s:nth-child(81) {
	-webkit-transition-delay: 2.43s;
	transition-delay: 2.43s
}

#page-home .section-hero .slide-items .item-hints .hint.split-text-transition .hint-content p s:nth-child(82) {
	-webkit-transition-delay: 2.46s;
	transition-delay: 2.46s
}

#page-home .section-hero .slide-items .item-hints .hint.split-text-transition .hint-content p s:nth-child(83) {
	-webkit-transition-delay: 2.49s;
	transition-delay: 2.49s
}

#page-home .section-hero .slide-items .item-hints .hint.split-text-transition .hint-content p s:nth-child(84) {
	-webkit-transition-delay: 2.52s;
	transition-delay: 2.52s
}

#page-home .section-hero .slide-items .item-hints .hint.split-text-transition .hint-content p s:nth-child(85) {
	-webkit-transition-delay: 2.55s;
	transition-delay: 2.55s
}

#page-home .section-hero .slide-items .item-hints .hint.split-text-transition .hint-content p s:nth-child(86) {
	-webkit-transition-delay: 2.58s;
	transition-delay: 2.58s
}

#page-home .section-hero .slide-items .item-hints .hint.split-text-transition .hint-content p s:nth-child(87) {
	-webkit-transition-delay: 2.61s;
	transition-delay: 2.61s
}

#page-home .section-hero .slide-items .item-hints .hint.split-text-transition .hint-content p s:nth-child(88) {
	-webkit-transition-delay: 2.64s;
	transition-delay: 2.64s
}

#page-home .section-hero .slide-items .item-hints .hint.split-text-transition .hint-content p s:nth-child(89) {
	-webkit-transition-delay: 2.67s;
	transition-delay: 2.67s
}

#page-home .section-hero .slide-items .item-hints .hint.split-text-transition .hint-content p s:nth-child(90) {
	-webkit-transition-delay: 2.7s;
	transition-delay: 2.7s
}

#page-home .section-hero .slide-items .item-hints .hint.split-text-transition .hint-content p s:nth-child(91) {
	-webkit-transition-delay: 2.73s;
	transition-delay: 2.73s
}

#page-home .section-hero .slide-items .item-hints .hint.split-text-transition .hint-content p s:nth-child(92) {
	-webkit-transition-delay: 2.76s;
	transition-delay: 2.76s
}

#page-home .section-hero .slide-items .item-hints .hint.split-text-transition .hint-content p s:nth-child(93) {
	-webkit-transition-delay: 2.79s;
	transition-delay: 2.79s
}

#page-home .section-hero .slide-items .item-hints .hint.split-text-transition .hint-content p s:nth-child(94) {
	-webkit-transition-delay: 2.82s;
	transition-delay: 2.82s
}

#page-home .section-hero .slide-items .item-hints .hint.split-text-transition .hint-content p s:nth-child(95) {
	-webkit-transition-delay: 2.85s;
	transition-delay: 2.85s
}

#page-home .section-hero .slide-items .item-hints .hint.split-text-transition .hint-content p s:nth-child(96) {
	-webkit-transition-delay: 2.88s;
	transition-delay: 2.88s
}

#page-home .section-hero .slide-items .item-hints .hint.split-text-transition .hint-content p s:nth-child(97) {
	-webkit-transition-delay: 2.91s;
	transition-delay: 2.91s
}

#page-home .section-hero .slide-items .item-hints .hint.split-text-transition .hint-content p s:nth-child(98) {
	-webkit-transition-delay: 2.94s;
	transition-delay: 2.94s
}

#page-home .section-hero .slide-items .item-hints .hint.split-text-transition .hint-content p s:nth-child(99) {
	-webkit-transition-delay: 2.97s;
	transition-delay: 2.97s
}

#page-home .section-hero .slide-items .item-hints .hint.split-text-transition .hint-content p s:nth-child(100) {
	-webkit-transition-delay: 3s;
	transition-delay: 3s
}

#page-home .section-hero .slide-items .item-hints .hint.split-text-transition .hint-content p s:nth-child(101) {
	-webkit-transition-delay: 3.03s;
	transition-delay: 3.03s
}

#page-home .section-hero .slide-items .item-hints .hint.split-text-transition .hint-content p s:nth-child(102) {
	-webkit-transition-delay: 3.06s;
	transition-delay: 3.06s
}

#page-home .section-hero .slide-items .item-hints .hint.split-text-transition .hint-content p s:nth-child(103) {
	-webkit-transition-delay: 3.09s;
	transition-delay: 3.09s
}

#page-home .section-hero .slide-items .item-hints .hint.split-text-transition .hint-content p s:nth-child(104) {
	-webkit-transition-delay: 3.12s;
	transition-delay: 3.12s
}

#page-home .section-hero .slide-items .item-hints .hint.split-text-transition .hint-content p s:nth-child(105) {
	-webkit-transition-delay: 3.15s;
	transition-delay: 3.15s
}

#page-home .section-hero .slide-items .item-hints .hint.split-text-transition .hint-content p s:nth-child(106) {
	-webkit-transition-delay: 3.18s;
	transition-delay: 3.18s
}

#page-home .section-hero .slide-items .item-hints .hint.split-text-transition .hint-content p s:nth-child(107) {
	-webkit-transition-delay: 3.21s;
	transition-delay: 3.21s
}

#page-home .section-hero .slide-items .item-hints .hint.split-text-transition .hint-content p s:nth-child(108) {
	-webkit-transition-delay: 3.24s;
	transition-delay: 3.24s
}

#page-home .section-hero .slide-items .item-hints .hint.split-text-transition .hint-content p s:nth-child(109) {
	-webkit-transition-delay: 3.27s;
	transition-delay: 3.27s
}

#page-home .section-hero .slide-items .item-hints .hint.split-text-transition .hint-content p s:nth-child(110) {
	-webkit-transition-delay: 3.3s;
	transition-delay: 3.3s
}

#page-home .section-hero .slide-items .item-hints .hint.split-text-transition .hint-content p s:nth-child(111) {
	-webkit-transition-delay: 3.33s;
	transition-delay: 3.33s
}

#page-home .section-hero .slide-items .item-hints .hint.split-text-transition .hint-content p s:nth-child(112) {
	-webkit-transition-delay: 3.36s;
	transition-delay: 3.36s
}

#page-home .section-hero .slide-items .item-hints .hint.split-text-transition .hint-content p s:nth-child(113) {
	-webkit-transition-delay: 3.39s;
	transition-delay: 3.39s
}

#page-home .section-hero .slide-items .item-hints .hint.split-text-transition .hint-content p s:nth-child(114) {
	-webkit-transition-delay: 3.42s;
	transition-delay: 3.42s
}

#page-home .section-hero .slide-items .item-hints .hint.split-text-transition .hint-content p s:nth-child(115) {
	-webkit-transition-delay: 3.45s;
	transition-delay: 3.45s
}

#page-home .section-hero .slide-items .item-hints .hint.split-text-transition .hint-content p s:nth-child(116) {
	-webkit-transition-delay: 3.48s;
	transition-delay: 3.48s
}

#page-home .section-hero .slide-items .item-hints .hint.split-text-transition .hint-content p s:nth-child(117) {
	-webkit-transition-delay: 3.51s;
	transition-delay: 3.51s
}

#page-home .section-hero .slide-items .item-hints .hint.split-text-transition .hint-content p s:nth-child(118) {
	-webkit-transition-delay: 3.54s;
	transition-delay: 3.54s
}

#page-home .section-hero .slide-items .item-hints .hint.split-text-transition .hint-content p s:nth-child(119) {
	-webkit-transition-delay: 3.57s;
	transition-delay: 3.57s
}

#page-home .section-hero .slide-items .item-hints .hint.split-text-transition .hint-content p s:nth-child(120) {
	-webkit-transition-delay: 3.6s;
	transition-delay: 3.6s
}

#page-home .section-hero .slide-items .item-hints .hint.split-text-transition .hint-content p s:nth-child(121) {
	-webkit-transition-delay: 3.63s;
	transition-delay: 3.63s
}

#page-home .section-hero .slide-items .item-hints .hint.split-text-transition .hint-content p s:nth-child(122) {
	-webkit-transition-delay: 3.66s;
	transition-delay: 3.66s
}

#page-home .section-hero .slide-items .item-hints .hint.split-text-transition .hint-content p s:nth-child(123) {
	-webkit-transition-delay: 3.69s;
	transition-delay: 3.69s
}

#page-home .section-hero .slide-items .item-hints .hint.split-text-transition .hint-content p s:nth-child(124) {
	-webkit-transition-delay: 3.72s;
	transition-delay: 3.72s
}

#page-home .section-hero .slide-items .item-hints .hint.split-text-transition .hint-content p s:nth-child(125) {
	-webkit-transition-delay: 3.75s;
	transition-delay: 3.75s
}

#page-home .section-hero .slide-items .item-hints .hint.split-text-transition .hint-content p s:nth-child(126) {
	-webkit-transition-delay: 3.78s;
	transition-delay: 3.78s
}

#page-home .section-hero .slide-items .item-hints .hint.split-text-transition .hint-content p s:nth-child(127) {
	-webkit-transition-delay: 3.81s;
	transition-delay: 3.81s
}

#page-home .section-hero .slide-items .item-hints .hint.split-text-transition .hint-content p s:nth-child(128) {
	-webkit-transition-delay: 3.84s;
	transition-delay: 3.84s
}

#page-home .section-hero .slide-items .item-hints .hint.split-text-transition .hint-content p s:nth-child(129) {
	-webkit-transition-delay: 3.87s;
	transition-delay: 3.87s
}

#page-home .section-hero .slide-items .item-hints .hint.split-text-transition .hint-content p s:nth-child(130) {
	-webkit-transition-delay: 3.9s;
	transition-delay: 3.9s
}

#page-home .section-hero .slide-items .item-hints .hint.split-text-transition .hint-content p s:nth-child(131) {
	-webkit-transition-delay: 3.93s;
	transition-delay: 3.93s
}

#page-home .section-hero .slide-items .item-hints .hint.split-text-transition .hint-content p s:nth-child(132) {
	-webkit-transition-delay: 3.96s;
	transition-delay: 3.96s
}

#page-home .section-hero .slide-items .item-hints .hint.split-text-transition .hint-content p s:nth-child(133) {
	-webkit-transition-delay: 3.99s;
	transition-delay: 3.99s
}

#page-home .section-hero .slide-items .item-hints .hint.split-text-transition .hint-content p s:nth-child(134) {
	-webkit-transition-delay: 4.02s;
	transition-delay: 4.02s
}

#page-home .section-hero .slide-items .item-hints .hint.split-text-transition .hint-content p s:nth-child(135) {
	-webkit-transition-delay: 4.05s;
	transition-delay: 4.05s
}

#page-home .section-hero .slide-items .item-hints .hint.split-text-transition .hint-content p s:nth-child(136) {
	-webkit-transition-delay: 4.08s;
	transition-delay: 4.08s
}

#page-home .section-hero .slide-items .item-hints .hint.split-text-transition .hint-content p s:nth-child(137) {
	-webkit-transition-delay: 4.11s;
	transition-delay: 4.11s
}

#page-home .section-hero .slide-items .item-hints .hint.split-text-transition .hint-content p s:nth-child(138) {
	-webkit-transition-delay: 4.14s;
	transition-delay: 4.14s
}

#page-home .section-hero .slide-items .item-hints .hint.split-text-transition .hint-content p s:nth-child(139) {
	-webkit-transition-delay: 4.17s;
	transition-delay: 4.17s
}

#page-home .section-hero .slide-items .item-hints .hint.split-text-transition .hint-content p s:nth-child(140) {
	-webkit-transition-delay: 4.2s;
	transition-delay: 4.2s
}

#page-home .section-hero .slide-items .item-hints .hint.split-text-transition .hint-content p s:nth-child(141) {
	-webkit-transition-delay: 4.23s;
	transition-delay: 4.23s
}

#page-home .section-hero .slide-items .item-hints .hint.split-text-transition .hint-content p s:nth-child(142) {
	-webkit-transition-delay: 4.26s;
	transition-delay: 4.26s
}

#page-home .section-hero .slide-items .item-hints .hint.split-text-transition .hint-content p s:nth-child(143) {
	-webkit-transition-delay: 4.29s;
	transition-delay: 4.29s
}

#page-home .section-hero .slide-items .item-hints .hint.split-text-transition .hint-content p s:nth-child(144) {
	-webkit-transition-delay: 4.32s;
	transition-delay: 4.32s
}

#page-home .section-hero .slide-items .item-hints .hint.split-text-transition .hint-content p s:nth-child(145) {
	-webkit-transition-delay: 4.35s;
	transition-delay: 4.35s
}

#page-home .section-hero .slide-items .item-hints .hint.split-text-transition .hint-content p s:nth-child(146) {
	-webkit-transition-delay: 4.38s;
	transition-delay: 4.38s
}

#page-home .section-hero .slide-items .item-hints .hint.split-text-transition .hint-content p s:nth-child(147) {
	-webkit-transition-delay: 4.41s;
	transition-delay: 4.41s
}

#page-home .section-hero .slide-items .item-hints .hint.split-text-transition .hint-content p s:nth-child(148) {
	-webkit-transition-delay: 4.44s;
	transition-delay: 4.44s
}

#page-home .section-hero .slide-items .item-hints .hint.split-text-transition .hint-content p s:nth-child(149) {
	-webkit-transition-delay: 4.47s;
	transition-delay: 4.47s
}

#page-home .section-hero .slide-items .item-hints .hint.split-text-transition .hint-content p s:nth-child(150) {
	-webkit-transition-delay: 4.5s;
	transition-delay: 4.5s
}

#page-home .section-hero .slide-items .item-hints .hint.split-text-transition .hint-content p s:nth-child(151) {
	-webkit-transition-delay: 4.53s;
	transition-delay: 4.53s
}

#page-home .section-hero .slide-items .item-hints .hint.split-text-transition .hint-content p s:nth-child(152) {
	-webkit-transition-delay: 4.56s;
	transition-delay: 4.56s
}

#page-home .section-hero .slide-items .item-hints .hint.split-text-transition .hint-content p s:nth-child(153) {
	-webkit-transition-delay: 4.59s;
	transition-delay: 4.59s
}

#page-home .section-hero .slide-items .item-hints .hint.split-text-transition .hint-content p s:nth-child(154) {
	-webkit-transition-delay: 4.62s;
	transition-delay: 4.62s
}

#page-home .section-hero .slide-items .item-hints .hint.split-text-transition .hint-content p s:nth-child(155) {
	-webkit-transition-delay: 4.65s;
	transition-delay: 4.65s
}

#page-home .section-hero .slide-items .item-hints .hint.split-text-transition .hint-content p s:nth-child(156) {
	-webkit-transition-delay: 4.68s;
	transition-delay: 4.68s
}

#page-home .section-hero .slide-items .item-hints .hint.split-text-transition .hint-content p s:nth-child(157) {
	-webkit-transition-delay: 4.71s;
	transition-delay: 4.71s
}

#page-home .section-hero .slide-items .item-hints .hint.split-text-transition .hint-content p s:nth-child(158) {
	-webkit-transition-delay: 4.74s;
	transition-delay: 4.74s
}

#page-home .section-hero .slide-items .item-hints .hint.split-text-transition .hint-content p s:nth-child(159) {
	-webkit-transition-delay: 4.77s;
	transition-delay: 4.77s
}

#page-home .section-hero .slide-items .item-hints .hint.split-text-transition .hint-content p s:nth-child(160) {
	-webkit-transition-delay: 4.8s;
	transition-delay: 4.8s
}

#page-home .section-hero .slide-items .item-hints .hint.split-text-transition .hint-content p s:nth-child(161) {
	-webkit-transition-delay: 4.83s;
	transition-delay: 4.83s
}

#page-home .section-hero .slide-items .item-hints .hint.split-text-transition .hint-content p s:nth-child(162) {
	-webkit-transition-delay: 4.86s;
	transition-delay: 4.86s
}

#page-home .section-hero .slide-items .item-hints .hint.split-text-transition .hint-content p s:nth-child(163) {
	-webkit-transition-delay: 4.89s;
	transition-delay: 4.89s
}

#page-home .section-hero .slide-items .item-hints .hint.split-text-transition .hint-content p s:nth-child(164) {
	-webkit-transition-delay: 4.92s;
	transition-delay: 4.92s
}

#page-home .section-hero .slide-items .item-hints .hint.split-text-transition .hint-content p s:nth-child(165) {
	-webkit-transition-delay: 4.95s;
	transition-delay: 4.95s
}

#page-home .section-hero .slide-items .item-hints .hint.split-text-transition .hint-content p s:nth-child(166) {
	-webkit-transition-delay: 4.98s;
	transition-delay: 4.98s
}

#page-home .section-hero .slide-items .item-hints .hint.split-text-transition .hint-content p s:nth-child(167) {
	-webkit-transition-delay: 5.01s;
	transition-delay: 5.01s
}

#page-home .section-hero .slide-items .item-hints .hint.split-text-transition .hint-content p s:nth-child(168) {
	-webkit-transition-delay: 5.04s;
	transition-delay: 5.04s
}

#page-home .section-hero .slide-items .item-hints .hint.split-text-transition .hint-content p s:nth-child(169) {
	-webkit-transition-delay: 5.07s;
	transition-delay: 5.07s
}

#page-home .section-hero .slide-items .item-hints .hint.split-text-transition .hint-content p s:nth-child(170) {
	-webkit-transition-delay: 5.1s;
	transition-delay: 5.1s
}

#page-home .section-hero .slide-items .item-hints .hint.split-text-transition .hint-content p s:nth-child(171) {
	-webkit-transition-delay: 5.13s;
	transition-delay: 5.13s
}

#page-home .section-hero .slide-items .item-hints .hint.split-text-transition .hint-content p s:nth-child(172) {
	-webkit-transition-delay: 5.16s;
	transition-delay: 5.16s
}

#page-home .section-hero .slide-items .item-hints .hint.split-text-transition .hint-content p s:nth-child(173) {
	-webkit-transition-delay: 5.19s;
	transition-delay: 5.19s
}

#page-home .section-hero .slide-items .item-hints .hint.split-text-transition .hint-content p s:nth-child(174) {
	-webkit-transition-delay: 5.22s;
	transition-delay: 5.22s
}

#page-home .section-hero .slide-items .item-hints .hint.split-text-transition .hint-content p s:nth-child(175) {
	-webkit-transition-delay: 5.25s;
	transition-delay: 5.25s
}

#page-home .section-hero .slide-items .item-hints .hint.split-text-transition .hint-content p s:nth-child(176) {
	-webkit-transition-delay: 5.28s;
	transition-delay: 5.28s
}

#page-home .section-hero .slide-items .item-hints .hint.split-text-transition .hint-content p s:nth-child(177) {
	-webkit-transition-delay: 5.31s;
	transition-delay: 5.31s
}

#page-home .section-hero .slide-items .item-hints .hint.split-text-transition .hint-content p s:nth-child(178) {
	-webkit-transition-delay: 5.34s;
	transition-delay: 5.34s
}

#page-home .section-hero .slide-items .item-hints .hint.split-text-transition .hint-content p s:nth-child(179) {
	-webkit-transition-delay: 5.37s;
	transition-delay: 5.37s
}

#page-home .section-hero .slide-items .item-hints .hint.split-text-transition .hint-content p s:nth-child(180) {
	-webkit-transition-delay: 5.4s;
	transition-delay: 5.4s
}

#page-home .section-hero .slide-items .item-hints .hint.split-text-transition .hint-content p s:nth-child(181) {
	-webkit-transition-delay: 5.43s;
	transition-delay: 5.43s
}

#page-home .section-hero .slide-items .item-hints .hint.split-text-transition .hint-content p s:nth-child(182) {
	-webkit-transition-delay: 5.46s;
	transition-delay: 5.46s
}

#page-home .section-hero .slide-items .item-hints .hint.split-text-transition .hint-content p s:nth-child(183) {
	-webkit-transition-delay: 5.49s;
	transition-delay: 5.49s
}

#page-home .section-hero .slide-items .item-hints .hint.split-text-transition .hint-content p s:nth-child(184) {
	-webkit-transition-delay: 5.52s;
	transition-delay: 5.52s
}

#page-home .section-hero .slide-items .item-hints .hint.split-text-transition .hint-content p s:nth-child(185) {
	-webkit-transition-delay: 5.55s;
	transition-delay: 5.55s
}

#page-home .section-hero .slide-items .item-hints .hint.split-text-transition .hint-content p s:nth-child(186) {
	-webkit-transition-delay: 5.58s;
	transition-delay: 5.58s
}

#page-home .section-hero .slide-items .item-hints .hint.split-text-transition .hint-content p s:nth-child(187) {
	-webkit-transition-delay: 5.61s;
	transition-delay: 5.61s
}

#page-home .section-hero .slide-items .item-hints .hint.split-text-transition .hint-content p s:nth-child(188) {
	-webkit-transition-delay: 5.64s;
	transition-delay: 5.64s
}

#page-home .section-hero .slide-items .item-hints .hint.split-text-transition .hint-content p s:nth-child(189) {
	-webkit-transition-delay: 5.67s;
	transition-delay: 5.67s
}

#page-home .section-hero .slide-items .item-hints .hint.split-text-transition .hint-content p s:nth-child(190) {
	-webkit-transition-delay: 5.7s;
	transition-delay: 5.7s
}

#page-home .section-hero .slide-items .item-hints .hint.split-text-transition .hint-content p s:nth-child(191) {
	-webkit-transition-delay: 5.73s;
	transition-delay: 5.73s
}

#page-home .section-hero .slide-items .item-hints .hint.split-text-transition .hint-content p s:nth-child(192) {
	-webkit-transition-delay: 5.76s;
	transition-delay: 5.76s
}

#page-home .section-hero .slide-items .item-hints .hint.split-text-transition .hint-content p s:nth-child(193) {
	-webkit-transition-delay: 5.79s;
	transition-delay: 5.79s
}

#page-home .section-hero .slide-items .item-hints .hint.split-text-transition .hint-content p s:nth-child(194) {
	-webkit-transition-delay: 5.82s;
	transition-delay: 5.82s
}

#page-home .section-hero .slide-items .item-hints .hint.split-text-transition .hint-content p s:nth-child(195) {
	-webkit-transition-delay: 5.85s;
	transition-delay: 5.85s
}

#page-home .section-hero .slide-items .item-hints .hint.split-text-transition .hint-content p s:nth-child(196) {
	-webkit-transition-delay: 5.88s;
	transition-delay: 5.88s
}

#page-home .section-hero .slide-items .item-hints .hint.split-text-transition .hint-content p s:nth-child(197) {
	-webkit-transition-delay: 5.91s;
	transition-delay: 5.91s
}

#page-home .section-hero .slide-items .item-hints .hint.split-text-transition .hint-content p s:nth-child(198) {
	-webkit-transition-delay: 5.94s;
	transition-delay: 5.94s
}

#page-home .section-hero .slide-items .item-hints .hint.split-text-transition .hint-content p s:nth-child(199) {
	-webkit-transition-delay: 5.97s;
	transition-delay: 5.97s
}

#page-home .section-hero .slide-items .item-hints .hint:hover::after {
	opacity: 0
}

#page-home .section-hero .slide-items .item-hints .hint:hover .hint-radius {
	background-color: #fff;
	opacity: .1;
	visibility: visible;
	-webkit-transform: scale(1);
	transform: scale(1)
}

#page-home .section-hero .slide-items .item-hints .hint:hover .hint-content {
	opacity: 1;
	visibility: visible;
    background: rgba(0, 0, 0,0.5);
}

#page-home .section-hero .slide-items .item-hints .hint:hover .hint-content::after,
#page-home .section-hero .slide-items .item-hints .hint:hover .hint-content::before {
	opacity: 1
}

#page-home .section-hero .slide-items .item-hints .hint:hover .hint-content::before {
	-webkit-transition-delay: .15s;
	transition-delay: .15s
}

#page-home .section-hero .slide-items .item-hints .hint[data-position="1"] {
	top: 92%;
    left: 23%;

}

#page-home .section-hero .slide-items .item-hints .hint[data-position="1"] .hint-content {
	bottom: 30px;
    left: 50%;
	margin-left: 56px
}

#page-home .section-hero .slide-items .item-hints .hint[data-position="1"] .hint-content::after,
#page-home .section-hero .slide-items .item-hints .hint[data-position="1"] .hint-content::before {
	top: 0;
	left: 0
}

#page-home .section-hero .slide-items .item-hints .hint[data-position="1"] .hint-content::after {
	-webkit-transform: rotate(125deg);
	transform: rotate(125deg);
	-webkit-transform-origin: 0 50%;
	transform-origin: 0 50%
}

#page-home .section-hero .slide-items .item-hints .hint[data-position="2"] {
	    left: 16%;
    bottom: 39%;
}

#page-home .section-hero .slide-items .item-hints .hint[data-position="2"] .hint-content {
	top: 80px;
    left: 25%;
    margin-left: -50px;
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%)
}

#page-home .section-hero .slide-items .item-hints .hint[data-position="2"] .hint-content::after,
#page-home .section-hero .slide-items .item-hints .hint[data-position="2"] .hint-content::before {
	top: 0;
	right: 0
}

#page-home .section-hero .slide-items .item-hints .hint[data-position="2"] .hint-content::after {
	-webkit-transform: rotate(-325deg);
	transform: rotate(-325deg);
	-webkit-transform-origin: 100% 50%;
	transform-origin: 100% 50%
}

#page-home .section-hero .slide-items .item-hints .hint[data-position="3"] {
	    left: 26%;
    bottom: 30%;
}

#page-home .section-hero .slide-items .item-hints .hint[data-position="3"] .hint-content {
	bottom: 85px;
	left: 50%;
	margin-left: -205px;
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%)
}

#page-home .section-hero .slide-items .item-hints .hint[data-position="3"] .hint-content::after,
#page-home .section-hero .slide-items .item-hints .hint[data-position="3"] .hint-content::before {
	right: 0;
	bottom: 0
}

#page-home .section-hero .slide-items .item-hints .hint[data-position="3"] .hint-content::after {
	-webkit-transform-origin: 100% 50%;
	transform-origin: 100% 50%;
	-webkit-transform: rotate(225deg);
	transform: rotate(225deg)
}

#page-home .section-hero .slide-items .item-hints .hint[data-position="4"] {
	    top: 33%;
    left: 26%;
}

#page-home .section-hero .slide-items .item-hints .hint[data-position="4"] .hint-content {
	bottom: 85px;
	left: 50%;
	margin-left: 56px
}

#page-home .section-hero .slide-items .item-hints .hint[data-position="4"] .hint-content::after,
#page-home .section-hero .slide-items .item-hints .hint[data-position="4"] .hint-content::before {
	bottom: 0;
	left: 0
}

#page-home .section-hero .slide-items .item-hints .hint[data-position="4"] .hint-content::after {
	-webkit-transform-origin: 0 50%;
	transform-origin: 0 50%;
	-webkit-transform: rotate(-225deg);
	transform: rotate(-225deg)
}

#page-home .section-hero .slide-items .item-hints .hint[data-position="5"] {
	   top: 52%;
    left: 40%;
}

#page-home .section-hero .slide-items .item-hints .hint[data-position="5"] .hint-content {
	bottom: 85px;
	left: 50%;
	margin-left: 56px
}

#page-home .section-hero .slide-items .item-hints .hint[data-position="5"] .hint-content::after,
#page-home .section-hero .slide-items .item-hints .hint[data-position="5"] .hint-content::before {
	bottom: 0;
	left: 0
}

#page-home .section-hero .slide-items .item-hints .hint[data-position="5"] .hint-content::after {
	-webkit-transform-origin: 0 50%;
	transform-origin: 0 50%;
	-webkit-transform: rotate(-225deg);
	transform: rotate(-225deg)
}
#page-home .section-hero .slide-items .item-hints .hint[data-position="6"] {
	top: 54%;
    right: 38%;
}

#page-home .section-hero .slide-items .item-hints .hint[data-position="6"] .hint-content {
	bottom: 85px;
	left: 50%;
	margin-left: 56px
}

#page-home .section-hero .slide-items .item-hints .hint[data-position="6"] .hint-content::after,
#page-home .section-hero .slide-items .item-hints .hint[data-position="6"] .hint-content::before {
	bottom: 0;
	left: 0
}

#page-home .section-hero .slide-items .item-hints .hint[data-position="6"] .hint-content::after {
	-webkit-transform-origin: 0 50%;
	transform-origin: 0 50%;
	-webkit-transform: rotate(-225deg);
	transform: rotate(-225deg)
}
#page-home .section-hero .slide-items .item-hints .hint[data-position="6-1"] {
	top: 18%;
    right: 38%;
}

#page-home .section-hero .slide-items .item-hints .hint[data-position="6-1"] .hint-content {
	bottom: 85px;
	left: 50%;
	margin-left: 56px
}

#page-home .section-hero .slide-items .item-hints .hint[data-position="6-1"] .hint-content::after,
#page-home .section-hero .slide-items .item-hints .hint[data-position="6-1"] .hint-content::before {
	bottom: 0;
	left: 0
}

#page-home .section-hero .slide-items .item-hints .hint[data-position="6-1"] .hint-content::after {
	-webkit-transform-origin: 0 50%;
	transform-origin: 0 50%;
	-webkit-transform: rotate(-225deg);
	transform: rotate(-225deg)
}

#page-home .section-hero .slide-items .item-hints .hint[data-position="7"] {
	top: 22%;
    right: 16%;
}

#page-home .section-hero .slide-items .item-hints .hint[data-position="7"] .hint-content {
	bottom: 85px;
	left: 50%;
	margin-left: 56px
}

#page-home .section-hero .slide-items .item-hints .hint[data-position="7"] .hint-content::after,
#page-home .section-hero .slide-items .item-hints .hint[data-position="7"] .hint-content::before {
	bottom: 0;
	left: 0
}

#page-home .section-hero .slide-items .item-hints .hint[data-position="7"] .hint-content::after {
	-webkit-transform-origin: 0 50%;
	transform-origin: 0 50%;
	-webkit-transform: rotate(-225deg);
	transform: rotate(-225deg)
}
#page-home .section-hero .slide-items .item-hints .hint[data-position="8"] {
	bottom: 15%;
    right: 24%;
}

#page-home .section-hero .slide-items .item-hints .hint[data-position="8"] .hint-content {
	bottom: 85px;
	left: 50%;
	margin-left: 56px
}

#page-home .section-hero .slide-items .item-hints .hint[data-position="8"] .hint-content::after,
#page-home .section-hero .slide-items .item-hints .hint[data-position="8"] .hint-content::before {
	bottom: 0;
	left: 0
}

#page-home .section-hero .slide-items .item-hints .hint[data-position="8"] .hint-content::after {
	-webkit-transform-origin: 0 50%;
	transform-origin: 0 50%;
	-webkit-transform: rotate(-225deg);
	transform: rotate(-225deg)
}
#page-home .section-hero .slide-items .item-hints .hint[data-position="9"] {
	top: 10%;
    right: 52%;
}

#page-home .section-hero .slide-items .item-hints .hint[data-position="9"] .hint-content {
	bottom: 0px;
    left: 50%;
    margin-left: 75px;
}

#page-home .section-hero .slide-items .item-hints .hint[data-position="9"] .hint-content::after,
#page-home .section-hero .slide-items .item-hints .hint[data-position="9"] .hint-content::before {
	bottom: 0;
	left: 0
}

#page-home .section-hero .slide-items .item-hints .hint[data-position="9"] .hint-content::after {
	-webkit-transform-origin: 0 50%;
	transform-origin: 0 50%;
	-webkit-transform: rotate(-155deg);
	transform: rotate(-155deg)
}
#page-home .section-hero .slide-items .item-hints .hint[data-position="10"] {
	bottom: 24%;
    right: 50%;
}

#page-home .section-hero .slide-items .item-hints .hint[data-position="10"] .hint-content {
	bottom: 85px;
	left: 50%;
	margin-left: 56px
}

#page-home .section-hero .slide-items .item-hints .hint[data-position="10"] .hint-content::after,
#page-home .section-hero .slide-items .item-hints .hint[data-position="10"] .hint-content::before {
	bottom: 0;
	left: 0
}

#page-home .section-hero .slide-items .item-hints .hint[data-position="10"] .hint-content::after {
	-webkit-transform-origin: 0 50%;
	transform-origin: 0 50%;
	-webkit-transform: rotate(-225deg);
	transform: rotate(-225deg)
}
#page-home .section-hero .slide-items .item-hints .hint[data-position="11"] {
	bottom: 10%;
    right: 57%;
}

#page-home .section-hero .slide-items .item-hints .hint[data-position="11"] .hint-content {
	bottom: 85px;
	left: 50%;
	margin-left: 56px
}

#page-home .section-hero .slide-items .item-hints .hint[data-position="11"] .hint-content::after,
#page-home .section-hero .slide-items .item-hints .hint[data-position="11"] .hint-content::before {
	bottom: 0;
	left: 0
}

#page-home .section-hero .slide-items .item-hints .hint[data-position="11"] .hint-content::after {
	-webkit-transform-origin: 0 50%;
	transform-origin: 0 50%;
	-webkit-transform: rotate(-225deg);
	transform: rotate(-225deg)
}
#page-home .section-hero .slide-items .item-hints .hint[data-position="12"] {
	    top: 27%;
    right: 54%;
}

#page-home .section-hero .slide-items .item-hints .hint[data-position="12"] .hint-content {
	bottom: 85px;
	left: 50%;
	margin-left: 56px
}

#page-home .section-hero .slide-items .item-hints .hint[data-position="12"] .hint-content::after,
#page-home .section-hero .slide-items .item-hints .hint[data-position="12"] .hint-content::before {
	bottom: 0;
	left: 0
}

#page-home .section-hero .slide-items .item-hints .hint[data-position="12"] .hint-content::after {
	-webkit-transform-origin: 0 50%;
	transform-origin: 0 50%;
	-webkit-transform: rotate(-225deg);
	transform: rotate(-225deg)
}

#page-home .section-hero .slide-items .item-content {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 2;
	padding: 100px 0 70px
}

#page-home .section-hero .slide-items .item-content .wrapper {
	width: 100%
}

#page-home .section-hero .slide-items .item-content .wrapper .headline {
	display: inline-block;
	position: relative;
	left: -4px
}

#page-home .section-hero .slide-items .item-content .wrapper .headline-hint {
	color: #fff;
	font-size: 18px;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	width: 60px;
	height: 60px;
	position: absolute;
	top: 0;
	right: 0;
	margin-top: -40px;
	margin-right: -40px;
	-webkit-transition: color .5s ease;
	transition: color .5s ease;
	cursor: none
}

#page-home .section-hero .slide-items .item-content .wrapper .headline-hint::before {
	content: '';
	background-color: #51a8b1;
	width: 8px;
	height: 8px;
	position: absolute;
	top: 50%;
	left: 50%;
	z-index: 2;
	margin-top: -1px;
	margin-left: 1px;
	opacity: 0;
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	-webkit-clip-path: polygon(0 0, 100% 50%, 0 100%);
	clip-path: polygon(0 0, 100% 50%, 0 100%);
	-webkit-transition: opacity .5s ease;
	transition: opacity .5s ease
}

#page-home .section-hero .slide-items .item-content .wrapper .headline-hint span {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 1;
	-webkit-clip-path: polygon(0 0, 0 calc(100% - 30px), 1px calc(100% - 30px), 1px 1px, calc(100% - 1px) 1px, calc(100% - 1px) calc(100% - 1px), 30px calc(100% - 1px), 30px 100%, 100% 100%, 100% 0, 0 0);
	clip-path: polygon(0 0, 0 calc(100% - 30px), 1px calc(100% - 30px), 1px 1px, calc(100% - 1px) 1px, calc(100% - 1px) calc(100% - 1px), 30px calc(100% - 1px), 30px 100%, 100% 100%, 100% 0, 0 0);
	-webkit-transition: opacity .5s ease, -webkit-transform .5s cubic-bezier(.5, 0, 0, 1);
	transition: opacity .5s ease, -webkit-transform .5s cubic-bezier(.5, 0, 0, 1);
	transition: opacity .5s ease, transform .5s cubic-bezier(.5, 0, 0, 1);
	transition: opacity .5s ease, transform .5s cubic-bezier(.5, 0, 0, 1), -webkit-transform .5s cubic-bezier(.5, 0, 0, 1)
}

#page-home .section-hero .slide-items .item-content .wrapper .headline-hint span::before {
	content: '';
	background-image: -webkit-gradient(linear, left top, right top, color-stop(30%, #51a8b1), color-stop(white), color-stop(70%, #51a8b1));
	background-image: linear-gradient(to right, #51a8b1 30%, #fff, #51a8b1 70%);
	background-size: 130%;
	background-position: center;
	position: absolute;
	top: -25px;
	right: -25px;
	bottom: -25px;
	left: -25px;
	-webkit-animation: home_hero_headline_hint 5s infinite linear;
	animation: home_hero_headline_hint 5s infinite linear
}

@-webkit-keyframes home_hero_headline_hint {
	from {
		-webkit-transform: rotate(0);
		transform: rotate(0)
	}

	to {
		-webkit-transform: rotate(360deg);
		transform: rotate(360deg)
	}
}

@keyframes home_hero_headline_hint {
	from {
		-webkit-transform: rotate(0);
		transform: rotate(0)
	}

	to {
		-webkit-transform: rotate(360deg);
		transform: rotate(360deg)
	}
}

#page-home .section-hero .slide-items .item-content .wrapper .headline-text {
	color: #fff;
	font-size: 55px;
	text-transform: uppercase;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale
}

#page-home .section-hero .slide-items .item-content .wrapper .headline-text span {
	display: block
}

#page-home .section-hero .slide-items .item-content .wrapper .headline-text span:not(:last-child) {
	margin-bottom: -12px
}

#page-home .section-hero .slide-items .item-content .wrapper .button {
	margin-top: 30px
}

#page-home .section-hero .slide-items .item-content .inner-wrapper {
	display: inline-block;
	position: relative
}

#page-home .section-hero .slide-items .item-content .hidden-panel {
	width: 400px;
	position: absolute;
	top: 0;
	left: calc(100% + 100px);
	margin-top: 72px;
	opacity: 0;
	visibility: hidden;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
	-webkit-filter: blur(2px);
	filter: blur(2px);
	-webkit-transition: opacity .7s ease, visibility .7s ease, -webkit-filter .7s ease;
	transition: opacity .7s ease, visibility .7s ease, -webkit-filter .7s ease;
	transition: filter .7s ease, opacity .7s ease, visibility .7s ease;
	transition: filter .7s ease, opacity .7s ease, visibility .7s ease, -webkit-filter .7s ease;
	-webkit-transition-delay: 0s;
	transition-delay: 0s
}

#page-home .section-hero .slide-items .item-content .hidden-panel .description p {
	color: #fff;
	line-height: 140%;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale
}

#page-home .section-hero .slide-items .item-content .hidden-panel .description p:not(:last-child) {
	margin-bottom: 10px
}

#page-home .section-hero .slide-items .item-content .hidden-panel .description p s {
	color: #51a8b1;
	display: inline-block;
	opacity: 0;
	-webkit-transform: translateY(2px);
	transform: translateY(2px);
	-webkit-transition: color 1s ease, opacity .5s ease, -webkit-transform .5s cubic-bezier(.5, 0, 0, 1);
	transition: color 1s ease, opacity .5s ease, -webkit-transform .5s cubic-bezier(.5, 0, 0, 1);
	transition: color 1s ease, opacity .5s ease, transform .5s cubic-bezier(.5, 0, 0, 1);
	transition: color 1s ease, opacity .5s ease, transform .5s cubic-bezier(.5, 0, 0, 1), -webkit-transform .5s cubic-bezier(.5, 0, 0, 1)
}

#page-home .section-hero .slide-items .item.hidden-panel--open .item-cover .blur-window {
	background-color: #112e55;
	-webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
	clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
	-webkit-transition-delay: 0s;
	transition-delay: 0s
}

#page-home .section-hero .slide-items .item.hidden-panel--open .item-cover .blur-window img {
	opacity: .4
}

#page-home .section-hero .slide-items .item.hidden-panel--open .item-hints .hint {
	opacity: 0;
	-webkit-transform: scale(0);
	transform: scale(0);
	-webkit-transition-delay: 0s;
	transition-delay: 0s
}

#page-home .section-hero .slide-items .item.hidden-panel--open .item-content .headline .headline-hint {
	color: transparent
}

#page-home .section-hero .slide-items .item.hidden-panel--open .item-content .headline .headline-hint::before {
	opacity: 1
}

#page-home .section-hero .slide-items .item.hidden-panel--open .item-content .headline .headline-hint span {
	opacity: 0;
	-webkit-transform: scale(1.1);
	transform: scale(1.1)
}

#page-home .section-hero .slide-items .item.hidden-panel--open .item-content .hidden-panel {
	opacity: 1;
	visibility: visible;
	-webkit-filter: blur(0);
	filter: blur(0);
	-webkit-transition-delay: .5s;
	transition-delay: .5s
}

#page-home .section-hero .slide-items .item.hidden-panel--open .item-content .hidden-panel .description p s {
	color: #fff;
	opacity: 1;
	-webkit-transform: translateY(0);
	transform: translateY(0)
}

#page-home .section-hero .slide-items .item.hidden-panel--open .item-content .hidden-panel .description p s:nth-child(1) {
	-webkit-transition-delay: .53s;
	transition-delay: .53s
}

#page-home .section-hero .slide-items .item.hidden-panel--open .item-content .hidden-panel .description p s:nth-child(2) {
	-webkit-transition-delay: .56s;
	transition-delay: .56s
}

#page-home .section-hero .slide-items .item.hidden-panel--open .item-content .hidden-panel .description p s:nth-child(3) {
	-webkit-transition-delay: .59s;
	transition-delay: .59s
}

#page-home .section-hero .slide-items .item.hidden-panel--open .item-content .hidden-panel .description p s:nth-child(4) {
	-webkit-transition-delay: .62s;
	transition-delay: .62s
}

#page-home .section-hero .slide-items .item.hidden-panel--open .item-content .hidden-panel .description p s:nth-child(5) {
	-webkit-transition-delay: .65s;
	transition-delay: .65s
}

#page-home .section-hero .slide-items .item.hidden-panel--open .item-content .hidden-panel .description p s:nth-child(6) {
	-webkit-transition-delay: .68s;
	transition-delay: .68s
}

#page-home .section-hero .slide-items .item.hidden-panel--open .item-content .hidden-panel .description p s:nth-child(7) {
	-webkit-transition-delay: .71s;
	transition-delay: .71s
}

#page-home .section-hero .slide-items .item.hidden-panel--open .item-content .hidden-panel .description p s:nth-child(8) {
	-webkit-transition-delay: .74s;
	transition-delay: .74s
}

#page-home .section-hero .slide-items .item.hidden-panel--open .item-content .hidden-panel .description p s:nth-child(9) {
	-webkit-transition-delay: .77s;
	transition-delay: .77s
}

#page-home .section-hero .slide-items .item.hidden-panel--open .item-content .hidden-panel .description p s:nth-child(10) {
	-webkit-transition-delay: .8s;
	transition-delay: .8s
}

#page-home .section-hero .slide-items .item.hidden-panel--open .item-content .hidden-panel .description p s:nth-child(11) {
	-webkit-transition-delay: .83s;
	transition-delay: .83s
}

#page-home .section-hero .slide-items .item.hidden-panel--open .item-content .hidden-panel .description p s:nth-child(12) {
	-webkit-transition-delay: .86s;
	transition-delay: .86s
}

#page-home .section-hero .slide-items .item.hidden-panel--open .item-content .hidden-panel .description p s:nth-child(13) {
	-webkit-transition-delay: .89s;
	transition-delay: .89s
}

#page-home .section-hero .slide-items .item.hidden-panel--open .item-content .hidden-panel .description p s:nth-child(14) {
	-webkit-transition-delay: .92s;
	transition-delay: .92s
}

#page-home .section-hero .slide-items .item.hidden-panel--open .item-content .hidden-panel .description p s:nth-child(15) {
	-webkit-transition-delay: .95s;
	transition-delay: .95s
}

#page-home .section-hero .slide-items .item.hidden-panel--open .item-content .hidden-panel .description p s:nth-child(16) {
	-webkit-transition-delay: .98s;
	transition-delay: .98s
}

#page-home .section-hero .slide-items .item.hidden-panel--open .item-content .hidden-panel .description p s:nth-child(17) {
	-webkit-transition-delay: 1.01s;
	transition-delay: 1.01s
}

#page-home .section-hero .slide-items .item.hidden-panel--open .item-content .hidden-panel .description p s:nth-child(18) {
	-webkit-transition-delay: 1.04s;
	transition-delay: 1.04s
}

#page-home .section-hero .slide-items .item.hidden-panel--open .item-content .hidden-panel .description p s:nth-child(19) {
	-webkit-transition-delay: 1.07s;
	transition-delay: 1.07s
}

#page-home .section-hero .slide-items .item.hidden-panel--open .item-content .hidden-panel .description p s:nth-child(20) {
	-webkit-transition-delay: 1.1s;
	transition-delay: 1.1s
}

#page-home .section-hero .slide-items .item.hidden-panel--open .item-content .hidden-panel .description p s:nth-child(21) {
	-webkit-transition-delay: 1.13s;
	transition-delay: 1.13s
}

#page-home .section-hero .slide-items .item.hidden-panel--open .item-content .hidden-panel .description p s:nth-child(22) {
	-webkit-transition-delay: 1.16s;
	transition-delay: 1.16s
}

#page-home .section-hero .slide-items .item.hidden-panel--open .item-content .hidden-panel .description p s:nth-child(23) {
	-webkit-transition-delay: 1.19s;
	transition-delay: 1.19s
}

#page-home .section-hero .slide-items .item.hidden-panel--open .item-content .hidden-panel .description p s:nth-child(24) {
	-webkit-transition-delay: 1.22s;
	transition-delay: 1.22s
}

#page-home .section-hero .slide-items .item.hidden-panel--open .item-content .hidden-panel .description p s:nth-child(25) {
	-webkit-transition-delay: 1.25s;
	transition-delay: 1.25s
}

#page-home .section-hero .slide-items .item.hidden-panel--open .item-content .hidden-panel .description p s:nth-child(26) {
	-webkit-transition-delay: 1.28s;
	transition-delay: 1.28s
}

#page-home .section-hero .slide-items .item.hidden-panel--open .item-content .hidden-panel .description p s:nth-child(27) {
	-webkit-transition-delay: 1.31s;
	transition-delay: 1.31s
}

#page-home .section-hero .slide-items .item.hidden-panel--open .item-content .hidden-panel .description p s:nth-child(28) {
	-webkit-transition-delay: 1.34s;
	transition-delay: 1.34s
}

#page-home .section-hero .slide-items .item.hidden-panel--open .item-content .hidden-panel .description p s:nth-child(29) {
	-webkit-transition-delay: 1.37s;
	transition-delay: 1.37s
}

#page-home .section-hero .slide-items .item.hidden-panel--open .item-content .hidden-panel .description p s:nth-child(30) {
	-webkit-transition-delay: 1.4s;
	transition-delay: 1.4s
}

#page-home .section-hero .slide-items .item.hidden-panel--open .item-content .hidden-panel .description p s:nth-child(31) {
	-webkit-transition-delay: 1.43s;
	transition-delay: 1.43s
}

#page-home .section-hero .slide-items .item.hidden-panel--open .item-content .hidden-panel .description p s:nth-child(32) {
	-webkit-transition-delay: 1.46s;
	transition-delay: 1.46s
}

#page-home .section-hero .slide-items .item.hidden-panel--open .item-content .hidden-panel .description p s:nth-child(33) {
	-webkit-transition-delay: 1.49s;
	transition-delay: 1.49s
}

#page-home .section-hero .slide-items .item.hidden-panel--open .item-content .hidden-panel .description p s:nth-child(34) {
	-webkit-transition-delay: 1.52s;
	transition-delay: 1.52s
}

#page-home .section-hero .slide-items .item.hidden-panel--open .item-content .hidden-panel .description p s:nth-child(35) {
	-webkit-transition-delay: 1.55s;
	transition-delay: 1.55s
}

#page-home .section-hero .slide-items .item.hidden-panel--open .item-content .hidden-panel .description p s:nth-child(36) {
	-webkit-transition-delay: 1.58s;
	transition-delay: 1.58s
}

#page-home .section-hero .slide-items .item.hidden-panel--open .item-content .hidden-panel .description p s:nth-child(37) {
	-webkit-transition-delay: 1.61s;
	transition-delay: 1.61s
}

#page-home .section-hero .slide-items .item.hidden-panel--open .item-content .hidden-panel .description p s:nth-child(38) {
	-webkit-transition-delay: 1.64s;
	transition-delay: 1.64s
}

#page-home .section-hero .slide-items .item.hidden-panel--open .item-content .hidden-panel .description p s:nth-child(39) {
	-webkit-transition-delay: 1.67s;
	transition-delay: 1.67s
}

#page-home .section-hero .slide-items .item.hidden-panel--open .item-content .hidden-panel .description p s:nth-child(40) {
	-webkit-transition-delay: 1.7s;
	transition-delay: 1.7s
}

#page-home .section-hero .slide-items .item.hidden-panel--open .item-content .hidden-panel .description p s:nth-child(41) {
	-webkit-transition-delay: 1.73s;
	transition-delay: 1.73s
}

#page-home .section-hero .slide-items .item.hidden-panel--open .item-content .hidden-panel .description p s:nth-child(42) {
	-webkit-transition-delay: 1.76s;
	transition-delay: 1.76s
}

#page-home .section-hero .slide-items .item.hidden-panel--open .item-content .hidden-panel .description p s:nth-child(43) {
	-webkit-transition-delay: 1.79s;
	transition-delay: 1.79s
}

#page-home .section-hero .slide-items .item.hidden-panel--open .item-content .hidden-panel .description p s:nth-child(44) {
	-webkit-transition-delay: 1.82s;
	transition-delay: 1.82s
}

#page-home .section-hero .slide-items .item.hidden-panel--open .item-content .hidden-panel .description p s:nth-child(45) {
	-webkit-transition-delay: 1.85s;
	transition-delay: 1.85s
}

#page-home .section-hero .slide-items .item.hidden-panel--open .item-content .hidden-panel .description p s:nth-child(46) {
	-webkit-transition-delay: 1.88s;
	transition-delay: 1.88s
}

#page-home .section-hero .slide-items .item.hidden-panel--open .item-content .hidden-panel .description p s:nth-child(47) {
	-webkit-transition-delay: 1.91s;
	transition-delay: 1.91s
}

#page-home .section-hero .slide-items .item.hidden-panel--open .item-content .hidden-panel .description p s:nth-child(48) {
	-webkit-transition-delay: 1.94s;
	transition-delay: 1.94s
}

#page-home .section-hero .slide-items .item.hidden-panel--open .item-content .hidden-panel .description p s:nth-child(49) {
	-webkit-transition-delay: 1.97s;
	transition-delay: 1.97s
}

#page-home .section-hero .slide-items .item.hidden-panel--open .item-content .hidden-panel .description p s:nth-child(50) {
	-webkit-transition-delay: 2s;
	transition-delay: 2s
}

#page-home .section-hero .slide-items .item.hidden-panel--open .item-content .hidden-panel .description p s:nth-child(51) {
	-webkit-transition-delay: 2.03s;
	transition-delay: 2.03s
}

#page-home .section-hero .slide-items .item.hidden-panel--open .item-content .hidden-panel .description p s:nth-child(52) {
	-webkit-transition-delay: 2.06s;
	transition-delay: 2.06s
}

#page-home .section-hero .slide-items .item.hidden-panel--open .item-content .hidden-panel .description p s:nth-child(53) {
	-webkit-transition-delay: 2.09s;
	transition-delay: 2.09s
}

#page-home .section-hero .slide-items .item.hidden-panel--open .item-content .hidden-panel .description p s:nth-child(54) {
	-webkit-transition-delay: 2.12s;
	transition-delay: 2.12s
}

#page-home .section-hero .slide-items .item.hidden-panel--open .item-content .hidden-panel .description p s:nth-child(55) {
	-webkit-transition-delay: 2.15s;
	transition-delay: 2.15s
}

#page-home .section-hero .slide-items .item.hidden-panel--open .item-content .hidden-panel .description p s:nth-child(56) {
	-webkit-transition-delay: 2.18s;
	transition-delay: 2.18s
}

#page-home .section-hero .slide-items .item.hidden-panel--open .item-content .hidden-panel .description p s:nth-child(57) {
	-webkit-transition-delay: 2.21s;
	transition-delay: 2.21s
}

#page-home .section-hero .slide-items .item.hidden-panel--open .item-content .hidden-panel .description p s:nth-child(58) {
	-webkit-transition-delay: 2.24s;
	transition-delay: 2.24s
}

#page-home .section-hero .slide-items .item.hidden-panel--open .item-content .hidden-panel .description p s:nth-child(59) {
	-webkit-transition-delay: 2.27s;
	transition-delay: 2.27s
}

#page-home .section-hero .slide-items .item.hidden-panel--open .item-content .hidden-panel .description p s:nth-child(60) {
	-webkit-transition-delay: 2.3s;
	transition-delay: 2.3s
}

#page-home .section-hero .slide-items .item.hidden-panel--open .item-content .hidden-panel .description p s:nth-child(61) {
	-webkit-transition-delay: 2.33s;
	transition-delay: 2.33s
}

#page-home .section-hero .slide-items .item.hidden-panel--open .item-content .hidden-panel .description p s:nth-child(62) {
	-webkit-transition-delay: 2.36s;
	transition-delay: 2.36s
}

#page-home .section-hero .slide-items .item.hidden-panel--open .item-content .hidden-panel .description p s:nth-child(63) {
	-webkit-transition-delay: 2.39s;
	transition-delay: 2.39s
}

#page-home .section-hero .slide-items .item.hidden-panel--open .item-content .hidden-panel .description p s:nth-child(64) {
	-webkit-transition-delay: 2.42s;
	transition-delay: 2.42s
}

#page-home .section-hero .slide-items .item.hidden-panel--open .item-content .hidden-panel .description p s:nth-child(65) {
	-webkit-transition-delay: 2.45s;
	transition-delay: 2.45s
}

#page-home .section-hero .slide-items .item.hidden-panel--open .item-content .hidden-panel .description p s:nth-child(66) {
	-webkit-transition-delay: 2.48s;
	transition-delay: 2.48s
}

#page-home .section-hero .slide-items .item.hidden-panel--open .item-content .hidden-panel .description p s:nth-child(67) {
	-webkit-transition-delay: 2.51s;
	transition-delay: 2.51s
}

#page-home .section-hero .slide-items .item.hidden-panel--open .item-content .hidden-panel .description p s:nth-child(68) {
	-webkit-transition-delay: 2.54s;
	transition-delay: 2.54s
}

#page-home .section-hero .slide-items .item.hidden-panel--open .item-content .hidden-panel .description p s:nth-child(69) {
	-webkit-transition-delay: 2.57s;
	transition-delay: 2.57s
}

#page-home .section-hero .slide-items .item.hidden-panel--open .item-content .hidden-panel .description p s:nth-child(70) {
	-webkit-transition-delay: 2.6s;
	transition-delay: 2.6s
}

#page-home .section-hero .slide-items .item.hidden-panel--open .item-content .hidden-panel .description p s:nth-child(71) {
	-webkit-transition-delay: 2.63s;
	transition-delay: 2.63s
}

#page-home .section-hero .slide-items .item.hidden-panel--open .item-content .hidden-panel .description p s:nth-child(72) {
	-webkit-transition-delay: 2.66s;
	transition-delay: 2.66s
}

#page-home .section-hero .slide-items .item.hidden-panel--open .item-content .hidden-panel .description p s:nth-child(73) {
	-webkit-transition-delay: 2.69s;
	transition-delay: 2.69s
}

#page-home .section-hero .slide-items .item.hidden-panel--open .item-content .hidden-panel .description p s:nth-child(74) {
	-webkit-transition-delay: 2.72s;
	transition-delay: 2.72s
}

#page-home .section-hero .slide-items .item.hidden-panel--open .item-content .hidden-panel .description p s:nth-child(75) {
	-webkit-transition-delay: 2.75s;
	transition-delay: 2.75s
}

#page-home .section-hero .slide-items .item.hidden-panel--open .item-content .hidden-panel .description p s:nth-child(76) {
	-webkit-transition-delay: 2.78s;
	transition-delay: 2.78s
}

#page-home .section-hero .slide-items .item.hidden-panel--open .item-content .hidden-panel .description p s:nth-child(77) {
	-webkit-transition-delay: 2.81s;
	transition-delay: 2.81s
}

#page-home .section-hero .slide-items .item.hidden-panel--open .item-content .hidden-panel .description p s:nth-child(78) {
	-webkit-transition-delay: 2.84s;
	transition-delay: 2.84s
}

#page-home .section-hero .slide-items .item.hidden-panel--open .item-content .hidden-panel .description p s:nth-child(79) {
	-webkit-transition-delay: 2.87s;
	transition-delay: 2.87s
}

#page-home .section-hero .slide-items .item.hidden-panel--open .item-content .hidden-panel .description p s:nth-child(80) {
	-webkit-transition-delay: 2.9s;
	transition-delay: 2.9s
}

#page-home .section-hero .slide-items .item.hidden-panel--open .item-content .hidden-panel .description p s:nth-child(81) {
	-webkit-transition-delay: 2.93s;
	transition-delay: 2.93s
}

#page-home .section-hero .slide-items .item.hidden-panel--open .item-content .hidden-panel .description p s:nth-child(82) {
	-webkit-transition-delay: 2.96s;
	transition-delay: 2.96s
}

#page-home .section-hero .slide-items .item.hidden-panel--open .item-content .hidden-panel .description p s:nth-child(83) {
	-webkit-transition-delay: 2.99s;
	transition-delay: 2.99s
}

#page-home .section-hero .slide-items .item.hidden-panel--open .item-content .hidden-panel .description p s:nth-child(84) {
	-webkit-transition-delay: 3.02s;
	transition-delay: 3.02s
}

#page-home .section-hero .slide-items .item.hidden-panel--open .item-content .hidden-panel .description p s:nth-child(85) {
	-webkit-transition-delay: 3.05s;
	transition-delay: 3.05s
}

#page-home .section-hero .slide-items .item.hidden-panel--open .item-content .hidden-panel .description p s:nth-child(86) {
	-webkit-transition-delay: 3.08s;
	transition-delay: 3.08s
}

#page-home .section-hero .slide-items .item.hidden-panel--open .item-content .hidden-panel .description p s:nth-child(87) {
	-webkit-transition-delay: 3.11s;
	transition-delay: 3.11s
}

#page-home .section-hero .slide-items .item.hidden-panel--open .item-content .hidden-panel .description p s:nth-child(88) {
	-webkit-transition-delay: 3.14s;
	transition-delay: 3.14s
}

#page-home .section-hero .slide-items .item.hidden-panel--open .item-content .hidden-panel .description p s:nth-child(89) {
	-webkit-transition-delay: 3.17s;
	transition-delay: 3.17s
}

#page-home .section-hero .slide-items .item.hidden-panel--open .item-content .hidden-panel .description p s:nth-child(90) {
	-webkit-transition-delay: 3.2s;
	transition-delay: 3.2s
}

#page-home .section-hero .slide-items .item.hidden-panel--open .item-content .hidden-panel .description p s:nth-child(91) {
	-webkit-transition-delay: 3.23s;
	transition-delay: 3.23s
}

#page-home .section-hero .slide-items .item.hidden-panel--open .item-content .hidden-panel .description p s:nth-child(92) {
	-webkit-transition-delay: 3.26s;
	transition-delay: 3.26s
}

#page-home .section-hero .slide-items .item.hidden-panel--open .item-content .hidden-panel .description p s:nth-child(93) {
	-webkit-transition-delay: 3.29s;
	transition-delay: 3.29s
}

#page-home .section-hero .slide-items .item.hidden-panel--open .item-content .hidden-panel .description p s:nth-child(94) {
	-webkit-transition-delay: 3.32s;
	transition-delay: 3.32s
}

#page-home .section-hero .slide-items .item.hidden-panel--open .item-content .hidden-panel .description p s:nth-child(95) {
	-webkit-transition-delay: 3.35s;
	transition-delay: 3.35s
}

#page-home .section-hero .slide-items .item.hidden-panel--open .item-content .hidden-panel .description p s:nth-child(96) {
	-webkit-transition-delay: 3.38s;
	transition-delay: 3.38s
}

#page-home .section-hero .slide-items .item.hidden-panel--open .item-content .hidden-panel .description p s:nth-child(97) {
	-webkit-transition-delay: 3.41s;
	transition-delay: 3.41s
}

#page-home .section-hero .slide-items .item.hidden-panel--open .item-content .hidden-panel .description p s:nth-child(98) {
	-webkit-transition-delay: 3.44s;
	transition-delay: 3.44s
}

#page-home .section-hero .slide-items .item.hidden-panel--open .item-content .hidden-panel .description p s:nth-child(99) {
	-webkit-transition-delay: 3.47s;
	transition-delay: 3.47s
}

#page-home .section-hero .slide-items .item.hidden-panel--open .item-content .hidden-panel .description p s:nth-child(100) {
	-webkit-transition-delay: 3.5s;
	transition-delay: 3.5s
}

#page-home .section-hero .slide-items .item.hidden-panel--open .item-content .hidden-panel .description p s:nth-child(101) {
	-webkit-transition-delay: 3.53s;
	transition-delay: 3.53s
}

#page-home .section-hero .slide-items .item.hidden-panel--open .item-content .hidden-panel .description p s:nth-child(102) {
	-webkit-transition-delay: 3.56s;
	transition-delay: 3.56s
}

#page-home .section-hero .slide-items .item.hidden-panel--open .item-content .hidden-panel .description p s:nth-child(103) {
	-webkit-transition-delay: 3.59s;
	transition-delay: 3.59s
}

#page-home .section-hero .slide-items .item.hidden-panel--open .item-content .hidden-panel .description p s:nth-child(104) {
	-webkit-transition-delay: 3.62s;
	transition-delay: 3.62s
}

#page-home .section-hero .slide-items .item.hidden-panel--open .item-content .hidden-panel .description p s:nth-child(105) {
	-webkit-transition-delay: 3.65s;
	transition-delay: 3.65s
}

#page-home .section-hero .slide-items .item.hidden-panel--open .item-content .hidden-panel .description p s:nth-child(106) {
	-webkit-transition-delay: 3.68s;
	transition-delay: 3.68s
}

#page-home .section-hero .slide-items .item.hidden-panel--open .item-content .hidden-panel .description p s:nth-child(107) {
	-webkit-transition-delay: 3.71s;
	transition-delay: 3.71s
}

#page-home .section-hero .slide-items .item.hidden-panel--open .item-content .hidden-panel .description p s:nth-child(108) {
	-webkit-transition-delay: 3.74s;
	transition-delay: 3.74s
}

#page-home .section-hero .slide-items .item.hidden-panel--open .item-content .hidden-panel .description p s:nth-child(109) {
	-webkit-transition-delay: 3.77s;
	transition-delay: 3.77s
}

#page-home .section-hero .slide-items .item.hidden-panel--open .item-content .hidden-panel .description p s:nth-child(110) {
	-webkit-transition-delay: 3.8s;
	transition-delay: 3.8s
}

#page-home .section-hero .slide-items .item.hidden-panel--open .item-content .hidden-panel .description p s:nth-child(111) {
	-webkit-transition-delay: 3.83s;
	transition-delay: 3.83s
}

#page-home .section-hero .slide-items .item.hidden-panel--open .item-content .hidden-panel .description p s:nth-child(112) {
	-webkit-transition-delay: 3.86s;
	transition-delay: 3.86s
}

#page-home .section-hero .slide-items .item.hidden-panel--open .item-content .hidden-panel .description p s:nth-child(113) {
	-webkit-transition-delay: 3.89s;
	transition-delay: 3.89s
}

#page-home .section-hero .slide-items .item.hidden-panel--open .item-content .hidden-panel .description p s:nth-child(114) {
	-webkit-transition-delay: 3.92s;
	transition-delay: 3.92s
}

#page-home .section-hero .slide-items .item.hidden-panel--open .item-content .hidden-panel .description p s:nth-child(115) {
	-webkit-transition-delay: 3.95s;
	transition-delay: 3.95s
}

#page-home .section-hero .slide-items .item.hidden-panel--open .item-content .hidden-panel .description p s:nth-child(116) {
	-webkit-transition-delay: 3.98s;
	transition-delay: 3.98s
}

#page-home .section-hero .slide-items .item.hidden-panel--open .item-content .hidden-panel .description p s:nth-child(117) {
	-webkit-transition-delay: 4.01s;
	transition-delay: 4.01s
}

#page-home .section-hero .slide-items .item.hidden-panel--open .item-content .hidden-panel .description p s:nth-child(118) {
	-webkit-transition-delay: 4.04s;
	transition-delay: 4.04s
}

#page-home .section-hero .slide-items .item.hidden-panel--open .item-content .hidden-panel .description p s:nth-child(119) {
	-webkit-transition-delay: 4.07s;
	transition-delay: 4.07s
}

#page-home .section-hero .slide-items .item.hidden-panel--open .item-content .hidden-panel .description p s:nth-child(120) {
	-webkit-transition-delay: 4.1s;
	transition-delay: 4.1s
}

#page-home .section-hero .slide-items .item.hidden-panel--open .item-content .hidden-panel .description p s:nth-child(121) {
	-webkit-transition-delay: 4.13s;
	transition-delay: 4.13s
}

#page-home .section-hero .slide-items .item.hidden-panel--open .item-content .hidden-panel .description p s:nth-child(122) {
	-webkit-transition-delay: 4.16s;
	transition-delay: 4.16s
}

#page-home .section-hero .slide-items .item.hidden-panel--open .item-content .hidden-panel .description p s:nth-child(123) {
	-webkit-transition-delay: 4.19s;
	transition-delay: 4.19s
}

#page-home .section-hero .slide-items .item.hidden-panel--open .item-content .hidden-panel .description p s:nth-child(124) {
	-webkit-transition-delay: 4.22s;
	transition-delay: 4.22s
}

#page-home .section-hero .slide-items .item.hidden-panel--open .item-content .hidden-panel .description p s:nth-child(125) {
	-webkit-transition-delay: 4.25s;
	transition-delay: 4.25s
}

#page-home .section-hero .slide-items .item.hidden-panel--open .item-content .hidden-panel .description p s:nth-child(126) {
	-webkit-transition-delay: 4.28s;
	transition-delay: 4.28s
}

#page-home .section-hero .slide-items .item.hidden-panel--open .item-content .hidden-panel .description p s:nth-child(127) {
	-webkit-transition-delay: 4.31s;
	transition-delay: 4.31s
}

#page-home .section-hero .slide-items .item.hidden-panel--open .item-content .hidden-panel .description p s:nth-child(128) {
	-webkit-transition-delay: 4.34s;
	transition-delay: 4.34s
}

#page-home .section-hero .slide-items .item.hidden-panel--open .item-content .hidden-panel .description p s:nth-child(129) {
	-webkit-transition-delay: 4.37s;
	transition-delay: 4.37s
}

#page-home .section-hero .slide-items .item.hidden-panel--open .item-content .hidden-panel .description p s:nth-child(130) {
	-webkit-transition-delay: 4.4s;
	transition-delay: 4.4s
}

#page-home .section-hero .slide-items .item.hidden-panel--open .item-content .hidden-panel .description p s:nth-child(131) {
	-webkit-transition-delay: 4.43s;
	transition-delay: 4.43s
}

#page-home .section-hero .slide-items .item.hidden-panel--open .item-content .hidden-panel .description p s:nth-child(132) {
	-webkit-transition-delay: 4.46s;
	transition-delay: 4.46s
}

#page-home .section-hero .slide-items .item.hidden-panel--open .item-content .hidden-panel .description p s:nth-child(133) {
	-webkit-transition-delay: 4.49s;
	transition-delay: 4.49s
}

#page-home .section-hero .slide-items .item.hidden-panel--open .item-content .hidden-panel .description p s:nth-child(134) {
	-webkit-transition-delay: 4.52s;
	transition-delay: 4.52s
}

#page-home .section-hero .slide-items .item.hidden-panel--open .item-content .hidden-panel .description p s:nth-child(135) {
	-webkit-transition-delay: 4.55s;
	transition-delay: 4.55s
}

#page-home .section-hero .slide-items .item.hidden-panel--open .item-content .hidden-panel .description p s:nth-child(136) {
	-webkit-transition-delay: 4.58s;
	transition-delay: 4.58s
}

#page-home .section-hero .slide-items .item.hidden-panel--open .item-content .hidden-panel .description p s:nth-child(137) {
	-webkit-transition-delay: 4.61s;
	transition-delay: 4.61s
}

#page-home .section-hero .slide-items .item.hidden-panel--open .item-content .hidden-panel .description p s:nth-child(138) {
	-webkit-transition-delay: 4.64s;
	transition-delay: 4.64s
}

#page-home .section-hero .slide-items .item.hidden-panel--open .item-content .hidden-panel .description p s:nth-child(139) {
	-webkit-transition-delay: 4.67s;
	transition-delay: 4.67s
}

#page-home .section-hero .slide-items .item.hidden-panel--open .item-content .hidden-panel .description p s:nth-child(140) {
	-webkit-transition-delay: 4.7s;
	transition-delay: 4.7s
}

#page-home .section-hero .slide-items .item.hidden-panel--open .item-content .hidden-panel .description p s:nth-child(141) {
	-webkit-transition-delay: 4.73s;
	transition-delay: 4.73s
}

#page-home .section-hero .slide-items .item.hidden-panel--open .item-content .hidden-panel .description p s:nth-child(142) {
	-webkit-transition-delay: 4.76s;
	transition-delay: 4.76s
}

#page-home .section-hero .slide-items .item.hidden-panel--open .item-content .hidden-panel .description p s:nth-child(143) {
	-webkit-transition-delay: 4.79s;
	transition-delay: 4.79s
}

#page-home .section-hero .slide-items .item.hidden-panel--open .item-content .hidden-panel .description p s:nth-child(144) {
	-webkit-transition-delay: 4.82s;
	transition-delay: 4.82s
}

#page-home .section-hero .slide-items .item.hidden-panel--open .item-content .hidden-panel .description p s:nth-child(145) {
	-webkit-transition-delay: 4.85s;
	transition-delay: 4.85s
}

#page-home .section-hero .slide-items .item.hidden-panel--open .item-content .hidden-panel .description p s:nth-child(146) {
	-webkit-transition-delay: 4.88s;
	transition-delay: 4.88s
}

#page-home .section-hero .slide-items .item.hidden-panel--open .item-content .hidden-panel .description p s:nth-child(147) {
	-webkit-transition-delay: 4.91s;
	transition-delay: 4.91s
}

#page-home .section-hero .slide-items .item.hidden-panel--open .item-content .hidden-panel .description p s:nth-child(148) {
	-webkit-transition-delay: 4.94s;
	transition-delay: 4.94s
}

#page-home .section-hero .slide-items .item.hidden-panel--open .item-content .hidden-panel .description p s:nth-child(149) {
	-webkit-transition-delay: 4.97s;
	transition-delay: 4.97s
}

#page-home .section-hero .slide-items .item.hidden-panel--open .item-content .hidden-panel .description p s:nth-child(150) {
	-webkit-transition-delay: 5s;
	transition-delay: 5s
}

#page-home .section-hero .slide-items .item.hidden-panel--open .item-content .hidden-panel .description p s:nth-child(151) {
	-webkit-transition-delay: 5.03s;
	transition-delay: 5.03s
}

#page-home .section-hero .slide-items .item.hidden-panel--open .item-content .hidden-panel .description p s:nth-child(152) {
	-webkit-transition-delay: 5.06s;
	transition-delay: 5.06s
}

#page-home .section-hero .slide-items .item.hidden-panel--open .item-content .hidden-panel .description p s:nth-child(153) {
	-webkit-transition-delay: 5.09s;
	transition-delay: 5.09s
}

#page-home .section-hero .slide-items .item.hidden-panel--open .item-content .hidden-panel .description p s:nth-child(154) {
	-webkit-transition-delay: 5.12s;
	transition-delay: 5.12s
}

#page-home .section-hero .slide-items .item.hidden-panel--open .item-content .hidden-panel .description p s:nth-child(155) {
	-webkit-transition-delay: 5.15s;
	transition-delay: 5.15s
}

#page-home .section-hero .slide-items .item.hidden-panel--open .item-content .hidden-panel .description p s:nth-child(156) {
	-webkit-transition-delay: 5.18s;
	transition-delay: 5.18s
}

#page-home .section-hero .slide-items .item.hidden-panel--open .item-content .hidden-panel .description p s:nth-child(157) {
	-webkit-transition-delay: 5.21s;
	transition-delay: 5.21s
}

#page-home .section-hero .slide-items .item.hidden-panel--open .item-content .hidden-panel .description p s:nth-child(158) {
	-webkit-transition-delay: 5.24s;
	transition-delay: 5.24s
}

#page-home .section-hero .slide-items .item.hidden-panel--open .item-content .hidden-panel .description p s:nth-child(159) {
	-webkit-transition-delay: 5.27s;
	transition-delay: 5.27s
}

#page-home .section-hero .slide-items .item.hidden-panel--open .item-content .hidden-panel .description p s:nth-child(160) {
	-webkit-transition-delay: 5.3s;
	transition-delay: 5.3s
}

#page-home .section-hero .slide-items .item.hidden-panel--open .item-content .hidden-panel .description p s:nth-child(161) {
	-webkit-transition-delay: 5.33s;
	transition-delay: 5.33s
}

#page-home .section-hero .slide-items .item.hidden-panel--open .item-content .hidden-panel .description p s:nth-child(162) {
	-webkit-transition-delay: 5.36s;
	transition-delay: 5.36s
}

#page-home .section-hero .slide-items .item.hidden-panel--open .item-content .hidden-panel .description p s:nth-child(163) {
	-webkit-transition-delay: 5.39s;
	transition-delay: 5.39s
}

#page-home .section-hero .slide-items .item.hidden-panel--open .item-content .hidden-panel .description p s:nth-child(164) {
	-webkit-transition-delay: 5.42s;
	transition-delay: 5.42s
}

#page-home .section-hero .slide-items .item.hidden-panel--open .item-content .hidden-panel .description p s:nth-child(165) {
	-webkit-transition-delay: 5.45s;
	transition-delay: 5.45s
}

#page-home .section-hero .slide-items .item.hidden-panel--open .item-content .hidden-panel .description p s:nth-child(166) {
	-webkit-transition-delay: 5.48s;
	transition-delay: 5.48s
}

#page-home .section-hero .slide-items .item.hidden-panel--open .item-content .hidden-panel .description p s:nth-child(167) {
	-webkit-transition-delay: 5.51s;
	transition-delay: 5.51s
}

#page-home .section-hero .slide-items .item.hidden-panel--open .item-content .hidden-panel .description p s:nth-child(168) {
	-webkit-transition-delay: 5.54s;
	transition-delay: 5.54s
}

#page-home .section-hero .slide-items .item.hidden-panel--open .item-content .hidden-panel .description p s:nth-child(169) {
	-webkit-transition-delay: 5.57s;
	transition-delay: 5.57s
}

#page-home .section-hero .slide-items .item.hidden-panel--open .item-content .hidden-panel .description p s:nth-child(170) {
	-webkit-transition-delay: 5.6s;
	transition-delay: 5.6s
}

#page-home .section-hero .slide-items .item.hidden-panel--open .item-content .hidden-panel .description p s:nth-child(171) {
	-webkit-transition-delay: 5.63s;
	transition-delay: 5.63s
}

#page-home .section-hero .slide-items .item.hidden-panel--open .item-content .hidden-panel .description p s:nth-child(172) {
	-webkit-transition-delay: 5.66s;
	transition-delay: 5.66s
}

#page-home .section-hero .slide-items .item.hidden-panel--open .item-content .hidden-panel .description p s:nth-child(173) {
	-webkit-transition-delay: 5.69s;
	transition-delay: 5.69s
}

#page-home .section-hero .slide-items .item.hidden-panel--open .item-content .hidden-panel .description p s:nth-child(174) {
	-webkit-transition-delay: 5.72s;
	transition-delay: 5.72s
}

#page-home .section-hero .slide-items .item.hidden-panel--open .item-content .hidden-panel .description p s:nth-child(175) {
	-webkit-transition-delay: 5.75s;
	transition-delay: 5.75s
}

#page-home .section-hero .slide-items .item.hidden-panel--open .item-content .hidden-panel .description p s:nth-child(176) {
	-webkit-transition-delay: 5.78s;
	transition-delay: 5.78s
}

#page-home .section-hero .slide-items .item.hidden-panel--open .item-content .hidden-panel .description p s:nth-child(177) {
	-webkit-transition-delay: 5.81s;
	transition-delay: 5.81s
}

#page-home .section-hero .slide-items .item.hidden-panel--open .item-content .hidden-panel .description p s:nth-child(178) {
	-webkit-transition-delay: 5.84s;
	transition-delay: 5.84s
}

#page-home .section-hero .slide-items .item.hidden-panel--open .item-content .hidden-panel .description p s:nth-child(179) {
	-webkit-transition-delay: 5.87s;
	transition-delay: 5.87s
}

#page-home .section-hero .slide-items .item.hidden-panel--open .item-content .hidden-panel .description p s:nth-child(180) {
	-webkit-transition-delay: 5.9s;
	transition-delay: 5.9s
}

#page-home .section-hero .slide-items .item.hidden-panel--open .item-content .hidden-panel .description p s:nth-child(181) {
	-webkit-transition-delay: 5.93s;
	transition-delay: 5.93s
}

#page-home .section-hero .slide-items .item.hidden-panel--open .item-content .hidden-panel .description p s:nth-child(182) {
	-webkit-transition-delay: 5.96s;
	transition-delay: 5.96s
}

#page-home .section-hero .slide-items .item.hidden-panel--open .item-content .hidden-panel .description p s:nth-child(183) {
	-webkit-transition-delay: 5.99s;
	transition-delay: 5.99s
}

#page-home .section-hero .slide-items .item.hidden-panel--open .item-content .hidden-panel .description p s:nth-child(184) {
	-webkit-transition-delay: 6.02s;
	transition-delay: 6.02s
}

#page-home .section-hero .slide-items .item.hidden-panel--open .item-content .hidden-panel .description p s:nth-child(185) {
	-webkit-transition-delay: 6.05s;
	transition-delay: 6.05s
}

#page-home .section-hero .slide-items .item.hidden-panel--open .item-content .hidden-panel .description p s:nth-child(186) {
	-webkit-transition-delay: 6.08s;
	transition-delay: 6.08s
}

#page-home .section-hero .slide-items .item.hidden-panel--open .item-content .hidden-panel .description p s:nth-child(187) {
	-webkit-transition-delay: 6.11s;
	transition-delay: 6.11s
}

#page-home .section-hero .slide-items .item.hidden-panel--open .item-content .hidden-panel .description p s:nth-child(188) {
	-webkit-transition-delay: 6.14s;
	transition-delay: 6.14s
}

#page-home .section-hero .slide-items .item.hidden-panel--open .item-content .hidden-panel .description p s:nth-child(189) {
	-webkit-transition-delay: 6.17s;
	transition-delay: 6.17s
}

#page-home .section-hero .slide-items .item.hidden-panel--open .item-content .hidden-panel .description p s:nth-child(190) {
	-webkit-transition-delay: 6.2s;
	transition-delay: 6.2s
}

#page-home .section-hero .slide-items .item.hidden-panel--open .item-content .hidden-panel .description p s:nth-child(191) {
	-webkit-transition-delay: 6.23s;
	transition-delay: 6.23s
}

#page-home .section-hero .slide-items .item.hidden-panel--open .item-content .hidden-panel .description p s:nth-child(192) {
	-webkit-transition-delay: 6.26s;
	transition-delay: 6.26s
}

#page-home .section-hero .slide-items .item.hidden-panel--open .item-content .hidden-panel .description p s:nth-child(193) {
	-webkit-transition-delay: 6.29s;
	transition-delay: 6.29s
}

#page-home .section-hero .slide-items .item.hidden-panel--open .item-content .hidden-panel .description p s:nth-child(194) {
	-webkit-transition-delay: 6.32s;
	transition-delay: 6.32s
}

#page-home .section-hero .slide-items .item.hidden-panel--open .item-content .hidden-panel .description p s:nth-child(195) {
	-webkit-transition-delay: 6.35s;
	transition-delay: 6.35s
}

#page-home .section-hero .slide-items .item.hidden-panel--open .item-content .hidden-panel .description p s:nth-child(196) {
	-webkit-transition-delay: 6.38s;
	transition-delay: 6.38s
}

#page-home .section-hero .slide-items .item.hidden-panel--open .item-content .hidden-panel .description p s:nth-child(197) {
	-webkit-transition-delay: 6.41s;
	transition-delay: 6.41s
}

#page-home .section-hero .slide-items .item.hidden-panel--open .item-content .hidden-panel .description p s:nth-child(198) {
	-webkit-transition-delay: 6.44s;
	transition-delay: 6.44s
}

#page-home .section-hero .slide-items .item.hidden-panel--open .item-content .hidden-panel .description p s:nth-child(199) {
	-webkit-transition-delay: 6.47s;
	transition-delay: 6.47s
}

#page-home .section-hero .slide-items .item.hidden-panel--open .item-content .hidden-panel .description p s:nth-child(200) {
	-webkit-transition-delay: 6.5s;
	transition-delay: 6.5s
}

#page-home .section-hero .slide-items .item.hidden-panel--open .item-content .hidden-panel .description p s:nth-child(201) {
	-webkit-transition-delay: 6.53s;
	transition-delay: 6.53s
}

#page-home .section-hero .slide-items .item.hidden-panel--open .item-content .hidden-panel .description p s:nth-child(202) {
	-webkit-transition-delay: 6.56s;
	transition-delay: 6.56s
}

#page-home .section-hero .slide-items .item.hidden-panel--open .item-content .hidden-panel .description p s:nth-child(203) {
	-webkit-transition-delay: 6.59s;
	transition-delay: 6.59s
}

#page-home .section-hero .slide-items .item.hidden-panel--open .item-content .hidden-panel .description p s:nth-child(204) {
	-webkit-transition-delay: 6.62s;
	transition-delay: 6.62s
}

#page-home .section-hero .slide-items .item.hidden-panel--open .item-content .hidden-panel .description p s:nth-child(205) {
	-webkit-transition-delay: 6.65s;
	transition-delay: 6.65s
}

#page-home .section-hero .slide-items .item.hidden-panel--open .item-content .hidden-panel .description p s:nth-child(206) {
	-webkit-transition-delay: 6.68s;
	transition-delay: 6.68s
}

#page-home .section-hero .slide-items .item.hidden-panel--open .item-content .hidden-panel .description p s:nth-child(207) {
	-webkit-transition-delay: 6.71s;
	transition-delay: 6.71s
}

#page-home .section-hero .slide-items .item.hidden-panel--open .item-content .hidden-panel .description p s:nth-child(208) {
	-webkit-transition-delay: 6.74s;
	transition-delay: 6.74s
}

#page-home .section-hero .slide-items .item.hidden-panel--open .item-content .hidden-panel .description p s:nth-child(209) {
	-webkit-transition-delay: 6.77s;
	transition-delay: 6.77s
}

#page-home .section-hero .slide-items .item.hidden-panel--open .item-content .hidden-panel .description p s:nth-child(210) {
	-webkit-transition-delay: 6.8s;
	transition-delay: 6.8s
}

#page-home .section-hero .slide-items .item.hidden-panel--open .item-content .hidden-panel .description p s:nth-child(211) {
	-webkit-transition-delay: 6.83s;
	transition-delay: 6.83s
}

#page-home .section-hero .slide-items .item.hidden-panel--open .item-content .hidden-panel .description p s:nth-child(212) {
	-webkit-transition-delay: 6.86s;
	transition-delay: 6.86s
}

#page-home .section-hero .slide-items .item.hidden-panel--open .item-content .hidden-panel .description p s:nth-child(213) {
	-webkit-transition-delay: 6.89s;
	transition-delay: 6.89s
}

#page-home .section-hero .slide-items .item.hidden-panel--open .item-content .hidden-panel .description p s:nth-child(214) {
	-webkit-transition-delay: 6.92s;
	transition-delay: 6.92s
}

#page-home .section-hero .slide-items .item.hidden-panel--open .item-content .hidden-panel .description p s:nth-child(215) {
	-webkit-transition-delay: 6.95s;
	transition-delay: 6.95s
}

#page-home .section-hero .slide-items .item.hidden-panel--open .item-content .hidden-panel .description p s:nth-child(216) {
	-webkit-transition-delay: 6.98s;
	transition-delay: 6.98s
}

#page-home .section-hero .slide-items .item.hidden-panel--open .item-content .hidden-panel .description p s:nth-child(217) {
	-webkit-transition-delay: 7.01s;
	transition-delay: 7.01s
}

#page-home .section-hero .slide-items .item.hidden-panel--open .item-content .hidden-panel .description p s:nth-child(218) {
	-webkit-transition-delay: 7.04s;
	transition-delay: 7.04s
}

#page-home .section-hero .slide-items .item.hidden-panel--open .item-content .hidden-panel .description p s:nth-child(219) {
	-webkit-transition-delay: 7.07s;
	transition-delay: 7.07s
}

#page-home .section-hero .slide-items .item.hidden-panel--open .item-content .hidden-panel .description p s:nth-child(220) {
	-webkit-transition-delay: 7.1s;
	transition-delay: 7.1s
}

#page-home .section-hero .slide-items .item.hidden-panel--open .item-content .hidden-panel .description p s:nth-child(221) {
	-webkit-transition-delay: 7.13s;
	transition-delay: 7.13s
}

#page-home .section-hero .slide-items .item.hidden-panel--open .item-content .hidden-panel .description p s:nth-child(222) {
	-webkit-transition-delay: 7.16s;
	transition-delay: 7.16s
}

#page-home .section-hero .slide-items .item.hidden-panel--open .item-content .hidden-panel .description p s:nth-child(223) {
	-webkit-transition-delay: 7.19s;
	transition-delay: 7.19s
}

#page-home .section-hero .slide-items .item.hidden-panel--open .item-content .hidden-panel .description p s:nth-child(224) {
	-webkit-transition-delay: 7.22s;
	transition-delay: 7.22s
}

#page-home .section-hero .slide-items .item.hidden-panel--open .item-content .hidden-panel .description p s:nth-child(225) {
	-webkit-transition-delay: 7.25s;
	transition-delay: 7.25s
}

#page-home .section-hero .slide-items .item.hidden-panel--open .item-content .hidden-panel .description p s:nth-child(226) {
	-webkit-transition-delay: 7.28s;
	transition-delay: 7.28s
}

#page-home .section-hero .slide-items .item.hidden-panel--open .item-content .hidden-panel .description p s:nth-child(227) {
	-webkit-transition-delay: 7.31s;
	transition-delay: 7.31s
}

#page-home .section-hero .slide-items .item.hidden-panel--open .item-content .hidden-panel .description p s:nth-child(228) {
	-webkit-transition-delay: 7.34s;
	transition-delay: 7.34s
}

#page-home .section-hero .slide-items .item.hidden-panel--open .item-content .hidden-panel .description p s:nth-child(229) {
	-webkit-transition-delay: 7.37s;
	transition-delay: 7.37s
}

#page-home .section-hero .slide-items .item.hidden-panel--open .item-content .hidden-panel .description p s:nth-child(230) {
	-webkit-transition-delay: 7.4s;
	transition-delay: 7.4s
}

#page-home .section-hero .slide-items .item.hidden-panel--open .item-content .hidden-panel .description p s:nth-child(231) {
	-webkit-transition-delay: 7.43s;
	transition-delay: 7.43s
}

#page-home .section-hero .slide-items .item.hidden-panel--open .item-content .hidden-panel .description p s:nth-child(232) {
	-webkit-transition-delay: 7.46s;
	transition-delay: 7.46s
}

#page-home .section-hero .slide-items .item.hidden-panel--open .item-content .hidden-panel .description p s:nth-child(233) {
	-webkit-transition-delay: 7.49s;
	transition-delay: 7.49s
}

#page-home .section-hero .slide-items .item.hidden-panel--open .item-content .hidden-panel .description p s:nth-child(234) {
	-webkit-transition-delay: 7.52s;
	transition-delay: 7.52s
}

#page-home .section-hero .slide-items .item.hidden-panel--open .item-content .hidden-panel .description p s:nth-child(235) {
	-webkit-transition-delay: 7.55s;
	transition-delay: 7.55s
}

#page-home .section-hero .slide-items .item.hidden-panel--open .item-content .hidden-panel .description p s:nth-child(236) {
	-webkit-transition-delay: 7.58s;
	transition-delay: 7.58s
}

#page-home .section-hero .slide-items .item.hidden-panel--open .item-content .hidden-panel .description p s:nth-child(237) {
	-webkit-transition-delay: 7.61s;
	transition-delay: 7.61s
}

#page-home .section-hero .slide-items .item.hidden-panel--open .item-content .hidden-panel .description p s:nth-child(238) {
	-webkit-transition-delay: 7.64s;
	transition-delay: 7.64s
}

#page-home .section-hero .slide-items .item.hidden-panel--open .item-content .hidden-panel .description p s:nth-child(239) {
	-webkit-transition-delay: 7.67s;
	transition-delay: 7.67s
}

#page-home .section-hero .slide-items .item.hidden-panel--open .item-content .hidden-panel .description p s:nth-child(240) {
	-webkit-transition-delay: 7.7s;
	transition-delay: 7.7s
}

#page-home .section-hero .slide-items .item.hidden-panel--open .item-content .hidden-panel .description p s:nth-child(241) {
	-webkit-transition-delay: 7.73s;
	transition-delay: 7.73s
}

#page-home .section-hero .slide-items .item.hidden-panel--open .item-content .hidden-panel .description p s:nth-child(242) {
	-webkit-transition-delay: 7.76s;
	transition-delay: 7.76s
}

#page-home .section-hero .slide-items .item.hidden-panel--open .item-content .hidden-panel .description p s:nth-child(243) {
	-webkit-transition-delay: 7.79s;
	transition-delay: 7.79s
}

#page-home .section-hero .slide-items .item.hidden-panel--open .item-content .hidden-panel .description p s:nth-child(244) {
	-webkit-transition-delay: 7.82s;
	transition-delay: 7.82s
}

#page-home .section-hero .slide-items .item.hidden-panel--open .item-content .hidden-panel .description p s:nth-child(245) {
	-webkit-transition-delay: 7.85s;
	transition-delay: 7.85s
}

#page-home .section-hero .slide-items .item.hidden-panel--open .item-content .hidden-panel .description p s:nth-child(246) {
	-webkit-transition-delay: 7.88s;
	transition-delay: 7.88s
}

#page-home .section-hero .slide-items .item.hidden-panel--open .item-content .hidden-panel .description p s:nth-child(247) {
	-webkit-transition-delay: 7.91s;
	transition-delay: 7.91s
}

#page-home .section-hero .slide-items .item.hidden-panel--open .item-content .hidden-panel .description p s:nth-child(248) {
	-webkit-transition-delay: 7.94s;
	transition-delay: 7.94s
}

#page-home .section-hero .slide-items .item.hidden-panel--open .item-content .hidden-panel .description p s:nth-child(249) {
	-webkit-transition-delay: 7.97s;
	transition-delay: 7.97s
}

#page-home .section-hero .slide-items .item.hidden-panel--open .item-content .hidden-panel .description p s:nth-child(250) {
	-webkit-transition-delay: 8s;
	transition-delay: 8s
}

#page-home .section-hero .slide-items .item.hidden-panel--open .item-content .hidden-panel .description p s:nth-child(251) {
	-webkit-transition-delay: 8.03s;
	transition-delay: 8.03s
}

#page-home .section-hero .slide-items .item.hidden-panel--open .item-content .hidden-panel .description p s:nth-child(252) {
	-webkit-transition-delay: 8.06s;
	transition-delay: 8.06s
}

#page-home .section-hero .slide-items .item.hidden-panel--open .item-content .hidden-panel .description p s:nth-child(253) {
	-webkit-transition-delay: 8.09s;
	transition-delay: 8.09s
}

#page-home .section-hero .slide-items .item.hidden-panel--open .item-content .hidden-panel .description p s:nth-child(254) {
	-webkit-transition-delay: 8.12s;
	transition-delay: 8.12s
}

#page-home .section-hero .slide-items .item.hidden-panel--open .item-content .hidden-panel .description p s:nth-child(255) {
	-webkit-transition-delay: 8.15s;
	transition-delay: 8.15s
}

#page-home .section-hero .slide-items .item.hidden-panel--open .item-content .hidden-panel .description p s:nth-child(256) {
	-webkit-transition-delay: 8.18s;
	transition-delay: 8.18s
}

#page-home .section-hero .slide-items .item.hidden-panel--open .item-content .hidden-panel .description p s:nth-child(257) {
	-webkit-transition-delay: 8.21s;
	transition-delay: 8.21s
}

#page-home .section-hero .slide-items .item.hidden-panel--open .item-content .hidden-panel .description p s:nth-child(258) {
	-webkit-transition-delay: 8.24s;
	transition-delay: 8.24s
}

#page-home .section-hero .slide-items .item.hidden-panel--open .item-content .hidden-panel .description p s:nth-child(259) {
	-webkit-transition-delay: 8.27s;
	transition-delay: 8.27s
}

#page-home .section-hero .slide-items .item.hidden-panel--open .item-content .hidden-panel .description p s:nth-child(260) {
	-webkit-transition-delay: 8.3s;
	transition-delay: 8.3s
}

#page-home .section-hero .slide-items .item.hidden-panel--open .item-content .hidden-panel .description p s:nth-child(261) {
	-webkit-transition-delay: 8.33s;
	transition-delay: 8.33s
}

#page-home .section-hero .slide-items .item.hidden-panel--open .item-content .hidden-panel .description p s:nth-child(262) {
	-webkit-transition-delay: 8.36s;
	transition-delay: 8.36s
}

#page-home .section-hero .slide-items .item.hidden-panel--open .item-content .hidden-panel .description p s:nth-child(263) {
	-webkit-transition-delay: 8.39s;
	transition-delay: 8.39s
}

#page-home .section-hero .slide-items .item.hidden-panel--open .item-content .hidden-panel .description p s:nth-child(264) {
	-webkit-transition-delay: 8.42s;
	transition-delay: 8.42s
}

#page-home .section-hero .slide-items .item.hidden-panel--open .item-content .hidden-panel .description p s:nth-child(265) {
	-webkit-transition-delay: 8.45s;
	transition-delay: 8.45s
}

#page-home .section-hero .slide-items .item.hidden-panel--open .item-content .hidden-panel .description p s:nth-child(266) {
	-webkit-transition-delay: 8.48s;
	transition-delay: 8.48s
}

#page-home .section-hero .slide-items .item.hidden-panel--open .item-content .hidden-panel .description p s:nth-child(267) {
	-webkit-transition-delay: 8.51s;
	transition-delay: 8.51s
}

#page-home .section-hero .slide-items .item.hidden-panel--open .item-content .hidden-panel .description p s:nth-child(268) {
	-webkit-transition-delay: 8.54s;
	transition-delay: 8.54s
}

#page-home .section-hero .slide-items .item.hidden-panel--open .item-content .hidden-panel .description p s:nth-child(269) {
	-webkit-transition-delay: 8.57s;
	transition-delay: 8.57s
}

#page-home .section-hero .slide-items .item.hidden-panel--open .item-content .hidden-panel .description p s:nth-child(270) {
	-webkit-transition-delay: 8.6s;
	transition-delay: 8.6s
}

#page-home .section-hero .slide-items .item.hidden-panel--open .item-content .hidden-panel .description p s:nth-child(271) {
	-webkit-transition-delay: 8.63s;
	transition-delay: 8.63s
}

#page-home .section-hero .slide-items .item.hidden-panel--open .item-content .hidden-panel .description p s:nth-child(272) {
	-webkit-transition-delay: 8.66s;
	transition-delay: 8.66s
}

#page-home .section-hero .slide-items .item.hidden-panel--open .item-content .hidden-panel .description p s:nth-child(273) {
	-webkit-transition-delay: 8.69s;
	transition-delay: 8.69s
}

#page-home .section-hero .slide-items .item.hidden-panel--open .item-content .hidden-panel .description p s:nth-child(274) {
	-webkit-transition-delay: 8.72s;
	transition-delay: 8.72s
}

#page-home .section-hero .slide-items .item.hidden-panel--open .item-content .hidden-panel .description p s:nth-child(275) {
	-webkit-transition-delay: 8.75s;
	transition-delay: 8.75s
}

#page-home .section-hero .slide-items .item.hidden-panel--open .item-content .hidden-panel .description p s:nth-child(276) {
	-webkit-transition-delay: 8.78s;
	transition-delay: 8.78s
}

#page-home .section-hero .slide-items .item.hidden-panel--open .item-content .hidden-panel .description p s:nth-child(277) {
	-webkit-transition-delay: 8.81s;
	transition-delay: 8.81s
}

#page-home .section-hero .slide-items .item.hidden-panel--open .item-content .hidden-panel .description p s:nth-child(278) {
	-webkit-transition-delay: 8.84s;
	transition-delay: 8.84s
}

#page-home .section-hero .slide-items .item.hidden-panel--open .item-content .hidden-panel .description p s:nth-child(279) {
	-webkit-transition-delay: 8.87s;
	transition-delay: 8.87s
}

#page-home .section-hero .slide-items .item.hidden-panel--open .item-content .hidden-panel .description p s:nth-child(280) {
	-webkit-transition-delay: 8.9s;
	transition-delay: 8.9s
}

#page-home .section-hero .slide-items .item.hidden-panel--open .item-content .hidden-panel .description p s:nth-child(281) {
	-webkit-transition-delay: 8.93s;
	transition-delay: 8.93s
}

#page-home .section-hero .slide-items .item.hidden-panel--open .item-content .hidden-panel .description p s:nth-child(282) {
	-webkit-transition-delay: 8.96s;
	transition-delay: 8.96s
}

#page-home .section-hero .slide-items .item.hidden-panel--open .item-content .hidden-panel .description p s:nth-child(283) {
	-webkit-transition-delay: 8.99s;
	transition-delay: 8.99s
}

#page-home .section-hero .slide-items .item.hidden-panel--open .item-content .hidden-panel .description p s:nth-child(284) {
	-webkit-transition-delay: 9.02s;
	transition-delay: 9.02s
}

#page-home .section-hero .slide-items .item.hidden-panel--open .item-content .hidden-panel .description p s:nth-child(285) {
	-webkit-transition-delay: 9.05s;
	transition-delay: 9.05s
}

#page-home .section-hero .slide-items .item.hidden-panel--open .item-content .hidden-panel .description p s:nth-child(286) {
	-webkit-transition-delay: 9.08s;
	transition-delay: 9.08s
}

#page-home .section-hero .slide-items .item.hidden-panel--open .item-content .hidden-panel .description p s:nth-child(287) {
	-webkit-transition-delay: 9.11s;
	transition-delay: 9.11s
}

#page-home .section-hero .slide-items .item.hidden-panel--open .item-content .hidden-panel .description p s:nth-child(288) {
	-webkit-transition-delay: 9.14s;
	transition-delay: 9.14s
}

#page-home .section-hero .slide-items .item.hidden-panel--open .item-content .hidden-panel .description p s:nth-child(289) {
	-webkit-transition-delay: 9.17s;
	transition-delay: 9.17s
}

#page-home .section-hero .slide-items .item.hidden-panel--open .item-content .hidden-panel .description p s:nth-child(290) {
	-webkit-transition-delay: 9.2s;
	transition-delay: 9.2s
}

#page-home .section-hero .slide-items .item.hidden-panel--open .item-content .hidden-panel .description p s:nth-child(291) {
	-webkit-transition-delay: 9.23s;
	transition-delay: 9.23s
}

#page-home .section-hero .slide-items .item.hidden-panel--open .item-content .hidden-panel .description p s:nth-child(292) {
	-webkit-transition-delay: 9.26s;
	transition-delay: 9.26s
}

#page-home .section-hero .slide-items .item.hidden-panel--open .item-content .hidden-panel .description p s:nth-child(293) {
	-webkit-transition-delay: 9.29s;
	transition-delay: 9.29s
}

#page-home .section-hero .slide-items .item.hidden-panel--open .item-content .hidden-panel .description p s:nth-child(294) {
	-webkit-transition-delay: 9.32s;
	transition-delay: 9.32s
}

#page-home .section-hero .slide-items .item.hidden-panel--open .item-content .hidden-panel .description p s:nth-child(295) {
	-webkit-transition-delay: 9.35s;
	transition-delay: 9.35s
}

#page-home .section-hero .slide-items .item.hidden-panel--open .item-content .hidden-panel .description p s:nth-child(296) {
	-webkit-transition-delay: 9.38s;
	transition-delay: 9.38s
}

#page-home .section-hero .slide-items .item.hidden-panel--open .item-content .hidden-panel .description p s:nth-child(297) {
	-webkit-transition-delay: 9.41s;
	transition-delay: 9.41s
}

#page-home .section-hero .slide-items .item.hidden-panel--open .item-content .hidden-panel .description p s:nth-child(298) {
	-webkit-transition-delay: 9.44s;
	transition-delay: 9.44s
}

#page-home .section-hero .slide-items .item.hidden-panel--open .item-content .hidden-panel .description p s:nth-child(299) {
	-webkit-transition-delay: 9.47s;
	transition-delay: 9.47s
}

#page-home .section-hero .slide-navigation {
	position: absolute;
	right: 0;
	bottom: 80px;
	left: 0;
	z-index: 2;
	pointer-events: none
}

#page-home .section-hero .slide-navigation .container {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center
}

#page-home .section-hero .slide-navigation .arrow {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	width: 20px;
	height: 20px;
	pointer-events: all
}

#page-home .section-hero .slide-navigation .arrow::before {
	content: '';
	background-color: #adbecf;
	display: inline-block;
	width: 6px;
	height: 6px;
	position: relative;
	top: -1px;
	-webkit-transition: background-color .5s ease;
	transition: background-color .5s ease
}

#page-home .section-hero .slide-navigation .arrow:hover::before {
	background-color: #51a8b1
}

#page-home .section-hero .slide-navigation .arrow-prev {
	margin-right: -5px
}

#page-home .section-hero .slide-navigation .arrow-prev::before {
	-webkit-clip-path: polygon(100% 0, 0 50%, 100% 100%);
	clip-path: polygon(100% 0, 0 50%, 100% 100%)
}

#page-home .section-hero .slide-navigation .arrow-next {
	margin-right: -5px
}

#page-home .section-hero .slide-navigation .arrow-next::before {
	-webkit-clip-path: polygon(0 0, 100% 50%, 0 100%);
	clip-path: polygon(0 0, 100% 50%, 0 100%)
}

#page-home .section-hero .slide-navigation .dots {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	margin: 0 10px;
	margin-right: 8px
}

#page-home .section-hero .slide-navigation .dots .index-current {
	color: #51a8b1;
	font-size: 18px;
	font-weight: 700;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	letter-spacing: 2px
}

#page-home .section-hero .slide-navigation .dots-list {
	margin: 0 10px;
	margin-left: 8px
}

#page-home .section-hero .slide-navigation .dots-list ul {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	position: relative;
	top: -2px
}

#page-home .section-hero .slide-navigation .dots-list ul::before {
	content: '';
	background-color: rgba(173, 190, 207, .5);
	display: block;
	width: 3px;
	height: 3px;
	position: absolute;
	top: 50%;
	left: 0;
	margin-top: -1px
}

#page-home .section-hero .slide-navigation .dots-list ul .dot {
	background-color: rgba(173, 190, 207, .5);
	display: block;
	width: 30px;
	height: 1px;
	position: relative;
	-webkit-transition: background-color .5s ease;
	transition: background-color .5s ease
}

#page-home .section-hero .slide-navigation .dots-list ul .dot::after,
#page-home .section-hero .slide-navigation .dots-list ul .dot::before {
	content: '';
	position: absolute
}

#page-home .section-hero .slide-navigation .dots-list ul .dot::before {
	background-color: #51a8b1;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	-webkit-transform-origin: 0 50%;
	transform-origin: 0 50%;
	-webkit-transform: scaleX(0);
	transform: scaleX(0);
	-webkit-transition: -webkit-transform 1s cubic-bezier(.5, 0, 0, 1);
	transition: -webkit-transform 1s cubic-bezier(.5, 0, 0, 1);
	transition: transform 1s cubic-bezier(.5, 0, 0, 1);
	transition: transform 1s cubic-bezier(.5, 0, 0, 1), -webkit-transform 1s cubic-bezier(.5, 0, 0, 1)
}

#page-home .section-hero .slide-navigation .dots-list ul .dot.is-animating::before {
	-webkit-transform: scaleX(1);
	transform: scaleX(1);
	-webkit-transition: -webkit-transform 7s linear;
	transition: -webkit-transform 7s linear;
	transition: transform 7s linear;
	transition: transform 7s linear, -webkit-transform 7s linear
}

#page-home .section-hero .slide-navigation .dots-list ul .dot::after {
	background-color: rgba(173, 190, 207, .5);
	display: block;
	width: 3px;
	height: 3px;
	top: 50%;
	right: 0;
	margin-top: -1px
}

#page-home .section-hero .slide-navigation .dots .total-count {
	color: #adbecf;
	font-size: 12px;
	letter-spacing: 2px
}

#page-home .section-hero .slide-next {
	position: absolute;
	right: 0;
	bottom: 60px;
	left: 0;
	z-index: 2;
	pointer-events: none
}

#page-home .section-hero .slide-next .container {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: end;
	-ms-flex-pack: end;
	justify-content: flex-end
}

#page-home .section-hero .slide-next .container .wrapper {
	width: 230px;
	height: 130px;
	position: relative;
	pointer-events: all
}

#page-home .section-hero .slide-next .container .wrapper::before {
	content: '';
	background-color: #51a8b1;
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 2;
	-webkit-transform: scaleX(0);
	transform: scaleX(0);
	-webkit-transform-origin: 0 50%;
	transform-origin: 0 50%;
	pointer-events: none
}

@-webkit-keyframes home_hero_next_changing {
	0% {
		-webkit-transform: scaleX(0);
		transform: scaleX(0);
		-webkit-transform-origin: 0 50%;
		transform-origin: 0 50%
	}

	49.99% {
		-webkit-transform: scaleX(1);
		transform: scaleX(1);
		-webkit-transform-origin: 0 50%;
		transform-origin: 0 50%
	}

	51.01% {
		-webkit-transform: scaleX(1);
		transform: scaleX(1);
		-webkit-transform-origin: 100% 50%;
		transform-origin: 100% 50%
	}

	100% {
		-webkit-transform: scaleX(0);
		transform: scaleX(0);
		-webkit-transform-origin: 100% 50%;
		transform-origin: 100% 50%
	}
}

@keyframes home_hero_next_changing {
	0% {
		-webkit-transform: scaleX(0);
		transform: scaleX(0);
		-webkit-transform-origin: 0 50%;
		transform-origin: 0 50%
	}

	49.99% {
		-webkit-transform: scaleX(1);
		transform: scaleX(1);
		-webkit-transform-origin: 0 50%;
		transform-origin: 0 50%
	}

	51.01% {
		-webkit-transform: scaleX(1);
		transform: scaleX(1);
		-webkit-transform-origin: 100% 50%;
		transform-origin: 100% 50%
	}

	100% {
		-webkit-transform: scaleX(0);
		transform: scaleX(0);
		-webkit-transform-origin: 100% 50%;
		transform-origin: 100% 50%
	}
}

#page-home .section-hero .slide-next.is-changing .container .wrapper {
	pointer-events: none
}

#page-home .section-hero .slide-next.is-changing .container .wrapper::before {
	-webkit-animation: home_hero_next_changing 1s cubic-bezier(.5, 0, 0, 1);
	animation: home_hero_next_changing 1s cubic-bezier(.5, 0, 0, 1)
}

#page-home .section-hero .slide-next .item {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	opacity: 0;
	visibility: hidden;
	-webkit-transition: opacity .5s ease, visibility .5s ease;
	transition: opacity .5s ease, visibility .5s ease
}

#page-home .section-hero .slide-next .item.active {
	opacity: 1;
	visibility: visible
}

#page-home .section-hero .slide-next .item-link {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 3
}

#page-home .section-hero .slide-next .item-text {
	color: #fff;
	font-size: 12px;
	letter-spacing: 2px;
	text-transform: uppercase;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	position: absolute;
	top: 50%;
	left: -40px;
	z-index: 3;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
	pointer-events: none
}

#page-home .section-hero .slide-next .item-text span {
	display: block
}

#page-home .section-hero .slide-next .item-text span:first-child {
	opacity: 0;
	-webkit-transform: translateX(10px);
	transform: translateX(10px);
	-webkit-transition: opacity .5s ease, -webkit-transform .5s cubic-bezier(.5, 0, 0, 1);
	transition: opacity .5s ease, -webkit-transform .5s cubic-bezier(.5, 0, 0, 1);
	transition: opacity .5s ease, transform .5s cubic-bezier(.5, 0, 0, 1);
	transition: opacity .5s ease, transform .5s cubic-bezier(.5, 0, 0, 1), -webkit-transform .5s cubic-bezier(.5, 0, 0, 1)
}

#page-home .section-hero .slide-next .item-text span:last-child {
	background-color: #fff;
	display: block;
	width: 100%;
	height: 1px;
	position: relative;
	margin-top: 7px;
	-webkit-transform-origin: 0 50%;
	transform-origin: 0 50%;
	-webkit-transform: scaleX(0);
	transform: scaleX(0);
	-webkit-transition: -webkit-transform .5s cubic-bezier(.5, 0, 0, 1);
	transition: -webkit-transform .5s cubic-bezier(.5, 0, 0, 1);
	transition: transform .5s cubic-bezier(.5, 0, 0, 1);
	transition: transform .5s cubic-bezier(.5, 0, 0, 1), -webkit-transform .5s cubic-bezier(.5, 0, 0, 1)
}

#page-home .section-hero .slide-next .item-text span:last-child::after {
	content: '';
	background-color: #fff;
	display: block;
	width: 6px;
	height: 6px;
	position: absolute;
	top: 50%;
	right: -6px;
	margin-top: -3px;
	-webkit-clip-path: polygon(0 0, 100% 50%, 0 100%);
	clip-path: polygon(0 0, 100% 50%, 0 100%);
	opacity: 0;
	-webkit-transition: opacity .5s ease;
	transition: opacity .5s ease;
	-webkit-transition-delay: 0s;
	transition-delay: 0s
}

#page-home .section-hero .slide-next .item-image {
	background-color: #112e55;
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 1
}

#page-home .section-hero .slide-next .item-image::before {
	content: '';
	background-color: #51a8b1;
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 3;
	opacity: 0;
	-webkit-transform-origin: 0 50%;
	transform-origin: 0 50%;
	-webkit-transform: scaleX(0);
	transform: scaleX(0);
	-webkit-transition: opacity .5s ease, -webkit-transform .5s ease;
	transition: opacity .5s ease, -webkit-transform .5s ease;
	transition: opacity .5s ease, transform .5s ease;
	transition: opacity .5s ease, transform .5s ease, -webkit-transform .5s ease
}

#page-home .section-hero .slide-next .item-image img {
	display: block;
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
	pointer-events: none;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	position: relative;
	z-index: 1;
	opacity: .6;
	-webkit-transition: opacity .7s ease;
	transition: opacity .7s ease
}

#page-home .section-hero .slide-next .item:hover .item-text span:first-child {
	opacity: 1;
	-webkit-transform: translateX(0);
	transform: translateX(0)
}

#page-home .section-hero .slide-next .item:hover .item-text span:last-child {
	-webkit-transform: scale(1);
	transform: scale(1)
}

#page-home .section-hero .slide-next .item:hover .item-text span:last-child::after {
	opacity: 1;
	-webkit-transition-delay: .5s;
	transition-delay: .5s
}

#page-home .section-hero .slide-next .item:hover .item-image::before {
	opacity: 1;
	-webkit-transform: scaleX(.22);
	transform: scaleX(.22)
}

#page-home .section-hero .slide-next .item:hover .item-image img {
	opacity: 1
}

#page-home .section-projects {
	background-color: #112e55;
	position: relative;
	padding: 200px 0;
	overflow: hidden
}

#page-home .section-projects .background-slide {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 1
}

#page-home .section-projects .background-slide .overlay,
#page-home .section-projects .background-slide::after,
#page-home .section-projects .background-slide::before {
	content: '';
	position: absolute;
	right: 0;
	left: 0
}

#page-home .section-projects .background-slide::after,
#page-home .section-projects .background-slide::before {
	z-index: 3;
	height: 300px
}

#page-home .section-projects .background-slide::before {
	background-image: -webkit-gradient(linear, left top, left bottom, from(#112e55), to(transparent));
	background-image: linear-gradient(to bottom, #112e55, transparent);
	top: 0
}

#page-home .section-projects .background-slide::after {
	background-image: -webkit-gradient(linear, left bottom, left top, from(#112e55), to(transparent));
	background-image: linear-gradient(to top, #112e55, transparent);
	bottom: 0
}

#page-home .section-projects .background-slide .overlay {
	background-color: #0c2640;
	z-index: 2;
	mix-blend-mode: soft-light;
	top: 0;
	bottom: 0
}

#page-home .section-projects .background-slide .images {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0
}

#page-home .section-projects .background-slide .images .item {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	opacity: 0;
	-webkit-transition: opacity 1s ease;
	transition: opacity 1s ease
}

#page-home .section-projects .background-slide .images .item.active {
	opacity: 1
}

#page-home .section-projects .background-slide .images .item img {
	display: block;
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
	pointer-events: none;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	position: relative;
	z-index: 1;
	opacity: .2;
	-webkit-filter: grayscale(100%);
	filter: grayscale(100%)
}

#page-home .section-projects .container {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	position: relative;
	z-index: 2
}

#page-home .section-projects .container .left {
	width: 300px;
	margin-right: 100px;
	-ms-flex-negative: 0;
	flex-shrink: 0;
	padding-top: 70px
}

#page-home .section-projects .container .right {
	-webkit-box-flex: 1;
	-ms-flex-positive: 1;
	flex-grow: 1;
	max-width: calc(100% - 320px)
}

#page-home .section-projects .info-slide {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	height: 360px
}

#page-home .section-projects .info-slide-items {
	width: 100%;
	height: 230px;
	position: relative
}

#page-home .section-projects .info-slide-items .item {
	position: absolute;
	top: 0;
	left: 0;
	opacity: 0;
	visibility: hidden;
	-webkit-transition: opacity 1s ease, visibility 1s ease;
	transition: opacity 1s ease, visibility 1s ease
}

#page-home .section-projects .info-slide-items .item-category {
	color: #51a8b1;
	font-size: 14px;
	font-weight: 600;
	text-transform: uppercase;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	margin-bottom: 15px
}

#page-home .section-projects .info-slide-items .item-location {
	color: #fff;
	text-transform: uppercase;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	margin-bottom: 15px
}

#page-home .section-projects .info-slide-items .item-location span {
	display: block
}

#page-home .section-projects .info-slide-items .item-location span:first-child {
	font-size: 32px;
	font-weight: 700;
	margin-bottom: 3px
}

#page-home .section-projects .info-slide-items .item-location span:last-child {
	font-size: 24px
}

#page-home .section-projects .info-slide-items .item-title {
	color: #abd69c;
	font-size: 18px;
	font-weight: 600;
	text-transform: uppercase;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	opacity: 0;
	-webkit-transform: translateX(15px);
	transform: translateX(15px);
	-webkit-transition: opacity .7s ease, -webkit-transform .7s cubic-bezier(.5, 0, 0, 1);
	transition: opacity .7s ease, -webkit-transform .7s cubic-bezier(.5, 0, 0, 1);
	transition: opacity .7s ease, transform .7s cubic-bezier(.5, 0, 0, 1);
	transition: opacity .7s ease, transform .7s cubic-bezier(.5, 0, 0, 1), -webkit-transform .7s cubic-bezier(.5, 0, 0, 1);
	-webkit-transition-delay: 1s;
	transition-delay: 1s
}

#page-home .section-projects .info-slide-items .item-button {
	margin-top: 40px;
	opacity: 0;
	-webkit-transition: opacity .7s ease;
	transition: opacity .7s ease;
	-webkit-transition-delay: 1s;
	transition-delay: 1s
}

#page-home .section-projects .info-slide-items .item.active {
	opacity: 1;
	visibility: visible
}

#page-home .section-projects .info-slide-items .item.active .item-title {
	opacity: 1;
	-webkit-transform: translateX(0);
	transform: translateX(0);
	-webkit-transition-delay: .7s;
	transition-delay: .7s
}

#page-home .section-projects .info-slide-items .item.active .item-button {
	opacity: 1
}

#page-home .section-projects .info-slide + .button {
	margin-top: 44px
}

#page-home .section-projects .info-slide + .button a {
	color: #fff;
	font-size: 12px;
	font-weight: 600;
	text-transform: uppercase;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	-webkit-transition: color .5s ease, letter-spacing .7s cubic-bezier(.5, 0, 0, 1);
	transition: color .5s ease, letter-spacing .7s cubic-bezier(.5, 0, 0, 1)
}

#page-home .section-projects .info-slide + .button a:hover {
	color: #51a8b1;
	letter-spacing: 3px
}

#page-home .section-projects .info-slide + .button a::after {
	content: '';
	background-color: #51a8b1;
	width: 6px;
	height: 8px;
	display: inline-block;
	margin-left: 10px;
	-webkit-clip-path: polygon(0 0, 100% 50%, 0 100%);
	clip-path: polygon(0 0, 100% 50%, 0 100%)
}

#page-home .section-projects .gallery-filter {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center
}

#page-home .section-projects .gallery-filter .search-button {
	margin-right: 30px
}

#page-home .section-projects .gallery-filter .search-button svg {
	fill: #fff;
	position: relative;
	top: 2px;
	-webkit-transition: fill .5s ease;
	transition: fill .5s ease
}

#page-home .section-projects .gallery-filter .search-button:hover svg {
	fill: #51a8b1
}

#page-home .section-projects .gallery-filter ul {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center
}

#page-home .section-projects .gallery-filter ul .item:not(:last-child) {
	margin-right: 25px
}

#page-home .section-projects .gallery-filter ul .item button {
	color: #a4a9af;
	font-size: 13px;
	font-weight: 600;
	text-transform: uppercase;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	-webkit-transition: color .5s ease;
	transition: color .5s ease
}

#page-home .section-projects .gallery-filter ul .item.active button {
	color: #51a8b1
}

#page-home .section-projects .gallery-filter ul .item:not(.active) button:hover {
	color: #fff
}

#page-home .section-projects .gallery-slide {
	position: relative;
	margin-top: 50px;
	padding-left: 46px;
	height: 360px
}

#page-home .section-projects .gallery-slide-link {
	position: absolute;
	left: 12px;
	bottom: 25px;
	z-index: 2
}

#page-home .section-projects .gallery-slide-items {
	position: relative;
	z-index: 1;
	-webkit-transition: opacity .7s ease, visibility .7s ease;
	transition: opacity .7s ease, visibility .7s ease
}

#page-home .section-projects .gallery-slide-items .slick-track {
	margin-left: unset;
	margin-right: unset
}

#page-home .section-projects .gallery-slide-items * {
	outline: 0 !important
}

#page-home .section-projects .gallery-slide-items .slick-slide {
	cursor: pointer
}

#page-home .section-projects .gallery-slide-items .slick-slide:not(:last-child) {
	margin-right: 30px
}

#page-home .section-projects .gallery-slide-items .slick-slide.slick-current {
	pointer-events: none
}

#page-home .section-projects .gallery-slide-items .item {
	width: 250px !important;
	height: 360px;
	position: relative
}

#page-home .section-projects .gallery-slide-items .item-cover {
	background-color: #0d2740;
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0
}

#page-home .section-projects .gallery-slide-items .item-cover::before {
	content: '';
	background-color: #51a8b1;
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 2;
	mix-blend-mode: multiply;
	-webkit-transition: opacity 1s ease;
	transition: opacity 1s ease
}

#page-home .section-projects .gallery-slide-items .item-cover img {
	display: block;
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
	pointer-events: none;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	position: relative;
	z-index: 1;
	opacity: .5;
	-webkit-filter: grayscale(100%);
	filter: grayscale(100%);
	-webkit-transition: opacity 1s ease, -webkit-filter 1s ease;
	transition: opacity 1s ease, -webkit-filter 1s ease;
	transition: opacity 1s ease, filter 1s ease;
	transition: opacity 1s ease, filter 1s ease, -webkit-filter 1s ease
}

#page-home .section-projects .gallery-slide-items .item:hover .item-cover::before {
	opacity: .7
}

#page-home .section-projects .gallery-slide-items .item:hover .item-cover img {
	-webkit-filter: grayscale(50%);
	filter: grayscale(50%);
	opacity: .7
}

#page-home .section-projects .gallery-slide-items .item.active .item-cover::before {
	opacity: 0
}

#page-home .section-projects .gallery-slide-items .item.active .item-cover img {
	opacity: 1;
	-webkit-filter: grayscale(0);
	filter: grayscale(0)
}

#page-home .section-projects .gallery-slide-navigation {
	position: absolute;
	left: 46px;
	bottom: -60px;
	-webkit-transition: opacity .7s ease, visibility .7s ease;
	transition: opacity .7s ease, visibility .7s ease;
	opacity: 0;
	visibility: hidden
}

#page-home .section-projects .gallery-slide-navigation .arrow {
	color: #fff;
	font-size: 12px;
	font-weight: 600;
	text-transform: uppercase;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	-webkit-transition: color .5s ease, letter-spacing .7s cubic-bezier(.5, 0, 0, 1);
	transition: color .5s ease, letter-spacing .7s cubic-bezier(.5, 0, 0, 1)
}

#page-home .section-projects .gallery-slide-navigation .arrow:hover {
	color: #51a8b1;
	letter-spacing: 3px
}

#page-home .section-projects .gallery-slide-navigation .arrow:not(:last-child) {
	margin-right: 20px
}

#page-home .section-projects .gallery-slide-navigation .arrow::after,
#page-home .section-projects .gallery-slide-navigation .arrow::before {
	background-color: #51a8b1;
	width: 6px;
	height: 8px;
	display: inline-block
}

#page-home .section-projects .gallery-slide-navigation .arrow-prev::before {
	content: '';
	margin-right: 10px;
	-webkit-clip-path: polygon(100% 0, 0 50%, 100% 100%);
	clip-path: polygon(100% 0, 0 50%, 100% 100%)
}

#page-home .section-projects .gallery-slide-navigation .arrow-next::after {
	content: '';
	margin-left: 10px;
	-webkit-clip-path: polygon(0 0, 100% 50%, 0 100%);
	clip-path: polygon(0 0, 100% 50%, 0 100%)
}

#page-home .section-projects .gallery-slide-navigation.active {
	opacity: 1;
	visibility: visible
}

#page-home .section-projects .gallery-slide.hidden {
	pointer-events: none
}

#page-home .section-projects .gallery-slide.hidden .gallery-slide-items,
#page-home .section-projects .gallery-slide.hidden .gallery-slide-navigation {
	opacity: 0;
	visibility: hidden
}

#page-home .section-projects .gallery-slide.is-changing .gallery-slide-items,
#page-home .section-projects .gallery-slide.is-changing .gallery-slide-navigation {
	pointer-events: none
}

#page-home .section-about {
	background-color: #112e55;
	position: relative;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	position: relative;
	z-index: 4;
	padding: 110px 0 80px
}

#page-home .section-about .background {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 1
}

#page-home .section-about .background .left,
#page-home .section-about .background .right {
	position: absolute
}

#page-home .section-about .background .left {
	background-color: #fff;
	top: 110px;
	left: 0;
	z-index: 2
}

#page-home .section-about .background .left .dots {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	grid-column-gap: 16px;
	grid-row-gap: 16px;
	width: 84px;
	position: absolute;
	bottom: -113px;
	left: 50%;
	margin-left: -110px
}

#page-home .section-about .background .right {
	top: 0;
	right: 0;
	bottom: 0;
	width: 60%;
	z-index: 1
}

#page-home .section-about .background .right .video {
	background-color: #112e55;
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	overflow: hidden
}

#page-home .section-about .background .right .video-link {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 2
}

#page-home .section-about .background .right .video-link span,
#page-home .section-about .background .right .video-link::after,
#page-home .section-about .background .right .video-link::before {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%)
}

#page-home .section-about .background .right .video-link::after,
#page-home .section-about .background .right .video-link::before {
	border: 1px solid #51a8b1;
	border-radius: 50%;
	width: 70px;
	height: 70px;
	-webkit-transition: border-color .5s ease, opacity .5s ease, -webkit-transform .5s cubic-bezier(.5, 0, 0, 1);
	transition: border-color .5s ease, opacity .5s ease, -webkit-transform .5s cubic-bezier(.5, 0, 0, 1);
	transition: border-color .5s ease, opacity .5s ease, transform .5s cubic-bezier(.5, 0, 0, 1);
	transition: border-color .5s ease, opacity .5s ease, transform .5s cubic-bezier(.5, 0, 0, 1), -webkit-transform .5s cubic-bezier(.5, 0, 0, 1)
}

#page-home .section-about .background .right .video-link::after {
	opacity: 0
}

#page-home .section-about .background .right .video-link span {
	background-color: #fff;
	width: 11px;
	height: 16px;
	margin-top: 1px;
	margin-left: 1px;
	-webkit-clip-path: polygon(0 0, 100% 50%, 0 100%);
	clip-path: polygon(0 0, 100% 50%, 0 100%)
}

#page-home .section-about .background .right .video-link:hover::before {
	border-color: rgba(255, 255, 255, .4);
	-webkit-transform: translate(-50%, -50%) scale(1.1);
	transform: translate(-50%, -50%) scale(1.1)
}

#page-home .section-about .background .right .video-link:hover::after {
	opacity: 1;
	-webkit-transform: translate(-50%, -50%) scale(.75);
	transform: translate(-50%, -50%) scale(.75)
}

#page-home .section-about .background .right .video img,
#page-home .section-about .background .right .video video {
	display: block;
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
	pointer-events: none;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	z-index: 1;
	opacity: .6
}

#page-home .section-about .container {
	position: relative;
	z-index: 2;
	pointer-events: none
}

#page-home .section-about .container .content {
	display: inline-block;
	padding: 110px 45px;
	padding-bottom: 90px;
	pointer-events: all;
	max-width: 620px
}

#page-home .section-about .container .content-text {
    width: 530px;
    color: #707e8c;
    font-size: 23px;
	line-height: 120%;
	text-transform: uppercase;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	margin-bottom: 50px;
	position: relative;
	left: 0px;
	text-align: right;
}

#page-home .section-about .container .content-text span,
#page-home .section-about .container .content-text strong {
	font-weight: 700
}

#page-home .section-about .container .content-text strong {
	color: #112e55
}

#page-home .section-about .container .content-text span {
	color: #51a8b1
}

#page-home .section-about .container .content .button {
	padding-left: 170px;
	text-align: right
}

#page-home .section-selected {
	position: relative;
	z-index: 1;
	margin-top: -80px;
	padding-top: 250px;
	z-index: 3
}

#page-home .section-selected .background {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 150px;
	left: 0;
	z-index: 1
}

#page-home .section-selected .background .wrapper {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 1;
	opacity: .06
}

#page-home .section-selected .background .wrapper::before {
	content: '';
	background-color: #112e55;
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 2;
	mix-blend-mode: screen
}

#page-home .section-selected .background .wrapper img {
	display: block;
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
	pointer-events: none;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	position: relative;
	z-index: 1;
	-webkit-filter: grayscale(100%);
	filter: grayscale(100%)
}

#page-home .section-selected .background .dots {
	display: grid;
	grid-template-columns: repeat(9, 1fr);
	grid-column-gap: 16px;
	grid-row-gap: 16px;
	width: 164px;
	position: absolute;
	right: 50px;
	bottom: -92px;
	z-index: 2
}


#page-home .section-selected .container {
	position: relative;
	z-index: 2
}

#page-home .section-selected .block {
	width: 570px;
	position: relative;
	padding: 125px 60px 70px
}

#page-home .section-selected .block-background {
	background-color: #112e55;
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 1
}

#page-home .section-selected .block-background img {
	display: block;
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
	pointer-events: none;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	opacity: .25
}

#page-home .section-selected .block-link {
	position: absolute;
	top: 90px;
	right: 0;
	z-index: 3;
	-webkit-transform: translateX(50%);
	transform: translateX(50%)
}

#page-home .section-selected .block-link .plus-btn--grid span {
	height: 33.33px
}

#page-home .section-selected .block-content {
	position: relative;
	z-index: 2
}

#page-home .section-selected .block-content .title {
	color: #fff;
	font-size: 30px;
	text-transform: uppercase;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	margin-bottom: 25px
}

#page-home .section-selected .block-content .title span {
	display: block
}

#page-home .section-selected .block-content .subtitle {
	color: #51a8b1;
	font-size: 18px;
	font-weight: 600;
	line-height: 120%;
	text-transform: uppercase;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	margin-bottom: 70px
}

#page-home .section-selected .block-content .logo a {
	display: block
}

#page-home .section-selected .block-content .logo a img {
	opacity: .8;
	-webkit-transition: opacity .3s ease;
	transition: opacity .3s ease
}

#page-home .section-selected .block-content .logo a:hover img {
	opacity: 1
}

#page-home .section-opportunities {
	position: relative;
	padding: 300px 0 150px;
	margin-top: -150px;
	z-index: 2
}

#page-home .section-opportunities .background {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 1
}

#page-home .section-opportunities .background img {
	width: 100%;
	max-height: 100%;
	-o-object-fit: cover;
	object-fit: cover
}

#page-home .section-opportunities .container {
	position: relative;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	width: 1000px;
	z-index: 2
}

#page-home .section-opportunities .container .left {
	-webkit-box-flex: 1;
	-ms-flex-positive: 1;
	flex-grow: 1;
	margin-top: 39px;
	padding-right: 50px
}

#page-home .section-opportunities .container .right {
	width: 570px;
	-ms-flex-negative: 0;
	flex-shrink: 0
}

#page-home .section-opportunities .left {
	position: relative
}

#page-home .section-opportunities .left .title {
	color: #707e8c;
	font-size: 30px;
	text-transform: uppercase;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	margin-bottom: 25px
}

#page-home .section-opportunities .left .subtitle {
	color: #51a8b1;
	font-size: 18px;
	font-weight: 600;
	line-height: 120%;
	text-transform: uppercase;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale
}

#page-home .section-opportunities .projects {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	grid-column-gap: 30px;
	grid-row-gap: 30px
}

#page-home .section-opportunities .projects .item {
	background-color: #112e55;
	width: 170px;
	height: 170px;
	position: relative
}

#page-home .section-opportunities .projects .item-link {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 3
}

#page-home .section-opportunities .projects .item-cover {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 1
}

#page-home .section-opportunities .projects .item-cover img {
	display: block;
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
	pointer-events: none;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	-webkit-transition: opacity .5s ease;
	transition: opacity .5s ease
}

#page-home .section-opportunities .projects .item-info {
	color: #fff;
	font-weight: 600;
	text-align: center;
	text-transform: uppercase;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 2;
	padding: 0 25px;
	opacity: 0;
	visibility: hidden;
	-webkit-transition: opacity .5s ease, visibility .5s ease;
	transition: opacity .5s ease, visibility .5s ease
}

#page-home .section-opportunities .projects .item-info .icon {
	margin: 15px 0 7px;
	opacity: 0;
	-webkit-transform: translateY(-5px);
	transform: translateY(-5px);
	-webkit-transition: opacity .5s ease, -webkit-transform .5s cubic-bezier(.5, 0, 0, 1);
	transition: opacity .5s ease, -webkit-transform .5s cubic-bezier(.5, 0, 0, 1);
	transition: opacity .5s ease, transform .5s cubic-bezier(.5, 0, 0, 1);
	transition: opacity .5s ease, transform .5s cubic-bezier(.5, 0, 0, 1), -webkit-transform .5s cubic-bezier(.5, 0, 0, 1);
	-webkit-transition-delay: 0s;
	transition-delay: 0s
}

#page-home .section-opportunities .projects .item-info .icon svg {
	fill: #51a8b1
}

#page-home .section-opportunities .projects .item-info .item-location {
	color: #51a8b1;
	font-size: 12px
}

#page-home .section-opportunities .projects .item:hover .item-cover img {
	opacity: .3
}

#page-home .section-opportunities .projects .item:hover .item-info {
	opacity: 1;
	visibility: visible
}

#page-home .section-opportunities .projects .item:hover .item-info .icon {
	opacity: 1;
	-webkit-transform: translateY(0);
	transform: translateY(0);
	-webkit-transition-delay: .3s;
	transition-delay: .3s
}

#page-home .section-opportunities .projects .item-all {
	background-color: transparent
}

#page-home .section-opportunities .projects .item-all .plus-btn--grid span {
	height: 56.66px
}

#page-home .section-services {
	background-color: #fff;
	position: relative;
	padding-bottom: 160px;
	z-index: 1
}

#page-home .section-services .background-slide {
	position: absolute;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 1
}

#page-home .section-services .background-slide .item {
	position: absolute;
	right: 0;
	bottom: 0;
	left: 0;
	opacity: 0;
	-webkit-transition: opacity 1s cubic-bezier(.25, .1, .2, 1);
	transition: opacity 1s cubic-bezier(.25, .1, .2, 1)
}

#page-home .section-services .background-slide .item.active {
	opacity: 1
}

#page-home .section-services .background-slide .item img {
	display: block;
	width: 100%;
	height: auto;
	pointer-events: none;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none
}

@media (min-width:1550px) {
	#page-home .section-services .background-slide .item img {
		position: relative;
		bottom: -150px
	}
}

@media (min-width:2200px) {
	#page-home .section-services .background-slide .item img {
		bottom: -350px
	}
}

#page-home .section-services .background-slide .item-caption {
	color: #112e55;
	font-size: 14px;
	background-color: rgba(255, 255, 255, .5);
	position: absolute;
	right: 30px;
	bottom: 30px;
	padding: 9px 10px 5px
}

#page-home .section-services .container {
	width: 780px;
	position: relative;
	z-index: 2
}

#page-home .section-services .container .header {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	margin-bottom: 50px
}

#page-home .section-services .container .header .title {
	color: #51a8b1;
	font-size: 45px;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale
}

#page-home .section-services .container .header .logo img {
	display: block
}

#page-home .section-services .container .content {
	margin-bottom: 40px
}

#page-home .section-services .container .content p {
	color: #112e55;
	font-size: 18px;
	line-height: 140%;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale
}

#page-home .section-services .container .content p:not(:last-child) {
	margin-bottom: 25px
}

#page-home .section-services .container .button {
	text-align: center
}


/*------------------------Contact us Start---------------------------------*/

*{text-decoration:none;}