/* http://meyerweb.com/eric/tools/css/reset/ 
	 v2.0 | 20110126
	 License: none (public domain)
*/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}


article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}

body {
	line-height: 1;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	background: #FF5722;
}

ol, ul {
	list-style: none;
}

blockquote, q {
	quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
}

*,
*:after,
*::before {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

@font-face {
	font-family: bebasneue;
	src: url('../fonts/BebasNeue-webfont.eot');
	src: url('../fonts/BebasNeue-webfont.eot?#iefix') format('embedded-opentype'),
		 url('../fonts/BebasNeue-webfont.woff') format('woff'),
		 url('../fonts/BebasNeue-webfont.ttf') format('truetype'),
		 url('../fonts/BebasNeue-webfont.svg#bebas_neueregular') format('svg');
	font-weight: normal;
	font-style: normal;
}




/* IE Upgrade Message
-----------------------------------------------------------------------------------------------------------------------------
-----------------------------------------------------------------------------------------------------------------------------
-----------------------------------------------------------------------------------------------------------------------------
-----------------------------------------------------------------------------------------------------------------------------
----------------------------------------------------------------------------------------------------------------------------*/
#ie-message-container {
	background: #434d53;
	width: 100%;
	height: 100%;
	position: fixed;
	z-index: 50000;
	display: none;
}

#ie-message {
	width: 700px;
	height: 550px;
	position: fixed;
	left: 50%;
	top: 50%;
	margin: -275px 0 0 -350px;
	font-family: Arial, Helvetica, sans-serif;
	text-align: center;
	color: #FFF;
}

#ie-message h1 {
	font-weight: 600;
	font-family: 'Oswald', sans-serif;
	font-size: 35px;
	line-height: 35px;
}

#ie-message h2 {
	font-family: 'Oswald', sans-serif;
	font-weight: 400;
	font-size: 20px;
	margin: 30px 0;
	line-height: 22px;
	color: rgb(65, 169, 204);
}

#ie-message p {
	font-family: 'Oswald', sans-serif;
	font-weight: 400;
	font-size: 16px;
	line-height: 19px;
}

#ie-message img {
	display: block;
	margin: 15px auto 25px auto;
	float: none;
}

#ie-message-browsers {
	width: 380px;
	margin: 0 auto;
	float: none;
	font-family: Arial, Helvetica, sans-serif;
	text-align: center;
	color: #FFF;
}

#ie-message-browsers img {
	margin: 30px auto 10px auto;
}

.ie-message-browser {
	width: 60px;
	float: left;
	margin-right: 20px;
}

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

#ie-message span {
	font-size: 14px;
}

body.ie #ie-message-container {
	display: block;
}




/* Preloader
-----------------------------------------------------------------------------------------------------------------------------
-----------------------------------------------------------------------------------------------------------------------------
-----------------------------------------------------------------------------------------------------------------------------
-----------------------------------------------------------------------------------------------------------------------------
----------------------------------------------------------------------------------------------------------------------------*/
#preloader-container {
	position: fixed;
   	z-index: 8000;
   	width: 100%;
   	height: 100%;
	background: #FC0;
}

#preloader-container h1{
	width: 100%;
	position: absolute;
	top: calc(50% + 15px);
	left: 0;
	text-align: center;
	font-family: 'Covered By Your Grace', cursive;
	font-size: 40px;
}

.loading{
	width: 50px;
	height: 50px;
	position: absolute;
	top: calc(50% - 50px);
	left: calc(50% - 25px);
	box-sizing: border-box;
	border-top: 4px solid rgb(240,82,0);
	border-right: 4px solid rgba(240,82,0,.3);
	border-bottom: 4px solid rgba(240,82,0,.3);
	border-left: 4px solid rgba(240,82,0,.3);
	border-radius: 100%;
	-webkit-animation: rotate 1s infinite linear;
	animation: rotate 1s infinite linear;
}

@-webkit-keyframes rotate{
	from {-webkit-transform: rotate(0deg) translate3d(0,0,0);transform: rotate(0deg) translate3d(0,0,0)}
	to {-webkit-transform: rotate(359deg) translate3d(0,0,0);transform: rotate(359deg) translate3d(0,0,0)}
}

@keyframes rotate{
	from {-webkit-transform: rotate(0deg) translate3d(0,0,0);transform: rotate(0deg) translate3d(0,0,0)}
	to {-webkit-transform: rotate(359deg) translate3d(0,0,0);transform: rotate(359deg) translate3d(0,0,0)}
}



/* Slide Out Tab
-----------------------------------------------------------------------------------------------------------------------------
-----------------------------------------------------------------------------------------------------------------------------
-----------------------------------------------------------------------------------------------------------------------------
-----------------------------------------------------------------------------------------------------------------------------
----------------------------------------------------------------------------------------------------------------------------*/
.slideout {
	position: fixed;
	bottom: 50px;
	right: 0;
	width: 60px;
	padding: 12px 0;
	text-align: center;
	background: #00BCD4;
	-webkit-transition-duration: 0.3s;
	-moz-transition-duration: 0.3s;
	-o-transition-duration: 0.3s;
	transition-duration: 0.3s;
	-webkit-border-radius: 5px 0 0 5px;
	-moz-border-radius: 5px 0 0 5px;
	border-radius: 5px 0 0 5px;
	z-index: 1000;
	border: 2px solid #FFF;
	border-right: none;
}

.slideout-inner {
	position: fixed;
	bottom: 50px;
	right: -210px;
	background: #00BCD4;
	width: 210px;
	padding: 20px 15px 15px 15px;
	height: 131px;
	-webkit-transition-duration: 0.3s;
	-moz-transition-duration: 0.3s;
	-o-transition-duration: 0.3s;
	transition-duration: 0.3s;
	text-align: left;
	border-top: 2px solid #FFF;
	border-bottom: 2px solid #FFF;
}

.slideout-inner textarea {
	width: 200px;
	height: 100px;
	margin-bottom: 6px;
}

.slideout:hover {
	right: 208px;
}

.slideout:hover .slideout-inner {
	right: 0;
}

.slideout-inner span {
	font-size: 16px;
	font-family: Tahoma, Geneva, sans-serif;
	color: #FFF;
	line-height: 21px;
	font-weight: 900;
}




/* Container
-----------------------------------------------------------------------------------------------------------------------------
-----------------------------------------------------------------------------------------------------------------------------
-----------------------------------------------------------------------------------------------------------------------------
-----------------------------------------------------------------------------------------------------------------------------
----------------------------------------------------------------------------------------------------------------------------*/
#container {
	width: 100%;
	overflow: hidden;
	position:relative;
	z-index: 0;
	float: left;
}

#main {
	box-shadow: 0 3px 3px rgba(0,0,0,0.2);
	overflow: hidden;
	z-index:1;
	background: #f4f6f8;
}

@media screen and (min-width: 1600px) {
#container {
	position: relative;
	width: 1600px;
	float: none;
	margin: 0 auto;
	box-shadow: 0 0 2px 1px rgba(0,0,0,.35);
}
}





/* Menu
-----------------------------------------------------------------------------------------------------------------------------
-----------------------------------------------------------------------------------------------------------------------------
-----------------------------------------------------------------------------------------------------------------------------
-----------------------------------------------------------------------------------------------------------------------------
----------------------------------------------------------------------------------------------------------------------------*/
header {
	width: 100%;
	position: fixed;
	z-index: 9000;
	background: rgba(0, 0, 0, 0.85);
}

.header-logo {
	float: left;
	margin: 5px 0 0 15px;
}

.header-mobile-logo {
	display: none;
}

header nav {
	float: right;
	text-align: right;
	font-family: "bebasneue", sans-serif;
	font-size: 20px;
	margin: 5px 0 0 0;
}

header nav ul {
	margin: 0;
	padding: 1em;
	list-style-type: none;
	float: left;
}

header nav ul li {
	display: inline;
}

header nav ul li:first-child {
	margin-left: 0;
}

header nav ul li a {
	color: #FFF;
	text-decoration: none;
	padding: 0 17px;
	-webkit-transition: 0.3s;
	-moz-transition: 0.3s;
	transition: 0.3s;
	position: relative;
	border-radius: 3px;
}

header nav ul li:nth-of-type(9) a {
	background: #F06;
	padding: 10px 17px;
}

header nav ul li:nth-of-type(9) a:hover {
	background: #AB004F;
}

header nav ul li a:hover {
	padding: 10px 17px;
	background: #00BCD4;
}

.current-page {
	background: #666;
	padding: 10px 17px;
	color: #FFF;
	border-radius: 3px;
}

.header-social {
	float: left;
	margin: 0 0 0 15px;
	border-left: 1px solid #666;
}

.header-social-icon {
	width: 60px;
	float: left;
	position: relative;
	margin-top: 6px;
}

.hover-effect {
	display: none;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 100;
}

.language-container {
	float: right;
	width: 88px;
	margin: 25px 15px 0 15px;
}

.language-container img {
	float: left;
}

.language-container .separator {
	display: block;
	float: left;
	font-family: "bebasneue", sans-serif;
	font-size: 20px;
	color: #999;
}

@media screen and (min-width: 1600px) {
.header-content {
	width: 1600px;
	float: none;
	margin: 0 auto;
}
}

@media screen and (max-width: 1439px) {
header nav ul li a {
	padding: 0 15px;
}

header nav ul li a:hover,
header nav ul li:nth-of-type(9) a,
.current-page	{
	padding: 10px 15px;
}
}

@media screen and (max-width: 1400px) {
header {
	height: 69px;
}

.header-logo {
	margin: 5px 0 0 0;
}

.header-logo img {
	width: 100px;
	margin-top: 5px;
}

header nav {
	font-size: 18px;
	margin: 9px 0 0 0;
}

.header-social-icon {
	width: 50px;
}
}

@media screen and (max-width: 1265px) {
header nav {
	font-size: 17px;
	margin: 11px 0 0 0;
}

.header-social {
	display: none;
}

.language-container {
	margin: 28px 0 0 0;
	width: 80px;
}

.language-container .separator {
	font-size: 17px;
}

.language-container img {
	width: 25px;
}
}

@media screen and (max-width: 1023px) {
.header-logo {
	display: none;
}

.header-mobile-logo {
	display: block;
	float: left;
	margin: 0 0 0 10px;
}

.language-container {
	float: left;
	margin: 11px 0 0 25px;
}

.current-page {
	background: #333;
	display: block;
	float: left;
	width: 90%;
	padding: 1em 5%;
	margin: 0;
	text-align: left;
	color: #fff;
	border-top: 1px solid #383838;
	border-top: 1px solid rgba(255,255,255,0.5);
	text-decoration: none;
	text-transform: uppercase;
	border-radius: 0;
}
}




/* Home
-----------------------------------------------------------------------------------------------------------------------------
-----------------------------------------------------------------------------------------------------------------------------
-----------------------------------------------------------------------------------------------------------------------------
-----------------------------------------------------------------------------------------------------------------------------
----------------------------------------------------------------------------------------------------------------------------*/
.home-logo {
	width: 450px;
	height: 450px;
	position: absolute;
	left: 50%;
	top: 50%;
	margin: -225px 0 0 -225px;
	z-index: 1000;
	background: rgba(0, 0, 0, 0.25);
	border-radius: 50%;
}

.home-logo img {
	display: block;
	float: none;
	margin: 70px auto 0 auto;
}

.home-logo h1 {
	text-indent: -9999px;
}

.home-logo h2 {
	font-size: 32px;
	font-family: "bebasneue", sans-serif;
	color: #FFF;
	text-align: center;
	margin: 0 0 15px 0;
}

.button {
	font-family: "bebasneue", sans-serif;
	font-size: 25px;
	position: absolute;
	left: 0;
	right: 0;
	bottom: 50px;
	margin: auto;
	color: #FFF;
	text-decoration: none;
	cursor: pointer;
	border: 2px solid #FC0;
	height: 2.5em;
	width: 200px;
	height: 62px;
	outline: none;
	overflow: hidden;
	border-radius: 3px;
}

.button span {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	margin: auto;
	border-radius: 50%;
	display: block;
	width: 20em;
	height: 20em;
	line-height: 20em;
	left: -6em;
	text-align: center;
	-webkit-transition: box-shadow 0.5s ease-out, color 0.3s 0.1s ease-out;
	transition: box-shadow 0.5s ease-out, color 0.3s 0.1s ease-out;
}

.button span:hover {
	color: #000;
	box-shadow: inset 0 0 0 10em #FC0;
}

.relative-button {
	float: left;
	position: relative;
	margin: 0;
	width: 200px;
	height: 62px;
	margin: 25px 0 0 5px;
}

.relative-button .button {
	bottom: 0;
}

@media screen and (max-width: 1023px) {
.home-logo {
	width: 350px;
	height: 350px;
	margin: -195px 0 0 -175px;
}

.home-logo img {
	width: 200px;
}

.home-logo h2 {
	font-size: 22px;
}
}

@media screen and (max-width: 768px) {
.home-logo {
	width: 300px;
	height: 300px;
	margin: -175px 0 0 -150px;
}

.home-logo img {
	margin: 30px auto 0 auto;
	width: 150px;
}

.home-logo .button {
	width: 150px;
	height: 47px;
}

.home-logo .button span {
	left: -5.95em;
	font-size: 18px;
}
}

@media screen and (max-width: 767px) {
.home-logo {
	width: 250px;
	height: 250px;
	margin: -125px 0 0 -125px;
}

.home-logo h2 {
	font-size: 16px;
}

.home-logo .button {
	bottom: 40px;
}
}




/* Diagonal
================================================== */
.diagonal-reset {
	position: relative;
	padding: 0 10%;
}

.diagonal-reset::before,
.diagonal-reset::after {
	position: absolute;
	content: '';
	pointer-events: none;
}

.diagonal {
	z-index: 2000;
	padding-top: 6em;
	background: #f4f6f8;
	box-shadow: 0 -4px 2px -2px rgba(0,0,0,0.4);
}

