/* this is the code for the website css */

	body {
		margin:0; 
		padding:0;
	}

	.topnav {
		overflow:hidden;
		background:#000;
		width:100%;
		text-align:center;
		position:fixed;
		z-index:100;
	}

	.topnav a {
		display:inline-block;
		color:#fff;
		padding:14px 16px;
		text-decoration:none;
		font-size:20px;
		font-family:bahnschrift;
		height:50px;
	}


	/* this is style is for the search bar */
	.active1 {
		width:100%;
		height:5vh;
		border-radius:20px;
		background:none;
		padding:20px;
		outline:none;
		color:#fff;
	}
	.active1::placeholder{
		color:#fff;
		font-size:15px;
		font-family:consolas;
		border:none
	}

	.active {
		float:left;
	}

	.topnav .icon {
		display:none;
	}

	.dropdown {
		float:right;
		overflow:hidden;
		transition:0.5s ease;
		margin-right:200px;
	}

	.dropdown .dropbtn {
		font-size:20px;
		border:none;
		outline:none;
		color:#fff;
		padding:14px 16px;
		background:inherit;
		font-family:bahnschrift;
		margin:0;
	}


	.topnav a:hover {
		transition:0.5s ease;
		border-right:2px solid orange;
		border-left:2px solid orange;
		color:orange;

	}
	.topnav a input:hover {
		background:none;
	}

	.dropdown:hover .dropdown-content {
		display:block;	
	}

	@media screen and (max-width:600px) {
		.topnav a:not(:first-child), .dropdown .dropbtn {
			display:none;
		}
		.topnav a.icon {
			float:right;
			display:block;
		}
	}

	@media screen and (max-width:600px) {
		.topnav.responsive {position:relative;}

		.topnav.responsive.icon {
			position:absolute;
			right:0;
			top:0;
		}
		.topnav.responsive a {
			float:none;
			display:block;
			text-align:left;
			background:#000;
		}
		.topnav.responsive.dropdown {float:none;}

		.topnav.responsive.dropdown-content {position:relative;}

		.topnav.responsive.dropdown.dropbtn {
			display:block;
			width:100%;
			text-align:left;
		}
	}

	/* this is the hover effect of all the images */
	img:hover {
		box-shadow:2px 2px 10px 0px lightgrey;
		transition:0.5s;
		opacity:0.7;
	}




/* this is the css for the slideshow */
*{box-sizing:border-box}
/* Slideshow container */
.slideshow-container1 {
  min-width:90%;
  position: relative;
  margin:0;
}

/* Hide the images by default */
.mySlides1 {
  display: none;
}

/* Caption text */
.text1 {
  color: #f2f2f2;
  font-size:20px;
  padding: 8px 12px;
  position: absolute;
  bottom: 8px;
  width: 100%;
  text-align: center;
  margin:0;
}
.text1 h2 {
	color:orange;
	font-size:40px;
	font-family:swis721 blk bt;
	margin:0;
}
.text1 p {
	font-family:consolas;
	font-size:20px;
}
.text1 p a {
	color:orange;
	font-family:calibri;
	font-size:20px;
  	text-decoration:none;
  	padding:5px;
  	border:2px solid orange;
  	border-radius:10px;
}
.text1 p a:hover {
	color:#fff;
	background:#000;
	transition:0.7s ease;
	border:none;
	opacity:20px;
}

/* Fading animation */
.fade1 {
  animation-name: fade;
  animation-duration: 1.5s;
}

@keyframes fade {
  from {opacity: .4}
  to {opacity: 1}
}

	</* this is for the responsiveness of the the images slideshow */
	@media screen and (max-width:600px) {
		.mySlides1 img {
			height:100px;
		}
	}

.mySlides1 img {
	height:50vh;
}



/* this is the second slideshow styling */
/* Slideshow container */
.slideshow-container2 {
  max-width: 1200px;
  position: relative;
  margin: auto;
}

/* Hide the images by default */
.mySlides2 {
  display: none;
}

/* Next & previous buttons */
.prev2, .next2 {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  margin-top: -22px;
  padding: 16px;
  color: white;
  font-weight: bold;
  font-size: 18px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
}

/* Position the "next button" to the right */
.next2 {
  right: 0;
  border-radius: 3px 0 0 3px;
}

/* On hover, add a black background color with a little bit see-through */
.prev2:hover, .next2:hover {
  background-color: rgba(0,0,0,0.8);
}

/* Caption text */
.text2 {
  color:#fff;
  font-size:25px;
  font-family:bahnschrift;
  padding: 8px 12px;
  position: absolute;
  bottom: 8px;
  width: 100%;
  text-align: center;
}
.text2 a {
	font-size:20px;
	text-decoration:none;
	background:#000;
	padding:10px;
	color:#fff;
}
.text2 a:hover {
	color:red;
	transition:.5s ease;
}

