/****************************************/  
/******************** FRAMEWORK ********************/                                                                         
/****************************************/ 








/******************** GENERAL ADJUSTMENTS ********************/                                                                                
body, html {                                                                                                                                                                                                                                 
	overflow-x: hidden;
	background-color: #171720;
}
  
* {                 
	margin: 0px auto;
	padding: 0px;
	box-sizing: border-box;
}

h1, h2, h3, h4, h5, h6, p, a {
	font-family: 'Montserrat', sans-serif;
}

/* link */ 
a, a:hover {
	text-decoration: none;
}

/* background image */
.background {
	background-size: cover;
	background-position: 50% 50%;
}  

/* fill-parent */ 
.fill-parent {
	width: 100%;
	height: 100%; 
}

/* opacityShow */
.parallax-element.opacityShow {
	opacity: 0;
}
 
/* animate parallax */
.parallax-element.animate {
	transition: 4s; 
} 

/* cursor */
.typewritercursor { 
    position: relative; 
    bottom: 1px;
    font-weight: 100 !important; 
	animation: cursorblink 1s step-end infinite;
}
    





  
        
/******************** PRELOADER ********************/    
#PreloadOverlay {
    width: 100%;
    height: 100vh;	
    position: fixed;
    top: 0px;
    left: 0px;
    right: 0px;
    bottom: 0px;
    z-index: 9999999999;
	background-color: #171720; 
	transition: 600ms;
} 

#PreloadOverlay.hide {
	opacity: 0;  
}

/* dvh */
@supports (height: 100dvh) {
    #PreloadOverlay { height: 100dvh; }    
}

/* loader */
#PreloadOverlay #LoaderContainer { 
	width: 80px;
	height: 80px; 
	position: absolute;
	top: calc(50% - 40px);
	left: calc(50% - 40px);  
}

/* loader - inner */
#PreloadOverlay #LoaderContainer #LoaderInner {  
    width: 80px;
	height: 80px; 
	position: relative;
	animation: preloadpulsate 2s linear infinite;
}

/* loader - inner - spinner */
#PreloadOverlay #LoaderContainer #LoaderInner .spin {
	position: absolute;
	border: 2px solid transparent; 
	border-radius: 100%;
}

#PreloadOverlay #LoaderContainer #LoaderInner #SpinnerOne {  
	width: 80px; 
	height: 80px; 
	top: calc(50% - 40px); 
	left: calc(50% - 40px);
	border-top-color: rgb(250,250,250);
	border-bottom-color: rgb(250,250,250); 
    animation: spinclockwise 1s linear infinite; 
}

#PreloadOverlay #LoaderContainer #LoaderInner #SpinnerTwo { 
	width: 50px;
	height: 50px;
	top: calc(50% - 25px);
	left: calc(50% - 25px);
	border-right-color: rgb(250,250,250);
    animation: spincounterclockwise 1s linear infinite; 
}

#PreloadOverlay #LoaderContainer #LoaderInner #SpinnerThree {
	width: 20px;
	height: 20px;
	top: calc(50% - 10px);
	left: calc(50% - 10px);
	border-right-color: rgb(250,250,250);
	border-left-color: rgb(250,250,250);
    animation: spinclockwise 5s linear infinite; 
}

#PreloadOverlay #LoaderContainer #LoaderInner #SpinnerFour {
	width: 4px;
	height: 4px;
	top: calc(50% - 2px);
	left: calc(50% - 2px); 
	background-color: white;
}

/* circle */
#PreloadCircle {   
    position: fixed;
	top: 50%;
	left: 50%;
    z-index: 999999999;  
	background-color: #171720;
	border-radius: 100%; 
}

#PreloadCircle.hide {
	transition: 600ms;
	transform: scale(0);  
	opacity: 0.8; 
}








/******************** INQUIRE MODAL *********************/   
#InquireModal {        
	display: none;            
	width: 100%;
	height: 100vh; 
	position: fixed;
	top: 0px; 
	left: 0px; 
	z-index: 999999999;  
	opacity: 0; 
	pointer-events: none; 
	background-color: #171720;   
    transition: 650ms;  
    transform: translate(50px, 0px); 
}