.diagonal::before,
.diagonal::after {
	top: 0;
	left: -25%;
	z-index: 1;
	width: 150%;
	height: 75%;
	background: inherit;
	-webkit-transform: rotate(-2deg);
	transform: rotate(-2deg);
	-webkit-transform-origin: 0 0;
	transform-origin: 0 0;
}

.diagonal::before {
	height: 50%;
	background: #FC0;
	-webkit-transform: rotate(-3deg);
	transform: rotate(-3deg);
	-webkit-transform-origin: 3% 0;
	transform-origin: 3% 0;
}

@media only screen and (min-device-width : 768px) and (max-device-width : 1024px) {
.diagonal::before,
.diagonal::after {
	-webkit-transform: rotate(-1deg);
	transform: rotate(-1deg);
}

.diagonal::before {
	-webkit-transform: rotate(-2deg);
	transform: rotate(-2deg);
	-webkit-transform-origin: 2% 0;
	transform-origin: 2% 0;
}
}

@media screen and (max-width: 767px) {
.diagonal-reset {
	display: none;
}
}


/* Home Introduction
================================================== */
.introduction {
	width: 100%;
	overflow: hidden;
	background: #f4f6f8;
	padding-bottom: 100px;
}

h1.home-introduction {
	width: 350px;
}

.content {
	width: 80%;
	float: none;
	margin: 0 auto;
}

.content-block {
	float: left;
	width: 50%;
	padding: 0 20px;
	position: relative;
}

.content-block img {
	width: 100%;
}

.content-block h1,
.content-block h2 {
	font-size: 40px;
	font-family: 'Covered By Your Grace', cursive;
	color: #212121;
	text-align: left;
	margin: 0 0 20px 0;
}

.content-block p {
	font-size: 21px;
	font-family: Tahoma, Geneva, sans-serif;
	color: #666;
	line-height: 27px;
	padding-left: 5px;
}

.content-block span {
	font-weight: bold;
	color: #212121;
}

.content-block:nth-of-type(2) h2 {
	text-align: right;
}

.top-space {
	height: 150px;
}

@media screen and (max-width: 1360px) {
.van-block {
	margin-top: 50px;
}
}

@media screen and (max-width: 1200px) {
.introduction {
	padding-bottom: 50px;
}

h1.home-introduction {
	width: auto;
}

.content {
	max-width: 750px;
}

.content-block {
	width: 100%;
}

.content-block h2,
.content-block:nth-of-type(2) h2 {
	text-align: center;
}

.content-block p {
	padding-left: 0;
}

.van-block {
	margin-top: 0;
}

.van-block img {
	width: 600px;
	float: none;
	margin: 25px auto;
	display: block;
}
}

@media screen and (max-width: 768px) {
.content {
	max-width: inherit;
	width: 90%;
}

.van-block img {
	max-width: 600px;
	width: 100%;
}
}

@media screen and (max-width: 767px) {
.content-block h1,
.content-block h2 {
	font-size: 30px;
}

.content-block p {
	font-size: 16px;
	line-height: 22px;
}

.content {
	padding: 50px 0;
}

.content-block {
	padding: 0;
}
}

@media screen and (max-width: 480px) {
.content-block h1,
.content-block h2,
.content-block:nth-of-type(2) h2,
.content-block p {
	text-align: left;
}
}


/* Home Three Blocks
================================================== */
.three-blocks {
	width: 100%;
	overflow: hidden;
}

.three-blocks figure {
	position: relative;
	float: left;
	overflow: hidden;
	min-width: 320px;
	max-width: 33.333333%;
	max-height: 380px;
	width: 48%;
	height: auto;
	background-color: #000;
	text-align: center;
	cursor: pointer;
	border-left: 1px solid #FFF;
}

.three-blocks figure:nth-of-type(1) {
	border-left: none;
}

.three-blocks figure figcaption {
	padding: 2em;
	color: #fff;
	text-transform: uppercase;
	font-size: 1.25em;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
}

.three-blocks figure figcaption > a {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.three-blocks figure figcaption::before,
.three-blocks figure figcaption::after {
	pointer-events: none;
}

.three-blocks figure img {
	position: relative;
	display: block;
	width: 100%;
	opacity: 0.9;
	-webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
	transition: opacity 0.35s, transform 0.35s;
	-webkit-transform: scale(1);
	transform: scale(1);
}

.three-blocks figure:hover img {
	opacity: 0.5;
	-webkit-transform: scale(1.15);
	transform: scale(1.15);
}

.three-blocks figure h2 {
	font-size: 45px;
	font-family: 'Covered By Your Grace', cursive;
	margin: 5% 5% 6% 5%;
	-webkit-transition: -webkit-transform 0.35s;
	transition: transform 0.35s;
	-webkit-transform: translate3d(0,20px,0);
	transform: translate3d(0,20px,0);
}

.three-blocks figure:hover h2 {
	-webkit-transform: translate3d(0,0,0);
	transform: translate3d(0,0,0);
}

.three-blocks figure .button {
	margin: 0 auto;
	opacity: 0;
	bottom: 0;
	width: 176px;
	height: 55px;
	font-size: 20px;
	-webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
	transition: opacity 0.35s, transform 0.35s;
	-webkit-transform: translate3d(0,20px,0) scale(1.1);
	transform: translate3d(0,20px,0) scale(1.1);
}

.three-blocks figure:hover .button {
	opacity: 1;
	-webkit-transform: translate3d(0,0,0) scale(1);
	transform: translate3d(0,0,0) scale(1);
}

.three-blocks figure .button span {
	left: -5.7em;
}

@media screen and (max-width: 1366px) {
.three-blocks figure h2 {
	font-size: 35px;
}
}

@media screen and (max-width: 1280px) {
.three-blocks figure .button {
	bottom: -20px;
}
}

@media screen and (max-width: 1200px) {
.three-blocks figure h2 {
	margin: 3%;
}

.three-blocks figure .button {
	width: 150px;
	height: 47px;
	bottom: -10px;
}

.three-blocks figure .button span {
	left: -5.95em;
	font-size: 18px;
}
}

@media screen and (max-width: 959px) {
.three-blocks figure {
	display: none;
}

.three-blocks figure h2 {
	font-size: 25px;
}
}

@media screen and (max-width: 480px) {
.three-blocks figure {
	display: block;
	min-width: inherit;
	max-width: inherit;
	width: 100%;
	height: 200px;
	border-left: none;
}
}

/* Home Custom Tour
================================================== */
.custom-tour-diagonal {
	background: #212d3d;
}

.custom-tour {
	background: #212d3d;
	width: 100%;
	overflow: hidden;
	padding-bottom: 100px;
}

.custom-tour h1,
.custom-tour h2 {
	color: #FFF;
}

.custom-tour p {
	color: #999;
}

.custom-tour span {
	color: #FFF;
}

.custom-tour .button {
	bottom: 0;
}

@media screen and (max-width: 1200px) {
.custom-tour .van-block h1 {
	text-align: center;
	margin-top: 25px;
}

.custom-tour .button {
	bottom: 0;
}

.custom-tour .relative-button {
	float: none;
	margin: 45px auto 0 auto;
}
}

@media screen and (max-width: 767px) {
.custom-tour .van-block img {
	margin: 0 auto 25px auto;
}
}

@media screen and (max-width: 480px) {
.custom-tour .van-block h1 {
	text-align: left;
}
}


/* Home Newsletter
================================================== */
.newsletter {
	width: 100%;
	height: 500px;
	background: url(../img/earth-wind-wine-newsletter.jpg) center center;
	position: relative;
}

.newsletter h1 {
	font-size: 70px;
	font-family: 'Covered By Your Grace', cursive;
	color: #000;
	text-align: right;
	padding: 140px 120px 0 0;
}

.newsletter h2 {
	font-size: 40px;
	font-family: "bebasneue", sans-serif;
	color: #000;
	text-align: right;
	padding: 0 120px 0 0;
}

.newsletter #mce-EMAIL {
	float: right;
	margin: 25px 120px 0 0;
	height: 50px;
	width: 350px;
	padding: 0 10px;
	border: 2px solid #323840;
	background: #FFF;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 18px;
	color: #333;
	-moz-transition: all 0.3s;
	-o-transition: all 0.3s;
	-webkit-transition: all 0.3s;
	transition: all 0.3s;
	outline: none;
	border-radius: 3px;
}

.newsletter .button {
	margin: 0;
	top: 350px;
	left: auto;
	right: 120px;
	bottom: 0;
	border: 2px solid #212d3d;
}

.newsletter input[type="submit"] {
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	margin: auto;
	border-radius: 50%;
	width: 20em;
	height: 20em;
	left: -6.1em;
	color: #212d3d;
	background: none;
	-webkit-transition: box-shadow 0.5s ease-out, color 0.3s 0.1s ease-out;
	transition: box-shadow 0.5s ease-out, color 0.3s 0.1s ease-out;
}

.newsletter input[type="submit"]:hover {
	color: #FC0;
	box-shadow: inset 0 0 0 10em #212d3d;
}

@media screen and (max-width: 1200px) {
.newsletter {
	height: 400px;
	background: url(../img/earth-wind-wine-newsletter.jpg) center bottom;
	background-size: cover;
}

.newsletter h1 {
	font-size: 60px;
	padding: 80px 120px 0 0;
}

.newsletter .button {
	top: 290px;
}
}

@media screen and (max-width: 1023px) {
.newsletter h1 {
	font-size: 50px;
	padding: 80px 120px 0 0;
}

.newsletter .button {
	top: 290px;
}
}

@media screen and (max-width: 767px) {
.newsletter {
	display: none;
}
}




/* About Us
-----------------------------------------------------------------------------------------------------------------------------
-----------------------------------------------------------------------------------------------------------------------------
-----------------------------------------------------------------------------------------------------------------------------
-----------------------------------------------------------------------------------------------------------------------------
----------------------------------------------------------------------------------------------------------------------------*/
.about-us {
	padding: 100px 0 150px 0;
}

.about-us .content-block {
	text-align: center;
	float: none;
	width: 650px;
	margin: 0 auto;
}

.about-us .content-block img {
	float: none;
	margin: 0 auto 25px auto;
	display: block;
	width: 250px;
}

.about-us .content-block h1 {
	text-align: center;
}

.about-us-member:nth-of-type(3) {
	margin-right: 0;
}

.about-us-team {
	padding-bottom: 50px;
	overflow: hidden;
	width: 1150px;
}

.about-us-team h1 {
	font-size: 40px;
	font-family: 'Covered By Your Grace', cursive;
	color: #FFF;
	text-align: center;
	margin: 0 0 5px 0;
}

.about-us-team h2 {
	font-size: 32px;
	font-family: "bebasneue", sans-serif;
	color: #FFF;
	text-align: center;
	margin: 0 0 35px 0;
}

.about-us-team figure {
	position: relative;
	float: left;
	overflow: hidden;
	min-width: 350px;
	max-width: 350px;
	max-height: 350px;
	width: 48%;
	height: auto;
	background-color: #000;
	text-align: center;
	cursor: pointer;
}

.about-us-team figure:nth-of-type(1) {
	border-left: none;
}

.about-us-team figure figcaption {
	padding: 1em;
	color: #fff;
	text-transform: uppercase;
	font-size: 1.25em;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
}

