@charset "UTF-8";
html {
	font-family: sans-serif;
	-ms-text-size-adjust: 100%;
	-webkit-text-size-adjust: 100%;
	font-size: 62.5%;
}
body {
	margin: 0;
	padding: 0;
	font-family: 'Open Sans', sans-serif;
	font-size: 1.8em;
	font-weight: 300;
	line-height: 1.6;
	color: #2E4859;
}
body.has-active-menu {
	overflow: hidden;
}
.pg-wrapper {
	-webkit-transition: -webkit-transform 0.3s;
	transition: transform 0.3s;
}
.pg-mask {
	position: fixed;
	z-index: 100;
	top: 0;
	left: 0;
	overflow: hidden;
	width: 0;
	height: 0;
	background-color: #000;
	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=50)";
	filter: alpha(opacity=0);
	-moz-opacity: 0;
	-khtml-opacity: 0;
	opacity: 0;
	-webkit-transition: opacity 0.3s, width 0s 0.3s, height 0s 0.3s;
	transition: opacity 0.3s, width 0s 0.3s, height 0s 0.3s;
}
.pg-mask.is-active {
	width: 100%;
	height: 100%;
	opacity: 0.7;
	-webkit-transition: opacity 0.3s;
	transition: opacity 0.3s;
}
.pg-width {
	position: relative;
	margin: 0 auto;
	width: 100%;
	max-width: 1280px;
}
.pg-content {
	position: relative;
	margin: 0 auto;
	width: 100%;
	max-width: 1024px;
}

@media (max-width: 768px) {
body {
	font-size: 1.4em;
}
}