#InquireModal.active {
	opacity: 1;
	pointer-events: auto;
    transform: translate(0px, 0px); 
}

/* dvh */
@supports (height: 100dvh) {
    #InquireModal { height: 100dvh; }    
} 

/* close btn */
#InquireModalClose {
	width: 80px;
	height: 80px;
	padding-top: 20px;
	position: absolute;
	top: 10px;
	right: calc(50% + 10px); 
	z-index: 99;
	cursor: pointer;
	background: linear-gradient(135deg, #4DA3FF 0%, #4DA3FF 35%, #2DD4BF 100%);   
	text-align: center;
	font-size: 35px;
	font-weight: 900;
	border-radius: 20px;
	color: white;
	transition: 1s;    
}

#InquireModal.active #InquireModalClose:hover {
	opacity: 0.3;
}

/* col */ 
#InquireModal .inq-mod-col {
	width: 50%;
	height: 100%;
	position: absolute;
	top: 0px; 
	z-index: 9;
	background-color: #171720;    
} 

/* image */
#InquireModal #InquireModalImageOuter {
	left: 0px;
}

#InquireModal #InquireModalImage {   
    opacity: 0.1; 
    background-image: url("../../Assets/Images/1.jpg");  
}

/* iframe */
#InquireModal #InquireModalFrame { 
	right: 0px; 
}







 
/******************** FORM LOADER ********************/   
#FormLoader {  
	display: none;
    width: 100%;
    height: 100vh;
    position: fixed;
    top: 0px;
    left: 0px;  
	z-index: 99999999;  
	opacity: 0;
	pointer-events: none;
	background-color: #171720;
	transition: 500ms;   
}

/* dvh */
@supports (height: 100dvh) {
    #FormLoader { height: 100dvh; }    
}

#FormLoader.active {
	opacity: 0.9; 
	pointer-events: auto; 
}
  
/* loader */
#FormLoader img {
	display: block;
	height: 100px;
	position: relative;
	top: calc(50% - 50px);  
} 


 
 




/******************** NAVIGATION ********************/                     
#Navigation {        
	width: 140px; 
	height: 70px;
	position: fixed;
	top: 0px;
	left: 0px;
	z-index: 999999;    
	background-color: white;
	transition: 1s;
}

/* main nav bar - logo */
#Navigation #Logo { 
    display: block;
    width: 70px;
    height: 70px;
    position: absolute;
    top: 0px; 
    left: 0px;
    z-index: 1;
	cursor: pointer;   
	object-fit: contain; 
}   
  
/* main nav bar - hamburger */ 
#Navigation #Hamburger {  
    width: 70px;
    height: 70px;    
    position: absolute;
    top: 0px;
    right: 0px;
    z-index: 2;
    cursor: pointer;     
	border-left: 1px solid rgba(0,0,0,0.2); 
}

#Navigation #Hamburger img {
	display: block;
	width: auto;
	height: 25px;
	position: relative;
	top: 22.5px;
}

/* main nav bar - hover */
#Navigation .hover {
    transition: 1s;
}

#Navigation .hover:hover {
     opacity: 0.2;
}

/* nav extra btns */
#NavigationExtraBtns {
	width: auto;
	height: 70px;
	position: fixed;
	top: 0px;
	left: 140px;
	z-index: 999999;     
	opacity: 0;
	pointer-events: none;
	background-color: white;
	transform: translate(10px, 0px); 
	transition: 500ms;
}

#NavigationExtraBtns.active {  
	opacity: 1;
	pointer-events: auto;
	transform: translate(0px, 0px); 
}
 
/* nav extra btns - a */
#NavigationExtraBtns a {
	display: inline-block;
	width: auto;
	height: 70px;
	padding: 28px 25px 0px;
    float: left;  
	background-color: white;
    text-align: center;
    font-size: 12px;
    font-weight: 900;
	border-left: 1px solid rgba(0,0,0,0.2);
    color: black;   
    transition: 1s; 
}  

