@import url('https://fonts.googleapis.com/css?family=Exo:300,600');

/* div#preloader {
    position: fixed;
    left: 0;
    top: 0;
    z-index: 0;
    width: 100%;
    height: 100%;
    overflow: visible;
    background: #24111a url('../images/loading2.gif') no-repeat center center;
}
*/
/* border-box */
html, body {
    position: relative;
    width:100%;
    height:100%;
}
html,* { box-sizing: border-box; }
*, *:before, *:after { box-sizing: inherit; }
* {
	padding: 0;
	margin: 0;
}
/* clearfix */
.textbox:before,
.textbox:after,
.wrapper:before,
.wrapper:after,
.row:before,
.row:after  {
    content: " ";
    display: table;
}
.textbox:after,
.wrapper:after,
.row:after {
    clear: both;
}

::-webkit-input-placeholder {
  color: #8c8d9e;
  opacity: 1;
}

::-moz-placeholder {
  color: #8c8d9e;
  opacity: 1;
}

input:-moz-placeholder {
  color: #8c8d9e;
  opacity: 1;
}

:-ms-input-placeholder {
  color: #8c8d9e;
  opacity: 1;
}

p { margin-top:18px;}
h1, h2, h3, h4, h5, h6 { font-family: 'Exo', sans-serif; color: white; font-weight: 300; line-height: 140%; }
h1 {
	font-size: 40px;
}
h2 {
	font-size: 30px;
}
.subpage h1 {
    font-weight: 600;
}
.title h2 {
	margin: 20px 0 5px;
}
h3 {
	font-size: 20px;
}
h4 {
	font-size: 18px;
}
ul li, ol li {margin: 6px 0;}
.textbox ul li,
.textbox ol li,
.textbox ul li *,
.textbox ol li * {
  text-align: left !important;
}
p, li, a {line-height:150% !important; }
input:focus, textarea:focus, select:focus {border-color:#ccc; outline-color:#ccc;}
textarea {-moz-appearance:none;outline:0px none transparent;}
textarea:focus, input:focus{outline: 0;}
*:focus {outline: 0;}
* {
	font-size: 14px;
	font-family: 'Exo', sans-serif;
    font-weight: 300;
}
b, strong {
    font-weight: 600;
}
body {
	color: #8c8d9e;
	font-size: 14px;
	font-family: 'Exo', sans-serif;
	-webkit-font-smoothing: antialiased;
	margin: 0;
	overflow-x: hidden;
	min-width: 320px;
	background: white;
}
a {
	color: white;
	text-decoration: underline;
	-webkit-transition: color 200ms ease, background-color 200ms ease, text-shadow 200ms ease, box-shadow 200ms ease, border 200ms ease;
    transition: color 200ms ease, background-color 200ms ease, text-shadow 200ms ease, box-shadow 200ms ease, border 200ms ease;
}
a:hover {
	text-decoration: none;
}
img {
	max-width: 100%;
	height: auto;
	vertical-align: middle;
}
ul {
	padding: 0;
}
.fs16{
	font-size: 16px;
}
.mt40 {
	margin-top: 40px;
}
.text-center {
	text-align: center;
}
.clear {
	display: none;
}
.textbox ul,ol {margin:10px 0 10px 16px;}

.hide_logo .logo {
  display: none !important;
}

/* Go top */

.go-top {
    position: fixed;
    bottom: 60px;
    right: 40px;
    text-decoration: none;
    color: white;
    background-color: rgba(0, 0, 0, 0.3);
    font-size: 12px;
    padding: 22px;
    display: none;
    z-index: 10000000;
    letter-spacing: -9999px;
    background: black url(../images/gototop.png) center center no-repeat;
    background-size: 18px;
}
.go-top:hover {
	background: white url(../images/gototop2.png) center center no-repeat;
    background-size: 18px;
    opacity: 1;
}
.home .go-top {
    bottom: 30px;
    right: 30px;
}

/* scroll down */

.scroll-down {
    opacity: 1;
    -webkit-transition: all .5s ease-in 3s;
    transition: all .5s ease-in 3s;
}
.scroll-down {
    position: absolute;
    bottom: 25%;
    left: calc(50% - 20px);
    display: block;
    width: 45px;
    height: 45px;
    background: url(../images/content-bg.png) top center repeat;
    /* border: 2px solid #FFF; */
    background-size: 14px auto;
    z-index: 1000;
    -webkit-animation: bounce 2s infinite 2s;
    animation: bounce 2s infinite 2s;
    -webkit-transition: all .2s ease-in;
    transition: all .2s ease-in;
}
.scroll-down:before {
    position: absolute;
    top: calc(50% - 8px);
    left: calc(50% - 6px);
    transform: rotate(-45deg);
    display: block;
    width: 12px;
    height: 12px;
    content: "";
    border: 2px solid white;
    border-width: 0px 0 2px 2px;
}
.subpage .scroll-down {
    display: none;
}
@keyframes bounce {
    0%,
    100%,
    20%,
    50%,
    80% {
      -webkit-transform: translateY(0);
      -ms-transform: translateY(0);
      transform: translateY(0);
    }
    40% {
      -webkit-transform: translateY(-10px);
      -ms-transform: translateY(-10px);
      transform: translateY(-10px);
    }
    60% {
      -webkit-transform: translateY(-5px);
      -ms-transform: translateY(-5px);
      transform: translateY(-5px);
    }
}

/* header */

.header {
    margin: 35px auto 0px;
    padding: 0 0px;
}
.header .right-head{
	float: right;
}

nav {
    position: relative;
    z-index: 2000;
}
nav input {
    display: none;
}
nav .open {
    background-color: white;
    width: 24px;
    height: 4px;
    display: block;
    cursor: pointer;
    position: fixed;
    z-index: 100;
    top: 40px;
    left: 40px;
}
nav .open:before {
  content: "";
  background-color: white;
  width: 24px;
  height: 4px;
  display: block;
  position: relative;
  top: -8px;
  transform: rotate(0deg);
  transition: all 0.3s ease;
}
nav .open:after {
  content: "";
  background-color: white;
  width: 24px;
  height: 4px;
  display: block;
  position: relative;
  top: 4px;
  transform: rotate(0deg);
  transition: all 0.3s ease;
}
nav .menuOpen {
    width: 45px;
    height: 37px;
    display: block;
    cursor: pointer;
    float: left;
    background: url(../images/content-bg.png) top center repeat;
    position: fixed;
    top: 24px;
    left: 30px;
    z-index: 1000;
}
nav .menuOpen:hover {
    background: black;
}
span.submenu-show {
    width: 12px;
    height: 9px;
    display: inline-block;
    background: url(../images/chevron-arrow-down2.png) center center no-repeat;
    background-size: 12px;
    cursor: pointer;
    margin-left: 10px;
}
span.submenu-show.show {
    width: 12px;
    height: 12px;
    display: inline-block;
    background: url(../images/chevron-arrow-left2.png) center center no-repeat;
    background-size: 12px;
    cursor: pointer;
    margin-left: 10px;
}
.active span.submenu-show {
    width: 12px;
    height: 9px;
    display: inline-block;
    background: url(../images/chevron-arrow-down.png) center center no-repeat;
    background-size: 12px;
    cursor: pointer;
    margin-left: 10px;
}
.active span.submenu-show.show {
    width: 12px;
    height: 12px;
    display: inline-block;
    background: url(../images/chevron-arrow-left.png) center center no-repeat;
    background-size: 12px;
    cursor: pointer;
    margin-left: 10px;
}

.jazyky {
  display: inline-block;
  margin-left: 100px;
  margin-top: 14px;
  color: #fff;
  position: relative;
  z-index: 10000;
}
.jazyky  a {
  color: #fff;
  text-transform: uppercase;
  text-decoration: none;
}
.jazyky  a:hover {
  text-decoration: underline;
}
@media only screen and (max-width:480px) {
    .logo {
      padding-left: 10px;
    }
}


nav .menu {
  position: fixed;
  width: 100vw;
  height: 100vh;
  top: 0;
  left: 0;
  background: rgba(29, 29, 29, 0.95);
}

nav .menu label {
  width: 30px;
  height: 30px;
  position: absolute;
  right: 20px;
  top: 20px;
  background-size: 100%;
  cursor: pointer;
}

nav .menu .menuContent {
  position: relative;
  top: 50%;
  font-size: 54px;
  text-align: center;
  padding-bottom: 20px;
  margin-top: -170px;
}

nav .menu ul {
  list-style: none;
  padding: 0;
  margin: 0 auto;
}
nav .menu ul li{
  margin: 0;
}
nav .menu ul li:hover{
    background: rgba(0, 0, 0, 0.3);
}
nav .menu ul li ul li:hover{
    background: none;
}
nav .menu ul li a {
  display: inline-block;
  color: white;
  text-decoration: none;
  transition: color 0.2s;
  padding: 10px 0;
  font-size: 20px;
}
nav .menu ul ul {
  margin-bottom: 8px;
  padding-bottom: 8px
}
nav .menu ul ul li a {
  display: inline-block;
  color: white;
  text-decoration: none;
  transition: color 0.2s;
  padding: 10px 0;
  font-size: 14px;
}
nav .menu ul li.active{
  background: white;
}
nav .menu ul li.active a{
  color: black;
}
nav .menuEffects {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s, visibility 0.5s;
}

nav .menuEffects ul {
  transform: translateY(0%);
  transition: all 0.5s;
}

nav #menuToggle:checked ~ .menuEffects {
  opacity: 1;
  visibility: visible;
  transition: opacity 0.5s;
}

