/****
*** SPLASH SITE PAGES CSS
*/


/* float */

.float {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-property: transform;
  transition-property: transform;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}
.float:hover, .float:focus, .float:active {
  -webkit-transform: translateY(-8px);
  transform: translateY(-8px);
      box-shadow: 0px 10px 15px 2px rgba(0, 0, 0, 0.18); 
}

/*float*/


/* ease effect */
.ease { transition: all .2s ease-in-out; }
/* ease effect */



/* hide default splash footer */
#footer {
    display: none;
}

/* hover scale effect */
.grow {
transition: all .2s ease-in-out;
}
.grow:hover {
transform: scale(1.1);
}

/* tabs block 
*/
/* tab hover and active style */
.sp-section-links .secLinkActive {
	background: #fff;
}
.sp-section-links .secLinkActive .button-link,
.sp-section-links .cms-button-element:hover .button-link {
	color: #5252CA;
}


.sp-box-shadow {
    -webkit-box-shadow: 0px 10px 15px 2px rgba(0, 0, 0, 0.18); 
    -moz-box-shadow: 0px 10px 15px 2px rgba(0, 0, 0, 0.18); 
    box-shadow: 0px 10px 15px 2px rgba(0, 0, 0, 0.18); 
}


/* zoom */

.zoom-bg {
  opacity: 1;
  transform: scale(1);
  transition: all .4s ease-out;
}

.zoom-bg:hover {
  opacity: .8;
  transform: scale(1.1);
}



/*
*** END SPLASH SITE PAGES CSS
****/