.about-us-team figure figcaption > a {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.about-us-team figure figcaption::before,
.about-us-team figure figcaption::after {
	pointer-events: none;
}

.about-us-team figure img {
	position: relative;
	display: block;
	width: 100%;
	opacity: 0.9;
	-webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
	transition: opacity 0.35s, transform 0.35s;
	-webkit-transform: scale(1);
	transform: scale(1);
}

.about-us-team figure:hover img {
	opacity: 0.5;
}

.about-us-team figure h2 {
	font-size: 45px;
	font-family: 'Covered By Your Grace', cursive;
	margin: 50% 5% 10% 5%;
	-webkit-transition: -webkit-transform 0.35s;
	transition: transform 0.35s;
	-webkit-transform: translate3d(0,20px,0);
	transform: translate3d(0,20px,0);
}

.about-us-team figure:hover h2 {
	-webkit-transform: translate3d(0,0,0);
	transform: translate3d(0,0,0);
}

.about-us-team figure .button {
	margin: 0 auto;
	padding: 0.5em;
	opacity: 0;
	font-size: 20px;
	-webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
	transition: opacity 0.35s, transform 0.35s;
	-webkit-transform: translate3d(0,20px,0) scale(1.1);
	transform: translate3d(0,20px,0) scale(1.1);
	width: 176px;
	height: 55px;
} 

.about-us-team figure:hover .button {
	opacity: 1;
	-webkit-transform: translate3d(0,0,0) scale(1);
	transform: translate3d(0,0,0) scale(1);
}

.about-us-team figure .button span {
	left: -5.7em;
}

@media screen and (max-width: 1200px) {
.about-us-team {
	width: 960px;
	max-width: inherit;
}

.about-us-member {
	width: 285px;
	height: 285px;
	margin-right: 30px;
}

.about-us-team figure {
	min-width: inherit;
	max-width: inherit;
	max-height: inherit;
	width: 285px;
}
}

@media screen and (max-width: 1023px) {
.about-us .content-block {
	margin-top: -30px;
}

.about-us-team {
	width: 760px;
}

.about-us-member {
	width: 220px;
	height: 220px;
}

.about-us-team figure {
	width: 220px;
}
}

@media screen and (max-width: 768px) {
.about-us .content-block {
	width: 100%;
}
}

@media screen and (max-width: 767px) {
.about-us {
	padding: 0;
}

.about-us-team {
	padding-bottom: 0;
}

.about-us-team h1 {
	font-size: 30px;
}

.about-us-team {
	width: 100%;
}

.about-us-member {
	width: 100%;
	height: 100%;
	max-width: 350px;
}

.about-us-team figure {
	max-width: 350px;
	width: 90%;
	float: none;
	margin: 0 auto 30px auto;
}

.about-us-member:nth-of-type(3) {
	margin: 0 auto;
}

.about-us-team figure .button {
	bottom: -25px;
}
}

@media screen and (max-width: 480px) {
.about-us-team p {
	text-align: left;
}
}


/* Members
================================================== */
.member-1-wrapper,
.member-2-wrapper,
.member-3-wrapper {
	width: 100%;
	height: 100%;
	position: fixed;
	background: #212d3d;
	z-index: 20000;
	display: none;
	overflow: scroll;
	top: 0;
}

.close-member {
	position: relative;
	top: auto;
	right: auto;
	cursor: pointer;
	float: none;
	display: block;
	margin: 0 auto;
}

.close-member .button {
	bottom: 0;
	top: 200px;
}

.about-us-member {
	width: 350px;
	height: 350px;
	background: #9F0;
	float: left;
	margin-right: 50px;
	box-shadow: 0 4px 2px -2px rgba(0,0,0,0.4);
}

.member-1,
.member-2,
.member-3 {
	width: 650px;
	float: none;
	margin: 0 auto 0 auto;
	padding: 100px 0;
}

.member-1 img,
.member-2 img,
.member-3 img {
	display: block;
	margin: 0 auto;
	float: none;
	box-shadow: 0 4px 2px -2px rgba(0,0,0,0.4);
}

.member-1 h1,
.member-2 h1,
.member-3 h1 {
	font-size: 40px;
	font-family: 'Covered By Your Grace', cursive;
	color: #FFF;
	text-align: center;
	margin: 25px 0 5px 0;
}

.member-1 p,
.member-2 p,
.member-3 p {
	font-size: 21px;
	font-family: Tahoma, Geneva, sans-serif;
	color: #CCC;
	line-height: 27px;
	padding-left: 5px;
	text-align: center;
}

@media screen and (max-width: 768px) {
.member-1 p {
	font-size: 16px;
	line-height: 22px;
}
}

@media screen and (max-width: 767px) {
.member-1,
.member-2,
.member-3 {
	width: 90%;
	padding: 60px 0;
	min-height: 750px;
}

.member-1 img,
.member-2 img,
.member-3 img {
	max-width: 200px;
	width: 100%;
	float: none;
	margin: 0 auto 30px auto;
}

.close-member .button {
	top: 120px;
}
}

@media screen and (max-width: 480px) {
.member-1 p,
.member-2 p,
.member-3 p {
	text-align: left;
}
}


/* Tour
-----------------------------------------------------------------------------------------------------------------------------
-----------------------------------------------------------------------------------------------------------------------------
-----------------------------------------------------------------------------------------------------------------------------
-----------------------------------------------------------------------------------------------------------------------------
----------------------------------------------------------------------------------------------------------------------------*/
/* Tour Big Image
================================================== */
.big-image {
	width: 100%;
	background-size: cover;
	position: relative;
	background-repeat: no-repeat;
	background-position: center center;
	max-height: 100vh;
	overflow: hidden;
}

.big-image img {
	width: 100%;
}

.big-image-title {
	width: 450px;
	height: 170px;
	position: absolute;
	left: 50%;
	top: 50%;
	margin: -85px 0 0 -225px;
	z-index: 1000;
}

.big-image-title h1 {
	font-size: 90px;
	font-family: 'Covered By Your Grace', cursive;
	color: #FFF;
	text-align: center;
}

.big-image-title h2 {
	font-size: 32px;
	font-family: "bebasneue", sans-serif;
	color: #FFF;
	text-align: center;
	margin: 15px 0;
}

@media screen and (max-width: 767px) {
.big-image-title {
	width: 100%;
	left: 0;
	height: 105px;
	margin: -52px 0 0 0;
}

.big-image-title h1 {
	font-size: 50px;
}

.big-image-title h2 {
	font-size: 20px;
}
}



/* Tour Itinerary
================================================== */
.tour-section {
	width: 100%;
	background: #f4f6f8;
	padding: 30px 0 100px 0;
}

.itinerary {
	background: #212d3d;
	overflow: hidden;
	padding: 100px 0 0 0;
}

.itinerary img {
	width: auto;
	float: right;
	max-width: 100%;
}

.itinerary-slider-container {
	overflow: hidden;
	width: 100%;
	padding-top: 80px;
}

.territory-section {
	padding-bottom: 0;
}

.territory-section .itinerary-slider-container {
	margin-top: 80px;
}

.war-section {
	background: #f4f6f8 url(../img/earth-wind-wine-territory-04.jpg) 130% bottom no-repeat;
	height: 650px;
	margin-top: -100px;
}

.war-content {
	margin: 80px 0 0 -50px;
	width: 45%;
}

.sport-section {
	background: #212d3d url(../img/earth-wind-wine-territory-05.png) left top no-repeat;
	height: 500px;
}

.sport-content {
	float: right;
}

.sport-content ul {
	margin-left: 25px;
}

.sport-content li {
	color: #999;
	font-size: 21px;
	font-family: Tahoma, Geneva, sans-serif;
	line-height: 27px;
	padding-left: 5px;
	list-style-type: disc;
}

.accomodation-text-block {
	width: 750px;
	float: none;
	margin: -30px auto 0 auto;
}

.accomodation-image-block {
	margin-top: -30px;
	width: 40%;
}

.accomodation-gallery {
	padding-top: 0;
}

@media screen and (max-width: 1600px) {
.war-section {
	background: #f4f6f8 url(../img/earth-wind-wine-territory-04.jpg) 160% bottom no-repeat;
}
}

@media screen and (max-width: 1470px) {
.war-section {
	background: #f4f6f8 url(../img/earth-wind-wine-territory-04.jpg) 190% bottom no-repeat;
}

.war-content {
	margin: 80px 0 0 -100px;
}
}

@media screen and (max-width: 1420px) {
.war-section {
	background: #f4f6f8 url(../img/earth-wind-wine-territory-04.jpg) 400px bottom no-repeat;
}

.war-content {
	width: 550px;
}

img.territory-polaroids {
	margin-top: 50px;
	padding: 0;
}

.sport-content {
	margin-right: -130px;
}
}

@media screen and (max-width: 1200px) {
.war-section {
	background: #f4f6f8 url(../img/earth-wind-wine-territory-04.jpg) 430px bottom no-repeat;
}

.war-content {
	margin: 80px 0 0 -130px;
}

img.territory-polaroids {
	width: 500px;
	margin: 0 auto 50px auto;
	float: none;
	display: block;
}

img.territory-field {
	margin-bottom: 50px;
}

.sport-section {
	background: #212d3d url(../img/earth-wind-wine-territory-05.png) -200px top no-repeat;
}

.sport-content {
	width: 500px;
}
}

@media screen and (max-width: 1024px) {
.sport-section {
	background: #212d3d url(../img/earth-wind-wine-territory-05.png) -250px top no-repeat;
}
}

@media screen and (max-width: 1024px) {
.itinerary .relative-button {
	display: none;
}
}

@media screen and (max-width: 1023px) {
.top-space {
	height: 50px;
}

.territory-section {
	padding-bottom: 0;
}
}

@media screen and (max-width: 767px) {
.tour-section {
	padding: 0;
}

.territory-section {
	padding-bottom: 100px;
}

.accomodation-text-block {
	width: 100%;
	margin: 0 auto;
}

.top-space {
	display: none;
}

img.territory-polaroids {
	width: 100%;
	margin: 0 auto;
	max-width: 400px;
}

img.veneto {
	margin: 25px auto;
	float: none;
	display: block;
	max-width: 400px;
}

.war-section {
	background: #f4f6f8 url(../img/earth-wind-wine-territory-04.jpg) center bottom no-repeat;
	background-size: contain;
	height: 550px;
}

.war-content {
	margin: 0;
	padding: 0;
	width: 100%;
}

.sport-section {
	background: #212d3d url(../img/earth-wind-wine-territory-05.jpg) top center;
}

.sport-content {
	margin: 0;
	padding: 0;
	width: 100%;
}

.sport-content li {
	font-size: 16px;
	line-height: 22px;
	color: #FFF;
}

.sport-content ul {
	margin-left: 25px;
}
}



/* Tour Informations Tabs
================================================== */
.informations {
	background: #f4f6f8;
	padding: 30px 0 150px 0;
	overflow: hidden;
	margin-top: -25px;
}

.accomodation-informations {
	padding: 30px 0 50px 0;
}

.informations h1 {
	font-size: 50px;
	font-family: 'Covered By Your Grace', cursive;
	color: #212121;
	text-align: center;
	margin: 0 auto;
}

.informations h2 {
	font-size: 32px;
	font-family: "bebasneue", sans-serif;
	color: #212121;
	text-align: center;
	margin: 0 auto;
	border-bottom: 1px solid #CCC;
	padding-bottom: 10px;
	width: 80%;
	float: none;
}

.tabs {
	position: relative;
	overflow: hidden;
	margin: 0 auto;
	width: 100%;
	font-weight: 300;
	font-size: 1.25em;
	padding-top: 50px;
}

.tabs nav {
	text-align: center;
}

.tabs nav ul {
	position: relative;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: flex;
	margin: 0 auto;
	padding: 0;
	max-width: 1200px;
	list-style: none;
	-ms-box-orient: horizontal;
	-ms-box-pack: center;
	-webkit-flex-flow: row wrap;
	-moz-flex-flow: row wrap;
	-ms-flex-flow: row wrap;
	flex-flow: row wrap;
	-webkit-justify-content: center;
	-moz-justify-content: center;
	-ms-justify-content: center;
	justify-content: center;
}

.tabs nav ul li {
	position: relative;
	z-index: 1;
	display: block;
	margin: 0;
	text-align: center;
	-webkit-flex: 1;
	-moz-flex: 1;
	-ms-flex: 1;
	flex: 1;
}

.tabs nav a {
	position: relative;
	display: block;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	line-height: 1.5;
}

.tabs nav a span {
	vertical-align: middle;
	font-size: 0.8em;
	font-family: Tahoma, Geneva, sans-serif;
}

.tabs nav li.tab-current a {
	color: #74777b;
}

.tabs nav a:focus {
	outline: none;
}

.icon::before {
	z-index: 10;
	display: inline-block;
	margin: 0 0.4em 0 0;
	vertical-align: middle;
	text-transform: none;
	font-weight: normal;
	font-variant: normal;
	font-size: 1.3em;
	line-height: 1;
	speak: none;
	-webkit-backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

.icon-info::before {
	content: url(../img/icons/itinerary-info-info.svg);
}

.icon-shedule::before {
	content: url(../img/icons/itinerary-info-shedule.svg);
}

.icon-restaurant::before {
	content: url(../img/icons/itinerary-info-restaurant.svg);
}

.icon-hotel::before {
	content: url(../img/icons/itinerary-info-hotel.svg);
}

.icon-prosecco::before {
	content: url(../img/icons/itinerary-info-prosecco.svg);
}

.icon-included::before {
	content: url(../img/icons/itinerary-info-included.svg);
}

.icon-faq::before {
	content: url(../img/icons/itinerary-info-faq.svg);
}

/* Content */
.content-wrap {
	position: relative;
}

.content-wrap section {
	display: none;
	margin: 50px auto 0 auto;
	padding: 1em;
	max-width: 1200px;
	background: #FFF;
	overflow: hidden;
}

.content-wrap section.content-current {
	display: block;
}

/* Fallback */
.no-js .content-wrap section {
	display: block;
	padding-bottom: 2em;
	border-bottom: 1px solid rgba(255,255,255,0.6);
}

.no-flexbox nav ul {
	display: block;
}

.no-flexbox nav ul li {
	min-width: 15%;
	display: inline-block;
}

.tabs-style-circle {
	overflow: visible;
}

.tabs-style-circle nav li::before {
	position: absolute;
	top: 50%;
	left: 50%;
	margin: -85px 0 0 -85px;
	width: 170px;
	height: 170px;
	background: #dfe5eb;
	border-radius: 50%;
	content: '';
	opacity: 0;
	-webkit-transition: -webkit-transform 0.2s, opacity 0.2s;
	transition: transform 0.2s, opacity 0.2s;
	-webkit-transition-timing-function: cubic-bezier(0.7,0,0.3,1);
	transition-timing-function: cubic-bezier(0.7,0,0.3,1);
	-webkit-transform: scale3d(0,0,1);
	transform: scale3d(0,0,1);
}

.tabs-style-circle nav li.tab-current::before {
	opacity: 1;
	-webkit-transform: scale3d(1,1,1);
	transform: scale3d(1,1,1);
}

.tabs-style-circle nav a {
	overflow: visible;
	color: #74777b;
	font-weight: 700;
	font-size: 0.9em;
	line-height: 1.1;
	-webkit-transition: color 0.3s cubic-bezier(0.7,0,0.3,1); 
	transition: color 0.3s cubic-bezier(0.7,0,0.3,1);
}

.tabs-style-circle nav a span {
	display: inline-block;
}

.tabs-style-circle nav a span,
.tabs-style-circle .icon::before {
	-webkit-transition: -webkit-transform 0.3s cubic-bezier(0.7,0,0.3,1);
	transition: transform 0.3s cubic-bezier(0.7,0,0.3,1);
}

.tabs-style-circle nav a:hover,
.tabs-style-circle nav a:focus {
	color: #212121;
}

.tabs-style-circle nav li.tab-current a {
	color: #212121;
}

.tabs-style-circle .icon::before {
	display: block;
	margin: 0;
	pointer-events: none;
}

.tabs-style-circle nav li.tab-current .icon::before {
	-webkit-transform: translate3d(0,-4px,0);
	transform: translate3d(0,-4px,0);
}

@media screen and (max-width: 767px) {
.informations {
	padding: 30px 0 0 0;
	margin-top: 25px;
}

.informations h1 {
	font-size: 30px;
}

.informations h2 {
	font-size: 22px;
}

.accomodation-informations{
	margin-top: -25px;
}

.icon-info::before {
	content: url(../img/icons/itinerary-info-info-mobile.svg);
}

.icon-shedule::before {
	content: url(../img/icons/itinerary-info-shedule-mobile.svg);
}

.icon-restaurant::before {
	content: url(../img/icons/itinerary-info-restaurant-mobile.svg);
}

.icon-hotel::before {
	content: url(../img/icons/itinerary-info-hotel-mobile.svg);
}

.icon-prosecco::before {
	content: url(../img/icons/itinerary-info-prosecco-mobile.svg);
}

.icon-included::before {
	content: url(../img/icons/itinerary-info-included-mobile.svg);
}

.icon-faq::before {
	content: url(../img/icons/itinerary-info-faq-mobile.svg);
}

.tabs-style-circle nav li::before {
	margin: -70px 0 0 -70px;
	width: 140px;
	height: 140px;
}

.tabs-style-circle nav a {
	font-size: 15px;
}

.tabs-style-circle nav a span {
	margin-top: -25px;
}
}

@media screen and (max-width: 559px) {
.tabs nav {
	margin-left: -10px;
}

.tabs-style-circle nav li::before {
	display: none;
}

.tabs-style-circle nav li.tab-current span {
	background: #CCC;
	padding: 8px;
	border-radius: 3px;
}
}


/* Tour Informations Tabs Items
================================================== */
.itinerary-info-item {
	width: 33.333333%;
	float: left;
	padding: 0 30px;
	border-right: 1px solid #CCC;
	overflow: hidden;
	padding-bottom: 30px;
}

.itinerary-info-item:nth-of-type(3) {
	border-right: none;
}

#section-circle-1 .accomodation-info-item,
#section-circle-2 .itinerary-info-item,
#section-circle-3 .itinerary-info-item,
#section-circle-4 .itinerary-info-item,
#section-circle-5 .itinerary-info-item {
	width: 60%;
	float: none;
	border-bottom: none;
	border-right: none;
	margin: 0 auto;
	padding: 30px 0;
}


#section-circle-4 .service-info-item {
	width: 100%;
}