nav #menuToggle:checked ~ .menuEffects ul {
  opacity: 1;
}

nav #menuToggle:checked ~ .menuOpen .open {
  background-color: transparent;
}

nav #menuToggle:checked ~ .menuOpen .open:before {
  content: "";
  background-color: white;
  transform: rotate(45deg);
  position: absolute;
  top: 0;
  right: 0;
  z-index: 1;
}

nav #menuToggle:checked ~ .menuOpen .open:after {
  content: "";
  background-color: white;
  transform: rotate(-45deg);
  position: relative;
  top: 0;
  right: 0;
  z-index: 1;
}

nav #menuToggle:not(:checked) ~ .menuEffects ul {
  transform: translateY(-30%);
}

/* gallery-icon */

.gallery-icon {
    z-index: 10;
    position: absolute;
    top: 90%;
    width: 100%;
    text-align: center;
}
.gallery-icon .footer-sc{
	width: 18px;
	height: 18px;
	display: inline-block;
	margin-left: 20px;
    margin-right: 20px;
    transition: all .3s ease-in-out;
}
.gallery-icon .footer-sc:hover{
	transform: scale(1.2);
}
.gallery-icon .ico1{
	background: url(../images/facebook-logo.png) top center no-repeat;
	background-size: 18px;
}
.gallery-icon .ico2{
	background: url(../images/google-plus-symbol.png) top center no-repeat;
	background-size: 16px;
    padding-top: 1px;40
}
.gallery-icon .ico3{
	background: url(../images/twitter.png) top center no-repeat;
	background-size: 18px;
}
#footer-icons .ico4{
	background: url(../images/instagram-symbol.png) top center no-repeat;
	background-size: 18px;
}
#footer-icons .ico5{
	background: url(../images/pinterest-logo.png) top center no-repeat;
	background-size: 18px;
}
#footer-icons .ico6{
	background: url(../images/youtube.png) top center no-repeat;
	background-size: 18px;
}
.container {
    position: absolute;
    top: 100%;
    z-index: 998;
    width: 100%;
    background: url(../images/content-bg.png) top center repeat;
}
.container > .content{
	max-width: 1000px;
	margin: 30px auto 0px;
	padding: 30px ;
	color: white;
}
.container .content .row,
.container .content .map{
	margin: 30px auto 30px;
    display: inline-block;
	width: 100%;
}
.container .content .row.likebox {
    margin: 10px auto 10px;
}
.container .content .row.form-items{
	margin: 0px auto 0px;
}
.container .content .formular {
    margin: 0px auto 30px;
}
.content .clear{
	margin: 0;
}
.textbox .has-image.span12 {
	margin: auto;
}
.span12 {
	width: 100%;
}
.span6 {
	width: calc((100% - 30px) / 2);
	float: left;
	margin-right: 30px;
}
.span4 {
	width: calc((100% - 60px) / 3);
	float: left;
	margin-right: 30px;
}
.span3 {
	width: calc((100% - 90px) / 4);
	float: left;
	margin-right: 30px;
}
.span6.d2,
.span4.d3,
.span3.d4 {
	margin-right: 0;
}
.logo {
	float: right;
	position: relative;
	z-index: 1;
	margin-top: -10px;
    max-width: 100%;
}
.logo a {
	display: inline-block;
}
.logo a img {
	vertical-align: middle;
	max-height: 100%;
	width: auto;
}
.homepage .header {
	padding: 20px 70px;
	margin-bottom: 100px;
}
.header {
	min-height: 80px;
    z-index: 3;
    position: absolute;
    width: 200px;
    right: 30px;
    z-index: 999;
}
.subpage .header {
    position: fixed;
}
.homepage .wrapper {
	min-height: 630px;
	position: relative;
}
.content > div:first-child {
	margin-top: 0 !important;
}
.span12.d1.img_right img{
	float: right;
	max-width: 35%;
    margin-left: 25px;
    margin-bottom: 20px;
    margin-top: 5px;
}
.span12.d1.img_left img{
	float: left;
    margin-bottom: 20px;
    margin-right: 25px;
    max-width: 35%;
    margin-top: 5px;
}
.has-image .img-wrap {
	display: block;
	position: relative;
	overflow: hidden;
	padding:  60% 0 0 !important;
}
.has-image .img-wrap img {
	width: 100% !important;
	height: auto !important;
	-webkit-transform: translate(-50%,-50%);
	-ms-transform: translate(-50%,-50%);
	transform: translate(-50%,-50%);
	position: absolute;
	top: 50% !important;
	left: 50% !important;
}
.has-image.span12 .img-wrap {
	padding:  38% 0 0 !important;
}
.img-wrap {
	position: relative;
}
.boxinside p:first-child{
	margin-top: 0;
}
.has-image button, .has-image .button, .form button {
	font-size: 14px;
	font-weight: 600;
	font-family: 'Exo', sans-serif;
}
.textbox .span12 a.button:hover {
	text-decoration: none;
}
.textbox .span4 {
	width: calc((100% - 60px) / 3);

}
.responsive_video {
	width: 83%;
	height: 580px;
}
.content .video {
	margin-top: 90px;
	margin-bottom: 50px;
	max-width: 960px;
}
.video .span12 {
	position: relative;
	padding-bottom: 56.25%; /* 16:9 */
	padding-top: 25px;
	height: 0;
}
.video .span12 iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
.foot {
	background: #000000;
	padding: 8px 30px 27px;
}
.textbox img{
	width: 100%;
}
a.button,
button.button{
	display: inline-block;
    text-decoration: none;
    color: white;
    font-size: 14px;
    border: 2px solid white;
    padding: 7px 20px 6px;
    margin: 20px 0 0;
    transition: all .4s ease;
    -moz-border-radius: 20px;
    font-family: 'Exo', sans-serif;
    font-weight: 300;
}
a.button:hover,
button.button:hover {
	color: black;
    border: 2px solid white;
    background: white;
}
a.button.red,
button.button.red{
    color: red !important;
    background: transparent;
	border: 2px solid red;
}
a.button.red:hover,
button.button.red:hover {
	background: red;
	border: 2px solid red;
    color: white !important;
}
a.button.green,
button.button.green{
	border: 2px solid #16b406;
    color: #16b406 !important;
    background: transparent;
}
a.button.green:hover,
button.button.green:hover {
    background: #16b406;
    color: white !important;
	border: 2px solid #16b406;
}
.formular a.button.green,
.formular button.button.green{
	background: white;
	border: 2px solid white;
    color: black !important;
}
.formular a.button.green:hover,
.formular button.button.green:hover {
	border: 2px solid orange;
    color:orange !important;
    background: transparent;
}
a.button.orange,
button.button.orange{
	border: 2px solid orange;
    color: orange !important;
    background: transparent;
}
a.button.orange:hover,
button.button.orange:hover {
	border: 2px solid orange;
    color: white !important;
    background: orange;
}
.form button {
    margin-top: 0;
}
.content .formular.password-access-form .formdata.input span {
  display: none;
}
.textbox .has-image h3 {
	margin-top: 25px;
}
.textbox h3 {
	font-size: 20px;
}
.content .buttonrow {
	max-width: 100%;
}
.content .title.title_butt {
	background: #010202;
	max-width: 100%;
	margin-bottom: -140px;
	text-align: center;
	padding-top: 84px;
}
.content .title.title_butt:before {
	content: '';
	display: block;
	width: 65px;
	margin: 0 auto;
	height: 30px;
	background: #000 url(../img/port-log.png) center center no-repeat;
	background-size: 20px 25.5px;
	position: relative;
	top: -10px;
}
.content .title.title_butt h2,
.content .title.title_butt h3 {
	color: #fff;
}
.content .title.title_butt h2 {
	display: inline;
	padding-top: 23px;
	border-top: 1px solid rgba(180,139,24,0.33);
}
.content .title.title_butt h3 {
	font-size: 18px;
	margin-top: 15px;
}
.buttonrow a.button{
	font-size: 15px;
	display: inline-block;
	color: #fff;
	padding: 10px 30px 11px;
	font-weight: 300;
}

