@font-face {
  font-family: 'Alegreya-Regular';
  src: url('../fonts/Alegreya-Regular.eot');
  src: url('../fonts/Alegreya-Regular.woff2') format('woff2'),
       url('../fonts/Alegreya-Regular.woff') format('woff'),
       url('../fonts/Alegreya-Regular.ttf') format('truetype'),
       url('../fonts/Alegreya-Regular.svg#Alegreya-Regular') format('svg'),
       url('../fonts/Alegreya-Regular.eot?#iefix') format('embedded-opentype');
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'Quicksand-Light';
  src: url('../fonts/Quicksand-Light.eot');
  src: url('../fonts/Quicksand-Light.woff2') format('woff2'),
       url('../fonts/Quicksand-Light.woff') format('woff'),
       url('../fonts/Quicksand-Light.ttf') format('truetype'),
       url('../fonts/Quicksand-Light.svg#Quicksand-Light') format('svg'),
       url('../fonts/Quicksand-Light.eot?#iefix') format('embedded-opentype');
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'Quicksand-Regular';
  src: url('../fonts/Quicksand-Regular.eot');
  src: url('../fonts/Quicksand-Regular.woff2') format('woff2'),
       url('../fonts/Quicksand-Regular.woff') format('woff'),
       url('../fonts/Quicksand-Regular.ttf') format('truetype'),
       url('../fonts/Quicksand-Regular.svg#Quicksand-Regular') format('svg'),
       url('../fonts/Quicksand-Regular.eot?#iefix') format('embedded-opentype');
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'Quicksand-Medium';
  src: url('../fonts/Quicksand-Medium.eot');
  src: url('../fonts/Quicksand-Medium.woff2') format('woff2'),
       url('../fonts/Quicksand-Medium.woff') format('woff'),
       url('../fonts/Quicksand-Medium.ttf') format('truetype'),
       url('../fonts/Quicksand-Medium.svg#Quicksand-Medium') format('svg'),
       url('../fonts/Quicksand-Medium.eot?#iefix') format('embedded-opentype');
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'Quicksand-Bold';
  src: url('../fonts/Quicksand-Bold.eot');
  src: url('../fonts/Quicksand-Bold.woff2') format('woff2'),
       url('../fonts/Quicksand-Bold.woff') format('woff'),
       url('../fonts/Quicksand-Bold.ttf') format('truetype'),
       url('../fonts/Quicksand-Bold.svg#Quicksand-Bold') format('svg'),
       url('../fonts/Quicksand-Bold.eot?#iefix') format('embedded-opentype');
  font-weight: normal;
  font-style: normal;
}

* {
  margin: 0;
  padding: 0;
}
html {
    height: 100%;
}
body {
  position: relative;
  width: 100%;
  height: 100%;
}
h2,h3,h4,h5,h6 {
    font-family: 'Quicksand-Medium', Tahoma, sans-serif;
    color: #c6b175;
}
h2 a,h3 a,h4 a,h5 a,h6 a {
  color: #c6b175;
  text-decoration: underline;
}
h2 a:hover,h3 a:hover,h4 a:hover,h5 a:hover,h6 a:hover {
  color: #80724b;
  text-decoration: none;
}
p {
    font: 17px/25px 'Quicksand-Light', Tahoma, sans-serif;
}

/*----------------------------------------------------------------------------------------------------HEADER----------*/

