
@import url('https://fonts.googleapis.com/css?family=Josefin+Sans:400,400i,700&subset=latin-ext');
@import url('https://fonts.googleapis.com/css?family=Euphoria+Script&subset=latin-ext');
@import url('https://fonts.googleapis.com/css?family=Titillium+Web:400,700i&display=swap');

* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  outline: none;
  list-style: none;
  word-wrap: break-word;
}

body {
	color: #272133;
	line-height: 1.3;
	font-weight: 400;
	font-size: 14px;
	font-family: 'Josefin Sans', sans-serif;
	overflow-x: hidden !important;

	background: transparent url("../img/wave-grey.svg") no-repeat center 1500px scroll;
	background-size:100%;
	padding-top:100vh;
}

body.newsletter {
	padding-top:0px;;
}

h1, h2, h3, h4, h5, h6 {

}

h1 {
	font-size:60px;
	font-weight:400;
	font-family: 'Euphoria Script', cursive;
	color:#4EAD91;
}

h2 {
	font-size:60px;
	font-weight:400;
	font-family: 'Euphoria Script', cursive;
	color:#4EAD91;
}

h3 {
	font-size:28px;
	font-weight:700;
	color:#4EAD91;
}
.news h1 {
	font-family: 'Josefin Sans', sans-serif !important;
	font-size:36px !important;
	line-height: 1.2;
}
.news_list h3 {
	font-size:20px;
	margin-top: 30px;
}

h1 em, h2 em {
	font-family: 'Josefin Sans', sans-serif !important;
	font-size:36px;
}

h3 em {
	font-family: 'Josefin Sans', sans-serif !important;
	font-size:28px;
}


p {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.8;
  margin: 0;
}

.highlight {
	color:#4EAD91;
	font-size:20px;
}

img {
  width: 100%;
  height: auto;
}

ul {
  margin: 0;
}

span, a, a:hover {
  display: inline-block;
  text-decoration: none;
  color: inherit;
}
strong { font-weight:700; }