#section-circle-1 .accomodation-info-item,
#section-circle-3 .itinerary-info-item,
#section-circle-4 .itinerary-info-item,
#section-circle-5 .itinerary-info-item {
	border-bottom: none;
}

#section-circle-2 .itinerary-info-item:last-of-type {
	border-bottom: none;
}

#section-circle-4 .accomodation-info-item {
	width: 20%;
	float: left;
	padding: 30px;
	border-right: 1px solid #ddd;
	overflow: hidden;
	margin: 30px 0;
	height: 232px;
}

#section-circle-4 .accomodation-info-item:nth-of-type(5),
#section-circle-4 .accomodation-info-item:nth-of-type(10) {
	border-right: none;
}

.itinerary-info-item img {
	display: block;
	margin: 0 auto;
}

#section-circle-2 .itinerary-info-item h3 {
	text-align: left;
	color: #09C;
}

.itinerary-info-item h3,
#section-circle-2 .accomodation-info-item h3 {
	font-size: 35px;
	font-family: 'Covered By Your Grace', cursive;
	color: #212121;
	text-align: center;
	margin: 15px 0;
}

#section-circle-4 .accomodation-info-item h3 {
	font-size: 18px;
	line-height: 23px;
	font-family: Tahoma, Geneva, sans-serif;
}

.itinerary-info-item h4 {
	font-size: 18px;
	line-height: 23px;
	font-family: Tahoma, Geneva, sans-serif;
	color: #212121;
	margin: 10px 0;
	text-align: center;
	background: #f4f6f8;
	padding: 10px;
	font-weight: bold;
}

#section-circle-2 .itinerary-info-item h4,
#section-circle-3 .itinerary-info-item h4,
#section-circle-4 .itinerary-info-item h4,
#section-circle-5 .itinerary-info-item h4 {
	text-align: left;
	background: none;
	padding: 0;
}

.itinerary-info-item p {
	font-size: 18px;
	line-height: 23px;
	font-family: Tahoma, Geneva, sans-serif;
	color: #333;
	text-align: left;
	padding-bottom: 30px;
}

.itinerary-info-item span {
	font-weight: bold;
}

.itinerary-info-item ul {
	list-style-type: disc;
	display: block;
	font-size: 18px;
	line-height: 25px;
	font-family: Tahoma, Geneva, sans-serif;
	color: #333;
	text-align: left;
	padding: 0 0 30px 20px;
}

.itinerary-info-item li {
	margin-top: 25px;
}

.accordion h4 a {
	background: url(../img/icons/accordion-closed.svg) 0 10px no-repeat;
	display: block;
	padding: 30px 0 20px 50px;
	color: #212121;
	text-decoration: none;
	border-top: 1px solid #CCC;
	font-size: 16px;
}

.accordion h4:nth-of-type(1) a {
	border-top: none;
}

.accordion h4 a:hover {
	color: #000;
	cursor: pointer;
}

.accordion h4.open a {
	color: #19181e;
	background: url(../img/icons/accordion-opened.svg) 0 10px no-repeat;
}

.accordion h4:nth-of-type(1).open a {
	background: url(../img/icons/accordion-opened.svg) 0 10px no-repeat;
}

.accordion a {
	color: #19181e;
	text-decoration: underline;
}

.accordion p {
	padding-left: 50px;
}

.accomodation-mobile-faq {
	display: none;
}

@media only screen and (min-device-width : 320px) and (max-device-width : 1024px) {
.accordion a {
	color: #19181e !important;
	text-decoration: none !important;
}
}

@media screen and (max-width: 1023px) {
#section-circle-1 .accomodation-info-item,
#section-circle-2 .itinerary-info-item,
#section-circle-3 .itinerary-info-item,
#section-circle-4 .itinerary-info-item,
#section-circle-5 .itinerary-info-item {
	padding: 0;
	width: 100%;
	max-width: 650px;
}

.itinerary-info-item h4 {
	font-size: 16px;
}

.accordion h4 a {
	font-size: 14px;
	padding: 20px 0 10px 50px;
}

.itinerary-info-item p {
	font-size: 16px;
	line-height: 21px;
}

.itinerary-info-item ul {
	font-size: 16px;
	line-height: 23px;
}

.accordion h4 a,
.accordion h4:nth-of-type(1) a {
	background: url(../img/icons/accordion-closed.svg) 0 0 no-repeat;
}

.accordion h4.open a,
.accordion h4:nth-of-type(1).open a {
	background: url(../img/icons/accordion-opened.svg) 0 0 no-repeat;
}

#section-circle-4 .accomodation-info-item {
	height: 180px;
	width: 20%;
	padding: 10px;
}

#section-circle-4 .accomodation-info-item h3 {
	font-size: 14px;
	line-height: 19px;
}
}

@media screen and (max-width: 860px) {
.itinerary-info-item {
	padding: 0 10px;
}

.itinerary-info-item h4 {
	font-size: 16px;
	line-height: 21px;
}
}

@media screen and (max-width: 767px) {
.itinerary-info-item {
	width: 100%;
	max-width: 300px;
	float: none;
	margin: 0 auto;
	padding: 15px 30px 15px 30px;
	border-right: none;
	border-bottom: 1px solid #CCC;
}

.itinerary-info-item:nth-of-type(3) {
	border-bottom: none;
}

#section-circle-5,
.tabs-style-circle nav li:nth-of-type(5) {
	display: none;
}

.accomodation-mobile-faq {
	display: block;
	width: 100%;
	margin-top: 80px;
	float: none;
}

#section-circle-4 .accomodation-info-item {
	width: 25%;
}

#section-circle-4 .service-info-item img {
	width: 50%;
}

#section-circle-4 .accomodation-info-item:nth-of-type(5),
#section-circle-4 .accomodation-info-item:nth-of-type(10) {
	border-right: 1px solid #ddd;
}

#section-circle-4 .accomodation-info-item:nth-of-type(4),
#section-circle-4 .accomodation-info-item:nth-of-type(8),
#section-circle-4 .accomodation-info-item:nth-of-type(12) {
	border-right: none;
}
}

@media screen and (max-width: 480px) {
#section-circle-4 .accomodation-info-item {
	width: 33.333333%;
	height: 150px;
}

#section-circle-4 .accomodation-info-item:nth-of-type(4),
#section-circle-4 .accomodation-info-item:nth-of-type(8) {
	border-right: 1px solid #ddd;
}

#section-circle-4 .accomodation-info-item:nth-of-type(3),
#section-circle-4 .accomodation-info-item:nth-of-type(6),
#section-circle-4 .accomodation-info-item:nth-of-type(9) {
	border-right: none;
}

#section-circle-4 .accomodation-info-item h3 {
	font-size: 13px;
	line-height: 16px;
}

#section-circle-4 .service-info-item img {
	width: 60%;
}
}



/* Book Itinerary
================================================== */
.book-now {
	width: 100%;
	height: 500px;
	background-position: center center;
	background-repeat: no-repeat;
	position: relative;
	padding: 0;
}

.book-now-1 {
	background-image: url(../img/earth-wind-wine-tour-12.jpg);
}

.book-now-2 {
	background-image: url(../img/earth-wind-wine-tour-13.jpg);
}

.book-now h1 {
	font-size: 70px;
	font-family: 'Covered By Your Grace', cursive;
	color: #000;
	text-align: right;
	padding: 140px 120px 0 0;
}

.book-now h2 {
	font-size: 40px;
	font-family: "bebasneue", sans-serif;
	color: #000;
	text-align: right;
	padding: 0 120px 0 0;
}

.book-now .relative-button {
	float: right;
	margin: 25px 120px 0 0;
}

.book-now .button {
	border: 2px solid #212d3d;
	color: #212d3d;
}

.book-now .button span:hover {
	color: #FC0;
	box-shadow: inset 0 0 0 10em #212d3d;
}

@media screen and (max-width: 1200px) {
.book-now {
	height: 400px;
	background-position: center right;
	background-size: cover;
}

.book-now h1 {
	font-size: 60px;
	padding: 80px 120px 0 0;
}

.book-now .button {
	top: 0;
}
}

@media screen and (max-width: 1023px) {
.book-now h1 {
	font-size: 50px;
	padding: 80px 80px 0 0;
}

.book-now h2 {
	padding: 0 80px 0 0;
}

.book-now .relative-button {
	margin: 25px 80px 0 0;
}
}

@media screen and (max-width: 768px) {
.book-now-1 {
	background-position: -430px center;
}
}

@media screen and (max-width: 767px) {
.book-now {
	display: none;
}
}


/* Map
================================================== */
.map-wrapper {
	width: 100%;
	height: 100%;
	position: fixed;
	margin-top: -200%;
	-webkit-transition: all 0.75s ease-in-out;
	-moz-transition: all 0.75s ease-in-out;
	-o-transition: all 0.75s ease-in-out;
	transition: all 0.75s ease-in-out;
	z-index: 7000;
}

#map {
	width: 80%;
	height: 100%;
}

#side_bar-container-wrapper {
	width: 20%;
	background-color: #273548;
	position: fixed;
	top: 0;
	right: 0;
	height: 100%;
	box-shadow: inset 7px 0 9px -7px rgba(0,0,0,0.4);
	margin-top: -200%;
	-webkit-transition: all 0.75s ease-in-out;
	-moz-transition: all 0.75s ease-in-out;
	-o-transition: all 0.75s ease-in-out;
	transition: all 0.75s ease-in-out;
}

#side_bar-container-wrapper h1 {
	padding: 40px 0 10px 0;
	color: #FC0;
	font-family: "bebasneue", sans-serif;
	font-size: 22px;
	text-align: center;
}

#side_bar-container-wrapper p {
	font-size: 16px;
	line-height: 19px;
	font-family: Tahoma, Geneva, sans-serif;
	color: #ccc;
	text-align: center;
	padding: 0 20px;
	margin-bottom: 15px;
}

#side_bar {
	text-align: left;
}

#side_bar a {
	color: #FC0;
	font-family: "bebasneue", sans-serif;
	font-size: 22px;
	text-decoration: none;
	list-style-type: none;
	padding: 15px 13px;
	display: block;
	text-align: left;
	line-height: 22px;
	text-align: center;
	width: 50%;
	float: left;
	border-bottom: 1px solid #0f151c;
	border-right: 1px solid #0f151c;
	-webkit-transition: 0.3s;
	-moz-transition: 0.3s;
	transition: 0.3s;
}

#side_bar a:nth-of-type(even) {
	border-right: none;
}

#side_bar a:hover {
	background-color: #0f151c;
	color: #FFF;
}

#side_bar > br {
	display: none;
}

.stage {
	font-size: 17px;
	color: #CCC;
	-webkit-transition: 0.3s;
	-moz-transition: 0.3s;
	transition: 0.3s;
}

#side_bar a:hover .stage {
	color: #FFF;
}

.gm-style-iw {
	width: 300px !important;
	padding: 5px 0 5px 5px;
}

#cd-zoom-in, #cd-zoom-out {
	height: 47px;
	width: 47px;
	cursor: pointer;
	margin-left: 10px;
	background-repeat: no-repeat;
	background-size: 40px 80px;
	-webkit-transition: all 0.3s;
	-moz-transition: all 0.3s;
	transition: all 0.3s;
	background: rgba(0, 0, 0, 0.5) url("../img/icons/map-controller.svg");
	border: 2px solid #FC0;
	margin-top: -100%;
	-webkit-transition: all 0.75s ease-in-out;
	-moz-transition: all 0.75s ease-in-out;
	-o-transition: all 0.75s ease-in-out;
	transition: all 0.75s ease-in-out;
	z-index: 8000;
}

.no-touch #cd-zoom-in:hover, .no-touch #cd-zoom-out:hover {
	background-color: #1e1f20;
	background-image: url("../img/icons/map-controller-hover.svg");
}

#cd-zoom-in:hover, #cd-zoom-out:hover {
	background-color: #1e1f20;
	background-image: url("../img/icons/map-controller-hover.svg");
}

.gm-style-iw {
	 overflow: hidden !important;
	 width: 400px;
}