/* -- gallery -- */
.gallery img {margin:0 !important;}
.gallery .row {margin:0 !important; }
.row.gallery .span3 {width:24.5%; margin:0 0 0.5% 0.5%; position:relative;}
.row.gallery .span3 img {max-width:100%;}
.row img {margin-bottom:20px; margin-top:10px;}


/* -- like boxs -- */

.span12 .lbox {height:45px; list-style-type:none; margin:0 0 0 5px;}
.span12 .lbox li {float:left; height:40px; margin:10px 0 0 0;}
.span12 .lbox li.fbli {margin-right:10px;}
.span12 .lbox li.gpli {margin-right:10px; width:58px;}
.span12 .lbox li.twli {}
.likebox:before, .likebox:after {display:table; content:" ";}
.likebox:before {clear:both;}
@media only screen and (max-width:767px){
	.span2 {width:100%; float:left;}
	.span12 .lbox li {height:15px;}
	.likebox {padding-bottom:20px;}
	.row .span6.formdata {width:100%; margin-right:0; float:none;}
	.row .span4.formdata {width:100%; margin-right:0; float:none;}
	.row .span3.formdata {width:100%; margin-right:0; float:none;}
}
@media only screen and (min-width:768px){
	.span2 {width:18%; float:left;}
}

.responsive_video {width:100%; height:590px;}