/* Number text (1/3 etc) */
.numbertext2 {
  color: #f2f2f2;
  font-size: 12px;
  padding: 8px 12px;
  position: absolute;
  top: 0;
}

/* The dots/bullets/indicators */
.dot2 {
  cursor: pointer;
  height: 15px;
  width: 15px;
  margin: 0 2px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
}

.active2, .dot2:hover {
  background-color: #717171;
}

/* Fading animation */
.fade2 {
  animation-name: fade;
  animation-duration: 1.5s;
}

@keyframes fade {
  from {opacity: .4}
  to {opacity: 1}
}


/** this is te styling for the contents **/

/* this is for the styling of content2 */
	.content {
		display:flex;
		flex-wrap:wrap;
		max-width:1400px;
		margin:auto;
		text-align:justify;
		text-decoration:none;
		text-align:center;
	}
	.content img {
		box-shadow:2px 2px 10px 0px #000;
	}
	.content a {
		text-decoration:none;
		font-size:28px;
		font-family:swis721 blk bt;
		color:red;
		
	}
	.content p {
		font-size:19px;
		color:#000;
		font-family:centaur;
	}
	.content span {
		font-size:15px;
		color:#5B1601;
		font-family:bahnschrift;
	}
	.content .left-content {
		flex:1;
		min-width:350px;
	}
	.content .right-content {
		flex:1;
		min-width:350px;
	}




	/* this style is for the news gangan */
	.content2 {
		overflow:auto;
		margin:auto;
		display:flex;
		flex-wrap:wrap;
		max-width:1300px;
		justify-content:space-between; 
		font-size:30px;
		text-align:center;
		padding:20px;
	}
	.content2 a {
		text-decoration:none;
		font-size:25px;
		font-family:cambria;
		color:red;
		text-transform:capitalize;
		margin:0;
	}
	.content2 img {
		border-radius:10%;
		border:5px solid #000;
	}
	.content2 p {
		font-size:20px;
		color:#000;
		font-family:centaur;
		margin:0;
	}
	.content2 p button {
		color:red;
		background:none;
		border:2px solid #000;
		border-radius:10px;
	}
	.content2 p button:hover {
		cursor:pointer;
		opacity:0.7;
		transition:0.5s ease;
	}
	.left-content1 {
		flex:1;
		min-width:250px;
		background:none;
		padding:20px;
	}
	.middle-content1 {
		flex:1;
		min-width:250px;
		background:none;
		padding:20px;
	}
	.right-content1 {
		flex:1;
		min-width:250px;
		background:none;
		padding:20px;
	}


	/* this style is for the news gangan */
	.content3 {
		overflow:auto;
		display:flex;
		flex-wrap:wrap;
		max-width:1300px;
		margin:auto;
		justify-content:space-between; 
		font-size:30px;
		text-align:center;
		padding:20px;
	}
	.content3 a {
		text-decoration:none;
		font-size:25px;
		font-family:cambria;
		color:red;
		text-transform:capitalize;
		margin:0;
	}
	.content3 p button a {
		font-size:15px;
		font-family:consolas;
	}
	.content3 p {
		font-size:20px;
		color:#000;
		font-family:centaur;
		margin:0;
	}
	.content3 p button {
		color:red;
		background:none;
		border:2px solid #000;
		border-radius:10px;
	}
	.content3 p button:hover {
		cursor:pointer;
		opacity:0.7;
		transition:0.5s ease;
	}
	.left-content {
		flex:1;
		min-width:250px;
		background:none;
		padding:20px;
	}
	.middle-content {
		flex:1;
		min-width:250px;
		background:none;
		padding:20px;
	}
	.right-content {
		flex:1;
		min-width:250px;
		background:none;
		padding:20px;
	}





/** THis styling is for the footer area */
footer {
	background-color:#000; 
	color:#fff; 
	padding:40px 20px; 
	font-family:bahnschrift;
}

.foot-1 {
	display:flex; 
	flex-wrap:wrap; 
	justify-content:space-between; 
	max-width:1200px; 
	margin:auto;
}

.foot1 {
	flex:1; 
	min-width:250px; 
	margin-bottom:20px;
}

.foot2 {
	flex:1; 
	min-width:250px; 
	margin-bottom:20px;
}

.foot3 {
	flex:1; 
	min-width:250px; 
	margin-bottom:20px;
}

.foot3 li a {
	color:#fff;
	text-decoration:none;
}
.foot3 li a:hover {
	color:orange;
	transition:0.5s ease;
}

.foot4 {
	flex:1; 
	min-width:250px; 
	margin-bottom:20px;
}
.foot4 a {
	color:#fff;
}
.foot4 a:hover {
	color:orange;
	transition:0.5s ease;
}

.foot5 {
	text-align:center; 
	margin-top:30px; 
	border-top:2px solid orange; 
	padding-top:20px;
}
.foot5 a {
	color:orange;
}
.foot5 a:hover {
	color:#fff;
	transition:0.5s ease;
}



