#cd-zoom-in {
	position: fixed;
	background-position: 50% 0;
	right: 50px;
	bottom: 110px;
}

#cd-zoom-out {
	background-position: 50% -38px;
	position: fixed;
	right: 50px;
	bottom: 50px;
}

@-moz-document url-prefix() {
    #cd-zoom-out,
	#cd-zoom-in {
        right: 22%;
		display: none;
    }
}

@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
	#cd-zoom-out,
	#cd-zoom-in {
        right: 22%;
		display: none;
    }
}

.close-map {
	background: rgba(0, 0, 0, 0.5);
}

.adress-bold {
	font-family: "bebasneue", sans-serif;
	font-size: 22px;
	line-height: 20px;
	color: #333;
}

.adress-small {
	font-family: Tahoma, Geneva, sans-serif;
	font-size: 16px;
	line-height: 18px;
	color: #000;
	margin: 10px 0;
}

.adress-small a {
	font-family: Tahoma, Geneva, sans-serif !important;
	font-size: 14px !important;
	line-height: 16px !important;
	color: #333 !important;
	text-decoration: none !important;
}

.adress-small a:hover {
	text-decoration: underline !important;
}

@media only screen and (min-device-width : 768px) and (max-device-width : 1024px) {
#map {
	height: 120%;
}

#cd-zoom-in {
	bottom: 170px;
}

#cd-zoom-out {
	bottom: 110px;
}
}

@media screen and (max-width: 1280px) {
#map {
	width: 75%;
}

#side_bar-container-wrapper {
	width: 25%;
}

#side_bar-container-wrapper .button {
	width: 170px;
	height: 52px;
}

#side_bar-container-wrapper .button span {
	left: -6.63em;
}
}

@media screen and (max-width: 1023px) {
.map-wrapper {
	display: none;
}
}




/* Gallery Scrollbar
-----------------------------------------------------------------------------------------------------------------------------
-----------------------------------------------------------------------------------------------------------------------------
-----------------------------------------------------------------------------------------------------------------------------
-----------------------------------------------------------------------------------------------------------------------------
----------------------------------------------------------------------------------------------------------------------------*/
.nano {
  position : relative;
  width    : 100%;
  height   : 100%;
  overflow : hidden;
}

.nano > .nano-content {
  position      : absolute;
  overflow      : scroll;
  overflow-x    : hidden;
  top           : 0;
  right         : 0;
  bottom        : 0;
  left          : 0;
}

.nano > .nano-content:focus {
  outline: thin dotted;
}

.nano > .nano-content::-webkit-scrollbar {
  display: none;
}

.has-scrollbar > .nano-content::-webkit-scrollbar {
  display: block;
}

.nano > .nano-pane {
  background : rgba(0,0,0,.25);
  position   : absolute;
  width      : 10px;
  right      : 0;
  top        : 0;
  bottom     : 0;
  visibility : hidden\9;
  opacity    : .01;
  -webkit-transition    : .2s;
  -moz-transition       : .2s;
  -o-transition         : .2s;
  transition            : .2s;
  -moz-border-radius    : 5px;
  -webkit-border-radius : 5px;
  border-radius         : 5px;
  display: block !important;
}

.nano > .nano-pane > .nano-slider {
  background: #444;
  background: rgba(0,0,0,.5);
  position              : relative;
  margin                : 0 1px;
  -moz-border-radius    : 3px;
  -webkit-border-radius : 3px;
  border-radius         : 3px;
}

.nano:hover > .nano-pane, .nano-pane.active, .nano-pane.flashed {
  visibility : visible\9;
  opacity    : 0.99;
}

.nano {
	width: 100%;
	height: 65%;
	max-height: 550px;
	margin: 0 auto;
	background-color: #212d3d;
	box-shadow: inset 0 -7px 9px -7px rgba(0,0,0,0.4),
				inset 0 7px 9px -7px rgba(0,0,0,0.4);
}

.nano > .nano-content {
	padding: 0;
}

.nano > .nano-pane > .nano-slider {
	background: #FC0;
}

@media screen and (max-height: 850px) {
.nano {
	max-height: 450px;
}
}

@media screen and (max-height: 750px) {
.nano {
	max-height: 350px;
}
}




/* Contacts Map
-----------------------------------------------------------------------------------------------------------------------------
-----------------------------------------------------------------------------------------------------------------------------
-----------------------------------------------------------------------------------------------------------------------------
-----------------------------------------------------------------------------------------------------------------------------
----------------------------------------------------------------------------------------------------------------------------*/
#map-container {
	position: relative;
}

#contacts-map {
	position: relative;
	width: 100%;
	height: 569px;
	float: left;
}

#zoomControl {
	position: absolute;
	width: 95px;
	top: auto !important;
	left: 50% !important;
	margin: 0 0 0 -48px;
	right: 0;
	bottom: 5px;
}

#contacts-zoom-in, #contacts-zoom-out {
	height: 44px;
	width: 44px;
	float: left;
	cursor: pointer;
	background-color: #333;
	background-repeat: no-repeat;
	background-size: 40px 80px;
	background-image: url("../img/icons/contacts-map-controller.svg");
	border: 2px solid #000;
}

.no-touch #contacts-zoom-in:hover, .no-touch #contacts-zoom-out:hover {
	background-color: #000;
}

#contacts-zoom-in:hover, #contacts-zoom-out:hover {
	background-color: #000;
}

#contacts-zoom-in {
	background-position: 50% 0;
	margin-right: 5px;
}

#contacts-zoom-out {
	background-position: 50% -40px;
}

#contacts-map .gm-style-iw {
	 overflow: hidden !important;
	 width: 450px !important;
}

.gmnoprint a, .gmnoprint span {
		display:none;
}

.gmnoprint div {
		background:none !important;
}

a[href="https://maps.google.com/maps?ll=45.901987,12.334428&z=16&t=m&hl=it&gl=US&mapclient=apiv3"]{
		display:none !important;
}

a[title="Segnala errori nella mappa stradale o nelle altre mappe di Google"] {
		display: none !important;
}

@media only screen and (max-width: 1000px) {
#contacts-map {
	display: none;
}
}





/* Book Now
-----------------------------------------------------------------------------------------------------------------------------
-----------------------------------------------------------------------------------------------------------------------------
-----------------------------------------------------------------------------------------------------------------------------
-----------------------------------------------------------------------------------------------------------------------------
----------------------------------------------------------------------------------------------------------------------------*/
.book-form-container {
	width: 1300px;
	margin: 130px auto 100px auto;
}

.book-form-container h1 {
	font-size: 50px;
	font-family: 'Covered By Your Grace', cursive;
	color: #212121;
	text-align: center;
	margin: 0 auto;
}

.book-form-container h2 {
	font-size: 32px;
	font-family: "bebasneue", sans-serif;
	color: #212121;
	text-align: center;
	margin: 15px 0;
}

.book-form-container p {
	font-size: 20px;
	font-family: Tahoma, Geneva, sans-serif;
	color: #2b3e51;
	width: 550px;
	float: none;
	margin: 15px auto;
	line-height: 25px;
	text-align: center;
}

.form::after {
	clear: both;
	content: "";
	display: table;
}

.form fieldset {
	width: 600px;
	float: none;
	margin: 24px auto;
}

.form div {
	position: relative;
}

.form legend {
	text-align: left;
	font-size: 22px;
	font-family: "bebasneue", sans-serif;
	border-bottom: 1px solid #CCC;
	padding: 20px 0 5px 0;
	margin-bottom: 30px;
	width: 100%;
}

.form .label {
	font-size: 20px;
	color: #94aab0;
	margin-bottom: 10px;
}

.form .label {
	display: block;
}

.form input, .form textarea, .form select, .form label {
	font-family: "Open Sans", sans-serif;
	font-size: 20px;
	color: #2b3e51;
}

.form input[type="text"],
.form input[type="email"],
.form input[type="tel"],
.form input[type="date"],
.form textarea,
.form select {
	display: block;
	width: 100%;
	-webkit-appearance: none;
	-moz-appearance: none;
	-ms-appearance: none;
	-o-appearance: none;
	appearance: none;
}

.form input[type="text"],
.form input[type="email"],
.form input[type="tel"],
.form input[type="date"],
.form textarea,
.form select {
	padding: 12px;
	border: 1px solid #cfd9db;
	background-color: #ffffff;
	border-radius: .25em;
	box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.08);
}

.form input[type="text"]:focus,
.form input[type="email"]:focus,
.form input[type="tel"]:focus,
.form input[type="date"]:focus,
.form textarea:focus,
.form select:focus {
	outline: none;
	border-color: #2c97de;
	box-shadow: 0 0 5px rgba(44, 151, 222, 0.2);
}

.form .select {
	position: relative;
}

.form .select::after {
	content: '';
	position: absolute;
	z-index: 1;
	right: 16px;
	top: 50%;
	margin-top: -8px;
	display: block;
	width: 16px;
	height: 16px;
	background: url(../img/icons/book-input-arrow.svg) no-repeat center center;
	pointer-events: none;
}

.form select {
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
	cursor: pointer;
}

.form p.select {
	width: 600px;
}

.form select::-ms-expand {
	display: none;
}

.form textarea {
	min-height: 200px;
	resize: vertical;
	overflow: auto;
}

@media only screen and (max-width: 1300px) {
.book-form-container {
	width: 100%;
}
}

@media only screen and (min-width: 600px) {
.form .label {
	font-size: 20px;
	margin-bottom: 10px;
}

.form input[type="text"],
.form input[type="email"],
.form input[type="tel"],
.form input[type="date"],
.form textarea,
.form select {
	padding: 16px;
}
}

@media only screen and (max-width: 1300px) {
.book-form-container p {
	width: 100%;
	max-width: 600px;
}
}

@media only screen and (max-width: 1023px) {
.book-form-container {
	margin: 50px auto 0 auto;
}
}

@media only screen and (max-width: 767px) {
.book-form-container p {
	width: 90%;
	font-size: 16px;
	line-height: 21px;
	max-width: 600px;
}

.book-form-container h1 {
	width: 90%;
	max-width: 600px;
	float: none;
}

.book-form-container h2 {
	width: 90%;
	max-width: 600px;
	float: none;
	margin: 15px auto;
}

.form fieldset {
	width: 90%;
}

.form p.select {
	width: 100%;
}

.form input, .form textarea, .form select, .form label {
	font-size: 16px;
	top: 18px;
}

.form select {
	line-height: 20px;
}
}

/* Anti Spam Trick
================================================== */
.as-trick {
	display:none;
	position: absolute;
	top: 0;
	left: -300px;
}


/* Book Button
================================================== */
.book-form-button {
	position: relative;
	float: right;
	margin: -15px 0 0 0 !important;
}

.book-form-button .button {
	margin: 0;
	bottom: 0;
	padding: 0.5em;
	font-size: 20px;
	width: 210px;
	height: 60px;
	font-weight: bold;
	border: none;
	border-radius: 3px;
}

.book-form-button input[type="submit"] {
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	margin: auto;
	border-radius: 50%;
	width: 20em;
	height: 20em;
	left: -4.15em;
	color: #FFF;
	background: #F06;
	-webkit-transition: box-shadow 0.5s ease-out, color 0.3s 0.1s ease-out;
	transition: box-shadow 0.5s ease-out, color 0.3s 0.1s ease-out;
	padding: 0.5em;
	font-size: 18px;
}

.book-form-button input[type="submit"]:hover {
	color: #FFF;
	box-shadow: inset 0 0 0 10em #AB004F;
	border: 2px solid #AB004F;
}

@media only screen and (max-width: 767px) {
.book-form-button {
	float: none;
	width: 210px;
	margin: 120px auto 0 auto !important;
}
}


/* Custom icons
================================================== */
.form .icon input, .form .icon select, .form .icon textarea {
	padding-left: 54px !important;
}

.form .name,
.form .surname {
	background: #ffffff url(../img/icons/book-input-user.svg) no-repeat 16px center;
}

.form .telephone {
	background: #ffffff url(../img/icons/book-input-telephone.svg) no-repeat 16px center;
}

.form .email {
	background: #ffffff url(../img/icons/book-input-email.svg) no-repeat 16px center;
}

.form .persons {
	background: #ffffff url(../img/icons/book-input-adults.svg) no-repeat 16px center;
}

.form .arrival-date,
.form .departure-date {
	background: #ffffff url(../img/icons/book-input-date.svg) no-repeat 16px center;
}

.form .message {
	background: #ffffff url(../img/icons/book-input-message.svg) no-repeat 16px 16px;
}


/* Valid / Invalid Inputs
================================================== */
.form input.error,
.form textarea.error {
	border: 1px solid #F00;
}

.form label.error {
	font-family: Tahoma, Geneva, sans-serif;
	color: #F00;
	text-align: right;
	float: right;
	font-size: 18px;
	display: inline-block;
	top: 13px;
	right: 12%;
}

.form input.valid,
.form textarea.valid {
	background: #FFF url(../img/icons/input-checked.gif) no-repeat right center;
}

.form input.name.valid,
.form input.surname.valid {
	background-image: url(../img/icons/input-checked.gif), url(../img/icons/book-input-user.svg);
	background-position: right center, 16px center;
	background-repeat: no-repeat;
}

.form input.telephone.valid {
	background-image: url(../img/icons/input-checked.gif), url(../img/icons/book-input-telephone.svg);
	background-position: right center, 16px center;
	background-repeat: no-repeat;
}

.form input.email.valid {
	background-image: url(../img/icons/input-checked.gif), url(../img/icons/book-input-email.svg);
	background-position: right center, 16px center;
	background-repeat: no-repeat;
}

.form input.arrival-date.valid,
.form input.departure-date.valid {
	background-image: url(../img/icons/input-checked.gif), url(../img/icons/book-input-date.svg);
	background-position: right center, 16px center;
	background-repeat: no-repeat;
}

