* {
	box-sizing: border-box;
	top: 0;
}
body{
	background: #4682B4; 
	}
		
header{
	display: none;
	position: sticky;
	font-family: 'Quicksand', sans-serif;
	}

	nav{
	width: 100%;
	height: auto;
	background: #fff;
	padding: 0 10px;
	box-sizing: border-box;
	position: sticky;
	top: 0;
	}
	nav .active{
    border-bottom: 2px solid #fff;
  }
	nav h1{
	   margin: 0;
	   padding: 20px 20px;
	   float: left;
	   clear: left;
	   line-height: auto;
	}
	nav .link h1 a{
		text-decoration: none;
		color: #191970;
	}
	
	nav ul{
		margin: 0;
		padding: 0;
		float: right;
	}
	nav ul li{
		list-style: none;
		display: inline-block;
		padding: 30px 25px;
		transition: 0.5s;
	}
	nav ul li a{
		color: #000;
		text-decoration: none;
		font-family: 'Quicksand', sans-serif;
		box-sizing: border-box;
		font-size: 20px;
	}
	nav ul li a:hover{
		border-bottom: 3px solid #fff;
	}
	/*RESPONSIVE WEBSITE*/


/* Add a black background color to the top navigation */
	.topnav {
		background-color: #333;
		overflow: hidden;
		display: none;
		position: sticky;
	}
	
	/* Style the links inside the navigation bar */
	.topnav a {
		float: left;
		display: block;
		color: #f2f2f2;
		text-align: center;
		padding: 14px 16px;
		text-decoration: none;
		font-size: 17px;
	}
	
	/* Change the color of links on hover */
	.topnav a:hover {
		background-color: #ddd;
		color: black;
	}
	
	/* Add an active class to highlight the current page */
	.topnav .active {
		background-color: #4CAF50;
		color: white;
	}
	
	/* Hide the link that should open and close the topnav on small screens */
	.topnav .icon {
		display: none;
	}
	
	/* When the screen is less than 600 pixels wide, hide all links, except for the first one ("Home"). Show the link that contains should open and close the topnav (.icon) */
	@media screen and (max-width: 600px) {
	.topnav a:not(:first-child) {
        display: none;
    }
	.topnav a.icon {
		float: right;
		display: block;
	}

	header{
		display: block;
	}
	nav{
		display: none;
	}
	}
	
	/* The "responsive" class is added to the topnav with JavaScript when the user clicks on the icon. This class makes the topnav look good on small screens (display the links vertically instead of horizontally) */
	@media screen and (max-width: 600px) {
	.topnav.responsive {position: relative;}
	.topnav.responsive a.icon {
		position: absolute;
		right: 0;
		top: 0;"
	}
	.topnav.responsive a {
		float: none;
		display: block;
		text-align: left;
	}
	.topnav {
		display: block;
	}
	}


	#button {
  display: inline-block;
  background-color: #FF9800;
  width: 50px;
  height: 50px;
  text-align: center;
  border-radius: 4px;
  position: fixed;
  bottom: 30px;
  right: 30px;
  transition: background-color .3s, 
    opacity .5s, visibility .5s;
  opacity: 0;
  visibility: hidden;
  z-index: 1000;
}
#button::after {
  content: "\f077";
  font-family: FontAwesome;
  font-weight: normal;
  font-style: normal;
  font-size: 2em;
  line-height: 50px;
  color: #fff;
}
#button:hover {
  cursor: pointer;
  background-color: #333;
}
#button:active {
  background-color: #555;
}
#button.show {
  opacity: 1;
  visibility: visible;
}
/*FOOTER STYLINGS STARTS HERE*/

	footer{
	   color:white;
	   background-color: #141e33; 
	   padding:20px;
	   float:left;
	   width:100%;
	   } 
	footer a{
		color: #ff9100;
		font-family: sans-serif;
		text-decoration: none;
	}  
	footer a:hover{
		background: #007eff;
		transition: 0.2s;
	} 
	footer p{
		text-align: center;
	}
	#page-wrap{
	   margin:0 auto; 
	   max-width:1150px;
	   left:50%;
	   right:50%;
	   padding:5px;
	} 

	/*stylings for projects(CONTAINER)*/

	#container{
		width:100%;
		background-color: #fffaf0;
		height: auto;
	}
	.awear{
		width: 100%;
		padding: 5px;
	}
	.awear h3{
		font-family: 'PT Sans Narrow', sans-serif;
		font-size: 30px;
	}
	.awear p{
		font-family: 'Archivo Narrow', sans-serif;
		font-size: 20px;
	}
	.plan h1{
		font-family: sans-serif;
		height: 55px;
		line-height: 55px;
		font-size: 25px;
		background-color: #333;
		color: #fff;
		text-align: center;
		width: 100%
	}
	.second{
		margin: 0;
		padding: 0;
		top: 0;
	}
	.second h3{
		width: 200px;
		font-family: sans-serif;
		height: 40px;
		line-height: 40px;
		font-size: 20px;
		background-color: #008b8b;
		color: #fff;
		text-align: center;
	}

	.arrange{
		margin: 5px 10px;
		float: left;
		width: 350px;
		height: 400px;
	}
	.arrange img{
		width: 100%;
	}
	.description{
		font-family: 'Barlow', sans-serif;
	}