input, textarea { border-radius: 0 !important; border:none; }
::placeholder { color:#272133; } 
:-ms-input-placeholder { color:#272133; } 
::-ms-input-placeholder {color:#272133; } 

.btn {
	border-radius:0;
	border: 2px solid #fff;
	position:relative;
	padding: 15px 35px 10px;
	text-align:center;
	color:#fff;
	font-size:14px;
	text-transform:uppercase;
	-webkit-transition: all 0.5s ease-out;
	-moz-transition: all 0.5s ease-out;
	-o-transition: all 0.5s ease-out;
	transition: all 0.5s ease-out;
	z-index:1;
	min-width:200px;
}
.btn:hover {
	background-color:#fff;
	color:#272133;
}
	.btn:before {
		display:block;
		content:"";
		position: absolute;
		left:8px; right:-8px;
		top:8px; bottom:-8px;
		border-bottom: 2px solid #272133;
		border-right: 2px solid #272133;
		z-index:0;
		-webkit-transition: all 0.2s ease-out;
		-moz-transition: all 0.2s ease-out;
		-o-transition: all 0.2s ease-out;
		transition: all 0.2s ease-out;
	}
	.btn:hover:before {
		left:0px; right:-2px;
		top:0px; bottom:-2px;
		border-color:#fff;
	}


.btn-green {
	border: 2px solid #4EAD91 !important;
	color:#4EAD91 !important;
}
.btn-green:hover {
	background-color:#4EAD91 !important;
	color:#fff !important;
}
	.btn-green:hover:before {
		border-color:#4EAD91;
	}
.btn-social {
	min-width:40px !important;
	width:40px !important;
	text-align:center;
}


#nav-secondary a.nav-cta {
	display:inline-block;
	color:#4EAD91;	
	border:1px solid #4EAD91;
	padding:10px 10px 7px 10px;
	margin-top:12px;
}
#nav-secondary a.nav-cta:hover {
	background-color:#4EAD91;
	color:#ffffff;	
}



.logo {
	display:block;
	opacity:1;
	position:absolute;
	top:100px;
	left:100px;
	z-index:990;
	-webkit-transition: all 0.2s ease-out;
	-moz-transition: all 0.2s ease-out;
	-o-transition: all 0.2s ease-out;
	transition: all 0.2s ease-out;
}

.logo img {
	display:block;
	height:140px;
	width:auto;
}
.logo.open {
	opacity:0;
}



.nav-logo img {
	display:block;
	position:absolute;
	top:100px;
	left:100px;
	z-index:999;
	height:140px; width:auto;
}


header {
	position:fixed;
	background-repeat:no-repeat;
	background-position:center center;
	background-size:cover;
	height:100vh;
	width:100%;
	display:block;
	top:0;
	z-index:-1;
	overflow:hidden;
}
header:after {
	display:block;
	content:"";
	position:absolute;
	top:0; bottom:0;
	left:0; right:0;
	opacity: 0.5;

	background: -moz-linear-gradient(top, rgba(52,52,52,0.5) 0%, rgba(52,52,52,0) 100%); /* FF3.6-15 */
	background: -webkit-linear-gradient(top, rgba(52,52,52,0.5) 0%,rgba(52,52,52,0) 100%); /* Chrome10-25,Safari5.1-6 */
	background: linear-gradient(to bottom, rgba(52,52,52,0.5) 0%,rgba(52,52,52,0) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#80343434', endColorstr='#00343434',GradientType=0 ); /* IE6-9 */

}
	header .social { 
		position:absolute;
		right:50px;
		bottom:50px;
		z-index:960;
	}
	header .social a { display:inline-block; margin-left:15px; color:#fff; }   

.page header .bg	{ background-image: url("/img/header-firstminute.jpg"); }
.booking header .bg			{ background-image: url("/img/header-o-nas.jpg"); }
.home header .bg			{ background-image: url("/img/header-home.jpg"); }
.o-nas header .bg			{ background-image: url("/img/header-o-nas.jpg"); }
.atrakcje header .bg		{ background-image: url("/img/header-atrakcje.jpg"); }
.blog header .bg			{ background-image: url("/img/header-atrakcje.jpg"); }
.cennik header .bg			{ background-image: url("/img/header-cennik.jpg"); }
.gallery header .bg			{ background-image: url("/img/header-galeria.jpg"); }
.kontakt header .bg			{ background-image: url("/img/header-kontakt.jpg"); }
.offer header .bg			{ background-image: url("/img/header-oferty-specjalne.jpg"); }
.newsletter header .bg			{ background-image: url("/img/header-atrakcje.jpg"); }
.newsletter2 header .bg			{ background-image: url("/img/header-atrakcje.jpg"); }
.wypoczynek-spa header .bg	{ background-image: url("/img/header-wypoczynek.jpg"); }
.aktywne-wakacje header .bg	{ background-image: url("/img/header-aktywne.jpg"); }
.oferta-specjalna-first-minute header .bg	{ background-image: url("/img/header-firstminute.jpg"); }
.oferta-specjalna-wiecej-znaczy-mniej header .bg	{ background-image: url("/img/header-firstminute.jpg"); }
.oferta-specjalna-black-week header .bg	{ background-image: url("/img/header-firstminute.jpg"); }

.oferta-specjalna-im-dluzej-tym-taniej header .bg	{ background-image: url("/img/header-firstminute.jpg"); }
.oferta-specjalna-czas-start header .bg	{ background-image: url("/img/header-firstminute.jpg"); }
.oferta-specjalna-spa-tylko-dla-dwojga header .bg	{ background-image: url("/img/header-firstminute.jpg"); }
.oferta-specjalna-golf header .bg	{ background-image: url("/img/header-firstminute.jpg"); }

.mapa-osrodka header .bg	{ background-image: url("/img/header-firstminute.jpg"); }
.polityka-prywatnosci header .bg	{ background-image: url("/img/header-firstminute.jpg"); }


.center-item {
	top:50%;
}


.zoominheader {
	position:absolute;
	left:0; right:0;
	top:0; bottom:0;

	background-size: auto;
	background-attachment: fixed;
	background-repeat: repeat;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	-webkit-animation: zoomin 10s ease-in infinite;
	animation: zoomin 10s ease-in infinite;
	transition: all .5s ease-in-out;
	overflow: hidden;
}

/* The innermost element*/
.zoomoutheader {
	position:absolute;
	left:0; right:0;
	top:0; bottom:0;
	text-align:center;
	background: none;
	-webkit-animation: zoomout 10s ease-in infinite;
	animation: zoomout 10s ease-in infinite;
	transition: all .5s ease-in-out;
	overflow: hidden;
}



/* Zoom in Keyframes */
@-webkit-keyframes zoomin {
  0% {transform: scale(1);}
  50% {transform: scale(1.5);}
  100% {transform: scale(1);}
}
@keyframes zoomin {
  0% {transform: scale(1);}
  50% {transform: scale(1.5);}
  100% {transform: scale(1);}
} /*End of Zoom in Keyframes */

/* Zoom out Keyframes */
@-webkit-keyframes zoomout {
  0% {transform: scale(1);}
  50% {transform: scale(0.67);}
  100% {transform: scale(1);}
}
@keyframes zoomout {
    0% {transform: scale(1);}
  50% {transform: scale(0.67);}
  100% {transform: scale(1);}
}/*End of Zoom out Keyframes */




section {

}




#home-welcome {
	background: transparent url("../img/wave.svg") no-repeat left center;
	background-size:30%; 
}
#home-welcome img.img-fluid {
	display:block;
	position:relative;
	-webkit-box-shadow: 95px 95px 0px 0px rgba(238,237,234,1);
	-moz-box-shadow: 95px 95px 0px 0px rgba(238,237,234,1);
	box-shadow: 95px 95px 0px 0px rgba(238,237,234,1);
}


.home-wave-grey {
/*
	background: transparent url("../img/wave-grey.svg") no-repeat center 250px;
	background-size:100%; 
	*/
}

#home-offer  {
	position:relative;
}
	#home-offer .title-small {
		position:absolute;
		left:50%;
		top:70%;
		color:#fff;
		font-weight:bold;
		letter-spacing:10px;
		transform:translateX(-50%);
		-webkit-transform:translateX(-50%); 
		-moz-transform:translateX(-50%); 
		-o-transform:translateX(-50%); 
		text-shadow: 0 0 20px #000;
	}
	#home-offer .title-price {
		position:absolute;
		right:8.333333%;
		top:0%;
		width:250px;
		height:250px;
		margin-top: -15px;
		margin-right:15px;
		border: solid #4EAD91 4px;
		border-radius: 50%;

		color:#fff;
		font-size:24px;
		text-align:center;
		display:table-cell;
		vertical-align:center;
	}
	#home-offer .title-price em {
		display:block;
		width:100%;
		height:auto;
		position:absolute;
		top:50%;
		transform:translateY(-50%);
		-webkit-transform:translateY(-50%); 
		-moz-transform:translateY(-50%); 
		-o-transform:translateY(-50%);
		font-style:normal;
	}
	#home-offer .title-price strong {
		font-size: 2em;
	}