.form textarea.message.valid {
	background-image: url(../img/icons/input-checked.gif), url(../img/icons/book-input-message.svg);
	background-position: right center, 16px 16px;
	background-repeat: no-repeat;
}


/* FLoating labels
================================================== */
.js .floating-labels div {
	margin: 35px 0;
}

.js .floating-labels .label {
	position: absolute;
	top: 20px;
	left: 16px;
	font-size: 20px;
	cursor: text;
	-webkit-transition: top 0.2s, left 0.2s, font-size 0.2s;
	-moz-transition: top 0.2s, left 0.2s, font-size 0.2s;
	transition: top 0.2s, left 0.2s, font-size 0.2s;
}

.js .floating-labels .icon .label {
	left: 56px;
}

.js .floating-labels .label.float {
	top: -20px;
	left: 0;
}

@media only screen and (max-width: 767px) {
.js .floating-labels .label {
	font-size: 16px;
	top: 16px;
}
}


/* Privacy Checkbox
================================================== */
.icheckbox_square-green {
	display: inline-block;
	*display: inline;
	vertical-align: middle;
	padding: 0;
	width: 33px;
	height: 33px;
	background: url(../img/icons/checkbox-unchecked.png) no-repeat;
	background-position: 0 0;
	border: none;
	border-radius: 0;
	cursor: pointer;
	margin: 0 !important;
	float: left;
	-webkit-appearance: none;
	-moz-appearance: none;
}

.icheckbox_square-green.hover {
	background: url(../img/icons/checkbox-unchecked.png) no-repeat;
}

.icheckbox_square-green.checked {
	background: url(../img/icons/checkbox-checked.png) no-repeat;
}

.checkbox label {
	font-family: 'Lato', sans-serif;
	color: #323840;
	font-size: 15px;
	text-align: left;
	margin: 2px 0 0 8px;
	float: left;
	padding: 0;
}

label[for=privacy] {
	margin: 2px 0 0 11px;
	width: 450px;
}

.checkbox label.error {
	display: none !important;
}

.checkbox label a {
	color: #323840;
}

.custom-checkbox input[type="checkbox"] {
	clear: left;
	margin-bottom: 15px !important;
}

.custom-checkbox label {
	font-size: 18px;
	color: #323840;
	margin-top: 8px;
}

@media only screen and (max-width: 560px) {
label[for=privacy] {
	width: 90%;
	margin: -32px 0 0 40px;
}
}


/* Form Response
================================================== */
.form-response {
	display: none;
	width: 100%;
	height: 100%;
	position: fixed;
	background: #212d3d;
	z-index: 12000;
}

.response-message {
	font-family: Tahoma, Geneva, sans-serif;
	font-size: 25px;
	text-align: center;
	color: #FFF;
	font-weight: 400;
	line-height: 29px;
	margin: 17.5% auto 0 auto;
	padding: 0 20px;
}

#success {
	width: 200px;
	height: 200px;
	margin: 0 auto 25px auto;
	float: none;
	background-image: url(../img/icons/form-success.svg);
}

#fail {
	width: 200px;
	height: 200px;
	margin: 0 auto 25px auto;
	float: none;
	background-image: url(../img/icons/form-fail.svg);
}

@media only screen and (max-width: 480px) {
.response-message {
	margin: 10% auto 0 auto;
	font-size: 20px;
	line-height: 24px;
}
}




/* Custom Tour
-----------------------------------------------------------------------------------------------------------------------------
-----------------------------------------------------------------------------------------------------------------------------
-----------------------------------------------------------------------------------------------------------------------------
-----------------------------------------------------------------------------------------------------------------------------
----------------------------------------------------------------------------------------------------------------------------*/
.custom-tour-page {
	width: 1300px;
	padding: 0 50px 50px 50px;
	background: #eaeff1;
	height: 1420px;
}

.custom-tour-page + h2 {
	margin: 80px 0 15px 0;
}

.custom-tour-page-container .form fieldset.custom-checkbox {
	float: left;
	width: 370px;
	margin: 24px 45px 0 0;
}

.custom-checkbox .checkbox {
	width: 100%;
	height: 33px;
	margin: 15px 0 !important;
}

.custom-tour-page-container .form fieldset.custom-checkbox:nth-of-type(4),
.custom-tour-page-container .form fieldset.custom-checkbox:nth-of-type(5),
.custom-tour-page-container .form fieldset.custom-checkbox:nth-of-type(6) {
	margin: 24px 45px 0 0;
	min-height: 500px;
}


.custom-tour-page-container .form fieldset.custom-checkbox:nth-of-type(3),
.custom-tour-page-container .form fieldset.custom-checkbox:nth-of-type(6),
.custom-tour-page-container .form fieldset.custom-checkbox:nth-of-type(9) {
	margin: 24px 0 0 0;
}

.custom-tour-page-container .form fieldset.custom-checkbox legend {
	margin-bottom: 0;
}

.custom-tour-page-container .form fieldset.custom-checkbox:nth-of-type(1),
.custom-tour-page-container .form fieldset.custom-checkbox:nth-of-type(2),
.custom-tour-page-container .form fieldset.custom-checkbox:nth-of-type(3) {
	min-height: 400px;
}

@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
	.tooltip-content {
		display: none;
	}
}

@media only screen and (max-width: 1410px) {
.tooltip-item {
	font-size: 16px;
}
}

@media only screen and (max-width: 1300px) {
.custom-tour-page {
	width: 100%;
}

.custom-tour-page-container .form fieldset.custom-checkbox {
	width: 30%;
	margin: 24px 3% 0 0;
}

.custom-tour-page-container .form fieldset.custom-checkbox:nth-of-type(4),
.custom-tour-page-container .form fieldset.custom-checkbox:nth-of-type(5),
.custom-tour-page-container .form fieldset.custom-checkbox:nth-of-type(6),
.custom-tour-page-container .form fieldset.custom-checkbox:nth-of-type(3),
.custom-tour-page-container .form fieldset.custom-checkbox:nth-of-type(6),
.custom-tour-page-container .form fieldset.custom-checkbox:nth-of-type(9) {
	margin: 24px 3% 0 0;
}

.tooltip-item {
	font-size: 15px;
}
}

@media only screen and (max-width: 1100px) {
.custom-tour-page {
	padding: 0 30px 50px 30px;

}

.custom-tour-page-container .form fieldset.custom-checkbox {
	width: 30%;
	margin: 24px 3% 0 0;
}

.tooltip-item {
	font-size: 14px;
}
}

@media only screen and (max-width: 1023px) {
.custom-tour-page {
	padding: 0 20px 50px 20px;
	height: auto;
	overflow: hidden;
}

.custom-tour-page-container .form fieldset.custom-checkbox {
	width: 48.5%;
	margin: 24px 3% 0 0;
}

.custom-tour-page-container .form fieldset.custom-checkbox:nth-of-type(2),
.custom-tour-page-container .form fieldset.custom-checkbox:nth-of-type(4),
.custom-tour-page-container .form fieldset.custom-checkbox:nth-of-type(6),
.custom-tour-page-container .form fieldset.custom-checkbox:nth-of-type(8),
.custom-tour-page-container .form fieldset.custom-checkbox:nth-of-type(10),
.custom-tour-page-container .form fieldset.custom-checkbox:nth-of-type(12) {
	margin: 24px 0 0 0;
}
}

@media only screen and (max-width: 640px) {
.custom-tour-page {
	padding: 0 20px 20px 20px;
	height: auto;
	overflow: hidden;
}

.custom-tour-page-container .form fieldset.custom-checkbox {
	width: 100%;
	margin: 24px 0 0 0 !important;
	overflow: hidden;
	min-height: inherit !important;
}

.tooltip-item {
	font-size: 13px;
}

.tooltip-content {
	display: none;
}

.custom-tour-page + h2 {
	margin: 50px auto 15px auto;
}
}

/* Custom Tour Steps
================================================== */
.custom-tour-steps {
	width: 1000px;
	margin: 50px auto;
	overflow: hidden;
}

.custom-tour-step {
	float: left;
	width: 33.333333%;
	overflow: hidden;
}

.custom-tour-step img {
	float: left;
}

.custom-tour-step h3 {
	font-size: 22px;
	font-family: "bebasneue", sans-serif;
	color: #000;
	margin-top: 30px;
}

.custom-tour-step:last-of-type {
	float: none;
	clear: both;
	margin: 0 auto;
	padding-top: 20px;
}

.custom-tour-step:last-of-type img {
	float: none;
	display: block;
	margin: 0 auto;
}

.custom-tour-step:last-of-type p {
	font-family: Tahoma, Geneva, sans-serif;
	text-align: center;
	margin-top: 0;
	color: #2b3e51;
	width: auto;
	font-size: 18px;
	line-height: 21px;
	text-decoration: none;
}

.custom-tour-step:last-of-type a {
	color: #2b3e51;
}

.custom-tour-step:last-of-type p:hover {
	color: #000;
}

@media only screen and (max-width: 1000px) {
.custom-tour-steps {
	width: 90%;
}

.custom-tour-step {
	float: none;
	width: 100%;
	max-width: 400px;
	margin: 0 auto 15px auto;
}
}

@media only screen and (max-width: 767px) {
.custom-tour-step:last-of-type p {
	font-size: 16px;
	line-height: 19px;
}
}

@media only screen and (max-width: 480px) {
.custom-tour-step {
	max-width: 300px;
}

.custom-tour-step h3 {
	font-size: 16px;
}
}


/* Custom Tour Tooltips
================================================== */
.tooltip {
	display: inline;
	position: relative;
	z-index: 999;
}

.tooltip-item {
	cursor: pointer;
	display: inline-block;
}

.tooltip-item::after {
	content: '';
	position: absolute;
	width: 460px;
	height: 20px;
	bottom: 100%;
	left: 50%;
	pointer-events: none;
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
}

.tooltip:hover .tooltip-item::after {
	pointer-events: auto;
}

.tooltip-content {
	position: absolute;
	z-index: 9999;
	width: 460px;
	left: 50%;
	margin: 0 0 20px -230px;
	bottom: 100%;
	box-shadow: 0px 3px 6px rgba(0,0,0,0.4);
	background: #2a3035;
	opacity: 0;
	cursor: default;
	pointer-events: none;
	font-family: Tahoma, Geneva, sans-serif;
	font-size: 15px;
	line-height: 18px;
}

.tooltip-content strong {
	font-weight: bold;
	font-size: 16px;
	line-height: 19px;
}

.tooltip-effect-1 .tooltip-content {
	-webkit-transform: translate3d(0,-10px,0);
	transform: translate3d(0,-10px,0);
	-webkit-transition: opacity 0.3s, -webkit-transform 0.3s;
	transition: opacity 0.3s, transform 0.3s;
}

.tooltip-effect-2 .tooltip-content {
	-webkit-transform-origin: 50% calc(100% + 10px);
	transform-origin: 50% calc(100% + 10px);
	-webkit-transform: perspective(1000px) rotate3d(1,0,0,45deg);
	transform: perspective(1000px) rotate3d(1,0,0,45deg);
	-webkit-transition: opacity 0.2s, -webkit-transform 0.2s;
	transition: opacity 0.2s, transform 0.2s;
}

.tooltip-effect-3 .tooltip-content {
	-webkit-transform: translate3d(0,10px,0) rotate3d(1,1,0,25deg);
	transform: translate3d(0,10px,0) rotate3d(1,1,0,25deg);
	-webkit-transition: opacity 0.3s, -webkit-transform 0.3s;
	transition: opacity 0.3s, transform 0.3s;
}

.tooltip-effect-4 .tooltip-content {
	-webkit-transform-origin: 50% 100%;
	transform-origin: 50% 100%;
	-webkit-transform: scale3d(0.7,0.3,1);
	transform: scale3d(0.7,0.3,1);
	-webkit-transition: opacity 0.2s, -webkit-transform 0.2s;
	transition: opacity 0.2s, transform 0.2s;
}

.tooltip-effect-5 .tooltip-content {
	width: 180px;
	margin-left: -90px;
	-webkit-transform-origin: 50% calc(100% + 6em);
	transform-origin: 50% calc(100% + 6em);
	-webkit-transform: rotate3d(0,0,1,15deg);
	transform: rotate3d(0,0,1,15deg);
	-webkit-transition: opacity 0.2s, -webkit-transform 0.2s;
	transition: opacity 0.2s, transform 0.2s;
	-webkit-transition-timing-function: ease, cubic-bezier(.17,.67,.4,1.39);
	transition-timing-function: ease, cubic-bezier(.17,.67,.4,1.39);
}

.tooltip:hover .tooltip-content {
	pointer-events: auto;
	opacity: 1;
	-webkit-transform: translate3d(0,0,0) rotate3d(0,0,0,0);
	transform: translate3d(0,0,0) rotate3d(0,0,0,0);
}

.tooltip.tooltip-effect-2:hover .tooltip-content {
	-webkit-transform: perspective(1000px) rotate3d(1,0,0,0deg);
	transform: perspective(1000px) rotate3d(1,0,0,0deg);
}

.tooltip-content::after {
	content: '';
	top: 100%;
	left: 50%;
	border: solid transparent;
	height: 0;
	width: 0;
	position: absolute;
	pointer-events: none;
	border-color: transparent;
	border-top-color: #2a3035;
	border-width: 10px;
	margin-left: -10px;
}

.tooltip-content img {
	position: relative;
	height: 200px;
	display: block;
	float: left;
	margin-right: 1em;
}

.tooltip-text {
	display: block;
	padding: 1.21em 1.21em 0 0;
	color: #eaeff1;
}

.tooltip-effect-5 .tooltip-text {
	padding: 1.4em;
}


/* Contacts Address
-----------------------------------------------------------------------------------------------------------------------------
-----------------------------------------------------------------------------------------------------------------------------
-----------------------------------------------------------------------------------------------------------------------------
-----------------------------------------------------------------------------------------------------------------------------
----------------------------------------------------------------------------------------------------------------------------*/
.contacts-address-container {
	width: 100%;
	float: none;
	margin: 0 auto;
	background: #333;
	overflow: hidden;
	border-top: 3px solid #000;
}