.overlayed {
    height: 100%;
    overflow: hidden;
}
.pageHeader {
    position: fixed;
    top: 0;
    width: 100%;
    height: 70px;
    background-color: #fff;
    z-index: 3;
    transition: all 0.6s;
}
@media (min-width: 992px) {
    .pageHeader {
        background-color: transparent;
    }
}
@media (min-width: 992px) and (max-width: 1169px) {
    .pageHeader {
        height: 100px;
    }
}
@media (min-width: 992px) {
    .pageHeader--fixed {
        background-color: #fff;
        -webkit-box-shadow: 0px 25px 25px -20px rgba(0,0,0,0.75);
        -moz-box-shadow: 0px 25px 25px -20px rgba(0,0,0,0.75);
        box-shadow: 0px 25px 25px -20px rgba(0,0,0,0.75);
    }
}
.pageMain,
.pageFooter {
  position: relative;
  z-index: 2;
  box-sizing: border-box;
  max-width: 100%;
}
.logo {
  margin-left: 15px;
  margin-top: 15px;
  display: inline-block;
  float: left;
  position: relative;
  z-index: 2;
}
.nav__lang {
  position: relative;
  top: 15px;
  left: 15px;
  z-index: 1;
}
.lang__list {
  list-style: none;
}
.lang__listItem {
  padding: 13px;
  position: relative;
  width: 90px;
  display: none;
  background-color: #fff;
}
.lang__link {
    font: 14px 'Quicksand-Medium', Tahoma, sans-serif;
    color: #777777;
    display: block;
}
.lang__listItem--current,
.lang__listItem--active {
  display: block;
}
.lang__listItem--current:after {
  content: "";
  width: 11px;
  height: 9px;
  position: absolute;
  top: 18px;
  left: 75px;
  background: url(../images/lang-ico.svg) no-repeat;
  background-size: 100%;
}
.lang__listItem--current.lang__listItem--active:after {
    transform: rotate(180deg);
}
.nav__ico {
  width: 36px;
  height: 24px;
  position: absolute;
  top: 25px;
  right: 20px;
  padding: 10px 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: 2;
}
@media (min-width: 992px) {
    .nav__ico {
        display: none;
    }
}
.nav__ico span {
  display: block;
  position: absolute;
  height: 2px;
  width: 50%;
  background: #a5a5a5;
  opacity: 1;
  -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;
}
.nav__ico span:nth-child(even) {
  left: 50%;
}
.nav__ico span:nth-child(odd) {
  left:0px;
}
.nav__ico span:nth-child(1), .nav__ico span:nth-child(2) {
  top: 0px;
}
.nav__ico span:nth-child(3), .nav__ico span:nth-child(4) {
  top: 10px;
}
.nav__ico span:nth-child(5), .nav__ico span:nth-child(6) {
  top: 20px;
}
.nav__ico.open span:nth-child(1),.nav__ico.open span:nth-child(6) {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}
.nav__ico.open span:nth-child(2),.nav__ico.open span:nth-child(5) {
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.nav__ico.open span:nth-child(1) {
  left: 0px;
  top: 7px;
}
.nav__ico.open span:nth-child(2) {
  left: calc(50% - 5px);
  top: 7px;
}
.nav__ico.open span:nth-child(3) {
  left: -50%;
  opacity: 0;
}
.nav__ico.open span:nth-child(4) {
  left: 100%;
  opacity: 0;
}
.nav__ico.open span:nth-child(5) {
  left: 0px;
  top: 20px;
}
.nav__ico.open span:nth-child(6) {
  left: calc(50% - 5px);
  top: 20px;
}
.nav__beam {
  z-index: 3;
  background-color: #fff;
  height: 70px;
  position: relative;
}
@media (min-width: 992px) {
    .nav__beam {
        width: 54px;
        background-color: transparent;
    }
}
.nav__navbars {
  clear: both;
  position: absolute;
  top: 70px;
  width: 100%;
  z-index: 2;
  transform: translateY(-100%);
  transition: all 0.5s;
}
@media (min-width: 992px) {
    .nav__navbars {
        width: 992px;
        transform: translate(-50%,0);
        top: 0;
        left: 50%;
        text-align: center;
    }
}
@media (min-width: 992px) {
    .menu-menu-gorne-container,
    .menu-menu-gorne-english-container,
    .menu-menu-gorne-deutsch-container {
        margin: 5px auto;
    }
}
@media (min-width: 1200px) {
    .nav__navbars {
        width: 1170px;
    }
}
.nav__navbars--active {
  transform: translateY(0);
}
@media (min-width: 992px) {
    .nav__navbars--active {
      transform: translate(-50%,0);
    }
}
.nav__navbars .menu {
    list-style: none;
}
@media (max-width: 991px) {
    .nav__navbars--active .menu {
        overflow: auto;
        height: calc(100vh - 70px);
    }
}
.nav__navbars .menu-item {
    width: 100%;
    height: 60px;
    background-color: #9f916d;
    text-align: center;
    position: relative;
}
@media (min-width: 992px) {
    .nav__navbars .menu-item {
        width: auto;
        display: inline-block;
        height: auto;
        background: none;
        margin: 0 12px;
    }
}
@media (min-width: 992px) {
    .nav__navbars .menu-item:last-of-type {
        margin-right: 0px;
        position: static;
    }
}
.nav__navbars .menu-item:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 5%;
    width: 90%;
    height: 1px;
    background-color: #c9b781;
}
@media (min-width: 992px) {
    .nav__navbars .menu-item:after {
        content: none;
    }
}
.nav__navbars .menu-item:last-child {
    -webkit-box-shadow: 0px 25px 25px -20px rgba(0,0,0,0.75);
    -moz-box-shadow: 0px 25px 25px -20px rgba(0,0,0,0.75);
    box-shadow: 0px 25px 25px -20px rgba(0,0,0,0.75);
}
@media (min-width: 992px) {
    .nav__navbars .menu-item:last-child {
        -webkit-box-shadow: none;
        -moz-box-shadow: none;
        box-shadow: none;
    }
}
.nav__navbars .menu-item:last-child:after {
    height: 0px;
}
.nav__navbars .menu-item a {
    display: block;
    font: 14px/60px 'Quicksand-Medium', Tahoma, sans-serif;
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
}
@media (min-width: 992px) {
    .nav__navbars .menu-item a {
        color: #777777;
    }
}
.nav__navbars .menu-item a:hover,
.nav__navbars .menu-item a--active {
    font-family: 'Quicksand-Bold';
    text-decoration: underline;
}
.pageHeader__bg {
    position: absolute;
    width: 100%;
    height: 100vh;
    top: 0;
    left: 0;
    background: rgb(182,187,193);
    background: -moz-linear-gradient(top,  rgba(182,187,193,1) 0%, rgba(255,255,255,1) 100%);
    background: -webkit-linear-gradient(top,  rgba(182,187,193,1) 0%,rgba(255,255,255,1) 100%);
    background: linear-gradient(to bottom,  rgba(182,187,193,1) 0%,rgba(255,255,255,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#b6bbc1', endColorstr='#ffffff',GradientType=0 );
    z-index: 1;
}
@media (min-width: 1170px) {
    .pageHeader__bg {
      background: url(../images/bg-header.png) no-repeat;
      background-size: 100%;
    }
}

/*----------------------------------------------------------------------------------------------------MAIN----------*/

.pageMain {
    width: 100%;
    top: 100px;
}
@media (min-width: 1170px) {
    .pageMain {
        top: 50px;
        margin-bottom: 50px;
    }
}
.pageSection {
  position: relative;
  width: 100%;
  box-sizing: border-box;
  padding: 10px 0;
  z-index: 2;
  background-color: #fff;
}
.pageSection__container {
  padding: 0 10px;
}
@media (min-width: 768px) {
    .pageSection__container {
        box-sizing: border-box;
        max-width: 768px;
        margin: 0 auto;
    }
}
@media (min-width: 992px) {
    .pageSection__container {
        max-width: 992px;
    }
}
@media (min-width: 1170px) {
    .pageSection__container {
        max-width: 1170px;
    }
}
#start {
    background: transparent;
}
.discoverIntroSection {
    background: -moz-linear-gradient(top, rgba(255,255,255,0) 0%, rgba(255,255,255,1) 50%, rgba(255,255,255,1) 100%);
    background: -webkit-linear-gradient(top, rgba(255,255,255,0) 0%,rgba(255,255,255,1) 50%,rgba(255,255,255,1) 100%);
    background: linear-gradient(to bottom, rgba(255,255,255,0) 0%,rgba(255,255,255,1) 50%,rgba(255,255,255,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00ffffff', endColorstr='#ffffff',GradientType=0 );
}
#navigathor26, #oferta, #kontakt {
    padding-top: 70px;
}
#przestrzen, #detale {
    position: absolute;
    bottom: 70px;
}
.header1 {
    display: block;
    font: 220px/0.8em 'Alegreya-Regular', Tahoma, sans-serif;
    color: #7e6321;
    position: relative;
    width: 300px;
    text-align: right;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: auto;
    margin: 0 auto 120px;
}
@media (min-width: 768px) {
    .header1 {
        font-size: 300px;
        line-height: 0.6em;
        width: 748px;
        padding-bottom: 200px;
        margin-bottom: 60px;
    }
}
@media (min-width: 1170px) {
    .header1 {
        font-size: 587px;
        width: 1140px;
        padding-bottom: 250px;
        margin-bottom: 120px;
    }
}
.header1--indent {
    position: absolute;
    top: -9999px;
    left: -9999px;
}
.header1:before {
    content: "";
    position: absolute;
    left: 50%;
    top: 125%;
    transform: translate(-50%,-50%);
    width: 90%;
    height: 100%;
    background: url(../images/navigathor30.png) no-repeat;
    background-size: 100%;
    background-position: 50% 5%;
}
@media (min-width: 768px) {
    .header1:before {
        width: 100%;
        top: 60%;
        background-size: 75%;
        background-position: center;
    }
}
@media (min-width: 1170px) {
    .header1:before {
        top: 70%;
    }
}
.paragraph,
.content_block p {
    font: 17px/25px 'Quicksand-Light', Tahoma, sans-serif;
    color: #0c1d33;
    text-align: left;
}
.owl-carousel .paragraph {
    padding-left: 10px;
}
.header2,
.content_block h3 {
    font-size: 26px;
    text-transform: uppercase;
    margin: 20px 0;
}
.owl-carousel h3 {
    font-family: 'Quicksand-Light', Tahoma, sans-serif;
    font-size: 26px;
    text-transform: uppercase;
    text-align: left;
    margin: 20px 0;
}

@media (min-width: 992px) {
    .header2,
    .owl-carousel h3,
    .content_block h3 {
      font-size: 37px;
    }
}
.box,
.content_block {
  width: 100%;
  margin: 30px 0;
  vertical-align: top;
}
.content_block img {
  display: block;
  max-width: 100%;
  margin: 0 auto;
}
@media (min-width: 992px) {
    .box,
    .content_block {
        display: inline-block;
        width: 45%;
    }
    .box:nth-child(2n+1),
    .content_block:nth-child(2n+1) {
        margin-right: 6%;
    }
}
.pagination {
  list-style: none;
  width: 180px;
  margin: 0 auto;
}
.discover-pagination .swiper-pagination-bullet {
  font: 17px 'Quicksand-Light', Tahoma, sans-serif;
  padding: 13px;
  color: #ffffff;
  cursor: pointer;
  background: none;
}
.discover-pagination .swiper-pagination-bullet:hover,
.discover-pagination .swiper-pagination-bullet-active {
  color: #bba770;
}
.view__img {
  display: block;
  max-width: 100%;
  margin: 0 auto;
  max-height: 500px;
}
.view--discover {
  padding-bottom: 20px;
  display: none;
}
.discoverSection {
  background: -moz-linear-gradient(top,  rgba(255,255,255,1) 0%, rgba(255,255,255,1) 10%,rgba(12,29,51,1) 35%, rgba(12,29,51,1) 100%);
  background: -webkit-linear-gradient(top,  rgba(255,255,255,1) 0%,rgba(255,255,255,1) 10%,rgba(12,29,51,1) 35%, rgba(12,29,51,1) 100%);
  background: linear-gradient(to bottom,  rgba(255,255,255,1) 0%,rgba(255,255,255,1) 10%,rgba(12,29,51,1) 35%, rgba(12,29,51,1) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00ffffff', endColorstr='#0c1d33',GradientType=0 );
}
.change {
  width: 100%;
  height: calc(100% + 20px);
  padding: 10px;
  box-sizing: border-box;
  position: relative;
  top: 10px;
}
.data {
  width: 100%;
  padding: 0;
  border: none;
  font: 17px/25px 'Quicksand-Light', Tahoma, sans-serif;
}
.data td {
  width: 50%;
  text-align: left;
  padding-bottom: 2px;
}
.fixedSection {
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    height: calc(100vh - 70px);
    max-height: 1020px;
    overflow: hidden;
    background: url(../images/bg-fixed-mobile.jpg) no-repeat;
    background-size: cover;
    background-position: center;
    z-index: -1;
    display: none;
}
@media (min-width: 768px) {
    .fixedSection {
      background: url(../images/bg-fixed.jpg) no-repeat;
      background-size: cover;
      background-position: center;
    }
}
.fixedSection--null {
    position: relative;
    width: 100%;
    height: 100vh;
    max-height: 1020px;
    overflow: hidden;
    background: transparent;
    z-index: 2;
}
.detailsSection {
  background-color: #0c1d33;
}
.imageHolder {
  position: relative;
  margin-top: 20px;
}
.elements {
  list-style: none;
  margin: 20px 0;
}
.details__link {
  font: 13px 'Quicksand-Bold', Tahoma, sans-serif;
  color: #ffffff;
  padding: 3px;
  float: left;
  margin-right: 2em;
  margin-bottom: 6px;
  cursor: pointer;
}
  .details__link:hover,
  .details__link.pagination__link--active {
    color: #413a25;
    background-color: #c6b175;
  }
.view--details,
.view--feel {
  position: relative;
  top: 20px;
  display: none;
}
.feel__link {
  font: 13px 'Quicksand-Bold', Tahoma, sans-serif;
  color: #0c1d33;
  padding: 3px;
  float: left;
  margin-right: 2em;
  margin-bottom: 6px;
  cursor: pointer;
}
  .feel__link:hover,
  .feel__link.pagination__link--active {
    color: #ffffff;
    background-color: #c6b175;
  }
.offerSection {
  background-color: #0c1d33;
}
.version__container {
  white-space: nowrap;
  margin: 20px 0;
}
.version {
  display: inline-block;
  width: 33.3%;
  white-space: normal;
}
.version__txt{
  text-align: center;
  font: 17px 'Quicksand-Bold', Tahoma, sans-serif;
  color: #c6b175;
  width: 78px;
  height: 93px;
  margin: 0 auto;
  padding-top: 20px;
  box-sizing: border-box;
  background: url(../images/version-ico.png) no-repeat;
  background-size: 100%;
}
.version__img {
  display: block;
  max-width: 100%;
  margin: 10px auto;
}
.contactSection {
  background-color: #c5b37e;
}
@media (min-width: 1170px) {
    .contactSection {
      background: url(../images/bg-kontakt.jpg) no-repeat;
      background-size: cover;
    }
}
.contact__tel {
  color: #ffffff;
  text-decoration: none;
}
.address {
  background-color: #695c36;
  box-sizing: border-box;
  padding: 10px;
  margin: 0;
}
@media (min-width: 992px) {
    .address {
    height: 350px;
    width: 50%;
    margin-right: 0 !important;
  }
}
@media (min-width: 1170px) {
    .address {
    height: 500px;
  }
}
.address__txt {
  font: 17px/25px 'Quicksand-Light', Arial, sans-serif;
  color: #ffffff;
}
.map {
  width: 100%;
  margin: 0 0 110px 0;
  overflow: hidden;
  padding-bottom: 56.25%;
  position: relative;
  height: 0;
}
@media (min-width: 992px) {
    .map {
      width: 48%;
      width: calc(50% - 4px);
      padding-bottom: 350px;
    }
}
@media (min-width: 1170px) {
    .map {
    padding-bottom: 500px;
  }
}
.map iframe{
    left:0;
    top:0;
    height:100%;
    width:100%;
    position:absolute;
}

/*----------------------------------------------------------------------------------------------------FORM----------*/

.form {
    width: 100%;
    overflow: hidden;
    position: relative;
}
.form * {
    box-sizing: border-box;
}
#formTxt,
#formEmail,
#formPhone,
#formArea {
  position: relative;
    font: 17px/35px 'Quicksand-Light', Arial, sans-serif;
    color: #695c36;
    background-color: transparent;
    -webkit-transition: all 0.30s ease-in-out;
    -moz-transition: all 0.30s ease-in-out;
    -ms-transition: all 0.30s ease-in-out;
    -o-transition: all 0.30s ease-in-out;
    outline: none;
    border: none;
    border-bottom: 1px solid #fff;
    z-index: 2;
}
#formTxt:focus,
#formEmail:focus,
#formPhone:focus,
#formArea:focus {
    box-shadow: 0 0 5px #ffffff;
    border: 1px solid #ffffff;
}
#formTxt,
#formEmail,
#formPhone {
    display: block;
    width: 100%;
    height: 35px;
    padding: 0;
    margin: 0 0 20px 0;
    float: left;
}
.form input::-webkit-input-placeholder,
#formArea::-webkit-input-placeholder {
  color: rgba(255,255,255,0.7);
}
.form input#company{
  width: 100%;
}
#formTxt:last-of-type{
  margin-right: 0;
}
#formArea {
    clear: both;
    display: block;
    width: 100%;
    height: 35px;
    padding: 10px 0 0 0;
    margin-bottom: 20px;

    resize: none;

    line-height: 22px;
}
#formSubmit {
    padding: 0 30px;
    height: 60px;
    width: 100%;
    border: none;
    background: #ffffff;

    cursor: pointer;

    font: 12px/60px 'Quicksand-Light', Arial, sans-serif;
    color: #c6b175;
    z-index: 3;
}
@media (min-width: 992px) {
    #formSubmit {
      width: 185px;
      float: right;
  }
}
#formSubmit:disabled{
  opacity: 0.5;
}
form div.wpcf7-response-output {
    margin: 3em 0.5em 1em;
}