#home-offer .description {
	position:relative;
	text-align:right;
	margin-top:-100px;
	padding:50px;
	border-top: 3px solid #fff;
	color:#fff;
	/* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#4ead91+0,4ead91+50,00704f+100 */
	background: rgb(78,173,145); /* Old browsers */
	background: -moz-linear-gradient(top, rgba(78,173,145,1) 0%, rgba(78,173,145,1) 50%, rgba(0,112,79,1) 100%); /* FF3.6-15 */
	background: -webkit-linear-gradient(top, rgba(78,173,145,1) 0%,rgba(78,173,145,1) 50%,rgba(0,112,79,1) 100%); /* Chrome10-25,Safari5.1-6 */
	background: linear-gradient(to bottom, rgba(78,173,145,1) 0%,rgba(78,173,145,1) 50%,rgba(0,112,79,1) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#4ead91', endColorstr='#00704f',GradientType=0 ); /* IE6-9 */
}
	#home-offer .description:before {
		display:block;
		content:" ";
		position:absolute;
		top:20%;
		left:0;
		height: 60%;
		width: 25%;	
		background: url("/img/wave-navy.svg") no-repeat left center;
		background-size: contain;
		z-index:1;
	}

#home-offer .category_2 .description {
	background: #f2bc0c; 
	background: -moz-linear-gradient(top, #f2bc0c 0%, #e6870b 50%, #aa6c08 100%); 
	background: -webkit-linear-gradient(top, #f2bc0c 0%,#e6870b 50%,#aa6c08 100%); 
	background: linear-gradient(to bottom, #f2bc0c 0%,#e6870b 50%,#aa6c08 100%); 
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f2bc0c', endColorstr='#aa6c08',GradientType=0 ); 
}

#home-offer .description h3 {
	font-size:30px;
	font-weight:700;
	color:#fff !important;
}
#home-offer .description p {
	font-size:24px;
	font-weight:400;
}

@media screen and (max-width:767px) {
	#home-offer .description {
		text-align:center;
		margin-top:0px;
		padding:30px 10px;
	}
	#home-offer .description p {
		font-size:20px;
		line-height:1em;
	}
	#home-offer .description:before { display:none; }
	#home-offer .title-small { display:none; }
	#home-offer .title-price {
		position:absolute;
		right:0;
		top:0;
		width:100%;
		height:100%;
		border: none;
		margin:0;
		border-radius: 0%;
		color:#fff;
		font-size:24px;
		text-align:center;
		display:block;
	}
	#home-offer .title-price em {
		display:block;
		width:100%;
		height:auto;
		position:absolute;
		top:50%;
		transform:translateY(-50%);
		-webkit-transform:translateY(-50%); 
		-moz-transform:translateY(-50%); 
		-o-transform:translateY(-50%);
		font-style:normal;
	}
}



#home-blog .home-blog-item-content {
	padding:20px;
}

#home-blog .home-blog-item-content h3 {
	margin-bottom:20px;
	font-size:20px;
}


.page-content {
	padding-bottom: 0;
	background-color:#fff;
}


.page-content h1, 
.page-content h2 {
	font-size:60px;
}
.page-content p {
	margin-bottom:15px;
}






footer {
	background-color:#272133;
	padding:50px;
	color:#fff;
	font-size:13px;
}
	footer * { color:#fff; }


	footer ul li {
		text-align:right;
		line-height:30px;
	}
	footer a {
		color:#4EAD91;
		text-transform:uppercase;
	}

	footer .copyright { font-size: 11px; }

	footer .social a { margin-left:15px; }   

	footer .copyright,
	footer .address,
	footer .social { 
		text-align: left; 
	}

/*
		ICONS
*/
.icons-list {
	padding:0; margin:0;
	list-style:none;
}
.icons-item {
	text-align:center;
	position:relative;
	margin-bottom:20px;
	margin-top:40px;
	padding-bottom:15px;
}

.icons-item:before {
	display:block;
	content:"";
	width:75px;
	height:4px;
	background-color:#4EAD91;
	position:absolute;
	bottom:0;
	left:50%;
	transform:translateX(-50%);
	-webkit-transform:translateX(-50%); 
	-moz-transform:translateX(-50%); 
	-o-transform:translateX(-50%); 
}

.icons-item span {
	display:block;
	font-size:60px;
}

.standard-item {
	position:relative;
	text-align:center;
	min-height:300px;
	margin:15px 30px 60px 30px;
	padding:30px;
	border:2px solid #4EAD91;
}
.standard-item:after {
	display:block;
	content:"";
	position:absolute;
	left:10px; top:10px;
	bottom:-10px; right:-10px;
	border-bottom:2px solid #000;
	border-right:2px solid #000;
}


.standard-item strong {
	color:#4EAD91;
}

.standard-item span {
	display:block;
	font-size:80px;
	margin-bottom:60px;
}


.margin-top-15		{ margin-top:15px; }
.margin-top-25		{ margin-top:25px; }
.margin-top-30		{ margin-top:30px; }
.margin-top-50		{ margin-top:50px; }
.margin-top-100		{ margin-top:100px; }
.margin-top-150		{ margin-top:150px; }
.margin-bottom-15	{ margin-bottom:15px; }
.margin-bottom-25	{ margin-bottom:25px; }
.margin-bottom-30	{ margin-bottom:30px; }
.margin-bottom-50	{ margin-bottom:50px; }
.margin-bottom-100	{ margin-bottom:100px; }
.margin-bottom-150	{ margin-bottom:150px; }
.margin-left-15		{ margin-left:15px; }
.margin-left-25		{ margin-left:25px; }
.margin-left-30		{ margin-left:30px; }
.margin-left-50		{ margin-left:50px; }
.margin-left-100	{ margin-left:100px; }
.margin-left-150	{ margin-left:150px; }
.margin-right-15	{ margin-right:15px; }
.margin-right-25	{ margin-right:25px; }
.margin-right-30	{ margin-right:30px; }
.margin-right-50	{ margin-right:50px; }
.margin-right-100	{ margin-right:100px; }
.margin-right-150	{ margin-right:150px; }

.padding-right-0	{ padding-right:0px; }
.padding-right-15	{ padding-right:15px; }
.padding-left-0		{ padding-left:0px; }
.padding-left-15	{ padding-left:15px; }
.padding-top-0		{ padding-top:0px; }
.padding-top-30		{ padding-top:30px; }
.padding-top-50		{ padding-top:50px; }
.padding-top-100		{ padding-top:100px; }
.padding-bottom-0		{ padding-bottom:0px; }
.padding-bottom-30		{ padding-bottom:30px; }
.padding-bottom-50		{ padding-bottom:50px; }
.padding-bottom-100		{ padding-bottom:100px; }

@media screen and (min-width:768px) {
	.padding-30-md { padding:30px; }
}

.bg-white { background-color: #ffffff; position:relative; z-index:1; }
.bg-green { background-color: #4EAD91; }
.bg-darkgreen { background-color: rgba( 8, 99, 72, 0.7); }
.bg-darkgreen h1, .bg-darkgreen h2, .bg-darkgreen h3,
.bg-green h1, .bg-green h2, .bg-green h3 { color:#ffffff; /*color:#272133;*/ }





#hamburger {
  width: 40px;
  height: 40px;
  position: fixed;
	right:50px; top: 50px;

	display:block;
  margin: 0;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: .5s ease-in-out;
  -moz-transition: .5s ease-in-out;
  -o-transition: .5s ease-in-out;
  transition: .5s ease-in-out;
  cursor: pointer;
  z-index:950;
}

@media screen and (max-width:767px) {
	.booking #hamburger {
		display:none;
	}
}


#hamburger:hover span {
	background-color:#4EAD91;
}
#hamburger.nav-scroll {
	top:15px;
}
#hamburger span {
  display: block;
  position: absolute;
  height: 3px;
  width: 100%;
  background: #fff;
  opacity: 1;
  right: 0;

  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: .25s ease-in-out;
  -moz-transition: .25s ease-in-out;
  -o-transition: .25s ease-in-out;
  transition: .25s ease-in-out;
}

