@charset "utf-8";
/* CSS Document */

/*basic settings*/
body {
    margin: 0;
	padding-bottom:75px;
    font-family: 'Funnel Display', sans-serif;
	font-size: 14pt;
    background-color: #34566a;
    color: #fff;
    }
header{
    background-color: #34566a	;
    color: #BE883f;
    padding: 20px 20px;
    text-align: center;
	border-bottom: solid #BE883F;
	}


section {
    max-width: 801px;
    margin: 20px auto;
    padding: 0 20px;
    }
footer {
	position:fixed;
	left: 0;
	bottom:0;
	height:30px;
	width:100%;
    text-align: center;
    padding: 20px;
    background-color: #ccc;
    font-size: 0.9em;
	color: black;
	}
a {
	color: #ddffdd;
	text-decoration: none;
    }
a:hover {
    text-decoration: none;
    }
	 
h2{
  	font-family: 'Cal Sans',sans-serif;
 	letter-spacing: 2px;
  	font-style: normal;	
}

/*first page*/
.firstpage section{
	max-width: 1000px;
	font-size: 16pt;
	margin:20px auto;
}

p.pLeft{
    position: relative;
    left: -125px;
	margin: 50px auto;
}

p.pRight{
	position: relative;
	left:125px;
}

p.pCentre{
    font-family: 'Cal Sans',sans-serif;
    text-align: center;
    font-size: 20pt;
    font-weight: 500;
    color: #fff;
    opacity: 0%;
    /*animation*/
		/* Chrome, Safari*/
    -webkit-animation-name: simpleFade;
    -webkit-animation-duration: 1.5s;
    -webkit-animation-timing-function: linear;
    -webkit-animation-delay: 11s;
    -webkit-animation-direction: normal;
    -webkit-animation-play-state: running;
    -webkit-animation-fill-mode: forwards;
    /* Mozilla */	
    -moz-animation-name: simpleFade;
    -moz-animation-duration: 1.5s;
    -moz-animation-timing-function: linear;
    -moz-animation-delay: 11s;
    -moz-animation-iteration-count: 1;
    -moz-animation-direction: normal;
    -moz-animation-play-state: running;
    -moz-animation-fill-mode: forwards;
    /* Standard syntax */
    animation-name: simpleFade;
    animation-duration: 1.5s;
    animation-timing-function: linear;
    animation-delay: 11s;
    animation-iteration-count: 1;
    animation-direction: normal;
    animation-play-state: running;
    animation-fill-mode: forwards;
}

/* Chrome, Safari */
@-webkit-keyframes simpleFade {
	0% {
		opacity: 0%;
		}
	100%{
		opacity: 100%;
		}
}

/* Firefox */
@-moz-keyframes simpleFade {
	0% {
		opacity: 0%;
		}
	100%{
		opacity: 100%;
		}
}

/* Standard syntax */
@keyframes simpleFade {
	0% {
		opacity: 0%;
		}
	100%{
		opacity: 100%;
		}
}


#map {
  height: 100%;
}

/*menubar*/
.headermenu{
	display: grid;
	grid-template-columns: auto auto auto;
	gap: 0px;
	max-width:800px;
	font-family: 'Cal Sans',sans-serif;
	margin: 10px auto;
	
}
.grid-item{
	text-align: center;
	padding: 10px;
	margin: 0 0px;
	background: #497A96;
	color: #eee;
}
.grid-item:hover{
	background: #3A5040;
	color: #be883f;
	text-decoration:underline;
	border:#be883f medium;
}


button.callBooking{
    display: block;
    border-radius: 8px;
    font-family: 'Cal Sans',sans-serif;
    font-size: 14pt;
    padding: 10px;
    margin: 10px auto;
    width: 75%;
    background-color: #3A5040;
    color: #be883f;
}


#about img{
	display:inline-table;
	max-width: 150px;
}
#about p:first-of-type{
	max-width: 600px;
}
#about p{
	display:inline-table;
	vertical-align: top;
	margin-left: 25px;
	margin-top:0px;
	margin-bottom: 10px;
	max-width: 800px;
}

#doclines table{
	display:block;
	width:80%;
	margin:auto;
}
#doclines table td {
	width:50%;
}
#doclines table td a{
	width:50%;
	margin:auto;
}

#doclines table td img{
	padding:15px;
	display: block;
	width:50%;
	margin:auto;
}
#doclines table td img:hover{
	background: radial-gradient(at 0% 50%,#ffffff 30%,#be883f);
	}
