@charset "UTF-8";
/* ---
  Generated by: https://icomoon.gbiorczyk.pl/
--- */
/* ---
  Explode
--- */
/* ---
  String replace
--- */
/* Example of use is at the bottom of file */
/*

  Example:

    div {
      background-attachment: fixed;

      @include browser('ie') {
        background-position: center;
        background-size: cover;
        background-attachment: scroll;
      }
    }

  Result:

    div {
      background-attachment: fixed;
    }

    @media screen and (min-width:0\0) {

      div {
        background-position: center;
        background-size: cover;
        background-attachment: scroll;
      }
    }

*/
/* Example of use is at the bottom of file */
/*

  Example:

    div {
      @include clear();
    }

  Result:

    div:before,
    div:after {
      content: '';
      display: block;
      clear: both;
    }

*/
/* Example of use is at the bottom of file */
/*

  Sample file name:
    • OpenSans-Bold.ttf
    • [prefix][font_weight].ttf

  Mixin args:
    • path with prefix of files
    • font family
    • fonts weights: 
      • name (font_weight in file names)
      • weight
      • style

  Example:
    $Roboto : (
      (
        'name'   : 'Regular',
        'weight' : 400,
        'style'  : 'normal'
      ),
      (
        'name'   : 'Medium',
        'weight' : 500,
        'style'  : 'normal'
      ),
      (
        'name'   : 'Bold',
        'weight' : 700,
        'style'  : 'normal'
      )
    );
    
    @include fontFace('../sources/fonts/Roboto/Roboto-', 'Roboto', $Roboto);

*/
/* Example of use is at the bottom of file */
/*

  Example:

    ul {

      li {

        span {
          color: green;

          @include parent('li', '.red') {
            color: red;
          }

          @include parent('ul', '.hide || .hidden') {
            display: none;
          }
        }
      }
    }

  Result:

    ul li span {
      color: green;
    }

    ul li.red span {
      color: red;
    }

    ul.hide li span {
      display: none;
    }

    ul.hidden li span {
      display: none;
    }

*/
/* Example of use is at the bottom of file */
/*

  Example:

    input {
      color: $c-black;

      @include placeholder() {
        color: $c-black;
      }
    }

  Result:

    input {
      color: $c-black;
    }

    input::-webkit-input-placeholder {
      color: $c-black;
    }

    input::-moz-placeholder {
      color: $c-black;
    }

    input:-ms-input-placeholder {
      color: $c-black;
    }

    input:-moz-placeholder {
      color: $c-black;
    }

*/
/* Example of use is at the bottom of file */
/*

  Example:

    div {
      float: left;

      @include rtl() {
        float: right;
      }
    }

  Result:

    div {
      float: left;
    }

    html[dir=rtl] div {
      float: right;
    }

*/
/* Example of use is at the bottom of file */
/*

  Example:

    ul {
      margin-bottom: 15px;

      @include rwd(tablet, true) {
        margin-bottom: 30px;
      }
      
      li {
        margin-bottom: 20px;

        @include rwd(tablet) {
          margin-bottom: 10px;
        }
      }
    }

  Result:

    ul {
      margin-bottom: 15px;
    }

    ul li {
      margin-bottom: 20px;
    }

    @media (min-width: 769px) {
      ul {
        margin-bottom: 30px;
      }
    }

    @media (max-width: 768px) {
      ul li {
        margin-bottom: 10px;
      }
    }

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

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

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

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

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

/* ---
  Modifications
--- */
/* - HTML support - */
main {
  display: block;
}

/* - Hidden attribute - */
*[hidden] {
  display: none !important;
}

/* - Reset for SVG oraz elements of form - */
svg,
input, textarea, button, select {
  vertical-align: baseline;
  margin: 0;
  padding: 0;
  border: 0;
  font-family: inherit;
  font-size: 100%;
  outline: none;
}