/*----------------------------------------------------------------------------------------------------FOOTER----------*/

.pageFooter {
  width: 100%;
  background-color: #fff;
  padding: 25px 10px;
  display: table;
  white-space: nowrap;
  box-sizing: border-box;
}
.footer__navbar-brand {
  display: table-cell;
  vertical-align: top;
  width: 10%;
}
.footer__img {
  display: block;
  max-width: 100%;
}
@media (min-width: 768px) {
    .menu-manu-dolne-inna-str-container,
    .menu-manu-dolne-inna-str-en-container,
    .menu-manu-dolne-inna-str-de-container {
      display: table-cell;
      width: 70%;
    }
}
#menu-manu-dolne-inna-str,
#menu-manu-dolne-inna-str-en,
#menu-manu-dolne-inna-str-de {
  list-style: none;
  padding-left: 10px;
  display: table-cell;
  vertical-align: top;
  width: 90%;
  position: relative;
  top: -3px;
}
@media (min-width: 568px) {
    #menu-manu-dolne-inna-str,
    #menu-manu-dolne-inna-str-en,
    #menu-manu-dolne-inna-str-de {
      width: 100%;
      padding-bottom: 10px;
    }
}
#menu-manu-dolne-inna-str li,
#menu-manu-dolne-inna-str-en li,
#menu-manu-dolne-inna-str-de li {
  float: left;
  margin-right: 10px;
}
#menu-manu-dolne-inna-str li a,
#menu-manu-dolne-inna-str-en li a,
#menu-manu-dolne-inna-str-de li a {
  font: 12px/40px 'Quicksand-Light', Arial, sans-serif;
  color: #777777;
  text-decoration: none;
  text-transform: none;
}
#menu-manu-dolne-inna-str li a:hover,
#menu-manu-dolne-inna-str-en li a:hover,
#menu-manu-dolne-inna-str-de li a:hover {
  color: #c6b175;
  text-decoration: underline;
}

