@charset "UTF-8";
/* CSS Document */


body{
	margin:0px;
	font-family: 'Montserrat', sans-serif;
	font-size: 100%;
	line-height:125%;
	color: black;
	text-align:left;
}



a{text-decoration: none;}


.header{
	width: 100%;
	height: auto;
	background-color: cornflowerblue;
}

.header img{width: 100%;}


.header_med{
	display: none;
}


.header_sml{
	display: none;
}


.wrapper_outer {
	display: flex;
	width: 100%;
	height:auto;
	align-items: center;
	justify-content: center;
	box-sizing: border-box;
	background-image:url("../jpg/principle_bg.jpg");
	background-repeat: no-repeat;
	background-size: cover;
}


.wrapper_inner {
	display: flex;
	width: 80%;
	max-width: 1200px;
	height:50%;
	align-items: center;
	box-sizing: border-box;
	padding-top: 5%;
	padding-bottom: 5%;
}


.left-stack{
	width: 40%;
	height: 80%;
	box-sizing: border-box;
}



.stack_heading{
	color: #000000;
	font-size: 140%;
	font-weight: 600;
	text-align: left;
	width: 100%;
	height: 10%;
	display: flex;
	align-items: center;
	box-sizing: border-box;
	margin-bottom: 2%;
}

.stack_para{
	width: 100%;
	height:200px;
	overflow-y: scroll;
	box-sizing: border-box;
	padding-right: 2%;
	
}



.stack_Button_wrapper{
	width: 100%;
	height: 10%;
	display: flex;
	align-items: center;
	justify-content:flex-start;
	margin-top: 10%;
	box-sizing: border-box;
}


.stack_button{
	width: 40%;
	height: 100%;
	background-color: #dc143c;
	color: white;
	text-align: center;
	padding: 1%;
	display: flex;
	justify-content: center;
	align-items: center;
	margin-right: 5%;
	cursor: pointer;
}


.stack_button:hover{
	width: 40%;
	height: 100%;
	background-color: #ff5777;
	color: white;
	text-align: center;
	padding: 1%;
	display: flex;
	justify-content: center;
	align-items: center;
	margin-right: 5%;
	cursor: pointer;
}




.column{
	height:auto;
	float:left;
	box-sizing: border-box;
	display:inline-block;
	position: relative;
	display: flex;
  	align-items: center;
  	justify-content: center;
	cursor: pointer;
	}


.column_subpage{
	height:auto;
	float:left;
	box-sizing: border-box;
	display:inline-block;
	position: relative;
	display: flex;
  	align-items: center;
  	justify-content: center;
	 flex-direction: column;
	}


.column img{
	width: 100%;
}

.column_subpage img{
	width: 100%;
}



.overlay_title{
	color: #FFF;
	width: 100%;
	font-size: 140%;
	font-weight: 600;
	text-align:center;
	position: absolute;
	box-sizing: border-box;
	line-height: 120%;
	z-index: 100;
	padding: 1%;

}



.overlay_cover{
	background-color: #000;
	width: 100%;
	height: 100%;
	position: absolute;
	box-sizing: border-box;
	opacity: 0.2;
	z-index: 99;
}


.overlay_cover:hover{
	background-color: #FFF;
	width: 100%;
	height: 100%;
	position: absolute;
	box-sizing: border-box;
	opacity: 0.4;
	z-index: 99;
}


.heading{
	color: #000000;
	font-size: 140%;
	font-weight: 600;
	text-align: left;
	width: 100%;
	height: 10%;
	box-sizing: border-box;
	margin-bottom: 2%;
	line-height: 110%;
}


.spl_word{
	width: 100%;
	font-size: 120%;
	font-weight: 600;
	text-align:center;
	box-sizing: border-box;
	padding-top: 5%;
}






/*--------------------SCROLL BAR------------------------------- */
/* width */
::-webkit-scrollbar {
  width: 10px;
}

/* Track */
::-webkit-scrollbar-track {
  background: #a0a0a0; 
	border-radius: 20px;
}


 
/* Handle */
::-webkit-scrollbar-thumb {
  background: #e13255; 
	height: 10px;
	border-radius: 20px;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #dc143c; 
}

/*--------------------//SCROLL BAR------------------------------- */