@media only screen and (max-width:1060px) {
	.responsive_video {height:500px;}
	.row.gallery .span3 {width:24.5%;}
}

@media only screen and (max-width:799px) {
	.responsive_video {height:400px;}
	.row.gallery .span3 {width:24.5%;}
	.copy-icons {padding:25px 15px;}
}

@media only screen and (max-width:640px) {
	.responsive_video {height:280px;}
	.row.gallery {margin:0;}
	.row.gallery .span3 {width:49.5%; float:left;}
	.gallery .row {width: 100.5%; margin-left:-0.5% !important;}
}

@media only screen and (max-width:460px) {
	.row.gallery .span3 {float:none; width:99.5%; /*margin-left: -0.5%;*/ }
}

@media only screen and (max-width:400px) {
    .responsive_video {height:190px;}
}

.formular input,
.formular textarea {
    border: none;
    width: 100%;
    padding-bottom: 5px;
    padding-top: 5px;
    margin-top: 10px;
    z-index: 2;
    position: relative;
}
.formular select {
	position: relative;
	z-index: 2;
}
.form .formdata {
	padding: 40px 0 0px;
	position: relative;
}
.span6.formdata.textarea {
    width: 100%;
}
input:focus {
	outline: none !important;
	border: none;
}

.formular input {
	border-width: 0;
	border-bottom: 1px solid #444444;
	background: transparent;
}
.formular .input:after {
	content: '';
	width: 0;
	border-bottom: 1px solid white;
	position: absolute;
	left: 0;
	bottom: 0;
	z-index: 2;
	-webkit-transition : border 500ms ease-out;
    transition : all 500ms ease-out;
}
.formular .formdata.click.input:after {
	width: 100%;
}
.formular textarea:focus,
.formular .in input:focus,
.formular textarea:valid,
.formular input:valid {
	border-color: white;
	border-width: 100%;
	color: white;
}
.formular input:focus {
	color: white;
}
.formular input:-webkit-autofill, .formular textarea:-webkit-autofill, .formular select:-webkit-autofill {
    background-color: transparent !important;
    background-image: none !important;
    color: white !important;
}
.formular select {
	color: white;
    background: url(../img/select-bg.png) right 10px center no-repeat;
    background-size: 11px;
    margin-top: 20px;
    padding-bottom: 18px;
    width: 100%;
    border: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border-bottom: 1px solid #393035;
}
.formular select:visited,
.formular select:active,
.formular select:focus{
    border-bottom: 1px solid white;
}
.formular select option{
	color: black;
}
.formdata.select {
	padding-top: 40px;
}
.formdata.select.act {
	border-color: #b48b18;
}
.formdata.select.act select {
	border-bottom-color: white;
}
.formular textarea {
	border: 1px solid #444444;
	background: transparent;
	min-height: 180px;
	margin-top: 30px;
	padding: 15px 20px;
	max-width: 100%;
}
.form-preview-checkboxes {
	margin: 15px 0;
}
.form-preview-checkboxes label {
	margin-right: 8px;
}
.form-preview-checkboxes label input {
	display: inline;
	width: auto;
    margin-right: 5px;
}
.form-preview-checkboxes label span {
    margin-right: 25px;
    position: relative;
    top: -2px;
}
.form-items .row {
	margin-bottom: 80px;
}
.row.form-items .span6:nth-child(2n) {
	margin-right: 0;
}

/* -- pricelist table -- */

.pricelist table {
	width: 100%;
	border-collapse: collapse;
	border-spacing: 0;
    border: 1px solid #777777;
}
.pricelist th {
    background: white;
    border-right: 1px solid #777777;
    padding: 12px 15px 12px 15px;
    font-size: 14px;
    color: #000000;
    text-align: left;
    font-weight: bold;
}
.pricelist td:last-child, .pricelist th:last-child{
	border-right: 0;
}
.pricelist tr {
	border-bottom: 1px solid #777777;
}
.pricelist tr:last-child {
	border: 1px solid #777777;
}
.pricelist td {
	border-right: 1px solid #777777;
	padding: 12px 15px 12px 15px;
	font-size: 13px;
	line-height: 20px;
}

/* -- footer -- */

.footer li, .footer p, .footer h1, .footer h2, .footer h3, .footer h4, .footer h5, .footer h6 {padding-right:10px;}
.footer {padding-top: 30px;}
.subpage  .footer { padding-top: 30px;
    position: fixed;
    right: 30px;
    bottom: 22px;
}
.footer > .wrapper {padding-bottom:25px 25px 0;}
.footer .row .span4 {}
.footer h3 {font-weight:600; font-size:15px; margin:10px 0; font-weight:700;}

