@charset "UTF-8";


body {
	font: 100%;
	/*font-family: 'Open Sans', sans-serif;*/
	font-family:Tahoma, Geneva, sans-serif;
	background-color:#F5F5F5;
	margin: 0;
	padding: 0;
	color:#666;
}
div.parallaxTwia {
    width: 100vw;
    height: 100vh;	
    position: relative;
    transform-style: preserve-3d;
    -webkit-transform-style: preserve-3d;
	margin-top:-200px;

}
div.parallaxTwia:after {
	border: 1px solid #C0C0C0; 
	border-radius:400px 0px 0px 0px;
	box-shadow: 5px 5px 20px rgba(0, 0, 0, 0.12);

    background-image: url("../images/twia/twia.jpg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    position: absolute;
    top: 0px;
    left: 0px;
    right: 0px;
    bottom: 0px;
    z-index: -1;
    content: "";
    transform: translateZ(-1px) scale(2);
    -webkit-transform: translateZ(-1px) scale(2);
}

div.parallaxTRC {
    width: 100vw;
    height: 100vh;	
    position: relative;
    transform-style: preserve-3d;
    -webkit-transform-style: preserve-3d;
}

div.parallaxTRC:after {	
    background-image: url("../images/UI/TRC/TRC.jpg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    position: absolute;
    top: 0px;
    left: 0px;
    right: 0px;
    bottom: 0px;
    z-index: -1;
    content: "";
    transform: translateZ(-1px) scale(2);
    -webkit-transform: translateZ(-1px) scale(2);
}
div.parallaxFutafut {
    width: 100vw;
    height: 100vh;	
    position: relative;
    transform-style: preserve-3d;
    -webkit-transform-style: preserve-3d;
}

div.parallaxFutafut:after {	
    background-image: url("../images/UI/Futafut.png");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    position: absolute;
    top: 0px;
    left: 0px;
    right: 0px;
    bottom: 0px;
    z-index: -1;
    content: "";
    transform: translateZ(-1px) scale(2);
    -webkit-transform: translateZ(-1px) scale(2);
}
div.parallaxNote01 {
    width: 100vw;
    height: 100vh;	
    position: relative;
    transform-style: preserve-3d;
    -webkit-transform-style: preserve-3d;
}

div.parallaxNote01:after {	
    background-image: url("../images/notes/Notes01.png");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    position: absolute;
    top: 0px;
    left: 0px;
    right: 0px;
    bottom: 0px;
    z-index: -1;
    content: "";
    transform: translateZ(-1px) scale(2);
    -webkit-transform: translateZ(-1px) scale(2);
}

div.parallaxQJ {
    width: 100vw;
    height: 100vh;	
    position: relative;
    transform-style: preserve-3d;
    -webkit-transform-style: preserve-3d;
}

div.parallaxQJ:after {	
    background-image: url("../images/QuantumLeap.jpg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    position: absolute;
    top: 0px;
    left: 0px;
    right: 0px;
    bottom: 0px;
    z-index: -1;
    content: "";
    transform: translateZ(-1px) scale(2);
    -webkit-transform: translateZ(-1px) scale(2);
}
div.parallaxLM {
    width: 100vw;
    height: 100vh;			
    position: relative;
    transform-style: preserve-3d;
    -webkit-transform-style: preserve-3d;
}

div.parallaxLM:after {	
    background-image: url("../images/books/LibertyMall.png");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    position: absolute;
    top: 0px;
    left: 0px;
    right: 0px;
    bottom: 0px;
    z-index: -1;
    content: "";
    transform: translateZ(-1px) scale(2);
    -webkit-transform: translateZ(-1px) scale(2);
}

input {
-webkit-appearance: none;
-moz-appearance: none;
appearance: none;
}

/* ~~ Element/tag selectors ~~ */
ul, ol, dl { /* Due to variations between browsers, it's best practices to zero padding and margin on lists. For consistency, you can either specify the amounts you want here, or on the list items (LI, DT, DD) they contain. Remember that what you do here will cascade to the .nav list unless you write a more specific selector. */
	padding: 0;
	margin: 0;
}
h1, h2, h3, h4, h5, h6, p {
	margin-top: 0;	 /* removing the top margin gets around an issue where margins can escape from their containing div. The remaining bottom margin will hold it away from any elements that follow. */
	padding-right: 15px;
	padding-left: 15px; /* adding the padding to the sides of the elements within the divs, instead of the divs themselves, gets rid of any box model math. A nested div with side padding can also be used as an alternate method. */
}
a img { /* this selector removes the default blue border displayed in some browsers around an image when it is surrounded by a link */
	border: none;
}

/* ~~ Styling for your site's links must remain in this order - including the group of selectors that create the hover effect. ~~ */
a:link {
	color:#666;
	background-color:#CF0;
	text-decoration: none; /* unless you style your links to look extremely unique, it's best to provide underlines for quick visual identification */
}
a:visited {
	color: #666;
	text-decoration: none;
}
a:hover, a:active, a:focus { /* this group of selectors will give a keyboard navigator the same hover experience as the person using a mouse. */
	text-decoration: none;
}

/* ~~ this container surrounds all other divs giving them their percentage-based width ~~ */
.container {
	width: 100%;
	max-width: 1800px; /* a max-width may be desirable to keep this layout from getting too wide on a large monitor. This keeps line length more readable. IE6 does not respect this declaration. */
	min-width: 600px; /*a min-width may be desirable to keep this layout from getting too narrow. This keeps line length more readable in the side columns. IE6 does not respect this declaration. */
	background-color:#F5F5F5;
	margin: 0 auto; /* the auto value on the sides, coupled with the width, centers the layout. It is not needed if you set the .container's width to 100%. */
	text-align:center;	
    width: 100vw;
    height: 100vh;
    overflow-x: hidden;
    overflow-y: auto;
    perspective: 1px;
    -webkit-perspective: 1px;
    transform-style: preserve-3d;
    -webkit-transform-style: preserve-3d;
}
.container1 {
	width: 100%;
	max-width: 1800px; /* a max-width may be desirable to keep this layout from getting too wide on a large monitor. This keeps line length more readable. IE6 does not respect this declaration. */
	min-width: 600px; /*a min-width may be desirable to keep this layout from getting too narrow. This keeps line length more readable in the side columns. IE6 does not respect this declaration. */
	background-color:#F5F5F5;
	margin: 0 auto; /* the auto value on the sides, coupled with the width, centers the layout. It is not needed if you set the .container's width to 100%. */
	text-align:center;	
    width: 100vw;
}
/* ~~ This is the layout information. ~~ 

1) Padding is only placed on the top and/or bottom of the div. The elements within this div have padding on their sides. This saves you from any "box model math". Keep in mind, if you add any side padding or border to the div itself, it will be added to the width you define to create the *total* width. You may also choose to remove the padding on the element in the div and place a second div within it with no width and the padding necessary for your design.

*/
.content {
	padding: 10px 0;
}

/* ~~ This grouped selector gives the lists in the .content area space ~~ */
.content ul, .content ol { 
	padding: 0 15px 15px 40px; /* this padding mirrors the right padding in the headings and paragraph rule above. Padding was placed on the bottom for space between other elements on the lists and on the left to create the indention. These may be adjusted as you wish. */
}

/* ~~ miscellaneous float/clear classes ~~ */
.fltrt {  /* this class can be used to float an element right in your page. The floated element must precede the element it should be next to on the page. */
	float: right;
	margin-left: 8px;
}
.fltlft { /* this class can be used to float an element left in your page. The floated element must precede the element it should be next to on the page. */
	float: left;
	margin-right: 8px;
}
.clearfloat { /* this class can be placed on a <br /> or empty div as the final element following the last floated div (within the #container) if the overflow:hidden on the .container is removed */
	clear:both;
	height:0;
	font-size: 1px;
	line-height: 0px;
}
.header{
	margin: 0 auto;
}

ul.topnav {
    list-style-type: none;
    margin: 0;
    padding: 0;
    overflow: hidden;
    background-color: #FFF;
}

/* Float the list items side by side */
ul.topnav li {float: left;}

/* Style the links inside the list items */
ul.topnav li a {
    display: inline-block;
    color:#666;
    text-align: center;
    padding: 6px 10px;
    text-decoration: none;
    transition: 0.3s;
    font-size: 14px;
}

/* Change background color of links on hover */
ul.topnav li a:hover {background-color:#FC0; color:#FFF;}

/* Hide the list item that contains the link that should open and close the topnav on small screens */
ul.topnav li.icon {display: none;}


/* lineup class and keyframes */


h1 {
  color: #333;
  font-size: 3rem;
  line-height: 1.5;
  text-transform: uppercase;
  white-space: nowrap;
  overflow: hidden;
  position: relative;
  width: 550px;
}

h1 span {
  font-size: 40px;
}
.twia {
  /* The image used 
  background-image: url("../images/twia/twia.jpg");

  min-height: 400px;
  
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;*/
	border: 1px solid #C0C0C0; 
	border-radius:400px 0px 0px 0px;
	box-shadow: 5px 5px 20px rgba(0, 0, 0, 0.12);  
}
.SMicon{ width:40px;}
.TRC {
  /* The image used */
  background-image: url("../images/UI/TRC/TRC.jpg");

  /* Set a specific height */
  min-height: 400px;
  
  /* Create the parallax scrolling effect */
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
	border: 1px solid #C0C0C0; 
	border-radius:0px 0px 150px 150px;
	box-shadow: 5px 5px 20px rgba(0, 0, 0, 0.12);  
}
.message {
  background-color:#CF0;
  color: #333;
  display: block;
  font-weight: 900;
  overflow: hidden;
  position: absolute;
  padding-left: 0.5rem;
  top: 0.2rem;
  left: 50px;
  animation: openclose 5s ease-in-out infinite;
}

.word1, .word2, .word3 {
  font-family: tahoma;
}

@keyframes openclose {
  0% {
    top: 0.2rem;
    width: 0;
  }
  5% {
    width: 0;
  }
  15% {
    width: 230px;
  }
  30% {
    top: 0.2rem;
    width: 230px;
  }
  33% {
    top: 0.2rem;
    width: 0;
  }
  35% {
    top: 0.2rem;
    width: 0;
  }
  38% {
    top: -4.5rem;
    
  }
  48% {
    top: -4.5rem;
    width: 270px;
  }
  62% {
    top: -4.5rem;
    width: 270px;
  }
  66% {
    top: -4.5rem;
    width: 0;
    text-indent: 0;
  }
  71% {
    top: -9rem;
    width: 0;
    text-indent: 5px;
  }
  86% {
    top: -9rem;
    width: 250px;
  }
  95% {
    top: -9rem;
    width: 250px;
  }
  98% {
    top: -9rem;
    width: 0;
    text-indent: 5px;
  }
  100% {
    top: 0;
    width: 0;
    text-indent: 0;
  }
}

.section {
  height: 100vh;
  width: 100%;
  position: relative;
  padding: 0;
  text-align: center;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}
.revealUp {
  opacity: 0;
  visibility: hidden;
}
.spacer {
  height: 10vh;
  background-color: #FFF;
}



.boxes{ padding:5px; margin:5px; width:42%; font-size:14px; height:130px; float: left;
	border: 1px solid #CCC; border-radius: 10px;}
.boxesH{ padding:5px; margin:5px; width:93%; font-size:14px; height:130px; float: left;
	border: 1px solid #CCC; border-radius: 10px;}

.stage {
        display: flex;
        height: 60px;
        width: 100%;
    }
.box {
	align-self: flex-end;
	animation-duration: 2s;
	animation-iteration-count: infinite;
	background-color: #12C853;
	height: 60px;
	margin: 0 auto 0 auto;
	transform-origin: bottom;
	width: 200px;
}
.boxTagline {
	align-self: flex-end;
	animation-duration: 2s;
	animation-iteration-count:infinite;
	margin: 0 auto 0 auto;
	transform-origin: bottom;
	height: 200px;
	width: 900px;	
}
.bounce-1 {
	animation-name: bounce-1;
	animation-timing-function: ease;
}
@keyframes bounce-1 {
	0%   { transform: scale(1,1)    translateY(0); }
	10%  { transform: scale(1.1,.9) translateY(0); }
	30%  { transform: scale(.9,1.1) translateY(-10px); }
	50%  { transform: scale(1,1)    translateY(0); }
	57%  { transform: scale(1,1)    translateY(-7px); }
	64%  { transform: scale(1,1)    translateY(0); }
	100% { transform: scale(1,1)    translateY(0); }
}
.boxIndex {
	align-self: flex-end;
	animation-duration: 2s;
	animation-iteration-count: infinite;
	background-color: #12C853;
	height: 60px;
	margin: 0 auto 0 auto;
	transform-origin: bottom;
	width: 500px;
}

.bounce-5 {
	animation-name: bounce-5;
	animation-timing-function: ease;
}
@keyframes bounce-5 {
	0%   { transform: scale(1,1)    translateY(0); }
	10%  { transform: scale(1.1,.9) translateY(0); }
	30%  { transform: scale(.9,1.1) translateY(-10px); }
	50%  { transform: scale(1,1)    translateY(0); }
	57%  { transform: scale(1,1)    translateY(-7px); }
	64%  { transform: scale(1,1)    translateY(0); }
	100% { transform: scale(1,1)    translateY(0); }
}
.voyage{
	height:600px;
}

.headingBox{
	width:25%;
	background-color:#FFF;
	font-size:30px;	
}
.dateBox{
	font-size:15px;
	color:#999;
	border: 2px solid #CCC;
	border-radius: 5px;	
	float: left;
	width: 200px;
	text-align:center
	margin:10px 10px 10px 10px;	
}
.banner{
	width: 100%;
	height: 325px;
	background-image:url(../images/BannerYellowBase.jpg);
	background-repeat:repeat-x;
}
.slogan{
	width: 100%;
	height: 150px;
	background-image:url(../images/BannerYellowBase.jpg);
	background-repeat:repeat-x;
}
.div1{
	margin: 0 auto;
}
.div2{
	height:320px;
}
.consultButton{
	margin: 0 auto;	
	width:30%;
}
.dButton{
background: #F5F5F5;
border: 1px solid #C0C0C0;
border-radius: 0px 20px 20px 20px;	
color: #464646;
width:50%;

	text-align:center;
	font-size:16px;
	padding:5px 20px 5px 20px;		
	display: inline-block;
	cursor:pointer;
	}
.dButtonON{
	background-color:#12C853;
	border-radius:50px;
	color:#FFF;
	text-align:center;
	font-size:14px;
	font-weight:bold;
	padding:5px 20px 5px 20px;		
	display: inline-block;
	cursor:pointer;
	box-shadow: inset 0px 0px 10px rgba(0,0,0,0.7);
	}	
.menuBar{
	border:1px solid #12C853;
	background-color:#EEE;
	border-radius:10px;
	width:95%;
	padding-top:20px;
	padding-bottom:20px;
	padding-left:20px;
	margin:10px;
	}
.menubarHeight{
	height:30px;
}
.clicks{
	text-align:center;
	color:#FFF;
	margin:10px;
	padding:5px;
	border-radius: 5px;
	list-style: none;
}
.videoHolder{
	width:50%;
	float:left;
	height:500px;
}
.inst{	
	text-align:left;
	border-style:solid; 
	border-width:thin; 
	border-color:#CCC; 
	border-radius: 10px; 
	padding:10px; 
	box-shadow: 2px 2px 2px #CCCCCC;
	float:left;
	margin:10px;	
	width:20%;
}
.scheduleCallButton{
	margin: 0 auto;
	text-align:center;
	color:#FFF;
	font-size:20px;
	width:50%;
	height: 30px;
}
.blackBase{
	background-color:#231f20;
}
.whiteBase{
	background-color:#FFF;
}
.greeenBase{ background-color: #12C853;}
.turquoiseBase{background-color: #3dbb95;}
.turquoise{
	color: #3dbb95;
}
.greyBase{
	background-color: #EBEBEB;
}
.lightGreyBase{
	background-color:#F5F5F5;
}
.darkGreyBase{
	background-color: #999;
}
.blueBase{
	background-color: #33BAE7;
}
.orangeBase{
	background-color: #F9974E;
}
.redBase{
	background-color: #C00;
}

.robo{
	font-family: 'Roboto Slab', serif;
}
.openSans{
}
.red{
	color: #ED1846;	
}
.white{
	color:#FFF;
}
.grey{
	color: #606161;
}
.lightGrey{
	color:#CCC;
}
.green{
	color: #12C853;
}
.blue{
	color: #33BAE7;
}
.orange{
	color: #F9974E;
}
.red{
	color:#C00;
}
.yellow{
	color:#F6ED00;
}
.yellowBase{ background-color:#F6ED00;}
.lime{color:#8AF600;}
.limeBase{ background-color:#8AF600;}
.cyan{color:#61F1FA;}
.cyanBase{ background-color:#61F1FA;}

.bold{
	font-weight:bold;
}
.fontSize150{
	font-size: 150px;
}
.fontSize150A{
	font-size: 150px;
}
.fontSize60{
	font-size: 60px;
}
.BookTitle{ font-size: 60px;}
.fontSize40{
	font-size: 40px;
}
.fontSize30{
	font-size: 30px;
}
.fontSize20{
	font-size: 20px;
}
.fontSize18{
	font-size: 18px;
}
.fontSize16{
	font-size: 16px;
}
.fontSize14{
	font-size: 14px;
}
.fontSize12{
	font-size: 12px;
}
.fontSize10{
	font-size: 10px;
}
.left{
	position:relative;
	float:left;
}
.right{
	position:relative;
	float:right;
}
.width100Percent{
	margin: 0 auto;
	width: 100%;
}
.width95Percent{
	margin: 0 auto;
	width: 95%;
}
.width90Percent{
	margin: 0 auto;
	width: 90%;
}
.InnerTextPanel{
	margin: 0 auto;
	width: 90%;
}
.width80Percent{
	margin: 0 auto;
	width: 80%;
}
.width70Percent{
	margin: 0 auto;
	width: 70%;
}
.width70PercentM{
	margin: 0 auto;
	width: 70%;
}

.width65Percent{
	margin: 0 auto;
	width: 65%;
}
.width60Percent{
	margin: 0 auto;
	width: 60%;
}
.BookImagePanel{
	margin: 0 auto;
	width: 40%;
}
.BookTextPanel{
	margin: 0 auto;
	width: 60%;
}
.width50Percent{
	margin: 0 auto;
	width: 50%;
}
.width50PercentB{
	margin: 0 auto;
	width: 50%;
}
.headlineStyle{
	padding: 20px;
	border: 0px solid #C0C0C0; 
	border-radius:0px 0px 100px 0px;
}
.highlightBox{
	font-size:12px;
	padding:2px; margin: 5px;
	border: 1px solid #C0C0C0; 
	border-radius:5px 5px 5px 5px;
	box-shadow: 5px 5px 20px rgba(0, 0, 0, 0.12);
	float:left;
}
.highlightBoxH{min-height:145px;}
.midPanel{
	margin: 0 auto;
	width: 49.5%;
	border: 1px solid #C0C0C0; 
	border-radius:0px 600px 20px 20px;
	box-shadow: 5px 5px 20px rgba(0, 0, 0, 0.12);
	margin-top:20px;
}
.midPanel2{
	margin: 0 auto;
	width: 49.5%;
	border: 1px solid #C0C0C0; 
	box-shadow: 5px 5px 20px rgba(0, 0, 0, 0.12);
}
.midPanel3{
	margin: 0 auto;
	width: 49.5%;
}

.width50PercentIM{
	margin: 0 auto;
	width: 50%;
}
.width49Percent{
	margin: 0 auto;
	width: 50%;
}
.width45Percent{
	margin: 0 auto;
	width: 45%;
}
.width45PercentIM{
	margin: 0 auto;
	width: 45%;
}
.w45{
	margin: 0 auto;
	width: 45%;
}
.width40Percent{
	margin: 0 auto;
	width: 40%;
}
.width40Percent2{
	margin: 0 auto;
	width: 40%;
}
.dashbaordMenuButtons{
	margin: 0 auto;
	width: 32%;	margin-right:10px;

}
.width33Percent{
	margin: 0 auto;
	width: 33%;

}
.width33PercentN{
	margin: 0 auto;
	width: 33%;
}
.width30Percent{
	margin: 0 auto;
	width: 30%;
}
.Bwidth{
	margin: 0 auto;
	width: 30%;
}
.width30Percent2{
	margin: 0 auto;
	width: 30%;
}
.width30Percent3{
	margin: 0 auto;
	width: 30%;
}
.sidePanel{
	margin: 0 auto;
	width: 25%;
}
.sidePanelP{
	margin: 0 auto;
	width: 25%;
}
.leftPanelP{
	margin: 0 auto;
	width: 25%;
	float:left;
}
.rightPanelP{
	margin: 0 auto;
	width: 25%;
	float:left;
}
.sidePanelR2{
	margin: 0 auto;
	border: 1px solid #C0C0C0; 
	border-radius:600px 0px 0px 0px;	
	width: 25%;
}
.width25Percent{
	margin: 0 auto;
	width: 25%;
}
.width25PercentEXP{
	margin: 0 auto;
	width: 25%;
}
.width25PercentS{
	margin: 0 auto;
	width: 25%;
}
.width20Percent{
	margin: 0 auto;
	width: 20%;
}
.width20Percent2{
	margin: 0 auto;
	width: 20%;
}
.width20Percent3{
	margin: 0 auto;
	width:20%;
}
.width20Percent4{
	margin: 0 auto;
	width:20%;
}

.width15Percent{
	margin: 0 auto;
	width: 15%;
}
.stepBox{
	margin: 0 auto;
	width: 16.6%;
}
.width10Percent{
	margin: 0 auto;
	width: 10%;
}
.width5Percent{
	margin: 0 auto;
	width: 5%;
}
jobPostsDiv{height:1200px;}
.height5{
	height: 5px;
}
.height20{
	height: 20px;
}
.height30{
	height: 30px;
}
.gap{
	height: 500px;
}
.height50{
	height: 50px;
}
.height50B{
	height: 50px;
}

.height60{
	height: 60px;
}
.height80{
	height: 80px;
}
.height100{
	height: 100px;
}
.height150{
	height: 150px;
}
.height165{
	height: 165px;
}
.height200{
	height: 200px;
}
.height300{
	height: 300px;
}
.height350{
	height: 350px;
}
.height400{
	height: 400px;
}
.height500{
	height: 500px;
}
.height600{
	height: 600px;
}
.height800{
	height: 800px;
}
.Hvideo{ width:100%; height:400px;}
.Hvideo50{ width:100%; height:200px;}
.Hvideo2{ width:100%; height:700px;}
.HvideoSD{ width:100%; height:550px;}
.HvideoSD50{ width:100%; height:350px;}
.heightMOL{
	height: 500px; position:relative; z-index:1; 
}
.heightTWIA{
	height: 1100px; position:relative; z-index:1; 
}
.heightGBS{
	height: 500px; position:relative; z-index:1; 
}
.heightCSquare{
	height: 800px; position:relative; z-index:1; 
}
.heightJM{
	height: 500px; position:relative; z-index:1; 
}

.heightTRC{
	height: 1300px;
	position:relative; z-index:1; 
}
.heightFutafut{
	height: 1900px; position:relative; z-index:1; 
}

.rightAligned{
	text-align:right;
}
.leftAligned{
	text-align:left;
}
.centerAligned{
	text-align:center;
}
.justified{
	text-align:justify;
}
.displayTable{
	display:table; overflow:visible; margin: 0 auto; text-align:center;
}
.middleAligned{
	display: table-cell;
	vertical-align:middle;
}
.bottomAligned{
	position:absolute;
	bottom:0px;
	right:0px;
}
.titleBox{
	padding: 10px 10px;
}
.space{
	margin: 0 10px;
}
.imageBox{
	padding: 10px;
	font-size: 20px;
}
.noDesktop{
	display:none;
}
.iconWidthHome{
	width:24%;
}
.iconWidth{
	width:13.5%;
}
.businessAnalysisText{
	color: #8DD1E9;
}
.brandDesignText{
	color: #F2BA77;
}
.companyRegistrationText{
	color: #E0E076;
}
.marketingText{
	color: #EA8CB7;
}
.operationText{
	color: #C49A6C;
}
.itIngrastructureText{
	color: #ABD7A8;
}
.hrAssisstanceText{
	color: #F4CD9A;
}
.productDevelopmentText{
	color: #4CA3D8;
}

input[type=text],input[type=password],input[type=email], select, textarea{
  width:100%;
  padding: 12px 20px;
  margin: 8px 0;
  display: inline-block;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-sizing: border-box;
  background-color:#FAFAFA;
  font-size:14px;
}
input[type=submit] {
  width: 100%;
  background-color:#CCC
  color: white;
  padding: 14px 20px;
  margin: 8px 0;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}


/* Air Time Selection */
.ATSelect {
  cursor: pointer;
  
}
/* Hide the browser's default radio button */
.ATSelect input {
  /*position: absolute;*/
  opacity: 0;
  cursor: pointer;
}
/*
.textBox{
	border: 2px solid #CCC;
}*/

/* Create a custom radio button */
.ATSelectCheckmark {
	font-size:20px;
	/*width:70%;*/

	font-weight:bold;
	border: 2px solid #CCC;
	border-radius: 5px;	
	/*float: left;*/
	padding:0px 9px 0px 9px;
	margin:0px 0px 0px 5px;
	color:#999;
}


/* When the radio button is checked, add a red background */
.ATSelect input:checked ~ .ATSelectCheckmark {
  background-color: #12C853;
  color:#FFF;
}



/* Check box style  */
/* The container */
.CBcontainer {
	width:50%;
  display: block;
  position: relative;
  margin-bottom: 12px;
  cursor: pointer;
  font-size: 16px;
  text-align:left;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.CBcontainerSU {
	width:33%;
  display: block;
  position: relative;
  margin-bottom: 12px;
  cursor: pointer;
  font-size: 16px;
  text-align:left;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
/* Hide the browser's default checkbox */
.CBcontainer input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}
.CBcontainerSU input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}
/* Create a custom checkbox */
.checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 20px;
  width: 20px;
  background-color: #eee;
	border-radius: 50%;  
}
/* On mouse-over, add a grey background color */
.CBcontainer:hover input ~ .checkmark {
  background-color: #ccc;
}
.CBcontainerSU:hover input ~ .checkmark {
  background-color: #ccc;
}
/* When the checkbox is checked, add a green background */
.CBcontainer input:checked ~ .checkmark {
  background-color: #12C853;
}
.CBcontainerSU input:checked ~ .checkmark {
  background-color: #12C853;
}
/* Create the checkmark/indicator (hidden when not checked) */
.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}
/* Show the checkmark when checked */
.CBcontainer input:checked ~ .checkmark:after {
  display: block;
}
.CBcontainerSU input:checked ~ .checkmark:after {
  display: block;
}
/* Style the checkmark/indicator */
.CBcontainer .checkmark:after {
  left: 6px;
  top: 3px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
.CBcontainerSU .checkmark:after {
  left: 6px;
  top: 3px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}


/* The container */
.checkcontainer {
  display: block;
  position: relative;
  padding-left: 35px;
  margin-bottom: 12px;
  cursor: pointer;
  font-size: 22px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/* Hide the browser's default checkbox */
.ccheckontainer input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

/* Create a custom checkbox */
.checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 25px;
  width: 25px;
  background-color: #eee;
}

/* On mouse-over, add a grey background color */
.checkcontainer:hover input ~ .checkmark {
  background-color: #ccc;
}

/* When the checkbox is checked, add a blue background */
.checkcontainer input:checked ~ .checkmark {
  background-color: #12C853;
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

/* Show the checkmark when checked */
.checkcontainer input:checked ~ .checkmark:after {
  display: block;
}

/* Style the checkmark/indicator */
.checkcontainer .checkmark:after {
  left: 9px;
  top: 5px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
#bar {
  width: 0%;
  height: 5px;
  background-color: #4CAF50;
}

/* For image upload */
.form-div { margin-top: 100px; border: 1px solid #e0e0e0; }
#profileDisplay { display: block; width: 200px; height: 200px; margin: 0px auto; border-radius: 50%; }
.img-placeholder {
  color: white;
  background: green;
  opacity: .7;
  width: 200px; 
  height: 200px;
  border-radius: 50%;
  z-index: 2;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: none;
}
.img-placeholder h4 {
  margin-top: 40%;
  color: white;
}
.img-div:hover .img-placeholder {
  display: block;
  cursor: pointer;
}
/* For Expert Dashboard*/
.profileDIV{
	width:7%;	
}
.scheduleCombo{
	margin:10px;
	width:30%;
}
/* For Arch Dashboard */
.chWidth{
	background-color:#3F3;
	color:#000;
	width:18%;
	float: left;
	margin-right: 8px;
}
.careerBox{
	width:50%;
	border-radius:10px;
	color:#096;
	background-color:#FBFBFB;
	border-color:#12C853;
	/*color:#12C853;*/
  border-style: solid;	
	border:thin;
	box-shadow: 2px 2px 8px #888888;
	position: relative;
	z-index:2;
	
}
.careerBoxD{
	width:100%;
	border-radius:10px;
	color:#096;
	background-color:#FBFBFB;
	border-color:#12C853;
	/*color:#12C853;*/
  border-style: solid;	
	border:thin;
	box-shadow: 2px 2px 8px #888888;
	position: relative;
	z-index:2;
}

.cDescriptionBox{
	width:40%;
	text-align: justify;
	font-size:12px;
	border-bottom-left-radius:10px;
	border-bottom-right-radius:10px;
	background-color:#FBFBFB;
	border-color:#12C853;
	color:#666;
	padding: 40px;
	border-style: solid;
	border:thin;
	box-shadow: 1px 1px 5px #888888;
	position: relative;
	z-index:1;
	}
.cDescriptionBoxD{
	width:80%;
	text-align: justify;
	font-size:12px;
	border-bottom-left-radius:10px;
	border-bottom-right-radius:10px;
	background-color:#FBFBFB;
	border-color:#12C853;
	color:#666;
	padding: 40px;
	border-style: solid;
	border:thin;
	box-shadow: 1px 1px 5px #888888;
	position: relative;
	z-index:1;
	}

.saveButton{
	background-color:#12C853;
	border-radius:50px;
	color:#FFF;
	text-align:center;
	font-size:20px;
	font-weight:bold;
	padding:5px 20px 5px 20px;		
	display: inline-block;
	cursor:pointer;
	}	
/* iPad */
@media only screen 
and (min-device-width : 768px) 
and (max-device-width : 1024px) {

}

@media screen and (max-width: 760px) {

}

/* iPhone 6, 7, & 8 in landscape */
@media only screen 
and (min-width:480px) {
}

/* iPhone 6, 7, & 8 in portrait */
@media only screen and (min-width:320px) and (max-width:479px) {
  ul.topnav.responsive {position: relative;}
  ul.topnav.responsive li.icon {
    position: absolute;
    right: 0;
    top: 0;
  }
  ul.topnav.responsive li {
    float: none;
    display: inline;
  }
  ul.topnav.responsive li a {
    display: block;
    text-align: left;
  }
  .swing:hover
{
        -webkit-animation: swing 1s ease;
        animation: swing 1s ease;
        -webkit-animation-iteration-count: 1;
        animation-iteration-count: 1;
}

.displayTable{
	display:table; overflow:visible; margin: 0 auto;
	width:100%;
}
  
.fontSize60{
	font-size: 40px;	
}
.fontSize30{
	font-size: 15px;
}
.fontSize20{
	font-size: 20px;
}
.fontSize14{
	font-size: 20px;
}
.fontSize12{
	font-size: 16px;
}
.width100Percent{
	margin: 0 auto;	
	width: 100%;
}
.width90Percent{
	margin: 0 auto;
	width: 100%;
}
.width80Percent{
	margin: 0 auto;
	width: 80%;
}
.width70Percent{
	margin: 0 auto;
	width: 95%;
}
.width65Percent{
	width: 30%;
}
.width60Percent{
	width: 95%;
}
.width50Percent{
	margin: 0 auto;
	width: 100%;
}
.width45Percent{
	margin: 0 auto;
	width: 100%;
}
.w45{
	margin: 0 auto;
	width: 100%;	
}
.width40Percent{
	margin: 0 auto;
	width: 100%;
}
.width30Percent{
	margin: 0 auto;
	width: 80%;
}
.width33PercentN{
	margin: 0 auto;
	width: 100%;
}
.width25Percent{
	margin: 0 auto;
	width: 100%;
	padding: 0px 10px;
}
.width25PercentEXP{
	margin: 0 auto;
	width: 50%;
	padding: 0px 10px;	
}
.width20Percent{
	margin: 0 auto;
	width: 100%;
}
.width10Percent{
	margin: 0 auto;
	width: 100%;
}
.height165{
	height: 40px;
}

.noMobile{
	display:none;
}
.noDesktop{
	display:block;
}
.iconWidthHome{
	width:20%;
}
.iconWidth{
	width:31%;
}
.dButton{
background: #F5F5F5;
border: 1px solid #C0C0C0;
border-radius: 0px 20px 20px 20px;	
color: #464646;
width:220px;
	box-shadow: 1px 1px 5px #999;
	border-radius:10px;
	color:#FFF;
	text-align:center;
	font-size:20px;
	font-weight:bold;
	padding:5px 20px 5px 20px;
	}	
.dButtonON{
	background-color:#12C853;
	border-radius:10px;
	color:#FFF;
	text-align:center;
	font-size:20px;
	font-weight:bold;
	padding:5px 20px 5px 20px;
	box-shadow: inset 0px 0px 10px rgba(0,0,0,0.7);
	}
.consultDP{
	width:500px;
	height:500px;
margin: 0px auto; border-radius: 50%; 	
}	
.menuBar{
	background-color:#EEE;
	border-radius:10px;
	width:95%;
	padding-top:20px;
	padding-bottom:20px;
	padding-left:20px;
	margin:10px;
	}
.menubarHeight{
	height:70px;
}
/* For Expert Dashboard*/
.profileDIV{
	width:15%;
}	

}

/* The "responsive" class is added to the topnav with JavaScript when the user clicks on the icon. This class makes the topnav look good on small screens */
@media screen and (max-width: 599px) {

}

/* iPhone 6, 7, & 8 in portrait & landscape */
@media only screen 
and (min-device-width : 320px) 
and (max-device-width : 812px) {
.container {
	width: 100%;
	background-color: #F5F5F5;
	margin: 0 auto; /* the auto value on the sides, coupled with the width, centers the layout. It is not needed if you set the .container's width to 100%. */
	text-align:center;
}	
	
  ul.topnav.responsive {position: relative;}
  ul.topnav.responsive li.icon {
    position: absolute;
    right: 0;
    top: 0;
  }
  ul.topnav.responsive li {
    float: none;
    display: inline;
  }
  ul.topnav.responsive li a {
    display: block;
    text-align: left;
  }
  .swing:hover
{
        -webkit-animation: swing 1s ease;
        animation: swing 1s ease;
        -webkit-animation-iteration-count: 1;
        animation-iteration-count: 1;
}

.displayTable{
	display:table; overflow:visible; margin: 0 auto;
	width:100%;
}
.inst{
	text-align:left;	
	border-style:solid; 
	border-width:thin; border-color:#CCC; border-radius: 10px; padding:10px; box-shadow: 2px 2px 2px #CCCCCC;
	float:left;
	margin:10px;
	width:40%;
}
.dobDay{
	width: 24%;
}
.dobMonth{
	width: 50%;
}
.dobMonthExp{
	width: 30%;
}
.dobYear{
	width: 24%;
}
.consultCombo{
	width: 80%;
} 
.consultDP{
	width:500px;
	height:500px;
	margin: 0px auto; border-radius: 50%; 	
}
.consultName{
	font-size:70px;
}
.fontSize60{
	font-size: 60px;	
}
.BookTitle{
	font-size: 100px;	
}
.fontSize30{
	font-size: 70px;
}
.fontSize40{
	font-size: 80px;
}
.fontSize20{
	font-size: 60px;
}
.fontSize18{
	font-size: 50px;
}
.fontSize16{
	font-size: 40px;
}
.fontSize14{
	font-size: 40px;
}
.fontSize12{
	font-size: 40px;
}
.fontSize10{
	font-size: 30px;
}
.width100Percent{
	margin: 0 auto;
	width: 100%;
}
.width90Percent{
	margin: 0 auto;
	width: 90%;
}
.InnerTextPanel{ margin: 0 auto; width: 100%;}
.width95Percent{
	margin: 0 auto;
	width: 95%;
}
.width80Percent{
	margin: 0 auto;
	width: 80%;
}
.width70Percent{
	margin: 0 auto;
	width: 70%;
}
.width70PercentM{
	margin: 0 auto;
	width: 90%;
}

.width65Percent{
	width: 30%;
}
.width60Percent{
	width: 75%;
}
.BookImagePanel{ width:100%;}
.BookTextPanel{ width:100%;}
.width10Percent{
	width: 10%;
}
.midPanel{
	margin: 0 auto;
	width: 99%;
	border: 1px solid #C0C0C0; 
	border-radius:0px 800px 0px 0px;
	box-shadow: 5px 5px 20px rgba(0, 0, 0, 0.12);	
	margin-top:50px;	
}
.midPanel2{
	margin: 0 auto;
	width: 99%;
	border: 1px solid #C0C0C0; 
	box-shadow: 5px 5px 20px rgba(0, 0, 0, 0.12);
}
.midPanel3{
	margin: 0 auto;
	width: 99%;
}
.width50Percent{
	margin: 0 auto;
	width: 100%;
}
.width50PercentIM{
	margin: 0 auto;
	width: 50%;
}
.width49Percent{
	margin: 0 auto;
	width: 50%;
}
.width45Percent{
	margin: 0 auto;
	width: 45%;
}
.width45PercentIM{
	margin: 0 auto;
	width: 45%;
}
.w45{
	margin: 0 auto;
	width: 100%;	
}

.width40Percent{
	margin: 0 auto;
	width: 100%;
}
.width30Percent{
	margin: 0 auto;
	width: 100%;
}
.width30Percent3{
	margin: 0 auto;
	width: 80%;
}
.width33Percent{
	margin: 0 auto;
	width: 33%;
}
.dashbaordMenuButtons{
	margin: 0 auto;
	width: 40%;
	margin-right:-100px;
}

.width33PercentN{
	margin: 0 auto;
	width: 100%;
}
.sidePanel{
	margin: 0 auto;
	width: 25%;
}
.sidePanelP{
	margin: 0 auto;
	width: 100%;
}
.leftPanelP{
	margin: 0 auto;
	width: 100%;
	float:right;
}
.rightPanelP{
	margin: 0 auto;
	width: 100%;
	float:right;
}
.width25PercentS{
	margin: 0 auto;
	width: 24%;
}
.width25Percent{
	margin: 0 auto;
	width: 100%;
}
.width25PercentEXP{
	margin: 0 auto;
	width: 50%;
}
.width20Percent{
	margin: 0 auto;
	width: 20%;
}
.width10Percent{
	margin: 0 auto;
	width: 100%;
}
.height800{
	height: 1600px;
}
.height400{
	height: 700px;
}
.height500{
	height: 800px;
}
.gap{
	height: 200px;
}
.height200{
	height: 500px;
}
.height150{
	height: 200px;
}
.height165{
	height: 40px;
}
.height100{
	height: 200px;
}
.height50{
	height: 80px;
}
.height50B{
	height: 200px;
}
.noMobile{
	display:none;
}
.noDesktop{
	display:block;
}
.darkGreyBase{
	background-color: #999;
}

.iconWidthHome{
	width:20%;
}
.iconWidth{
	width:31%;
}

input[type=text],input[type=email], input[type=password], select, textarea{
	width:90%;
  padding: 15px 15px;
  margin: 20px;	
  display: inline-block;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-sizing: border-box;
  background-color:#FAFAFA;
  font-size:60px;
}
input[type=submit] {
  width: 60%;
  background-color:#CCC
  color: white;
  padding: 14px 20px;
  margin: 8px 0;
  border: none;
  cursor: pointer;
}
.scheduleCallButton{
	margin: 0 auto;
	text-align:center;
	color:#FFF;
	font-size:40px;
	width:80%;
	height: 60px;
}
.consultButton{
	margin: 0 auto;	
	width:100%;
}
.dButton{
background: #F5F5F5;
border: 1px solid #C0C0C0;
border-radius: 0px 20px 20px 20px;	
color: #464646;
	text-align:center;
	display: inline-block;
	cursor:pointer;
	text-align:center;
	font-size:35px;
	padding:5px 20px 5px 20px;
	margin:5px;
	margin: 5 auto;
	padding:20px;
	}	
.dButtonON{
	border-radius:10px;
	color:#FFF;
	text-align:center;
	font-weight:bold;
	padding:5px 20px 5px 20px;
	margin:5px;
	margin: 5 auto;
	padding:20px;
	box-shadow: inset 0px 0px 10px rgba(0,0,0,0.7);
	}
.menuBar{
	background-color:#EEE;
	border-radius:10px;
	width:95%;
	padding-top:20px;
	padding-bottom:20px;
	padding-left:20px;
	margin:10px;
	font-size:30px;
	}
.menubarHeight{
	height:250px;
}
.scheduleBox{
	background-color:#EEE;
	border-radius:20px; padding:10px;
	padding-top:40px;
	padding-bottom:60px;
	margin:20px; border-color:#999;
}
.Bwidth{
	margin: 0 auto;
	width: 50%;
}
.width30Percent2{
	margin: 0 auto;
	width:30%;
}
.width40Percent2{
	margin: 0 auto;
	width:38%;
}
.width20Percent2{
	margin: 0 auto;
	width:32%;
}
.width20Percent3{
	margin: 0 auto;
	width:20%;
}
.width20Percent4{
	margin: 0 auto;
	width:50%;
}

.scheduleCombo{
	margin-right:10px;
	width:45%;
	font-size:30px;
}
/* For Expert Dashboard*/
.profileDIV{
	width:10%;	
}
.orangeBase{
	background-color: #F9974E;
}
.headingBox{
	width:80%;
	font-size:60px;
	background-color:#FFF;
}
.voyage{
	height:1200px;
}
.ATSelectCheckmark {
	font-size:40px;
	/*width:70%;*/

	font-weight:bold;
	border: 2px solid #CCC;
	border-radius: 5px;	
	/*float: left;*/
	padding:0px 5px 0px 5px;
	margin:0px -10px 0px 3px;
	color:#999;
}
.CHolder{
	margin-left:30px;
}
.careerBox{
	width:95%;
	height:60px;
	border-radius:20px;
}
.careerBoxD{
	width:95%;
	height:60px;
	border-radius:20px;
}
.cDescriptionBox{
	width:85%;
	text-align: justify;
	font-size:22px;
	border-bottom-left-radius:10px;
	border-bottom-right-radius:10px;
	background-color:#FBFBFB;
	border-color:#12C853;
	color:#666;
	padding: 40px;
	border-style: solid;
	border:thin;
	box-shadow: 1px 1px 5px #888888;
	position: relative;
	z-index:1;
	}
.saveButton{
	width:60%;
	border-radius:10px;
	color:#FFF;
	text-align:center;
	font-size:35px;
	font-weight:bold;
	padding:5px 20px 5px 20px;
	margin:5px;
	margin: 5 auto;
	padding:20px;
	}
.PconsultDP{
	width:220px;
	height:220px;
	margin: 0px auto; border-radius: 50%; 	
}
jobPostsDiv{height:1000px;}
.fontSize150A{
	font-size: 300px;
}
.width50PercentB{
	margin: 0 auto;
	width: 50%;
}
.boxes{ padding:5px; width:22%; font-size:22px; height:180px; 	float: left;}
.boxesH{ padding:5px; margin:5px; width:93%; font-size:14px; height:130px; float: left;
	border: 1px solid #CCC; border-radius: 10px;}
.yellowBase{ background-color:#F6ED00;}
.lime{color:#8AF600;}
.limeBase{ background-color:#8AF600;}
.cyan{color:#61F1FA;}
.cyanBase{ background-color:#61F1FA;}

.twia {

  /* The image used */
  background-image: url("../images/twia/twia.jpg");


  min-height: 1000px;

  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  
	border: 1px solid #C0C0C0; 
	border-radius:400px 0px 0px 0px;
	box-shadow: 5px 5px 20px rgba(0, 0, 0, 0.12);  
}

.TRC {
  /* The image used */
  background-image: url("../images/UI/TRC/TRCM.jpg");

  /* Set a specific height */
  min-height: 1000px;
  z-index: -10;
  /* Create the parallax scrolling effect */
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
	border: 1px solid #C0C0C0; 
	border-radius:0px 0px 150px 150px;
	box-shadow: 5px 5px 20px rgba(0, 0, 0, 0.12);  
}
.Hvideo{ width:100%; height:550px;}
.HvideoSD{ width:100%; height:750px;}
.HvideoSD50{ width:100%; height:400px;}
.heightTWIA{height: 2400px; position:relative; z-index:1; }
.heightGBS{height: 1000px; position:relative; z-index:1; }
.heightCSquare{height: 1500px; position:relative; z-index:1; }
.heightTRC{height: 4500px;  
position:relative; z-index:1; }
.heightFutafut{height: 7600px; position:relative; z-index:1;  }
.highlightBox{
	font-size:45px;
	padding:20px; margin: 30px;
	border: 1px solid #C0C0C0; 
	border-radius:5px 5px 5px 5px;
	box-shadow: 5px 5px 20px rgba(0, 0, 0, 0.12);
	float:left;
}
.highlightBoxH{ min-height:400px;}	
div.parallaxTRC {
    width: 100vw;
    height: 100vh;	
    position: relative;
    transform-style: preserve-3d;
    -webkit-transform-style: preserve-3d;
}

div.parallaxTRC:after {	
    background-image: url("../images/UI/TRC/TRCM.jpg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    position: absolute;
    top: 0px;
    left: 0px;
    right: 0px;
    bottom: 0px;
    z-index: -1;
    content: "";
    transform: translateZ(-1px) scale(2);
    -webkit-transform: translateZ(-1px) scale(2);
}
div.parallaxFutafut {
    width: 100vw;
    height: 100vh;	
    position: relative;
    transform-style: preserve-3d;
    -webkit-transform-style: preserve-3d;
}

div.parallaxFutafut:after {	
    background-image: url("../images/UI/FutafutM.png");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    position: absolute;
    top: 0px;
    left: 0px;
    right: 0px;
    bottom: 0px;
    z-index: -1;
    content: "";
    transform: translateZ(-1px) scale(2);
    -webkit-transform: translateZ(-1px) scale(2);
}
div.parallaxQJ {
    width: 100vw;
    height: 100vh;	
    position: relative;
    transform-style: preserve-3d;
    -webkit-transform-style: preserve-3d;
}

div.parallaxQJ:after {	
    background-image: url("../images/QumatumJumpimgM.jpg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    position: absolute;
    top: 0px;
    left: 0px;
    right: 0px;
    bottom: 0px;
    z-index: -1;
    content: "";
    transform: translateZ(-1px) scale(2);
    -webkit-transform: translateZ(-1px) scale(2);
}
div.parallaxLM {
    width: 100vw;
    height: 100vh;	
    position: relative;
    transform-style: preserve-3d;
    -webkit-transform-style: preserve-3d;
}

div.parallaxLM:after {	
    background-image: url("../images/books/LibertyMallM.png");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    position: absolute;
    top: 0px;
    left: 0px;
    right: 0px;
    bottom: 0px;
    z-index: -1;
    content: "";
    transform: translateZ(-1px) scale(2);
    -webkit-transform: translateZ(-1px) scale(2);
}
.SMicon{ width:80px;}
div.parallaxNote01 {
    width: 100vw;
    height: 50vh;	
    position: relative;
    transform-style: preserve-3d;
    -webkit-transform-style: preserve-3d;
}

div.parallaxNote01:after {	
    background-image: url("../images/notes/Notes01.png");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    position: absolute;
    top: 0px;
    left: 0px;
    right: 0px;
    bottom: 0px;
    z-index: -1;
    content: "";
    transform: translateZ(-1px) scale(2);
    -webkit-transform: translateZ(-1px) scale(2);
}
.blueBase{background-color: #33BAE7;}
.turquoiseBase{background-color: #3dbb95;}
}
