
html, body, .perspective {
	width: 100%;
	min-height: 100%;
	max-width: 100%!important;
	overflow-x: hidden!important;
}
.perspective {
	background: #aaa;
	position: relative;
}

.creativeMenuContainer {
	background: #fff;
	min-height: 100%;
	position: relative;
	outline: 1px solid rgba(0,0,0,0);
	z-index: 10;
	-webkit-transform: translateZ(0) translateX(0) rotateY(0deg); /* reset transforms (Chrome bug) */
	transform: translateZ(0) translateX(0) rotateY(0deg);
}

.creativeMenuContainer::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 0px;
	opacity: 0;
	background: rgba(0,0,0,0.2);
	/* the transition delay of the height needs to be synced with the creativeMenuContainer transition time */
	-webkit-transition: opacity 0.4s, height 0s 0.4s;
	-o-transition: opacity 0.4s, height 0s 0.4s;
	transition: opacity 0.4s, height 0s 0.4s;
}

.wrapper {
	position: relative;
}

.component {
	margin: 0 auto;
	width: 60%;
	text-align: justify;
	font-size: 1.5em;
}

/* Modal view */
.perspective.modalview {
	position: fixed;
	-webkit-perspective: 1500px;
	perspective: 1500px;
}

.modalview .creativeMenuContainer {
	position: absolute;
	overflow: hidden;
	width: 100%;
	height: 100%;
	cursor: pointer;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

.modalview .wrapper {
	-webkit-transform: translateZ(-1px); /* solves a rendering bug in Chrome on Windows */
}

.animate .creativeMenuContainer::after {
	opacity: 1;
	height: 101%;
	-webkit-transition: opacity 0.3s;
	-o-transition: opacity 0.3s;
	transition: opacity 0.3s;
}

/* Outer Nav */
.outer-nav {
	position: absolute;
	height: auto;
	font-size: 2em;
}

.outer-nav.vertical {
	top: 50%;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	    transform: translateY(-50%);
	-webkit-transform-style: preserve-3d;
	transform-style: preserve-3d;
}

.outer-nav.horizontal {
	left: 50%;
	width: 75%;
	max-width: 1000px;
	text-align: center;
	-webkit-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	    transform: translateX(-50%);
}

.outer-nav.left {
	left: 25%;
}

.outer-nav.right {
	right: 15%;
}

.outer-nav.top {
	top: 25%;
}

.outer-nav.bottom {
	bottom: 25%;
}

.outer-nav a {
	display: inline-block;
	white-space: nowrap;
	font-weight: 300;
	margin: 0 0 30px 0;
	color: #fff;
	-webkit-transition: color 0.3s;
	-o-transition: color 0.3s;
	transition: color 0.3s;
	-webkit-transform-style: preserve-3d;
	transform-style: preserve-3d;
}

.outer-nav a:hover {
	color: #ffdccd;
}

.outer-nav.vertical a {
	display: block;
}

.outer-nav.horizontal a {
	margin: 15px 20px;
}

.outer-nav a::before {
	display: inline-block;
	font-family: 'typicons';
	speak: none;
	font-style: normal;
	font-weight: normal;
	font-variant: normal;
	text-transform: none;
	line-height: 1;
	margin-right: 10px;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

.icon-news::before { content: "\e600" }
.icon-home::before { content: "\e601" }
.icon-image::before { content: "\e602" }
.icon-upload::before { content: "\e603" }
.icon-star::before { content: "\e604" }
.icon-mail::before { content: "\e605" }
.icon-lock::before { content: "\e606" }
.icon-chart-pie::before { content: "\e607" }

/* Individual Effects */


/* Effect Move Left */
.effect-moveleft {
	background: #333;
}

.effect-moveleft .creativeMenuContainer {
	-webkit-transition: -webkit-transform 0.4s;
	transition: -webkit-transform 0.4s;
	-o-transition: transform 0.4s;
	transition: transform 0.4s;
	transition: transform 0.4s, -webkit-transform 0.4s;
	-webkit-transform-origin: 50% 50%;
	-ms-transform-origin: 50% 50%;
	    transform-origin: 50% 50%;
}

.effect-moveleft .creativeMenuContainer::after {
	background: rgba(0,159,224,0.6);
}

.effect-moveleft.animate .creativeMenuContainer {
	-webkit-transform: translateX(-50%) rotateY(45deg) translateZ(-50px);
	transform: translateX(-50%) rotateY(45deg) translateZ(-50px);
}

.no-csstransforms3d .effect-moveleft.animate .creativeMenuContainer {
	left: -75%;
}

.effect-moveleft .outer-nav a {
	color: #fff;
	opacity: 0;
	-webkit-transform: translateX(100px) translateZ(-1000px);
	transform: translateX(100px) translateZ(-1000px);
	-webkit-transition: -webkit-transform 0.4s, opacity 0.4s , color 0.4s;
	-webkit-transition: opacity 0.4s , color 0.4s, -webkit-transform 0.4s;
	transition: opacity 0.4s , color 0.4s, -webkit-transform 0.4s;
	-o-transition: transform 0.4s, opacity 0.4s , color 0.4s;
	transition: transform 0.4s, opacity 0.4s , color 0.4s;
	transition: transform 0.4s, opacity 0.4s , color 0.4s, -webkit-transform 0.4s;

}

.effect-moveleft .outer-nav a:hover {
	color: #009FE0;
}
.effect-moveleft .outer-nav a {
	-webkit-transition: 0.4s all ease-in-out;
	-o-transition: 0.4s all ease-in-out;
	transition: 0.4s all ease-in-out
}
.effect-moveleft.animate .outer-nav a.active-link{
	color: #009fe0;
	border-bottom: 2px solid #009FE0;

}
.effect-moveleft.animate .outer-nav a {
	opacity: 1;
	-webkit-transform: translateX(0) translateZ(0);
	transform: translateX(0) translateZ(0);
}

.effect-moveleft.animate .outer-nav a:nth-child(2) {
	-webkit-transition-delay: 0.04s;
	-o-transition-delay: 0.04s;
	   transition-delay: 0.04s;
}

.effect-moveleft.animate .outer-nav a:nth-child(3) {
	-webkit-transition-delay: 0.08s;
	-o-transition-delay: 0.08s;
	   transition-delay: 0.08s;
}

.effect-moveleft.animate .outer-nav a:nth-child(4) {
	-webkit-transition-delay: 0.12s;
	-o-transition-delay: 0.12s;
	   transition-delay: 0.12s;
}

.effect-moveleft.animate .outer-nav a:nth-child(5) {
	-webkit-transition-delay: 0.16s;
	-o-transition-delay: 0.16s;
	   transition-delay: 0.16s;
}

.effect-moveleft.animate .outer-nav a:nth-child(6) {
	-webkit-transition-delay: 0.2s;
	-o-transition-delay: 0.2s;
	   transition-delay: 0.2s;
}

.effect-moveleft.animate .outer-nav a:nth-child(7) {
	-webkit-transition-delay: 0.24s;
	-o-transition-delay: 0.24s;
	   transition-delay: 0.24s;
}

/* Media Queries */
@media screen and (max-width: 77em) {

	.outer-nav.top {
		top: 15%;
	}

	.outer-nav.bottom {
		bottom: 15%;
	}
}

@media screen and (max-width: 36.625em), screen and (max-height: 41.75em) {

	.outer-nav.top {
		top: 5%;
	}

	.outer-nav.bottom {
		bottom: 5%;
	}

	.outer-nav.horizontal {
		font-size: 1.7em;
		width: 6.2em;
	}
	.outer-nav.horizontal a {
		display: block;
		text-align: left;
	}
}
@media screen and (max-width: 31em), screen and (max-height: 36.2em) {
	.outer-nav.horizontal,
	.outer-nav.vertical {
		font-size: 1.2em;
		width: 6.8em;
	}
	.outer-nav.right {
		right: auto;
		left: 50%;
		width: auto;
	}
}

@media screen and (max-height: 31.6em) {
	.outer-nav a {
		margin-bottom: 20px;
	}
}

/*
.invest-owner-section ul.nav-tabs{
	border-bottom: 0px
}
.invest-owner-section ul.nav-tabs li {
    width: 50%;
}
.invest-owner-section ul.nav-tabs li a {
    width: 100%;
		border: 0px!important;
		font-size: 38px;
		text-align: center;
		color: #fff!important;
		border-radius: 0px
}
.invest-owner-section ul.nav-tabs li a.investor-tab{
	background: #333;
}
.invest-owner-section ul.nav-tabs li a.owner-tab{
	background: #009fe0;
}
.tab-content #investor, .tab-content #owner {
    padding: 30px 0px;
}
.tab-content #investor{
	background: #333;
	color: #fff;
}
.tab-content #owner{
	background: #009fe0;
	color: #fff;
}
.container-semulator {
    display: inline-block!important;
    width: 100%;
    padding-right: 65px!important;
    padding-left: 65px!important;
}
.tab-content .tab-pane:not(.active){
	padding: 0!important;
	display: none!important
}
.invest-owner-section .tab-content .tab-pane.active{
	display: -webkit-box!important;
	display: -ms-flexbox!important;
	display: flex!important
}
.invest-owner-section .tab-content div > div {
    border-left: 3px solid #009fe0;
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-align: center;
		    -ms-flex-align: center;
		        align-items: center;
		-webkit-box-pack: start;
		    -ms-flex-pack: start;
		        justify-content: flex-start;
}
.invest-owner-section .tab-content div#owner > div{
	border-left: 3px solid #333;
}
.invest-owner-section .tab-content div#owner > div.reg-btn a{
	background: #333!important
}
.invest-owner-section .tab-content div#owner > div.reg-btn a:hover{
	background: #222!important
}
.invest-owner-section .tab-content div > div.four-steps {
    font-size: 38px;
}
.invest-owner-section ul li{
	font-size: 24px
}
.custom-ul ul {
    list-style: none;
    padding-left: 25px;
		margin-bottom: 0
}
.custom-ul ul li{
    position: relative;
}
.custom-ul ul li:before {
    content: "";
    width: 15px;
    height: 15px;
    background: #009fe0;
    border-radius: 50%;
    position: absolute;
    left: -25px;
    top: 9px;
}
#owner .custom-ul ul li:before{
	background: #333
}
.invest-owner-section .tab-content div > div a.hvr2 {
    width: 170px;
    height: 50px;
    border-radius: 4px;
    text-align: center;
    line-height: 50px;
} */