#hamburger span:nth-child(1) {
  top: 0px;
}

#hamburger span:nth-child(2) {
  top: 12px;
}

#hamburger span:nth-child(3) {
  top: 24px;
}

#hamburger.open span:nth-child(1) {
  top: 10px;
  -webkit-transform: rotate(-135deg);
  -moz-transform: rotate(-135deg);
  -o-transform: rotate(-135deg);
  transform: rotate(-135deg);
}

#hamburger.open span:nth-child(2) {
  top: 10px;
  opacity: 0;
  right: -60px;
}

#hamburger.open span:nth-child(3) {
  top: 10px;
  -webkit-transform: rotate(135deg);
  -moz-transform: rotate(135deg);
  -o-transform: rotate(135deg);
  transform: rotate(135deg);
}





nav {
	display:none;
	opacity:0;
	z-index:900;
	position:fixed;
	left:0; top:0;
	bottom:0; right:0;
	background-color: rgba(0, 0, 0, 0.6);
	
	-webkit-transition: .5s ease-in-out;
	-moz-transition: .5s ease-in-out;
	-o-transition: .5s ease-in-out;
	transition: .5s ease-in-out;
}
nav.open {
	display:block;
	opacity:1;
}


nav .wrapper {
	width:100%;
	height:100%;
	display:table;
}
nav .wrapper ul {
	display:table-cell;
	vertical-align:middle;
}

#nav-menu li a {
	position:relative;
	display:block;
	text-align:center;
	font-size:20px;
	color:#fff;
	text-transform:uppercase;
	padding:10px 0;
	margin:10px 0;
}
#nav-menu li a:hover {
	color:#4EAD91;
}
	#nav-menu li a:after {
		position:absolute;
		background-color:#4EAD91;
		content:"";
		width:30px;
		height:3px;
		bottom:-5px;
		left:50%;
		transform:translateX(-50%);
		-webkit-transform:translateX(-50%); 
		-moz-transform:translateX(-50%); 
		-o-transform:translateX(-50%); 
	}


#nav-secondary {
	width:100%;
	padding:0;
	margin:0;
	position:fixed;
	background-color:#3C1251;
	height:60px;
	z-index:949;
	top:-100%;
	opacity:0;
	-webkit-transition: all 0.5s ease-out;
	-moz-transition: all 0.5s ease-out;
	-o-transition: all 0.5s ease-out;
	transition: all 0.5s ease-out;
}
#nav-secondary.nav-scroll {
	top:0;
	opacity:1;
}
#nav-secondary.open {
	top:-100% !important;
	opacity:0 !important;
}
#nav-secondary a {
	position:relative;
	display:block;
	margin:0;
	padding:0;
}
/*
#nav-secondary img {
	height:40px;
	width:auto;
	display:block;
	margin: 10px 0;
}
*/
@media screen and (max-width:767px) {
	#nav-secondary a.logo-big {display:none;}
	#nav-secondary a.logo-small img {
		display:block;
		height:40px;
		width:auto;
		margin-top: 15px;
	}
/*
	#nav-secondary img {
		height:auto;
		width:200px;
		margin-top: 15px;
	}
*/
	#hamburger {
		right:20px; 
		top:20px;
	}

	.nav-logo img {
		top:20px;
		left:20px;
		height:100px;
	}
	#nav-menu li a {
		font-size:14px;
	}
	.logo {
		top:20px;
		left:20px;
	}
		.logo img {
			height:100px;
		}

	#home-welcome {
		background: none;
	}

}
@media screen and (min-width:768px) {
	#nav-secondary a.logo-big img {		
		display:block;
		height:40px;
		width:auto;
		margin-top: 15px;
	}
	#nav-secondary a.logo-small { display:none; }
}