/*----------------------------------------------------------------------------------------------------O NAS----------*/

.pageMain--onas {
  top: 0;
  padding-top: 100px;
  min-height: 100vh;
  background: url(../images/bg-onas-mobile.png) no-repeat;
  background-size: 100%;
  background-position: center;
}
@media (min-width: 568px) {
    .pageMain--onas {
      background-size: 80%;
    }
}
@media (min-width: 568px) {
    .pageMain--onas {
      background-size: 80%;
    }
}
@media (min-width: 992px) {
    .pageMain--onas {
      background: url(../images/bg-onas.jpg) no-repeat;
      background-size: 100%;
      background-position: center top;
    }
    .onasSection .pageSection__container {
      max-width: 970px;
    }
}
@media (min-width: 1580px) {
    .pageMain--onas {
      padding-top: 145px;
    }
}
@media (min-width: 1900px) {
    .pageMain--onas {
      padding-top: 190px;
    }
}
.onasSection {
    background: none;
}
.pageMain--onas .paragraph {
  margin: 20px 0;
}
.signature {
  display: block;
  margin: 35px auto;
}
@media (min-width: 1170px) {
    .signature {
      margin-top: 125px;
    }
}
@media (min-width: 1900px) {
    .signature {
      margin-top: 170px;
    }
}

