/*****************************************************************************************

Default Values :

Font Family             : Raleway

Greenish Blue           : #ffd143       (Buttons, Icons, Links, Lines & Backgrounds)
Brown                   : #4c3201       (Link)
Steel Gray              : #41464b       (Headings)
Blue Bayoux             : #64707b       (Paragraphs)
White                   : #fff          (White with Black background)
Black                   : #000          (Black with White background)

******************************************************************************************/

/* ------------------------------------------------------ */
/* html5doctor.com Reset Stylesheet                       */
/* v1.6.1                                                 */
/* Last Updated: 2010-09-17                               */
/* Author: Richard Clark - http://richclarkdesign.com     */
/* Twitter: @rich_clark                                   */
/* ------------------------------------------------------ */
@import url('https://fonts.googleapis.com/css?family=Roboto:300,300i,400,400i,500,500i,700');

html, body, div, span, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, abbr, address, cite, code, del, dfn, em, img, ins, kbd, q, samp, small, strong, sub, sup, var, b, i, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, figcaption, figure, footer, header, hgroup, menu, nav, section, summary, time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	outline: 0;
	font-size: 100%;
	vertical-align: baseline;
	background: transparent;
}
body {
	line-height: 1;
	font-family: 'Roboto', sans-serif;
	font-size: 12px;
	font-weight: normal;
}
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
	display: block;
}
nav ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after, q:before, q:after {
	content: '';
	content: none;
}
a {
	margin: 0;
	padding: 0;
	font-size: 100%;
	vertical-align: baseline;
	background: transparent;
}
/* change colours to suit your needs */
ins {
	background-color: #ff9;
	color: #000;
	text-decoration: none;
}
/* change colours to suit your needs */
mark {
	background-color: #ff9;
	color: #000;
	font-style: italic;
	font-weight: bold;
}
del {
	text-decoration: line-through;
}
abbr[title], dfn[title] {
	border-bottom: 1px dotted;
	cursor: help;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
/* change border colour to suit your needs */
hr {
	display: block;
	height: 1px;
	border: 0;
	border-top: 1px solid #cccccc;
	margin: 1em 0;
	padding: 0;
}
input, select {
	vertical-align: middle;
}
ul,li{
    list-style: none;
}

/* -------------------------------------------------- */
/* BASIC SETUP */
/* -------------------------------------------------- */

*{
    margin: 0;
    padding: 0; 
    box-sizing: border-box;
}
html{
    background-color:#fff;
    color:#555555;
    font-family: 'Roboto', sans-serif;
    font-size: 62.5%; /* Base font size 10px */
    font-weight: 400;
    text-rendering: optimizeLegibility;
}

/* -------------------------------------------------- */
/* REUSABLE COMPONENT */
/* -------------------------------------------------- */
.row{
    max-width: 1366px;
    margin: 0 auto;
    width: 100%;
}
.clearfix:after{
    display: block;
    content:"";
    clear: both;
    overflow: hidden;
    height: 0;
}

/* -------------------------------------------------- */
/* HEADER */
/* -------------------------------------------------- */

.header{
    width: 100%;
}

.header_content{ 
    padding:1rem 0;
    border-bottom: 1px solid #ccc;
    box-shadow: 0 0 1rem #ccc;
}
.header_content_items{
    display: flex;
}
.header_content-logo{
    display: flex;
    justify-content:flex-start;
}
.header_content-logo--text{
    background:url(../img/logo.png) 0 0 no-repeat;
    width: 250px;
    height: 80px;
    display: inline-block;
    text-indent: -9999px;
}
.header_content_social{
    display: flex;
    justify-content:flex-end;
    width: 100%;
}

.header_content_social-list li{
    display: inline-block;
    padding: 1.8rem .8rem 0 0;
}

.header_content_social-list li a{
    display: table;
    font-size: 2rem;
    padding-top: 1rem;
    color: #fff;
    background: #0099a7;
    border-radius:50%;
    -webkit-border-radius:50%;
    -moz-border-radius:50%;
    -ms-border-radius:50%;
    -o-border-radius:50%;
    text-align: center;
    width:40px;
    height: 40px;
    transition: all .2s ease ;
    -webkit-transition: all .2s ease ;
    -moz-transition: all .2s ease ;
    -ms-transition: all .2s ease ;
    -o-transition: all .2s ease ;
}
.header_content_social-list li a:hover{
    background: #f8bc02;
    color: #333;
}

.header_navbar{
    background: #03686c;
}
.header_navbar-content{
    display: flex;
}
.header_navbar-content--list{
    display: flex;
    width: 100%;
}
.header_navbar-content--list ul li{
    display: inline-block;
}
.header_navbar-content--list ul li a{
    display: inline-block;
    padding: 1rem 1.3rem;
    text-decoration: none;
    color: #fff;
    border-right:1px solid #fff;
    text-align:center;
    font-size: 1.6rem;
    transition: all .5s ease;
    -webkit-transition: all .5s ease;
    -moz-transition: all .5s ease;
    -ms-transition: all .5s ease;
    -o-transition: all .5s ease;
    position: relative;
}
.header_navbar-content--list ul li a:hover{
    color: #333;
    background: #f8bc02;
    width: 100%;
}
.active{
    background: #f8bc02;
    color:#333!important;
}
.header_navbar-content--contact-anytime{
    display: flex;
    justify-content: flex-end;
    width: 48%;
    color: #f8bc02;
    padding: .8rem 0;
    font-size: 2rem;
    font-weight: 500;
}
.header_navbar-content--contact-anytime span{
    color:#fff;
    font-size: 1.4rem;
    padding-top: .3rem;
}
.hero_banner-content{
    position: relative;
}
.hero_banner-bg{
    /*background: #333 url(../img/hero-bg.jpg) 0 0 no-repeat;*/
    background: #fff;
    background-size: cover;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    width: 100%;
    background-position: center;
    height: 100%;
    min-height: 63rem;
}

.cover {
	background-image: url("../img/overlay.png");
	background-color: rgba(0, 0, 0, 0);
	background-repeat: repeat;
	background-attachment: scroll;
	background-clip: border-box;
	background-origin: padding-box;
	background-size: auto auto;
	position: absolute;
	right: 0px;
	left: 0px;
	top: 0px;
	width: 100%;
	height: 100%;
	z-index: 1;
	opacity: .2;
}

.hero_banner-content--form{
    background: rgb(216, 216, 216);
    position: absolute;
    z-index: 5;
    padding: 2.5rem;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    margin: 4rem 0 0 0;
    display: flex;
    flex-direction: column;
    box-shadow: .8rem .8rem 1.5rem #999;
    border:1px solid #ccc;
}
.booking-form{
    margin: 0 auto;
}
.hero_banner-content--form h2{
    font-size: 2.5rem;
    font-weight: 500;
    color: #333;
    margin-bottom: 2rem;
}
.hero_banner-content--form input[type="text"], .hero_banner-content--form input[type="date"], .hero_banner-content--form select{
    width:30rem;
    padding: .8rem;
    border: 2px solid #ccc;
    background: #fff;
    margin-bottom: 1.5rem;
    color: #333;
    font-size: 1.4rem;
    border-radius: .5rem;
    -webkit-border-radius: .5rem;
    -moz-border-radius: .5rem;
    -ms-border-radius: .5rem;
    -o-border-radius: .5rem;
}
.booking-form ul li label{
    padding-bottom: .5rem;
    display: inline-block;
    font-size: 1.7rem;
    color:#000;
}
.booking-btn{
    padding: 1.4rem 3.8rem;
    background: #0099a7;
    display: inline-block;
    text-decoration: none;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
   /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#00fffa+0,0099a7+100 */
    background: #00fffa; /* Old browsers */
    background: -moz-linear-gradient(top,  #00fffa 0%, #0099a7 100%); /* FF3.6-15 */
    background: -webkit-linear-gradient(top,  #00fffa 0%,#0099a7 100%); /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to bottom,  #00fffa 0%,#0099a7 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00fffa', endColorstr='#0099a7',GradientType=0 ); /* IE6-9 */
    border:2px solid #fff;
    box-shadow: 0 .5rem 2rem #333;
}
.booking-btn:after{
    content: "";
}
.booking-btn--text{
    color: #000;
    font-size: 2rem;
}
.footer{
    background: #222;
    padding: 2.5rem 0;
    border-top:1px solid #ccc;
}
.footer_content{
    color:#fff;
    text-align: center;
}
.footer_content_menu a{
    color: #f8bc02;
    text-decoration: none;
}