#NavigationExtraBtns a.apply {
	background: linear-gradient(135deg, #4DA3FF 0%, #4DA3FF 35%, #2DD4BF 100%);  
	border-left: none; 
	color: white;
}

#NavigationExtraBtns a:hover {
	opacity: 0.2;
}
 
/* hide nav on dd open */
.hidenavddopen {
	opacity: 0 !important;
	pointer-events: none !important;
}








/******************** DROPDOWN MENU *********************/   
#DropDownMenu {       
    width: 300px;
    height: 550px;
    position: fixed;
    top: 20px;
    left: -300px;    
	z-index: 99999999;
    opacity: 0;
    pointer-events: none;
    overflow: hidden; 
    background-color: white;   
    border-radius: 20px;
    transition: 500ms;
}

#DropDownMenu.display {
    left: 20px; 
    opacity: 1;
    pointer-events: auto;
}

/* header */
#DropDownMenu #NavHeader {
	width: 100%;
	height: 105px;
	position: absolute;
	top: 0px;
	z-index: 99; 
	background: linear-gradient(135deg, #4DA3FF 0%, #4DA3FF 35%, #2DD4BF 100%);  
}

/* header - close */
#DropDownMenu #NavHeader #HamClose {
   width: 55px;
   height: 55px;
   padding-top: 21px;
   position: absolute;
   top: 25px;
   left: 25px;
   cursor: pointer;
   text-align: center;
   background-color: white;
   border-radius: 100%; 
}

#DropDownMenu #NavHeader #HamClose h3 {
   line-height: 0.8;
   font-size: 20px;
   font-weight: bold;
   color: #4DA3FF;
}

/* content */
#DropDownMenu #NavContent { 
	width: 100%;
	height: calc(100% - 105px);
	padding-left: 25px;
	position: absolute;
	top: 105px;
	left: 0px;
	z-index: 9;
	overflow-y: scroll; 
}

/* content - inner */
#DropDownMenu #NavContentInner {
	width: 100%;
	height: auto;
	padding-top: 70px;
	padding-bottom: 150px; 
	padding-left: 23px;
    text-align: left;
	border-left: 1px solid rgba(0,0,0,0.2);
}

/* content - inner - nav el */
#DropDownMenu #NavContentInner a.nav-el {
    display: block; 
    margin-top: 30px;
	letter-spacing: 1px;
	line-height: 1;
    font-size: 14px;
	font-weight: 400; 
    color: black; 
    transition: 1s;
}

#DropDownMenu #NavContentInner a.nav-el span {
    padding-right: 5px;
    font-weight: 900; 
    color: #4DA3FF;
}
 
#DropDownMenu #NavContentInner a.nav-el.first {
	margin-top: 0px; 
}

#DropDownMenu #NavContentInner a.nav-el:hover {
    color: #4DA3FF; 
}
    
/* content - inner - socials */
#DropDownMenu #NavContentInner #SocialMedia {
	width: 100%;  
	height: 30px;
	margin-top: 35px; 
}

#DropDownMenu #NavContentInner #SocialMedia img {
	display: inline-block;
	width: 30px;
	height: 30px;
	margin-right: 10px;
	padding: 6px;
	object-fit: contain;
	border: 1px solid #4DA3FF;
	transition: 1s;    
}

#DropDownMenu #NavContentInner #SocialMedia img:hover {
	opacity: 0.3;
}

/* overlay */
#DropDownMenuOverlay {
	width: 100%;
	height: 100vh;
	position: fixed;
	top: 0px;
	left: 0px;
	z-index: 9999999;
	opacity: 0;
	pointer-events: none;
	background-color: #171720;
    transition: 500ms; 
}

#DropDownMenuOverlay.active {
	opacity: 0.9;
	pointer-events: auto; 
}

/* dvh */
@supports (height: 100dvh) {
    #DropDownMenuOverlay { height: 100dvh; }    
}







   
/****************************************/  
/******************** GENERAL ********************/  
/****************************************/  








/******************** WELCOME SECTION *********************/                                                                                                                                                                                 
#WelcomeSection {                                                                                                                                                                                   
	width: 100%;
	height: 100vh; 
	position: relative;  
	background-color: #171720;
}