h2 .icon, h1 .icon, h3 .icon {
	display:block !important;
}
h2 .icon:before, h1 .icon:before, h3 .icon:before {
	color:#000000;
	display:block;
	font-size:100px;
}




.video-area {
    position: absolute;
	left:0; right:0;
	bottom:0; top:0;
    height: 100%;
    background-size: cover;
    z-index: 2;
    background-position: center center;
}

.video-area:after {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    content: "";
    z-index: 1;


}

.video-table {
    display: table;
    width: 100%;
    height: 100%;   
}

.video-table-cell {
    display: table-cell;
    vertical-align: middle;
    background: rgba(0, 0, 0, .6);
    padding-bottom: 150px;
}

.video-table-cell h3{
	color: #fff;
	font-size: 15px;
	font-weight: 500;
	letter-spacing: 10px;
	text-transform: uppercase;
	text-align: center;
	text-shadow: 2px 2px 1px rgba(0, 0, 0, 0.2);
	margin: 20px 0px; 
}

.video-table-cell h2{
	display: inline-block;
	color: #fff;
	font-size: 45px;
	font-weight: 500;
	text-transform: uppercase;
	line-height: 150%;
	text-align: center;
}


.video-effect{
	overflow: hidden;
	width: 100%;
	height: 100%;
}

.video-effect-box {
	-webkit-transform: translateZ(0);
	transform: translateZ(0);
	padding: 40px;
	background: transparent;
	border-radius: 5px;
	margin: auto;
	-webkit-transform-style: preserve-3d;
	transform-style: preserve-3d;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}

.video-effect-content {
	margin: auto;
	text-align: center;
	-webkit-transform-style: preserve-3d;
	transform-style: preserve-3d;
}

.video-effect-content h2 {
	-webkit-transform: translateZ(70px);
	transform: translateZ(70px);
}

.video-effect-content h3{
	-webkit-transform: translateZ(50px);
	transform: translateZ(50px);
}
.video-table-button{
	position: relative;
	z-index: 9999;
}
.video-table-button a{
	background: transparent;
	font-size: 14px;
	color: #fff;
	font-weight: 500;
	text-align: center;
	border: 1px solid #fff;
	border-radius: 2px;
	padding: 15px 20px;

}
.video-table-button a:hover{
	background: #fff;
	color: #2d2d2d;
}

@media screen and (max-width:767px) {
	.video-table-cell h2{
		font-size: 30px;
	}
	.video-effect-box{
		padding: 20px;
	}
}









/* cennik */

ul.pricelist-extras li {
	display:block;
	position:relative;
	margin-bottom:30px; 
	padding-bottom:30px;
	line-height:1.7em;
}
ul.pricelist-extras li:before {
	display:block;
	content:"";
	width:75px;
	height:4px;
	background-color:#4EAD91;
	position:absolute;
	bottom:0;
	left:50%;
	transform:translateX(-50%);
	-webkit-transform:translateX(-50%); 
	-moz-transform:translateX(-50%); 
	-o-transform:translateX(-50%); 
}

.pricelist-item { 
	display:block;
	position:relative;
	border:2px solid #4EAD91;
}