/*----------------------------------------------------------------------------------------------------GALLERY----------*/

.overlayed .pageMain,
.overlayed #gallery {
    z-index: 4;
}
.pageGallery__row {
    display: -ms-flexbox; /* IE10 */
    display: flex;
    -ms-flex-wrap: wrap; /* IE10 */
    flex-wrap: wrap;
    padding: 0 4px;
    margin: 40px auto;
}
.overlayed .pageGallery__row {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 99;
    background-color: rgba(12,29,51,0.9);
    display: block;
    margin: 0;
    transition: all .4s;
}
.pageGallery__column {
    -ms-flex: 25%; /* IE10 */
    flex: 25%;
    max-width: 25%;
    padding: 0 4px;
}
.overlayed .pageGallery__column {
    display: none;
    max-width: 100%;
    opacity: 0;
    z-index: 1;
}
.overlayed .pageGallery__column.active {
    display: block;
    opacity: 1;
    z-index: 2;
    width: 0;
    height: 0;
}
.pageGallery__youTubeVideo {
    margin: 30px auto 0;
    width: calc(100% - 16px);
    min-height: 240px;
    display: block;
}
@media ( min-width: 768px ) {
    .pageGallery__youTubeVideo {
        min-height: 420px;
    }
}
@media ( min-width: 992px ) {
    .pageGallery__youTubeVideo {
        min-height: 550px;
    }
}
@media ( min-width: 1200px ) {
    .pageGallery__youTubeVideo {
        min-height: 640px;
    }
}
.pageGallery__image,
.pageGallery__video {
    width: 100%;
    margin-top: 8px;
    vertical-align: middle;
    transform: scale(1) translate(0,0);
    transition: transform .3s;
    object-fit: cover;
    cursor: pointer;
}
.overlayed .pageGallery__image,
.overlayed .pageGallery__video {
    display: none;
    width: auto;
    max-width: 80%;
    max-height: 80%;
    margin: 0 auto;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: scale(1) translate(-50%,-50%);
    z-index: 1;
    opacity: 0;
    cursor: default;
    transition: opacity .3s;
}
.overlayed .pageGallery__image.active,
.overlayed .pageGallery__video.active {
    display: block;
    opacity: 1;
    z-index: 3;
}
.pageGallery__image:hover,
.pageGallery__video:hover {
    transform: scale(1.05);
}
.overlayed .pageGallery__image:hover,
.overlayed .pageGallery__video:hover {
    transform: scale(1) translate(-50%,-50%);
}
.pageGallery__videoDesc {
    font-size: 10px;
}
.pageGallery__videoDesc a {
    color: #0c1d33;
    text-decoration: none;
}
@media screen and (max-width: 800px) {
  .pageGallery__column {
        -ms-flex: 50%;
        flex: 50%;
        max-width: 50%;
  }
}
@media screen and (max-width: 600px) {
  .pageGallery__column {
        -ms-flex: 100%;
        flex: 100%;
        max-width: 100%;
  }
}
.galleryButton__close,
.galleryButton__next,
.galleryButton__prev {
    display: none;
    cursor: pointer;
    position: absolute;
    opacity: 0.5;
    z-index: 3;
}
.overlayed .galleryButton__close {
    display: block;
    width: 50px;
    height: 50px;
    top: 20px;
    right: 20px;
    padding: 0;
    margin: 0;
    border: 0;
    font-family: 'Quicksand-Medium', Tahoma, sans-serif;
    color: #c6b175;
    background: none;
    font-size: 50px;
    line-height: 1em;
}
.overlayed .galleryButton__next,
.overlayed .galleryButton__prev {
    display: block;
    width: 45px;
    height: 70px;
    top: calc(50% - 35px);
}
.overlayed .galleryButton__next {
    right: 20px;
    background: url(../images/arrow-right.svg) no-repeat;
    background-size: 100%;
}
.overlayed .galleryButton__prev {
    left: 20px;
    background: url(../images/arrow-left.svg) no-repeat;
    background-size: 100%;
}
.overlayed .galleryButton__close:hover,
.overlayed .galleryButton__next:hover,
.overlayed .galleryButton__prev:hover {
    opacity: 1;
}