/* Typography
–––––––––––––––––––––––––––––––––––––––––––––––––– */
h1, h2, h3, h4, h5, h6 {
	margin-top: 0;
	margin-bottom: 2rem;
	font-weight: 300;
}
h1 { font-size: 5.5rem; line-height: 1.2; color: #00AFC9; }
h2 { font-size: 4rem; line-height: 1.25; }
h3 { font-size: 3rem; line-height: 1.3; }
h4 { font-size: 2.5rem; line-height: 1.35; }
p { margin-top: 0; }

.text-center {
	text-align: center;
}
.text-para1 {
	font-size: 2.2rem;
}
.text-highlight {
	color: #00638E;
}
.f-m { font-size: 3rem; line-height: 1.3; font-weight: 400; }
@media only screen and (max-width: 1024px) {
    .f-m {
        font-size: 2.8rem;
    }
}
@media only screen and (max-width: 768px) {
    .f-m {
        font-size: 2.5rem;
    }
}
@media (max-width: 768px) {
h1 { font-size: 3rem; line-height: 1.2; color: #00AFC9; }
h2 { font-size: 2.5rem; line-height: 1.25; }
h3 { font-size: 2.2rem; line-height: 1.3; }
h4 { font-size: 2rem; line-height: 1.35; }

.text-para1 {
	font-size: 1.5rem;
}
}

/* Links
–––––––––––––––––––––––––––––––––––––––––––––––––– */
a, a:visited {
	text-decoration: none;
	color: #00638E;
}
a:hover {
	color: #89D2E7;
}
a.whitelinks {
	color: #FFF;
}
a.whitelinks:hover {
	color: #89D2E7;
}

/* Grid
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.column {
	padding: 0 30px 0 30px;
	overflow: hidden;
}
@media only screen and (min-width:768px)  {
.column {
	float: left;
	margin-right: 0;
	box-sizing: border-box;
	padding: 0 30px 0 30px;
}
.one.column 		{ width: 8.3333333%; }
.two.column 		{ width: 16.6666667%; }
.three.column 		{ width: 25%; }
.four.column 		{ width: 33.3333333%; }
.five.column 		{ width: 41.6666667%; }
.six.column 		{ width: 50%; }
.seven.column 		{ width: 58.3333333%; }
.eight.column 		{ width: 66.6666667%; }
.nine.column 		{ width: 75%; }
.ten.column 		{ width: 83.3333333%; }
.eleven.column 		{ width: 91.6666667%; }
.twelve.column 		{ width: 100%; }
}

/* Flexbox
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.flex { display: flex }
.inline-flex { display: inline-flex }
.flex-auto { flex: 1 1 auto; min-width: 0;  min-height: 0 }
.flex-none { flex: none }
.flex-column { flex-direction: column }
.flex-row { flex-direction: row }
.flex-wrap { flex-wrap: wrap }
.flex-nowrap { flex-wrap: nowrap }
.flex-wrap-reverse { flex-wrap: wrap-reverse }
.flex-column-reverse { flex-direction: column-reverse }
.flex-row-reverse { flex-direction: row-reverse }
.items-start { align-items: flex-start }
.items-end { align-items: flex-end }
.items-center { align-items: center }
.items-baseline { align-items: baseline }
.items-stretch { align-items: stretch }
.self-start { align-self: flex-start }
.self-end { align-self: flex-end }
.self-center { align-self: center }
.self-baseline { align-self: baseline }
.self-stretch { align-self: stretch }
.justify-start { justify-content: flex-start }
.justify-end { justify-content: flex-end }
.justify-center { justify-content: center }
.justify-between { justify-content: space-between }
.justify-around { justify-content: space-around }
.content-start { align-content: flex-start }
.content-end { align-content: flex-end }
.content-center { align-content: center }
.content-between { align-content: space-between }
.content-around { align-content: space-around }
.content-stretch { align-content: stretch }
.order-0 { order: 0 }
.order-1 { order: 1 }
.order-2 { order: 2 }
.order-3 { order: 3 }
.order-4 { order: 4 }
.order-5 { order: 5 }
.order-6 { order: 6 }
.order-7 { order: 7 }
.order-8 { order: 8 }
.order-last { order: 99999 }
.flex-grow-0 { flex-grow: 0 }
.flex-grow-1 { flex-grow: 1 }
.flex-shrink-0 { flex-shrink: 0 }
.flex-shrink-1 { flex-shrink: 1 }

/* Structure
–––––––––––––––––––––––––––––––––––––––––––––––––– */
header.main {
	position: relative;
	background: #00AFC9;
}
header.menu {
	display: none;
	position: relative;
	background: #00AFC9;
	overflow: hidden;
}
main {
	width: 100%;
	max-width: 1024px;
	margin: 0 auto;
	padding: 80px 0;
	overflow: hidden;
}
section {
	overflow: hidden;
	color: #FFF;
}
section.banner {
	height: 400px;
	background-position: center center;
	-webkit-background-size: cover;
	-moz-background-size: cover;
	-o-background-size: cover;
	background-size: cover;
}
section.feature {
	background: #00638E;
}
section.highlight {
	background: #00AFC9;
}
section.divide {
	background: url(../images/section-divide-business.png);
	background-position: center center;
	-webkit-background-size: cover;
	-moz-background-size: cover;
	-o-background-size: cover;
	background-size: cover;
}
footer.main {
	overflow: hidden;
	clear: both;
	padding: 40px 0;
	background: #3A414D;
}
@media (max-width: 768px) {
header.menu {
	display: block;
}
main {
	padding: 40px 0;
}
}

/* Slider
–––––––––––––––––––––––––––––––––––––––––––––––––– */

#hero {
	background: #FFF no-repeat center;
	-webkit-background-size: cover;
	-moz-background-size: cover;
	background-size: cover;
	height: 600px;
	width: 100%;
	text-align: left;
	position: relative;
}
#hero-slider {
	height: 600px;
	position: relative;
	z-index: 40;
}
#hero-slider .slides li {
	-webkit-background-size: cover;
	-moz-background-size: cover;
	-o-background-size: cover;
	background-size: cover;
	background-position: center center;
	height: 600px;
}
#hero-slider .flex-caption {
	width: 60%;
	margin: 0 auto;
	height: auto;
	text-align: center;
	position: relative;
	padding: 20px;
	top: 170px;
	text-shadow: 1px 1px 2px #000000;
}
#hero-slider .slides .flex-caption h1 {
	font-size: 6rem;
	line-height: 1;
	font-weight: 300;
	color: #FFFFFF;
	position: relative;
	/* for css animations */
	filter: alpha(opacity=0);
	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
	opacity: 0;
	zoom: 1;
}
#hero-slider .slides .flex-caption h3 {
	font-size: 3.5rem;
	font-weight: 300;
	color: #FFFFFF;
	margin-top: 24px;
	/* for css animations */
	filter: alpha(opacity=0);
	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
	opacity: 0;
	zoom: 1;
}
/* for oldIE - IE9 */
.oldie #hero-slider .slides .flex-caption h1 {
	filter: alpha(opacity=100);
	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
	opacity: 1;
	zoom: 1;
}
.oldie #hero-slider .slides .flex-caption h3 {
	filter: alpha(opacity=100);
	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
	opacity: 1;
	zoom: 1;
}
a.btn-hero-slider {
	background: #C79F00;
	color: #FFF;
	line-height: 2;
	clear: both;
	width: 120px;
	display: block;
	font-size: 1.5rem;
	text-shadow: none;
	border-radius: 5px;
	font-weight: 700;
	margin: 30px auto 0 auto;
}
a.btn-hero-slider:hover {
	background: #152F63;
	color: #FFF;
	-moz-transition: ease-in-out 0.5s;
    -webkit-transition: ease-in-out 0.5s;
	transition: ease-in-out 0.5s;
}
@media only screen and (max-width:768px) {
#hero-slider {
	min-height: auto;
	height: auto;
}
#hero-slider .slides .flex-caption {
	height: auto;
	top: 140px;
	width: 80%;
	margin: 0 auto;
}
#hero-slider .slides .flex-caption h1 {
	font-size: 5rem;
}
#hero-slider .slides .flex-caption h3 {
	font-size: 3.5rem;
}
}
@media only screen and (max-width:480px) {
	
#hero {
	height: 300px;
}
#hero-slider {
	height: 300px;
}
#hero-slider .slides li {
	height: 300px;
}
#hero-slider .flex-caption {
	display: none;
}
}
/* control nav */
#hero .flex-control-nav {
	width: 100%;
	display: block;
	position: absolute;
	bottom: 0;
	z-index: 90;
	text-align: center;
}
#hero .flex-control-nav li {
	margin: 0 6px;
	display: inline-block;
	zoom: 1;
}
#hero .flex-direction-nav {
	text-align: left;
	display: inline-block;
	position: relative;
	bottom: 0;
	left: 30px;
	z-index: 500;
	background: #FFF;
	width: 100px;
	float: left;
}
#hero .flex-direction-nav a {
	color: #000;
}
#hero .flex-control-paging li a {
	width: 12px;
	height: 12px;
	display: block;
	cursor: pointer;
	text-indent: -9999px;
	border-radius: 50%;
	background: #FFFFFF;
}
#hero .flex-control-paging li a:hover {
	background: #c8c8c8;
}
#hero .flex-control-paging li a.flex-active {
	background: #00AFC9;
	cursor: default;
}

