:root {
	--pale-blue: #9fb7d1;
	--light-blue: #96adb5; /*steel-blue*/
	--mid-blue: #5d88bb;
	--mid-blue-rgba: rgba(93, 136, 187,.75);
	--dark-blue: #2f3e4f; /*neda*/
	
	--electric-blue: #3ab1b7;
	--electric-blue-dark: #106569;
	--electric-blue-light: #83f1f6;
	
	--light-silver: #d6d6d6;
	--mid-silver: #a1a8b2;
	--cool-grey: #dadada;
	
  --off-white: #f9f2ea;
  
  
}

/* BLUE GRAD 
background: radial-gradient(circle at 0% 120%, #106569, #11676b, #146b6f, #187277, #1d7b80, #22858a, #288f94, #2d999f, #32a3a8, #36aab0, #39afb5, #3ab1b7);
*/


/*
    font-family: 'Kaushan Script', cursive;
    font-family: 'Rubik', sans-serif;
*/

body,html {
	width: 100%;
	padding: 0;
	margin: 0;
	font-family: 'Rubik', sans-serif;
	scrollbar-width: thin;
}



.bg-silver {
	background: var(--light-silver);;
}

/*************** TOPROW ***************/
.toprow {
	width: 100%;
	display: flex;
	flex: 1;
	position: relative;
	background: rgba(255,255,255,0.7);
	min-height: 40px;
}
.toprow .container {
	display: flex;
	flex: 1;
	align-items: center;
	justify-content: center;
}
.toprow .nav {
	flex: 1;
	text-align: center;
	display: flex;
}
.toprow .nav .item {
	flex: 1;
	text-transform: uppercase;
	letter-spacing: 1px;
	position: relative;
	padding: 8px 0;
}
.toprow .nav .item a {
	color: var(--mid-blue);
	text-decoration: none;
}
.toprow .nav .item a:hover {
	color: var(--light-blue);
}

.toprow .nav-toggle {
	display: none;
	font-size: 32px;
}

.mob-nav {
	display: none;
	position: fixed;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: var(--mid-blue);
	z-index: 50;
	padding: 30px 50px;
}

.nav-flex {
	display: flex !important;
	flex-direction: column;
}


.mob-nav .nav-toggle {
	position: absolute;
	top: -7px;
	right: 15px;
	font-size: 32px;
}

.mob-nav .item a {
	color: #fff;
}

.toprow .dt-nav {
	width: 100%;
	display: flex;
}


	/*************** nav dropdown ***************/
	.toprow .nav .item .dropdown-content {
	  display: none;
	  position: absolute;
	  background-color: var(--mid-blue);
	  min-width: 200px;
	  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
	  z-index: 1;
	  top: 40px;
	  left: 50%;
	  width: auto;
	  transform: translate(-50%,0);
	}
	
	.toprow .nav .item:hover .dropdown-content {
	  display: block;
	  -webkit-animation: dropdownfadeIn 1s;
	  animation: dropdownfadeIn 1s;
	}
	
	.toprow .nav .dropdown-content span {
		
		display: block;
	}
	
	.toprow .nav .dropdown-content span a {
		color: #fff;
		padding: 12px 16px;
		display: block;
		font-size: 14px;
		white-space: nowrap;
	}
	
	@keyframes dropdownfadeIn {
    	from { opacity: 0; }
    	to { opacity: 1; }
	}		
	
	/*************** nav dropdown ***************/


.toprow .logo {
	flex: 0 0 200px;
	text-align: center;
	color: var(--dark-blue);
	font-family: 'Kaushan Script', cursive;
	font-size: 40px;
}




/*************** END TOPROW ***************/

.transition {
	transition: .35s all ease-in-out;
}


/*************** HERO ***************/

.hero {
	background-image: url('/assets/images/l2l-hero.jpg');
	background-size: cover;
	height: 500px;
	background-position: center;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
}

.hero.small {
	background-image: none;
	background: var(--light-blue);
	height: 150px;
}

.hero .h1 {
	background: rgba(255,255,255,.75);
	width: auto;
	height: auto;
	display: flex;
	align-items: center;
	justify-content: center;
}

.hero .button {
	background: var(--mid-blue-rgba);
	color:  #fff;
	text-transform: uppercase;
	font-size: 24px;
	/*transition: all 0.35s ease-in-out;*/
}

.hero .h1 {
	background: var(--mid-blue-rgba);
	padding: 10px;
	color:  #fff;
	text-transform: uppercase;
	font-size: 24px;
}

.hero .h1 h1 {
	margin: 0;
}

.hero .button a {
	color:  #fff;
	text-decoration: none;
	display: block;
	
}

.hero .button:hover {
	-webkit-animation: heartBeat 1s;
    animation: heartBeat 1s;
}


/*************** END HERO ***************/


/*************** HOME FLEX LAYOUT ***************/

.flexed-row {
	align-items: center;
	display: flex;
	flex-direction: row;
	font-weight: 300;
	justify-content: space-between;
	width: 100%;
	overflow: hidden;
}

.flexed-row .alternating-text {
	background: var(--light-silver);
	flex-grow: 1;
	color: var(--dark-blue);
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: left;
	flex-direction: column;
	letter-spacing: 1px;
	font-size: 18px;
}

.flexed-row p {
	font-size: 18px;
}

/*************** HOME FLEX LAYOUT ***************/



/*************** FOOTER ***************/
.footer {
	width: 100%;
	background: var(--pale-blue);
	color: #333;
}
.footer-flex {
	display: flex;
	flex-direction: row;
}
.footer .block {
	justify-content: center;
	flex-grow: 1;
	text-align: left;
}


footer {
  background-color: var(--pale-blue);
  padding: 50px 25px;
  width: 100%;
}