.footer ul {padding-left:0;}
.footer li {color:#888;}
.copy-icons {color:#fff; background:#222528; padding:10px 0;}
.copy-icons img {margin-left:10px;}
.copy-icons a {color:#fff;}

.foot ul {float:right; }
.foot ul li {list-style-type: none; display: inline-block; padding: 5px;}
.foot ul li a{color: white;text-decoration: none;}
.foot ul li a:hover{text-decoration: underline;}

.bxslider li {margin:0;}
.bx-wrapper {position:relative; *zoom:1;}
.bx-wrapper img {max-width:100%; margin:0 auto; display:block;}
.bx-wrapper .bx-pager,
.bx-wrapper .bx-controls-auto {position:absolute; bottom:3%; width:100%;}
.bx-wrapper .bx-loading {min-height:50px; background:url(../img/bx_loader.gif) center center no-repeat #fff; height:100%; width:100%; position:absolute; top:0; left:0; z-index:2000;}
.bx-wrapper .bx-pager {text-align:center; font-size:.85em; font-family:Arial; font-weight:bold; color:#666;}
.bx-wrapper .bx-pager .bx-pager-item,
.bx-wrapper .bx-controls-auto .bx-controls-auto-item {display:inline-block; *zoom:1; *display:inline;}
.bx-wrapper .bx-pager.bx-default-pager a {background:none; border:2px solid #fff; text-indent:-9999px; display:block; width:6px; height:6px; margin:0 12px 0 0; outline:0; -moz-border-radius:15px; -webkit-border-radius:15px; border-radius:15px;}
.bx-wrapper .bx-pager.bx-default-pager a:hover,
.bx-wrapper .bx-pager.bx-default-pager a.active {border:2px solid #fff; background:white;}
.bx-wrapper .bx-prev, .bx-wrapper .bx-next {display:none;}

/* homepage bacground gallery */

.gallery-title{
	position: absolute;
    bottom: calc(50% - 80px);
	z-index: 1000;
	width: 100%;
}
.gallery-title h1{
    font-size: 60px;
    font-weight: 300;
    margin-left: auto;
    margin-right: auto;
    color: white;
    display: table;
    text-align: center;
    padding: 20px 30px;
    max-width: 870px;
    border: 2px solid #fff;
}
.gallery-title h2{
	color: white;
    font-size: 20px;
    font-weight: 300;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    margin-top: 40px;
    max-width: 50%;
}
.galleryoverlay{
    background: url(../images/overlay.png) repeat;
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 10;
}
.bigImages{}
.bigImages img{width: 100%; height: auto; background-size: cover;}
.bigImages ul li{
	list-style: none;
}
.thumbContainer{
   position: absolute;
}
.thumbnails{
    position: absolute;
}
.thumbParentContainer{
    display: none;
 	position: fixed;
  	bottom: 13%;
	z-index: 1000;
	left: 49% !important;
}
.thumbParentContainer div.nextArrow{
	cursor: pointer;
	position: absolute;
	background: url(../images/assets/next.png) no-repeat;
    background-size: 37px;
	width: 37px;
	height: 40px;
	right: -7px;
	top: 35px;
	z-index: 1005;
}
.thumbParentContainer div.prevArrow{
	cursor: pointer;
	position: absolute;
	background: url(../images/assets/prev.png) no-repeat;
    background-size: 37px;
	width: 37px;
	height: 40px;
	left: -47px;
    top: 35px;
    z-index: 1005;
}
.thumbnails a{
	color: #00BFFF;
}
.thumbnails .blueNote{
	background: #00BDEE;
}
.thumbnails .redNote{
	background: #FF3333;
}
.thumbnails ul{
	display: block;
	padding: 0;
	margin: 0;
}
.thumbnails ul li{
	display: block;
	float: left;
	border: 1px solid #fab001;
	margin: 0px 5px;
	width: 140px;
	height: 103px;
	overflow: hidden;
	box-shadow:
        0px 0px 3px rgba(0,0,0,0.6),
        0px 0px 0px 40px rgba(0,0,0,0.3) inset;
}
.thumbnails ul li img{
	transition: all .3s ease-in-out;
}
.thumbnails ul li img:hover{
	transform: scale(1.1);
}
.thumbnails ul li.active{
	border: 1px solid white;
	opacity: 1.0;
}
.thumbnails ul li.active img{
	transform: scale(1.1);
}
#arrowButton{
    cursor: pointer;
	position: fixed;
	width: 100%;
	z-index: 1003;
}
#arrowButton .prevArrow{
    background: url(../images/assets/prev.png) no-repeat;
    width: 40px;
    height: 80px;
	position: absolute;
	left: 20px;
}
#arrowButton .nextArrow{
    background: url(../images/assets/next.png) no-repeat;
    width: 40px;
    height: 80px;
	position: absolute;
	right: 20px;
}
.animate0{
   	-webkit-animation-duration: .4s;
	-webkit-animation-delay: 0s;
	-webkit-animation-timing-function: ease;
	-webkit-animation-fill-mode: both;
	-moz-animation-duration: .4s;
	-moz-animation-delay: 0s;
	-moz-animation-timing-function: ease;
	-moz-animation-fill-mode: both;
	-ms-animation-duration: .4s;
	-ms-animation-delay: 0s;
	-ms-animation-timing-function: ease;
	-ms-animation-fill-mode: both;
	animation-duration: .4s;
	animation-delay: 0s;
	animation-timing-function: ease;
	animation-fill-mode: both;
}
.animate1{
   	-webkit-animation-duration: .4s;
	-webkit-animation-delay: .2s;
	-webkit-animation-timing-function: ease;
	-webkit-animation-fill-mode: both;
	-moz-animation-duration: .4s;
	-moz-animation-delay: .2s;
	-moz-animation-timing-function: ease;
	-moz-animation-fill-mode: both;
	-ms-animation-duration: .4s;
	-ms-animation-delay: .2s;
	-ms-animation-timing-function: ease;
	-ms-animation-fill-mode: both;
	animation-duration: .4s;
	animation-delay: .2s;
	animation-timing-function: ease;
	animation-fill-mode: both;
}
.animate2{
   	-webkit-animation-duration: .4s;
	-webkit-animation-delay: .4s;
	-webkit-animation-timing-function: ease;
	-webkit-animation-fill-mode: both;
	-moz-animation-duration: .4s;
	-moz-animation-delay: .4s;
	-moz-animation-timing-function: ease;
	-moz-animation-fill-mode: both;
	-ms-animation-duration: .4s;
	-ms-animation-delay: .4s;
	-ms-animation-timing-function: ease;
	-ms-animation-fill-mode: both;
	animation-duration: .4s;
	animation-delay: .4s;
	animation-timing-function: ease;
	animation-fill-mode: both;
}
.animate3{
   	-webkit-animation-duration: .4s;
	-webkit-animation-delay: .6s;
	-webkit-animation-timing-function: ease;
	-webkit-animation-fill-mode: both;
	-moz-animation-duration: .4s;
	-moz-animation-delay: .6s;
	-moz-animation-timing-function: ease;
	-moz-animation-fill-mode: both;
	-ms-animation-duration: .4s;
	-ms-animation-delay: .6s;
	-ms-animation-timing-function: ease;
	-ms-animation-fill-mode: both;
	animation-duration: .4s;
	animation-delay: .6s;
	animation-timing-function: ease;
	animation-fill-mode: both;
}
.animate4{
   	-webkit-animation-duration: .4s;
	-webkit-animation-delay: .8s;
	-webkit-animation-timing-function: ease;
	-webkit-animation-fill-mode: both;
	-moz-animation-duration: .4s;
	-moz-animation-delay: .8s;
	-moz-animation-timing-function: ease;
	-moz-animation-fill-mode: both;
	-ms-animation-duration: .4s;
	-ms-animation-delay: .8s;
	-ms-animation-timing-function: ease;
	-ms-animation-fill-mode: both;
	animation-duration: .4s;
	animation-delay: .8s;
	animation-timing-function: ease;
	animation-fill-mode: both;
}
.animate5{
   	-webkit-animation-duration: .4s;
	-webkit-animation-delay: 1s;
	-webkit-animation-timing-function: ease;
	-webkit-animation-fill-mode: both;
	-moz-animation-duration: .4s;
	-moz-animation-delay: 1s;
	-moz-animation-timing-function: ease;
	-moz-animation-fill-mode: both;
	-ms-animation-duration: .4s;
	-ms-animation-delay: 1s;
	-ms-animation-timing-function: ease;
	-ms-animation-fill-mode: both;
	animation-duration: .4s;
	animation-delay: 1s;
	animation-timing-function: ease;
	animation-fill-mode: both;
}
.animate6{
   	-webkit-animation-duration: .4s;
	-webkit-animation-delay: 1.2s;
	-webkit-animation-timing-function: ease;
	-webkit-animation-fill-mode: both;
	-moz-animation-duration: .4s;
	-moz-animation-delay: 1.2s;
	-moz-animation-timing-function: ease;
	-moz-animation-fill-mode: both;
	-ms-animation-duration: .4s;
	-ms-animation-delay: 1.2s;
	-ms-animation-timing-function: ease;
	-ms-animation-fill-mode: both;
	animation-duration: .4s;
	animation-delay: 1.2s;
	animation-timing-function: ease;
	animation-fill-mode: both;
}
.animate7{
   	-webkit-animation-duration: .4s;
	-webkit-animation-delay: 1.4s;
	-webkit-animation-timing-function: ease;
	-webkit-animation-fill-mode: both;
	-moz-animation-duration: .4s;
	-moz-animation-delay: 1.4s;
	-moz-animation-timing-function: ease;
	-moz-animation-fill-mode: both;
	-ms-animation-duration: .4s;
	-ms-animation-delay: 1.4s;
	-ms-animation-timing-function: ease;
	-ms-animation-fill-mode: both;
	animation-duration: .4s;
	animation-delay: 1.4s;
	animation-timing-function: ease;
	animation-fill-mode: both;
}
/*
.thumbnails ul li:nth-child(6) {
  display: none !important;
}
*/

.textbox img{
}
.textbox img:hover{
}
/*subpage design*/
.subpage .thumbnails,
.subpage .gallery-title{
	display: none;
}
.subpage .container {
    top: 0px;
    padding-top: 50px;
    width: 50%;
    min-height: 100%;
}
.subpage .gallery-icon {
    z-index: 1002;
    position: absolute;
    top: 34px;
    width: 48%;
    text-align: right;
}
/* Fotogaléria */

.content .gallery .span12 {
	-webkit-column-count: 3;
	-moz-column-count: 3;
	column-count: 3;
	-webkit-column-break-inside: avoid;
    -webkit-backface-visibility: hidden;
}
.home .content .gallery .span12 {
	-webkit-column-count: 4;
	-moz-column-count: 4;
	column-count: 4;
}
.content .gallery li {
	list-style: none;
    margin: 0;
}
.content .gallery a {
	margin-bottom: 25px;
    display: inline-block;
    overflow: hidden;
    width: calc(100% - 15px);
    transition: all .3s ease-in-out;
}
.content .gallery img {
	width: 100%;
	max-width: 100%;
	height: auto;
}
.content .gallery a:hover {
	transform: scale(1.05);
}
.content .gallery a {
	position: relative;
}
.content .gallery .prep {
	position: absolute;
	top: 60px;
	right: 0;
	z-index: 1;
}

/* scrollbar */

.thumbContainer::-webkit-scrollbar-track {
	-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
	-ms-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
	-moz-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
	background-color: #F5F5F5;
}
.thumbContainer::-webkit-scrollbar {
	height: 6px;
	background-color: #F5F5F5;
}
.thumbContainer::-webkit-scrollbar-thumb {
	background-color: #fab001;
}

/* Swipebox */
html.swipebox-html.swipebox-touch {overflow: hidden !important;}
#swipebox-overlay img {border: none !important;}
#swipebox-overlay {width: 100%; height: 100%; position: fixed; top: 0; left: 0; z-index: 99999999999 !important; overflow: hidden; -webkit-user-select: none; -moz-user-select: none;-ms-user-select: none;user-select: none;}
#swipebox-container {position: relative; width: 100%; height: 100%;}
#swipebox-slider {-webkit-transition: -webkit-transform 0.4s ease;transition: transform 0.4s ease;height: 100%;left: 0;top: 0;width: 100%;white-space: nowrap;position: absolute;display: none;cursor: pointer;}
#swipebox-slider .slide {height: 100%;width: 100%;line-height: 1px;text-align: center;display: inline-block;}
#swipebox-slider .slide:before {content: "";display: inline-block;height: 50%;width: 1px;margin-right: -1px;}
#swipebox-slider .slide img, #swipebox-slider .slide .swipebox-video-container, #swipebox-slider .slide .swipebox-inline-container
{display: inline-block; max-height: 90%;max-width: 90%;margin: 0;padding: 0;width: auto;height: auto;vertical-align: middle;}
#swipebox-slider .slide .swipebox-video-container {background: none;max-width: 1140px;max-height: 100%;width: 100%;padding: 5%;-webkit-box-sizing: border-box;box-sizing: border-box;}
#swipebox-slider .slide .swipebox-video-container .swipebox-video {width: 100%;height: 0;padding-bottom: 56.25%;overflow: hidden;position: relative;}
#swipebox-slider .slide .swipebox-video-container .swipebox-video iframe {width: 100% !important;height: 100% !important;position: absolute;top: 0;left: 0;}
#swipebox-slider .slide-loading {background: url(../images/loader.gif) no-repeat center center;}
#swipebox-bottom-bar, #swipebox-top-bar {position: absolute; left: 0;z-index: 999; height: 50px; width: 100%; top:calc(50% - 50px);}
#swipebox-title {width: 100%;text-align: center;}
#swipebox-prev, #swipebox-next, #swipebox-close {background-image: url(../images/icons.png);background-repeat: no-repeat;border: none !important; text-decoration: none !important;cursor: pointer; width: 50px; height: 50px;top: 0;}
#swipebox-arrows {display: block;margin: 0 auto;width: 100%;height: 50px;}
#swipebox-prev {background-position: -32px 13px;float: left;}
#swipebox-next { background-position: -78px 13px;float: right;}
#swipebox-close {top: 0;right: 0;position: absolute;z-index: 9999;background-position: 15px 12px;}
.swipebox-no-close-button #swipebox-close { }
#swipebox-prev.disabled,#swipebox-next.disabled {opacity: 0.2;}
.swipebox-no-touch #swipebox-overlay.rightSpring #swipebox-slider {-webkit-animation: rightSpring 0.3s;animation: rightSpring 0.3s;}
.swipebox-no-touch #swipebox-overlay.leftSpring #swipebox-slider {-webkit-animation: leftSpring 0.3s; animation: leftSpring 0.3s;}
.swipebox-touch #swipebox-container:before, .swipebox-touch #swipebox-container:after {-webkit-backface-visibility: hidden;backface-visibility: hidden;-webkit-transition: all .3s ease;transition: all .3s ease;content: ' ';position: absolute;z-index: 999;top: 0;height: 100%;width: 20px;opacity: 0;}
.swipebox-touch #swipebox-container:before {left: 0;-webkit-box-shadow: inset 10px 0px 10px -8px #656565;box-shadow: inset 10px 0px 10px -8px #656565;}
.swipebox-touch #swipebox-container:after {right: 0;-webkit-box-shadow: inset -10px 0px 10px -8px #656565;box-shadow: inset -10px 0px 10px -8px #656565;}
.swipebox-touch #swipebox-overlay.leftSpringTouch #swipebox-container:before {opacity: 1;}
.swipebox-touch #swipebox-overlay.rightSpringTouch #swipebox-container:after {opacity: 1;}
@-webkit-keyframes rightSpring {0% {left: 0;}50% {left: -30px;}100% {left: 0;}}
@keyframes rightSpring {0% {left: 0;}50% {left: -30px;}100% {left: 0;}}
@-webkit-keyframes leftSpring {0% {left: 0;}50% {left: 30px;}100% {left: 0;}}
@keyframes leftSpring {0% {left: 0;}50% {left: 30px;}100% {left: 0;}}
@media screen and (min-width: 800px) {
    #swipebox-close {right: 10px;}
    #swipebox-arrows {
        width: 96%;
        max-width: 100%;
    }
    #swipebox-slider .slide img, #swipebox-slider .slide .swipebox-video-container, #swipebox-slider .slide .swipebox-inline-container {
        max-height: 80%;
        max-width: 80%;
    }
}
#swipebox-overlay {background: #0d0d0d;}
#swipebox-bottom-bar, #swipebox-top-bar {text-shadow: 1px 1px 1px black;opacity: 0.95;}
#swipebox-top-bar {font-size: 15px;line-height: 43px;font-family: Helvetica, Arial, sans-serif; top: auto;
 bottom: 5px;}
#swipebox-title {
  background: #000;
  color: #fff;
  padding-bottom: 20px;
}