/* Navigation
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.trigger, .trigger-close {
	display: none;
}
input[type=checkbox] {
	display: none;
}
input[type=checkbox]:checked ~ #menu {
	display: block;
}
nav.global ul {
	list-style: none;
	margin: 0;
	position: absolute;
	right: 50px;
	top: 35px;
}
nav.global ul li {
	float: left;
}
nav.global ul li a {
	display: block;
	padding: 5px 30px;
	color: #FFF;
}
nav.global ul li a:hover {
	color: #00638e;
}
nav.menu {
	background: #3A414D;
	overflow: hidden;
	height: 60px;
}
nav.menu ul {
	list-style: none;
	margin: 0 auto;
	right: 30px;
	position: absolute;
}
nav.menu ul li {
	float: left;
	line-height: 60px;
	font-size: 1.8rem;
	font-weight: 300;
}
nav.menu li a {
	display: block;
	padding: 0 20px;
	color: #FFFFFF;
}
nav.menu li a:hover {
	color: #89D2E7;
}

@media only screen and (max-width:768px) {
nav.menu-wrapper {
	position: fixed;
	z-index: 200;
	background-color: #3A414D;
	-webkit-transition: -webkit-transform 0.3s;
	transition: transform 0.3s;
}
nav.menu-slide {
	height: 100%;
	overflow-y: scroll;
	top: 0;
	left: 0;
	width: 80%;
	-webkit-transform: translateX(-100%);
	-ms-transform: translateX(-100%);
	transform: translateX(-100%);
}
nav.menu-slide.is-active {
	-webkit-transform: translateX(0);
	-ms-transform: translateX(0);
	transform: translateX(0);
}
nav.menu {
	background: #3A414D;
	height: auto;
}
nav.menu ul {
	right: auto;
	position: relative;
}
nav.menu ul li {
	float: left;
	width: 100%;
	line-height: 70px;
	font-size: 2rem;
	font-weight: 300;
	border-bottom: solid 1px rgba(255,255,255,0.2);
}
.trigger {
	position: absolute;
	width: 50px;
	height: 50px;
	display: block;
	top: 17px;
	right: 15px;
	background: url(../images/icons/icon-menu.png) center center no-repeat;
	background-size: 25px 25px;
	border: none;
	box-shadow: none;
	border-radius: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	cursor: pointer;
}
.trigger:focus {
	outline: none;
}
.trigger-close {
	position: absolute;
	width: 50px;
	height: 50px;
	display: block;
	top: 7px;
	right: 15px;
	background: url(../images/icons/icon-close.png) center center no-repeat;
	background-size: 20px 20px;
	border: none;
	box-shadow: none;
	border-radius: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	cursor: pointer;
}
.trigger-close:focus {
	outline: none;
}
nav.global ul {
	display: none;
}
}
@media only screen and (max-width:480px) {
.trigger {
	top: 8px;
	right: 15px;
}
}


/* Lists
–––––––––––––––––––––––––––––––––––––––––––––––––– */
ul, ol {
	margin: 0 0 20px 30px;
	padding: 0;
}
ul.col2 {
	margin: 30px 0 0 0;
	list-style: none;
}
ul.col2 li {
	width: 46%;
	float: left;
	margin: 0 2%;
}
ul.international {
	list-style: none;
	margin: 0;
}
ul.international li {
	width: 33.333%;
	float: left;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	padding: 20px;
	text-align: left;
}
ul.international li img {
	width: 30%;
	height: auto;
	display: block;
	border: solid 1px #C9C9C9;
	margin: 0 0 15px 0;
}
ul.footer-logos {
	list-style: none;
	overflow: hidden;
	display: table;
	margin: 20px auto;
}
ul.footer-logos li {
	float: left;
	margin: 0 10px 0 10px;
}
ul.footer-logos li img {
	width: 130px;
	height: auto;
	display: block;
}
ul.sitemap {
	list-style: none;
	overflow: hidden;
	display: table;
	margin: 40px auto;
}
ul.sitemap li {
	float: left;
	font-size: 2rem;
	border-right: solid 1px #FFF;
}
ul.sitemap li:last-child {
	border: none;
}
ul.sitemap li a {
	color: #FFF;
	display: block;
	padding: 0 15px 0 15px;
}
ul.sitemap li a:hover {
	color: #89D2E7;
}
ul.footer-social {
	list-style: none;
	overflow: hidden;
	display: table;
	margin: 40px auto 0 auto;
}
ul.footer-social li {
	float: left;
	margin: 0 15px 0 15px;
	font-size: 1.8rem;
}
ul.footer-social li img {
	width: 40px;
	height: auto;
	display: block;
}
ul.footer-social li img:hover {
	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=80)";
	filter: alpha(opacity=80);
	-moz-opacity: 0.8;
	-khtml-opacity: 0.8;
	opacity: 0.8;
}
@media (max-width: 768px) {
ul.footer-logos {
	margin: 20px auto;
	width: 100%;
	border-bottom: solid 1px #FFF;
	padding: 0 0 30px 0;
}
ul.footer-logos li {
	float: left;
	margin: 10px 1% 10px 1%;
	width: 31.333%;
}
ul.footer-logos li img {
	width: 100%;
}
ul.sitemap {
	margin: 0;
}
ul.sitemap li {
	float: left;
	font-size: 2rem;
	line-height: 50px;
	width: 100%;
}
}
@media (max-width: 480px) {
ul.international li {
	width: 50%;
}
}