/* layout */
#WelcomeSection .layout {
    position: absolute;
    top: 0px;
    left: 0px;
}   

/* video */
#WelcomeSection #WelcomeVideo {
	z-index: 1;
    opacity: 0.1;  
    background-image: url("../../Assets/Video/welcome.gif");
} 

/* bottom overlay */
#WelcomeBottomOverlay {
	width: 100%;
	height: 300px;
	position: absolute;
	bottom: 0px;
	left: 0px;
	z-index: 2;
	background: linear-gradient(to bottom, rgba(23,23,32,0) 0%, rgba(23,23,32,0.4) 40%, rgba(23,23,32,0.8) 70%, #171720 100%); 
}

/* content */
#WelcomeSection #WelcomeContent {
	width: 700px; 
    height: auto;
    top: calc(50% - 200px);   
    left: 290px;
    z-index: 3;
    text-align: left;   
}

/* content - a */
#WelcomeSection #WelcomeContent a {
	display: inline-block;
	width: 200px;
	height: 45px;
	margin-top: 70px;
	padding-top: 13.5px; 
	float: left;
	cursor: pointer;
	background: linear-gradient(135deg, #4DA3FF 0%, #4DA3FF 35%, #2DD4BF 100%);
	text-align: center;
	word-spacing: 5px;
	font-size: 15px;
	font-weight: 900;
	border-radius: 12px;
	color: rgb(245,245,245); 
	transition: 1s; 
}
 
#WelcomeSection #WelcomeContent a.nobg {
	margin-right: 30px;
	padding-top: 13px; 
	background: none;
	border: 1px solid rgba(245,245,245,0.3); 
}

#WelcomeSection #WelcomeContent a:hover {
	opacity: 0.2;
}
 
/* scroll */
#WelcomeScroll {
	width: 30px;
	position: absolute;
	bottom: 40px;
	right: 40px;
	z-index: 3; 
	opacity: 0.3;
}
 




 


/******************** TWO COL SECTIONS *********************/                                         
.funding-two-col {                       
     width: calc(100% - 100px);
     position: relative;
}

#MissionSection {
     height: 700px;  
}

#WhySection {
     height: 700px;   
}

/* col */
.funding-two-col .col {
     width: 50%;
     height: 100%;
     position: absolute;
     top: 0px;
}

/* col - cont */
.funding-two-col .col.cont {
	right: 0px;
    text-align: left;
}

/* col - cont - inner */
.funding-two-col .col.cont .continner {
    width: 600px;
    height: auto;
    position: absolute;   
    left: calc(50% - 275px);  
}

#MissionSection .col.cont .continner {
    top: calc(50% - 190px);   
}

#WhySection .col.cont .continner {
    top: calc(50% - 190px);    
} 

/* col - cont - inner - stats */
.funding-two-col .col.cont .continner .statcol {
	display: inline-block;   
	width: calc(33.33333% - 10px);
	height: auto;  
	margin-top: 70px;
	margin-right: 10px; 
	padding: 25px;
	padding-right: 0px;
	float: left;
	vertical-align: top;   
	border: 1px solid rgba(245,245,245,0.09);
	border-radius: 15px;  
}    

/* col - cont - inner - stats - h3 */
.funding-two-col .col.cont .continner .statcol h3 { 
	line-height: 1;    
	font-size: 25px; 
	font-weight: 300; 	
	color: #4DA3FF;
}   

.funding-two-col .col.cont .continner .statcol h3 span {
    font-weight: 900;
}

/* col - cont - inner - stats - h4 */
.funding-two-col .col.cont .continner .statcol h4 {
	margin-top: 10px;
	padding-top: 10px; 
	word-spacing: 2px;
	font-size: 8px; 
	font-weight: bold;
	border-top: 1px solid rgba(245,245,245,0.09);
	color: white;  
}

/* col - cont - inner - stats - clear float */
.funding-two-col .col.cont .continner .statclearfloat {
	width: 100%;
	height: 1px;
	clear: both;
}