/*----------------------------------------------------------------------------------------------------HELPERS----------*/

.img--responsive {
    display: block;
    max-width: 100%;
    margin: 0 auto;
}
.box__container {
  white-space: nowrap;
  box-sizing: border-box;
}
.box__container *{
  white-space: normal;
}
.view--active {
  display: block;
}
.both {
  clear: both;
}
.light {
    font-family: 'Quicksand-Light', Tahoma, sans-serif;
}
.center {
    text-align: center;
}
.white {
  color: #ffffff;
}
.reverse{
  color: #ffffff;
  text-decoration: none;
  direction: rtl;
  unicode-bidi: bidi-override;
}
.gold {
  color: #c6b175;
}
.margin-top-30 {
    margin-top: 30px;
}

.owl-theme .owl-controls .owl-page {
  background-color: transparent;
  color: #fff;
  counter-increment: item;
}
.owl-theme .owl-controls .owl-page span {
  opacity: 0 !important;
}
.owl-theme .owl-controls .owl-page:before {
  content: counter(item);
  width: 40px;
  height: 40px;
  font: 17px 'Quicksand-Light', Tahoma, sans-serif;
  padding: 15px;
  color: #fff;
  cursor: pointer;
  background: none;
  opacity: .2;
}
.owl-carousel .item img {
    margin-bottom: 30px;
}
.owl-theme .owl-controls .owl-page.active:before {
  color: #c6b175;
  opacity: 1;
}
.owl-theme .owl-controls.clickable .owl-page:hover:before {
  color: #c6b175;
}
.owl-buttons {
    position: absolute;
    top: -30px;
    width: 100%;
    text-align: left;
}
@media (min-width: 992px) {
    .owl-buttons {
        top: 165px;
    }
}
@media (min-width: 1300px) {
    .owl-buttons {
        top: 200px;
        left: -45px;
        width: calc(100% + 90px);
    }
}
.pageSection__container .owl-theme .owl-controls .owl-buttons div {
    font-size: 0px;
    color: transparent;
    width: 20px;
    height: 31px;
}
@media (min-width: 992px) {
    .pageSection__container .owl-theme .owl-controls .owl-buttons div {
        width: 45px;
        height: 70px;
    }
}
.owl-theme .owl-controls .owl-buttons div.owl-next {
    float: right;
    background: url(../images/arrow-right.svg) no-repeat;
    background-size: 100%;
}
.owl-theme .owl-controls .owl-buttons div.owl-prev {
    background: url(../images/arrow-left.svg) no-repeat;
    background-size: 100%;
}