.contacts-form-container {
	margin: 50px auto;
}

.contacts-address {
	width: 1000px;
	float: none;
	margin: 0 auto;
	padding-left: 30px;
}

.contacts-address-item {
	width: 333px;
	padding: 10px;
	float: left;
	border-right: 1px solid #666;
}

.contacts-address-item:nth-of-type(2) {
	width: 290px;
}

.contacts-address-item:nth-of-type(3) {
	width: 300px;
}

.contacts-address-item:nth-of-type(2) .contacts-address-bold,
.contacts-address-item:nth-of-type(3) .contacts-address-bold {
	margin-top: 9px;
}

.contacts-address-item:last-of-type {
	border-right: none;
}

.contacts-address-item img {
	float: left;
	width: 60px;
	margin: 0 20px 0 0;
}

.contacts-address-item p {
	font-size: 18px;
	font-family: Tahoma, Geneva, sans-serif;
	color: #CCC;
}

.contacts-address-item a {
	text-decoration: none;
	color: #CCC;
}

.contacts-address-item p.contacts-address-bold {
	font-weight: bold;
	color: #FFF;
	margin-bottom: 5px;
}

@media only screen and (max-width: 1000px) {
.contacts-address-container {
	border-top: none;
	background: none;
	margin-top: 50px;
}

.contacts-form-container {
	margin: 50px auto 0 auto;
}

.contacts-address {
	width: 90%;
	max-width: 300px;
	padding-left: 0;
}

.contacts-address-item {
	width: 100% !important;
	padding: 10px;
	border-right: none;
	border-bottom: 1px solid #ccc;
}

.contacts-address-item p,
.custom-tour-step:last-of-type a,
.contacts-address-item a,
.contacts-address-item p.contacts-address-bold {
	color: #333;
}
}




/* FAQ
-----------------------------------------------------------------------------------------------------------------------------
-----------------------------------------------------------------------------------------------------------------------------
-----------------------------------------------------------------------------------------------------------------------------
-----------------------------------------------------------------------------------------------------------------------------
----------------------------------------------------------------------------------------------------------------------------*/
.faq-container {
	width: 100%;
	margin: 100px auto;
}

.cd-faq {
	width: 90%;
	max-width: 1024px;
	margin: 0 auto;
	box-shadow: 0 1px 5px rgba(0, 0, 0, 0.1);
}

.cd-faq:after {
	content: "";
	display: table;
	clear: both;
}

.cd-faq-group:nth-of-type(1) {
	padding-top: 0;
}

@media only screen and (min-width: 768px) {
.cd-faq {
	position: relative;
	box-shadow: none;
	padding-bottom: 80px;
	width: 90%;
	margin: 130px auto 50px auto;
}
}

.cd-faq-categories a {
	position: relative;
	display: block;
	overflow: hidden;
	height: 50px;
	line-height: 50px;
	padding: 0 28px 0 16px;
	background-color: #2b3e51;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	color: #ffffff;
	white-space: nowrap;
	border-bottom: 1px solid #555b61;
	text-overflow: ellipsis;
	text-decoration: none;
	font-size: 18px;
	font-family: "bebasneue", sans-serif;
	color: #FFF;
}

.cd-faq-categories a::after {
	position: absolute;
	top: 10%;
	right: 16px;
	display: inline-block;
	height: 22px;
	width: 22px;
	content: url(../img/icons/plus-icon.svg);
}

.cd-faq-categories li:last-child a {
	border-bottom: none;
}

@media only screen and (min-width: 768px) {
.cd-faq-categories {
	width: 20%;
	float: left;
	box-shadow: 0 1px 2px rgba(0, 0, 0, 0.08);
	border-radius: 3px;
	overflow: hidden;
}

.cd-faq-categories a {
	padding-left: 24px;
	padding: 0 24px;
	-webkit-transition: background 0.2s, padding 0.2s;
	-moz-transition: background 0.2s, padding 0.2s;
	transition: background 0.2s, padding 0.2s;
}

.cd-faq-categories a::before, .cd-faq-categories a::after {
	display: none;
}

.no-touch .cd-faq-categories a:hover {
	background: #192530;
}

.no-js .cd-faq-categories {
	width: 100%;
	margin-bottom: 2em;
}
}

@media only screen and (min-width: 1024px) {
.cd-faq-categories {
	position: absolute;
	top: 0;
	left: 0;
	width: 200px;
	z-index: 2;
}

.cd-faq-categories a::before {
	display: block;
	top: 0;
	right: auto;
	left: 0;
	height: 100%;
	width: 3px;
	background-color: #a9c056;
	opacity: 0;
	-webkit-transition: opacity 0.2s;
	-moz-transition: opacity 0.2s;
	transition: opacity 0.2s;
}

.cd-faq-categories .selected {
	background: #192530 !important;
}

.cd-faq-categories .selected::before {
	opacity: 1;
}

.cd-faq-categories.is-fixed {
	position: fixed;
}

.no-js .cd-faq-categories {
	position: relative;
}
}

.cd-faq-items {
	position: fixed;
	height: 100%;
	width: 100%;
	top: 0;
	right: 0;
	background: #ffffff;
	padding: 0 5% 1em;
	overflow: auto;
	-webkit-overflow-scrolling: touch;
	z-index: 1;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-transform: translateZ(0) translateX(100%);
	-moz-transform: translateZ(0) translateX(100%);
	-ms-transform: translateZ(0) translateX(100%);
	-o-transform: translateZ(0) translateX(100%);
	transform: translateZ(0) translateX(100%);
	-webkit-transition: -webkit-transform .3s;
	-moz-transition: -moz-transform .3s;
	transition: transform .3s;
}

.cd-faq-items.slide-in {
	-webkit-transform: translateZ(0) translateX(0%);
	-moz-transform: translateZ(0) translateX(0%);
	-ms-transform: translateZ(0) translateX(0%);
	-o-transform: translateZ(0) translateX(0%);
	transform: translateZ(0) translateX(0%);
	padding-top: 60px;
}

.no-js .cd-faq-items {
	position: static;
	height: auto;
	width: 100%;
	-webkit-transform: translateX(0);
	-moz-transform: translateX(0);
	-ms-transform: translateX(0);
	-o-transform: translateX(0);
	transform: translateX(0);
}
@media only screen and (min-width: 768px) {
.cd-faq-items {
	position: static;
	height: auto;
	width: 78%;
	float: right;
	overflow: visible;
	-webkit-transform: translateZ(0) translateX(0);
	-moz-transform: translateZ(0) translateX(0);
	-ms-transform: translateZ(0) translateX(0);
	-o-transform: translateZ(0) translateX(0);
	transform: translateZ(0) translateX(0);
	padding: 0;
	background: transparent;
}
}
@media only screen and (min-width: 1024px) {
.cd-faq-items {
	float: none;
	width: 100%;
	padding-left: 220px;
}

.no-js .cd-faq-items {
	padding-left: 0;
}
}

.cd-close-panel {
	position: fixed;
	top: 76px;
	right: -100%;
	display: block;
	height: 40px;
	width: 40px;
	overflow: hidden;
	white-space: nowrap;
	z-index: 2;
	-webkit-transform: translateZ(0);
	-moz-transform: translateZ(0);
	-ms-transform: translateZ(0);
	-o-transform: translateZ(0);
	transform: translateZ(0);
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-transition: right 0.4s;
	-moz-transition: right 0.4s;
	transition: right 0.4s;
	text-decoration: none;
	font-size: 20px;
	color: #2b3e51;
	font-family: Arial, Helvetica, sans-serif;
	font-weight: 700;
}

.cd-close-panel::before, .cd-close-panel::after {
	position: absolute;
	top: 30px;
	left: 12px;
	display: inline-block;
	height: 3px;
	width: 18px;
	background: #6c7d8e;
}

.cd-close-panel::before {
	-webkit-transform: rotate(45deg);
	-moz-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	-o-transform: rotate(45deg);
	transform: rotate(45deg);
}

.cd-close-panel::after {
	-webkit-transform: rotate(-45deg);
	-moz-transform: rotate(-45deg);
	-ms-transform: rotate(-45deg);
	-o-transform: rotate(-45deg);
	transform: rotate(-45deg);
}

.cd-close-panel.move-left {
	right: 2%;
}
@media only screen and (min-width: 768px) {
	.cd-close-panel {
		display: none;
	}
}

.cd-faq-group {
	display: none;
}

.cd-faq-group.selected {
	display: block;
}

.cd-faq-group .cd-faq-title {
	background: transparent;
	box-shadow: none;
	margin: 1em 0;
}

.no-touch .cd-faq-group .cd-faq-title:hover {
	box-shadow: none;
}

.cd-faq-group .cd-faq-title h2 {
	text-transform: uppercase;
	font-size: 23px;
	font-family: "bebasneue", sans-serif;
	color: #486888;
}

.no-js .cd-faq-group {
	display: block;
}

@media only screen and (min-width: 768px) {
.cd-faq-group {
	display: block;
	padding-top: 50px;
}

.cd-faq-group > li {
	background: #ffffff;
	margin-bottom: 6px;
	box-shadow: 0 1px 2px rgba(0, 0, 0, 0.08);
	-webkit-transition: box-shadow 0.2s;
	-moz-transition: box-shadow 0.2s;
	transition: box-shadow 0.2s;
}

.no-touch .cd-faq-group > li:hover {
	box-shadow: 0 1px 10px rgba(108, 125, 142, 0.3);
}

.cd-faq-group .cd-faq-title {
	margin: 2em 0 1em;
}

.cd-faq-group:first-child .cd-faq-title {
	margin-top: 0;
}
}

.cd-faq-trigger {
	position: relative;
	display: block;
	margin: 1.6em 0 .4em;
	line-height: 1.2;
	text-decoration: none;
	font-size: 17px;
	font-weight: bold;
	font-family: Tahoma, Geneva, sans-serif;
	color: #2b3e51;
}

@media only screen and (min-width: 768px) {
.cd-faq-trigger {
	margin: 0;
	padding: 24px 72px 24px 24px;
}
.cd-faq-trigger::after {
	position: absolute;
	right: 24px;
	top: 36%;
	height: 17px;
	width: 31px;
	content: url(../img/icons/faq-arrow.svg);
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-transition-property: -webkit-transform;
	-moz-transition-property: -moz-transform;
	transition-property: transform;
	-webkit-transition-duration: 0.2s;
	-moz-transition-duration: 0.2s;
	transition-duration: 0.2s;
}
.content-visible .cd-faq-trigger::after {
	-webkit-transform: rotate(180deg);
	-moz-transform: rotate(180deg);
	-ms-transform: rotate(180deg);
	-o-transform: rotate(180deg);
	transform: rotate(180deg);
}
}

.cd-faq-content p {
	font-size: 18px;
	font-family: Tahoma, Geneva, sans-serif;
	color: #333;
	line-height: 23px;
}

.cd-faq-content a {
	color: #333;
	font-weight: bold;
}

@media only screen and (min-width: 768px) {
	.cd-faq-content {
		display: none;
		padding: 0 24px 30px;
	}
	.no-js .cd-faq-content {
		display: block;
	}
}

@media only screen and (min-width: 768px) and (max-width: 1024px) {
	.cd-faq-categories {
		display: none;
	}
	
	.cd-faq-items {
		width: 100%;
		padding-left: 0;
	}
}






/* Footer
-----------------------------------------------------------------------------------------------------------------------------
-----------------------------------------------------------------------------------------------------------------------------
-----------------------------------------------------------------------------------------------------------------------------
-----------------------------------------------------------------------------------------------------------------------------
----------------------------------------------------------------------------------------------------------------------------*/
footer {
	height: 550px;
	position: relative;
	z-index:-2;
	background-color: #eaeff1;
	padding: 80px 0 0 0;
}

.footer-content {
	width: 85%;
	position: fixed;
	left: 50%;
	bottom: 50px;
	margin-left: -42.5%;
	z-index: -1;
	background: #f4f6f8;
	padding: 30px;
}

.footer-content-block {
	width: 29%;
	float: left;
	height: 305px;
	border-right: 1px solid #CCC;
	border-bottom: 1px solid #CCC;
	overflow: hidden;
}

.footer-content-block:nth-of-type(2) {
	width: 37%;
}

.footer-content-block:nth-of-type(3) {
	width: 34%;
	border-right: none;
}

@media screen and (max-width: 1440px) {
.footer-content {
	width: 95%;
	margin-left: -47.5%;
}
}

@media screen and (min-width: 1700px) {
.footer-content {
	max-width: 1500px;
	margin-left: -750px;
}
}

@media screen and (max-width: 1023px) {
footer {
	height: 860px;
	z-index: inherit;
	padding: 0;
	height: auto;
	position: relative;
	z-index: inherit;
}

.footer-content {
	width: 100%;
	position: relative;
	left: auto;
	bottom: auto;
	margin-left: auto;
	z-index: inherit;
}

.footer-content-block {
	width: 50%;
}

.footer-content-block:nth-of-type(2) {
	width: 50%;
	border-right: none;
}

.footer-content-block:nth-of-type(3) {
	width: 100%;
	float: none;
	margin: 0 auto;
	height: auto;
	padding-bottom: 25px;
}
}

@media screen and (max-width: 767px) {
.footer-content {
	padding: 30px 15px;
}

.footer-content-block,
.footer-content-block:nth-of-type(2) {
	width: 100%;
	border-right: none;
}

.footer-content-block-logo {
	width: 250px;
	float: none;
	margin: 0 auto;
}
}


/* Footer Address
================================================== */
.address h1 {
	text-indent: -9999px;
}

.address img {
	float: left;
	border-right: 1px solid #CCC;
	padding: 10px 0 27px 0;
}

.address h2 {
	font-size: 20px;
	font-family: "bebasneue", sans-serif;
	color: #212d3d;
	margin: 10px 0 0 20px;
	float: left;
}

