﻿* {
	margin: 0;
	padding: 0;
}
@font-face {
    font-family: Roboto;
	src: url(fonts/Roboto-Regular.ttf);
}	
	
@font-face {
    font-family: RobotoMedium;
	src: url(fonts/Roboto-Medium.ttf);
}
@font-face {
    font-family: RobotoBold;
	src: url(fonts/Roboto-Bold.ttf);
}

:root {
	--menu-count:6;
}
body {
	background-color:darkcyan;
	background-image: url(sunsetnavarre.jpg);
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center center;
	background-attachment: fixed;
}
.header-main{
  width: 100%;
  padding: 0 60px;
  height: 80px;
  background-color: dodgerblue;
  display: flex;
  justify-content: space-between;
  top:0;
  z-index:100;
  position:fixed;
  }

.header-main nav {
	display: flex;
}  
.header-main ul{
	height: 100%;
	padding-left: 40px;
	list-style: none;
	display: flex;
	align-self: center;
}

.header-main ul li{
	position: relative;
}
.header-main ul li a{
	display: block;
	padding: 0 10px;
	height: 100%;
	line-height: 60px;
	font: size 1rem;
	font-family: RobotoMedium;
	color:black;
	background-color:dodgerblue;
	text-transform:uppercase;
	cursor:pointer;
	transition: all ease-in-out 100ms;
	}
.header-main ul li a:hover {
	background-color: #2a2a2a;
	color: dodgerblue;
	
}
/* drop down styling */

.header-main ul li ul {
	visibility:hidden;
	display:none;
	position:absolute;
	left: -40px;
	transition: all ease-in-out 100ms;
	
}

.header-main ul li ul li a {
   white-space: nowrap;

}	  
ul li:hover>ul{
	visibility: visible;
	opacity: 1;
	display: block;
}

.hero{
	box-sizing: border-box;
	height: 400px;
	width: 600px;
	background-image: linear-gradient(rgba(0,0,00.5)), url(sunsetnavarre.jpg);
	background-size: 25%;
	background-position: center;
	display: flex;
	flex-direction: column;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	color: #fff;
	font-size: 25px;
}
   h1{
	font-size: 30px;
	font-weight: 500;
	margin-bottom: 20px;
   }
   .timebox{
	/*width: calc(600px / 3);*/
    display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: 30px;
	margin-top: 100px;

   }
   .time{
	text-align: center;
   }
   .time h2{
	font-size: 24px;
	font-weight: 100;

   }

 .neo{
	box-sizing: border-box;
	height: 400px;
	width: 600px;
	background-image: linear-gradient(rgb(28, 105, 28)), url(sunsetnavarre.jpg);
	background-size: 25%;
	background-position: center;
	display: flex;
	flex-direction: column;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	color: #fff;
	font-size: 20px;
}
   h1{
	font-size: 30px;
	font-weight: 500;
	margin-bottom: 20px;
   }
   .timebox2{
	/* width: calc(600px / 3); */
    display: flex;
	justify-content: center;
	flex-wrap: wrap;
	margin-top: 100px;
	gap: 30px;
	

   }
   .time2{
	text-align: center;
   }
   .time2 h2{
	font-size: 24px;
	font-weight: 100;

   }
  .reo{
	box-sizing: border-box;
	height: 400px;
	width: 600px;
	background-image: linear-gradient(rgb(27, 8, 80)), url(sunsetnavarre.jpg);
	background-size: 25%;
	background-position: center;
	display: flex;
	flex-direction: column;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	color: #fff;
	font-size: 20px;
}
   h1{
	font-size: 30px;
	font-weight: 500;
	margin-bottom: 20px;
   }
   .timebox3{
	/* width: calc(600px / 3); */
    display: flex;
	justify-content: center;
	flex-wrap: wrap;
	margin-top: 100px;
	gap: 30px;
	

   }
   .time3{
	text-align: center;
   }
   .time3 h2{
	font-size: 24px;
	font-weight: 100;

   }

/* drop down styling end */