/* CookiesInfo */
.cookiesInfo--fixedTop {
  padding: 15px;
  background-color: rgba(12,29,51,1);
}
.cookiesInfo__text,
.cookiesInfo__text a {
  font: 15px/18px 'Quicksand-Light', Tahoma, sans-serif;
  color: #c6b175;
}
.cookiesInfo__close {
  color: #fff;
}
.english {
  display: none;
}
@keyframes moveInfo {
  0%  {background-position: 50% 30px;}
  50% {background-position: 50% 20px;}
  100% {background-position: 50% 30px;}
}
@media (min-width: 768px) {
    .owl-item .box:nth-child(3) {
        position: relative;
    }
}
@media (min-width: 768px) {
    .info-btn {
        font-family: 'Quicksand-Medium', sans-serif;
        font-size: 17px;
        color: #c6b175;
        text-align: center;
        width: 53px;
        margin: -30px auto 0;
        height: 53px;
        background: url(../images/arrow-info.png) no-repeat;
        background-position: 50% 30px;
        cursor: pointer;
        animation: moveInfo 1s linear 0s infinite;
    }
}
.offer__button {
    font: 17px 'Quicksand-Bold', Tahoma, sans-serif;
    text-align: center;
    text-decoration: none;
    color: #c6b175;
    border: 2px solid #c6b175;
    border-radius: 5px;
    padding: 10px;
    width: 200px;
    display: block;
    margin: 20px auto;
    cursor: pointer;
    transition: all .2s;
}
.offer__button:hover {
    color: #ffffff;
    background-color: #c6b175;
}