input, textarea, select, button {
  background: none;
  border-radius: 0;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

textarea {
  overflow: auto;
}

button {
  cursor: pointer;
}

button::-moz-focus-inner {
  border: 0;
}

select::-ms-expand,
input::-ms-clear {
  display: none;
}

/* - IE11 - */
template {
  display: none !important;
}

/* - Fonts on iOS, ignoring font size changes - */
body {
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: 100%;
}

/* - Inline tags - */
a {
  color: inherit;
}

a,
a:hover,
a:focus,
*:focus {
  outline: 0;
  text-decoration: none;
}

em {
  font-style: italic;
}

strong {
  font-weight: bold;
}

/* - Reset for images - */
img {
  border: 0;
}

/* - Vue.js - */
[v-cloak] {
  display: none !important;
}

@font-face {
  font-family: "Roboto";
  src: url("../../fonts/Roboto/Roboto-Light.woff2") format("woff2"), url("../../fonts/Roboto/Roboto-Light.woff") format("woff"), url("../../fonts/Roboto/Roboto-Light.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
}

@font-face {
  font-family: "Roboto";
  src: url("../../fonts/Roboto/Roboto-Regular.woff2") format("woff2"), url("../../fonts/Roboto/Roboto-Regular.woff") format("woff"), url("../../fonts/Roboto/Roboto-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: "Roboto";
  src: url("../../fonts/Roboto/Roboto-Medium.woff2") format("woff2"), url("../../fonts/Roboto/Roboto-Medium.woff") format("woff"), url("../../fonts/Roboto/Roboto-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: "Roboto";
  src: url("../../fonts/Roboto/Roboto-Bold.woff2") format("woff2"), url("../../fonts/Roboto/Roboto-Bold.woff") format("woff"), url("../../fonts/Roboto/Roboto-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
}

@font-face {
  font-family: "OldStandardTT";
  src: url("../../fonts/OldStandardTT/OldStandardTT-Regular.woff2") format("woff2"), url("../../fonts/OldStandardTT/OldStandardTT-Regular.woff") format("woff"), url("../../fonts/OldStandardTT/OldStandardTT-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: "OldStandardTT";
  src: url("../../fonts/OldStandardTT/OldStandardTT-Bold.woff2") format("woff2"), url("../../fonts/OldStandardTT/OldStandardTT-Bold.woff") format("woff"), url("../../fonts/OldStandardTT/OldStandardTT-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
}

@font-face {
  font-family: 'icomoon';
  src: url("../../fonts/icons/icomoon.eot");
  src: url("../../fonts/icons/icomoon.woff") format("woff"), url("../../fonts/icons/icomoon.eot#iefix") format("embedded-opentype"), url("../../fonts/icons/icomoon.ttf") format("truetype"), url("../../fonts/icons/icomoon.svg#icomoon") format("svg");
  font-weight: normal;
  font-style: normal;
}

.icon-arrow-right:before {
  content: "\E917" !important;
  font-family: 'icomoon' !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.icon-arrow-left:before {
  content: "\E918" !important;
  font-family: 'icomoon' !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.icon-arrow-up:before {
  content: "\E911" !important;
  font-family: 'icomoon' !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.icon-arrow-down:before {
  content: "\E912" !important;
  font-family: 'icomoon' !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.icon-mute:before {
  content: "\E913" !important;
  font-family: 'icomoon' !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.icon-unmute:before {
  content: "\E914" !important;
  font-family: 'icomoon' !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.icon-play:before {
  content: "\E900" !important;
  font-family: 'icomoon' !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.icon-ico-search:before {
  content: "\E910" !important;
  font-family: 'icomoon' !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.icon-ico-pdf:before {
  content: "\E90F" !important;
  font-family: 'icomoon' !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.icon-pacifier:before {
  content: "\E901" !important;
  font-family: 'icomoon' !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.icon-drop:before {
  content: "\E902" !important;
  font-family: 'icomoon' !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.icon-tennis-ball:before {
  content: "\E903" !important;
  font-family: 'icomoon' !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.icon-teddy-bear:before {
  content: "\E904" !important;
  font-family: 'icomoon' !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.icon-ico-facebook:before {
  content: "\E905" !important;
  font-family: 'icomoon' !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.icon-ico-instagram:before {
  content: "\E906" !important;
  font-family: 'icomoon' !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.icon-ico-lokalizacja-autobus:before {
  content: "\E907" !important;
  font-family: 'icomoon' !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.icon-ico-lokalizacja-bank:before {
  content: "\E908" !important;
  font-family: 'icomoon' !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.icon-ico-lokalizacja-lotnisko:before {
  content: "\E909" !important;
  font-family: 'icomoon' !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.icon-ico-lokalizacja-poznan:before {
  content: "\E90A" !important;
  font-family: 'icomoon' !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.icon-ico-lokalizacja-sklep:before {
  content: "\E90B" !important;
  font-family: 'icomoon' !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.icon-ico-lokalizacja-szkola:before {
  content: "\E90C" !important;
  font-family: 'icomoon' !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.icon-ico-lokalizacja-szpital:before {
  content: "\E90D" !important;
  font-family: 'icomoon' !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.icon-ico-youtube:before {
  content: "\E90E" !important;
  font-family: 'icomoon' !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

html {
  font-size: 10px;
  line-height: 1;
}

body {
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  color: #000000;
}

.glightbox-container {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999999 !important;
  overflow: hidden;
  touch-action: none;
  -webkit-text-size-adjust: 100%;
  -webkit-backface-visibility: hidden;
  outline: 0;
  overflow: hidden;
}

.glightbox-container.inactive {
  display: none;
}

.glightbox-container .gcontainer {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 9999;
  overflow: hidden;
}

.glightbox-container .gslider {
  transition: transform .4s ease;
  height: 100%;
  left: 0;
  top: 0;
  width: 100%;
  position: relative;
  overflow: hidden;
  display: flex !important;
  justify-content: center;
  align-items: center;
  transform: translate3d(0, 0, 0);
}

.glightbox-container .gslide {
  width: 100%;
  position: absolute;
  opacity: 1;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
}

.glightbox-container .gslide.current {
  opacity: 1;
  z-index: 99999;
  position: relative;
}

.glightbox-container .gslide.prev {
  opacity: 1;
  z-index: 9999;
}

.glightbox-container .gslide-inner-content {
  width: 100%;
}

.glightbox-container .ginner-container {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
  flex-direction: column;
  max-width: 100%;
  margin: auto;
  height: 100vh;
}

.glightbox-container .ginner-container.gvideo-container {
  width: 100%;
}

.glightbox-container .ginner-container.desc-bottom, .glightbox-container .ginner-container.desc-top {
  flex-direction: column;
}

.glightbox-container .ginner-container.desc-left, .glightbox-container .ginner-container.desc-right {
  max-width: 100% !important;
}

.gslide iframe, .gslide video {
  outline: 0 !important;
  border: none;
  min-height: 165px;
  -webkit-overflow-scrolling: touch;
  overflow-scrolling: touch;
  touch-action: auto;
}

.gslide-image {
  align-items: center;
}

.gslide-image img {
  max-height: 100vh;
  display: block;
  max-width: 100%;
  margin: 0;
  padding: 0;
  float: none;
  outline: 0;
  border: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  max-width: 100vw;
  width: auto;
  height: auto;
  object-fit: cover;
  touch-action: none;
  margin: auto;
  min-width: 200px;
}

.desc-bottom .gslide-image img, .desc-top .gslide-image img {
  width: auto;
}

.desc-left .gslide-image img, .desc-right .gslide-image img {
  width: auto;
  max-width: 100%;
}

.gslide-image img.zoomable {
  position: relative;
}

.gslide-image img.dragging {
  cursor: -webkit-grabbing !important;
  cursor: grabbing !important;
  transition: none;
}

.gslide-video {
  width: 100%;
  max-width: 100%;
  position: relative;
  width: 100vh;
  max-width: 100vh;
  width: 100% !important;
}

.gslide-video .gvideo-wrapper {
  width: 100%;
  margin: auto;
}

.gslide-video::before {
  content: '';
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(255, 0, 0, 0.34);
  display: none;
}

.gslide-video.playing::before {
  display: none;
}

.gslide-video.fullscreen {
  max-width: 100% !important;
  min-width: 100%;
}

.gslide-video.fullscreen video {
  max-width: 100% !important;
  width: 100% !important;
}

.gslide-inline {
  background: #fff;
  padding: 20px;
  text-align: left;
  max-height: calc(100vh - 40px);
  overflow: auto;
}

.ginlined-content {
  overflow: auto;
  display: block !important;
  opacity: 1;
}

.gslide-external {
  display: flex;
  width: 100%;
  min-width: 100%;
  background: #fff;
  padding: 0;
  overflow: auto;
  max-height: 62vh;
}

.gslide-media {
  display: block;
  display: inline-flex;
  display: flex;
  width: auto;
}

.zoomed .gslide-media {
  box-shadow: none !important;
}

.desc-bottom .gslide-media, .desc-top .gslide-media {
  margin: 0 auto;
  flex-direction: column;
}

.gslide-description {
  position: relative;
}

.gslide-description.description-left, .gslide-description.description-right {
  max-width: 100%;
}

.gslide-description.description-bottom, .gslide-description.description-top {
  margin: 0 auto;
  width: 100%;
}

.gslide-description p {
  margin-bottom: 12px;
}

.gslide-description p::last-child {
  margin-bottom: 0;
}

.zoomed .gslide-description {
  display: none;
}

.glightbox-mobile .glightbox-container .gslide-description {
  height: auto !important;
  width: 100%;
  background: 0 0;
  position: absolute;
  bottom: 15px;
  padding: 19px 11px;
  max-width: 100vw !important;
  order: 2 !important;
  max-height: 78vh;
  overflow: auto !important;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0, rgba(0, 0, 0, 0.75) 100%);
  transition: opacity .3s linear;
  padding-bottom: 50px;
}

.glightbox-mobile .glightbox-container .gslide-title {
  color: #fff;
  font-size: 1em;
}

.glightbox-mobile .glightbox-container .gslide-desc {
  color: #a1a1a1;
}

.glightbox-mobile .glightbox-container .gslide-desc a {
  color: #fff;
  font-weight: 700;
}

.glightbox-mobile .glightbox-container .gslide-desc * {
  color: inherit;
}

.glightbox-mobile .glightbox-container .gslide-desc string {
  color: #fff;
}

.glightbox-mobile .glightbox-container .gslide-desc .desc-more {
  color: #fff;
  opacity: .4;
}

.gdesc-open .gslide-media {
  transition: opacity .5s ease;
  opacity: .4;
}

.gdesc-open .gdesc-inner {
  padding-bottom: 30px;
}

.gdesc-closed .gslide-media {
  transition: opacity .5s ease;
  opacity: 1;
}

.greset {
  transition: all .3s ease;
}

.gabsolute {
  position: absolute;
}

.grelative {
  position: relative;
}

.glightbox-desc {
  display: none !important;
}

.glightbox-open {
  overflow: hidden;
}

.gloader {
  height: 25px;
  width: 25px;
  animation: lightboxLoader .8s infinite linear;
  border: 2px solid #fff;
  border-right-color: transparent;
  border-radius: 50%;
  position: absolute;
  display: block;
  z-index: 9999;
  left: 0;
  right: 0;
  margin: 0 auto;
  top: 47%;
}

.goverlay {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  background: #000;
  will-change: opacity;
}

.glightbox-mobile .goverlay {
  background: #000;
}

.gclose, .gnext, .gprev {
  background-repeat: no-repeat;
  z-index: 99999;
  cursor: pointer;
  width: 26px;
  height: 44px;
  display: block;
  background-position: 0 0;
  border: none;
}

.gclose svg, .gnext svg, .gprev svg {
  display: block;
  width: 100%;
  height: auto;
}

.gclose.disabled, .gnext.disabled, .gprev.disabled {
  opacity: .1;
}

.gclose .garrow, .gnext .garrow, .gprev .garrow {
  stroke: #fff;
}

iframe.wait-autoplay {
  opacity: 0;
}

.glightbox-closing .gclose, .glightbox-closing .gnext, .glightbox-closing .gprev {
  opacity: 0 !important;
}

.glightbox-clean .gslide-description, .glightbox-modern .gslide-description {
  background: #fff;
}

.glightbox-clean .gdesc-inner, .glightbox-modern .gdesc-inner {
  padding: 22px 20px;
}

.glightbox-clean .gslide-title, .glightbox-modern .gslide-title {
  font-size: 1em;
  font-weight: 400;
  font-family: arial;
  color: #000;
  margin-bottom: 19px;
  line-height: 1.4em;
}

.glightbox-clean .gslide-desc, .glightbox-modern .gslide-desc {
  font-size: .86em;
  margin-bottom: 0;
  font-family: arial;
  line-height: 1.4em;
}

.glightbox-clean .gslide-video, .glightbox-modern .gslide-video {
  background: #000;
}

.glightbox-clean .gclose, .glightbox-clean .gnext, .glightbox-clean .gprev, .glightbox-modern .gclose, .glightbox-modern .gnext, .glightbox-modern .gprev {
  background-color: rgba(0, 0, 0, 0.12);
}

.glightbox-clean .gclose:hover, .glightbox-clean .gnext:hover, .glightbox-clean .gprev:hover, .glightbox-modern .gclose:hover, .glightbox-modern .gnext:hover, .glightbox-modern .gprev:hover {
  background-color: rgba(0, 0, 0, 0.2);
}

.glightbox-clean .gclose path, .glightbox-clean .gnext path, .glightbox-clean .gprev path, .glightbox-modern .gclose path, .glightbox-modern .gnext path, .glightbox-modern .gprev path {
  fill: #fff;
}

.glightbox-clean button:focus:not(.focused):not(.disabled), .glightbox-modern button:focus:not(.focused):not(.disabled) {
  outline: 0;
}

.glightbox-clean .gprev, .glightbox-modern .gprev {
  position: absolute;
  top: -100%;
  left: 30px;
  width: 40px;
  height: 56px;
}

.glightbox-clean .gnext, .glightbox-modern .gnext {
  position: absolute;
  top: -100%;
  right: 30px;
  width: 40px;
  height: 56px;
}

.glightbox-clean .gclose, .glightbox-modern .gclose {
  width: 35px;
  height: 35px;
  top: 15px;
  right: 10px;
  position: absolute;
  opacity: .7;
  background-position: -59px 2px;
}

.glightbox-clean .gclose svg, .glightbox-modern .gclose svg {
  width: 20px;
}

.glightbox-clean .gclose:hover, .glightbox-modern .gclose:hover {
  opacity: 1;
}

.gfadeIn {
  animation: gfadeIn .5s ease;
}

.gfadeOut {
  animation: gfadeOut .5s ease;
}

.gslideOutLeft {
  animation: gslideOutLeft .3s ease;
}

.gslideInLeft {
  animation: gslideInLeft .3s ease;
}

.gslideOutRight {
  animation: gslideOutRight .3s ease;
}

.gslideInRight {
  animation: gslideInRight .3s ease;
}

.gzoomIn {
  animation: gzoomIn .5s ease;
}

.gzoomOut {
  animation: gzoomOut .5s ease;
}

@keyframes lightboxLoader {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes gfadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes gfadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}

@keyframes gslideInLeft {
  from {
    opacity: 0;
    transform: translate3d(-60%, 0, 0);
  }
  to {
    visibility: visible;
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}

@keyframes gslideOutLeft {
  from {
    opacity: 1;
    visibility: visible;
    transform: translate3d(0, 0, 0);
  }
  to {
    transform: translate3d(-60%, 0, 0);
    opacity: 0;
    visibility: hidden;
  }
}

@keyframes gslideInRight {
  from {
    opacity: 0;
    visibility: visible;
    transform: translate3d(60%, 0, 0);
  }
  to {
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}

@keyframes gslideOutRight {
  from {
    opacity: 1;
    visibility: visible;
    transform: translate3d(0, 0, 0);
  }
  to {
    transform: translate3d(60%, 0, 0);
    opacity: 0;
  }
}

@keyframes gzoomIn {
  from {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
  to {
    opacity: 1;
  }
}

@keyframes gzoomOut {
  from {
    opacity: 1;
  }
  50% {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
  to {
    opacity: 0;
  }
}

.tns-outer {
  padding: 0 !important;
}

.tns-outer [hidden] {
  display: none !important;
}

.tns-outer [aria-controls], .tns-outer [data-action] {
  cursor: pointer;
}

.tns-slider {
  transition: all 0s;
}

.tns-slider > .tns-item {
  box-sizing: border-box;
}

.tns-horizontal.tns-subpixel {
  white-space: nowrap;
}

.tns-horizontal.tns-subpixel > .tns-item {
  display: inline-block;
  vertical-align: top;
  white-space: normal;
}

.tns-horizontal.tns-no-subpixel:after {
  content: '';
  display: table;
  clear: both;
}

.tns-horizontal.tns-no-subpixel > .tns-item {
  float: left;
}

.tns-horizontal.tns-carousel.tns-no-subpixel > .tns-item {
  margin-right: -100%;
}

.tns-no-calc {
  position: relative;
  left: 0;
}

.tns-gallery {
  position: relative;
  left: 0;
  min-height: 1px;
}

.tns-gallery > .tns-item {
  position: absolute;
  left: -100%;
  transition: transform 0s, opacity 0s;
}

.tns-gallery > .tns-slide-active {
  position: relative;
  left: auto !important;
}

.tns-gallery > .tns-moving {
  transition: all 0.25s;
}

.tns-autowidth {
  display: inline-block;
}

.tns-lazy-img {
  transition: opacity 0.6s;
  opacity: 0.6;
}

.tns-lazy-img.tns-complete {
  opacity: 1;
}

.tns-ah {
  transition: height 0s;
}

.tns-ovh {
  overflow: hidden;
}

.tns-visually-hidden {
  position: absolute;
  left: -10000em;
}

.tns-transparent {
  opacity: 0;
  visibility: hidden;
}

.tns-fadeIn {
  opacity: 1;
  filter: alpha(opacity=100);
  z-index: 0;
}

.tns-normal, .tns-fadeOut {
  opacity: 0;
  filter: alpha(opacity=0);
  z-index: -1;
}

.tns-vpfix {
  white-space: nowrap;
}

.tns-vpfix > div, .tns-vpfix > li {
  display: inline-block;
}

.tns-t-subp2 {
  margin: 0 auto;
  width: 310px;
  position: relative;
  height: 10px;
  overflow: hidden;
}

.tns-t-ct {
  width: 2333.3333333%;
  width: calc(100% * 70 / 3);
  position: absolute;
  right: 0;
}

.tns-t-ct:after {
  content: '';
  display: table;
  clear: both;
}

.tns-t-ct > div {
  width: 1.4285714%;
  width: calc(100% / 70);
  height: 10px;
  float: left;
}
/* ---
  Sizes:
    • button--small

  Styles:
    • button--border
    • button--fill

  Colors:
    • button--green
    • button--orange
--- */
.button--w100 {
  width: 100%;
}

.button__primary {
  font-family: "Roboto", sans-serif;
  font-size: 1.4rem;
  font-weight: 400;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.71;
  letter-spacing: 0.49px;
  text-align: center;
  color: #bf931f;
  border: solid 1px #bf931f;
  padding: 20px 50px;
  display: inline-block;
  transition: background-color 0.3s ease-in-out;
}

.button__primary:hover {
  color: #ffffff;
  background-color: #bf931f;
}

.button__secondary {
  font-family: "Roboto", sans-serif;
  font-size: 1.4rem;
  font-weight: 400;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.71;
  letter-spacing: 0.49px;
  text-align: center;
  color: #ffffff;
  border: solid 1px #ffffff;
  padding: 20px 50px;
  display: inline-block;
  transition: background-color 0.3s ease-in-out;
}

.button__secondary:hover {
  color: #ffffff;
  background-color: #bf931f;
}

.button__tertiary {
  font-family: "Roboto", sans-serif;
  font-size: 1.4rem;
  font-weight: 400;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.71;
  letter-spacing: 0.49px;
  text-align: center;
  color: #ffffff;
  background-color: #bf931f;
  border: solid 1px #bf931f;
  padding: 20px 50px;
  display: inline-block;
  transition: background-color 0.3s ease-in-out;
}

.button__tertiary:hover {
  color: #bf931f;
  background-color: #ffffff;
}

.button__tertiaryOutline {
  font-family: "Roboto", sans-serif;
  font-size: 1.4rem;
  font-weight: 400;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.71;
  letter-spacing: 0.49px;
  text-align: center;
  color: #bf931f;
  background-color: transparent;
  border: solid 1px #bf931f;
  padding: 20px 50px;
  display: inline-block;
  transition: background-color 0.3s ease-in-out;
  cursor: pointer;
}

.button__tertiaryOutline:hover {
  color: #ffffff;
  background-color: #bf931f;
}

.button__link {
  font-family: "Roboto", sans-serif;
  font-size: 1.4rem;
  font-weight: 500;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.71;
  letter-spacing: 0.49px;
  color: #bf931f;
  border-bottom: 1px solid transparent;
  transition: border-bottom 0.3s ease-in-out;
}

.button__link.active, .button__link:hover {
  border-bottom: 1px solid #bf931f;
}

/*

  This grid is a simplified version of Bootstrap Grid system:
  https://getbootstrap.com/docs/3.3/css/#grid

  Available classes:
    • container (or container-fluid)
    • row (or row--fluid, or row--flex if you can use display: flex;)
    • col-*-[1-12] (single column)
    • offset-col-*-[1-12] (column margin)

  Default classes to change the grid system at different resolutions:

    large-laptop (<= 1366px):
    • col-lgl-[1-12]
    • offset-col-lgl-[1-12]

    laptop (<= 1280px):
    • col-lg-[1-12]
    • offset-col-lg-[1-12]

    large-tablet (<= 1024px):
    • col-mdl-[1-12]
    • offset-col-mdl-[1-12]

    tablet (<= 768px):
    • col-md-[1-12]
    • offset-col-md-[1-12]

    small-tablet (<= 600px):
    • col-mds-[1-12]
    • offset-col-mds-[1-12]

    large-phone (<= 480px):
    • col-sml-[1-12]
    • offset-col-sml-[1-12]

    phone (<= 360px):
    • col-sm-[1-12]
    • offset-col-sm-[1-12]

*/
.container {
  width: 100%;
  max-width: 1260px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 30px;
  padding-right: 30px;
  box-sizing: border-box;
  /* ---
    Rows
  --- */
}

.container:before, .container:after {
  content: '';
  display: block;
  clear: both;
}

.container--small {
  width: 100%;
  max-width: 1080px;
  padding-left: 0;
  padding-right: 0;
}

.container--fluid {
  width: 100%;
  max-width: 100%;
  padding-left: 0;
  padding-right: 0;
}

.container .row {
  margin-left: -15px;
  margin-right: -15px;
  /* ---
      Columns
    --- */
  /* ---
      Default sizes
    --- */
  /* ---
      RWD classes
    --- */
}

.container .row:before, .container .row:after {
  content: '';
  display: block;
  clear: both;
}

.container .row--fluid {
  margin-left: 0;
  margin-right: 0;
}

.container .row--fluid .col-1, .container .row--fluid .col-2, .container .row--fluid .col-3, .container .row--fluid .col-4, .container .row--fluid .col-5, .container .row--fluid .col-6, .container .row--fluid .col-7, .container .row--fluid .col-8, .container .row--fluid .col-9, .container .row--fluid .col-10, .container .row--fluid .col-11, .container .row--fluid .col-12 {
  padding-left: 0;
  padding-right: 0;
}

.container .row--flex {
  display: flex;
  flex-wrap: wrap;
}

.container .row--flex .col-1, .container .row--flex .col-2, .container .row--flex .col-3, .container .row--flex .col-4, .container .row--flex .col-5, .container .row--flex .col-6, .container .row--flex .col-7, .container .row--flex .col-8, .container .row--flex .col-9, .container .row--flex .col-10, .container .row--flex .col-11, .container .row--flex .col-12 {
  float: none;
}

.container .row .col-1, .container .row .col-2, .container .row .col-3, .container .row .col-4, .container .row .col-5, .container .row .col-6, .container .row .col-7, .container .row .col-8, .container .row .col-9, .container .row .col-10, .container .row .col-11, .container .row .col-12 {
  float: left;
  padding-left: 15px;
  padding-right: 15px;
  box-sizing: border-box;
}

.container .row .col-1 {
  width: 8.33333333%;
}

.container .row .col-2 {
  width: 16.66666667%;
}

.container .row .col-3 {
  width: 25%;
}

.container .row .col-4 {
  width: 33.33333333%;
}

.container .row .col-5 {
  width: 41.66666667%;
}

.container .row .col-6 {
  width: 50%;
}

.container .row .col-7 {
  width: 58.33333333%;
}

.container .row .col-8 {
  width: 66.66666667%;
}

.container .row .col-9 {
  width: 75%;
}

.container .row .col-10 {
  width: 83.33333333%;
}

.container .row .col-11 {
  width: 91.66666667%;
}

.container .row .col-12 {
  width: 100%;
}

.container .row .offset-col-1 {
  margin-left: 8.33333333%;
}

.container .row .offset-col-2 {
  margin-left: 16.66666667%;
}

.container .row .offset-col-3 {
  margin-left: 25%;
}

.container .row .offset-col-4 {
  margin-left: 33.33333333%;
}

.container .row .offset-col-5 {
  margin-left: 41.66666667%;
}

.container .row .offset-col-6 {
  margin-left: 50%;
}

.container .row .offset-col-7 {
  margin-left: 58.33333333%;
}

.container .row .offset-col-8 {
  margin-left: 66.66666667%;
}

.container .row .offset-col-9 {
  margin-left: 75%;
}

.container .row .offset-col-10 {
  margin-left: 83.33333333%;
}

.container .row .offset-col-11 {
  margin-left: 91.66666667%;
}

.container .row .offset-col-12 {
  margin-left: 100%;
}

.footer {
  padding: 50px 0;
  background-color: #3c3c3b;
}

.footer__wrapper {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -8px;
}

.footer__item {
  padding: 0 8px;
}

.footer__item--25 {
  flex: 0 0 25%;
  max-width: 25%;
}

.footer__item--50 {
  flex: 0 0 50%;
  max-width: 50%;
}

.footer__item--100 {
  flex: 0 0 100%;
  max-width: 100%;
}

.footer__image {
  width: 115px;
  height: 52px;
}

.footer__image img {
  width: 100%;
}

.footer__text {
  padding-top: 22px;
}

.footer__text h4 {
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  font-size: 1.4rem;
  line-height: 1.14;
  letter-spacing: 0.49px;
  color: #ffffff;
  padding-bottom: 21px;
}

.footer__text p {
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  font-size: 1.2rem;
  line-height: 1.67;
  letter-spacing: 0.42px;
  color: #ffffff;
}

.footer__menuItem {
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  font-size: 1.2rem;
  line-height: 2.5;
  letter-spacing: 0.42px;
  color: #ffffff;
}

.footer__socials {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -8px;
  padding-top: 30px;
}

.footer__social {
  padding: 0 8px;
  color: #ffffff;
  font-size: 3.0rem;
}

.header {
  position: relative;
  height: 100px;
}

.header__wrapper {
  position: fixed;
  width: 100%;
  height: 100px;
  background-color: #ffffff;
  display: flex;
  align-items: center;
  z-index: 10;
  transition: height 0.3s ease-in-out;
  box-shadow: 0 8px 15px 0 rgba(0, 0, 0, 0.07);
}

.header__wrapper.active {
  height: 70px;
}

.nav {
  display: flex;
  align-items: center;
}

.nav__logo {
  width: 114px;
  height: 51px;
  opacity: 1;
  transition: opacity 0.3s ease-in-out;
}

.nav__logo img {
  width: 100%;
}

.nav__logo:hover {
  opacity: 0.8;
}

.nav__menu {
  margin: 0 -10px;
  display: flex;
  margin-left: 50px;
}

.nav__menu--itemMobile {
  display: none;
}

.nav__menuItem {
  padding: 0 15px;
  position: relative;
}

.nav__menuItemChildren {
  position: absolute;
  background-color: #ffffff;
  padding: 20px 5px;
  width: 200px;
}

.nav__menuItemLink {
  padding: 10px 0;
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  font-size: 1.2rem;
  line-height: 1.17;
  letter-spacing: 1.2px;
  color: #3c3c3b;
  text-transform: uppercase;
  border-bottom: 3px solid transparent;
  transition: border-bottom 0.3s ease-in-out;
  display: inline-flex;
}

.nav__menuItemLink--child {
  padding-right: 8px;
}

.nav__menuItemLink.active, .nav__menuItemLink:hover {
  border-bottom: 3px solid #bf931f;
}

.nav__arrow {
  display: block;
  font-size: 1.2rem;
  transform: rotate(0);
  transition: transform 0.3s ease-in;
}

.nav__right {
  margin-left: auto;
  display: flex;
  align-items: center;
}

.nav__rightText p {
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-size: 1.2rem;
  line-height: 1.17;
  letter-spacing: 1.2px;
  color: #3c3c3b;
  text-transform: uppercase;
  padding-top: 5px;
}

.nav__menuToggle {
  width: 50px;
  height: 50px;
  position: relative;
  cursor: pointer;
  border-radius: 5px;
  display: none;
  margin-left: 10px;
}

.nav__menuToggle span {
  display: block;
  background: #bf931f;
  border-radius: 2px;
  transition: .25s ease-in-out;
}

.nav__menuToggle.open .nav__hamburger span {
  width: 0;
}

.nav__menuToggle.open .nav__hamburger span:nth-child(1) {
  transition-delay: 0s;
}

.nav__menuToggle.open .nav__hamburger span:nth-child(2) {
  transition-delay: .125s;
}

.nav__menuToggle.open .nav__hamburger span:nth-child(3) {
  transition-delay: .25s;
}

.nav__menuToggle.open .nav__hamburgerCross span:nth-child(1) {
  height: 80%;
  transition-delay: .625s;
}

.nav__menuToggle.open .nav__hamburgerCross span:nth-child(2) {
  width: 80%;
  transition-delay: .375s;
}

.nav__hamburger {
  position: absolute;
  height: 100%;
  width: 100%;
}

.nav__hamburger span {
  width: 100%;
  height: 4px;
  position: relative;
  margin: 10px 0;
}

.nav__hamburger span:nth-child(1) {
  transition-delay: .5s;
}

.nav__hamburger span:nth-child(2) {
  transition-delay: .625s;
}

.nav__hamburger span:nth-child(3) {
  transition-delay: .75s;
}

.nav__hamburgerCross {
  position: absolute;
  height: 100%;
  width: 100%;
  transform: rotate(45deg);
  top: 4px;
}

.nav__hamburgerCross span:nth-child(1) {
  height: 0;
  width: 4px;
  position: absolute;
  top: 5%;
  left: 20px;
  transition-delay: 0s;
}

.nav__hamburgerCross span:nth-child(2) {
  width: 0;
  height: 4px;
  position: absolute;
  top: 40%;
  left: 3px;
  transition-delay: .25s;
}

.card {
  margin-bottom: 30px;
}

.card__wrapper {
  background-color: #f8f8f8;
  padding: 40px 30px;
}

.googleMap {
  width: 100%;
  height: 100%;
}

.googleMap__wrapper {
  width: 100%;
  height: 100%;
}

.search__title {
  font-family: "OldStandardTT", sans-serif;
  font-size: 2.4rem;
  font-weight: 400;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.58;
  letter-spacing: normal;
  color: #3c3c3b;
  padding-bottom: 20px;
}

.search__wrapper {
  position: relative;
}

.search__input {
  background-color: #ffffff;
  border: solid 1px rgba(60, 60, 59, 0.7);
  width: 100%;
  font-family: "OldStandardTT", sans-serif;
  font-size: 1.6rem;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 2.13;
  letter-spacing: normal;
  color: #3c3c3b;
  padding: 12px 45px 12px 20px;
}

.search__input::-webkit-input-placeholder {
  opacity: 0.3;
}

.search__input:-ms-input-placeholder {
  opacity: 0.3;
}

.search__input::-ms-input-placeholder {
  opacity: 0.3;
}

.search__input::placeholder {
  opacity: 0.3;
}

.search__zoom {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 15px;
  font-size: 1.6rem;
  color: #bf931f;
}

.sliderCarousel__wrapper {
  position: relative;
}

.sliderCarousel__slides {
  width: 90%;
  margin: 0 auto;
}

.sliderCarousel__arrows {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
}

.sliderCarousel__arrow--left {
  position: absolute;
  left: 0;
}

.sliderCarousel__arrow--right {
  position: absolute;
  right: 0;
}

.sliderCarousel__arrow--left, .sliderCarousel__arrow--right {
  transition: opacity 0.3s ease-in-out;
}

.sliderCarousel__arrow--left:hover, .sliderCarousel__arrow--right:hover {
  opacity: 0.8;
}

p {
  font-family: "Roboto", sans-serif;
  font-size: 1.4rem;
  font-weight: 400;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.71;
  letter-spacing: 0.49px;
  color: #3c3c3b;
}

p + p,
p + h3 {
  padding-top: 15px;
}

h1 {
  font-family: "OldStandardTT", sans-serif;
  font-size: 4.8rem;
  font-weight: 400;
  font-stretch: normal;
  font-style: normal;
  letter-spacing: normal;
  line-height: 1.25;
}

h3 {
  font-family: "OldStandardTT", sans-serif;
  font-size: 4.8rem;
  font-weight: 400;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.25;
  letter-spacing: normal;
  color: #3c3c3b;
}

h4 {
  font-family: "OldStandardTT", sans-serif;
  font-size: 3.2rem;
  font-weight: 400;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.88;
  letter-spacing: normal;
  color: #3c3c3b;
}

hr {
  width: 115px;
  border: 3px solid #bf931f;
  margin-top: 15px;
}

.section {
  padding: 25px 0;
}

.section--bottom {
  padding: 0 0 25px 0;
}

.section--big {
  padding: 50px 0;
}

.videoSection {
  overflow: hidden;
  margin-bottom: 15px;
}

.videoSection__wrapper {
  position: relative;
  margin: 0 auto;
}

.videoSection__video {
  position: relative;
  height: 0;
  padding-bottom: 56.25%;
}

.videoSection__poster {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: opacity 0.3s ease-in-out;
}

.videoSection__poster--hidden {
  visibility: hidden;
  opacity: 0;
}

.videoSection__placeholder {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.videoSection__play {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 81px;
  height: 81px;
  transform: translate(-50%, -50%);
  background-color: rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  z-index: 2;
}

.videoSection__play:before {
  content: '';
  position: absolute;
  top: 6px;
  bottom: 6px;
  left: 6px;
  right: 6px;
  background-color: #ffffff;
  border-radius: 50%;
  transition: transform 0.3s;
}

.videoSection__play:after {
  position: relative;
  display: block;
  font-size: 2.4rem;
  line-height: 81px;
  padding-left: .6rem;
  text-align: center;
  color: #3c3c3b;
  transition: transform 0.3s;
}

.videoSection__play:after {
  content: "\E900" !important;
  font-family: 'icomoon' !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.videoSection__play:hover:before {
  transform: scale(1.18);
}

.videoSection__play--loading:before {
  animation: playButton 0.7s linear infinite;
}

.videoSection__volume {
  position: absolute;
  top: 50%;
  left: 30px;
  transform: translateY(-50%);
  z-index: 99;
  width: 45px;
  height: 45px;
  background-color: #bf931f;
  color: #3c3c3b;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 2rem;
  cursor: pointer;
}

.videoSection__volume--mute, .videoSection__volume--unmute {
  display: none;
}

.videoSection__volume--mute.active, .videoSection__volume--unmute.active {
  display: block;
}

.videoSection__output {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.woocommerce-checkout p.woocommerce-invalid-required-field span.error {
  color: #e2401c;
  display: block !important;
  font-weight: bold;
}

.assets__wrapper {
  box-shadow: 0 10px 15px 0 rgba(0, 0, 0, 0.07);
  background-color: #f8f8f8;
}

.assets__inner {
  display: flex;
  flex-wrap: wrap;
  padding: 34px 90px;
}

.assets__item {
  flex: 0 0 33.33%;
  max-width: 33.33%;
  display: flex;
}

.assets__itemImage {
  width: 80px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}

.assets__itemTextWrapper {
  padding-left: 20px;
}

.assets__itemTextTop {
  font-family: "Roboto", sans-serif;
  font-size: 1.4rem;
  font-weight: 400;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.71;
  letter-spacing: 0.49px;
  text-align: left;
  color: #3c3c3b;
}

.assets__itemTextBottom {
  font-family: "OldStandardTT", sans-serif;
  font-size: 4.8rem;
  font-weight: 700;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.25;
  letter-spacing: normal;
  color: #bf931f;
}

.blog__wrapper {
  background-color: #3c3c3b;
  padding: 70px 90px;
}

.blog__text p {
  color: #ffffff;
}

.blog__text h3 {
  color: #ffffff;
}

.blog__text hr {
  border: 3px solid #bf931f;
}

.blog__items {
  display: flex;
  padding-top: 50px;
}

.blog__items .singlePost__title,
.blog__items .singlePost__title h3 {
  font-size: 2.2rem;
  font-weight: 700;
  padding-bottom: 20px;
  min-height: 170px;
}

.blog__items .singlePost__createWrapper {
  top: 20px;
}

.blog__buttons {
  display: flex;
  justify-content: center;
  padding-top: 70px;
}

.calculator__wrapper {
  display: flex;
  flex-wrap: wrap;
  padding: 110px 70px;
  background-color: #f8f8f8;
}

.calculator__left, .calculator__right {
  flex: 0 0 50%;
  max-width: 50%;
}

.calculator__left {
  border-right: 1px solid #3c3c3b;
  padding-right: 100px;
}

.calculator__right {
  border-left: 1px solid #3c3c3b;
  padding-left: 100px;
}

.calculator__text {
  margin-bottom: 34px;
}

.widget_notus-kalkulatory {
  position: relative;
  font-family: 'Open Sans', sans-serif;
  overflow: hidden;
  margin: auto;
  color: #767676;
  font-size: 16px;
  line-height: 20px;
  padding: 1px;
}

.widget_notus-kalkulatory a {
  color: #3c8dd1;
}

.widget_notus-kalkulatory a:hover {
  color: #196db5;
}

.widget_notus-kalkulatory form {
  position: relative;
}

.widget_notus-kalkulatory .tytul {
  color: #767676;
  margin: 0;
  font-size: 26px;
  line-height: 30px;
  font-weight: 700;
}

.widget_notus-kalkulatory .podtytul {
  display: block;
  margin: 10px 0 10px 0;
}

.widget_notus-kalkulatory div.opis {
  display: inline-block;
  font-size: 12px;
  padding: 4px 0 4px 0;
  z-index: 1;
}

.widget_notus-kalkulatory div.input {
  display: block;
  position: relative;
  color: #373737;
  background: #ffffff;
  font-size: 16px;
  line-height: 16px;
  width: 100%;
  height: 50px;
  border: 1px solid #e0e0e0;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  border-radius: 4px;
  margin: 0 auto 0 auto;
}

.widget_notus-kalkulatory div.input.kwota_kredytu:after, .widget_notus-kalkulatory div.input.dochod_netto:after, .widget_notus-kalkulatory div.input.miesieczne_zobowiazania_raty:after, .widget_notus-kalkulatory div.input.limit_ROR_CC:after, .widget_notus-kalkulatory div.input.inne_wydatki:after, .widget_notus-kalkulatory div.input.kredyt_hipoteczny:after, .widget_notus-kalkulatory div.input.kredyty_i_pozyczki:after, .widget_notus-kalkulatory div.input.karty_kredytowe:after, .widget_notus-kalkulatory div.input.dodatkowe_srodki:after {
  content: "z\142";
  display: block;
  position: absolute;
  top: 15px;
  right: 48px;
  font-size: 14px;
}

.widget_notus-kalkulatory div.input.okres_kredytowania:after {
  content: "lat";
  display: block;
  position: absolute;
  top: 15px;
  right: 48px;
  font-size: 14px;
}

.widget_notus-kalkulatory div.input.ilosc_osob:after {
  content: "os.";
  display: block;
  position: absolute;
  top: 15px;
  right: 48px;
  font-size: 14px;
}

div.input.oprocentowanie_kredytu:after {
  content: "%";
  display: block;
  position: absolute;
  top: 15px;
  right: 46px;
  font-size: 18px;
}

.widget_notus-kalkulatory div.input.telefon {
  text-align: left;
  padding: 0;
  margin: 26px auto 0 auto;
}

.widget_notus-kalkulatory div.input.telefon input {
  padding: 8px 8px 8px 8px;
  width: 100%;
  border-radius: 4px;
}

.widget_notus-kalkulatory input {
  display: block;
  color: #373737;
  background: #ffffff;
  font-size: 16px;
  line-height: 16px;
  width: 100%;
  height: 48px;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  padding: 8px;
  border: 0 none;
  border-radius: 4px;
  z-index: 1;
}

.widget_notus-kalkulatory input:invalid {
  box-shadow: none;
}

.widget_notus-kalkulatory input[type="number"] {
  padding: 8px 70px 8px 8px;
}

.widget_notus-kalkulatory input[type=number] {
  -moz-appearance: textfield;
}

.widget_notus-kalkulatory input[type=number]::-webkit-inner-spin-button, .widget_notus-kalkulatory input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.widget_notus-kalkulatory .quantity-wnk-nav {
  position: absolute;
  top: 0;
  right: 0;
  height: 48px;
}

.widget_notus-kalkulatory .quantity-wnk-button {
  position: relative;
  cursor: pointer;
  border-left: 1px solid #eeeeee;
  width: 40px;
  text-align: center;
  color: #333;
  font-size: 12px;
  transform: translateX(-100%);
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  -o-user-select: none;
  user-select: none;
  background: #ffffff;
}

.widget_notus-kalkulatory .quantity-wnk-button:hover {
  background: #f8f8f8;
}

.widget_notus-kalkulatory .quantity-wnk-button.quantity-wnk-up {
  position: absolute;
  height: 50%;
  top: 0;
  line-height: 24px;
  border-bottom: 1px solid #eeeeee;
  border-radius: 0 4px 0 0;
  z-index: 2;
}

.widget_notus-kalkulatory .quantity-wnk-button.quantity-wnk-down {
  position: absolute;
  bottom: 0px;
  line-height: 20px;
  height: 50%;
  border-radius: 0 0 4px 0;
  z-index: 1;
}

.widget_notus-kalkulatory div.selectlista {
  display: block;
  position: relative;
  color: #373737;
  background: #ffffff;
  font-size: 16px;
  line-height: 16px;
  width: 100%;
  height: 50px;
  box-sizing: border-box;
  border: 1px solid #e0e0e0;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  border-radius: 4px;
  margin: 0 auto 0 auto;
}

.widget_notus-kalkulatory div.selectlista.icon select {
  padding: 8px;
}

.widget_notus-kalkulatory div.selectlista:after {
  content: "";
  position: absolute;
  top: 20px;
  right: 10px;
  display: block;
  width: 12px;
  height: 10px;
  background-color: #ffffff;
  background-repeat: no-repeat;
  background-image: url(img/strzalka.png);
  background-position: center;
  z-index: 1;
}

.widget_notus-kalkulatory select {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  background: transparent;
  color: #373737;
  font-size: 16px;
  line-height: 16px;
  width: 100%;
  height: 48px;
  border: 0 none;
  padding: 8px 8px 8px 52px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  outline: none;
  cursor: pointer;
  z-index: 2;
}

.widget_notus-kalkulatory select:disabled {
  cursor: not-allowed;
  color: rgba(55, 55, 55, 0.6);
}

.widget_notus-kalkulatory select optgroup {
  padding: 6px;
}

.widget_notus-kalkulatory select option {
  padding: 6px;
}

.widget_notus-kalkulatory select option:disabled {
  display: none;
}

.widget_notus-kalkulatory .button {
  background: #ffffff;
  border: 1px solid #767676;
  border-radius: 6px;
  color: #767676;
  cursor: pointer;
  display: block;
  font-size: 15px;
  font-weight: 400;
  width: 100%;
  height: 48px;
  line-height: 38px;
  padding: 0;
  text-align: center;
  margin-top: 26px;
}

.widget_notus-kalkulatory .button:hover, .widget_notus-kalkulatory .button:focus {
  background: #767676;
  color: #ffffff;
  text-decoration: none;
}

.widget_notus-kalkulatory .button:disabled {
  background: rgba(200, 200, 200, 0.2);
  border-color: rgba(200, 200, 200, 0.2);
  color: rgba(200, 200, 200, 0.6);
  cursor: not-allowed;
}

.widget_notus-kalkulatory label.error {
  display: block;
  position: absolute;
  top: -25px;
  left: 0;
  font-size: 10px;
  line-height: 12px;
  color: #ffffff;
  background: #ff0000;
  padding: 5px;
  box-sizing: border-box;
  font-weight: 400;
  border-radius: 4px;
  z-index: 3;
}

.widget_notus-kalkulatory label.error:after, .widget_notus-kalkulatory label.error:before {
  top: 100%;
  left: 20px;
  border: solid transparent;
  content: " ";
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none;
}

.widget_notus-kalkulatory label.error:after, .widget_notus-kalkulatory label.error:before {
  border-color: rgba(255, 0, 0, 0);
  border-top-color: #ff0000;
  border-width: 10px;
  margin-left: -10px;
}

.widget_notus-kalkulatory .calc-info {
  background: #f5f5f5;
  border: 1px solid #e3e3e3;
  border-radius: 4px;
  padding: 24px;
  font-size: 16px;
  line-height: 20px;
}

.widget_notus-kalkulatory .calc-loading {
  position: absolute;
  box-sizing: border-box;
  top: 30%;
  left: 50%;
  margin-left: -120px;
  width: 240px;
  padding: 24px 14px 24px 14px;
  margin-top: 0;
  text-align: center;
  z-index: 3;
}

.widget_notus-kalkulatory .calc-error {
  position: absolute;
  box-sizing: border-box;
  top: 30%;
  left: 50%;
  margin-left: -120px;
  width: 240px;
  padding: 24px 14px 24px 14px;
  margin-top: 0;
  text-align: center;
  z-index: 3;
  cursor: pointer;
}

.widget_notus-kalkulatory .calc-error:after {
  content: "x";
  display: block;
  background: #f5f5f5;
  border: 1px solid #e3e3e3;
  border-radius: 50%;
  font-size: 16px;
  line-height: 20px;
  text-align: center;
  cursor: pointer;
  width: 24px;
  height: 24px;
  position: absolute;
  top: -8px;
  right: -8px;
}

.widget_notus-kalkulatory .calc-success {
  background: #f7f7f7;
  color: #767676;
  border-color: #767676;
  margin-top: 26px;
}

.widget_notus-kalkulatory .calc-infos {
  background: #f7f7f7;
  border: 1px solid #767676;
  border-radius: 4px;
  padding: 10px 24px 10px 24px;
  font-size: 16px;
  line-height: 20px;
  color: #767676;
}

.widget_notus-kalkulatory .calc-infos .calc-info {
  background: #f7f7f7;
  border: 0;
  border-radius: 0;
  padding: 5px;
  font-size: 16px;
  line-height: 20px;
  margin-top: 0;
}

.widget_notus-kalkulatory .calc-wynik {
  font-size: 24px;
  line-height: 28px;
}

.widget_notus-kalkulatory .calc-wyliczenia {
  margin-top: 15px;
  font-size: 14px;
  line-height: 16px;
}

.widget_notus-kalkulatory .calc-wynik strong, .widget_notus-kalkulatory .calc-wyliczenia strong {
  font-weight: 700;
  white-space: nowrap;
}

.widget_notus-kalkulatory .tabela {
  display: table;
  width: 100%;
  box-sizing: border-box;
  margin-bottom: 0;
}

.widget_notus-kalkulatory .komorka50 {
  display: table-cell;
  width: 50%;
  box-sizing: border-box;
  vertical-align: bottom;
}

.widget_notus-kalkulatory .komorka50:first-child {
  padding: 0 5px 0 0;
}

.widget_notus-kalkulatory .komorka50:last-child {
  padding: 0 0 0 5px;
}

.widget_notus-kalkulatory .komorka50:last-child button {
  float: right;
}

.widget_notus-kalkulatory .legal {
  display: none;
  font-size: 12px;
  line-height: 18px;
}

.widget_notus-kalkulatory .legal p {
  position: relative;
  margin-top: 16px;
  margin-bottom: 0;
}

.widget_notus-kalkulatory .infoprawnebox {
  display: block;
  position: relative;
}

.widget_notus-kalkulatory .infoprawnebox span {
  display: inline;
  color: #98012e;
  cursor: pointer;
  white-space: nowrap;
}

.widget_notus-kalkulatory .infoprawnebox span:hover {
  color: #860028;
}

.widget_notus-kalkulatory .oswiadczenie {
  position: absolute;
  bottom: 28px;
  left: 5%;
  background: #ffffff;
  width: 90%;
  padding: 2%;
  box-sizing: border-box;
  font-size: 11px;
  line-height: 15px;
  color: #767676;
  text-align: justify;
  border: 1px solid #767676;
  overflow: initial;
  z-index: 999999;
}

.widget_notus-kalkulatory .oswiadczenie:after, .widget_notus-kalkulatory .oswiadczenie:before {
  top: 100%;
  left: 30px;
  border: solid transparent;
  content: " ";
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none;
}

.widget_notus-kalkulatory .oswiadczenie:after {
  border-color: rgba(255, 255, 255, 0);
  border-top-color: #ffffff;
  border-width: 14px;
  margin-left: -14px;
}

.widget_notus-kalkulatory .oswiadczenie:before {
  border-color: rgba(118, 118, 118, 0);
  border-top-color: #767676;
  border-width: 15px;
  margin-left: -15px;
}

.widget_notus-kalkulatory .oswiadczenie .kontener {
  overflow-x: hidden;
  overflow-y: auto;
  padding-right: 10px;
}

.widget_notus-kalkulatory .oswiadczenie div {
  position: relative;
  margin-bottom: 10px;
}

.widget_notus-kalkulatory .oswiadczenie .zamknij {
  display: block;
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 20px;
  line-height: 18px;
  cursor: pointer;
  color: #767676;
  background: #ffffff;
  width: 24px;
  height: 24px;
  text-align: center;
  border: 1px solid #767676;
  border-radius: 50%;
}

.widget_notus-kalkulatory .oswiadczenie .zamknij:hover {
  color: #ffffff;
  background: #767676;
}

.widget_notus-kalkulatory .oswiadczenie div.naglowek {
  color: #767676;
  margin: 0 34px 10px 0;
  font-size: 13px;
  line-height: 15px;
  font-weight: 700;
  text-align: left;
}

.widget_notus-kalkulatory .oswiadczenie ul {
  padding-left: 20px;
  margin: 0 0 10px 0;
}

.contactUsAddresses__wrapper {
  display: flex;
  flex-wrap: wrap;
}

.contactUsAddresses__item {
  flex: 0 0 25%;
  max-width: 25%;
}

.contactUsAddresses__item h3 {
  font-size: 3.6rem;
}

.contactUsAddresses__item h4 {
  font-size: 3.2rem;
}

.contactUsAddresses__item p {
  font-size: 1.4rem;
}

.contactUsAddresses__item h3 + p,
.contactUsAddresses__item h4 + p {
  padding-top: 16px;
}

.contactUsFunding__wrapper {
  padding: 100px;
  background-color: #3c3c3b;
}

.contactUsFunding__wrapper hr {
  border: 2px solid #ffffff;
}

.contactUsFunding__text h3 {
  color: #ffffff;
}

.contactUsFunding__text h4 {
  color: #ffffff;
}

.contactUsFunding__text hr {
  border: 2px solid #ffffff;
}

.contactUsFunding__text p {
  color: #ffffff;
}

.contactUsFunding__workers {
  display: flex;
  flex-wrap: wrap;
  padding: 80px 0 50px 0;
}

.contactUsFunding__worker {
  flex: 0 0 50%;
  max-width: 50%;
}

.contactUsFunding__worker h3 {
  color: #ffffff;
}

.contactUsFunding__worker h4 {
  color: #ffffff;
}

.contactUsFunding__worker hr {
  border: 2px solid #ffffff;
}

.contactUsFunding__worker p {
  color: #ffffff;
}

.contactUsFunding__logo {
  width: 260px;
  height: 70px;
  margin: 50px auto 25px auto;
}

.contactUsFunding__logo img {
  width: 100%;
}

.contactUsFunding__textAboveButton {
  font-family: "OldStandardTT", sans-serif;
  font-size: 3.6rem;
  font-weight: 400;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.67;
  letter-spacing: normal;
  text-align: center;
  color: #ffffff;
}

.contactUsFunding__button {
  text-align: center;
  padding-top: 24px;
}

.contactUsWorker {
  border-top: 1px solid rgba(60, 60, 59, 0.3);
}

.contactUsWorker__wrapper {
  display: flex;
  flex-wrap: wrap;
}

.contactUsWorker__title {
  flex: 0 0 35%;
  max-width: 35%;
  padding-right: 100px;
}

.contactUsWorker__title h3 {
  font-size: 3.6rem;
}

.contactUsWorker__title h4 {
  font-size: 3.2rem;
}

.contactUsWorker__title p {
  font-size: 1.4rem;
}

.contactUsWorker__title h3 + p,
.contactUsWorker__title h4 + p {
  padding-top: 16px;
}

.contactUsWorker__infoWrapper {
  flex: 0 0 65%;
  max-width: 65%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.contactUsWorker__avatar {
  width: 168px;
  height: 182px;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  border-radius: 30px;
}

.contactUsWorker__text {
  padding-left: 16px;
}

.contactUsWorker__text h3 {
  font-size: 3.6rem;
}

.contactUsWorker__text h4 {
  font-size: 3.2rem;
}

.contactUsWorker__text p {
  font-size: 1.4rem;
}

.contactUsWorker__text h3 + p,
.contactUsWorker__text h4 + p {
  padding-top: 16px;
}

.contactUsWorker__qrCode {
  width: 132px;
  height: 132px;
  margin-left: auto;
}

.form__row {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -8px;
}

.form__col6 {
  flex: 0 0 50%;
  max-width: 50%;
  padding: 8px;
}

.form__col12 {
  flex: 0 0 100%;
  max-width: 100%;
  padding: 8px;
}

.form__group .wpcf7-acceptance a {
  color: #bf931f;
  border-bottom: 1px solid #bf931f;
}

.form__group .wpcf7-acceptance label {
  position: relative;
  cursor: pointer;
}

.form__group .wpcf7-acceptance input[type=checkbox] {
  position: relative;
  visibility: hidden;
}

.form__group .wpcf7-acceptance input[type=checkbox] + span:before {
  display: block;
  position: absolute;
  content: '';
  border-radius: 5px;
  height: 18px;
  width: 18px;
  top: 5px;
  left: 0;
  border: 2px solid #ffffff;
}

.form--light .form__group .wpcf7-acceptance input[type=checkbox] + span:before {
  border: 2px solid #3c3c3b;
}

.form__group .wpcf7-acceptance input[type=checkbox] + span:after {
  display: block;
  position: absolute;
  content: '\2713';
  border-radius: 100%;
  height: 10px;
  width: 10px;
  top: 7px;
  left: 3px;
  visibility: hidden;
  font-size: 16px;
  color: #ffffff;
}

.form--light .form__group .wpcf7-acceptance input[type=checkbox] + span:after {
  color: #3c3c3b;
}

.form__group .wpcf7-acceptance input[type=checkbox]:checked + span:before {
  background: transparent;
}

.form__group .wpcf7-acceptance input[type=checkbox]:checked + span:after {
  visibility: visible;
}

.form__group .wpcf7-list-item {
  display: block;
  margin: 0 !important;
  position: relative;
}

.form__group .wpcf7-list-item-label {
  display: block;
  position: relative;
}

.form__group .wpcf7-list-item-label span {
  margin-left: 30px;
  display: inline-block;
  position: relative;
  top: 0;
  font-family: "Roboto", sans-serif;
  font-size: 1.4rem;
  font-weight: 400;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.71;
  letter-spacing: 0.49px;
  color: #ffffff;
}

.form--light .form__group .wpcf7-list-item-label span {
  color: #3c3c3b;
}

.form__group .wpcf7-validation-errors {
  padding: 8px !important;
  font-family: "Roboto", sans-serif;
  font-size: 1.4rem;
  font-weight: 400;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.2;
  letter-spacing: 0.49px;
  color: #ffffff;
}

.form__group .wpcf7 .wpcf7-not-valid-tip {
  font-family: "Roboto", sans-serif;
  font-size: 1.2rem;
  font-weight: 400;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.0;
  padding-top: 4px;
}

.form__input, .form__select, .form__textarea {
  border: 1px solid #f8f8f8;
  padding: 20px;
  font-family: "OldStandardTT", sans-serif;
  font-size: 2.0rem;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  letter-spacing: normal;
  color: #3c3c3b;
  width: 100%;
  background-color: #ffffff;
}

.form__input::-webkit-input-placeholder, .form__select::-webkit-input-placeholder, .form__textarea::-webkit-input-placeholder {
  opacity: 0.6;
}

.form__input:-ms-input-placeholder, .form__select:-ms-input-placeholder, .form__textarea:-ms-input-placeholder {
  opacity: 0.6;
}

.form__input::-ms-input-placeholder, .form__select::-ms-input-placeholder, .form__textarea::-ms-input-placeholder {
  opacity: 0.6;
}

.form__input::placeholder, .form__select::placeholder, .form__textarea::placeholder {
  opacity: 0.6;
}

.form__file {
  position: absolute;
  top: 0;
  left: 0;
  width: 225px;
  opacity: 0;
  cursor: pointer;
}

.form__file--return {
  margin: 0;
  font-style: italic;
  font-size: .9em;
  font-weight: bold;
}

.form__file--return:not(:empty) {
  margin: 1em 0;
}

.form__file--return:not(:empty):before {
  content: " ";
  font-style: normal;
  font-weight: normal;
}

.gallery__wrapper {
  background-color: #f8f8f8;
}

.gallery__wrapper--flexWrap {
  display: flex;
  flex-wrap: wrap;
}

.gallery__text {
  padding-top: 75px;
}

.gallery__text p {
  color: #3c3c3b;
}

.gallery__text h3 {
  color: #3c3c3b;
}

.gallery__text hr {
  border: 3px solid #bf931f;
}

.gallery__items {
  display: flex;
  flex-wrap: wrap;
  margin: -6px;
  padding: 50px 220px;
}

.gallery__item {
  padding: 6px;
  width: 33.33%;
  height: 194px;
}

.gallery__itemImage {
  width: 100%;
  height: 100%;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.image__wrapper img {
  width: 100%;
}

.imageTextHeader__wrapper {
  width: 100%;
  height: 618px;
  max-height: 100%;
  position: relative;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.imageTextHeader__wrapper--video {
  height: 675px;
}

.imageTextHeader__wrapper--small {
  height: 400px;
}

.imageTextHeader__text {
  padding: 40px;
  position: absolute;
  right: 30px;
  top: 30px;
}

.imageTextHeader__text--bottom {
  padding: 40px 40px 0 40px;
  top: unset;
  bottom: 0;
}

.imageTextHeader__text--bottom .imageTextHeader__bg {
  opacity: 1;
}

.imageTextHeader__text h1, .imageTextHeader__text h3, .imageTextHeader__text p {
  position: relative;
  z-index: 2;
}

.imageTextHeader__text h1 {
  color: #3c3c3b;
}

.imageTextHeader__text h3 {
  font-size: 3.2rem;
  line-height: 1.25;
  color: #3c3c3b;
}

.imageTextHeader__text p {
  color: #3c3c3b;
}

.imageTextHeader__text hr {
  border: 3px solid #bf931f;
}

.imageTextHeader__text a {
  font-family: "Roboto", sans-serif;
  font-size: 1.4rem;
  font-weight: 400;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.71;
  letter-spacing: 0.49px;
  color: #bf931f;
}

.imageTextHeader__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #ffffff;
  opacity: 0.75;
}

.investmentMap__wrapper {
  position: relative;
  background-color: #f8f8f8;
  padding: 100px 90px;
}

.investmentMap__text {
  display: block;
}

.investmentMap__text--mobile {
  display: none;
}

.investmentMap__map {
  padding-top: 25px;
}

.investmentMap__map--statusAvailable, .investmentMap__map--statusReserved, .investmentMap__map--statusSold {
  opacity: 0.7;
  cursor: pointer;
  position: relative;
}

.investmentMap__map--statusAvailable:hover, .investmentMap__map--statusReserved:hover, .investmentMap__map--statusSold:hover {
  opacity: 0.9;
}

.investmentMap__map--statusAvailable {
  fill: #5a5a5a;
}

.investmentMap__map--statusAvailable:hover {
  fill: #5a5a5a;
}

.investmentMap__map--statusReserved {
  fill: #bf931f;
}

.investmentMap__map--statusReserved:hover {
  fill: #bf931f;
}

.investmentMap__map--statusSold {
  fill: #e53838;
}

.investmentMap__map--statusSold:hover {
  fill: #e53838;
}

.investmentMap__tooltip {
  position: absolute;
  visibility: hidden;
  opacity: 0;
  transition: visibility 0.3s ease-in-out, opacity 0.3s ease-in-out;
  padding: 30px 25px;
  background-color: #ffffff;
  box-shadow: 0 15px 30px 0 rgba(0, 0, 0, 0.16);
  border-radius: 15px;
  min-width: 180px;
}

.investmentMap__tooltip.active {
  visibility: visible;
  opacity: 1;
}

.investmentMap__tooltip:before {
  content: '';
  width: 30px;
  height: 30px;
  background-color: #ffffff;
  position: absolute;
  top: 50%;
  left: -15px;
  transform: translateY(-50%) rotate(45deg);
}

.investmentMap__tooltip h3 {
  font-size: 2.4rem;
}

.investmentMap__tooltip h4 {
  font-size: 2.2rem;
}

.investmentMap__tooltip p {
  font-size: 1.4rem;
}

.investmentMap__tooltipButton {
  padding-top: 15px;
}

.investmentMap__mobileMap {
  display: none;
  padding-top: 25px;
}

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

.investmentMap__legend {
  display: flex;
  justify-content: center;
  margin-top: 16px;
}

.investmentMap__legendIcon {
  width: 19px;
  height: 19px;
  border-radius: 50%;
  margin-right: 10px;
}

.investmentMap__legendIcon--free {
  background-color: #3c3c3b;
}

.investmentMap__legendIcon--reserved {
  background-color: #bf931f;
}

.investmentMap__legendIcon--sold {
  background-color: #e53838;
}

.investmentMap__legendFree, .investmentMap__legendReserved, .investmentMap__legendSold {
  font-family: "Roboto", sans-serif;
  font-size: 1.4rem;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.36;
  letter-spacing: 0.49px;
  text-align: left;
  color: #3c3c3b;
  display: flex;
  align-items: center;
  padding: 0 25px;
}

.investmentMap__legendMobile {
  font-family: "Roboto", sans-serif;
  font-size: 1.4rem;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.36;
  letter-spacing: 0.49px;
  text-align: left;
  color: #3c3c3b;
  display: flex;
  align-items: center;
}

.investmentMap__legendMobile--colorFree {
  color: #3c3c3b;
}

.investmentMap__legendMobile--colorReserved {
  color: #bf931f;
}

.investmentMap__legendMobile--colorSold {
  color: #e53838;
}

.investmentMap__mobileMapItem {
  padding: 30px 25px;
  background-color: #ffffff;
  box-shadow: 0 15px 30px 0 rgba(0, 0, 0, 0.16);
  border-radius: 15px;
  margin: 16px 0;
}

.location__text p {
  color: #3c3c3b;
}

.location__text h3 {
  color: #3c3c3b;
}

.location__text h4 {
  color: #3c3c3b;
}

.location__text hr {
  border: 3px solid #bf931f;
}

.location__wrapper {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -8px;
  padding-top: 50px;
}

.location__mapWrapper {
  flex: 0 0 50%;
  max-width: 50%;
  padding: 0 8px;
}

.location__textsIconsWrapper {
  flex: 0 0 50%;
  max-width: 50%;
  padding: 0 8px;
}

.location__map {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
}

.location__textsIcons {
  background-color: #f8f8f8;
  padding: 60px 0 60px 40px;
}

.location__textIcon:not(:first-child) {
  padding-top: 50px;
}

.location__iconTextWrapper {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.location__iconTextInner {
  display: flex;
  align-items: center;
  padding: 10px 0;
  flex: 0 0 50%;
  max-width: 50%;
}

.location__icon {
  font-size: 2.4rem;
  color: #bf931f;
  padding-right: 15px;
}

.multigallery__wrapper {
  background-color: #f8f8f8;
  padding: 100px 90px;
}

.multigallery__tabsWrapper {
  position: relative;
}

.multigallery__tabs {
  padding-top: 50px;
  display: flex;
  justify-content: center;
}

.multigallery__tab {
  padding: 0 8px;
  text-align: center;
}

.multigallery__arrow {
  position: absolute;
  top: 70%;
  display: none;
  font-size: 2.2rem;
  color: #bf931f;
}

.multigallery__arrow--left {
  left: 0;
}

.multigallery__arrow--right {
  right: 0;
}

.multigallery__contents {
  padding-top: 40px;
}

.multigallery__gallery {
  display: flex;
  flex-wrap: wrap;
  margin: -8px;
}

.multigallery__imageWrapper {
  padding: 8px;
  width: 25%;
}

.multigallery__image {
  width: 100%;
  height: 195px;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.opinions__wrapper {
  padding: 50px 90px;
}

.opinions__text p {
  color: #3c3c3b;
}

.opinions__text h3 {
  color: #000000;
}

.opinions__text hr {
  border: 3px solid #bf931f;
}

.opinions__items {
  padding-top: 50px;
}

.opinions__textOpinion {
  font-family: "Roboto", sans-serif;
  font-size: 1.8rem;
  font-weight: 300;
  font-stretch: normal;
  font-style: italic;
  line-height: 1.56;
  letter-spacing: 0.63px;
  text-align: center;
  color: #3c3c3b;
  max-width: 426px;
  margin: 0 auto;
}

.opinions__author {
  font-family: "Roboto", sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.14;
  letter-spacing: 0.49px;
  text-align: center;
  color: #3c3c3b;
  padding-top: 43px;
}

.portfolio__wrapper {
  background-color: #f8f8f8;
  padding: 70px 90px;
}

.portfolio__text p {
  color: #3c3c3b;
}

.portfolio__text h3 {
  color: #3c3c3b;
}

.portfolio__text hr {
  border: 3px solid #bf931f;
}

.portfolio__items {
  display: flex;
  padding-top: 50px;
}

.portfolio__items .singlePost__title,
.portfolio__items .singlePost__title h3 {
  font-size: 2.2rem;
  font-weight: 700;
  padding-bottom: 20px;
}

.portfolio__items .singlePost__item {
  border: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.portfolio__items .singlePost__card,
.portfolio__items .singlePost__card h3 {
  background-color: transparent;
  text-align: center;
}

.portfolio__items .singlePost__createWrapper {
  top: 20px;
}

.scrollButtons {
  position: relative;
}

.scrollButtons__wrapper {
  display: flex;
  padding: 45px;
  border-radius: 15px;
  box-shadow: 0 15px 30px 0 rgba(0, 0, 0, 0.16);
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: -100px;
  background-color: #ffffff;
}

.scrollButtons__item {
  font-family: "Roboto", sans-serif;
  font-size: 1.2rem;
  font-weight: 500;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.33;
  letter-spacing: 1.2px;
  color: #3c3c3b;
  padding: 0 15px;
  display: block;
  white-space: nowrap;
}

.scrollButtons__item--desktop {
  display: block;
}

.scrollButtons__item--mobile {
  display: none;
}

.singlePost__gridWrapper {
  display: flex;
  flex-wrap: wrap;
}

.singlePost__gridItems {
  flex: 0 0 60%;
  max-width: 60%;
  padding-right: 50px;
  border-right: 1px solid rgba(60, 60, 59, 0.15);
}

.singlePost__gridWidget {
  flex: 0 0 40%;
  max-width: 40%;
  padding-left: 50px;
  border-left: 1px solid rgba(60, 60, 59, 0.15);
}

.singlePost__imageBg {
  width: 100%;
  height: 250px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  transition: transform 0.3s ease-in-out;
}

.singlePost__imageBg--logo {
  background-position: center;
  background-repeat: no-repeat;
  background-color: #f8f8f8;
  background-size: contain;
}

.singlePost__title,
.singlePost__title h1 {
  font-family: "OldStandardTT", sans-serif;
  font-size: 3.2rem;
  font-weight: 500;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.31;
  letter-spacing: normal;
  text-align: left;
  color: #3c3c3b;
  display: block;
}

.singlePost__categoryWrapper {
  display: flex;
  align-items: center;
  padding-top: 20px;
}

.singlePost__create, .singlePost__category {
  font-family: "Roboto", sans-serif;
  font-size: 1.4rem;
  font-weight: 400;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.71;
  letter-spacing: 0.49px;
}

.singlePost__create {
  color: #3c3c3b;
}

.singlePost__category {
  color: #bf931f;
  margin: 0 8px;
  border-bottom: 1px solid transparent;
  transition: border-bottom 0.3s ease-in-out;
}

.singlePost__category:hover {
  border-bottom: 1px solid #bf931f;
}

.singlePost__item {
  padding-bottom: 30px;
  margin-bottom: 25px;
  border-bottom: solid 1px rgba(60, 60, 59, 0.15);
}

.singlePost__item:hover .singlePost__imageBg {
  transform: scale(1.1);
}

.singlePost__listImage {
  position: relative;
  overflow: hidden;
}

.singlePost__createWrapper {
  position: absolute;
  width: 72px;
  height: 72px;
  top: 55px;
  right: 20px;
  background-color: #ffffff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.singlePost__createMonth {
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-size: 1.4rem;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.71;
  letter-spacing: 0.49px;
  color: #3c3c3b;
}

.singlePost__createDay {
  font-family: "OldStandardTT", sans-serif;
  font-size: 2.2rem;
  font-weight: 700;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.45;
  letter-spacing: normal;
  color: #3c3c3b;
}

.singlePost__card {
  background-color: #ffffff;
  padding: 30px 20px;
}

.singlePost__pagination {
  display: flex;
}

.singlePost__description {
  height: 19px;
  font-family: "Roboto", sans-serif;
  font-size: 1.4rem;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.36;
  letter-spacing: 0.49px;
  text-align: center;
  color: #3c3c3b;
  margin-top: -32px;
  padding-bottom: 54px;
}

.singlePost__paginationPrev {
  margin-right: auto;
}

.singlePost__paginationNext {
  margin-left: auto;
}

.singlePost__noResult {
  font-family: "OldStandardTT", sans-serif;
  font-size: 3.2rem;
  font-weight: 500;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.31;
  letter-spacing: normal;
  text-align: left;
  color: #3c3c3b;
  display: block;
}

.textField__text p {
  color: #3c3c3b;
}

.textField__text h3 {
  color: #3c3c3b;
}

.textField__text hr {
  border: 3px solid #bf931f;
}

.textForm__wrapper {
  background-color: #3c3c3b;
  padding: 100px 0;
}

.textForm__inner {
  max-width: 536px;
  margin: 0 auto;
}

.textForm__text p {
  color: #ffffff;
}

.textForm__text h3 {
  color: #ffffff;
}

.textForm__text hr {
  border: 2px solid #ffffff;
}

.textForm__form {
  max-width: 444px;
  margin: 0 auto;
  padding-top: 30px;
}

.textForm__form .form__input,
.textForm__form .form__textarea,
.textForm__form .form__select {
  color: #ffffff;
  background-color: transparent;
}

.textGalleryVideo__wrapper {
  display: flex;
  flex-wrap: wrap;
}

.textGalleryVideo__wrapper--reverse {
  flex-direction: row-reverse;
}

.textGalleryVideo__text {
  flex: 0 0 55%;
  max-width: 55%;
  padding-left: 0;
  padding-right: 108px;
}

.textGalleryVideo__wrapper--reverse .textGalleryVideo__text {
  padding-right: 0;
  padding-left: 108px;
}

.textGalleryVideo__galleryWrapper {
  flex: 0 0 45%;
  max-width: 45%;
}

.textGalleryVideo__text p {
  color: #3c3c3b;
}

.textGalleryVideo__text h3 {
  color: #3c3c3b;
}

.textGalleryVideo__text hr {
  border: 3px solid #bf931f;
}

.textGalleryVideo__main {
  height: 306px;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  margin-bottom: 16px;
  display: block;
}

.textGalleryVideo__items {
  display: flex;
  flex-wrap: wrap;
  margin: -6px;
}

.textGalleryVideo__item {
  padding: 6px;
  width: 33.33%;
  height: 140px;
}

.textGalleryVideo__itemImage {
  width: 100%;
  height: 100%;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.textNextToForm {
  border-top: 1px solid rgba(60, 60, 59, 0.3);
}

.textNextToForm__wrapper {
  display: flex;
  flex-wrap: wrap;
}

.textNextToForm__text {
  flex: 0 0 35%;
  max-width: 35%;
  padding-right: 100px;
}

.textNextToForm__text h1 {
  color: #3c3c3b;
}

.textNextToForm__text h3 {
  font-size: 3.6rem;
  font-weight: 700;
  line-height: 1.25;
  color: #3c3c3b;
}

.textNextToForm__text h3 + p {
  padding-top: 30px;
}

.textNextToForm__text p {
  color: #3c3c3b;
}

.textNextToForm__form {
  flex: 0 0 65%;
  max-width: 65%;
  background-color: #f8f8f8;
  padding: 40px;
}

.textNextToImage__wrapper {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.textNextToImage__wrapper--revers {
  flex-direction: row-reverse;
}

.textNextToImage__text, .textNextToImage__image {
  flex: 0 0 50%;
  max-width: 50%;
}

.textNextToImage__text {
  padding-right: 108px;
}

.textNextToImage__text a {
  color: #bf931f;
  font-weight: 700;
}

.textNextToImage__wrapper--revers .textNextToImage__text {
  padding-right: unset;
  padding-left: 108px;
}

.textNextToImage__image img {
  width: 100%;
  height: auto;
}

@media (max-width: 1366px) {
  .container .row.row-lgl-block {
    display: block;
  }
  .container .row .col-lgl-1 {
    margin-left: 0;
    width: 8.33333333%;
  }
  .container .row .col-lgl-2 {
    margin-left: 0;
    width: 16.66666667%;
  }
  .container .row .col-lgl-3 {
    margin-left: 0;
    width: 25%;
  }
  .container .row .col-lgl-4 {
    margin-left: 0;
    width: 33.33333333%;
  }
  .container .row .col-lgl-5 {
    margin-left: 0;
    width: 41.66666667%;
  }
  .container .row .col-lgl-6 {
    margin-left: 0;
    width: 50%;
  }
  .container .row .col-lgl-7 {
    margin-left: 0;
    width: 58.33333333%;
  }
  .container .row .col-lgl-8 {
    margin-left: 0;
    width: 66.66666667%;
  }
  .container .row .col-lgl-9 {
    margin-left: 0;
    width: 75%;
  }
  .container .row .col-lgl-10 {
    margin-left: 0;
    width: 83.33333333%;
  }
  .container .row .col-lgl-11 {
    margin-left: 0;
    width: 91.66666667%;
  }
  .container .row .col-lgl-12 {
    margin-left: 0;
    width: 100%;
  }
  .container .row .offset-col-lgl-1 {
    margin-left: 8.33333333%;
  }
  .container .row .offset-col-lgl-2 {
    margin-left: 16.66666667%;
  }
  .container .row .offset-col-lgl-3 {
    margin-left: 25%;
  }
  .container .row .offset-col-lgl-4 {
    margin-left: 33.33333333%;
  }
  .container .row .offset-col-lgl-5 {
    margin-left: 41.66666667%;
  }
  .container .row .offset-col-lgl-6 {
    margin-left: 50%;
  }
  .container .row .offset-col-lgl-7 {
    margin-left: 58.33333333%;
  }
  .container .row .offset-col-lgl-8 {
    margin-left: 66.66666667%;
  }
  .container .row .offset-col-lgl-9 {
    margin-left: 75%;
  }
  .container .row .offset-col-lgl-10 {
    margin-left: 83.33333333%;
  }
  .container .row .offset-col-lgl-11 {
    margin-left: 91.66666667%;
  }
  .container .row .offset-col-lgl-12 {
    margin-left: 100%;
  }
  .assets__inner {
    padding: 34px 15px;
  }
}

@media (max-width: 1280px) {
  .container--small {
    padding-left: 20px;
    padding-right: 20px;
  }
  .container .row.row-lg-block {
    display: block;
  }
  .container .row .col-lg-1 {
    margin-left: 0;
    width: 8.33333333%;
  }
  .container .row .col-lg-2 {
    margin-left: 0;
    width: 16.66666667%;
  }
  .container .row .col-lg-3 {
    margin-left: 0;
    width: 25%;
  }
  .container .row .col-lg-4 {
    margin-left: 0;
    width: 33.33333333%;
  }
  .container .row .col-lg-5 {
    margin-left: 0;
    width: 41.66666667%;
  }
  .container .row .col-lg-6 {
    margin-left: 0;
    width: 50%;
  }
  .container .row .col-lg-7 {
    margin-left: 0;
    width: 58.33333333%;
  }
  .container .row .col-lg-8 {
    margin-left: 0;
    width: 66.66666667%;
  }
  .container .row .col-lg-9 {
    margin-left: 0;
    width: 75%;
  }
  .container .row .col-lg-10 {
    margin-left: 0;
    width: 83.33333333%;
  }
  .container .row .col-lg-11 {
    margin-left: 0;
    width: 91.66666667%;
  }
  .container .row .col-lg-12 {
    margin-left: 0;
    width: 100%;
  }
  .container .row .offset-col-lg-1 {
    margin-left: 8.33333333%;
  }
  .container .row .offset-col-lg-2 {
    margin-left: 16.66666667%;
  }
  .container .row .offset-col-lg-3 {
    margin-left: 25%;
  }
  .container .row .offset-col-lg-4 {
    margin-left: 33.33333333%;
  }
  .container .row .offset-col-lg-5 {
    margin-left: 41.66666667%;
  }
  .container .row .offset-col-lg-6 {
    margin-left: 50%;
  }
  .container .row .offset-col-lg-7 {
    margin-left: 58.33333333%;
  }
  .container .row .offset-col-lg-8 {
    margin-left: 66.66666667%;
  }
  .container .row .offset-col-lg-9 {
    margin-left: 75%;
  }
  .container .row .offset-col-lg-10 {
    margin-left: 83.33333333%;
  }
  .container .row .offset-col-lg-11 {
    margin-left: 91.66666667%;
  }
  .container .row .offset-col-lg-12 {
    margin-left: 100%;
  }
  .nav__menu {
    margin-left: 25px;
  }
  .nav__button {
    display: none;
  }
  .calculator__wrapper {
    padding: 55px 35px;
  }
  .calculator__left {
    padding-right: 50px;
  }
  .calculator__right {
    padding-left: 50px;
  }
  .gallery__items {
    padding: 25px 55px;
  }
  .textGalleryVideo__text {
    padding-right: 58px;
  }
  .textGalleryVideo__wrapper--reverse .textGalleryVideo__text {
    padding-left: 58px;
  }
  .textNextToImage__text {
    padding-right: 54px;
  }
  .textNextToImage__wrapper--revers .textNextToImage__text {
    padding-left: 54px;
  }
}

@media (max-width: 1024px) {
  .container {
    width: 100%;
    max-width: 100%;
    padding-left: 20px;
    padding-right: 20px;
  }
  .container .row.row-mdl-block {
    display: block;
  }
  .container .row .col-mdl-1 {
    margin-left: 0;
    width: 8.33333333%;
  }
  .container .row .col-mdl-2 {
    margin-left: 0;
    width: 16.66666667%;
  }
  .container .row .col-mdl-3 {
    margin-left: 0;
    width: 25%;
  }
  .container .row .col-mdl-4 {
    margin-left: 0;
    width: 33.33333333%;
  }
  .container .row .col-mdl-5 {
    margin-left: 0;
    width: 41.66666667%;
  }
  .container .row .col-mdl-6 {
    margin-left: 0;
    width: 50%;
  }
  .container .row .col-mdl-7 {
    margin-left: 0;
    width: 58.33333333%;
  }
  .container .row .col-mdl-8 {
    margin-left: 0;
    width: 66.66666667%;
  }
  .container .row .col-mdl-9 {
    margin-left: 0;
    width: 75%;
  }
  .container .row .col-mdl-10 {
    margin-left: 0;
    width: 83.33333333%;
  }
  .container .row .col-mdl-11 {
    margin-left: 0;
    width: 91.66666667%;
  }
  .container .row .col-mdl-12 {
    margin-left: 0;
    width: 100%;
  }
  .container .row .offset-col-mdl-1 {
    margin-left: 8.33333333%;
  }
  .container .row .offset-col-mdl-2 {
    margin-left: 16.66666667%;
  }
  .container .row .offset-col-mdl-3 {
    margin-left: 25%;
  }
  .container .row .offset-col-mdl-4 {
    margin-left: 33.33333333%;
  }
  .container .row .offset-col-mdl-5 {
    margin-left: 41.66666667%;
  }
  .container .row .offset-col-mdl-6 {
    margin-left: 50%;
  }
  .container .row .offset-col-mdl-7 {
    margin-left: 58.33333333%;
  }
  .container .row .offset-col-mdl-8 {
    margin-left: 66.66666667%;
  }
  .container .row .offset-col-mdl-9 {
    margin-left: 75%;
  }
  .container .row .offset-col-mdl-10 {
    margin-left: 83.33333333%;
  }
  .container .row .offset-col-mdl-11 {
    margin-left: 91.66666667%;
  }
  .container .row .offset-col-mdl-12 {
    margin-left: 100%;
  }
  .footer__item--25 {
    flex: 0 0 33.33%;
    max-width: 33.33%;
  }
  .footer__item--50 {
    flex: 0 0 33.33%;
    max-width: 33.33%;
  }
  .footer__item--100 {
    flex: 0 0 33.33%;
    max-width: 33.33%;
  }
  .header {
    height: 70px;
  }
  .header__wrapper {
    height: 70px;
  }
  .nav__menu {
    flex-direction: column;
    text-align: center;
    position: absolute;
    background-color: #ffffff;
    width: 100%;
    height: calc(100vh - 70px);
    margin: 0;
    top: 70px;
    left: 0;
    overflow: auto;
    visibility: hidden;
    transform: translateX(100%);
    transition: transform 0.4s ease-in-out, visibility 0.5s ease-in-out;
  }
  .menu__open .nav__menu {
    visibility: visible;
    transform: translateX(0);
  }
  .nav__menu--itemMobile {
    padding: 15px 0;
    display: block;
  }
  .nav__menuItem.active > .nav__menuItemChildren {
    visibility: visible;
    max-height: 500px;
    opacity: 1;
    transition: visibility 0.3s ease-out, opacity 0.3s ease-out, max-height 0.3s ease-out;
    transform: translateY(0);
  }
  .nav__menuItem.active .nav__arrow {
    transition: transform 0.3s ease-out;
    transform: rotate(180deg);
  }
  .nav__menuItemChildren {
    transition: visibility 0.3s ease-in, opacity 0.3s ease-in, max-height 0.3s ease-in;
    padding: 0 5px;
    opacity: 0;
    visibility: hidden;
    max-height: 0;
    position: relative;
    margin: 0 auto;
  }
  .nav__menuItemChildren .nav__menuItem {
    padding: 0;
  }
  .nav__menuToggle {
    display: block;
  }
  .assets__item {
    flex: 0 0 100%;
    max-width: 100%;
    justify-content: center;
    padding: 8px 0;
  }
  .contactUsWorker__title {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .contactUsWorker__infoWrapper {
    flex: 0 0 100%;
    max-width: 100%;
    padding-top: 24px;
  }
  .location__mapWrapper {
    flex: 0 0 66.66%;
    max-width: 66.66%;
  }
  .location__textsIconsWrapper {
    flex: 0 0 33.33%;
    max-width: 33.33%;
  }
  .location__textsIcons {
    padding: 30px 0 30px 15px;
  }
  .location__iconTextInner {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .multigallery__wrapper {
    padding: 50px 45px;
  }
  .multigallery__arrow {
    display: block;
  }
  .multigallery__imageWrapper {
    width: 33.33%;
  }
  .scrollButtons__wrapper {
    flex-wrap: wrap;
    justify-content: center;
    width: 80%;
    top: -175px;
    padding: 0;
  }
  .scrollButtons__item {
    width: 100%;
    padding: 15px;
    text-align: center;
  }
  .textGalleryVideo__item {
    height: 180px;
  }
}

@media (max-width: 768px) {
  .button__secondary {
    padding: 10px 25px;
  }
  .container .row.row-md-block {
    display: block;
  }
  .container .row .col-md-1 {
    margin-left: 0;
    width: 8.33333333%;
  }
  .container .row .col-md-2 {
    margin-left: 0;
    width: 16.66666667%;
  }
  .container .row .col-md-3 {
    margin-left: 0;
    width: 25%;
  }
  .container .row .col-md-4 {
    margin-left: 0;
    width: 33.33333333%;
  }
  .container .row .col-md-5 {
    margin-left: 0;
    width: 41.66666667%;
  }
  .container .row .col-md-6 {
    margin-left: 0;
    width: 50%;
  }
  .container .row .col-md-7 {
    margin-left: 0;
    width: 58.33333333%;
  }
  .container .row .col-md-8 {
    margin-left: 0;
    width: 66.66666667%;
  }
  .container .row .col-md-9 {
    margin-left: 0;
    width: 75%;
  }
  .container .row .col-md-10 {
    margin-left: 0;
    width: 83.33333333%;
  }
  .container .row .col-md-11 {
    margin-left: 0;
    width: 91.66666667%;
  }
  .container .row .col-md-12 {
    margin-left: 0;
    width: 100%;
  }
  .container .row .offset-col-md-1 {
    margin-left: 8.33333333%;
  }
  .container .row .offset-col-md-2 {
    margin-left: 16.66666667%;
  }
  .container .row .offset-col-md-3 {
    margin-left: 25%;
  }
  .container .row .offset-col-md-4 {
    margin-left: 33.33333333%;
  }
  .container .row .offset-col-md-5 {
    margin-left: 41.66666667%;
  }
  .container .row .offset-col-md-6 {
    margin-left: 50%;
  }
  .container .row .offset-col-md-7 {
    margin-left: 58.33333333%;
  }
  .container .row .offset-col-md-8 {
    margin-left: 66.66666667%;
  }
  .container .row .offset-col-md-9 {
    margin-left: 75%;
  }
  .container .row .offset-col-md-10 {
    margin-left: 83.33333333%;
  }
  .container .row .offset-col-md-11 {
    margin-left: 91.66666667%;
  }
  .container .row .offset-col-md-12 {
    margin-left: 100%;
  }
  .footer {
    padding: 25px 0;
  }
  .footer__item--25 {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .footer__item--50 {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .footer__item--100 {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .sliderCarousel__arrow--left {
    left: -10%;
  }
  .sliderCarousel__arrow--right {
    right: -10%;
  }
  h1 {
    font-size: 4.2rem;
  }
  h3 {
    font-size: 4.2rem;
  }
  h4 {
    font-size: 2.8rem;
  }
  .section--big {
    padding: 25px 0;
  }
  .videoSection__video {
    height: 100vh;
  }
  .assets__itemTextBottom {
    font-size: 3.2rem;
  }
  .blog__wrapper {
    padding: 35px 45px;
  }
  .blog__buttons {
    padding-top: 35px;
  }
  .calculator__wrapper {
    padding: 26px 17px;
  }
  .calculator__left, .calculator__right {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .calculator__left {
    padding-right: 0;
    border-right: none;
  }
  .calculator__right {
    padding-top: 16px;
    padding-left: 0;
    border-left: none;
  }
  .contactUsAddresses__item {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .contactUsFunding__wrapper {
    padding: 50px 25px;
  }
  .contactUsFunding__workers {
    padding: 40px 0 25px 0;
  }
  .contactUsFunding__worker {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .form__row {
    margin: 0;
  }
  .form__col6 {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .form__group .wpcf7-list-item-label span {
    margin: 0 0 16px 30px;
  }
  .gallery__items {
    padding: 15px 25px;
  }
  .gallery__item {
    width: 50%;
  }
  .imageTextHeader__wrapper--video {
    height: 675px;
  }
  .imageTextHeader__wrapper {
    height: calc(100vh - 80px);
  }
  .imageTextHeader--small .imageTextHeader__wrapper {
    height: 100%;
    min-height: 120px;
  }
  .imageTextHeader__text--bottom {
    padding: 24px 24px;
  }
  .imageTextHeader__text--bottom .imageTextHeader__bg {
    opacity: 0.75;
  }
  .imageTextHeader__text {
    right: 15px;
  }
  .investmentMap__wrapper {
    padding: 50px 30px;
  }
  .investmentMap__text {
    display: none;
  }
  .investmentMap__text--mobile {
    display: block;
  }
  .investmentMap__map {
    display: none;
  }
  .investmentMap__mobileMap {
    display: block;
  }
  .investmentMap__mobileMap h3 {
    font-size: 2.4rem;
  }
  .investmentMap__mobileMap h4 {
    font-size: 2.2rem;
  }
  .investmentMap__mobileMap p {
    font-size: 1.4rem;
  }
  .investmentMap__legend {
    display: none;
  }
  .location__mapWrapper {
    flex: 0 0 100%;
    max-width: 100%;
    height: 536px;
  }
  .location__textsIconsWrapper {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .location__iconTextInner {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .multigallery__imageWrapper {
    width: 50%;
  }
  .opinions__wrapper {
    padding: 35px 45px;
  }
  .portfolio__wrapper {
    padding: 35px 45px;
  }
  .scrollButtons__wrapper {
    top: -220px;
  }
  .scrollButtons__item--desktop {
    display: none;
  }
  .scrollButtons__item--mobile {
    display: block;
  }
  .singlePost__gridItems {
    flex: 0 0 100%;
    max-width: 100%;
    padding-right: 0;
    border-right: none;
  }
  .singlePost__gridWidget {
    flex: 0 0 100%;
    max-width: 100%;
    padding-left: 0;
    border-left: none;
    padding-top: 25px;
  }
  .textField__text {
    padding: 0 16px;
  }
  .textGalleryVideo__text {
    padding-right: 0;
    flex: 0 0 100%;
    max-width: 100%;
  }
  .textGalleryVideo__wrapper--reverse .textGalleryVideo__text {
    padding-left: 0;
  }
  .textGalleryVideo__galleryWrapper {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .textGalleryVideo__main {
    margin-top: 16px;
  }
  .textGalleryVideo__item {
    width: 50%;
  }
  .textNextToForm__text {
    flex: 0 0 100%;
    max-width: 100%;
    padding-right: 0;
    padding-bottom: 16px;
  }
  .textNextToForm__form {
    flex: 0 0 100%;
    max-width: 100%;
    padding: 8px 16px;
  }
  .textNextToImage__text, .textNextToImage__image {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .textNextToImage__text {
    padding-right: 0;
  }
  .textNextToImage__wrapper--revers .textNextToImage__text {
    padding-left: 0;
  }
  .textNextToImage__image {
    text-align: center;
    padding-top: 24px;
  }
  .textNextToImage__image img {
    max-height: 549px;
    margin: 0 auto;
  }
}

@media (max-width: 600px) {
  .container .row.row-mds-block {
    display: block;
  }
  .container .row .col-mds-1 {
    margin-left: 0;
    width: 8.33333333%;
  }
  .container .row .col-mds-2 {
    margin-left: 0;
    width: 16.66666667%;
  }
  .container .row .col-mds-3 {
    margin-left: 0;
    width: 25%;
  }
  .container .row .col-mds-4 {
    margin-left: 0;
    width: 33.33333333%;
  }
  .container .row .col-mds-5 {
    margin-left: 0;
    width: 41.66666667%;
  }
  .container .row .col-mds-6 {
    margin-left: 0;
    width: 50%;
  }
  .container .row .col-mds-7 {
    margin-left: 0;
    width: 58.33333333%;
  }
  .container .row .col-mds-8 {
    margin-left: 0;
    width: 66.66666667%;
  }
  .container .row .col-mds-9 {
    margin-left: 0;
    width: 75%;
  }
  .container .row .col-mds-10 {
    margin-left: 0;
    width: 83.33333333%;
  }
  .container .row .col-mds-11 {
    margin-left: 0;
    width: 91.66666667%;
  }
  .container .row .col-mds-12 {
    margin-left: 0;
    width: 100%;
  }
  .container .row .offset-col-mds-1 {
    margin-left: 8.33333333%;
  }
  .container .row .offset-col-mds-2 {
    margin-left: 16.66666667%;
  }
  .container .row .offset-col-mds-3 {
    margin-left: 25%;
  }
  .container .row .offset-col-mds-4 {
    margin-left: 33.33333333%;
  }
  .container .row .offset-col-mds-5 {
    margin-left: 41.66666667%;
  }
  .container .row .offset-col-mds-6 {
    margin-left: 50%;
  }
  .container .row .offset-col-mds-7 {
    margin-left: 58.33333333%;
  }
  .container .row .offset-col-mds-8 {
    margin-left: 66.66666667%;
  }
  .container .row .offset-col-mds-9 {
    margin-left: 75%;
  }
  .container .row .offset-col-mds-10 {
    margin-left: 83.33333333%;
  }
  .container .row .offset-col-mds-11 {
    margin-left: 91.66666667%;
  }
  .container .row .offset-col-mds-12 {
    margin-left: 100%;
  }
}

@media (max-width: 480px) {
  .container .row.row-sml-block {
    display: block;
  }
  .container .row .col-sml-1 {
    margin-left: 0;
    width: 8.33333333%;
  }
  .container .row .col-sml-2 {
    margin-left: 0;
    width: 16.66666667%;
  }
  .container .row .col-sml-3 {
    margin-left: 0;
    width: 25%;
  }
  .container .row .col-sml-4 {
    margin-left: 0;
    width: 33.33333333%;
  }
  .container .row .col-sml-5 {
    margin-left: 0;
    width: 41.66666667%;
  }
  .container .row .col-sml-6 {
    margin-left: 0;
    width: 50%;
  }
  .container .row .col-sml-7 {
    margin-left: 0;
    width: 58.33333333%;
  }
  .container .row .col-sml-8 {
    margin-left: 0;
    width: 66.66666667%;
  }
  .container .row .col-sml-9 {
    margin-left: 0;
    width: 75%;
  }
  .container .row .col-sml-10 {
    margin-left: 0;
    width: 83.33333333%;
  }
  .container .row .col-sml-11 {
    margin-left: 0;
    width: 91.66666667%;
  }
  .container .row .col-sml-12 {
    margin-left: 0;
    width: 100%;
  }
  .container .row .offset-col-sml-1 {
    margin-left: 8.33333333%;
  }
  .container .row .offset-col-sml-2 {
    margin-left: 16.66666667%;
  }
  .container .row .offset-col-sml-3 {
    margin-left: 25%;
  }
  .container .row .offset-col-sml-4 {
    margin-left: 33.33333333%;
  }
  .container .row .offset-col-sml-5 {
    margin-left: 41.66666667%;
  }
  .container .row .offset-col-sml-6 {
    margin-left: 50%;
  }
  .container .row .offset-col-sml-7 {
    margin-left: 58.33333333%;
  }
  .container .row .offset-col-sml-8 {
    margin-left: 66.66666667%;
  }
  .container .row .offset-col-sml-9 {
    margin-left: 75%;
  }
  .container .row .offset-col-sml-10 {
    margin-left: 83.33333333%;
  }
  .container .row .offset-col-sml-11 {
    margin-left: 91.66666667%;
  }
  .container .row .offset-col-sml-12 {
    margin-left: 100%;
  }
  h1 {
    font-size: 3.2rem;
  }
  h3 {
    font-size: 3.2rem;
  }
  h4 {
    font-size: 2.2rem;
  }
  .videoSection__play {
    width: 60px;
    height: 60px;
  }
  .videoSection__play:after {
    line-height: 60px;
  }
  .assets__itemTextBottom {
    font-size: 2.8rem;
  }
  .blog__wrapper {
    padding: 15px 25px;
  }
  .blog__buttons {
    padding-top: 15px;
  }
  .contactUsAddresses__item {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .contactUsFunding__wrapper {
    padding: 25px 16px;
  }
  .contactUsWorker__title {
    padding-right: 0;
  }
  .contactUsWorker__infoWrapper {
    justify-content: center;
  }
  .contactUsWorker__text {
    padding-left: 0;
    padding-top: 16px;
    width: 100%;
    text-align: center;
  }
  .contactUsWorker__qrCode {
    margin-left: unset;
    margin-top: 16px;
  }
  .gallery__text {
    padding-top: 25px;
  }
  .gallery__item {
    width: 100%;
  }
  .imageTextHeader__text {
    right: 0;
    left: 0;
  }
  .location__iconTextInner {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .multigallery__wrapper {
    padding: 25px 22px;
  }
  .multigallery__imageWrapper {
    width: 100%;
  }
  .opinions__wrapper {
    padding: 15px 25px;
  }
  .portfolio__wrapper {
    padding: 15px 25px;
  }
}

@media screen and (max-height: 420px) {
  .goverlay {
    background: #000;
  }
}

@media (max-width: 360px) {
  .container .row.row-sm-block {
    display: block;
  }
  .container .row .col-sm-1 {
    margin-left: 0;
    width: 8.33333333%;
  }
  .container .row .col-sm-2 {
    margin-left: 0;
    width: 16.66666667%;
  }
  .container .row .col-sm-3 {
    margin-left: 0;
    width: 25%;
  }
  .container .row .col-sm-4 {
    margin-left: 0;
    width: 33.33333333%;
  }
  .container .row .col-sm-5 {
    margin-left: 0;
    width: 41.66666667%;
  }
  .container .row .col-sm-6 {
    margin-left: 0;
    width: 50%;
  }
  .container .row .col-sm-7 {
    margin-left: 0;
    width: 58.33333333%;
  }
  .container .row .col-sm-8 {
    margin-left: 0;
    width: 66.66666667%;
  }
  .container .row .col-sm-9 {
    margin-left: 0;
    width: 75%;
  }
  .container .row .col-sm-10 {
    margin-left: 0;
    width: 83.33333333%;
  }
  .container .row .col-sm-11 {
    margin-left: 0;
    width: 91.66666667%;
  }
  .container .row .col-sm-12 {
    margin-left: 0;
    width: 100%;
  }
  .container .row .offset-col-sm-1 {
    margin-left: 8.33333333%;
  }
  .container .row .offset-col-sm-2 {
    margin-left: 16.66666667%;
  }
  .container .row .offset-col-sm-3 {
    margin-left: 25%;
  }
  .container .row .offset-col-sm-4 {
    margin-left: 33.33333333%;
  }
  .container .row .offset-col-sm-5 {
    margin-left: 41.66666667%;
  }
  .container .row .offset-col-sm-6 {
    margin-left: 50%;
  }
  .container .row .offset-col-sm-7 {
    margin-left: 58.33333333%;
  }
  .container .row .offset-col-sm-8 {
    margin-left: 66.66666667%;
  }
  .container .row .offset-col-sm-9 {
    margin-left: 75%;
  }
  .container .row .offset-col-sm-10 {
    margin-left: 83.33333333%;
  }
  .container .row .offset-col-sm-11 {
    margin-left: 91.66666667%;
  }
  .container .row .offset-col-sm-12 {
    margin-left: 100%;
  }
  .gallery__items {
    padding: 15px 0;
  }
}

@media (min-width: 769px) {
  .glightbox-container .ginner-container {
    width: auto;
    height: auto;
    flex-direction: row;
  }
  .glightbox-container .ginner-container.desc-top .gslide-description {
    order: 0;
  }
  .glightbox-container .ginner-container.desc-top .gslide-image, .glightbox-container .ginner-container.desc-top .gslide-image img {
    order: 1;
  }
  .glightbox-container .ginner-container.desc-left .gslide-description {
    order: 0;
  }
  .glightbox-container .ginner-container.desc-left .gslide-image {
    order: 1;
  }
  .gslide-image img {
    max-height: 97vh;
    max-width: calc(100% - 20px);
    max-width: 100%;
  }
  .gslide-image img.zoomable {
    cursor: zoom-in;
  }
  .zoomed .gslide-image img.zoomable {
    cursor: -webkit-grab;
    cursor: grab;
  }
  .gslide-inline {
    max-height: 95vh;
  }
  .gslide-external {
    max-height: 95vh;
  }
  .gslide-description.description-left, .gslide-description.description-right {
    max-width: 275px;
  }
  .glightbox-open {
    height: auto;
  }
  .goverlay {
    background: rgba(0, 0, 0, 0.92);
  }
  .glightbox-clean .gslide-media, .glightbox-modern .gslide-media {
    box-shadow: 1px 2px 9px 0 rgba(0, 0, 0, 0.65);
  }
  .glightbox-clean .gprev, .glightbox-modern .gprev {
    top: 45%;
  }
  .glightbox-clean .gnext, .glightbox-modern .gnext {
    top: 45%;
  }
}

@media (min-width: 992px) {
  .glightbox-clean .gclose, .glightbox-modern .gclose {
    right: 20px;
  }
}

@media (min-width: 1025px) {
  .nav__menuItem:hover > .nav__menuItemChildren {
    visibility: visible;
    opacity: 1;
    transition: transform 0.3s ease-out, visibility 0.3s ease-out, opacity 0.3s ease-out;
    transform: translateY(0);
  }
  .nav__menuItemChildren {
    visibility: hidden;
    opacity: 0;
    transform: translateY(25px);
    transition: transform 0.3s ease-in, visibility 0.3s ease-in, opacity 0.3s ease-in;
  }
}

/*# sourceMappingURL=data:application/json;charset=utf-8;base64,eyJ2ZXJzaW9uIjozLCJzb3VyY2VzIjpbXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IiIsImZpbGUiOiJwdWJsaWMvYnVpbGQvY3NzL3N0eWxlcy5jc3MiLCJzb3VyY2VSb290IjoiIn0=*/