/* col - img */
.funding-two-col .col.image {
	left: 0px;
	overflow: hidden;
	clip-path: polygon(0% 0%, calc(100% - 60px) 0%, 100% 60px, 100% 100%, 60px 100%, 0% calc(100% - 60px));
}

.funding-two-col .col.image.mobile {
	display: none;
}

.funding-two-col .col.image .img {
	height: calc(100% + 600px);
	position: absolute;
	bottom: 0px;
	opacity: 0.5;  
} 

#MissionSection .col.image .img {
    background-image: url("../../Assets/Images/1.jpg");  
}

#WhySection .col.image .img {
    background-image: url("../../Assets/Images/2.jpg");  

}



  




/******************** INDUSTRIES / SERVICES CAROUSELS *********************/     
.funding-carousel-sec {                                   
    width: 100%;
    height: auto;
    margin: 200px auto 200px;
    position: relative; 
} 

/* header */
.funding-carousel-sec-head {
	display: inline-block;
    width: 500px;
	margin-left: 200px; 
    text-align: left;
}

/* carousel */
.funding-carousel-sec-car-outer {
    width: 100%;
    height: 350px; 
    position: relative;
    margin-top: 70px; 
}

.funding-carousel-sec-car-inner {
    width: 15000px;
    height: 350px;
    padding-left: 200px;
    transition: 300ms;  
}

/* icons sec - el */
.funding-carousel-sec-car-inner .isci-el,
.funding-carousel-sec-car-inner .ssci-el { 
	width: 400px;
	height: 350px;
    margin-right: 50px; 
    padding: 50px;
    float: left;
    text-align: left; 
    border: 1px solid rgba(245,245,245,0.09); 
    border-radius: 25px;
}

/* icons sec - el - img */
.funding-carousel-sec-car-inner .isci-el .img,
.funding-carousel-sec-car-inner .ssci-el .img {
	display: inline-block;
	width: 65px;
	height: 65px;
	border: 1px solid rgba(245,245,245,0.09);
	border-radius: 100%;
} 

.funding-carousel-sec-car-inner .isci-el .img img,
.funding-carousel-sec-car-inner .ssci-el .img img {
	display: block;
	width: 28px;
	height: 28px;
	position: relative;
	top: 17.5px;
	object-fit: contain;  
}

/* icons sec - el - h2 */
.funding-carousel-sec-car-inner .isci-el h2,
.funding-carousel-sec-car-inner .ssci-el h2 {
	margin-top: 35px;
	font-size: 20px;
	font-weight: 900; 
	color: white; 
}

/* icons sec - el - p */
.funding-carousel-sec-car-inner .isci-el p,
.funding-carousel-sec-car-inner .ssci-el p {
    margin-top: 15px;
	padding-top: 15px;
	line-height: 1.5;
    font-size: 13px;
    font-weight: 400;  
	border-top: 1px solid rgba(245,245,245,0.09); 
	color: rgba(245,245,245,0.7);
}

/* carousel controls opacity layer */
.funding-carousel-sec-control {
    width: 200px;
    height: 400px;
    position: absolute;
    top: -25px;
    z-index: 99;
    cursor: pointer;  
}

.funding-carousel-sec-control.left {
    left: 0px;
    background: linear-gradient(to right, #171720 0%, rgba(23,23,32,0.8) 50%, rgba(23,23,32,0.4) 75%, rgba(23,23,32,0) 100%);
}

.funding-carousel-sec-control.right {
    right: 0px;
    background: linear-gradient(to left, #171720 0%, rgba(23,23,32,0.8) 50%, rgba(23,23,32,0.4) 75%, rgba(23,23,32,0) 100%);
}

/* carousel controls icon */
.funding-carousel-sec-control .funding-carousel-sec-control-img {
	display: flex;
	width: 45px;
	height: 45px;
	position: absolute;
	top: calc(50% - 22.5px); 
	align-items: center;
	justify-content: center;
	cursor: pointer;
	background-color: #22222A;
	transition: 1s;
}

.funding-carousel-sec-control.left .funding-carousel-sec-control-img {
    left: 0px;
	border-top-right-radius: 13.5px;
	border-bottom-right-radius: 13.5px;
}

.funding-carousel-sec-control.right .funding-carousel-sec-control-img {
    right: 0px;
	border-top-left-radius: 13.5px;
	border-bottom-left-radius: 13.5px;
}

.funding-carousel-sec-control:hover .funding-carousel-sec-control-img {
    opacity: 0.3;
}








/******************** CTA SECTION *********************/                                    
#CTASection {                                         
    width: 100%;
	height: 700px; 
	position: relative;   
}     

/* img */ 
#CTASection #CTASectionImage {
	position: absolute; 
	top: 0px;
	left: 0px; 
	z-index: 1;
}