/* media query */

@media only screen and (max-width:1400px) {
	#menu {
		width: 240px;
	}
    #menu ul {
		padding: 10px 0 7px;
		border-right: 1px solid #ffb400;
		background: url(../images/content-bg.png) top center repeat;
	}
	#menu ul ul{
		border-right: none;
		background: none;
	}
	#menu ul li a {
		padding: 8px 15px 8px 30px;
	}
	#menu ul li ul li a {
		padding: 2px 0px 2px 45px;
	}
	#menu #showmenu {
		margin-left: calc(100% - 18px);
	}
	#menu.show #showmenu {
		margin-left: calc(100% - 20px);
		-webkit-border-top-right-radius: 20px;
		-webkit-border-bottom-right-radius: 20px;
		-moz-border-radius-topright: 20px;
		-moz-border-radius-bottomright: 20px;
		border-top-right-radius: 20px;
		border-bottom-right-radius: 20px;
	}
	#menu.show #showmenu:hover {
		background: url(../images/assets/prev.png) left center no-repeat;
	}
}
@media only screen and (max-width:1280px) {
	.sc {
		right: -33px;
		transition: right 1s ease;
		-webkit-transition: right 1s ease;
		padding-left: 10px;
	}
	.sc:hover {
		right: 0;
	}
	.gallery-title {
		top: 160px;
	}
}