/* Feature Items
–––––––––––––––––––––––––– */
ul.featitems {
    overflow: hidden;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 40px;
}
ul.featitems li {
    width: 24%;
    background-image: url(../images/border-white.svg);
    background-size: 100% auto;
    background-position: bottom center;
    background-repeat: no-repeat;
    text-align: center;
    border-radius: 10px 10px 0 0;
    overflow: hidden;
}
ul.featitems li:hover {
    transition: 0.5s;
    -webkit-transform: scale(0.95);
	   -moz-transform: scale(0.95);
	     -o-transform: scale(0.95);
	        transform: scale(0.95);
}
ul.featitems li h4 {
    padding: 15px 15px 10px 15px;
    font-size: 2.1rem;
    font-weight: 300;
    color: #FFF;
}
ul.featitems li a {
    color: #FFF;
}
ul.featitems li:nth-child(1) {
    background-color: #DAAD12;
}
ul.featitems li:nth-child(2) {
    background-color: #5B76AD;
}
ul.featitems li:nth-child(3) {
    background-color: #D22B87;
}
ul.featitems li:nth-child(4) {
    background-color: #00AFC9;
}
ul.featitems li img {
    width: 100%;
    height: auto;
    display: block;
}

@media only screen and (max-width: 1024px) {
    ul.featitems li h4 {
        font-size: 2rem;
    }
}

