

#homePageHeader {
	display: flex;
	width: 100%;
	height: 100vh;
}

#homePageIntroBox {
	background-color: #151515;
	width: 50%;
	height: 100vh;
	margin: 0px;
	padding: 0px;
	padding-left: 50px;
	display: flex;
	justify-content: left;
	align-items: center;
}

#saaiqSAS {
	font-size: 70px;
	font-family: 'JetBrainsMono-ExtraBold';
	margin: 0;
    padding: 0;
	border-right: 10px solid #9900CC;
	overflow: hidden;
	animation: typewriter .75s steps(16) forwards,
	typewriter-curser 1s step-end infinite;
	
	
}

#saaiqSAS_underline {
	background-color: #9900CC;
	width: 250px;
	height: 10px;
	border-radius: 10px;
}

#saaiqSAS_skills {
	capitalize: true;
	color: #CCCCCC;
	font-size: 22px;
	/*animation: skills 3s infinite;*/
}

#homePageSeperatorBox {
	background-color: #505050;
	width: 140px;
	height: 100vh;
	border-radius: 0px 0px 70px 0px;
}

#homePageNavBox {
	width: 40%;
	height: 100vh;
	display: flex;
	justify-content: center;
	align-items: center;
}

#homePageNavBoxMobile {
	margin-top: 0px;
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
}

#homePageButtonsBox {
	width: 70%;
	max-width: 70%;
}

.homePageIconsBox {
	height: 40px;
	margin: 40px auto;
	width: 134px;
	padding-left: 6px;
	
}

.homePageIconsBox svg {
	-webkit-transition: all 0.2s ease;
    	-moz-transition: all 0.2s ease;
    	-o-transition: all 0.2s ease;
    	-ms-transition: all 0.2s ease;
    	transition: all 0.2s ease;
}

.homePageIconsBox svg:hover {
	transform: translate(0px,-10px);
}

.homePageButtons {
	width: 100%;
	padding: 8px 0px 8px 0px;
	font-size: 28px;
	margin: 20px 0px 20px 0px;
	font-family: 'JetBrainsMono-Regular';
	color: #151515;
	text-align: center;
	border: 3px solid #151515;
	border-radius: 100px;
	-webkit-transition: all 0.2s ease;
    	-moz-transition: all 0.2s ease;
    	-o-transition: all 0.2s ease;
    	-ms-transition: all 0.2s ease;
    	transition: all 0.2s ease;
	
}

.homePageButtons:hover {
	background-color: #151515;
	color: #E6E6E6;
	transform: scale(1.07);
}

#projects_color_bar {
	background-color: #9999FF;
}

#onsite_tools_color_bar {
	background-color: #FFFF00;
}

.toolsListing {
	width: 350px;
	height: 360px;
	background-color: #404040;
	margin: 30px 50px;
	border-radius: 30px;
	overflow: hidden;
	border: 2px solid #999999;
	text-align: center;
	
	box-shadow: 0px 15px 20px 3px rgba(0,0,0,1);
	-webkit-box-shadow: 0px 15px 20px 3px rgba(0,0,0,1);
	-moz-box-shadow: 0px 15px 20px 3px rgba(0,0,0,1);
	
	-webkit-transition: all 0.2s ease;
    	-moz-transition: all 0.2s ease;
    	-o-transition: all 0.2s ease;
    	-ms-transition: all 0.2s ease;
    	transition: all 0.2s ease;
}

.toolsListing:hover {
	box-shadow: 0px 15px 35px 4px rgba(0,0,0,1);
	-webkit-box-shadow: 0px 15px 35px 4px rgba(0,0,0,1);
	-moz-box-shadow: 0px 15px 35px 4px rgba(0,0,0,1);
	transform: translate(0px,-15px);
	background-color: #555555;
	border: 2px solid #ffffff;
}

.toolsListingImageBox {
  height: 150px;
  width: 100%;
  display: flex;              
  justify-content: center;    
  align-items: center;        
  overflow: hidden;           
}


.toolsListingImageBox img {
	object-fit: cover;       
	width: 100%;                 
	height: 100%;   
}


.toolsListing desc {
	display: block;
	padding: 15px;
	text-align: left;
	color: #E9E9E9;
	font-size: 16px;
}

.toolsListing rel {
	display: block;
	padding: 5px;
	margin: 10px auto;
	margin-bottom: 0px;
	text-align: center;
	color: #E0E0E0;
	font-size: 14px;
	background-color: #323232;
	border-radius: 100px;
	border: 1px solid #999999;
	width: 200px;

}


/*Individual listings*/
#tools_SAS_STE {
	background-color: #232323;
}

#tools_Raajjefonts {
	background-color: #FBF8F3;
}

#tools_ROSET {
	background-color: #121212;
}

#tools_ROSET img {
	width: 90%;
	height: auto;
}

/* Mobile */
@media screen and (min-width: 900px) {
	#homePageNavBoxMobile {
		display: none;
	}

	#homePageWallpaper_serperator_Mobile {
		display: none;
	}
}

@media screen and (max-width: 900px) {
	#homePageIntroBox {
		width: 60%;
		padding-right: 30px;
	}
	
	#homePageNavBox {
		display: none;
	}
	
	#saaiqSAS {
		font-size: 50px;
	}

	#saaiqSAS_underline {
		width: 200px;
		height: 10px;
	}

	#saaiqSAS_skills {
		font-size: 18px;
	}
	
	#homePageSeperatorBox {
		width: 70px;
	}
	
	#homePageWallpaper_serperator {
	display: none;
	}
	
	.toolsListing {
		width: 300px;
		height: 380px;
	}
}





