/* codeDESIGN - parallax_static.css */
@charset "utf-8";

/* PARALLAX STATIC */
.parallax {
	width: 100%;
	height: 100%;
	position: relative;
}
.jarallax {
	position: relative;
	overflow: hidden;
}
.jarallax::before,
.jarallax::after {
	content: none;
	background: #ffffff;
	background: rgba(255, 255, 255, 0.4);
	width: 100%;
	height: 10px;
	display: inline-block;
	position: absolute;
}
.jarallax::before {
	top: 0px;
}
.jarallax::after {
	bottom: 0px;
}
.parallax_image_wrapper {
	margin: 0px 0px 0px 0px;
	padding: 0px 0px 0px 0px;
	/* border-bottom: 4px solid var(--ci_color_accent_1); */
	position: relative;
}
@media only screen and (max-width: 991px) {
	.layout_codedesign_responsive_parallax_wrapper_ {
		display: none;
	}	
}

.jarallax div.jarallax_image_wrapper {
	display: block;
	position: relative;
	width: 100%;
	height: 100%;
}

.jarallax picture[class^="jarallax_image"] {
	transition: all 0.05s;
	-moz-transition: all 0.05s;
	-o-transition: all 0.05s;
	-webkit-transition: all 0.05s;
}

.jarallax div.jarallax_image_image {
	display: block;
	position: absolute;
	top: 0px;
	left: 0px;
	width: 100%;
	height: 100%;
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
}

.jarallax div.jarallax_image_image_overlay {
	display: block;
	position: absolute;
	top: 0px;
	left: 0px;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.4);
}

/* PARALLAX STATIC ARROW FROM TOP */
.parallax_image_wrapper:after {
	content: none;
	position: absolute;
	bottom: -20px; 
	left: 50%;
	margin-left: -20px;
	width: 0;
	z-index: 1;
	height: 0;
	border-top: solid 20px var(--ci_color_accent_1);
	border-left: solid 20px transparent;
	border-right: solid 20px transparent;
}

.parallax_static div.jarallax_textbox {
	display: block;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 800px;
}
@media only screen and (max-width: 991px) {
	.parallax_static div.jarallax_textbox {
		width: 640px;
	}
}
@media only screen and (max-width: 768px) {
	.parallax_static div.jarallax_textbox {
		width: calc(100% - 40px);
	}
}

.parallax_static div.jarallax_textbox_title h2 {
	display: block;
	position: relative;
	font-size: 52px;
	line-height: 52px;
	font-weight: 700;
	text-align: center;
	color: var(--ci_color_white);
	padding: 0px;
	margin: 0px 0px 40px 0px;
	border-bottom: none;
}
.parallax_static div.jarallax_textbox_title h2::after {
	content: none;
}
@media only screen and (max-width: 991px) {
	.parallax_static div.jarallax_textbox_title h2 {
		font-size: 28px;
		line-height: 28px;
		font-weight: 400;
		margin: 0px 0px 20px 0px;
	}
}
@media only screen and (max-width: 768px) {
	.parallax_static div.jarallax_textbox_title h2 {
		font-size: 22px;
		line-height: 22px;
	}
}

.parallax_static div.jarallax_textbox_text {
	display: block;
	position: relative;
	font-size: 18px;
	line-height: 26px;
	text-align: center;
	color: var(--ci_color_white);
	padding: 0px;
	margin: 0px 0px 40px 0px;
}
@media only screen and (max-width: 991px) {
	.parallax_static div.jarallax_textbox_text {
		font-size: 16px;
		line-height: 26px;
		margin: 0px 0px 20px 0px;
	}
}
@media only screen and (max-width: 768px) {
	.parallax_static div.jarallax_textbox_text {
		font-size: 14px;
		line-height: 22px;
	}
}

.parallax_static div.jarallax_textbox_link {
	display: block;
	position: relative;
	text-align: center;
	padding: 0px;
	margin: 0px;
}