/* overlay */ 
#CTASection #CTASectionImage .img {
    opacity: 0.1;   
    background-image: url("../../Assets/Video/cta.gif");
}

/* content */ 
#CTASection #CTASectionContent {
	width: 650px;
	height: auto;
	position: absolute; 
	top: calc(50% - 190px); 
    left: calc(50% - 325px);
	z-index: 2;  
}

/* content - header */ 
#CTASection #CTASectionContent #CTASectionHeader {
	width: 100%;
	text-align: center;  
}

/* content - a */
#CTASection #CTASectionContent #CTASectionHeader a {
	display: inline-block; 
	width: 200px;
	height: 45px;
	margin-top: 70px;
	padding-top: 13.5px;   
	cursor: pointer;
	background: linear-gradient(135deg, #4DA3FF 0%, #4DA3FF 35%, #2DD4BF 100%);
	text-align: center;
	word-spacing: 5px;
	font-size: 15px;
	font-weight: 900;
	border-radius: 12px;
	color: rgb(245,245,245); 
	transition: 1s;  
}
 
#CTASection #CTASectionContent #CTASectionHeader a.nobg {
	margin-right: 30px;
	padding-top: 13px; 
	background: none;
	border: 1px solid rgba(245,245,245,0.3); 
}

#CTASection #CTASectionContent #CTASectionHeader a:hover {
	opacity: 0.2;
}








/******************** FOOTER SECTION ********************/               
#FooterSection {                             
	width: 100%;     
	height: 900px;  
    position: relative;   	  
	overflow: hidden;      
}

/* map */
#FooterSection #MapSection {
	width: 150%;
	height: 100%;
	position: absolute;
	top: 0px;
	left: 0px; 
	opacity: 0.5;
}      

/* info */
#FooterSection #InfoInner {
	width: 500px;
	height: auto;
	padding: 50px; 
	position: absolute;
	top: calc(50% - 300px);
	left: calc(25% - 250px);
	text-align: left;  
	background-color: #171720;
	border: 1px solid rgba(245,245,245,0.09);
	border-radius: 25px;
}

/* info - h3 */
#FooterSection #InfoInner h3 {
	width: 100%;
	height: 40px;
	margin-top: 20px;
	padding-top: 11px; 
	padding-left: 70px; 
	position: relative;
	text-align: left;
	font-size: 14px; 
	font-weight: bold;
	border: 1px solid rgba(245,245,245,0.09);
	border-radius: 20px; 
	color: white; 
}

#FooterSection #InfoInner h3.first {
	margin-top: 75px;
}
 
#FooterSection #InfoInner h3 img {
	width: 40px;
	height: 40px;
	padding: 10px; 
	position: absolute;
	top: -1px;  
	left: 5px;
	object-fit: contain; 
	border-right: 1px solid rgba(245,245,245,0.09);
	border-left: none; 
}






 
 
/****************************************/  
/******************** OTHER ********************/  
/****************************************/








/******************** SEC HEADERS ********************/  
/* h2 */
.funding-sec-header h2 {
	display: inline-block;
	padding: 10px 20px 10px;
	font-size: 7px;
	font-weight: 300; 
	border: 1px solid rgba(245,245,245,0.09);
	border-radius: 20px; 
	color: rgba(245,245,245,0.35);
} 

.funding-sec-header h2 strong {
	padding-left: 10px;
	font-weight: bold;  
}