footer a {
	color: #222;
	
}
footer a:hover {
	color: var(--dark-blue);
	text-decoration: none;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  flex-direction: column;
  width: 100%;
}

.footer-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.footer-block {
  flex: 1 1 auto;
  text-align: center;
}

.page-block {
	flex-grow: 1;
  display: flex;
  width: 100%;
  flex-direction: column;
}

.page-list {
  display: flex;
  justify-content: center;
  list-style: none;
  padding: 0;
}

.page-list li {
  margin: 0 10px;
}




/*************** END FOOTER ***************/



/*************** FAQS ***************/

.accordion {
}

.accordion .answer {
  display: none;
}

.accordion .question {
  cursor: pointer !important;
  margin-bottom: 10px;
}

.accordion .question h3 {
  margin: 0;
}

.accordion .question.active {
  background-color: var(--pale-blue);
}

/*************** END FAQS ***************/




/*************** PDF BUTTONS ***************/

.form-dl {
	background: var(--dark-blue);
	border-radius: 5px;
	overflow: hidden;
	cursor: pointer;
	margin-top: 25px;
	
}
.form-dl a, .form-dl i {
	color: #fff;
	text-decoration: none;
}

.form-dl:hover {
	background: var(--mid-blue);
}

/*************** END PDF BUTTONS ***************/





/*************** COLOURED ROWS ***************/

.row-dblue {
  background: var(--dark-blue);
  color: var(--light-blue);
}

.row-lblue {
  background: var(--light-blue);
  color: #fff;
}


/*************** COLOURED ROWS ***************/



.side-image-row {
  align-items: center;
  display: flex;
  flex-direction: row;
  font-weight: 300;
  justify-content: space-between;
  width: 100%;
}

.side-image-row .side-image {
  max-height: 35em;
}

.flexed-row .image {
	max-height: 50em;
}

.flexed-row .image img {
	width: 100%;
}

.submit-btn {
	padding: 10px 25px;
	background: var(--mid-blue);
	color: #fff;
	border: 0;
	margin-top: 15px;
}
.submit-btn:hover {
	background: var(--mid-silver);
	color: var(--dark-blue);
}

.form-field {
	background: none;
	color: #fff;
	padding: 8px 10px;
	margin-bottom: 12px;
	border: 0;
	width: 100%;
	border: 2px solid var(--off-white);
	cursor: pointer;
}
.form-field:focus {
	outline: 0;
	/*border: 2px solid var(--mid-blue);*/
	box-shadow: 0 0 0px 5px var(--mid-blue-rgba);
}


/* CUSTOM PADDING */

.px-6, .pl-6 {
	padding-left: 4.5rem;
}
.py-6, pt-6 {
	padding-top: 4.5rem;
}
.pr-6, .px-6 {
	padding-right: 4.5rem;
}
.pb-6, .py-6 {
	padding-bottom: 4.5rem;
}

/* CUSTOM PADDING */


.hours span {
	width: 100%;
	display: block;
	margin-bottom: 10px;
	font-size: 22px;
	margin-top: 10px;
}
.contact-info {
	margin-bottom: 25px;
}
.contact-info span{
	font-size: 22px;
	width: 100%;
	display: block;
	margin-bottom: 10px;
}



table.pricelist {
  border: none;
  border-collapse: collapse;
  margin: 0;
  padding: 0;
  table-layout: fixed;
  width: 100%;
}

table.pricelist tr {
  background-color: #fff;
  border: none;
  color: var(--dark-blue);
  padding: .35em;
}

table.pricelist th,
table.pricelist td {
  padding: 1em;
  text-align: center;
  border: 5px solid #fff;
}


table.pricelist tr {
  background-color: #fff;
  border: none;
  color: var(--dark-blue);
  padding: .35em;
}


@media screen and (min-width: 769px) {
	table.pricelist td:first-child , table.pricelist th:first-child {
		text-align: left;
		width: 60%;
	}
}

table.pricelist th {
	background-color: var(--cool-grey);
	/*font-family: 'CeraProMedium', 'Quicksand', sans-serif;*/
}

table.pricelist td.full-body {
	background-color: var(--cool-grey);
	text-align: left;
}

table.pricelist td.full-body p {
	margin: 0;
}

table.pricelist td.full-body p:first-child {
	/*font-family: 'CeraProMedium', 'Quicksand', sans-serif;*/
}

@media screen and (max-width: 768px) {
  table.pricelist thead {
    border: none;
    clip: rect(0 0 0 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
  }
  
  table.pricelist tr {
    border-bottom: 5px solid var(--cool-grey);
    display: block;
    padding: 0;
  }
  
  table.pricelist td {
  	border: none;
    border-bottom: 1px solid var(--cool-grey);
    display: block;
    padding: .25em 0;
    text-align: right;
  }
  
  table.pricelist td p {
  	text-align: left;
  }
  
  table.pricelist td.blank {
  	display: none;
  }
  
  table.pricelist td.full-body {
  	padding: .25em .5em;
  }
  
  table.pricelist td::before {
    content: attr(data-label);
    float: left;
    /*font-weight: 500;*/
  }
}


.bookings-wrap, .contact-wrap {
	flex-direction: row;
	display: flex;
	width: 100%;
}





/* COMP */

#compModal .modal-content {
	background: url('/assets/images/gradient-bg.png');
	background-size: cover;
	background-position: center;
}

#compModal .modal-dialog {
	max-width: 650px !important;
}

#compModal .comp-submit {
	background: #212529;
	color: #fff;
	padding: 5px 10px;
	border: 0;
	border-radius: 3px;
}

/* END COMP */


.reviews-btn {
	background: var(--dark-blue) !important;
}