/* preset of the whole page */
body{
	background-color:rgba(255,255,255,1);
	overflow-y: scroll;
	font-family:Arial;
	background-image: radial-gradient(circle,
	rgba(0,0,255,0.2), 
	rgba(255,255,255,0.5)
	);
}
/* container of all components on page */
.container{
	max-width:1002px;
	width:100%;
	height:auto;
	background-color:rgba(255,255,255,0.5);
	display:table;
	margin:10px auto;
	padding:10px 10px 10px 10px;
	border-radius:10px;
}
/* heading */
.toppage{
	max-width:1002px;
	width:100%;
	height:auto;
	background-color:rgba(255,255,255,1);
	display:block;
	margin:10px auto;
	padding:5px;
	border-radius:10px;
}
/* code for logo wrapping and text allignment */
.logolocation img{
	width:100px;
	height:100px;
}
.logolocation {
	display:flex;
	align-items:flex-end;
	gap:15px;
}
.logo-text h1,
.logo-text h2 {
	margin:0px;
	line-height:1.5;
}
	/* background color of the menu */
.menu1 {
	background-color:rgb(0,48,75);
	overflow:hidden;
}
	/* styling of menu items */
.menu1 a{
	float:left;
	display:block;
	color:rgb(255,255,255);
	text-align:center;
	padding: 1rem 2rem;
	text-decoration:none;
	font-size:17px;
}
.menu1 a:hover {
	background-color:rgb(255,255,255);
	color:rgb(0,0,0);
}
.menu1 a.active{
	background-color:rgb(225,225,226);
	color:rgb(226,0,26);
}
	/* menu icon code */
.menu1 a.icon{
	display:none;
}
.menu1-icon {
	width:40px;
	height:20px;
	display:flex;
	flex-direction: column;
	justify-content: space-between;
	padding:0px 0px;
}
.menu1-icon span{
	display:block;
	width:100%;
	height: 4px;
	background-color:white;
	border-radius: 2px;
}
/* end of heading components */

/* contents of the centre page */
/* row of the div elements */
.contentrow{
	background-color:rgba(255,255,255,0.1);
	display:flex;
	flex-wrap: wrap;
	gap:20px;
	padding:5px 20px 5px 20px;
	border-radius:10px;
	margin: 0px 0px 0px 0px;
}
/* column box where content is displayed */
.contentrow-column{
	flex:1;
	min-width:250px;
	background-color:rgba(255,255,255,0.7);
	padding:15px;
	border-radius:10px;
}
/* paragraph alignment */
.contentrow-column p{
	text-align:justify;
	text-decoration:none;
	color:black;
}
.contentrow-column a{
	text-align:justify;
	text-decoration:none;
	color:black;
}
.contentrow-column1{
	flex:1;
	display:flex;
	justify-content:center;
	align-items:center;
	min-width:250px;
	background-color:rgba(255,255,255,0.7);
	padding:15px;
	border-radius:10px;
	align-content:center;
}
.contentrow-column2{
	flex:1;
	min-width:250px;
	background-color:rgba(255,255,255,0.7);
	padding:15px;
	border-radius:10px;
}
/* paragraph alignment */
.contentrow-column1,
.contentrow-column2 p{
	text-align:justify;
}
 /* side bar formating */
.sidebar {
	flex:0 0 200px;
	padding: 15px;
	border-radius:10px;
	background-color:rgba(255,255,255,0.9);
	text-align:center;
}
#pic1, #pic2, #pic3, #pic4 {
	display:none;
}


/* copyrights strip at the bottom of the page */
.crights{
	background-color:rgba(241,241,246,0.7);
	display:block;
	text-align:center;
	color:black;
}
/* footer section */
.footer-row{
	background-color:rgba(241,241,241,1);
	display:flex;
	flex-wrap: wrap;
	gap:20px;
	padding:5px 20px 5px 20px;
	border-radius:10px;
	margin: 0px 0px 0px 0px;
}
/* column box where content is displayed */
.footer-row-column{
	flex:1;
	min-width:150px;
	background-color:rgba(255,255,255,0.7);
	padding:15px;
	border-radius:10px;
}
/* paragraph alignment */
.footer-row-column p{
	text-align:justify;
}
.footer-row-column a{
	text-decoration:none;
	color:black;
}
.footer-row-column img{
	width:100%;
	height: auto;
}
/* responsive bits and pieces */
@media screen and (max-width: 600px){
	.menu1 a:not(:first-child) {display:none;}
	.menu1 a.icon {
		float:right;
		display:block;
	}
}
/* responive class or what ever */
@media screen and (max-width:600px){
	.menu1.responsive {position:relative;}
	.menu1.responsive a.icon {
		position:absolute;
		right: 0;
		top: 0;
	}
	.menu1.responsive a{
		float:none;
		display:block;
		text-align:left;
	}
}
@media screen and (max-width: 600px){
	.contentrow{
		flex-direction:column;
	}
	.sidebar {
		flex:auto;
		width:auto;
	}
}