/* h1 */
.funding-sec-header h1 {
	margin-top: 22.5px;
	word-spacing: 5px;
	line-height: 1;
    font-size: 50px;
    font-weight: 900; 
    color: #4DA3FF;  
}  

.funding-sec-header h1 span {
    color: white; 
} 

/* divider */
.funding-sec-header .fsh-divider {
	width: 100%;
	height: 1px;
	margin-top: 22.5px;
	background-color: rgba(245,245,245,0.09); 
}

/* p */
.funding-sec-header p {
    margin-top: 22.5px;
	line-height: 1.6;
    font-size: 16px;
    font-weight: 300;
    color: rgba(245,245,245,0.7);
} 






  
                          
/******************** VERTICAL DIVIDER ********************/   
.vertical-divider { 
	width: 100%; 
	height: 200px; 
	padding-top: 25px; 
}

.vertical-divider .divider {
	width: 1px;
	height: 75px;  
	background-color: white; 
}








/****************************************/  
/******************** ANIMATIONS ********************/  
/****************************************/  








/********************* PRELOAD *********************/   
/* outer */                     
@-webkit-keyframes preloadpulsate {      
    0% {  
	    -webkit-transform: scale(0.8);
		opacity: 1;
	}
	50% {
		-webkit-transform: scale(1);
		opacity: 0.1;
	}
	100% {
	    -webkit-transform: scale(0.8);
		opacity: 1;	
	}
}
 
@keyframes preloadpulsate {
    0% { 
	    transform: scale(0.8);
		opacity: 1;
	}
	50% {
		transform: scale(1);
		opacity: 0.1; 
	}
	100% {
	    transform: scale(0.8);
		opacity: 1;
	}
}

/* clockwise */
@-webkit-keyframes spinclockwise {      
    to { 
	    -webkit-transform: rotate(360deg);
	}
}

@keyframes spinclockwise {
    to {
		transform: rotate(360deg);
	}
}

/* counter clockwise */
@-webkit-keyframes spincounterclockwise {      
    to { 
	    -webkit-transform: rotate(-360deg);
	}
}

@keyframes spincounterclockwise {
    to {
		transform: rotate(-360deg);
	}
}   
 







/********************* ANIMATION ELEMENTS *********************/ 

/* animation-element */ 
.animation-element,
.animation-element-parent {
    width: 100%;
    height: 1px;
    position: absolute;
    top: 50%;
    opacity: 0;
    pointer-events: none;
}

/* animation-element up */ 
.animation-element.up-trigger,
.animation-element-parent.up-trigger { 
    top: 30% !important;  
}

/* transition */
.ae-zoom, .ae-up, .ae-fadein {
    -moz-transition: all 600ms ease-out; 
    -webkit-transition: all 600ms ease-out;
    -o-transition: all 600ms ease-out; 
    transition: all 600ms ease-out;
}

/* zoom */
.ae-zoom {
    -moz-transform: scale(0.95);
    -webkit-transform: scale(0.95);
    -o-transform: scale(0.95);
    transform: scale(0.95);
}      
                                                                                       
.ae-zoom.in-view {
    -moz-transform: scale(1);
    -webkit-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1); 
} 

/* up */ 
.ae-up { 
    -moz-transform: translate3d(0px, 75px, 0px);   
    -webkit-transform: translate3d(0px, 75px, 0px);
    -o-transform: translate(0px, 75px);
    -ms-transform: translate(0px, 75px);
    transform: translate3d(0px, 75px, 0px); 
}

.ae-up.in-view {
    -moz-transform: translate3d(0px, 0px, 0px);
    -webkit-transform: translate3d(0px, 0px, 0px);
    -o-transform: translate(0px, 0px);
    -ms-transform: translate(0px, 0px);
    transform: translate3d(0px, 0px, 0px); 
} 

/* fade */
.ae-fadein {      
    opacity: 0;
}

.ae-fadein.in-view {
    opacity: 1;
} 

/* typewriter */
.typewritercursor { animation: cursorblink 1s step-end infinite; }
@keyframes cursorblink { from, to { color: transparent; } 50% { color: white; } }
@-webkit-keyframes cursorblink { from, to { color: transparent; } 50% { color: white; } }