.pricelist-item span { 
	display:inline-block;
	padding:20px 0;
	text-align:center;
	width:33.333333%;
}
.pricelist-item.pricelist-item-1 span.title { background-color:#18B98A; color:#fff; }
.pricelist-item.pricelist-item-2 span.title { background-color:#E6870B; color:#fff; }
.pricelist-item.pricelist-item-3 span.title { background-color:#DC106F; color:#fff; }
.pricelist-item span.date { color:#4EAD91; border-left:2px solid #4EAD91; }
.pricelist-item span.price { color:#272133; border-left:2px solid #4EAD91; }




/*-----------------------------------------
15. Scroll To Top Button
-------------------------------------------*/
.scroll-to-top{
	font-size: 20px;  
	padding: 6px; 
	text-align:center; 
	color: #fff;
	text-decoration: none;
	position:fixed;
	bottom:80px;
	right: 10px;
	display:none;
	border-radius: 0;
	background: #4EAD91;
	width: 40px;
	height: 40px;  
	z-index: 9999;
	outline: none;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;   
}
.scroll-to-top i{
	color: #fff;
}

.scroll-to-top:hover{
	color: #fff;
	background: #2d2d2d;
}
 .scroll-to-top:hover i{
	color: #fff;
}
.scroll-to-top:visited{
	color: #fff;
	text-decoration:none;
}


/*-----------------------------------------
16. Preloader
-------------------------------------------*/
#preloader {
    position: fixed;
    left: 0;
    top: 0;
    z-index: 99999;
    width: 100%;
    height: 100%;
    overflow: visible;
    background: #fff;
    display: table;
    text-align: center;
} 

.spinner {
  position: fixed;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
  margin: auto 0;
  width: 70px;
  text-align: center;
}

.cube2 {
  background-color: #4EAD91;
  width: 15px;
  height: 15px;
  position: absolute;
  top: 0;
  left: 0;
  
  -webkit-animation: sk-cubemove 1.8s infinite ease-in-out;
  animation: sk-cubemove 1.8s infinite ease-in-out;
}
.cube1{
  background-color: #4EAD91;
  width: 15px;
  height: 15px;
  position: absolute;
  top: 0;
  left: 0;
  
  -webkit-animation: sk-cubemove 1.8s infinite ease-in-out;
  animation: sk-cubemove 1.8s infinite ease-in-out;
}

.cube2 {
  -webkit-animation-delay: -0.9s;
  animation-delay: -0.9s;
}

@-webkit-keyframes sk-cubemove {
  25% { -webkit-transform: translateX(42px) rotate(-90deg) scale(0.5) }
  50% { -webkit-transform: translateX(42px) translateY(42px) rotate(-180deg) }
  75% { -webkit-transform: translateX(0px) translateY(42px) rotate(-270deg) scale(0.5) }
  100% { -webkit-transform: rotate(-360deg) }
}

@keyframes sk-cubemove {
  25% { 
    transform: translateX(42px) rotate(-90deg) scale(0.5);
    -webkit-transform: translateX(42px) rotate(-90deg) scale(0.5);
  } 50% { 
    transform: translateX(42px) translateY(42px) rotate(-179deg);
    -webkit-transform: translateX(42px) translateY(42px) rotate(-179deg);
  } 50.1% { 
    transform: translateX(42px) translateY(42px) rotate(-180deg);
    -webkit-transform: translateX(42px) translateY(42px) rotate(-180deg);
  } 75% { 
    transform: translateX(0px) translateY(42px) rotate(-270deg) scale(0.5);
    -webkit-transform: translateX(0px) translateY(42px) rotate(-270deg) scale(0.5);
  } 100% { 
    transform: rotate(-360deg);
    -webkit-transform: rotate(-360deg);
  }
}









.overlay {
	position:absolute;
	top:0;
	left:0;
	width:100%;
	height:100%;
	background:#000;
	opacity:0.2;
}

/*------ Home -------------------------------------------------*/
.hero-wrap {
	float:left;
	width:100%;
	height:100%;
	position:relative;
	overflow:hidden;
	z-index:2;
}
.hero-wrap .overlay {
	z-index:2;
}
.hero-wrap-item {
	width:100%;
	position:relative;
	z-index:12;
	top:50%;
	transform: translateY(-50%);
}

.hero-wrap-item h2 {
    position:relative;
	z-index:12;
	color:#fff;
}

.hero-wrap-item h2 span:before {
	color:#fff;
}
.hero-wrap-item h3 , .hero-wrap-item h3 a {
	color:#fff;
	font-size:18px;
	text-transform:uppercase;
	font-weight:200;
	letter-spacing:18px;
	padding-left:6px;
}
.hero-wrap-item h3 a {
	letter-spacing:2px;
	font-size:
}
.nFound-Page  {
	display:inline-table;
	font-size:150px;
	text-transform:uppercase;
	color:#fff;
}
.hero-scroll-link {
	position: absolute;
	bottom:50px;
	left:50%;
	width:40px;
	height:40px;
	line-height:40px;
	color:#fff;
	font-size:12px;
	margin-left:-20px;
	z-index:9;
	border:1px solid rgba(255,255,255,0.21);
}
.hero-wrap-image-slider-holder  , .slideshow-item  {
	position:absolute;
	top:0;
	left:0;
	width:100%;
	height:100%;
	z-index:1;
}
.hero-wrap-image-slider,  .hero-wrap-text-slider-holder  , .hero-wrap-text-slider , .hero-wrap-text-slider-holder    {
	position:relative;
	width:100%;
	height:100%;
	float:left;
}
.hero-wrap-image-slider-holder {
	background:#000;
}
.hero-wrap-text-slider-holder {
	z-index:3;
}
.hero-link {
	margin-top:30px;
	display:inline-table;
	padding:10px 6px;
	color:#fff;
	border-top:1px solid #fff;
	border-bottom:1px solid #fff;
}
.hero-link:hover {
	color:rgba(255,255,255,0.51)
}
.media-container {
	position:absolute;
	top:0;
	left:0;
	width:100%;
	height:100%;
	overflow:hidden;
	z-index:-1;
}
.video-mask {
	position:absolute;
	top:0;
	left:0;
	width:100%;
	height:100%;
	z-index:1;
}
.mob-bg {
	display:none;
}
.video-holder{
    position: absolute;
    width: 100%;
    height: 100%;
    display: block;
    overflow: hidden !important;
    top: 0;
    left: 0;
    padding: 0 !important;
}
.video-holder iframe  {
    position: absolute;
    top: -75px;
    left: 50%;
    width: 100%;
    height: 100%;
    display: block;
	overflow:hidden;
}
.fullwidth-slider-holder , .single-slider-holder {
	float:left;
	width:100%;
	position:relative;
}
.fullwidth-slider-holder .item {
	position:relative;
}
.full-width-holder {
	float:left;
	width:100%;
	position:relative;
}
.single-slider-holder {
	margin-bottom:20px;
}
.single-slider .item {
	position:relative;
}
article {
	float:left;
	margin-top:10px;
	width:100%;
	position:relative;
}

.bg {
	position:absolute;
	top:0;
	left:0;
	width:100%;
	height:100%;
	background-size: cover;
	background-attachment: scroll  ;
	background-position: center  ;
	background-repeat:repeat;
	background-origin: content-box;

	-webkit-transition: all 0s ease;
	-moz-transition: all 0s ease;
	-o-transition: all 0s ease;   
}

.full-height {
	height:100%;
}




.home-blog-item-small .home-blog-item-thumb {
	width:100%;
	height:0;
	padding-top:65%;
	background-size: cover;
	background-attachment: scroll  ;
	background-position: center center;
	background-repeat:repeat;
}
	.home-blog-item-small .home-blog-item-thumb a {
		display:block;
		position:absolute;
		left:0;top:0;
		bottom:0; right:0;
	}



#objectmap {
	width:100%;
	z-index: 91;
}



.map-item:hover.interactive, .map-item:hover.interactive_link { cursor:pointer; }

.map-item .highlight{ visibility:hidden; }
.map-item:hover .highlight{ visibility:visible !important; }








@media screen and (max-width:767px) {
	h1 {
		font-size:36px;
		font-weight:400;
		font-family: 'Euphoria Script', cursive;
		color:#4EAD91;
	}

	h2 {
		font-size:36px;
		font-weight:400;
		font-family: 'Euphoria Script', cursive;
		color:#4EAD91;
	}

	h3 {
		font-size:20px;
		font-weight:700;
		color:#4EAD91;
	}
	.news h1 {
		font-family: 'Josefin Sans', sans-serif !important;
		font-size:36px !important;
		line-height: 1.2;
	}
	.news_list h3 {
		font-size:20px;
		margin-top: 30px;
	}

	h1 em, h2 em {
		font-family: 'Josefin Sans', sans-serif !important;
		font-size:20px;
	}

	h3 em {
		font-family: 'Josefin Sans', sans-serif !important;
		font-size:16px;
	}
	#home-blog .home-blog-item-content {
		padding: 0px;
	}
}




.video-caption {
	position:absolute;
	top:50%;
	transform:translateY(-50%);
	width:100%;
	text-align:center;
}

	.video-caption h3 {
		font-size:4em;
		color:rgba(255,255,255,0.5);
	}
	.step1 {	  
		-webkit-animation-delay: 0.6s;
		 animation-delay: 0.6s;
	}
	.step2 {	  
		-webkit-animation-delay: 1.2s;
		 animation-delay: 1.2s;
	}
	.step3 {	  
		-webkit-animation-delay: 1.8s;
		 animation-delay: 1.8s;
	}
	.step4 {	  
		-webkit-animation-delay: 2.4s;
		 animation-delay: 2.4s;
	}
	.step5 {	  
		-webkit-animation-delay: 3s;
		 animation-delay: 3s;
	}

	@media screen and (max-width:767px) {
		.video-caption h3 {
			font-size:3em;
		}
	}
#myVideo {
/*
  position: fixed;
  left:0; right: 0;
  bottom: 0; top:0;
  width: 100vw; 
  height: 100vh;
*/

position: relative;
z-index: -1;
object-fit: cover;
object-position: center;
width: 100%;
height: 100%;
}

/* Add some content at the bottom of the video/page */
.video-content {
  position: fixed;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  color: #f1f1f1;
  width: 100%;
  padding: 20px;
}

/* Style the button used to pause/play the video */
#myBtn {
  width: 200px;
  font-size: 18px;
  padding: 10px;
  border: none;
  background: #000;
  color: #fff;
  cursor: pointer;
}

