
body, html, *
{
	padding: 0px;
	margin: 0px;
}
body, html {
	width: 100%;
}
* {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

/* -------------------- FONTS -------------------- */

.pt
{
	font-family:pt;
}
.pt_b
{
	font-family:pt_b;
}
.vk
{
	font-family:vk;
}


/* -------------------- END FONTS -------------------- */


/* -------------------- LOADER -------------------- */

#loader
{
	width: 100%;
	height: 100%;
	position: fixed;
	z-index: 100;
	background-color: #5c8dde;
	text-align: center;
}
#loader.transition
{
	-webkit-transition: all 1000ms cubic-bezier(0.690, 0.005, 0.000, 1.005); 
	   -moz-transition: all 1000ms cubic-bezier(0.690, 0.005, 0.000, 1.005); 
	     -o-transition: all 1000ms cubic-bezier(0.690, 0.005, 0.000, 1.005); 
	        transition: all 1000ms cubic-bezier(0.690, 0.005, 0.000, 1.005);
}
#loader.hide
{
	-webkit-transform: translateY(-100%);
	   -moz-transform: translateY(-100%);
	    -ms-transform: translateY(-100%);
	     -o-transform: translateY(-100%);
	        transform: translateY(-100%);
}
#loader .content
{
	display: inline-block;
	position: absolute;
  	top: 50%;
  	left: 50%;
	-webkit-transform: translate(-50%,-50%);
	-ms-transform: translate(-50%,-50%);
	-o-transform: translate(-50%,-50%);
	transform: translate(-50%,-50%);
	text-align: center;
}
.loader-title-1
{
	color: #333743;
	font-size: 10vw;
	line-height: 90%;

	-webkit-transition: all 1000ms cubic-bezier(0.690, 0.005, 0.000, 1.005); 
	   -moz-transition: all 1000ms cubic-bezier(0.690, 0.005, 0.000, 1.005); 
	     -o-transition: all 1000ms cubic-bezier(0.690, 0.005, 0.000, 1.005); 
	        transition: all 1000ms cubic-bezier(0.690, 0.005, 0.000, 1.005);

	-webkit-transform: translateY(25%);
	   -moz-transform: translateY(25%);
	    -ms-transform: translateY(25%);
	     -o-transform: translateY(25%);
	        transform: translateY(25%);
}
.loader-title-1.top
{
	-webkit-transform: translateY(0%);
	   -moz-transform: translateY(0%);
	    -ms-transform: translateY(0%);
	     -o-transform: translateY(0%);
	        transform: translateY(0%);
}
.loader-bar-container
{
	overflow: hidden;
	width: 100%;
	height: 8px;
	position: relative;
}
.loader-bar-1
{
	height: 100%;
	width: 10%;
	background-color: #333743;

	-webkit-transition: all .25s ease;
	   -moz-transition: all .25s ease;
	    -ms-transition: all .25s ease;
	     -o-transition: all .25s ease;
	        transition: all .25s ease;

	animation:load_bar_anim 1s ease infinite;
	-webkit-animation:load_bar_anim 1s ease infinite;
}
.loader-bar-1.hide
{
	opacity: 0;
}

@-webkit-keyframes load_bar_anim {
0% {
	-webkit-transform: translateX(0%);
	   -moz-transform: translateX(0%);
	    -ms-transform: translateX(0%);
	     -o-transform: translateX(0%);
	        transform: translateX(0%);
}

100% {
	-webkit-transform: translateX(1000%);
	   -moz-transform: translateX(1000%);
	    -ms-transform: translateX(1000%);
	     -o-transform: translateX(1000%);
	        transform: translateX(1000%);
}
}

@keyframes load_bar_anim {
0% {
	-webkit-transform: translateX(0%);
	   -moz-transform: translateX(0%);
	    -ms-transform: translateX(0%);
	     -o-transform: translateX(0%);
	        transform: translateX(0%);
}

100% {
	-webkit-transform: translateX(1000%);
	   -moz-transform: translateX(1000%);
	    -ms-transform: translateX(1000%);
	     -o-transform: translateX(1000%);
	        transform: translateX(1000%);
}
}
.loader-bar-2
{
	width: 100%;
	height: 100%;
	position: absolute;
	z-index: 1;
	top: 0px;
	left: 0px;
	background-color: #333743;
	-webkit-transform: translateX(-100%);
	   -moz-transform: translateX(-100%);
	    -ms-transform: translateX(-100%);
	     -o-transform: translateX(-100%);
	        transform: translateX(-100%);

	-webkit-transition: all 500ms cubic-bezier(0.690, 0.005, 0.000, 1.005); 
	   -moz-transition: all 500ms cubic-bezier(0.690, 0.005, 0.000, 1.005); 
	     -o-transition: all 500ms cubic-bezier(0.690, 0.005, 0.000, 1.005); 
	        transition: all 500ms cubic-bezier(0.690, 0.005, 0.000, 1.005);
}
.loader-bar-2.show
{
	-webkit-transform: translateX(0%);
	   -moz-transform: translateX(0%);
	    -ms-transform: translateX(0%);
	     -o-transform: translateX(0%);
	        transform: translateX(0%);
}
.loader-title-2
{
	color: #333743;
	font-size: 10vw;
	overflow: hidden;
	line-height: 80%;
}
.loader-title-2 div
{
	padding-left: 4vw;
	position: relative;
	-webkit-transition: all 1000ms cubic-bezier(0.690, 0.005, 0.000, 1.005); 
	   -moz-transition: all 1000ms cubic-bezier(0.690, 0.005, 0.000, 1.005); 
	     -o-transition: all 1000ms cubic-bezier(0.690, 0.005, 0.000, 1.005); 
	        transition: all 1000ms cubic-bezier(0.690, 0.005, 0.000, 1.005);
	-webkit-transform: translateY(-100%);
	   -moz-transform: translateY(-100%);
	    -ms-transform: translateY(-100%);
	     -o-transform: translateY(-100%);
	        transform: translateY(-100%);
}
.loader-title-2 div span
{
	position: absolute;
	left: -1vw;
	text-align: center;
	top: 0px;
	font-size: 4vw;
	-webkit-transform: rotate(-90deg);
	   -moz-transform: rotate(-90deg);
	    -ms-transform: rotate(-90deg);
	     -o-transform: rotate(-90deg);
	        transform: rotate(-90deg);
}
.loader-title-2.show div
{
	-webkit-transform: translateY(0%);
	   -moz-transform: translateY(0%);
	    -ms-transform: translateY(0%);
	     -o-transform: translateY(0%);
	        transform: translateY(0%);
}
/* -------------------- END LOADER -------------------- */


/* -------------------- LIHTBOX -------------------- */

#lightbox
{
	position: fixed;
	top: 70px;
	left: 0px;
	z-index: 10;
	overflow: scroll;
	overflow-x: hidden; 

	width: 100%;
	height: calc(100% - 70px);
	background-color: white;

	-webkit-transition: all 750ms cubic-bezier(0.690, 0.005, 0.000, 1.005); 
	   -moz-transition: all 750ms cubic-bezier(0.690, 0.005, 0.000, 1.005); 
	     -o-transition: all 750ms cubic-bezier(0.690, 0.005, 0.000, 1.005); 
	        transition: all 750ms cubic-bezier(0.690, 0.005, 0.000, 1.005);

	-webkit-transform: translateY(100%);
	   -moz-transform: translateY(100%);
	    -ms-transform: translateY(100%);
	     -o-transform: translateY(100%);
	        transform: translateY(100%);
}
#lightbox.show
{
	-webkit-transform: translateY(0%);
	   -moz-transform: translateY(0%);
	    -ms-transform: translateY(0%);
	     -o-transform: translateY(0%);
	        transform: translateY(0%);
}

#header-lightbox
{
	background-color: white;
	z-index: 10;
	width: 100%;
	height: 70px;
	position: fixed;
	top: 0px;
	left: 0px;
	-webkit-transform: translateY(-100%);
	   -moz-transform: translateY(-100%);
	    -ms-transform: translateY(-100%);
	     -o-transform: translateY(-100%);
	        transform: translateY(-100%);

	-webkit-transition: all 750ms cubic-bezier(0.690, 0.005, 0.000, 1.005); 
	   -moz-transition: all 750ms cubic-bezier(0.690, 0.005, 0.000, 1.005); 
	     -o-transition: all 750ms cubic-bezier(0.690, 0.005, 0.000, 1.005); 
	        transition: all 750ms cubic-bezier(0.690, 0.005, 0.000, 1.005);
}
#header-lightbox.show
{
	-webkit-transform: translateY(0%);
	   -moz-transform: translateY(0%);
	    -ms-transform: translateY(0%);
	     -o-transform: translateY(0%);
	        transform: translateY(0%);
}

.header-lightbox_close
{
	cursor: pointer;
	width: 60px;
	height: 20px;
	position: absolute;
	line-height: 20px;
	text-align: right;
  	top: 50%;
  	left: 50px;
	-webkit-transform: translate(0%,-50%);
	-ms-transform: translate(0%,-50%);
	-o-transform: translate(0%,-50%);
	transform: translate(0%,-50%);
	color: #333743;
	font-size: 16px;
}
.header-lightbox_close svg
{
	height: 12px;
	position: absolute;
  	top: 50%;
  	left: 0px;
	-webkit-transform: translate(0%,-50%);
	-ms-transform: translate(0%,-50%);
	-o-transform: translate(0%,-50%);
	transform: translate(0%,-50%);

	-webkit-transition: all .25s ease;
	   -moz-transition: all .25s ease;
	    -ms-transition: all .25s ease;
	     -o-transition: all .25s ease;
	        transition: all .25s ease;
}
.header-lightbox_close:hover svg
{
	-webkit-transform: translate(0%,-50%) rotate(90deg);
	-ms-transform: translate(0%,-50%) rotate(90deg);
	-o-transform: translate(0%,-50%) rotate(90deg);
	transform: translate(0%,-50%) rotate(90deg);
}

.header-lightbox_content
{
	overflow: scroll;
	width: calc(100% - 400px);
	height: 80px;
	position: absolute;
  	top:0%;
  	left: 50%;
	-webkit-transform: translate(-50%,0%);
	-ms-transform: translate(-50%,0%);
	-o-transform: translate(-50%,0%);
	transform: translate(-50%,0%);

	white-space: nowrap;

	text-align: center;
}
.header-lightbox_content ul
{
	height: 70px;

	white-space: nowrap;
}
.header-lightbox_content li
{
	cursor: pointer;
	height: 100%;
	display: inline-block;
	vertical-align: top;
	list-style-type: none;
	padding-left: 35px;
	padding-right: 35px;
	text-align: center;

	-webkit-transition: .25s ease;
	   -moz-transition: .25s ease;
	    -ms-transition: .25s ease;
	     -o-transition: .25s ease;
	        transition: .25s ease;
}
.header-lightbox_content li.active
{
	border-top: 4px solid;
}
.header-lightbox_content li:nth-child(1)
{
	display: none;
	line-height: 70px;
}

.header-lightbox_content li:nth-child(5)
{
	opacity: 0.4;
	cursor: default;
}
.header-lightbox_content_li_title
{
	margin-top: 15px;
	color: #333743;
	font-size: 14px;
}
.header-lightbox_content_li_subtitle
{
	font-size: 14px;
}
.header-lightbox_content_li_subtitle span
{
	display: inline-block;
	vertical-align: top;
	width: 34px;
	height: 2px;
	background-color: #333743;
	margin-top: 8px;
	margin-left: 5px;
}

.header-lightbox_buy
{
	cursor: pointer;
	overflow: hidden;
	position: absolute;
	right: 0px;
	top: 0px;
	text-decoration: none;

	width: 145px;
	height: 70px;
	background-color: #5c8dde;
	border: 1px solid #5c8dde;
	color: #FFF;
	line-height: 70px;
	text-align: center;

	-webkit-transition: all .25s ease;
	   -moz-transition: all .25s ease;
	    -ms-transition: all .25s ease;
	     -o-transition: all .25s ease;
	        transition: all .25s ease;
}
.header-lightbox_buy:hover
{
	background-color: #FFF;
	color: #5c8dde;
}
.header-lightbox_buy.check
{
	background-color: #5c8dde;
	color: transparent;
}
.header-lightbox_buy svg
{
	width: 15px;
	fill: #FFF;
	opacity: 0;
	position: absolute;
  	top:50%;
  	left: 50%;
	-webkit-transform: translate(-50%,100%);
	-ms-transform: translate(-50%,100%);
	-o-transform: translate(-50%,100%);
	transform: translate(-50%,100%);

	-webkit-transition: all .25s ease;
	   -moz-transition: all .25s ease;
	    -ms-transition: all .25s ease;
	     -o-transition: all .25s ease;
	        transition: all .25s ease;
}
.header-lightbox_buy.check svg
{
	-webkit-transition: all .5s ease;
	   -moz-transition: all .5s ease;
	    -ms-transition: all .5s ease;
	     -o-transition: all .5s ease;
	        transition: all .5s ease;
	opacity: 1;
	-webkit-transform: translate(-50%,-50%);
	-ms-transform: translate(-50%,-50%);
	-o-transform: translate(-50%,-50%);
	transform: translate(-50%,-50%);
}


.content-lightbox
{
	position: absolute;
	top: 0px;
	left: 0px;
	width: 100%;
	height: calc(100% - 70px);
	text-align: center;
	-webkit-overflow-scrolling: touch;

	-webkit-transition: all .45s ease;
	   -moz-transition: all .45s ease;
	    -ms-transition: all .45s ease;
	     -o-transition: all .45s ease;
	        transition: all .45s ease;
}
.content-lightbox.scroll
{
	overflow: scroll;
}
.content-lightbox.left
{
	-webkit-transform: translateX(-100%);
	   -moz-transform: translateX(-100%);
	    -ms-transform: translateX(-100%);
	     -o-transform: translateX(-100%);
	        transform: translateX(-100%);
}
.content-lightbox.active
{
	-webkit-transform: translateX(0%);
	   -moz-transform: translateX(0%);
	    -ms-transform: translateX(0%);
	     -o-transform: translateX(0%);
	        transform: translateX(0%);
}
.content-lightbox.right
{
	-webkit-transform: translateX(100%);
	   -moz-transform: translateX(100%);
	    -ms-transform: translateX(100%);
	     -o-transform: translateX(100%);
	        transform: translateX(100%);
}
.content-lightbox_title_column
{
	width: 100%;
	text-align: center;
	margin-top: 100px;
	margin-bottom: 50px;
}
.content-lightbox_title_column .line_1
{
	position: relative;
	color: #333743;
	font-size: 110px;
	display: inline-block;
}
.content-lightbox_title_column .line_2
{
	position: absolute;
	right: 0px;
	bottom: 0px;
	color: #9297a3;
	font-size: 19px;
}
.content-lightbox_title_column span
{
	display: inline-block;
	vertical-align: middle;
	width: 18px;
	height: 2px;
	background-color: #9297a3;
}
#text-landing
{
	-webkit-transform: translateX(0px);
	   -moz-transform: translateX(0px);
	    -ms-transform: translateX(0px);
	     -o-transform: translateX(0px);
	        transform: translateX(0px);
}
#text-08-differents-choices
{
	-webkit-transform: translateY(-2px);
	   -moz-transform: translateY(-2px);
	    -ms-transform: translateY(-2px);
	     -o-transform: translateY(-2px);
	        transform: translateY(-2px);
}
.content-lightbox_column
{
	display: inline-block;
	vertical-align: top;
	max-width: 850px;
	width: 40%;
	padding-left: 50px;
	padding-right: 50px;
}
.content-lightbox_column img
{
	margin-top: 10px;
	width: 100%;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

/* -------------------- END LIHTBOX -------------------- */


/* -------------------- CONTAINER GENERAL -------------------- */
section
{
	background-color: #FFF;
	position: relative;
	z-index: 1;
}
body.block
{
	overflow: hidden;
}

#container_general
{
	width: 100%;
	padding-top: 90px;
	position: relative;

	-webkit-transition: all 500ms cubic-bezier(0.690, 0.005, 0.000, 1.005); 
	   -moz-transition: all 500ms cubic-bezier(0.690, 0.005, 0.000, 1.005); 
	     -o-transition: all 500ms cubic-bezier(0.690, 0.005, 0.000, 1.005); 
	        transition: all 500ms cubic-bezier(0.690, 0.005, 0.000, 1.005);
}

#container_general.hide
{
	opacity: 0.3;
	-webkit-transform: scale(0.8);
	   -moz-transform: scale(0.8);
	    -ms-transform: scale(0.8);
	     -o-transform: scale(0.8);
	        transform: scale(0.8);
}

.ha-waypoint
{
	position: absolute;
	top: 50%;
}

/* -------------------- END CONTAINER GENERAL -------------------- */


/* -------------------- CONTAINER GENERAL -------------------- */

#nav-general
{
	position: fixed;
	z-index: 2;
  	top: 50%;
  	left: 47px;
  	opacity: 1;
	-webkit-transform: translate(0%,-50%);
	-ms-transform: translate(0%,-50%);
	-o-transform: translate(0%,-50%);
	transform: translate(0%,-50%);

	-webkit-transition: all 0.5s ease;
	   -moz-transition: all 0.5s ease;
	    -ms-transition: all 0.5s ease;
	     -o-transition: all 0.5s ease;
	        transition: all 0.5s ease;
}

#nav-general.hide
{
	opacity: 0;
}

.nav-general_sec
{
	display: block;
	margin-top: 5px;
	margin-bottom: 5px;
}
.nav-general_sec_point
{
	display: block;
	width: 15px;
	height: 15px;
	border: 2px solid #9297a3;
	border-radius: 3px;

	display: inline-block;
	vertical-align: middle;

	-webkit-transition: all .25s ease;
	   -moz-transition: all .25s ease;
	    -ms-transition: all .25s ease;
	     -o-transition: all .25s ease;
	        transition: all .25s ease;
}
.nav-general_sec_title
{
	opacity: 0;

	display: inline-block;
	vertical-align: middle;

	padding-left: 13px;

	color: #5c8dde;
	font-size: 14px;

	-webkit-transition: all .25s ease;
	   -moz-transition: all .25s ease;
	    -ms-transition: all .25s ease;
	     -o-transition: all .25s ease;
	        transition: all .25s ease;
}

.nav-general_in_sec
{
	width: 3px;
	height: 2px;
	background-color: #9297a3;
	margin-left: 6px;
	margin-top: 5px;
	margin-bottom: 5px;

	-webkit-transition: all .25s ease;
	   -moz-transition: all .25s ease;
	    -ms-transition: all .25s ease;
	     -o-transition: all .25s ease;
	        transition: all .25s ease;
}
.nav-general_in_sec.active
{
	background-color: #5c8dde;
}


#container_general.active_1 #nav-general > div:nth-child(1) .nav-general_sec_point
{
	border: 2px solid #5c8dde;
	background-color: #5c8dde;
}
#container_general.active_1 #nav-general > div:nth-child(1) .nav-general_sec_title
{
	opacity: 1;
}

#container_general.active_2 #nav-general > div:nth-child(2)
{
	background-color: #5c8dde;
}
#container_general.active_3 #nav-general > div:nth-child(3)
{
	background-color: #5c8dde;
}
#container_general.active_4 #nav-general > div:nth-child(4)
{
	background-color: #5c8dde;
}

#container_general.active_5 #nav-general > div:nth-child(5) .nav-general_sec_point
{
	border: 2px solid #5c8dde;
	background-color: #5c8dde;
}
#container_general.active_5 #nav-general > div:nth-child(5) .nav-general_sec_title
{
	opacity: 1;
}

#container_general.active_6 #nav-general > div:nth-child(6)
{
	background-color: #5c8dde;
}
#container_general.active_7 #nav-general > div:nth-child(7)
{
	background-color: #5c8dde;
}
#container_general.active_8 #nav-general > div:nth-child(8)
{
	background-color: #5c8dde;
}
#container_general.active_9 #nav-general > div:nth-child(9)
{
	background-color: #5c8dde;
}
#container_general.active_10 #nav-general > div:nth-child(10)
{
	background-color: #5c8dde;
}
#container_general.active_11 #nav-general > div:nth-child(11)
{
	background-color: #5c8dde;
}

#container_general.active_12 #nav-general > div:nth-child(12) .nav-general_sec_point
{
	border: 2px solid #5c8dde;
	background-color: #5c8dde;
}
#container_general.active_12 #nav-general > div:nth-child(12) .nav-general_sec_title
{
	opacity: 1;
}

#container_general.active_13 #nav-general
{
	opacity: 0;
}

/* -------------------- END CONTAINER GENERAL -------------------- */


/* -------------------- SECTION HOME -------------------- */

#section-home
{
	width: 100%;
	height: calc(100vh - 90px);
	position: relative;
}

.section-home_title
{
	text-align: center;
	width: 100%;
	position: absolute;
  	top: 50%;
  	left: 50%;
	-webkit-transform: translate(-50%,-50%);
	-ms-transform: translate(-50%,-50%);
	-o-transform: translate(-50%,-50%);
	transform: translate(-50%,-50%);
}
.section-home_title svg
{
	height: 70vh;
}

.section-home_available
{
	position: absolute;
	right: 45px;
	bottom: 45px;
}
.section-home_available_el
{
	text-decoration: none;
	vertical-align: top;
	color: #333743;
	font-size: 20px;
	text-align: center;
	line-height: 60px;
	position: relative;
	display: inline-block;
	margin-left: 20px;
	height: 60px;
	width: 60px;
	border: 2px solid #333743;
	border-radius: 6px;

	-webkit-transition: all .25s ease;
	   -moz-transition: all .25s ease;
	    -ms-transition: all .25s ease;
	     -o-transition: all .25s ease;
	        transition: all .25s ease;
}
.section-home_available_el:hover
{
	background-color: #333743;
	color: #FFF;
}
.section-home_available_el svg
{
	height: 17px;

	position: absolute;
  	top: 50%;
  	left: 50%;
	-webkit-transform: translate(-50%,-50%);
	-ms-transform: translate(-50%,-50%);
	-o-transform: translate(-50%,-50%);
	transform: translate(-50%,-50%);

	fill: #333743;

	-webkit-transition: all .25s ease;
	   -moz-transition: all .25s ease;
	    -ms-transition: all .25s ease;
	     -o-transition: all .25s ease;
	        transition: all .25s ease;
}
.section-home_available_el:hover svg
{
	fill: #FFF;
}

/* -------------------- END SECTION HOME -------------------- */



/* -------------------- SECTION COVER -------------------- */

#section-cover
{
	width: 100%;
	position: relative;
	padding-top: 100px;
	text-align: center;
}

.section-cover_title
{
	display: inline-block;
	position: relative;
	color: #333743;
	font-size: 80px;
	line-height: 80%;
}
.section-cover_title h2
{
	font-size: 80px;
	line-height: 80%;
	font-weight: normal;
}
.section-cover_title_tag
{
	line-height: normal;
	position: absolute;
  	top: 50%;
  	left: 0%;
	-webkit-transform: rotate(-90deg) translate(20%,-200%);
	-ms-transform: rotate(-90deg) translate(20%,-200%);
	-o-transform: rotate(-90deg) translate(20%,-200%);
	transform: rotate(-90deg) translate(20%,-200%);
	border-bottom: 1px solid #5c8dde;
	color: #5c8dde;
	font-size: 14px;
}
.section-cover_title_desc
{
	line-height: normal;
	position: absolute;
	top: 100%;
	right: 0px;
	color: #9297a3;
	font-size: 14px;
}
.section-cover_title_desc h3
{
	font-size: 14px;
	font-weight: normal;
}
.section-cover_title_desc span:before
{
	content: '';
	width: 13px;
	height: 2px;
	background-color: #9297a3;
	position: absolute;
	left: -23px;
	top: 50%;
	-webkit-transform: translate(0%, -50%);
	   -moz-transform: translate(0%, -50%);
	    -ms-transform: translate(0%, -50%);
	     -o-transform: translate(0%, -50%);
	        transform: translate(0%, -50%);
}

.section-cover_container_img
{
	width: 100%;
	text-align: center;
	margin-top: 50px;
	position: relative;
	overflow: hidden;
}
.section-cover_img_middle
{
	width: 60%;
	display: inline-block;
	position: relative;
	z-index: 1;
	opacity: 0;
	-webkit-transform: translateY(10%);
	   -moz-transform: translateY(10%);
	    -ms-transform: translateY(10%);
	     -o-transform: translateY(10%);
	        transform: translateY(10%);

	-webkit-transition: all 1000ms cubic-bezier(0.690, 0.005, 0.000, 1.005); 
	   -moz-transition: all 1000ms cubic-bezier(0.690, 0.005, 0.000, 1.005); 
	     -o-transition: all 1000ms cubic-bezier(0.690, 0.005, 0.000, 1.005); 
	        transition: all 1000ms cubic-bezier(0.690, 0.005, 0.000, 1.005);
}
#container_general.active_2 .section-cover_img_middle
{
	opacity: 1;
	-webkit-transform: translateY(0%);
	   -moz-transform: translateY(0%);
	    -ms-transform: translateY(0%);
	     -o-transform: translateY(0%);
	        transform: translateY(0%);
}

.section-cover_img_left, .section-cover_img_right
{
	width: 50%;
	position: absolute;
  	top: 50%;

  	-webkit-transition: all 1000ms cubic-bezier(0.690, 0.005, 0.000, 1.005); 
	   -moz-transition: all 1000ms cubic-bezier(0.690, 0.005, 0.000, 1.005); 
	     -o-transition: all 1000ms cubic-bezier(0.690, 0.005, 0.000, 1.005); 
	        transition: all 1000ms cubic-bezier(0.690, 0.005, 0.000, 1.005);

	-webkit-transition-delay: 0.5s;
		-moz-transition-delay: 0.5s;
			-o-transition-delay: 0.5s;
				transition-delay: 0.5s;
}
.section-cover_img_left
{
	left: -20%;
	opacity: 0;
	-webkit-transform: translate(5%,-50%);
	-ms-transform: translate(5%,-50%);
	-o-transform: translate(5%,-50%);
	transform: translate(5%,-50%);
}
.section-cover_img_right
{
	right: -20%;
	opacity: 0;
	-webkit-transform: translate(-5%,-50%);
	-ms-transform: translate(-5%,-50%);
	-o-transform: translate(-5%,-50%);
	transform: translate(-5%,-50%);
}
#container_general.active_2 .section-cover_img_left
{
	opacity: 1;

	-webkit-transform: translate(0%,-50%);
	-ms-transform: translate(0%,-50%);
	-o-transform: translate(0%,-50%);
	transform: translate(0%,-50%);
}
#container_general.active_2 .section-cover_img_right
{
	opacity: 1;

	-webkit-transform: translate(0%,-50%);
	-ms-transform: translate(0%,-50%);
	-o-transform: translate(0%,-50%);
	transform: translate(0%,-50%);

}

.section-cover_text
{
	max-width: 660px;
	margin: auto;
	text-align: center;
	margin-top: 50px;
	padding-bottom: 30px;
}
.section-cover_text_description
{
	display: inline-block;
	vertical-align: top;
	max-width: 320px;
	color: #9297a3;
	font-size: 16px;
	text-align: left;
	padding-left: 25px;
	padding-right: 25px;
}
.section-cover_text_number
{
	display: inline-block;
	vertical-align: top;
	padding-left: 25px;
	padding-right: 25px;
	position: relative;

}
#text-components
{
	-webkit-transform: rotate(-90deg) translateX(-322px) translateY(58px);
	   -moz-transform: rotate(-90deg) translateX(-322px) translateY(58px);
	    -ms-transform: rotate(-90deg) translateX(-322px) translateY(58px);
	     -o-transform: rotate(-90deg) translateX(-322px) translateY(58px);
	        transform: rotate(-90deg) translateX(-322px) translateY(58px);
}
#text-20
{
	-webkit-transform: translateX(-10px) translateY(5px);
	   -moz-transform: translateX(-10px) translateY(5px);
	    -ms-transform: translateX(-10px) translateY(5px);
	     -o-transform: translateX(-10px) translateY(5px);
	        transform: translateX(-10px) translateY(5px);
}
.see-all-og-them
{
	cursor: pointer;
	margin: auto;
	margin-top: 30px;
	width: 194px;
	height: 60px;
	background-color: white;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
	text-align: center;
	line-height: 60px;
	color: #5c8dde;
	font-size: 13px;

	-webkit-transition: all .25s ease;
	   -moz-transition: all .25s ease;
	    -ms-transition: all .25s ease;
	     -o-transition: all .25s ease;
	        transition: all .25s ease;
}
.see-all-og-them:hover
{
	background-color: #5c8dde;
	color: #FFF;
}

/* -------------------- END SECTION COVER -------------------- */


/* -------------------- SECTION CONTENT -------------------- */

#section-contents
{
	position: relative;
	width: 100%;
	padding-top: 170px;
}
#section-contents .ha-waypoint
{
	top: 35%;
}

.section-contents_container_img
{
	position: relative;
	text-align: center;
	z-index: 1;
}
.section-contents_container_img img
{
	display: inline-block;
	vertical-align: middle;
	margin-left: 65px;
	margin-right: 65px;
	max-width: 500px;
	width: 30vw;
	min-width: 300px;
}
.section-contents_container_img img:nth-child(1)
{
	margin-top: 90px;
}
.section-contents_container_img img:nth-child(3)
{
	margin-top: -90px;
}
.section-content_container_img_text
{
	opacity: 0;
	z-index: 1;
	position: absolute;
  	top: 50%;
  	left: 50%;
	-webkit-transform: translate(-50%,-50%);
	-ms-transform: translate(-50%,-50%);
	-o-transform: translate(-50%,-50%);
	transform: translate(-50%,-50%);

	-webkit-transition: all .5s ease;
	   -moz-transition: all .5s ease;
	    -ms-transition: all .5s ease;
	     -o-transition: all .5s ease;
	        transition: all .5s ease;
}
#container_general.active_3 .section-content_container_img_text
{
	opacity: 1;
}
#text-contents
{
	-webkit-transform: translateX(-2px);
	   -moz-transform: translateX(-2px);
	    -ms-transform: translateX(-2px);
	     -o-transform: translateX(-2px);
	        transform: translateX(-2px);
}
#text-stylish-bar
{
	-webkit-transform: rotate(-90deg) translateY(120px) translateX(-190px);
	   -moz-transform: rotate(-90deg) translateY(120px) translateX(-190px);
	    -ms-transform: rotate(-90deg) translateY(120px) translateX(-190px);
	     -o-transform: rotate(-90deg) translateY(120px) translateX(-190px);
	        transform: rotate(-90deg) translateY(120px) translateX(-190px);
}
#text-tylish
{
	-webkit-transform: rotate(-90deg) translateY(100px) translateX(-200px);
	   -moz-transform: rotate(-90deg) translateY(100px) translateX(-200px);
	    -ms-transform: rotate(-90deg) translateY(100px) translateX(-200px);
	     -o-transform: rotate(-90deg) translateY(100px) translateX(-200px);
	        transform: rotate(-90deg) translateY(100px) translateX(-200px);
}
.section-content_text
{
	width: 200px;
	margin: auto;
	-webkit-transform: translateY(-85px);
	   -moz-transform: translateY(-85px);
	    -ms-transform: translateY(-85px);
	     -o-transform: translateY(-85px);
	        transform: translateY(-85px);
}
.section-content_text svg
{
	display: block;
	margin: auto;
}
#text-10
{
	-webkit-transform: translateX(-10px) translateY(-2px);
	   -moz-transform: translateX(-10px) translateY(-2px);
	    -ms-transform: translateX(-10px) translateY(-2px);
	     -o-transform: translateX(-10px) translateY(-2px);
	        transform: translateX(-10px) translateY(-2px);
}
#text-components-2
{
	-webkit-transform: rotate(-90deg) translateX(-318px) translateY(58px);
	   -moz-transform: rotate(-90deg) translateX(-318px) translateY(58px);
	    -ms-transform: rotate(-90deg) translateX(-318px) translateY(58px);
	     -o-transform: rotate(-90deg) translateX(-318px) translateY(58px);
	        transform: rotate(-90deg) translateX(-318px) translateY(58px);
}

.section-content_text_description
{
	margin-top: 42px;
	color: #9297a3;
	font-size: 16px;
}

/* -------------------- END SECTION CONTENT -------------------- */


/* -------------------- SECTION SLIDERS -------------------- */

#section-sliders
{
	position: relative;
	width: 100%;
	padding-top: 50px;
	padding-left: 50px;
	padding-right: 50px;
	text-align: center;
}
#section-sliders .ha-waypoint
{
	top: 20%;
}
.section-sliders_title
{
	display: inline-block;
	position: relative;
	color: #333743;
	font-size: 80px;
	line-height: 80%;
}
.section-sliders_title h2
{
	font-size: 80px;
	line-height: 80%;
	font-weight: normal;
}
.section-sliders_title_tag
{
	line-height: normal;
	position: absolute;
  	top: 50%;
  	left: 0%;
	-webkit-transform: rotate(-90deg) translate(20%,-200%);
	-ms-transform: rotate(-90deg) translate(20%,-200%);
	-o-transform: rotate(-90deg) translate(20%,-200%);
	transform: rotate(-90deg) translate(20%,-200%);
	border-bottom: 1px solid #5c8dde;
	color: #5c8dde;
	font-size: 14px;
}
.section-sliders_title_desc
{
	line-height: normal;
	position: absolute;
	top: 100%;
	right: 0px;
	color: #9297a3;
	font-size: 14px;
}
.section-sliders_title_desc h3
{
	font-size: 14px;
	font-weight: normal;
}
.section-sliders_title_desc span:before
{
	content: '';
	width: 13px;
	height: 2px;
	background-color: #9297a3;
	position: absolute;
	left: -23px;
	top: 50%;
	-webkit-transform: translate(0%, -50%);
	   -moz-transform: translate(0%, -50%);
	    -ms-transform: translate(0%, -50%);
	     -o-transform: translate(0%, -50%);
	        transform: translate(0%, -50%);
}
.section-sliders_img
{
	max-width: 900px;
	position: relative;
	margin: auto;
	margin-top: 190px;
	height: 376px;
}
.section-sliders_img img
{
	cursor: pointer;
	position: absolute;
	left: 0px;
	width: 100%;

	box-shadow: 0 0 35px rgba(0, 0, 0, 0.3);
	-webkit-transition: all 500ms cubic-bezier(0.690, 0.005, 0.000, 1.005); 
	   -moz-transition: all 500ms cubic-bezier(0.690, 0.005, 0.000, 1.005); 
	     -o-transition: all 500ms cubic-bezier(0.690, 0.005, 0.000, 1.005); 
	        transition: all 500ms cubic-bezier(0.690, 0.005, 0.000, 1.005);
}
.section-slider_content_1
{
	width: 100%;
	position: relative;
}

.section-slider_content.past
{
	z-index: 5;
	opacity: 0;
	-webkit-transform: translateY(100%);
	   -moz-transform: translateY(100%);
	    -ms-transform: translateY(100%);
	     -o-transform: translateY(100%);
	        transform: translateY(100%);
}
.section-slider_content.first
{
	z-index: 4;
	opacity: 1;
	-webkit-transform: scale(1) translateY(0px);
	   -moz-transform: scale(1) translateY(0px);
	    -ms-transform: scale(1) translateY(0px);
	     -o-transform: scale(1) translateY(0px);
	        transform: scale(1) translateY(0px);
}
.section-slider_content.second
{
	z-index: 3;
	opacity: 1;
	-webkit-transform: scale(0.9) translateY(-20%);
	   -moz-transform: scale(0.9) translateY(-20%);
	    -ms-transform: scale(0.9) translateY(-20%);
	     -o-transform: scale(0.9) translateY(-20%);
	        transform: scale(0.9) translateY(-20%);
}
.section-slider_content.third
{
	z-index: 2;
	opacity: 1;
	-webkit-transform: scale(0.8) translateY(-40%);
	   -moz-transform: scale(0.8) translateY(-40%);
	    -ms-transform: scale(0.8) translateY(-40%);
	     -o-transform: scale(0.8) translateY(-40%);
	        transform: scale(0.8) translateY(-40%);
}
.section-slider_content.last
{
	opacity: 0;
	z-index: 1;
	-webkit-transform: scale(0.7) translateY(-60%);
	   -moz-transform: scale(0.7) translateY(-60%);
	    -ms-transform: scale(0.7) translateY(-60%);
	     -o-transform: scale(0.7) translateY(-60%);
	        transform: scale(0.7) translateY(-60%);
}

.section-slider_text
{
	max-width: 660px;
	margin: auto;
	text-align: center;
	margin-top: 100px;
}
.section-slider_text_description
{
	display: inline-block;
	vertical-align: top;
	max-width: 320px;
	color: #9297a3;
	font-size: 16px;
	text-align: left;
	padding-left: 25px;
	padding-right: 25px;
}
#text-components-3
{
	-webkit-transform: rotate(-90deg) translateX(-312px) translateY(58px);
	-moz-transform: rotate(-90deg) translateX(-312px) translateY(58px);
	-ms-transform: rotate(-90deg) translateX(-312px) translateY(58px);
	-o-transform: rotate(-90deg) translateX(-312px) translateY(58px);
	transform: rotate(-90deg) translateX(-312px) translateY(58px);
}
#text-16
{
	-webkit-transform: translateX(-9px) translateY(-3px);
	   -moz-transform: translateX(-9px) translateY(-3px);
	    -ms-transform: translateX(-9px) translateY(-3px);
	     -o-transform: translateX(-9px) translateY(-3px);
	        transform: translateX(-9px) translateY(-3px);
}
.section-slider_text_description_number
{
	display: inline-block;
	vertical-align: top;
	padding-left: 25px;
	padding-right: 25px;
	position: relative;
}

.section-slider_info
{
	margin-top: 130px;
	height: 395px;
	width: 100%;
	position: relative;
}
.section-slider_info_text
{
	width: 690px;
	z-index: 1;
	position: absolute;
  	top: 50%;
  	left: 50%;
	-webkit-transform: translate(-60%,-50%);
	-ms-transform: translate(-60%,-50%);
	-o-transform: translate(-60%,-50%);
	transform: translate(-60%,-50%);
}
.section-slider_info_text_title
{
	color: #333743;
	font-size: 52px;
}
.section-slider_info_text_description
{
	margin-top: 10px;
	color: #333743;
	font-size: 16px;
	position: relative;
	width: 290px;
}
.section-slider_info_text_description_bar
{
	top: 10px;
	position: absolute;
	left: calc(100% + 21px);
	width: 49px;
	height: 2px;
	background-color: #333743;
}
.section-slider_info_cadre
{
	height: 395px;
	width: 395px;
	position: absolute;
	top: 70px;
	right: 20%;
	background-color: #5c8dde;
}
.section-slider_buy
{
	text-decoration: none;
	color: #FFF;
	text-align: center;
	line-height: 60px;
	width: 194px;
	height: 60px;
	background-color: #5c8dde;
	box-shadow: 0 0 8px rgba(0, 0, 0, 0.4);

	position: absolute;
  	bottom: 60px;
  	left: 50%;
	-webkit-transform: translate(-50%,0%);
	-ms-transform: translate(-50%,0%);
	-o-transform: translate(-50%,0%);
	transform: translate(-50%,0%);

	-webkit-transition: all .25s ease;
	   -moz-transition: all .25s ease;
	    -ms-transition: all .25s ease;
	     -o-transition: all .25s ease;
	        transition: all .25s ease;
}
.section-slider_buy:hover
{
	background-color: #FFF;
	color: #5c8dde;
}
.section-slider_scroll
{
	height: 580px;
	width: 100%;
	position: relative;
}
.section-slider_scroll_text
{
	color: #333743;
	position: absolute;
  	top: 50%;
  	left: 50%;
	-webkit-transform: translate(-50%,-50%) rotate(90deg);
	-ms-transform: translate(-50%,-50%) rotate(90deg);
	-o-transform: translate(-50%,-50%) rotate(90deg);
	transform: translate(-50%,-50%) rotate(90deg);
}
.section-slider_scroll_text span:nth-child(2)
{
	display: inline-block;
	vertical-align: middle;
	height: 2px;
	width: 16px;
	background-color: #333743;
	margin-right: 10px;
}
.section-slider_scroll_text span:nth-child(3)
{
	display: inline-block;
	color: #5c8dde;
	font-size: 14px;
}

/* -------------------- END SECTION SLIDERS -------------------- */


/* -------------------- SECTION MEDIA -------------------- */

#section-media
{
	width: 100%;
	position: relative;
	overflow: hidden;
	height: 32vw;
}
.section-media_text_min
{
	position: absolute;
	color: #333743;
	left: 11.6vw;
	top: 4.2vw;
	font-size: 3.3vw;
	z-index: 1;
}
.section-media_text
{
	z-index: 1;
	color: #5c8dde;
	font-size: 33vw;
	text-align: center;

	position: absolute;
  	bottom: -10vw;
  	left: 50%;
	-webkit-transform: translate(-50%,0%);
	-ms-transform: translate(-50%,0%);
	-o-transform: translate(-50%,0%);
	transform: translate(-50%,0%);
}
.section-media_text_bg
{
	z-index: -1;
	position: absolute;
	background-color: #5c8dde;
	width: 100%;
	height: 35vw;

	position: absolute;
  	top: 50%;
	-webkit-transform: translate(0%,-50%);
	-ms-transform: translate(0%,-50%);
	-o-transform: translate(0%,-50%);
	transform: translate(0%,-50%);

	-webkit-transition: all 1000ms cubic-bezier(0.690, 0.005, 0.000, 1.005); 
	   -moz-transition: all 1000ms cubic-bezier(0.690, 0.005, 0.000, 1.005); 
	     -o-transition: all 1000ms cubic-bezier(0.690, 0.005, 0.000, 1.005); 
	        transition: all 1000ms cubic-bezier(0.690, 0.005, 0.000, 1.005);
}

#container_general.active_5 .section-media_text_bg
{
	-webkit-transform: translate(100%,-50%);
	-ms-transform: translate(100%,-50%);
	-o-transform: translate(100%,-50%);
	transform: translate(100%,-50%);
}
/* -------------------- END SECTION MEDIA -------------------- */


/* -------------------- SECTION TEAM -------------------- */
#section-team
{
	padding-top: 100px;
	width: 100%;
	position: relative;
	text-align: center;
}
.section-team_title
{
	display: inline-block;
	position: relative;
	color: #333743;
	font-size: 80px;
	line-height: 80%;
}
.section-team_title h2
{
	font-size: 80px;
	line-height: 80%;
	font-weight: normal;
}
.section-team_title_tag
{
	line-height: normal;
	position: absolute;
  	top: 50%;
  	left: 0%;
	-webkit-transform: rotate(-90deg) translate(20%,-200%);
	-ms-transform: rotate(-90deg) translate(20%,-200%);
	-o-transform: rotate(-90deg) translate(20%,-200%);
	transform: rotate(-90deg) translate(20%,-200%);
	border-bottom: 1px solid #5c8dde;
	color: #5c8dde;
	font-size: 14px;
}
.section-team_title_desc
{
	line-height: normal;
	position: absolute;
	top: 100%;
	right: 0px;
	color: #9297a3;
	font-size: 14px;
}
.section-team_title_desc h3
{
	font-size: 14px;
	font-weight: normal;
}
.section-team_title_desc span:before
{
	content: '';
	width: 13px;
	height: 2px;
	background-color: #9297a3;
	position: absolute;
	left: -23px;
	top: 50%;
	-webkit-transform: translate(0%, -50%);
	   -moz-transform: translate(0%, -50%);
	    -ms-transform: translate(0%, -50%);
	     -o-transform: translate(0%, -50%);
	        transform: translate(0%, -50%);
}
.section-team_content
{
	width: 100%;
	padding-top: 100px;
	padding-bottom: 50px;
	position: relative;
	overflow: hidden;
}
.section-team_content_img_1
{
	display: block;
	box-shadow: 0 0 35px rgba(0, 0, 0, 0.5);
	width: 50%;
	margin-left: -90px;
}
.section-team_content_text
{
	width: 200px;
	
	position: absolute;
  	top: 50%;
  	left: 56%;
	-webkit-transform: translate(0%,-50%);
	-ms-transform: translate(0%,-50%);
	-o-transform: translate(0%,-50%);
	transform: translate(0%,-50%);
}
.section-team_content_text_description
{
	width: 100%;
	color: #9297a3;
	font-size: 16px;
	text-align: left;
}
.section-team_content_text_description_number
{
	width: 100%;
	color: #5c8dde;
	font-size: 180px;
	padding-right: 35px;
	position: relative;
}
.section-team_content_text_description_number div
{
	height: 35px;
	width: 100%;
	line-height: 35px;
	right: 0px;
	color: #333743;
	font-size: 26px;

	position: absolute;
	top: 0%;
  	left: 50%;
	-webkit-transform: rotate(-90deg) translate(-50%,-50%);
	-ms-transform: rotate(-90deg) translate(-50%,-50%);
	-o-transform: rotate(-90deg) translate(-50%,-50%);
	transform: rotate(-90deg) translate(-50%,-50%);
}
.section-team_content_img_2
{
	position: absolute;
	box-shadow: 0 0 35px rgba(0, 0, 0, 0.5);
	height: calc(100% - 150px);
	top: 100px;
	right: -40%;
}

/* -------------------- END SECTION TEAM -------------------- */


/* -------------------- SECTION TESTIMONIALS -------------------- */

#section-testimonials
{
	padding-top: 100px;
	width: 100%;
	position: relative;
	text-align: center;
}
.section-testimonials_title
{
	display: inline-block;
	position: relative;
	color: #333743;
	font-size: 80px;
	line-height: 80%;
}


.section-testimonials_content
{
	width: 100%;
	padding-top: 100px;
	padding-bottom: 100px;
	position: relative;
}
.section-testimonials_content_img_1
{
	margin-left: 10%;
	margin-top: 90px;
	display: block;
	width: 40%;
	box-shadow: 0 0 35px rgba(0, 0, 0, 0.5);
}
.section-testimonials_content_img_2
{
	width: 25%;
	position: absolute;
	top: 65%;
	left: 20%;
	box-shadow: 0 0 35px rgba(0, 0, 0, 0.5);
}
.section-testimonials_content_img_3
{
	width: 30%;
	position: absolute;
	top: 0%;
	left: 4%;
	box-shadow: 0 0 35px rgba(0, 0, 0, 0.5);
}

.section-testimonial_content_text
{
	width: 200px;
	
	position: absolute;
  	top: 50%;
  	right: 25%;
	-webkit-transform: translate(0%,-50%);
	-ms-transform: translate(0%,-50%);
	-o-transform: translate(0%,-50%);
	transform: translate(0%,-50%);
}
.section-testimonial_content_text_description_number div
{
	position: absolute;
	top: 0%;
  	left: 50%;
	-webkit-transform: rotate(-90deg) translate(-50%,-50%);
	-ms-transform: rotate(-90deg) translate(-50%,-50%);
	-o-transform: rotate(-90deg) translate(-50%,-50%);
	transform: rotate(-90deg) translate(-50%,-50%);
}

/* -------------------- END SECTION TESTIMONIALS -------------------- */


/* -------------------- SECTION PRICING -------------------- */

#section-pricing
{
	padding-top: 100px;
	width: 100%;
	position: relative;
	text-align: center;
}
.section-pricing_title
{
	display: inline-block;
	position: relative;
	color: #333743;
	font-size: 80px;
	line-height: 80%;
}
.section-pricing_title h2
{
	font-size: 80px;
	line-height: 80%;
	font-weight: normal;
}
.section-pricing_title_tag
{
	line-height: normal;
	position: absolute;
  	top: 50%;
  	left: 0%;
	-webkit-transform: rotate(-90deg) translate(20%,-200%);
	-ms-transform: rotate(-90deg) translate(20%,-200%);
	-o-transform: rotate(-90deg) translate(20%,-200%);
	transform: rotate(-90deg) translate(20%,-200%);
	border-bottom: 1px solid #5c8dde;
	color: #5c8dde;
	font-size: 14px;
}
.section-pricing_title_desc
{
	line-height: normal;
	position: absolute;
	top: 100%;
	right: 0px;
	color: #9297a3;
	font-size: 14px;
}
.section-pricing_title_desc h3
{
	font-size: 14px;
	font-weight: normal;
}
.section-pricing_title_desc span:before
{
	content: '';
	width: 13px;
	height: 2px;
	background-color: #9297a3;
	position: absolute;
	left: -23px;
	top: 50%;
	-webkit-transform: translate(0%, -50%);
	   -moz-transform: translate(0%, -50%);
	    -ms-transform: translate(0%, -50%);
	     -o-transform: translate(0%, -50%);
	        transform: translate(0%, -50%);
}

.section-pricing_content
{
	padding-top: 80px;
	width: 100%;
	position: relative;
}
.section-pricing_content_img_1
{
	box-shadow: 0 0 35px rgba(0, 0, 0, 0.5);
	width: 45%;
	margin-top: 90px;
}
.section-pricing_content_img_2
{
	box-shadow: 0 0 35px rgba(0, 0, 0, 0.5);
	width: 25%;
	position: absolute;
	top: 30%;
	left: 65%;
}

.section-pricing_text
{
	width: 100%;
	text-align: center;
	padding-bottom: 30px;
}
.section-pricing_text_description
{
	width: 290px;
	color: #9297a3;
	font-size: 16px;
	text-align: left;
	display: inline-block;
	vertical-align: middle;
}
.section-pricing_text_description_container_number
{
	width: 200px;
	display: inline-block;
	vertical-align: middle;
}
.section-pricing_text_description_number
{
	width: 100%;
	color: #5c8dde;
	font-size: 180px;
	padding-right: 35px;
	position: relative;
}
.section-pricing_text_description_number div
{
	height: 35px;
	width: 100%;
	line-height: 35px;
	right: 0px;
	color: #333743;
	font-size: 26px;

	position: absolute;
	top: 0%;
  	left: 50%;
	-webkit-transform: rotate(-90deg) translate(-50%,-50%);
	-ms-transform: rotate(-90deg) translate(-50%,-50%);
	-o-transform: rotate(-90deg) translate(-50%,-50%);
	transform: rotate(-90deg) translate(-50%,-50%);
}
.section-pricing_text_description_container_number .see-all-og-them
{
	margin-top: 0px;
}
/* -------------------- END SECTION PRICING -------------------- */


/* -------------------- SECTION ADVANTAGES -------------------- */

#section-advantages
{
	padding-top: 100px;
	width: 100%;
	padding-bottom: 300px;
	position: relative;
	text-align: center;
}
.section-advantages_title
{
	display: inline-block;
	position: relative;
	color: #333743;
	font-size: 80px;
	line-height: 80%;
}
.section-advantages_title h2
{
	font-size: 80px;
	line-height: 80%;
	font-weight: normal;
}
.section-advantages_title_tag
{
	line-height: normal;
	position: absolute;
  	top: 50%;
  	left: 0%;
	-webkit-transform: rotate(-90deg) translate(20%,-200%);
	-ms-transform: rotate(-90deg) translate(20%,-200%);
	-o-transform: rotate(-90deg) translate(20%,-200%);
	transform: rotate(-90deg) translate(20%,-200%);
	border-bottom: 1px solid #5c8dde;
	color: #5c8dde;
	font-size: 14px;
}
.section-advantages_title_desc
{
	line-height: normal;
	position: absolute;
	top: 100%;
	right: 0px;
	color: #9297a3;
	font-size: 14px;
}
.section-advantages_title_desc h3
{
	font-size: 14px;
	font-weight: normal;
}
.section-advantages_title_desc span:before
{
	content: '';
	width: 13px;
	height: 2px;
	background-color: #9297a3;
	position: absolute;
	left: -23px;
	top: 50%;
	-webkit-transform: translate(0%, -50%);
	   -moz-transform: translate(0%, -50%);
	    -ms-transform: translate(0%, -50%);
	     -o-transform: translate(0%, -50%);
	        transform: translate(0%, -50%);
}

.section-advantages_content
{
	width: 100%;
	position: relative;
	padding-top: 390px;
}
.section-advantages_content_img_1
{
	display: block;
	width: 60%;
	margin-top: 90px;
}
.section-advantages_content_img_2
{
	box-shadow: 0 0 35px black;
	width: 71%;
	position: absolute;
	left: 12.15%;
	top: 14%;
	margin-top: -90px;
}

.section-advantages_content_text
{
	width: 200px;
	
	position: absolute;
	bottom: -250px;
	right: 20%;
}
.section-advantages_content_text_description
{
	width: 100%;
	color: #9297a3;
	font-size: 16px;
	text-align: left;
}
.section-advantages_content_text_description_number
{
	width: 100%;
	color: #5c8dde;
	font-size: 180px;
	padding-right: 35px;
	position: relative;
}
.section-advantages_content_text_description_number div
{
	height: 35px;
	width: 100%;
	line-height: 35px;
	right: 0px;
	color: #333743;
	font-size: 26px;

	position: absolute;
	top: 0%;
  	left: 50%;
	-webkit-transform: rotate(-90deg) translate(-50%,-50%);
	-ms-transform: rotate(-90deg) translate(-50%,-50%);
	-o-transform: rotate(-90deg) translate(-50%,-50%);
	transform: rotate(-90deg) translate(-50%,-50%);
}

/* -------------------- SECTION ADVANTAGES -------------------- */


/* -------------------- SECTION PRODUCT -------------------- */

#section-product
{
	width: 100%;
	position: relative;
	padding-top: 100px;
	text-align: center;
}
.section-product_title
{
	display: inline-block;
	position: relative;
	color: #333743;
	font-size: 80px;
	line-height: 80%;
}
.section-product_title h2
{
	font-size: 80px;
	line-height: 80%;
	font-weight: normal;
}
.section-product_title_tag
{
	line-height: normal;
	position: absolute;
  	top: 50%;
  	left: 0%;
	-webkit-transform: rotate(-90deg) translate(20%,-200%);
	-ms-transform: rotate(-90deg) translate(20%,-200%);
	-o-transform: rotate(-90deg) translate(20%,-200%);
	transform: rotate(-90deg) translate(20%,-200%);
	border-bottom: 1px solid #5c8dde;
	color: #5c8dde;
	font-size: 14px;
}
.section-product_title_desc
{
	line-height: normal;
	position: absolute;
	top: 100%;
	right: 0px;
	color: #9297a3;
	font-size: 14px;
}
.section-product_title_desc h3
{
	font-size: 14px;
	font-weight: normal;
}
.section-product_title_desc span:before
{
	content: '';
	width: 13px;
	height: 2px;
	background-color: #9297a3;
	position: absolute;
	left: -23px;
	top: 50%;
	-webkit-transform: translate(0%, -50%);
	   -moz-transform: translate(0%, -50%);
	    -ms-transform: translate(0%, -50%);
	     -o-transform: translate(0%, -50%);
	        transform: translate(0%, -50%);
}

.section-product_content
{
	width: 100%;
	overflow: hidden;
	position: relative;
	padding-top: 180px;
	padding-bottom: 380px;
}

.section-product_content_img_1
{
	display: block;
	max-width: 1000px;
	width: 100%;
	margin-left: -40%;
	margin-top: -90px;
	box-shadow: 0 0 35px rgba(0, 0, 0, 0.5);
}
.section-product_content_img_2
{
	display: block;
	top: 90px;
	max-width: 1000px;
	width: 100%;
	right: -40%;
	margin-top: 90px;
	position: absolute;
	box-shadow: 0 0 35px rgba(0, 0, 0, 0.5);
}

.section-product_content_text
{
	width: 200px;
	
	position: absolute;
  	top: 50%;
  	left: 50%;
	-webkit-transform: translate(-50%,-50%);
	-ms-transform: translate(-50%,-50%);
	-o-transform: translate(-50%,-50%);
	transform: translate(-50%,-50%);
}
.section-product_content_text_description
{
	width: 100%;
	color: #9297a3;
	font-size: 16px;
	text-align: left;
}
.section-product_content_text_description_number
{
	width: 100%;
	color: #5c8dde;
	font-size: 180px;
	padding-right: 35px;
	position: relative;
}
.section-product_content_text_description_number div
{
	height: 35px;
	width: 100%;
	line-height: 35px;
	right: 0px;
	color: #333743;
	font-size: 26px;

	position: absolute;
	top: 0%;
  	left: 50%;
	-webkit-transform: rotate(-90deg) translate(-50%,-50%);
	-ms-transform: rotate(-90deg) translate(-50%,-50%);
	-o-transform: rotate(-90deg) translate(-50%,-50%);
	transform: rotate(-90deg) translate(-50%,-50%);
}


/* -------------------- END SECTION PRODUCT -------------------- */


/* -------------------- SECTION MISC -------------------- */

#section-misc
{
	width: 100%;
	position: relative;
	padding-top: 120px;
	padding-bottom: 120px;
	text-align: center;
	overflow: hidden;
}
.section-misc_title
{
	display: inline-block;
	position: relative;
	color: #333743;
	font-size: 80px;
	line-height: 80%;
}
.section-misc_title h2
{
	font-size: 80px;
	line-height: 80%;
	font-weight: normal;
}
.section-misc_title_tag
{
	line-height: normal;
	position: absolute;
  	top: 50%;
  	left: 0%;
	-webkit-transform: rotate(-90deg) translate(20%,-200%);
	-ms-transform: rotate(-90deg) translate(20%,-200%);
	-o-transform: rotate(-90deg) translate(20%,-200%);
	transform: rotate(-90deg) translate(20%,-200%);
	border-bottom: 1px solid #5c8dde;
	color: #5c8dde;
	font-size: 14px;
}
.section-misc_title_desc
{
	line-height: normal;
	position: absolute;
	top: 100%;
	right: 0px;
	color: #9297a3;
	font-size: 14px;
}
.section-misc_title_desc h3
{
	font-size: 14px;
	font-weight: normal;
}
.section-misc_title_desc span:before
{
	content: '';
	width: 13px;
	height: 2px;
	background-color: #9297a3;
	position: absolute;
	left: -23px;
	top: 50%;
	-webkit-transform: translate(0%, -50%);
	   -moz-transform: translate(0%, -50%);
	    -ms-transform: translate(0%, -50%);
	     -o-transform: translate(0%, -50%);
	        transform: translate(0%, -50%);
}

.section-misc_content
{
	width: 100%;
	position: relative;
	padding-top: 50px;
}
.section-misc_content_img_1
{
	display: block;
	margin-left: -17.5%;
	width: calc(70% + 90px);
	box-shadow: 0 0 35px rgba(0, 0, 0, 0.5);
}
.section-misc_content_text
{
	width: 200px;
	
	position: absolute;
	top: 50%;
	-webkit-transform: translate(0%, -40%);
	   -moz-transform: translate(0%, -40%);
	    -ms-transform: translate(0%, -40%);
	     -o-transform: translate(0%, -40%);
	        transform: translate(0%, -40%);
	right: 20%;
}
.section-misc_content_text_description
{
	width: 100%;
	color: #9297a3;
	font-size: 16px;
	text-align: left;
}
.section-misc_content_text_description_number
{
	width: 100%;
	color: #5c8dde;
	font-size: 180px;
	padding-right: 35px;
	position: relative;
}
.section-misc_content_text_description_number div
{
	height: 35px;
	width: 100%;
	line-height: 35px;
	right: 0px;
	color: #333743;
	font-size: 26px;

	position: absolute;
	top: 0%;
  	left: 50%;
	-webkit-transform: rotate(-90deg) translate(-50%,-50%);
	-ms-transform: rotate(-90deg) translate(-50%,-50%);
	-o-transform: rotate(-90deg) translate(-50%,-50%);
	transform: rotate(-90deg) translate(-50%,-50%);
}
.section-misc_content_img_2
{
	width: 35%;
	position: absolute;
	left: 25%;
	bottom: -10%;
	box-shadow: 0 0 35px rgba(0, 0, 0, 0.5);
}

/* -------------------- END SECTION MISC -------------------- */


/* -------------------- SECTION FEATURES -------------------- */

#section-features
{
	width: 100%;
	position: relative;
	padding-bottom: 88px;
	-moz-box-shadow: 0px 10px 10px 0px rgba(000, 000, 000, 0.3);
	-webkit-box-shadow: 0px 10px 10px 0px rgba(000, 000, 000, 0.3);
	-o-box-shadow: 0px 10px 10px 0px rgba(000, 000, 000, 0.3);
	box-shadow: 0px 10px 10px 0px rgba(000, 000, 000, 0.3);
}
#section-features .ha-waypoint
{
	top: 50vh;
}
.section-features_title
{
	width: 100%;
	text-align: center;
	height: 666px;
}
.section-features_content
{
	width: 100%;
	max-width: 1200px;
	text-align: center;
	margin: auto;
}
.section-features_content_el
{
	display: inline-block;
	width: 270px;
	vertical-align: top;
	margin: 5%;
	text-align: center;
}
.section-features_content_el_icon
{
	width: 100%;
	height: 120px;
	position: relative;
}
.section-features_content_el_icon svg
{
	position: absolute;
  	top: 50%;
  	left: 50%;
	-webkit-transform: translate(-50%,-50%);
	-ms-transform: translate(-50%,-50%);
	-o-transform: translate(-50%,-50%);
	transform: translate(-50%,-50%);
}
.section-features_content_el_title
{
	color: #333743;
	font-size: 24px;
	margin-top: 22px;
}
.section-features_content_el_description
{
	margin-top: 11px;
	color: #9297a3;
	font-size: 16px;
}

.section-features_buy
{
	display: block;
	margin: auto;
	margin-top: 40px;
	text-decoration: none;
	width: 195px;
	height: 70px;
	line-height: 70px;
	text-align: center;
	background-color: #5c8dde;
	box-shadow: 0 0 8px rgba(0, 0, 0, 0.4);
	color: #fff;
	border: 1px solid #5c8dde;
	position: relative;

	-webkit-transition: all .25s ease;
	   -moz-transition: all .25s ease;
	    -ms-transition: all .25s ease;
	     -o-transition: all .25s ease;
	        transition: all .25s ease;
}
.section-features_buy:hover
{
	background-color: #FFF;
	color: #5c8dde;
}
.section-features_detail_buy
{
	display: inline-block;
	color: #333743;
	font-size: 13px;
	margin-top: 11px;
}
.section-features_detail_bar
{
	width: 10px;
	height: 3px;
	background-color: #9297a3;
	margin: auto;
	margin-top: 20px;
}

.section-features_detail_free
{
	display: block;
	color: #5c8dde;
	text-decoration: none;
	margin-top: 20px;
}

/* -------------------- END SECTION FEATURES -------------------- */


/* -------------------- SECTION NEXT -------------------- */

#section-next
{
	overflow: hidden;
	width: 100%;
	height: 559px;
	background-color: #5c8dde;
	position: relative;

	-moz-box-shadow: 0px 10px 10px 0px rgba(000, 000, 000, 0.3);
	-webkit-box-shadow: 0px 10px 10px 0px rgba(000, 000, 000, 0.3);
	-o-box-shadow: 0px 10px 10px 0px rgba(000, 000, 000, 0.3);
	box-shadow: 0px 10px 10px 0px rgba(000, 000, 000, 0.3);
}
#section-next .overlay
{
	display: block;
	top: 0px;
	left: 0px;
	position: absolute;
	height: 100%;
	width: 100%;
	z-index: 3;
	background-color: rgba(000,000,000,0.6);
	-webkit-backdrop-filter: blur(5px) ; /* SAFARI */
}
#section-next .overlay .text
{
	width: 100%;
	text-align: center;
	position: absolute;
  	top: 50%;
  	left: 50%;
	-webkit-transform: translate(-50%,-50%);
	-ms-transform: translate(-50%,-50%);
	-o-transform: translate(-50%,-50%);
	transform: translate(-50%,-50%);
	font-size: 10vw;
	color: #FFF;
}
.section-next_text
{
	position: absolute;
	z-index: 2;
	left: 135px;
	top: 153px;
}
.section-next_text_title
{
	color: #333743;
	font-size: 24px;
}
.section-next_text_subtitle
{
	color: white;
	font-size: 80px;
}
.section-next_text_subtitle div
{
	display: inline-block;
	font-size: 40px;
	-webkit-transform: rotate(-90deg) translateX(14px);
	   -moz-transform: rotate(-90deg) translateX(14px);
	    -ms-transform: rotate(-90deg) translateX(14px);
	     -o-transform: rotate(-90deg) translateX(14px);
	        transform: rotate(-90deg) translateX(14px);
}
.section-next_text_description
{
	max-width: 444px;
	color: #c7dcff;
	font-size: 14px;
}
.section-next_link
{
	display: block;
	text-decoration: none;
	width: 150px;
	height: 50px;
	line-height: 50px;
	background-color: #5c8dde;
	box-shadow: 0 0 8px rgba(0, 0, 0, 0.4);
	color: white;
	font-size: 13px;
	text-align: center;
	margin-top: 33px;
}
.section-next_img_1
{
	position: absolute;
	width: 30%;
	right: 5%;
	top: 20%;
	z-index: 1;
	margin-top: -90px;
}
.section-next_img_2
{
	position: absolute;
	width: 30%;
	
	position: absolute;
  	top: -40%;
	right: 20%;
}
/* --------------------  END SECTION NEXT -------------------- */