/*----------------------------------------------------------------------------------------------------SOCIAL WIDGETS----------*/

.pageFooter__nav {
    display: table;
    width: 100%;
}
.socialWidget__footer {
    display: block;
    text-align: center;
}
@media (min-width: 768px) {
    .socialWidget__footer {
        display: table-cell;
        vertical-align: top;
        text-align: right;
    }
}
.socialWidget__header {
    padding-top: 8px;
}
@media (min-width: 992px ) {
    .socialWidget__header {
        padding-top: 0;
        position: fixed;
        z-index: 4;
        top: 50px;
        min-width: 108px;
        right: 10px;
    }
}
@media (min-width: 1170px ) {
    .socialWidget__header {
        top: 15px;
    }
}
.socialWidget__listItem {
    display: inline-block;
    padding: 8px;
    margin-right: 12px;
    border-radius: 10px;
    height: 40px;
}
.socialWidget__link {
    text-decoration: none;
}
.socialWidget__ico {
    max-width: 24px;
}
.socialWidget__listItemFb {
    background: #fff;
}
.socialWidget__listItemInsta {
    background: #fff;
}
.socialWidget__ico {
    display: inline-block;
    max-width: 24px;
    vertical-align: middle;
}
.socialWidget__icoDesc {
    display: none;
}
.nav__navbars .menu-item a.socialWidget__link {
    line-height: 1em;
}
@media (min-width: 1590px ) {
    .socialWidget__icoDesc {
        display: inline-block;
        vertical-align: middle;
        padding: 0 10px;
        text-transform: uppercase;
        font-family: 'Quicksand-Medium', sans-serif;
        font-size: 12px;
        color: #425f9c;
    }
}
