@charset "UTF-8";

/* Normalize
–––––––––––––––––––––––––––––––––––––––––––––––––– */
progress,sub,sup{vertical-align:baseline}button,hr,input{overflow:visible}[type=checkbox],[type=radio],legend{box-sizing:border-box;padding:0}html{font-family:sans-serif;-ms-text-size-adjust:100%;-webkit-text-size-adjust:100%}body{margin:0}article,aside,details,figcaption,figure,footer,header,main,menu,nav,section,summary{display:block}audio,canvas,progress,video{display:inline-block}audio:not([controls]){display:none;height:0}[hidden],template{display:none}a{background-color:transparent;-webkit-text-decoration-skip:objects}a:active,a:hover{outline-width:0}abbr[title]{border-bottom:none;text-decoration:underline;text-decoration:underline dotted}b,strong{font-weight:bolder}dfn{font-style:italic}mark{background-color:#ff0;color:#000}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative}sub{bottom:-.25em}sup{top:-.5em}img{border-style:none}svg:not(:root){overflow:hidden}code,kbd,pre,samp{font-family:monospace,monospace;font-size:1em}figure{margin:1em 40px}hr{box-sizing:content-box;height:0}button,input,select,textarea{font-family:inherit;font-weight:300}optgroup{font-weight:700}button,select{text-transform:none}[type=reset],[type=submit],button,html [type=button]{-webkit-appearance:button}[type=button]::-moz-focus-inner,[type=reset]::-moz-focus-inner,[type=submit]::-moz-focus-inner,button::-moz-focus-inner{border-style:none;padding:0}[type=button]:-moz-focusring,[type=reset]:-moz-focusring,[type=submit]:-moz-focusring,button:-moz-focusring{outline:ButtonText dotted 1px}legend{color:inherit;display:table;max-width:100%;white-space:normal}textarea{overflow:auto}[type=number]::-webkit-inner-spin-button,[type=number]::-webkit-outer-spin-button{height:auto}[type=search]{-webkit-appearance:textfield;outline-offset:-2px}[type=search]::-webkit-search-cancel-button,[type=search]::-webkit-search-decoration{-webkit-appearance:none}::-webkit-input-placeholder{color:inherit;opacity:1}::-webkit-file-upload-button{-webkit-appearance:button;font:inherit}

/* Base
–––––––––––––––––––––––––––––––––––––––––––––––––– */
html {
	font-family: sans-serif;
	-webkit-text-size-adjust: 100%;
	   -moz-text-size-adjust: 100%;
	    -ms-text-size-adjust: 100%;
	        text-size-adjust: 100%;
	font-size: 62.5%;
}
body {
	margin: 0;
	padding: 0;
	font-family: 'Raleway', sans-serif;
	font-size: 1.6em;
	line-height: 1.6;
	color: #203568;
	font-weight: 300;
}
body.has-active-menu {
	overflow: hidden;
}
.pg-wrapper {
	-webkit-transition: -webkit-transform 0.3s;
	        transition: -webkit-transform 0.3s;
	        -o-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;
	     -o-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%;
	-webkit-transition: opacity 0.3s;
	     -o-transition: opacity 0.3s;
	        transition: opacity 0.3s;
               opacity: 0.7;
}
.pg-width {
	width: 100%;
	max-width: 1180px;
	margin: 0 auto;
	position: relative;
	overflow: hidden;
}
.pg-width-narrow {
	width: 100%;
	max-width: 1024px;
	margin: 0 auto;
	position: relative;
	overflow: hidden;
}

@media only screen and (max-width: 768px) {
}
@media only screen and (max-width: 480px) {
	body {
		font-size: 1.4em;
	}
}

/* Typography
–––––––––––––––––––––––––––––––––––––––––––––––––– */
h1, h2, h3, h4, h5, h6 {
	margin-top: 0;
	margin-bottom: 10px;
}
h1 { font-size: 5rem; line-height: 1.2; color: #9B2242; }
h2 { font-size: 4rem; line-height: 1.2; }
h3 { font-size: 3.2rem; line-height: 1.3; }
h4 { font-size: 2.3rem; line-height: 1.3; }
p { margin-top: 0; }
strong { font-weight: bold !important; }

.text-center {
	text-align: center;
}
.text-para1 {
	font-size: 2rem;
}
.text-sm {
	font-size: 1.3rem;
}
.text-highlight_red {
	color: #9B2242;
}
.text-highlight_blue {
	color: #203568;
}

@media only screen and (max-width: 768px) {
	h1 { font-size: 4rem; }
	h2 { font-size: 3.5rem; }
	h3 { font-size: 3rem; }
	h4 { font-size: 2.2rem; }
}
@media only screen and (max-width: 480px) {
	h1 { font-size: 3.5rem; }
	h2 { font-size: 3rem; }
	h3 { font-size: 2.6rem; }
	h4 { font-size: 2rem; }
	
	.text-para1 {
		font-size: 1.7rem;
	}
}

/* Links
–––––––––––––––––––––––––––––––––––––––––––––––––– */
a, a:visited {
	text-decoration: none;
	color: #9B2242;
}
a:hover {
	color: #203568;
}

/* Grid
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.column {
	float: left;
	overflow: hidden;
	padding: 20px 30px 20px 30px;
	  -webkit-box-sizing: border-box;
	          box-sizing: border-box;
}
.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%; }

/* Column - Feature
––––––––––––––-----–––––––– */
.column-feature {
	float: left;
	overflow: hidden;
	margin: 0 1% 0 1%;
	padding: 40px;
	border: solid 1px #9b2242;
	  -webkit-box-sizing: border-box;
	     -moz-box-sizing: border-box;
	          box-sizing: border-box;
}
.one.column-feature		{ width: 6.3333333%; }
.two.column-feature 		{ width: 14.6666667%; }
.three.column-feature 		{ width: 23%; }
.four.column-feature 		{ width: 31.3333333%; }
.five.column-feature 		{ width: 39.6666667%; }
.six.column-feature 		{ width: 48%; }
.seven.column-feature 		{ width: 56.3333333%; }
.eight.column-feature 		{ width: 64.6666667%; }
.nine.column-feature 		{ width: 73%; }
.ten.column-feature 		{ width: 81.3333333%; }
.eleven.column-feature 		{ width: 91.6666667%; }
.twelve.column-feature 		{ width: 98%; }

@media only screen and (max-width: 768px)  {
	.column {
		padding: 20px;
		width: 100% !important;
		max-width: 550px;
		float: none;
		margin: 0 auto;
	}
	.column-feature {
		padding: 20px;
		width: 90% !important;
		max-width: 550px;
		float: none;
		margin: 5% auto;
	}
}

/* Structure
–––––––––––––––––––––––––––––––––––––––––––––––––– */
header.main {
	position: relative;
}
main {
	width: 100%;
	max-width: 1180px;
	margin: 0 auto;
	clear: both;
	overflow: hidden;
	padding: 80px 0;
}
section {
	overflow: hidden;
	clear: both;
}
section.banner-internal {
	width: 100%;
	height: 300px;
	background-position: center center;
	background-repeat: no-repeat;
	-webkit-background-size: cover;
	   -moz-background-size: cover;
	     -o-background-size: cover;
	        background-size: cover;
}
section.subtle {
	background: #DDD;
}
section.red {
	background: #9B2242;
	color: #FFF;
}
section.blue {
	background: #203568;
	color: #FFF;
	border-bottom: solid 1px #FFF;
}
.slider {
	position: relative;
}
.slider > ul {
	height: 500px;
	list-style: none;
	margin: 0;
	clear: both;
}
.slider ul > li {
	height: 100%;
	position: relative;
	z-index: 50;
	background-position: center center;
	background-repeat: no-repeat;
	-webkit-background-size: cover;
	   -moz-background-size: cover;
	     -o-background-size: cover;
	        background-size: cover;
}
.slider-content-block {
	background: rgba(255,255,255,0.9);
	position: absolute;
	z-index: 100;
	top: 80px; right: 80px;
	width: 400px;
	padding: 40px;
	-webkit-box-sizing: border-box;
	   -moz-box-sizing: border-box;
	        box-sizing: border-box;
}
.slider-content-block a {
	color: #203568;
}
.testimonials {
}
footer.main {
	background: #203568;
	color: #FFF;
	clear: both;
	overflow: hidden;
}


@media only screen and (max-width: 768px) {
	.slider-content-block {
		position: absolute;
		width: 70%;
		margin: 0 15%;
		
		top: 220px; 
		right: auto;
		
		padding: 30px;
		font-size: 1.3rem;
	}
}
@media only screen and (max-width: 480px) {
	main {
		padding: 30px 0;
	}
	.slider > ul {
		height: 300px;
	}
	.slider-content-block {
		display: none;
	}
	
}


/* Navigation
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.trigger, .trigger-close {
	display: none;
}
input[type=checkbox] {
	display: none;
}
input[type=checkbox]:checked ~ #menu {
	display: block;
}
ul.nav-primary {
	overflow: hidden;
	background: #203568;
	width: 81%;
	float: left;
	padding: 0 0 0 20px;
}
ul.nav-primary li {
	float: left;
	font-size: 1.5rem;
	font-weight: bold;
}
ul.nav-primary li a {
	display: block;
	padding: 20px 20px;
	color: #FFF;
}
ul.nav-primary li a:hover {
	background: #9B2242;
}

ul.nav-social {
	overflow: hidden;
	background: #9B2242;
	width: 19%;
	float: left;
	padding: 12px;
}
ul.nav-social li {
	float: left;
	margin-right: 3px;
}
ul.nav-social li img {
	width: 40px;
	height: 40px;
	display: block;
}
ul.nav-social li a {
	display: block;
	color: #FFF;
}
ul.nav-social li a:hover {
	opacity: 0.8;
}

@media only screen and (max-width:1024px) {
	ul.nav-primary li {
		font-size: 1.3rem;
	}
	ul.nav-primary li a {
		padding: 20px 10px;
	}
	ul.nav-social li img {
		width: 37px;
		height: 37px;
	}
}

@media only screen and (max-width:768px) {
	nav.menu-wrapper {
		position: fixed;
		z-index: 200;
		background-color: #203568;
		-webkit-transition: transform 0.3s;
		     -o-transition: transform 0.3s;
				transition: -webkit-transform 0.3s;
				transition: transform 0.3s;
				transition: transform 0.3s, -webkit-transform 0.3s;
	}
	nav.menu-slide {
		height: 100%;
		width: 80%;
		max-width: 320px;
		top: 0;
		left: 0;
		overflow-y: scroll;
		-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);
	}
	ul.nav-primary {
		width: 100%;
		float: left;
		padding: 0;
	}
	ul.nav-primary li {
		width: 100%;
		font-size: 1.5rem;
	}
	ul.nav-primary li a {
		display: block;
		padding: 10px 20px;
		color: #FFF;
	}
	ul.nav-social {
		background: #203568;
		margin-top: 10px;
		width: 100%;
		padding: 12px;
	}

	.trigger {
		position: absolute;
		width: 50px;
		height: 50px;
		display: block;
		top: 20px;
		right: 15px;
		background: url(../images/icons/ic_menu.svg) center center no-repeat;
		background-size: 25px 25px;
		border: none;
		-webkit-box-shadow: none;
		        box-shadow: none;
	}
	.trigger:focus {
		outline: none;
	}
	.trigger-close {
		position: absolute;
		width: 50px;
		height: 50px;
		display: block;
		top: 0;
		right: 0;
		background: url(../images/icons/ic_close.svg) center center no-repeat;
		background-size: 15px 15px;
		border: none;
		-webkit-box-shadow: none;
		        box-shadow: none;
	}
	.trigger-close:focus {
		outline: none;
	}
}

@media only screen and (max-width:480px) {
	.trigger {
		top: 10px;
	}
}


/* Lists
–––––––––––––––––––––––––––––––––––––––––––––––––– */
ul, ol {
	margin: 0;
	padding: 0;
	list-style: none;
	-webkit-box-sizing: border-box;
	        box-sizing: border-box;
}
li {
	-webkit-box-sizing: border-box;
	        box-sizing: border-box;
}

/* Bullets
–––––––––––––––––––––––––– */
ul.bullets {
	overflow: hidden;
	list-style: disc;
}
ul.bullets li {
	margin: 0 0 0 30px;
	margin-bottom: 5px;
}

/* Header - Accommodation
–––––––––––––––––––––––––– */
.header-accommodation {
	overflow: hidden;
	position: absolute;
	top: 20px;
	right: 30px;
	text-align: center;
	font-size: 1.8rem;
	font-family: 'Volkhov', serif;
}
.header-accommodation ul {
	overflow: hidden;
}
.header-accommodation ul li {
	float: left;
	font-size: 1.2rem;
	border-radius: 50px;
	margin-right: 3px;
}
.header-accommodation ul li:nth-child(1) {
	background: #9B2242;
}
.header-accommodation ul li:nth-child(1) a {
	color: #FFF;
}
.header-accommodation ul li a {
	display: block;
	padding: 8px 20px;
	border-radius: 50px;
	color: #203568;
}
.header-accommodation ul li:nth-child(2) a:hover {
	background: #DDD;
}

@media only screen and (max-width: 768px) {
	.header-accommodation {
		position: absolute;
		top: 100px;
		right: auto;
		font-size: 1.3rem;
		width: 100%;
		border-top: solid 1px #DDD;
		padding: 10px 0 0 0;
	}
	.header-accommodation ul {
		display: table;
		margin: 0 auto;
	}
	.header-accommodation ul li {
		font-size: 1rem;
	}
	.header-accommodation ul li a {
		padding: 5px 20px;
	}
}

@media only screen and (max-width: 480px) {
	.header-accommodation {
		top: 70px;
	}
	.header-accommodation ul li {
		font-size: 0.8rem;
	}
}

/* Feature Items
–––––––––––––––––––––––––– */
ul.featitems {
	overflow: hidden;
	padding: 0 20px;
}
ul.featitems li {
	width: 48%;
	float: left;
	margin: 0 1%;
}
ul.featitems li a {
	color: #FFF;
	padding: 20px 30px;
	display: block;
	background: #9B2242;
}
ul.featitems li a:hover {
	background: #203568;
}
ul.featitems li h3 {
	font-size: 2.6rem;
	margin: 0;
}
ul.featitems li p {
	margin: 0;
	font-family: 'Volkhov', serif;
}

@media only screen and (max-width: 768px) {
	ul.featitems {
		width: 100%;
		max-width: 550px;
		margin: 0 auto;
	}
	ul.featitems li h3 {
		font-size: 2rem;
	}
	ul.featitems li p {
		font-size: 1.2rem;
	}
}

@media only screen and (max-width: 480px) {
	ul.featitems li {
		width: 100%;
		margin: 5px 0 5px 0;
	}
}


/* Featured Content
–––––––––––––––––––––––––– */
ul.feature-content {
	overflow: hidden;
}
ul.feature-content li {
	width: 48%;
	float: left;
	color: #FFF;
	padding: 140px 30px 30px 30px;
	background-position: center center;
	background-repeat: no-repeat;
	-webkit-background-size: cover;
	   -moz-background-size: cover;
	     -o-background-size: cover;
	        background-size: cover;
	margin: 0 1%;
}
ul.feature-content li a {
	color: #FFF;
	background-color: #9B2242;
	display: inline-block;
	padding: 5px 20px;
	border-radius: 50px;
	font-size: 1.4rem;
	font-weight: bold;
}
ul.feature-content li h3 {
	font-size: 2.6rem;
	margin: 0;
}
ul.feature-content li p {
	margin: 0;
	font-family: 'Volkhov', serif;
}

@media only screen and (max-width: 480px) {
	ul.feature-content li {
		width: 100%;
		float: left;
		color: #FFF;
		padding: 100px 30px 30px 30px;
		margin: 0 0 20px 0;
	}
}

/* Accommodation Grid
–––––––––––––––––––––––––– */
ul.accommodation-grid {
	overflow: hidden;
}
ul.accommodation-grid > li {
	flex: 1;
	width: 46%;
	float: left;
	padding: 30px;
	font-size: 1.5rem;
	margin: 0 2% 30px 2%;
	border: solid 1px rgba(155,34,66,0.2);
}
ul.accommodation-grid > li:nth-child(2n+1) {
	clear: left;
}

.slider-accomm {
	position: relative;
	margin-bottom: 20px;
}
.slider-accomm > ul {
	height: 200px;
	list-style: none;
	margin: 0 0 20px 0;
	clear: both;
}
.slider-accomm ul > li {
	height: 100%;
	position: relative;
	z-index: 50;
	background-position: center center;
	background-repeat: no-repeat;
	-webkit-background-size: cover;
	   -moz-background-size: cover;
	     -o-background-size: cover;
	        background-size: cover;
}

ul.accommodation-list {
	overflow: hidden;
	margin-bottom: 20px;
	list-style: disc;
	padding-left: 20px;
}
ul.accommodation-list li {
	font-size: 1.3rem;
	padding: 3px 0;
}

@media only screen and (max-width: 768px) {
	ul.accommodation-grid > li {
		width: 100%;
		margin: 0 0 30px 0;
		padding: 30px;
		font-size: 1.3rem;
	}
}

@media only screen and (max-width: 480px) {
	ul.accommodation-grid > li {
		width: 100%;
		padding: 15px;
		font-size: 1.3rem;
	}
	ul.accommodation-list li {
		font-size: 1.1rem;
	}
}

/* Facilities List
–––––––––––––––––––––––––– */
ul.facilities-list {
	width: 33.333%;
	float: left;
	overflow: hidden;
	list-style: disc;
	padding-left: 20px;
	margin-top: 20px;
}
ul.facilities-list li {
	font-size: 1.5rem;
	padding: 5px 0;
}

@media only screen and (max-width: 768px) {
	ul.facilities-list {
		width: 100%;
		margin: 0;
	}
}

@media only screen and (max-width: 480px) {
}

/* Links List
–––––––––––––––––––––––––– */
ul.links-list {
	width: 31.333%;
	float: left;
	overflow: hidden;
	margin-right: 2%;
}
ul.links-list li {
	font-size: 1.7rem;
	padding: 15px 0;
	line-height: 1.2;
	border-bottom: solid 1px rgba(32,53,104,0.3);
}
ul.links-list li a {
	font-size: 1.4rem;
}

@media only screen and (max-width: 768px) {
	ul.links-list {
		width: 100%;
	}
}

/* Call to Action
–––––––––––––––––––––––––– */
ul.cta {
	overflow: hidden;
	margin: 30px 20px;
}
ul.cta li {
	float: left;
	color: #FFF;
}
ul.cta li:nth-child(1) {
	width: 80%;
	font-size: 3rem;
	font-weight: bold;
}
ul.cta li:nth-child(2) {
	width: 20%;
}
ul.cta li a {
	background: #FFF;
	color: #9B2242;
	display: inline-block;
	padding: 10px 20px;
	border-radius: 50px;
	text-align: center;
	font-weight: bold;
}

@media only screen and (max-width: 768px) {
	ul.cta li:nth-child(1) {
		width: 100%;
		font-size: 2rem;
		text-align: center;
	}
	ul.cta li:nth-child(2) {
		width: 100%;
		text-align: center;
	}
	ul.cta li a {
		display: inline-block;
		padding: 5px 20px;
		margin-top: 10px;
	}
}

/* Contact Details
–––––––––––––––––––––––––– */
ul.contact-details {
	overflow: hidden;
	margin-bottom: 20px;
}
ul.contact-details li {
	font-family: 'Volkhov', serif;
	color: rgba(155,34,66,0.6);
	text-transform: uppercase;
	font-weight: bold;
	padding: 10px 0;
}
ul.contact-details li a {
	color: #203568;
	font-family: 'Raleway', sans-serif;
	text-transform: none;
	font-weight: normal;
}

/* Sitemap
–––––––––––––––––––––––––– */
ul.sitemap {
	overflow: hidden;
	display: table;
	margin: 10px auto 20px auto;
}
ul.sitemap li {
	float: left;
	font-size: 1.3rem;
	font-weight: bold;
}
ul.sitemap li a {
	color: #FFF;
	padding: 10px 10px;
	display: block;
}
ul.sitemap li a:hover {
	color: rgba(255,255,255,0.5);
}

@media only screen and (max-width: 768px) {
}
@media only screen and (max-width: 480px) {
	ul.sitemap li {
		width: 100%;
	}
}

/* Accordian
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.accordian {
	list-style: none;
	margin: 0 0 40px;
	padding: 0; 
	border-top: 0;
}
.accordian header {
	display: block;
	margin: 0 0 3px 0;
	padding: 20px 50px 20px 20px;
	background: #EEE;
	cursor: pointer;
	background-image: url(../images/icons/ic_arrow-down_blue.svg);
	background-size: 20px 20px;
	background-position: right 20px center;
	background-repeat: no-repeat;
}
.accordian section {
	display: none;
	padding: 40px 20px;
	background: #FFF;
}
.accordian section.active {
	display: block;
}


/* Images
–––––––––––––––––––––––––––––––––––––––––––––––––– */
img.logo {
	width: 250px;
	height: auto;
	display: inline-block;
	padding: 15px 30px;
}
img.logo-menu {
	width: 150px;
	height: auto;
	display: none !important;
	padding: 30px 15px;
}
img.logo-footer {
	width: 250px;
	height: auto;
	display: block;
	margin: 0 auto;
}
img.img-full {
	width: 100%;
	height: auto;
	display: block;
}
img.icon-left {
	width: 20px;
	height: 20px;
	float: left;
	margin: 4px 10px 0 0;
}

@media only screen and (max-width: 768px) {
	img.logo {
		width: 250px;
		height: auto;
		display: block;
		margin: 0 auto;
		padding: 15px 15px 80px 15px;
	}
	img.logo-menu {
		display: block !important;
	}
	img.icon-left {
		width: 16px;
		height: 16px;
		margin: 4px 7px 0 0;
	}
}
@media only screen and (max-width: 480px) {
	img.logo {
		width: 160px;
		height: auto;
		display: inline-block;
		padding: 15px 15px 80px 15px;
	}
	img.logo-footer {
		width: 150px;
	}
}

/* Forms
–––––––––––––––––––––––––––––––––––––––––––––––––– */
ul.form {
	overflow: hidden;
}
ul.form li {
	width: 98%;
	float: left;
}
ul.form li.half {
	width: 48%;
	margin: 0 2% 0 0;
}
ul.form li.third {
	width: 31.333%;
	margin: 0 2% 0 0;
}

input[type="email"],
input[type="text"],
input[type="tel"],
textarea,
select {
	width: 100%;
	padding: 10px 10px;
	margin-bottom: 5px;
	background-color: #FFF;
	border: solid 1px #E2E2E2;
	border-radius: 0;
	-webkit-box-shadow: none;
	        box-shadow: none;
	font-size: 1.2rem;
	color: #505050;
	-webkit-appearance: none;
	background-position: right 10px center;
	background-repeat: no-repeat;
	-webkit-box-sizing: border-box;
	        box-sizing: border-box;
}
textarea {
	min-height: 130px;
}
input[type="email"]:focus,
input[type="text"]:focus,
input[type="tel"]:focus,
textarea:focus, 
select:focus {
	border: 1px solid red;
	outline: 0;
	background-color: rgba(255,255,255,1.00);
	-webkit-transition: ease-in-out 0.5s;
            -o-transition: ease-in-out 0.5s;
            transition: ease-in-out 0.5s;
}
input[type="submit"],
input[type="reset"],
input[type="button"] {
	display: block;
	padding: 5px 40px;
	margin: 20px auto 0 auto;
	background: #000;
	color: #FFF;
	cursor: pointer;
	height: auto;
	text-align: center;
	border: none;
	font-size: 1.5rem;
	border-radius: 3px;
	-webkit-font-smoothing: inherit;
	-webkit-transition: all 0.3s ease-in-out;
	     -o-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: #333;
}
label {
	font-size: 1rem;
	text-align: left;
	display: block;
}
.required {
	color: red;
}
fieldset {
	margin: 0;
	padding: 10px;
	border-width: 0;
	width: 50%;
	float: left;
	-webkit-box-sizing: border-box;
	        box-sizing: border-box;
}

@media only screen and (max-width: 768px) {
	fieldset {
		width: 100%;
	}
}
@media only screen and (max-width: 480px) {
}

/* Buttons
–––––––––––––––––––––––––––––––––––––––––––––––––– */
a.btn-primary {
	color: #FFF;
	background-color: #9B2242;
	display: inline-block;
	padding: 5px 20px;
	border-radius: 50px;
	font-size: 1.4rem;
	font-weight: bold;
	margin: 5px;
}
a.btn-primary:hover {
	background-color: #298FC2;
}
a.btn-secondary {
	color: #FFF;
	background-color: #203568;
	display: inline-block;
	padding: 5px 20px;
	border-radius: 50px;
	font-size: 1.4rem;
	font-weight: bold;
	margin: 5px;
}
a.btn-secondary:hover {
	background-color: #298FC2;
}
a.link-offers {
	color: #9B2242;
	font-family: 'Volkhov', serif;
	text-decoration: underline;
	float: right;
	font-size: 1.3rem;
	margin: 15px 0 0 0;
}
a.btn-reviews {
	color: rgba(255,255,255,0.6);
	background-color: #203568;
	display: inline-block;
	padding: 5px 20px 5px 35px;
	border-radius: 50px;
	font-size: 1.4rem;
	font-weight: bold;
	background-position: left 8px center;
	background-repeat: no-repeat;
	background-size: 20px 20px;
}

@media only screen and (max-width: 768px) {
}
@media only screen and (max-width: 480px) {
}

/* Spacing
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.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; }

.no-padding { padding: 0; }
.no-margin { margin: 0; }

hr { height: 0; border: none; -webkit-box-sizing: content-box; box-sizing: content-box; }

hr.space20 { height: 20px; }
hr.space40 { height: 40px; }
hr.space60 { height: 60px; }
hr.space80 { height: 80px; }

hr.divide20 { border-top: solid 1px #DDD; margin: 20px 0; }
hr.divide40 { border-top: solid 1px #DDD; margin: 40px 0; }
hr.divide60 { border-top: solid 1px #DDD; margin: 60px 0; }
hr.divide80 { border-top: solid 1px #DDD; margin: 80px 0; }

@media only screen and (max-width: 768px) {
	.padding20,
	.padding40,
	.padding60,
	.padding80 {
		padding-top: 30px;
		padding-bottom: 30px;
	}
}

/* Misc
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.clearfix {
	clear: both;
}
.virtual-tour {
    width: 100%;
    max-width: 768px;
    margin: 0 auto;
    display: block;
}
.byline {
	text-align: left;
	font-size: 1.1rem;
	padding: 20px 20px 0 20px;
	color: #FFF;
	clear: both;
	border-top: solid 1px rgba(221,215,188,0.2);
	width: 100%;
	margin: 0 auto;
	-webkit-box-sizing: border-box;
	   -moz-box-sizing: border-box;
	        box-sizing: border-box;
}
.byline img {
	float: right;
	height: 35px;
	padding: 0;
	width: auto;
	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=50)";
	filter: alpha(opacity=50);
	-moz-opacity: 0.5;
	-khtml-opacity: 0.5;
	opacity: 0.5;
}
.byline img:hover {
	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
	filter: alpha(opacity=100);
	-moz-opacity: 1;
	-khtml-opacity: 1;
	opacity: 1;
}

@media only screen and (max-width: 768px) {
	.byline {
		text-align: center;
		font-size: 0.9rem;
	}
	.byline img {
		float: none;
		clear: both;
		display: block;
		margin: 0 auto;
		padding: 12px 0;
	}
}
@media only screen and (max-width: 480px) {
	.byline {
		max-width: 320px;
		margin: 0 auto;
	}
}