@media only screen and (max-width:1200px) {
	.gallery-title {
		top: auto;
		padding: 0 10px;
	}
	.gallery-title h2 {
		max-width: 70%;
	}
	#content {
		max-width: 100%;
		left:0;
	}
	.span3{
		width: calc((100% - 30px) / 2);
	}
	.span3.d1,
	.span3.d2 {
		margin-bottom: 30px;
	}
	.span3.d2 {
		margin-right: 0;
	}
	.gallery-title h1 {
		font-size: 45px;
		padding: 10px 20px;
	}
	.scroll-down {
		bottom: 20%;
	}
}
@media only screen and (max-width:1000px) {
    .subpage .header {
        max-width: 25%;
    }
    .subpage .container {
        width: 65%;
    }
    .subpage .gallery-icon {
       width: calc(65% - 30px);
    }
    .subpage .gallery-icon .footer-sc {
        margin-left: 30px;
        margin-right: 0px;
    }
}
@media only screen and (max-width:768px) {
	.content .gallery .span12 {
		-webkit-column-count: 2;
		-moz-column-count: 2;
		column-count: 2;
	}
    .home .content .gallery .span12 {
		-webkit-column-count: 3;
		-moz-column-count: 3;
		column-count: 3;
	}
	.header {
		margin: 38px auto 30px;
        position: absolute;
	}
    .formular input, .formular textarea {
        margin-bottom: 20px;
    }
    .pricelist td {
        padding: 12px 12px 12px 12px;
        font-size: 13px;
        line-height: 18px;
    }
    nav .open {
        top: 40px;
        right: 25px;
    }
    .gallery-title h2 {
        font-size: 18px;
        font-weight: 200;
        max-width: 80%;
        margin-top: 25px;
    }
    h3.subtitle {
        font-size: 18px;
    }
    .subpage .header {
        max-width: 25%;
    }
    .subpage .container {
        width: 65%;
    }
    .gallery-title h1 {
        font-size: 30px;
	}
    .subpage .footer {
        position: inherit;
    }
    .subpage .span6,
    .subpage .span4{
        width: 100%;
        margin-right: 0px;
        margin-bottom: 40px;
    }
    .go-top {
        bottom: 30px;
        right: 30px;
    }
    .scroll-down {
        width: 40px;
        height: 40px;
    }
}
@media only screen and (max-width:767px){
	.span2 {width:100%; float:left;}
	.span12 .lbox li {height:15px;}
	.likebox {padding-bottom:20px;}
	.row .span6.formdata {width:100%; margin-right:0; float:none;}
	.row .span4.formdata {width:100%; margin-right:0; float:none;}
	.row .span3.formdata {width:100%; margin-right:0; float:none;}
}