@media only screen and (max-width: 768px) {
    ul.featitems {
        width: 100%;
        max-width: 320px;
        margin: 0 auto;
    }
    ul.featitems li {
        width: 100%;
        margin: 15px 0;
    }
    ul.featitems li h4 {
        font-size: 3rem;
    }
}

/* Melbourne Sights
–––––––––––––––––––––––––– */
.melbournesights {
    background-color: #AF0831;
    color: #FFF;
    padding: 10px 420px 0 65px;
    border-radius: 20px;
    background-image: url(../images/melbourne-sights_website-advert.jpg);
    background-size: 100% auto;
    background-position: right center top;
    background-repeat: no-repeat;
}
a.btn-secondary {
	color: #FFF;
	display: inline-block;
	padding: 8px 20px;
	font-size: 1.6rem;
    border-radius: 5px;
    font-weight: bold;
    margin-right: 3px;
    margin-bottom: 5px;
    -webkit-box-shadow: 0px 5px 8px 0px rgba(0,0,0,0.25);
	   -moz-box-shadow: 0px 5px 8px 0px rgba(0,0,0,0.25);
	        box-shadow: 0px 5px 8px 0px rgba(0,0,0,0.25);
    
}
a.btn-secondary:hover {
	background-color: #5B6770;
    transition: 0.3s;
}
a.btn-green {
    background-color: #00A39A;
}


@media only screen and (max-width: 1024px) {
 .melbournesights {
   padding: 10px 130px 0 65px;
    }
}
@media only screen and (max-width: 768px) {
 .melbournesights {
   padding: 10px 160px 0 30px;
    }
a.btn-secondary {
	padding: 8px 20px;
	font-size: 1.3rem;
}
}


/* Accordian
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.accordian {
	list-style: none;
	margin: 0 0 40px;
	padding: 0;
	border-top: 0;
}
.accordian header {
	display: block;
	margin: 0;
	padding: 20px;
	background-color: #f3f3f3;
	background-image: url(../images/icons/icon-arrow-down.png);
	background-repeat: no-repeat;
	background-size: 20px 20px;
	background-position: right 20px center;
	cursor: pointer;
	margin-bottom: 5px;
	text-align: left;
}
.accordian header:hover {
	background-color: #dddddd;
}
.accordian section {
	display: none;
	padding: 20px;
	background: #FFF;
	color: #12151b;
	text-align: left;
}
.accordian section.active {
	display: block;
}


/* Images
–––––––––––––––––––––––––––––––––––––––––––––––––– */
img.logo {
	width: 350px;
	height: auto;
	display: block;
	padding: 15px;
}
img.logo-menu {
	width: 150px;
	height: auto;
	display: block;
	padding: 15px 20px;
}
img.full {
	width: 100%;
	height: auto;
	display: block;
}
@media (max-width: 768px) {
img.logo {
	width: 275px;
	padding: 10px;
}
}
@media (max-width: 480px) {
img.logo {
	width: 150px;
	padding: 15px 20px;
}
}