.head{
	text-transform: uppercase;
	font-family: 'Yanone Kaffeesatz', sans-serif;	
	color: 	#fff;
	font-size: 20px;
	text-align: center;
}

@media screen and (max-width: 650px){
#container .awear{
	width: 100%;
	padding: 3px;
}

}
}

/*RESPONSIVE WEBSITE*/

.mySlides {display: none;}
img {vertical-align: middle;}

/* Add a black background color to the top navigation */
	.topnav {
		background-color: #333;
		overflow: hidden;
		display: none;
		position: sticky;
	}
	
	/* Style the links inside the navigation bar */
	.topnav a {
		float: left;
		display: block;
		color: #f2f2f2;
		text-align: center;
		padding: 14px 16px;
		text-decoration: none;
		font-size: 17px;
	}
	
	/* Change the color of links on hover */
	.topnav a:hover {
		background-color: #ddd;
		color: black;
	}
	
	/* Add an active class to highlight the current page */
	.topnav .active {
		background-color: #4CAF50;
		color: white;
	}
	
	/* Hide the link that should open and close the topnav on small screens */
	.topnav .icon {
		display: none;
	}
	
	/* When the screen is less than 600 pixels wide, hide all links, except for the first one ("Home"). Show the link that contains should open and close the topnav (.icon) */
	@media screen and (max-width: 600px) {
	.topnav a:not(:first-child) {
        display: none;
    }
	.topnav a.icon {
		float: right;
		display: block;
	}

	header{
		display: block;
	}
	}
	
	/* The "responsive" class is added to the topnav with JavaScript when the user clicks on the icon. This class makes the topnav look good on small screens (display the links vertically instead of horizontally) */
	@media screen and (max-width: 600px) {
	.topnav.responsive {position: relative;}
	.topnav.responsive a.icon {
		position: absolute;
		right: 0;
		top: 0;"
	}
	.topnav.responsive a {
		float: none;
		display: block;
		text-align: left;
	}
	.topnav {
		display: block;
	}
	}

@media screen and (max-width: 400px) {
	.awear img{
		width: 100%;
	}

}
/* SLIDESHOW STYLINGS */

@media screen and (max-width: 600px){

	.mySlides img{
		width: 100%;
		height: 250px;
	}

	.img-1{
		display: none;
	}
	.arrange img{
		width: 100%;
	}
}
	

img {vertical-align: middle;}

.slideshow-container {
  width: 100%;
  
  margin-top: 1px;
}


/* The dots/bullets/indicators */
.dot {
  height: 15px;
  width: 15px;
  margin: 0 2px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
}

.slideshow-container .active {
  background-color: #717171;
}

/* Fading animation */
.fade {
  -webkit-animation-name: fade;
  -webkit-animation-duration: 1.5s;
  animation-name: fade;
  animation-duration: 1.5s;
}

@-webkit-keyframes fade {
  from {opacity: .4} 
  to {opacity: 1}
}

@keyframes fade {
  from {opacity: .4} 
  to {opacity: 1}
}

/* On smaller screens, decrease text size */
@media only screen and (max-width: 300px) {
	  .text {font-size: 11px}
	}

	.div-1{
		background-color: #F0F8FF;
	    display: block;
	    margin-left: auto;
	    margin-right: auto;
	    width: 80%;
	    padding: 6px;
	    top: 0;
	    bottom: 0;
	}
}