@media only screen and (min-width:768px){
	.span2 {width:18%; float:left;}
}

.responsive_video {width:100%; height:590px;}

@media only screen and (max-width:1060px) {
	.responsive_video {height:500px;}
}

@media only screen and (max-width:799px) {
	.select-menu {display:none; float:right; max-width:120px; margin:10px 15px 0 0;}
	.content h1 {font-size:32px;}
	.responsive_video {height:400px;}
	.row.gallery .span3 {width:24.5%;}
	.copy-icons {padding:25px 15px;}
}

@media only screen and (max-width:640px) {
	.responsive_video {height:280px;}
}

@media only screen and (max-width:400px) {
	.responsive_video {height:190px;}
}
@media only screen and (max-width:600px) {
	.container > .content {
		margin: 40px auto 0px;
	}
	h1 {
		font-size: 30px;
	}
	h2 {
		font-size: 24px;
	}
	h3 {
		font-size: 22px;
	}
	* {
		font-size: 14px;
	}
	.formular textarea {
		margin-top: 50px;
	}
	.content .gallery .span12,
    .home .content .gallery .span12{
		-webkit-column-count: 2;
		-moz-column-count: 2;
		column-count: 2;
	}
    .content .gallery a {
        width: 100%;
        margin-bottom: 10px;
    }
	.span3,
	.textbox .span4,
	.span4,
	.span6,
	.textbox .has-image.span12 {
		width: 100%;
		margin-right: 0;
	}
	.span12.d1,
	.span6
	.span3.d1,
	.span3.d2,
	.span3.d3,
	.span4.d1,
	.span4.d2,
	.span6.d1 {
		margin-bottom: 20px;
	}
	.header {
		text-align: center;
	}
	.header .right-head {
		display: none;
	}
    .subpage .container {
        padding-top: 50px;
        width: 100%;
    }
	.container > .content {
		margin: 40px auto 0px;
	}
    .home .container > .content {
		padding-top: 70px;
	}
	a.button {
		margin: 20px 0 20px;
	}
    .form-preview-checkboxes label {
        display: block;
    }
    .span12.d1.img_right img,
    .span12.d1.img_left img{
        float: none;
        max-width: 100%;
        margin-left: 0;
        margin-bottom: 30px;
    }
    .header,
    .subpage .header{
        max-width: 25%;
        position: absolute;
    }
    .subpage .gallery-icon {
        display: none;
    }
    .content .gallery a:hover {
        transform: scale(1.0);
    }
}
@media only screen and (max-width:420px) {
	.container .content .row {
		margin: 20px auto 20px;
	}
    .galleryoverlay {
		background: url(../images/overlay-mobile.png) repeat;
	}
    .container .content .row.pricelist {
        margin: 20px auto 30px;
        overflow-x: scroll;
        padding-bottom: 10px;
    }
    .header,
    .subpage .header{
        max-width: 35%;
    }
    .content .gallery .span12 {
		-webkit-column-count: 2;
		-moz-column-count: 2;
		column-count: 2;
	}
    .footer .left {
        font-size: 12px;
    }
    .gallery-icon .footer-sc {
        margin-left: 15px;
        margin-right: 15px;
    }
}
@media only screen and (max-width:360px) {
}
@media only screen and (max-width:320px) {
	.gallery-title h1 {
		max-width: 260px;
		font-size: 26px;
	}
	.header {
		margin: 20px auto 30px;
	}
}