#myBtn:hover {
  background: #ddd;
  color: black;
}


div.modal {
	background-color: rgba(39,33,51, 0.6);
}

.map-modal {
	background-color:#4EAD91;
	color:#fff;
	border-radius:0;
}

.map-modal div.modal-content {
	background-color:#4EAD91;
	color:#fff;
	border-radius:0;
	border:none;
	margin-top: 90px;
}
	.map-modal div.modal-content:before {
		display:block;
		content:"";
		position: absolute;
		left:4px; right:-4px;
		top:4px; bottom:-4px;
		border-bottom: 2px solid #272133;
		border-right: 2px solid #272133;
		z-index:0;
		-webkit-transition: all 0.2s ease-out;
		-moz-transition: all 0.2s ease-out;
		-o-transition: all 0.2s ease-out;
		transition: all 0.2s ease-out;
	}

.map-modal .modal-content input.form-control, .map-modal .modal-content textarea.form-control,
.map-modal .modal-content .input-group-prepend * {
	border-radius:0;
	border:none;
}



.gallery-item {
	position:relative;
	display:block;
	width:100%;
	height:0;
	padding-top:100%;
	background-size:cover;
	background-position:50% 50%;
	border:2px solid #fff;
}

.gallery-item:before {
	position:absolute;
	content:"";
	left:0; right:0;
	top:0; bottom:0;
	background-color:#4EAD91;
	-webkit-transition: .25s ease-in-out;
	-moz-transition: .25s ease-in-out;
	-o-transition: .25s ease-in-out;
	transition: .25s ease-in-out;
	opacity:0;
}
.gallery-item h3 {
	position:absolute;
	display:block;
	color:#fff;
	top:75%;
	width:100%;
	text-align:center;
	padding:0 20px;
	transition:translateY(-50%);
	-webkit-transition: .5s ease-in-out;
	-moz-transition: .5s ease-in-out;
	-o-transition: .5s ease-in-out;
	transition: .5s ease-in-out;
	opacity:0;
	font-size:18px;
}
a.gallery-item:hover h3 {
	top:50%;
	opacity:1;
	z-index:1001;
}
a.gallery-item:hover:before {
	opacity:1;
	left:-10px;top:-10px;bottom:-10px;right:-10px;
	z-index:1000;
}

.gallery-item a {
	display:block;
	position:absolute;
	top:0; left:0; bottom:0; right:0;
	background-position:50% 50%;
	background-size:cover;
}

/*
.gallery-item a {
	display:block;
	position:absolute;
	top:0; left:0; bottom:0; right:0;
	background-color:#ccc;
	margin:7px;
	overflow:hidden;

	background-size:150%;
	background-position:50% 50%;
}
*/
.owl-theme .owl-nav {
	position:absolute;
	top:0; bottom:0;
	right:-25px; width:25px;
}

div.owl-theme .owl-nav .owl-prev { display:none; }
div.owl-theme .owl-nav .owl-next, div.owl-theme .owl-nav .owl-next:hover { 
	display:block;
	position:absolute;
	width: 25px;
	left:0;
	top:0;bottom:0;
	margin:0;
	padding:0;
	background: url('/img/arrow-right.svg') no-repeat center center;
	background-size: 25px 50px;
	overflow:hidden;
	text-indent: 99999px;
}
 

