*{
	margin: 0;
	padding: 0;
	font-family: Agency FB;
}
html{
	scroll-behavior: smooth;
}
@font-face{
	font-family: Agency FB;
	src: url(assets/font/AGENCYR.ttf);
}
.switch{
	cursor: pointer;
}
.switch img{
	width: 30px;
	height: 30px;
}

/*.......Header...............*/
#header{
	width: 100%;
	height: 662px;
}
.lightMode{
	background-image: url("../img/mountains2.jpg");
	background-repeat: no-repeat;
	background-size: cover;
	position: relative;
}
.nlight{
	width: 100%;
	background-color: rgba(255, 255, 255, 0.5);
	box-shadow: 0px 2px 6px black;
	position: relative;
}
.nlight ul{
	display: flex;
	padding: 20px 10px;
	justify-content: center;
}
.nlight ul li{
	list-style: none;
}
.nlight ul li a{
	margin: 5px 10px;
	padding: 21px 20px;
	text-decoration: none;
	color: black;
	font-size: 24px;
}
.nlight ul li a:hover{
	color: white;
	background-color: black;
}
.logo{
	position: absolute;
	top: 38%;
	left: 40%;
}
.logo img{
	width: 250px;
	height: 250px;
}
.socialBtns{
	position: fixed;
	top: 45%;
	left: 1%;
}
.socialBtns img{
	width: 30px;
	height: 30px;
	cursor: pointer;
}
.socialBtns img:hover{
  width: 35px;
  height: 35px;
}
h2{
	text-align: center;
	font-weight: bold;
	margin: 5px 0;
	padding: 10px;
	font-size: 3rem;
}

/*.........ABOUT...........*/
#about{
	width: 90%;
	margin: 10px auto;
	display: flex;
	/*border: 1px solid red;*/
}
.aboutImgs{
	flex-basis: 50%;
	border-right: 2px solid grey;
	height: 408px;
	position: relative;
	text-align: center;
}
.slideIndicator{
	position: absolute;
	bottom: 8px;
	left: 45%;
}
.dot{
	height: 15px;
	width: 15px;
	margin: 0 2px;
	background-color: rgba(255, 255,255, .5);
	border-radius: 50%;
	display: inline-block;
	transition: background-color 0.6s ease;
}
.active{
	background-color: rgba(255, 255,255, 1);
}
.imgSlides img{
	width: 96%;
	height: 408px;
}
.fade {
  animation-name: fade;
  animation-duration: 1.5s;
}
@keyframes fade {
  from {opacity: .4} 
  to {opacity: 1}
}
.aboutContent{
	flex-basis: 50%;
	justify-content: center;
}
.aboutContent p{
	margin: 5px 15px;
	padding: 10px;
	font-size: 20px;
	text-align: justify;
}

/*............SHOWCASE..........*/
#showcase{
	width: 90%;
	margin: 10px auto;
	/*background-color: grey;*/
}
.showGrid{
	display: flex;
  	flex-wrap: wrap;
  	padding: 0 4px;
  	margin-left: 20px;
}
.column {
  flex: 32%;
  max-width: 32%;
  padding: 0 4px;
}
.column img {
  margin-top: 8px;
  vertical-align: middle;
  width: 100%;
}

/*.............SERVICES.........*/
#services{
	width: 90%;
	display: flex;
	margin: 10px auto;
}
.serviceSection{
	flex-basis: 50%;
}
.serviceSection ul{
	padding: 10px;
	width: 95%;
}
.serviceSection ul li{
	list-style: none;
	font-size: 1.5rem;
	font-weight: bold;
	padding: 25px 5px;
	width: 100%;
	text-align: center;
}
.even{
	color: darkgray;
}
.odd{
	background-color: darkgray;
	color: white;
}
.sActive{
	background-color: skyblue;
	color: white;
}
.serviceImg{
	flex-basis: 50%;
	border-left: 2px solid grey;
	height: 408px;
	position: relative;
	text-align: center;
}
.serviceSlides img{
	width: 96%;
	height: 408px;
}

/*........CONTACT.........*/
#contact{
	width: 90%;
	margin: 10px auto;
	/*background-color: #292929;*/
	background-color: lightgrey;
}
.lightContact{
	text-align: center;
	width: 80%;
	margin: 10px auto;
}
.lightContact input{
	width: 90%;
	height: 50px;
	margin: 10px auto;
	background-color: lightgrey;
	border: 2px solid darkgray;
	padding: 5px 10px;
	font-size: 16px;
	color: white;
}
.lightContact button{
	border: none;
	background-color: darkgray;
	margin: 10px 0;
	padding: 10px 20px;
	color: white;
	cursor: pointer;
	height: 50px;
	width: 60px;
}

#scrollBtn{
	font-size: 24px;
	font-weight: bold;
	/*padding: 20px;*/
	background-color: darkgray;
	border: 0;
	/*border-radius: 40px;*/
	width: 50px;
	height: 50px;
	position: fixed;
	right: 14px;
	bottom: 20px;
	cursor: pointer;
}

#scrollBtn:hover{
	background-color: lightgrey;
 }

 footer{
 	width: 100%;
 	padding: 10px 20px;
 	background-color: darkgray;
 	display: flex;
 	font-size: 24px;
 	font-weight: bold;
 }
 .fsocial{
 	flex-basis: 25%;
 	text-align: center;
 }
 .fsocial ul li{
 	list-style: none;
 	margin: 5px 0;
 	cursor: pointer;
 }
 .fsocial ul li:hover{
 	color: white;
 }
 .subscribe{
 	flex-basis: 25%;
 	text-align: center;
 }
 .subscribe form input{
 	width: 85%;
 	height: 25px;
 	margin-top: 15px;
 	background-color: darkgray;
 	border: 2px solid #292929;
 	color: white;
 	padding: 5px;
 }
 .subscribe form button{
 	background-color: #292929;
 	border: 2px solid #292929;
 	color: white;
 	cursor: pointer;
 	margin-top: 5px;
 	padding: 15px;
 }
  .subscribe form button:hover{
  	background-color: lightgrey;
  	border: 2px solid lightgrey;
	color: #292929;
}
 .developer{
 	flex-basis: 25%;
 	text-align: center;
 }
 .flogo{
 	flex-basis: 25%;
 	text-align: center;
 }
 .flogo img{
 	width: 50%;
 	cursor: pointer;
 }
.developer img{
	width: 40%;
	cursor: pointer;
	margin-top: 5px;
}
