html, body {
	margin: 0;
	padding: 0;
	font-family: Arial, Helvetica Neue, Helvetica, sans-serif;
	position: relative;
	scroll-behavior: smooth;
	color: #000;
}

/*menu */

.logo {
	display: inline-block;
	width: 200px;
	height: 100%;
	padding: 3px 0 0 10px;
	
}

header {
	font-family: "Times New Roman", Times, serif;
	position:fixed;
	width: 100%;
	height: 30px;
	background-color: #363B3D;
	display: flex;
	z-index: 3;
}

ul {
	padding: 0;
	list-style: none;
	margin: -3px;
}

li {
	font-weight: bold;
	font-size: 14px;
	color: #ffffff;
}

li a {
	display: block;
	padding: 20px 20px;
	text-decoration: none;
	text-align: center;
	color: #ffffff;
}

li a:hover:not(.active) {
	background-color: #729787;
}


.active {
	font-size: 16px;
	background-color: #A4C3B2;
}

.hamburger-menu {
	z-index: 3;
	width: 100%;
}

.menu {
	clear: both;
	max-height: 0;
	overflow: hidden;
	transition: max-height .2s ease-out;
	background-color: #363B3D;
}

a.menu-text {font-size: 16px;}
a.menu-text:visited { color: #fffff !important;}
a.menu-text:hover { color: #ffffff !important;}
a.menu-text:active { color: #ffffff !important;}

.menu-btn:hover {
	background-color: #729787;
}
	
.menu-btn:checked ~ .menu {
	max-height: 240px;
}
	
.menu-btn {
	display: none;
}

/*menu icon*/

.menu-icon {
	cursor: pointer;
	display: inline-block;
	float: right;
	padding: 13px 15px;
	position: relative;
	user-select: none;
}
	
.menu-icon .navicon {
	background: #fff;
	display: block;
	height: 3px;
	position: relative;
	transition: background .2s ease-out;
	width: 20px;
	border-radius: 2px;
}
	
.menu-icon .navicon:before, .menu-icon .navicon:after {
	background: #fff;
	content: '';
	display: block;
	height: 100%;
	position: absolute;
	transition: all .2s ease-out;
	width: 100%;
	border-radius: 2px;
}
	
.menu-icon .navicon:before {
	top: 6px;
}
	
.menu-icon .navicon:after {
	top: -6px;
}
	
.menu-btn:checked ~ .menu-icon .navicon {
	background: transparent;
}
	
.menu-btn:checked ~ .menu-icon .navicon:before {
	transform: rotate(-45deg);
}
	
.menu-btn:checked ~ .menu-icon .navicon:after {
	transform: rotate(45deg);
}
	
.menu-btn:checked ~ .menu-icon:not(.steps) .navicon:before,
.menu-btn:checked ~ .menu-icon:not(.steps) .navicon:after {
  	top: 0;
}

/* end menu */

.container {
	width: 100%;
	height: 100%;
	padding-top: 30px;
}

.banner {
	width: 100%;
	height: 200px;
	position: relative;
}

.front-banner {
	width: 100%;
	height: 200px;
	clip-path: polygon(0 0, 100% 0%, 100% 175px, 0 100%);
	position: absolute;
	background-image: url("images/banner.jpg");
	background-position: center;
	background-repeat: no-repeat; 
	background-size: cover;
}

.back-banner {
	width: 100%;
	height: 200px;
	background-color: #729787;
	clip-path: polygon(0 0, 100% 0%, 100% 100%, 0 175px);
	z-index: -1;
	position: absolute;
}

.main-content {
	width: 100%;
	height: 350px;
	position: relative;
	text-align: center;
	margin-top: -30px;
	padding-top: 40px;
}

.call {
	-webkit-appearance: button;
    -moz-appearance: button;
    appearance: button;
	display: block;
	background-color: #729787;
	width: 80%;
	height: 35px;
	border: none;
	margin: 30px auto;
	border-radius: 6px;
	font-family: "Times New Roman", Times, serif;
	color: #fff;
	font-size: 22px;
}

.call:hover {
 	background-color: white;
 	border: 2px solid #729787;
 	color: #729787;
}

.more-content {
	Width: 100%;
	Height: 360px;
	display: flex;
	flex-direction: column;
}

.more-section {
	display:flex;
	width: 100%;
	height: 90px;
	margin: auto;
}

	.more-section:nth-of-type(1) { order: 1; }
	.more-section:nth-of-type(2) { order: 2; }
	.more-section:nth-of-type(3) { order: 3; }

.more-image {
	display: block;
	width: 90px;
	height: 100%; 
	margin: 0 20px 0 20px;
	overflow: hidden;
	text-align: center;
	object-fit: cover;
}

.more-text {
	width: 60%;
	height: 100%;
}

.line {
	border: 3px solid #729787;
	background-color: #729787;
	height: 0px;
	width: 30px;
	border-radius: 3px 3px 3px 3px;
	margin: 10px 0 0 0;
}

.time-content {
	width: 100%;
	height: 300px;
	background-color: #363B3D;
	padding: 20px 0 20px 0;
	margin-top: 30px;
}

.time-width-constraint {
	width: 100%;
	height: 100%;
	display: grid;
	grid-template-columns: repeat(6, 1fr);
	grid-template-rows: repeat(3, 1fr);
	grid-column-gap: 0px;
	grid-row-gap: 0px;

}

.time-background {
	position: absolute;
	width:100%;
	height:340px;
	background-image: url("images/opening-times.jpg");
	opacity: 0.5;
	background-position: center;
	background-repeat: no-repeat; 
	background-size: cover;
	margin: -20px 0 20px 0;
}

.time-item {
	background-color: #729787;
	width: 95px;
	height: 95px;
	border-radius: 50%;
	margin: auto;
	text-align: center;
	grid-column-start: auto;
	grid-column-end: span 2;
	color: #fff;
	font-size: 10px;
	z-index: 2;
}

.time-placeholder {
	grid-column-start: 1;
	grid-column-end: 1;
}
.times {
	padding: 0;
	margin: 0;
}

.closed {
	background-color: #9B9D9E;
}

.price-content {
	position: relative;
	height: 500px;
	width: 100%;
	magrin-top: -30px;
	padding-top: 30px;
}

.price-table {
	display: flex;
	flex-direction: column;
	margin: auto;
}

table {
	font-size: 12px;
	text-align: left;
	width: 90%;
	margin: auto;
}

th {
	font-size: 14px;
	padding: 20px 0 0 0;
	font-weight: bold;
}

.padding {padding-top: 20px;}

.vanaf {
	position: relative;
}

.vanaf::before {
	content: "va. ";
	position: absolute;
	left: -20px;
}

footer {
	width: 100%;
	height: 775px;
	position: relative;
	color: #fff;
	font-size: 10px;
}

.front-footer {
	width: 100%;
	height: 775px;
	background-color: #363B3D;
	clip-path: polygon(0 25px, 100% 0%, 100% 100%, 0 100%);
	position: absolute;
}

.footer-container {
	max-width: 1200px;
	display:flex;
	flex-direction: column;
	margin: auto;
}

.map {
	width: 80%;
	height: 350px;
	margin: auto;
}

iframe {
	border: 0;
}

.back-footer {
	width: 100%;
	height: 775px;
	background-color: #729787;
	clip-path: polygon(0 0, 100% 25px, 100% 100%, 0 100%);
	z-index: -1;
	position: absolute;
}

.footer-content {
	height: 300px;
	margin-top: 60px;
	color: #fff;
	padding-left: 20px;
}

.open-info {
	margin-left: 20px;
}


/* font styles */

h1	{
	font-family: "Times New Roman", Times, serif;
	font-size: 22px;
	color: #000;
	text-align: center;
	margin-block-end: 0;
}

h2 {
	font-family: "Times New Roman", Times, serif;
	font-size: 15px;
	font-weight: bold;
	margin: 0;
}

a {
	font-family: "Times New Roman", Times, serif;
	font-size: 15px;
	font-weight: bold;
	margin: 0;
}

a { text-decoration: none; color:#000; } /* Globally */

/* Each state */

a.more:visited { text-decoration: none; color:#000; }
a.more:hover { text-decoration: none; color:#555555; }
a.more:focus { text-decoration: none; color:#555555; }
a.more:hover, a:active { text-decoration: none; color:#000 }

h3 {
	font-family: "Times New Roman", Times, serif;
	font-size: 32px;
	color: #fff;
	margin: 20px auto 0 auto;
	text-transform: uppercase;
}

p {
	font-size: 12px;
}
	
/*large screen*/
@media ( min-width :500px) {
	
	header {
		height:	50px;
	}
		
	.menu-icon {
		padding: 22px 20px;
	}
	
	.menu-text: {
		font-size: 15px;
	}
	
	.banner {
		height: 90vh;
	}

	.front-banner {
		height: 90vh;
		clip-path: polygon(0 0, 100% 0%, 100% 85vh, 0 100%);
	}
	
	.back-banner {
		height: 90vh;
		clip-path: polygon(0 0, 100% 0%, 100% 100%, 0 85vh);
	}
	
	.main-content {
		height: 390px;
	}
	
	.call {
		display: none;
	}
	
 	.more-content {
		height: 500px;
	}
	
	.more-section {
		height: 140px;
	}
	
	.more-section:nth-of-type(1) { order: 2; }
	.more-section:nth-of-type(2) { order: 3; }
	.more-section:nth-of-type(3) { order: 1; }

	
	.more-image {
		width: 140px;
	}
	
	.mobile-only {
		display: none;	
	}
	
	.time-content {
		width: 100%;
		height: 350px;
		background-color: #363B3D;
		padding: 20px 0 20px 0;
		margin-top: 30px;
	}
	
	.time-background {
		height:390px;
		margin: -20px 0 0px 0;
	}
	
	.times {
		font-size: 14px;

	}
	
	.time-item {
		width: 110px;
		height: 110px;
	}
	
	.price-content {
		position: relative;
		height: 580px;
	}
	/* font styles */
	
	h1	{
		font-size: 30px;
	}
	
	h2	{
		font-size: 24px;
	}
	
	h3 {
		font-size: 36px;
		margin: 25px auto 0px auto;
	}
	
	a {
		font-size: 24px;
		
	}
	p {
		font-size: 16px;
	}
	
	table {
		font-size: 16px;
		text-align: left;
		max-width: 400px;
		margin: auto;	
	}
	
	.footer-content {
		padding-left: 60px;
	}
	
	.map {
		margin-top: 60px;
	}
	
	footer {
		height: 800px;
	}
	
	.front-footer {
		height: 800px;
	clip-path: polygon(0 30px, 100% 0%, 100% 100%, 0 100%);

	}
	
	.back-footer {
		height: 800px;
			clip-path: polygon(0 0, 100% 30px, 100% 100%, 0 100%);
		
	}
}

/*tablet screen*/
@media ( min-width :800px) {
	
	.logo {
		padding: 3px 0 0 80px;
	}
	
	.menu-btn, .menu-icon {
		display: none;
	}
	
	nav {
		display: inline-block;
		height: 100%;
		width: 100%;
		float: right;
	}
	
	.menu {
		max-height: none;

	}
	
	a.menu-text {font-size: 18px; color: white;}
	
	
	ul {
		margin: 0;
		float: right;	
		height: 50px;
	}
	
	li {
		float: left;
		width: 120px;
	}
		
	.more-content {
		Height: 100%;
		flex-direction: row;
		margin-top: 40px;
		max-width: 1200px;
		margin: auto;
	}
	
	.more-section {
		flex-direction: column;
		width: 30%;
		max-width: 350px;
		height: 100%;
		margin: auto;
		justify-content: space-evenly;
	}
	
	.more-image {
		position: relative;
		width: 100%;
		height: 360px;
		margin: 0;
		overflow: hidden;
		object-fit: cover;
	}
	
	.more-text {
		padding-top: 20px;
		width: 100%;
		height: 130px;
	}
	
	.time-content {
		height:440px;
	}
	
	.time-background {
		height:480px;
	}
	
	.time-width-constraint {
		grid-template-columns: repeat(7, 1fr);
		grid-template-rows: repeat(1, 1fr);
		width: 95%;
		max-width: 1200px;
		margin: auto;
	}
	
	.time-item {
		grid-column-end: span 1;
	}

	.time-placeholder {
		display: none;
		grid-column-start: unset;
		grid-column-end: unset;
	}
	
	.price-table {
		display: flex;
		flex-direction: row;
		max-width: 1000px;
	}

	.price-content {
		position: relative;
		height: 360px;
	}
	
	.footer-content {
		width: 40%;
	}
	
	.front-footer {
		height: 500px;
	}
	
	footer {
		height: 500px;
	}
	
	.footer-container {
		max-width: 1200px;
		flex-direction: row;
	}
	
	.back-footer {
		height: 460px;
	}
	
	.open-info {
		width: 100%;
	}
	
	.map {
		width: 60%;
		height: 340px;
		padding-right:40px;
	}
	
	iframe {
		margin: auto;
	}
}