#gallery-offer .owl-dots .custom-dot { 
	display:inline-block; 
	border:2px solid rgba(78,173,145,1);
	width:14px;
	height:14px; 
	margin: 5px;
	border-radius:50%;
}

#gallery-offer .owl-dots .custom-dot.active, #gallery-offer .owl-dots .custom-dot:hover { 
	background-color:rgba(78,173,145,1);
}




#home-testimonials {
	margin-top:100px;
}
#testimonials-slider .owl-dots .custom-dot { 
	display:inline-block; 
	border:2px solid rgba(78,173,145,1);
	width:14px;
	height:14px; 
	margin: 5px;
	border-radius:50%;
}

#testimonials-slider .owl-dots .custom-dot.active, #testimonials-slider .owl-dots .custom-dot:hover { 
	background-color:rgba(78,173,145,1);
}
#testimonials-slider { margin-top:50px;}

#testimonials-slider .testimonial-quot { 
	position:relative;
	font-style:italic;
	padding:20px 35px;
	background: url('/img/quot.png') no-repeat left top;
	background-size:33px 21px;
}
#testimonials-slider .testimonial-quot:after { 
	display:block;
	content:"";
	position:absolute;
	width:100px; height:63px;
	right:0; bottom:0;
	background: url('/img/quot-right.png') no-repeat center center;
	background-size:33px 21px;
}


#testimonials-slider .testimonial-author { 
	font-weight:bold;
}

.newsletter_wrapper {
	padding:50px 50px 0 50px ;
	/* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#3c1251+0,272133+100 */
	background: #3c1251; /* Old browsers */
	background: -moz-linear-gradient(top,  #3c1251 0%, #272133 100%); /* FF3.6-15 */
	background: -webkit-linear-gradient(top,  #3c1251 0%,#272133 100%); /* Chrome10-25,Safari5.1-6 */
	background: linear-gradient(to bottom,  #3c1251 0%,#272133 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#3c1251', endColorstr='#272133',GradientType=0 ); /* IE6-9 */
}

.newsletter_wrapper h2 {
	margin-bottom:30px;
	font-size:24px;
	font-family: 'Josefin Sans', sans-serif;
	color:#fff;
	text-align:center;
}

.newsletter_wrapper .newsletter_inner {
	padding:50px;
	padding-bottom:10px;
	background-color:#fff;
	text-align:center;
}
.newsletter_wrapper .newsletter_inner strong {
	color:#4EAD91;
	font-size:16px;
}
.image-left {
	position:relative;
}
	.image-left img {
		width:auto !important;
		height:auto;
		position:absolute;
		right:-80px;
		top:0px;
		z-index:10;
	}
.image-right {
	position:relative;
}
	.image-right img {
		width:auto !important;
		height:auto;
		position:absolute;
		left:-80px;
		top:0px;
		z-index:10;
	}

.newsletter_wrapper2 {
	padding:50px 0px 0 0px ;
	color:#3C1251;
}
.newsletter_wrapper2 h2 {
	padding:20px 50px 20px 50px ;
	margin-bottom:0px;
	font-size:18px;
	font-family: 'Josefin Sans', sans-serif;
	color:#3C1251;
	text-align:center;
}
.newsletter_wrapper2 .newsletter_inner {
	padding:20px 50px;
	padding-bottom:10px;
	background-color:#fff;
	text-align:center;
}

.newsletter-traingle {
	display:block;
	position:relative;
/*	padding-left:30px;*/
	margin:0 !important;
	padding:0;
}
.newsletter-traingle span {
	display:inline-block;
	width: 10px; 
	height: 20px; 
	position:relative;
	margin-right:5px;
}
.newsletter-traingle span:after {
	display:block;
	content:"";
	width: 0px; 
	height: 0px; 
	position:absolute;
	top:5px;
	right:0;
	border-top: 6px solid transparent;
	border-bottom: 6px solid transparent;
	border-left: 6px solid #f6b817;
}


.newsletter_wrapper2 ul.pricelist-extras li {
    display: block;
    position: relative;
    margin-bottom: 10px;
    padding-bottom: 10px;
    line-height: 1.5em;
}


@media screen and (max-width:767px) {
	.image-left, .image-right {
		display:none !important;
	}
}






a.youtube-cover {
	display:block;
	position:relative;

}
a.youtube-cover:before {
	display:block;
	content:"";
	position:absolute;
	left:0; top:0; right:0; bottom:0;
	background: rgba(0,0,0,0.5) url("/img/yt_play.svg") no-repeat center center;
	background-size:60px 41px;
	z-index:50;
	-webkit-transition: all .25s ease-out;
	-moz-transition: all .25s ease-out;
	-o-transition: all .25s ease-out;
	transition: all .25s ease-out;	
}
a.youtube-cover:hover:before {
	background-color: rgba(0,0,0,0);
}




/*
	PKAIETY
*/
.card {
	border-color:#4EAD91;
}
.card hr { border-color:#4EAD91;} 
.card ul.pricelist-extras li {
	display:block;
	position:relative;
	margin-bottom:20px; 
	padding-bottom:20px;
	line-height:1.4em;
	text-align:center;
}
.card p { text-align:center; }

.card h5 {
	font-size:36px;
	font-weight:400;
	font-family: 'Euphoria Script', cursive;
	color:#4EAD91;
}
.card h6 {
	font-weight:700;
}


#nav-menu li.navi-lang { text-align:center; }
#nav-menu li.navi-lang a {
	display:inline-block;
text-align:center;
	margin-left:10px; 
	margin-right:10px;
}