/* Forms
–––––––––––––––––––––––––––––––––––––––––––––––––– */
input[type="text"],
input[type="tel"],
input[type="email"],
textarea,
select {
	display: block;
	width: 100%;
	padding: 18px 20px;
	margin: 0 0 12px 0;
	border: 0;
	outline: none;
	vertical-align: middle;
	font-size: 15px;
	line-height: 24px;
	border-radius: 3px;
	max-width: 100%;
	background: #FFF;
	-moz-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	-webkit-transition: all 0.3s ease-in-out;
	-ms-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
input[type="text"]:focus,
input[type="tel"]:focus,
input[type="email"]:focus,
select:focus,
textarea:focus {
	color: #000;
	background: rgba(255,255,255,0.8);
}
textarea {
	min-height: 337px;
}
input[type="submit"],
input[type="reset"],
input[type="button"] {
	display: inline-block;
	padding: 10px 30px;
	margin: 0 3px 6px 0;
	background: #00AFC9;
	color: #FFF;
	text-decoration: none;
	cursor: pointer;
	height: auto;
	text-align: center;
	border: none;
	-webkit-appearance: none;
	-webkit-font-smoothing: inherit;
	border-radius: 3px;
	-moz-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	-webkit-transition: all 0.3s ease-in-out;
	-ms-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}
input[type="submit"]:hover,
input[type="reset"]:hover,
input[type="button"]:hover {
	color: #FFFFFF;
	background: #89D2E7;
}
label {
	text-align: left;
	display: block;
	font-size: 1.3rem;
}
fieldset {
	width: 50%;
	float: left;
	border: 0;
	margin: 0;
	padding: 20px;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
::-webkit-input-placeholder { color: #12151B; }
:-moz-placeholder { color: #12151B; }
::-moz-placeholder { color: #12151B; }
:-ms-input-placeholder { color: #12151B; }
.placeholder { color: #12151B !important; }

@media (max-width: 768px) {
fieldset {
	width: 90%;
	float: left;
	border: 0;
	margin: 0 5%;
	padding: 20px;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
}

/* Buttons
–––––––––––––––––––––––––––––––––––––––––––––––––– */
a.btn-primary {
	background: #00638E;
	color: #FFF;
	display: block;
	border-radius: 50px;
	padding: 5px 0;
	text-align: center;
	width: 40%;
	font-size: 1.4rem;
}
a.btn-primary:hover {
	background: #00AFC9;
}
a.header-btn {
	position: relative;
	border: solid 2px #FFF;
	display: block;
	color: #FFF;
	border-radius: 50px;
	font-weight: 400;
	font-size: 1.8rem;
}
a.header-btn:hover {
	background: #2E4859;
	color: #FFF !important;
	-moz-transition: ease-in-out 0.5s;
    -webkit-transition: ease-in-out 0.5s;
	transition: ease-in-out 0.5s;
}
a.btn-center {
	position: relative;
	border: solid 2px #FFF;
	display: inline-block;
	padding: 5px 20px;
	color: #FFF;
	margin: 0 auto;
	border-radius: 50px;
	font-weight: 400;
	font-size: 1.8rem;
}
a.btn-center:hover {
	background: #2E4859;
	-moz-transition: ease-in-out 0.5s;
    -webkit-transition: ease-in-out 0.5s;
	transition: ease-in-out 0.5s;
}
a.header-menu-btn {
	position: relative;
	width: 42%;
	margin: 10px 0 20px 5%;
	float: left;
	padding: 3px 0;
	border: solid 2px #FFF;
	display: block;
	text-align: center;
	color: #FFF;
	border-radius: 50px;
	font-weight: 400;
	font-size: 1.4rem;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
a.btn-booknow {
	background: #00afc9;
	padding: 5px 30px;
	border-radius: 100px;
	margin: 0 5px;
	color: #FFF;
}
@media (max-width: 768px) {
a.btn-primary {
	width: 70%;
}
a.header-btn {
	display: none;
}
}

/* Spacing
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.padding15 {
	padding-top: 15px;
	padding-bottom: 15px;
}
.padding20 {
	padding-top: 20px;
	padding-bottom: 20px;
}
.padding40 {
	padding-top: 40px;
	padding-bottom: 40px;
}
.padding60 {
	padding-top: 60px;
	padding-bottom: 60px;
}
.padding80 {
	padding-top: 80px;
	padding-bottom: 80px;
}
@media (max-width: 768px) {
.padding20,
.padding40,
.padding60,
.padding80 {
	padding-top: 30px;
	padding-bottom: 30px;
}
}

/* Misc
–––––––––––––––––––––––––––––––––––––––––––––––––– */
hr.divide {
	margin: 30px 0;
	border-top: solid 1px #FFF;
	border-bottom: none;
}
.clearfix {
	clear: both;
}

.crt-post-text {
    font-size: 1.2rem !important;
}
.crt-date {
    font-size: 1rem !important;
}
a.crt-logo {
    font-size: 1rem !important;
    color: rgba(255,255,255,0.2) !important;
}

.byline {
	text-align: center;
	font-size: 1rem;
	line-height: 3.5;
	background: #3A414D;
	border-top: solid 1px rgba(255,255,255,0.2);
}
.display-sm-only {
	display: none;
}
@media (max-width: 768px) {
.display-sm-only {
	display: block;
}
}



ul.timetable-header {
	list-style: none;
	margin: 0 0 20px 0;
	overflow: hidden;
}
ul.timetable-header li {
	float: left;
	text-align: left;
	font-weight: bold;
}
ul.timetable-header li:nth-child(1) {
	width: 25%;
}
ul.timetable-header li:nth-child(2) {
	width: 25%;
}
ul.timetable-header li:nth-child(3) {
	width: 25%;
}
ul.timetable-header li:nth-child(4) {
	width: 25%;
}


ul.timetable-body {
	list-style: none;
	margin: 0 0 20px 0;
	overflow: hidden;
	border-bottom: solid 1px #DDD;
}
ul.timetable-body li {
	float: left;
	text-align: left;
	-webkit-box-sizing: border-box;
	   -moz-box-sizing: border-box;
	        box-sizing: border-box;
}
ul.timetable-body li:nth-child(1) {
	width: 25%;
	padding: 0;
}
ul.timetable-body > li:nth-child(2) {
	width: 25%;
}
ul.timetable-body li:nth-child(3) {
	padding: 0;
	width: 25%;
}
ul.timetable-body li:nth-child(4) {
	width: 25%;
	padding: 0;
}
ul.timetable-body li ul {
	list-style: none;
	width: 100%;
	margin: 0 !important;
}
ul.timetable-body li ul li {
	width: 100% !important;
	padding: 0 !important;
	height: 40px !important;
	border-bottom: none;
	margin-bottom: 10px;
}

.timetable-text-sm {
	font-size: 1.2rem;
}

@media (max-width: 768px) {
ul.timetable-header li:nth-child(1) {
	display: none;
}
ul.timetable-header li:nth-child(2) {
	width: 33.33%;
}
ul.timetable-header li:nth-child(3) {
	width: 33.333%;
}
ul.timetable-header li:nth-child(4) {
	width: 33.333%;
}
	
ul.timetable-body li ul li {
	margin-bottom: 30px;
}
ul.timetable-body > li:nth-child(1) {
	width: 100%;
	background: #2e4859;
	border-radius: 100px;
	color: #FFF;
	font-weight: bold;
	padding: 5px 0;
	text-align: center;
	margin-bottom: 20px;
}
ul.timetable-body li:nth-child(2) {
	width: 33.333%;
}
ul.timetable-body li:nth-child(3) {
	width: 33.333%;
}
ul.timetable-body li:nth-child(4) {
	width: 33.333%;
}
}





.tab {
	position: relative;
	overflow: hidden;
	background: #FFF;
	width: 100%;
	margin: 0 auto;
	line-height: 1.5;
	font-weight: 300;
	-webkit-font-smoothing: antialiased;
}
.tabs {
	display: table;
	position: relative;
	overflow: hidden;
	margin: 0 auto;
	
}
.tabs li {
	float: left;
	line-height: 38px;
	overflow: hidden;
	padding: 0;
	margin: 0;
	position: relative;
}
.tabs a {
	background-color: #eff0f2;
	border-bottom: 1px solid #fff;
	color: #888;
	font-weight: 500;
	display: block;
	letter-spacing: 0;
	outline: none;
	padding: 20px 50px;
	text-decoration: none;
	-webkit-transition: all 0.2s ease-in-out;
	-moz-transition: all 0.2s ease-in-out;
	transition: all 0.2s ease-in-out;
}
.tabs a:hover {
	background: #00afc9;
	color: #FFF;
}
.tabs_item {
	display: none;
	padding: 30px 0;
	width: 90%;
	margin: 0 auto;
}
.tabs_item h4 {
	font-weight: bold;
	color: #87d3b7;
	font-size: 20px;
}
.tabs_item img {
	width: 200px;
	float: left;
	margin-right: 30px;
}
.tabs_item:first-child {
	display: block;
}
.current a {
	color: #fff;
	background: #00638e;
}
@media (max-width: 768px) {
.tabs_item {
	width: 100%;
}}