.address p {
	font-size: 15px;
	font-family: Tahoma, Geneva, sans-serif;
	color: #212d3d;
	line-height: 18px;
	clear: both;
	border-top: 1px solid #CCC;
	padding-top: 35px;
}

.address a {
	color: #212d3d;
	text-decoration: none;
}

.address span {
	font-weight: bold;
}

@media screen and (max-width: 1340px) {
.address h2 {
	font-size: 17px;
}
}

@media screen and (max-width: 1240px) {
.address h2 {
	font-size: 15px;
	margin: 20px 0 0 10px;
}

.address p {
	font-size: 14px;
}

.address img {
	padding: 20px 0 30px 0;
	width: 100px;
}
}

@media screen and (max-width: 767px) {
.address p {
	text-align: center;
}
}


/* Footer Social
================================================== */
.footer-social {
	float: left;
}

.footer-social-icon {
	padding: 19px 10px;
	position: relative;
	border-right: 1px solid #CCC;
	border-bottom: 1px solid #CCC;
}

.footer-social-icon img {
	width: 60px;
	height: 60px;
	float: none;
	margin: 0 auto;
}

.footer-social-icon:nth-of-type(1) {
	padding-top: 18px;
}

.footer-social-icon:nth-of-type(3) {
	border-bottom: none;
}

.footer-social-icon .hover-effect {
	top: 19px;
	left: 10px;
}

.footer-social-icon:nth-of-type(1) .hover-effect {
	top: 18px;
}

@media screen and (max-width: 767px) {
.footer-social {
	width: 242px;
	float: none;
	margin: 0 auto;
	clear: both;
}

.footer-social-icon {
	width: 80px;
	float: left;
	border-bottom: none;
}

.footer-social-icon:nth-of-type(3) {
	border-right: none;
}

.footer-social-icon img {
	float: left;
}
}


/* Footer Newsletter
================================================== */
.footer-newsletter {
	float: left;
	overflow: hidden;
	width: 80%;
	padding-left: 17px;
}

.footer-newsletter h1 {
	font-size: 20px;
	font-family: "bebasneue", sans-serif;
	color: #212d3d;
	text-align: center;
}

.footer-newsletter #mce-EMAIL {
	float: none;
	display: block;
	margin: 5px auto;
	height: 50px;
	width: 90%;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 16px;
	color: #333;
	-moz-transition: all 0.3s;
	-o-transition: all 0.3s;
	-webkit-transition: all 0.3s;
	transition: all 0.3s;
	outline: none;
	padding: 12px;
	border: 1px solid #cfd9db;
	background-color: #ffffff;
	border-radius: .25em;
	box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.08);
}

.footer-newsletter-button {
	position: relative;
	float: none;
	margin: 30px auto 25px auto;
	width: 160px;
	height: 50px;
}

.footer-newsletter-button .button {
	margin: 0;
	border: 2px solid #212d3d;
	padding: 0.5em;
	font-size: 20px;
	width: 160px;
	height: 50px;
	bottom: 0;
}

.footer-newsletter-button input[type="submit"] {
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	margin: auto;
	border-radius: 50%;
	width: 20em;
	height: 20em;
	left: -6.1em;
	color: #212d3d;
	background: none;
	-webkit-transition: box-shadow 0.5s ease-out, color 0.3s 0.1s ease-out;
	transition: box-shadow 0.5s ease-out, color 0.3s 0.1s ease-out;
	padding: 0.5em;
	font-size: 20px;
}

.footer-newsletter-button input[type="submit"]:hover {
	color: #FC0;
	box-shadow: inset 0 0 0 10em #212d3d;
}

.facebook-like {
	width: 175px;
	float: none;
	margin: 0 auto;
	overflow: hidden;
	padding-left: 5px;

}

@media screen and (min-width: 1700px) {
.footer-newsletter {
	padding-left: 25px;
}
}

@media screen and (max-width: 1440px) {
.footer-newsletter {
	padding-left: 8px;
}
}

@media screen and (max-width: 1220px) {
.footer-newsletter {
	width: 75.5%;
	padding-left: 0;
}
}

@media screen and (max-width: 1023px) {
.footer-newsletter {
	float: right;
}
}

@media screen and (max-width: 767px) {
.footer-newsletter {
	float: none;
	width: 100%;
	padding: 25px 0 0 0;
	border-top: 1px solid #CCC;
}
}


/* Footer Menu
================================================== */
.footer-menu ul {
	list-style-type: none;
	margin: 25px 25px 0 35px;
	float: left;
}

.footer-menu ul:nth-of-type(2) {
	margin: 25px 0 0 35px;
}

.footer-menu li {
	font-family: "bebasneue", sans-serif;
	font-size: 20px;
	line-height: 27px;
	text-transform: uppercase;
}

.footer-menu li a {
	text-decoration: none;
	color: #607e8d;
}

.footer-menu li a:hover {
	color: #212d3d;
}

.footer-menu-current-page {
	color: #212d3d;
	list-style-type: disc;
}

@media screen and (max-width: 1023px) {
.footer-menu nav {
	width: 300px;
	float: none;
	margin: 0 auto;
}
}

@media screen and (max-width: 480px) {
.footer-menu nav {
	width: 260px;
}

.footer-menu ul {
	margin: 25px 0 0 35px;
}

.footer-menu li {
	font-size: 16px;
	line-height: 23px;
}
}


/* Footer Bottom
================================================== */
.footer-bottom {
	width: 100%;
	float: right;
	overflow: hidden;
}

.footer-bottom p {
	color: #212d3d;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 14px;
	text-align: right;
	margin-top: 40px;
}

.footer-bottom a {
	color: #212d3d;
	font-family: Arial, Helvetica, sans-serif;
}

.footer-bottom a:hover {
	text-decoration: underline;
}

.alemans-logo {
	position: absolute;
	display: inline-block;
	width: 61px;
	height: 70px;
	margin: -35px 0 0 -65px;
	background-image: url(../img/alemans-logo-footer.svg);
	background-repeat: no-repeat;
}

.paypal {
	float: left;
	padding-right: 20px;
	border-right: 1px solid #CCC;
	font-size: 14px;
	font-family: Tahoma, Geneva, sans-serif;
	color: #212d3d;
	line-height: 90px;
}

.paypal:nth-of-type(2) {
	padding-right: none;
	border-right: none;
}

.paypal span {
	float: left;
	padding-left: 20px;
}

.paypal img {
	float: left;
	margin: 20px 0 0 5px;
}

@media screen and (max-width: 1023px) {
.footer-bottom {
	width: 100%;
	float: none;
	margin: 0 auto;
}

p.alemans {
	width: 100%;
	display: block;
	float: none;
	clear: both;
	text-align: center;
	padding: 55px 0 0 0;
	overflow: hidden;
	border-top: 1px solid #CCC;
}
}

@media screen and (max-width: 767px) {
.paypal-container {
	width: 540px;
	float: none;
	margin: 0 auto;
}
}

@media screen and (max-width: 560px) {
.paypal-container {
	width: 100%;
}

.paypal {
	width: 250px;
	float: none;
	margin: 0 auto;
	border-right: none;
	text-align: center;
	line-height: 40px;
	padding-right: 0;
	font-size: 12px;
}

.paypal span {
	padding-left: 0;
}

.paypal img {
	margin: -5px 0 0 5px;
}

p.alemans {
	font-size: 12px;
}
}





/* Cookies Banner
-----------------------------------------------------------------------------------------------------------------------------
-----------------------------------------------------------------------------------------------------------------------------
-----------------------------------------------------------------------------------------------------------------------------
-----------------------------------------------------------------------------------------------------------------------------
----------------------------------------------------------------------------------------------------------------------------*/
#cookie-banner {
	background: #000;
	padding: 22px 25px;
	display: none;
	position:fixed;
	width:100%;
	margin:0;
	left:0;
	bottom:0;
	z-index: 7000;
}

#cookie-banner-info {
	width: 820px;
	font-family: Arial, Helvetica, sans-serif;
	font-weight: 400;
	font-size: 14px;
	line-height: 20px;
	color: #FFF;
}

#cookie-banner-info.cookie-banner-info-de,
#cookie-banner-info.cookie-banner-info-en {
	width: 780px;
}

#cookie-banner-actions {
	font-family: 'Raleway', sans-serif;
	font-weight: 600;
	font-size: 15px;
	color: #F06;
	text-decoration: none;
	float: right;
	right: 70px;
	position: absolute;
	top: 47px;
	text-transform: uppercase;
}

#cookie-banner-actions.cookie-banner-actions-en {
	top: 55px;
}

#cookie-banner-actions a:nth-of-type(1) {
	color: #00BCD4;
	right: 160px;
}

#cookie-banner-actions a:nth-of-type(2) {
	color: #F06;
	margin-left: 25px;
}

#cookie-banner-actions a {
	text-decoration: none;
}

#cookie-banner-actions a:hover {
	color: #FFF;
}

@media screen and (max-width: 1200px) {
#cookie-banner {
	padding: 22px 0;
}

#cookie-banner-info {
	float: none;
	text-align: center;
	margin: 0 auto 15px auto;
}

#cookie-banner-actions {
	float: none;
	margin: 0 auto;
	display: block;
	position: relative;
	right: inherit;
	width: 270px;
	top: 0;
}

#cookie-banner-actions.cookie-banner-actions-en {
	width: 270px;
	top: 0;
}
}

@media screen and (max-width: 900px) {
#cookie-banner-info,
#cookie-banner-info.cookie-banner-info-de,
#cookie-banner-info.cookie-banner-info-en {
	width: 90%;
	font-size: 12px;
}
}



/* Privacy / Cookie Policy Wrappers
================================================== */
.privacy-wrapper,
.cookies-wrapper {
	width: 100%;
	height: 100%;
	position: fixed;
	background: #212d3d;
	z-index: -1;
	opacity: 0;
	-moz-transition: all 0.3s;
	-o-transition: all 0.3s;
	-webkit-transition: all 0.3s;
	transition: all 0.3s;
	overflow: scroll;
}

.privacy-wrapper-page,
.cookies-wrapper-page {
	width: 100%;
	height: 100%;
	position: fixed;
	background: #212d3d;
	overflow: scroll;
}

.privacy-wrapper-page {
	z-index: 1;
}

.cookies-wrapper-page {
	z-index: 2;
}

.show-overlay {
	opacity: 1;
	z-index: 20000;
}

.hide-overlay {
	opacity: 0;
	z-index: -1;
}

.privacy-wrapper button,
.cookies-wrapper button,
.privacy-wrapper-page button,
.cookies-wrapper-page button {
	position: fixed;
}

.wrapper-content {
	width: 700px;
	margin: 80px auto 0 auto;
	float: none;
	padding-bottom: 100px;
}

@media only screen and (max-width: 1024px) {
.wrapper-content {
	margin: 50px auto 0 auto;
	width: 600px;
}
}

@media only screen and (max-width: 767px) {
.wrapper-content {
	width: 90%;
}
}

@media only screen and (max-width: 479px) {
.wrapper-content {
	width: 90%;
}
}




/* Privacy Policy
================================================== */
.privacy-block {
	width: 100%;
	padding: 30px 0;
	border-bottom: 1px solid #33455e;
}

.privacy-block:last-of-type {
	border-bottom: none;
}

.privacy h1 {
	text-align: left;
	font-size: 25px;
	font-family: 'Raleway', sans-serif;
	font-weight: 600;
	line-height: 28px;
	padding-top: 0;
	color: #FFF;
	margin-bottom: 10px;
}

.privacy span {
	color: #F39;
}

.privacy h2 {
	font-size: 25px;
	font-family: 'Raleway', sans-serif;
	color: #FFF;
	margin-bottom: 10px;
	font-weight: 600;
	line-height: 28px;
}

.privacy h3 {
	font-family: 'Raleway', sans-serif;
	font-size: 21px;
	color: #FFF;
	padding-top: 25px;
	line-height: inherit;
	margin-bottom: 10px;
	font-weight: 600;
}

.privacy p {
	font-size: 16px;
	line-height: 23px;
	color: #FFF;
	font-family: Arial, Helvetica, sans-serif;
}

.privacy a {
	text-decoration: underline;
	color: #FFF;
}

.privacy p.privacy-footer {
	text-align: right;
	margin-top: 50px;
}

.privacy-block .accordion h4 a {
	background: #2d3d53 url(../img/icons/privacy-arrow-closed.svg) 20px 23px no-repeat;
	display: block;
	padding: 20px 0 20px 65px;
	text-decoration: none;
	font-family: 'Raleway', sans-serif;
	font-size: 19px;
	color: #FFF;
	margin: 25px 0;
	text-decoration: none;
	font-weight: 600;
	border-top: none;
}

.privacy-block .accordion h4 a:hover {
	color: #FFF;
	cursor: pointer;
	background-color: #33455e;
}

.privacy-block .accordion h4.open a {
	color: #FFF;
	background: #33455e url(../img/icons/privacy-arrow-opened.svg) 20px 23px no-repeat;
}

.accordion span {
	color: #FFF;
	font-family: 'Raleway', sans-serif;
	font-weight: 600;
	font-size: 19px;
}

.accordion a {
	color: #FFF;
	text-decoration: underline;
}




/* Close Button
================================================== */
.close-overlay {
	width: 80px;
	height: 80px;
	position: absolute;
	margin: 0;
	padding: 0;
	right: 5%;
	top: 25px;
	overflow: hidden;
	border: none;
	background: url(../img/icons/close-overlay.svg) no-repeat center center;
	text-indent: 200%;
	color: transparent;
	outline: none;
	z-index: 1000;
	-webkit-transition: all 0.2s;
	transition: all 0.2s;
	cursor: pointer;	 
}

.close-overlay:hover {
	-webkit-transform: scale(0.6);
	-moz-transition: scale(0.6);
	-o-transition: scale(0.6);
	transition: scale(0.6);
}

@media screen and (max-width: 767px) {
.close-overlay {
	right: 3%;
	top: 40px; 
}
}