@charset "UTF-8";
/** _variables.scss **/ /** _base.scss **/
@import url("https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;700&display=swap");
body {
  background: #fff;
  font-family: "DM Sans", sans-serif;
  color: #505050;
  font-size: 16px;
  margin: 0;
  padding: 0;
}

p {
  margin: 0;
  padding: 0;
}
p.quote {
  font-size: 2em;
  color: #111;
  line-height: 1.75em;
}
p strong {
  font-weight: 500;
}
p strong a {
  font-weight: 500 !important;
}
p a:not(.button-alt) {
  cursor: pointer;
  color: #111;
  text-decoration: none;
  border-bottom: 1px solid #111;
  -webkit-transition: border 0.25s ease;
  -moz-transition: border 0.25s ease;
  -o-transition: border 0.25s ease;
}
p a:not(.button-alt):hover {
  border-bottom: 1px solid transparent;
}

a {
  color: #caa76a;
  font-weight: 400;
}

small {
  font-size: 0.88em;
}

strong {
  color: #111;
  font-weight: 700;
}

address a {
  color: #111;
}

a.button {
  cursor: pointer;
  position: relative;
  top: 0;
  display: inline-block;
  background: #caa76a;
  font-weight: 500;
  color: #fff;
  font-size: 0.95em;
  letter-spacing: 0.015em;
  text-decoration: none;
  padding: 12px 24px;
  -webkit-transition: top ease 0.25s;
  transition: top ease 0.25s;
  border-radius: 2px;
}
a.button:hover {
  top: -5px;
}

a.button-alt {
  cursor: pointer;
  border-radius: 2px;
  color: #111;
  display: inline-block;
  font-weight: 500;
  text-transform: uppercase;
  font-size: 15px;
  text-align: center;
  padding: 20px 30px;
  text-decoration: none;
  border: 1px solid #111;
  -webkit-transition:
    background 0.25s ease,
    border 0.25s ease;
  -moz-transition:
    background 0.25s ease,
    border 0.25s ease;
  -o-transition:
    background 0.25s ease,
    border 0.25s ease;
}
a.button-alt:hover {
  text-decoration: underline;
}

textarea,
select,
input,
button {
  outline: none;
}

h1 {
  color: #111;
  font-size: 3.66em;
  font-weight: 400;
}
h1.withsub {
  margin-bottom: 30px !important;
}
h1.line {
  margin-bottom: 5rem !important;
}
h1.line:after {
  content: "";
  position: absolute;
  left: calc(50% - 25px);
  display: inline-block;
  width: 100%;
  border-bottom: 3px solid #caa76a;
  margin-top: 110px;
  width: 50px;
}

h2 {
  color: #111;
  font-size: 3em;
  line-height: 1.25em;
  font-weight: 400;
}
h2.withsub {
  margin-bottom: 30px !important;
}
h2.line {
  margin-bottom: 5rem !important;
}
h2.line:after {
  content: "";
  position: absolute;
  left: calc(50% - 25px);
  display: inline-block;
  width: 100%;
  border-bottom: 3px solid #caa76a;
  margin-top: 90px;
  width: 50px;
}

h3 {
  color: #111;
  font-size: 2em;
  font-weight: 500;
}

h4 {
  color: #111;
  font-size: 1.5em;
  font-weight: 500;
}

p.subhead {
  line-height: 2em;
}

.text-center {
  text-align: center;
}

.breadcrumb {
  list-style-type: none;
  margin: 0;
  padding: 0;
  display: inline-block;
  width: 100%;
  text-align: center;
  margin-bottom: 30px;
}
.breadcrumb li {
  display: inline-block;
}
.breadcrumb li a {
  font-size: 0.88em;
  color: #777;
  text-decoration: none;
  border-bottom: 1px solid transparent;
}
.breadcrumb li a:hover {
  border-bottom: 1px solid #777;
}
.breadcrumb li.home a {
  font-size: 1.15em;
  position: relative;
  top: 1px;
}
.breadcrumb li.home a:hover {
  border-bottom: 1px solid transparent;
}
.breadcrumb li.home:before {
  content: "";
}
.breadcrumb li:before {
  color: #777;
  font-size: 10px;
  padding: 0 15px;
  font-family: "Font Awesome 5 Pro";
  font-weight: 300;
  content: "\f054";
}
@media only screen and (max-width: 768px) {
  .breadcrumb {
    display: none;
  }
}

section {
  overflow: hidden;
  padding: 5rem 0;
}
section h1,
section h2,
section h3 {
  margin: 0;
  margin-bottom: 4rem;
}

@media only screen and (max-width: 544px) {
  h1 {
    font-size: 2em;
    line-height: 1.5em;
  }
}
/** _header.scss **/
header {
  position: fixed;
  z-index: 9;
  background: transparent;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  height: 110px;
  width: 100%;
  padding: 10px 50px;
  top: 0;
}
header a.logo {
  position: absolute;
  top: 10px;
  left: 50%;
  -webkit-transform: translate(-50%);
  transform: translate(-50%);
  display: block;
  height: 90px;
  width: 260px;
  background: url("../img/bpv-logo.svg") no-repeat left center;
  background-size: 100% auto;
}
header a.menu {
  display: none;
}
header a.search {
  display: none;
}
header a.right {
  float: right;
  margin: 22px 0 22px 40px;
  padding: 12px 18px;
}
header ul {
  height: 90px;
  line-height: 90px;
  list-style: none;
  margin: 0;
  padding: 0;
}
header ul li {
  float: left;
}
header ul li a {
  color: #111;
  font-weight: 500;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.033em;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  -webkit-transition: border 0.25s ease;
  -moz-transition: border 0.25s ease;
  -o-transition: border 0.25s ease;
}
header ul li ul {
  display: none;
  background: #caa76a;
  border-radius: 2px;
  height: auto;
  margin-top: -10px;
  padding: 10px 0;
}
header ul li ul li {
  margin: 0 !important;
  height: 40px;
  line-height: 40px;
  display: block;
  width: 100%;
  text-align: center !important;
}
header ul li ul li a {
  white-space: pre;
  color: #fff;
}
header ul li ul li a:hover {
  border-color: #fff;
}
/* header ul li ul:after {
  right: 50%;
  top: -4px;
  border: solid transparent;
  content: " ";
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none;
  border-color: transparent;
  border-bottom-color: #CAA76A;
  border-width: 5px;
  margin-top: -5px;
} */
header ul li.home i.fal {
  font-size: 18px;
  position: relative;
  top: 2px;
}
header ul li.dropdown {
  position: relative;
}
header ul li.dropdown a:hover {
  border-bottom: none;
}
header ul li.dropdown:before {
  position: relative;
  top: 0px;
  margin-left: 10px;
  float: right;
  color: #caa76a;
  font-size: 12px;
  font-family: "Font Awesome 5 Pro";
  content: "\f078";
}
header ul li:hover ul {
  display: block;
  width: auto;
  min-width: 150px !important;
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  padding: 10px 20px;
}
header ul li.button a {
  background: #caa76a;
  color: #fff;
  border-radius: 2px;
  border: 1px solid #fff;
  padding: 11px 12px 10px 12px;
  -webkit-transition: background 0.25s ease;
  -moz-transition: background 0.25s ease;
  -o-transition: background 0.25s ease;
}
header ul li.button a:hover {
  background: transparent !important;
  color: #caa76a !important;
  border-color: #caa76a !important;
}
header ul li.btn {
  display: none;
}
@media only screen and (max-width: 768px) {
  header ul li.btn {
    display: block;
  }
}
header ul li.search a {
  color: #caa76a;
  font-size: 1.15em;
}
header ul li.search a:hover {
  border: none;
}
header ul.menu {
  float: left;
}
header ul.menu li {
  margin-right: 30px;
  text-align: right;
}
header ul.menu li:last-child {
  margin: 0;
}
header ul.menu li.button {
  margin: 0 20px 0 0;
}
header ul.menu li.social {
  margin: 0 0 0 20px;
}
header ul.menu li.social a {
  font-size: 1.5em;
}
header ul.menu li.social a:hover {
  text-decoration: none;
  border-bottom: 1px solid transparent;
}
header ul.menu.right {
  float: right;
}
header ul.social {
  float: right;
  margin-left: 20px;
}
header ul.social li {
  margin-left: 30px;
}
header ul.social li a {
  font-size: 1.5em;
}
header ul.social li a:hover {
  text-decoration: none;
  border-bottom: 1px solid transparent;
}
header ul li.social-wrapper ul {
  display: flex !important;
  background: none;
  border-radius: 0;
  height: auto;
  margin-top: 0;
  padding: 25px 0;
  gap: 18px;
  position: static;
  width: auto;
  min-width: unset !important;
  left: auto;
  -webkit-transform: none;
  transform: none;
}
header.white {
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}
header.white a.logo {
  background: url("../img/bpv-logo-white.svg") no-repeat;
  background-size: 100% auto;
  background-position: 50%;
  width: 280px;
}
header.white ul li a {
  color: #fff;
}
header.white ul li.button a {
  background: #fff;
  color: #caa76a;
  -webkit-transition: background 0.25s ease;
  -moz-transition: background 0.25s ease;
  -o-transition: background 0.25s ease;
}
header.white ul li.button a:hover {
  border-color: #fff !important;
  color: #fff !important;
}
header.white ul li.dropdown:before {
  color: #fff;
}
header.small {
  height: 90px;
  padding: 0 30px;
  background: #fff;
  border: none;
}
header.small a.logo {
  width: 240px;
  background: url("../img/bpv-logo.svg") no-repeat left center;
  background-size: 100% auto;
  top: 0;
}
header.small a.menu {
  color: #000 !important;
}
header.small a.search {
  margin: 5px 10px 5px 0;
}
header.small ul li a {
  color: #111;
}
header.small ul li.search a {
  color: #caa76a;
}
header.small ul li.dropdown:before {
  color: #caa76a;
}
header.small ul li.dropdown ul li a {
  color: #fff;
}
header.small ul li.button a {
  background: #caa76a;
  color: #fff;
  border: 1px solid transparent;
}
header.small ul li.button a:hover {
  background: #fff;
  color: #caa76a !important;
  border: 1px solid #caa76a;
}

header .mobile-phone {
  display: none;
}

@media screen and (max-width: 768px) {
  header .mobile-phone {
    display: block;
    float: right;
    height: 18px;
    width: 18px;
    margin: 20px 0;
    text-align: center;
    margin-right: 10px;
    line-height: 46.5px;
    font-size: 1.15em;
    color: #fff;
  }

  header.small .mobile-phone {
    margin-right: 25px;
    line-height: 18px;
    font-size: 1.15em;
    color: #caa76a;
  }
}

/* @media only screen and (min-width: $breakpoint-md) and (max-width: $breakpoint-lg) { */
@media only screen and (min-width: 1025px) and (max-width: 1440px) {
  header {
    text-align: center;
    padding: 90px 30px 0 30px;
    height: 180px;
  }
  header ul.menu {
    display: inline-block;
    float: inherit !important;
  }
  header ul.menu.right {
    margin-left: 30px;
  }
  header ul.social {
    display: none;
  }
  header a.button {
    margin: 22px 0 22px 24px;
  }
  header.small {
    height: 140px;
    padding: 60px 30px 0 30px;
  }
}
@media only screen and (max-width: 1025px) {
  header a.logo {
    top: 10px;
  }
  header a.menu {
    display: block;
    font-size: 1.33em;
    float: right;
    color: #caa76a;
    height: 50px;
    width: 50px;
    line-height: 50px;
    text-align: center;
    margin: 20px 0;
  }
  header a.search {
    display: block;
    font-size: 1.33em;
    float: right;
    color: #caa76a;
    border-radius: 50%;
    height: 50px;
    width: 50px;
    line-height: 50px;
    text-align: center;
    margin: 20px 0;
  }
  header a.right {
    display: none;
  }
  header ul {
    height: 90px;
    line-height: 90px;
  }
  header ul.menu {
    display: none;
    clear: both;
    left: 0;
    width: 100%;
    background: #fff;
    position: relative;
    overflow: auto;
    height: auto;
    text-align: center;
  }
  header ul.menu li {
    display: block;
    width: 100%;
    margin: 0;
    text-align: center;
    padding: 0;
  }
  header ul.menu li.search {
    display: none;
  }
  header ul.menu li.dropdown a {
    width: auto;
    display: block;
  }
  header ul.menu li.dropdown a:hover {
    border-bottom: none;
  }
  header ul.menu li.dropdown:before {
    top: 0;
    right: 15px;
  }
  header ul li.social-wrapper ul {
    justify-content: center;
    align-items: center;
  }
  header ul.menu li ul {
    left: 0;
    position: relative;
    height: auto;
    -webkit-transform: none;
    transform: none;
    overflow: auto;
    margin: 0 15px;
  }
  header ul li.social-wrapper ul {
    margin: 0 0 10px 0;
    padding: 0;
    overflow: hidden;
  }
  header ul.social {
    display: none;
  }
  header.small {
    height: 60px;
  }
  header.small a.menu {
    margin: 5px 0;
    width: auto;
  }
  header.white a.menu {
    color: #fff;
  }
}
@media only screen and (max-width: 992px) {
  header a.logo {
    width: 200px;
  }
  header ul li.social {
    width: auto;
    margin: 0 auto;
  }
  header ul.menu {
    line-height: 60px;
  }
  header.small a.logo {
    height: 60px;
    padding: 10px 0;
    width: 170px !important;
    top: 0;
  }
  header.white ul li a {
    color: #000;
  }
  header.white ul li.dropdown ul li > a {
    color: #fff;
  }
}
@media only screen and (max-width: 768px) {
  header {
    padding: 0 15px;
    height: 90px;
  }
  header a.logo {
    top: 0;
  }
  header ul.menu {
    width: 100%;
  }
}
@media only screen and (max-width: 544px) {
  header a.logo {
    left: 20px;
    -webkit-transform: none;
    transform: none;
    width: 150px !important;
  }
}
/** _carousel.scss **/
section#carousel {
  overflow: hidden;
  padding-top: 0;
  padding-bottom: 0;
}
section#carousel h1 {
  margin-bottom: 0;
}
section#carousel a.down {
  position: absolute;
  color: #fff;
  z-index: 2;
  font-size: 24px;
  bottom: 20px;
  left: calc(50% - 11px);
  -webkit-transition: bottom 0.25s ease;
  -moz-transition: bottom 0.25s ease;
  -o-transition: bottom 0.25s ease;
}
section#carousel a.down:hover {
  bottom: 10px;
}
section#carousel .gradient-overlay {
  background: rgb(13, 13, 17);
  background: -webkit-gradient(
    linear,
    left top,
    left bottom,
    from(rgb(13, 13, 17)),
    to(rgba(13, 13, 17, 0))
  );
  background: linear-gradient(
    180deg,
    rgb(13, 13, 17) 0%,
    rgba(13, 13, 17, 0) 100%
  );
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#0d0d11",endColorstr="#0d0d11",GradientType=1);
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  z-index: 1;
}
section#carousel .color-overlay {
  background: rgba(0, 0, 0, 0.5);
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  z-index: 1;
}
section#carousel .search {
  width: 100%;
  margin: 3rem 0 4rem 0;
}
section#carousel .search .row {
  overflow: hidden;
}
section#carousel .search .row .selectize-input {
  border-radius: 2px;
  min-height: 60px;
}
section#carousel .search .row .cena input,
section#carousel .search .row .fulltext input {
  height: 60px;
  line-height: 60px;
  border: 1px solid #d0d0d0;
  padding-left: 20px;
  font-size: 15px;
  width: 100%;
  border-radius: 2px;
  font-family: "DM Sans", sans-serif;
}
section#carousel .search .row .separator {
  clear: both;
  display: block;
  height: 30px;
}
section#carousel .search .row button {
  cursor: pointer;
  height: 60px;
  line-height: 60px;
  width: 100%;
  float: right;
  background: #caa76a;
  font-family: "DM Sans", sans-serif;
  font-weight: 500;
  font-size: 1em;
  color: #fff;
  text-decoration: none;
  border: none;
  border-radius: 2px;
}
section#carousel .search .row button i {
  font-size: 24px;
  position: relative;
  top: 3px;
}
section#carousel .avatar {
  margin: 0 auto;
  height: 150px;
  width: 150px;
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: 30px;
}
section#carousel .avatar img {
  width: 100%;
}
section#carousel .icons {
  text-align: center;
  margin: 30px 0;
}
section#carousel .icons span {
  margin: 0 20px;
}
section#carousel .icons span a {
  text-decoration: none;
  color: #111;
}
section#carousel .icons span a:hover {
  text-decoration: underline;
}
section#carousel .icons span i {
  color: #caa76a;
  margin-right: 8px;
  font-size: 1.1em;
}
section#carousel .subhead {
  max-width: 60%;
  margin: 0 auto;
}
section#carousel .filter {
  text-align: center;
  margin-top: -1rem;
  overflow: hidden;
}
section#carousel .filter .tags {
  float: left;
  overflow: hidden;
  width: 100%;
  text-align: left;
  margin-bottom: 3rem;
}
section#carousel .filter .tags span {
  background: #f5f5f5;
  border-radius: 2px;
  padding: 8px 14px;
  font-size: 13px;
  display: inline-block;
}
section#carousel .filter .tags span a {
  border: none;
  margin: 0 0 0 15px;
  float: right;
}
section#carousel .filter .tags span a i {
  font-size: 16px;
  color: #caa76a;
  position: relative;
  top: 1px;
}
section#carousel .filter .predaj-prenajom {
  float: right;
  font-size: 13px;
}
section#carousel .filter .predaj-prenajom a {
  margin: 0 0 0 20px;
}
section#carousel .filter .sort {
  float: left;
  font-size: 13px;
}
section#carousel .filter .sort a {
  margin: 0 20px 0 0;
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
}
section#carousel .filter a {
  margin: 0 20px;
  display: inline-block;
  color: #505050;
  border-color: #505050;
  text-decoration: none;
  border-bottom: 1px solid #505050;
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
}
section#carousel .filter a.active {
  color: #111;
  font-weight: 500;
  border-color: #caa76a;
}
section#carousel .filter a.active:hover {
  border-color: #caa76a;
}
section#carousel .filter a:hover {
  border-color: transparent;
}
section#carousel.map #search {
  display: block !important;
  padding: 4rem 0 0 0 !important;
}
section#carousel:not(.theme) #search {
  display: none;
  position: relative;
  top: 0;
  left: 0;
  -webkit-transform: none;
  transform: none;
  padding: 0 0 6rem 0;
}
section#carousel:not(.theme) #search .switch a.active:after {
  top: 34px;
  border-bottom: 6px solid #d9cfe6;
}
section#carousel:not(.theme) #search .search-wrapper .location-wrapper {
  border: 1px solid #d9cfe6;
  -webkit-border-top-left-radius: 2px;
  -webkit-border-bottom-left-radius: 2px;
  -moz-border-radius-topleft: 2px;
  -moz-border-radius-bottomleft: 2px;
  border-top-left-radius: 2px;
  border-bottom-left-radius: 2px;
}
section#carousel:not(.theme) #search .search-wrapper .type-wrapper {
  border: 1px solid #d9cfe6;
  border-left: none;
  -webkit-border-top-right-radius: 2px;
  -webkit-border-bottom-right-radius: 2px;
  -moz-border-radius-topright: 2px;
  -moz-border-radius-bottomright: 2px;
  border-top-right-radius: 2px;
  border-bottom-right-radius: 2px;
}
section#carousel:not(.theme) #search .search-wrapper.more form {
  overflow: auto;
}
section#carousel:not(.theme) #search .search-wrapper.more .location-wrapper {
  border-bottom-left-radius: 0;
}
section#carousel:not(.theme) #search .search-wrapper.more .type-wrapper {
  border-bottom-right-radius: 0;
}
section#carousel:not(.theme) #search .search-wrapper.more .fulltext-wrapper,
section#carousel:not(.theme) #search .search-wrapper.more .cenaod-wrapper,
section#carousel:not(.theme) #search .search-wrapper.more .cenado-wrapper {
  border-top: none;
  border-right: 1px solid #d9cfe6;
  border-left: 1px solid #d9cfe6;
  border-bottom: 1px solid #d9cfe6;
}
section#carousel:not(.theme) #search .search-wrapper.more .cenaod-wrapper,
section#carousel:not(.theme) #search .search-wrapper.more .cenado-wrapper {
  border-left: none;
}
section#carousel:not(.theme) #search .search-wrapper.more button {
  margin: 10px 0 5px 0 !important;
  width: 100% !important;
}
section#carousel:not(.theme) #search .links {
  margin-top: 15px;
}
section#carousel.text {
  margin-top: calc(90px + 5rem);
}
section#carousel.text .description {
  display: block;
  margin: 3rem 0;
}
section#carousel.text .description p {
  max-width: 66%;
  margin: 0 auto;
}
section#carousel.text .description p a {
  display: inline-block;
  margin-top: 15px;
}
section#carousel.blog .icons {
  margin: 30px 0 0 0;
}
section#carousel.photos #search,
section#carousel.single-photo #search {
  padding: 6rem 0;
}
section#carousel.photos {
  margin-top: 110px;
}
section#carousel.photos.mobil {
  display: none;
}
section#carousel.single-photo {
  margin-top: 110px;
}
section#carousel.single-photo .popup-gallery > a {
  height: 400px;
  overflow: hidden;
  width: 100%;
  position: relative;
  display: block;
}
section#carousel.single-photo .popup-gallery > a img {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 100%;
  max-width: 100%;
}
section#carousel.theme {
  position: relative;
  background: #000;
  background-size: 100% auto;
  background-position: 50% 89%;
  height: 100vh;
  min-height: 600px;
  padding: 0;
  margin: 0;
  overflow: hidden;
}
section#carousel.theme h1 {
  margin-bottom: 40px;
}
section#carousel.theme.video {
  position: relative;
  background: #000;
  height: 100vh;
  min-height: 600px;
  padding: 0;
  margin: 0;
  overflow: hidden;
}
section#carousel.theme.video h1 {
  color: #fff !important;
  max-width: 740px;
  margin: 0 auto;
  font-weight: 400;
  font-size: 3.6em;
}
section#carousel.theme.video .button-alt {
  color: #fff;
  border-color: #fff;
}
section#carousel.theme.video .switch a {
  color: #ccc !important;
}
section#carousel.theme.video .switch a.active,
section#carousel.theme.video .switch a:hover {
  color: #fff !important;
}
section#carousel.theme.video .links a {
  color: #fff !important;
}
section#carousel.theme.video video {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  z-index: 0;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
}

@media only screen and (max-width: 992px) {
  section#carousel .search .row button {
    margin-top: 30px;
  }
  section#carousel .filter .sort {
    width: 100%;
    margin-bottom: 20px;
    text-align: left;
  }
  section#carousel .filter .sort a {
    margin: 10px;
  }
  section#carousel .filter .predaj-prenajom {
    width: 100%;
    text-align: left;
  }
  section#carousel .filter .predaj-prenajom a {
    margin: 10px;
  }
  section#carousel .icons {
    margin: 30px 0 0 0;
  }
  section#carousel .icons span {
    display: inline-block;
    margin-bottom: 20px;
  }
  section#carousel:not(.theme) #search .search-wrapper button {
    margin: 5px 0 0 0;
    width: 100%;
  }
  section#carousel.search .search .row button {
    margin: 0;
  }
  section#carousel.single-photo {
    height: 330px;
  }
  section#carousel.single-photo .popup-gallery > a {
    height: 330px;
  }
  section#carousel.single-photo .popup-gallery > a img {
    max-width: inherit;
  }
  section#carousel.theme {
    background-size: auto 100%;
  }
}
@media only screen and (max-width: 768px) {
  section#carousel .search .row .cena {
    margin-top: 30px;
  }
  section#carousel .filter .tags {
    margin-bottom: 30px;
  }
  section#carousel .filter .tags span {
    width: 100%;
    margin-bottom: 3px;
  }
  section#carousel .filter .tags span:last-child {
    margin: 0;
  }
  section#carousel .filter a {
    margin: 0 20px 20px 20px;
  }
  section#carousel #search {
    width: 100%;
    margin: 0;
  }
  section#carousel #search .search-wrapper .location-wrapper {
    border-radius: 0;
    -webkit-border-top-left-radius: 2px;
    -webkit-border-top-right-radius: 2px;
    -moz-border-radius-topleft: 2px;
    -moz-border-radius-topright: 2px;
    border-top-left-radius: 2px;
    border-top-right-radius: 2px;
    border-bottom-left-radius: 0 !important;
  }
  section#carousel #search .search-wrapper .type-wrapper {
    border-left: 1px solid #d9cfe6 !important;
    border-top: none !important;
    border-radius: 0;
    -webkit-border-bottom-right-radius: 2px;
    -webkit-border-bottom-left-radius: 2px;
    -moz-border-radius-bottomright: 2px;
    -moz-border-radius-bottomleft: 2px;
    border-bottom-right-radius: 2px;
    border-bottom-left-radius: 2px;
    border-top-right-radius: 0 !important;
  }
  section#carousel #search .search-wrapper button {
    margin: 0 5px 5px 5px;
  }
  section#carousel #search .search-wrapper.more form {
    width: 100% !important;
  }
  section#carousel #search .search-wrapper.more .location-wrapper {
    border-right: 1px solid #d9cfe6;
  }
  section#carousel #search .search-wrapper.more .type-wrapper {
    border-left: 1px solid #d9cfe6 !important;
    border-top: none;
    border-bottom-left-radius: 0 !important;
  }
  section#carousel #search .search-wrapper.more .fulltext-wrapper {
    border-bottom: 1px solid #d9cfe6;
  }
  section#carousel #search .search-wrapper.more .cenaod-wrapper {
    border-left: 1px solid #d9cfe6 !important;
    border-bottom-left-radius: 2px;
  }
  section#carousel #search .search-wrapper.more .cenado-wrapper {
    border-bottom-right-radius: 2px;
  }
  section#carousel.photos.mobil {
    display: block;
  }
  section#carousel.develo-photos {
    display: none;
  }
  section#carousel.single-photo {
    height: 250px;
  }
  section#carousel.single-photo .popup-gallery > a {
    height: 250px;
  }
  section#carousel.single-photo .popup-gallery > a img {
    max-width: inherit;
  }
  section#carousel.single-photo.desktop {
    display: none;
  }
  section#carousel.theme {
    background: #f5f5f5 !important;
    min-height: 840px;
    height: 100vh;
  }
  section#carousel.theme h1 {
    text-align: center;
    font-size: 2em !important;
  }
  section#carousel.search .search .row .type-wrapper {
    margin-top: 30px;
  }
  section#carousel.search .search .row button {
    margin: 0;
  }
}
/** _search.scss **/
section#search {
  position: absolute;
  z-index: 2;
  top: 55%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
section#search h1 {
  color: #111;
  margin-bottom: 30px;
}
section#search .switch {
  overflow-y: hidden;
}
section#search .switch a {
  position: relative;
  margin-right: 30px;
  color: #777;
  text-decoration: none;
  display: inline-block;
  padding: 0 0 15px 0;
  font-size: 0.88em;
}
section#search .switch a:hover {
  cursor: pointer;
  color: #111;
}
section#search .switch a.active {
  font-weight: 500;
  color: #111;
}
section#search .switch a.active:after {
  content: "";
  position: absolute;
  left: calc(50% - 6px);
  bottom: 0;
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-bottom: 6px solid #fff;
  clear: both;
}
section#search .switch a:last-child {
  margin: 0;
}
section#search .search-wrapper {
  overflow: hidden;
  background: #fff;
  border-radius: 2px;
  padding: 5px 0;
}
section#search .search-wrapper .location-wrapper {
  height: 58px;
  overflow-y: hidden;
  float: left;
  width: calc(45% - 40px);
  border-right: 1px solid #e2e2e2;
}
section#search .search-wrapper .location-wrapper .selectize-input {
  -webkit-border-bottom-left-radius: 2px;
  -webkit-border-top-left-radius: 2px;
  -moz-border-radius-bottomleft: 2px;
  -moz-border-radius-topleft: 2px;
  border-bottom-left-radius: 2px;
  border-top-left-radius: 2px;
}
section#search .search-wrapper .type-wrapper {
  height: 58px;
  overflow-y: hidden;
  float: left;
  width: calc(45% - 40px);
}
section#search .search-wrapper .selectize-input {
  border: none;
}
section#search .search-wrapper .fulltext-wrapper {
  float: left;
  width: calc(45% - 40px);
  border-right: 1px solid #e2e2e2;
}
section#search .search-wrapper .cenaod-wrapper,
section#search .search-wrapper .cenado-wrapper {
  float: left;
  width: calc(30% - 20px);
  border-right: 1px solid #e2e2e2;
}
section#search .search-wrapper .cenado-wrapper {
  border-right: none;
}
section#search .search-wrapper .fulltext-wrapper,
section#search .search-wrapper .cenaod-wrapper,
section#search .search-wrapper .cenado-wrapper {
  display: none;
}
section#search .search-wrapper .fulltext-wrapper input,
section#search .search-wrapper .cenaod-wrapper input,
section#search .search-wrapper .cenado-wrapper input {
  font-family: "DM Sans", sans-serif;
  border: none;
  height: 58px;
  width: 100%;
  padding-left: 20px;
  font-size: 15px;
}
section#search .search-wrapper button {
  cursor: pointer;
  height: 58px;
  line-height: 58px;
  width: 16%;
  float: right;
  background: #caa76a;
  font-family: "DM Sans", sans-serif;
  font-weight: 500;
  font-size: 1em;
  color: #fff;
  text-decoration: none;
  margin-right: 5px;
  border: none;
  border-radius: 2px;
}
section#search .search-wrapper button i {
  margin-right: 10px;
}
section#search .search-wrapper.more .location-wrapper,
section#search .search-wrapper.more .type-wrapper {
  width: 50%;
}
section#search .search-wrapper.more .fulltext-wrapper {
  display: inline-block;
  border-top: 1px solid #d9cfe6;
  width: 50%;
}
section#search .search-wrapper.more .cenaod-wrapper,
section#search .search-wrapper.more .cenado-wrapper {
  display: inline-block;
  border-top: 1px solid #d9cfe6;
  width: 25%;
}
section#search .search-wrapper.more button {
  width: calc(100% - 10px);
  margin-top: 5px;
}
section#search .links {
  margin-top: 30px;
}
section#search .links a {
  display: inline-block;
  white-space: pre;
  color: #111 !important;
  font-size: 0.88em !important;
  text-decoration: none;
  -webkit-transition: border 0.25s ease;
  -moz-transition: border 0.25s ease;
  -o-transition: border 0.25s ease;
  border-bottom: 1px solid transparent;
}
section#search .links a i.fal {
  margin-right: 10px;
}
section#search .links a:nth-child(2) {
  margin-left: 30px;
}
section#search .links a:hover {
  border-bottom: 1px solid #777;
}

@media only screen and (max-width: 992px) {
  section#search .search-wrapper .location-wrapper,
  section#search .search-wrapper .type-wrapper {
    width: 50%;
  }
  section#search .search-wrapper button {
    width: calc(100% - 10px);
    margin: 5px 5px 0 5px;
  }
  section#search .search-wrapper.more button {
    width: calc(100% - 10px) !important;
    margin: 0 0 0 5px !important;
    margin-top: 5px !important;
    float: none;
  }
}
@media only screen and (max-width: 768px) {
  section#search {
    top: 50%;
    width: calc(100% - 30px);
    overflow: hidden;
  }
  section#search .switch {
    overflow-x: auto;
    white-space: nowrap;
    text-align: center;
    padding: 0 20px;
  }
  section#search .switch a {
    margin-right: 20px;
  }
  section#search .search-wrapper {
    padding: 0;
  }
  section#search .search-wrapper .location-wrapper {
    height: auto;
    min-height: 58px;
    overflow-y: auto;
    width: 100%;
    border: none;
    border-bottom: 1px solid #e2e2e2;
  }
  section#search .search-wrapper .type-wrapper {
    border-left: none !important;
    height: auto;
    min-height: 58px;
    overflow-y: auto;
    width: 100%;
  }
  section#search .search-wrapper button {
    width: calc(100% - 10px);
    margin: 0 5px;
  }
  section#search .search-wrapper.more .location-wrapper,
  section#search .search-wrapper.more .type-wrapper,
  section#search .search-wrapper.more .fulltext-wrapper {
    width: 100%;
  }
  section#search .search-wrapper.more .cenaod-wrapper,
  section#search .search-wrapper.more .cenado-wrapper {
    width: 50%;
  }
  section#search .search-wrapper.more button {
    margin: 5px 0 5px 5px !important;
  }
  section#search .search-more-wrapper .fulltext-wrapper {
    width: 100%;
    border: none;
    border-bottom: 1px solid #e2e2e2;
  }
  section#search .search-more-wrapper .cenaod-wrapper,
  section#search .search-more-wrapper .cenado-wrapper {
    width: calc(50% - 1px);
  }
  section#search .links {
    text-align: center;
  }
  section#search .links a {
    margin-left: 0 !important;
    margin: 0 20px 10px 20px;
  }
}
/** _selectize.scss **/
.selectize-control.plugin-drag_drop.multi
  > .selectize-input
  > div.ui-sortable-placeholder {
  visibility: visible !important;
  background: #f2f2f2 !important;
  background: rgba(0, 0, 0, 0.06) !important;
  border: 0 none !important;
  -webkit-box-shadow: inset 0 0 12px 4px #fff;
  box-shadow: inset 0 0 12px 4px #fff;
}

.selectize-control.plugin-drag_drop .ui-sortable-placeholder::after {
  content: "!";
  visibility: hidden;
}

.selectize-control.plugin-drag_drop .ui-sortable-helper {
  -webkit-box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.selectize-dropdown-header {
  position: relative;
  padding: 5px 8px;
  border-bottom: 1px solid #d0d0d0;
  background: #f8f8f8;
  border-radius: 3px 3px 0 0;
}

.selectize-dropdown-header-close {
  position: absolute;
  right: 8px;
  top: 50%;
  color: #303030;
  opacity: 0.4;
  margin-top: -12px;
  line-height: 20px;
  font-size: 20px !important;
}

.selectize-dropdown-header-close:hover {
  color: #000000;
}

.selectize-dropdown.plugin-fgroup_columns .optgroup {
  border-right: 1px solid #f2f2f2;
  border-top: 0 none;
  float: left;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.selectize-dropdown.plugin-optgroup_columns .optgroup:last-child {
  border-right: 0 none;
}

.selectize-dropdown.plugin-optgroup_columns .optgroup:before {
  display: none;
}

.selectize-dropdown.plugin-optgroup_columns .optgroup-header {
  border-top: 0 none;
}

.selectize-control.plugin-remove_button [data-value] {
  position: relative;
  padding-right: 24px !important;
}

.selectize-control.plugin-remove_button [data-value] .remove {
  z-index: 1;
  /* fixes ie bug (see #392) */
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 17px;
  text-align: center;
  font-weight: bold;
  font-size: 12px;
  color: inherit;
  text-decoration: none;
  vertical-align: middle;
  display: inline-block;
  padding: 2px 0 0 0;
  border-left: 1px solid #d0d0d0;
  border-radius: 0 2px 2px 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.selectize-control.plugin-remove_button [data-value] .remove:hover {
  background: rgba(0, 0, 0, 0.05);
}

.selectize-control.plugin-remove_button [data-value].active .remove {
  border-left-color: #cacaca;
}

.selectize-control.plugin-remove_button .disabled [data-value] .remove:hover {
  background: none;
}

.selectize-control.plugin-remove_button .disabled [data-value] .remove {
  border-left-color: #ffffff;
}

.selectize-control.plugin-remove_button .remove-single {
  position: absolute;
  right: 0;
  top: 0;
  font-size: 23px;
}

.selectize-control {
  position: relative;
}

.selectize-dropdown,
.selectize-input,
.selectize-input input {
  color: #303030;
  font-family: inherit;
  font-size: 15px;
  line-height: 18px;
  -webkit-font-smoothing: inherit;
}

.selectize-input,
.selectize-control.single .selectize-input.input-active {
  background: #fff;
  cursor: text;
  display: inline-block;
}

.selectize-input {
  border: 1px solid #d0d0d0;
  padding: 20px;
  display: inline-block;
  width: 100%;
  position: relative;
  z-index: 1;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.selectize-control.multi .selectize-input.has-items {
  padding: 6px 8px 3px;
}

.selectize-input.full {
  background-color: #fff;
}

.selectize-input.disabled,
.selectize-input.disabled * {
  cursor: default !important;
}

.selectize-input > * {
  vertical-align: baseline;
  display: -moz-inline-stack;
  display: inline-block;
  zoom: 1;
  *display: inline;
}

.selectize-control.multi .selectize-input > div {
  cursor: pointer;
  margin: 0 3px 3px 0;
  padding: 2px 6px;
  background: #f2f2f2;
  color: #505050;
  border: 0 solid #d0d0d0;
}

.selectize-control.multi .selectize-input > div.active {
  background: #e8e8e8;
  color: #303030;
  border: 0 solid #cacaca;
}

.selectize-control.multi .selectize-input.disabled > div,
.selectize-control.multi .selectize-input.disabled > div.active {
  color: #7d7d7d;
  background: #ffffff;
  border: 0 solid #ffffff;
}

.selectize-input > input {
  display: inline-block !important;
  padding: 0 !important;
  min-height: 0 !important;
  max-height: none !important;
  width: 100% !important;
  max-width: 100% !important;
  margin: 0 !important;
  text-indent: 0 !important;
  border: 0 none !important;
  background: none !important;
  line-height: inherit !important;
  -webkit-user-select: auto !important;
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
}

.selectize-input > input::-ms-clear {
  display: none;
}

.selectize-input > input:focus {
  outline: none !important;
}

.selectize-input::after {
  content: " ";
  display: block;
  clear: left;
}

.selectize-input.dropdown-active::before {
  content: " ";
  display: block;
  position: absolute;
  background: #f0f0f0;
  height: 1px;
  bottom: 0;
  left: 0;
  right: 0;
}

.selectize-dropdown {
  border: 1px solid #d9cfe6;
  position: absolute;
  z-index: 10;
  background: #fff;
  font-size: 0.88em;
  margin: -1px 0 0 0;
  border-top: 0 none;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-border-bottom-left-radius: 2px;
  -webkit-border-bottom-right-radius: 2px;
  -moz-border-radius-bottomleft: 2px;
  -moz-border-radius-bottomright: 2px;
  border-bottom-left-radius: 2px;
  border-bottom-right-radius: 2px;
}

.selectize-dropdown [data-selectable] {
  cursor: pointer;
  overflow: hidden;
}

.selectize-dropdown [data-selectable] .highlight {
  background: #f5f5f5;
  border-radius: 1px;
}

.selectize-dropdown .option,
.selectize-dropdown .optgroup-header {
  padding: 5px 8px;
}

.selectize-dropdown .option,
.selectize-dropdown [data-disabled],
.selectize-dropdown [data-disabled] [data-selectable].option {
  cursor: inherit;
  opacity: 0.5;
}

.selectize-dropdown [data-selectable].option {
  opacity: 1;
}

.selectize-dropdown .optgroup:first-child .optgroup-header {
  border-top: 0 none;
}

.selectize-dropdown .optgroup-header {
  color: #caa76a;
  background: #fff;
  cursor: default;
  margin: 10px 0 0 0;
}

.selectize-dropdown .active {
  cursor: pointer;
  background-color: #f5f5f5;
  color: #111;
}

.selectize-dropdown .active.create {
  color: #111;
}

.selectize-dropdown .create {
  color: rgba(48, 48, 48, 0.5);
}

.selectize-dropdown-content {
  padding: 0 10px 10px 10px;
  overflow-y: auto;
  overflow-x: hidden;
  max-height: 200px;
  -webkit-overflow-scrolling: touch;
}

.selectize-control.single .selectize-input,
.selectize-control.single .selectize-input input {
  cursor: pointer;
}

.selectize-control.single .selectize-input.input-active,
.selectize-control.single .selectize-input.input-active input {
  cursor: text;
}

.selectize-control.single .selectize-input:after {
  content: " ";
  display: block;
  position: absolute;
  top: 50%;
  right: 15px;
  margin-top: -3px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 5px 5px 0 5px;
  border-color: #808080 transparent transparent transparent;
}

.selectize-control.single .selectize-input.dropdown-active:after {
  margin-top: -4px;
  border-width: 0 5px 5px 5px;
  border-color: transparent transparent #808080 transparent;
}

.selectize-control.rtl.single .selectize-input:after {
  left: 15px;
  right: auto;
}

.selectize-control.rtl .selectize-input > input {
  margin: 0 4px 0 -2px !important;
}

.selectize-control .selectize-input.disabled {
  opacity: 0.5;
  background-color: #fafafa;
}

/** _welcome.scss **/
section#welcome {
  padding-bottom: 0;
}
section#welcome p.subhead {
  margin: 0 auto;
  max-width: 80%;
}

/** _content.scss **/
section#content.process {
  background: rgb(245, 245, 245);
  background: -webkit-gradient(
    linear,
    left bottom,
    left top,
    from(rgb(245, 245, 245)),
    to(rgba(245, 245, 245, 0))
  );
  background: linear-gradient(
    0deg,
    rgb(245, 245, 245) 0%,
    rgba(245, 245, 245, 0) 100%
  );
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#f5f5f5",endColorstr="#f5f5f5",GradientType=1);
}
section#content.process i.fal {
  font-size: 2em;
  margin: 0 20px;
  color: #caa76a;
}
section#content .photo {
  max-height: 400px;
  overflow: hidden;
}
section#content .photo img {
  width: 100%;
}
section#content .newsletter {
  background: #f5f5f5;
  margin: 0 -15px;
  padding: 30px;
  border-radius: 2px;
}
section#content .newsletter form fieldset {
  text-align: center;
}
section#content .newsletter form fieldset button {
  margin-top: 20px;
}
section#content ul li {
  line-height: 40px;
}
section#content #map {
  height: 700px;
}
section#content #map > div {
  z-index: 1;
}
section#content .search-result-legend {
  text-align: center;
}
section#content .search-result-legend label {
  display: inline-block;
  height: 30px;
  line-height: 30px;
  margin: 20px 30px 0 0;
}
section#content .search-result-legend label img {
  height: 30px;
  float: left;
}
section#content .search-result-legend label span {
  float: left;
  margin-left: 10px;
}
section#content .search-result-legend label:last-child {
  margin: 20px 0 0 0;
}
section#content.newsletter {
  padding: 0;
}
section#content.features {
  padding: 8rem 0 3rem 0;
}
section#content.features .item {
  text-align: center;
}
section#content.features .item i {
  font-size: 36px;
  color: #caa76a;
  display: block;
  margin: 0 auto;
  margin-bottom: 30px;
}
section#content.blogpost .blogpost-wrapper {
  width: 66%;
  margin: 0 auto;
}
section#content.blogpost .blogpost-wrapper h2,
section#content.blogpost .blogpost-wrapper h3 {
  font-weight: 500;
}
section#content.blogpost .blogpost-wrapper p {
  margin: 3rem 0;
  line-height: 1.8em;
}
section#content.blogpost .blogpost-wrapper p:first-child {
  margin-top: 0;
}
section#content.blogpost .blogpost-wrapper img {
  width: calc(100% + 200px);
  max-width: calc(100% + 200px);
  margin: 3rem 0;
  margin-left: -100px;
}
section#content.blogpost .blogpost-wrapper blockquote {
  color: #caa76a;
  font-size: 2em;
  margin: 5rem 0;
}
section#content.blogpost .blogpost-wrapper ul {
  margin: 3rem 0;
  padding: 0;
  list-style-position: inside;
}
section#content.blogpost .blogpost-wrapper ul li {
  height: 40px;
  line-height: 40px;
}
section#content.blogpost .author {
  margin: 10rem 0 5rem 0;
  overflow: auto;
  text-align: center;
}
section#content.blogpost .author .agent {
  width: 66%;
  border: 1px solid #d9cfe6;
  border-radius: 2px;
  padding: 40px;
  display: inline-block;
  overflow: auto;
  float: inherit;
  text-align: left;
}
section#content.blogpost .author .agent .avatar {
  float: left;
  margin-right: 40px;
  width: 140px;
  height: 140px;
  overflow: hidden;
  border-radius: 50%;
}
section#content.blogpost .author .agent .avatar img {
  width: 100%;
}
section#content.blogpost .author .agent .text {
  float: left;
}
section#content.blogpost .author .agent .text h3 {
  margin: 0 0 20px 0;
}
section#content.blogpost .author .agent .text .icons {
  margin: 20px 0 30px 0;
}
section#content.blogpost .author .agent .text .icons span {
  margin-right: 20px;
}
section#content.blogpost .author .agent .text .icons span a {
  text-decoration: none;
  color: #111;
}
section#content.blogpost .author .agent .text .icons span i {
  color: #caa76a;
  margin-right: 8px;
  font-size: 1.1em;
}

@media only screen and (max-width: 1200px) {
  section#content.blogpost .author .agent {
    text-align: center;
  }
  section#content.blogpost .author .agent .avatar {
    display: inline-block;
    margin: 0 0 20px 0;
  }
  section#content.blogpost .author .agent .avatar,
  section#content.blogpost .author .agent .text {
    float: inherit;
  }
}
@media only screen and (max-width: 992px) {
  section#content.features {
    padding: 8rem 0 0 0;
    margin-bottom: -3rem;
  }
  section#content.features .item {
    margin-bottom: 3rem;
  }
}
@media only screen and (max-width: 768px) {
  section#content.process i.fal {
    font-size: 1.5em;
    margin: 0 10px;
  }
  section#content.blogpost .blogpost-wrapper {
    width: 100%;
    padding: 0 15px;
  }
  section#content.blogpost .blogpost-wrapper img {
    max-width: 100%;
    width: 100%;
    margin-left: 0;
    margin-right: 0;
  }
  section#content.blogpost .author {
    margin: 5rem 0 0 0;
  }
  section#content.blogpost .author .agent {
    width: 100%;
  }
  section#content.blogpost .author .agent .icons span {
    display: block;
    margin-bottom: 20px;
  }
  section#content.blogpost .author .agent .icons span:last-child {
    margin: 0;
  }
}
/** _select.scss **/
section#select {
  padding: 4rem 0 0 0;
  text-align: center;
}
section#select .table-wrapper {
  display: table-row !important;
}
@media only screen and (max-width: 768px) {
  section#select .table-wrapper {
    display: inherit !important;
  }
}
section#select .items-wrapper {
  overflow: auto;
  text-align: center;
}
section#select .items-wrapper .item {
  text-align: center;
  display: inline-block;
  background: #f5f5f5;
  float: left;
  border: 2px solid #fff;
}
section#select .items-wrapper .item i {
  font-size: 36px;
  color: #111;
  display: block;
  margin: 0 auto;
  margin-bottom: 30px;
}
section#select .items-wrapper .item > a {
  border-radius: 2px;
  padding: 40px 0;
  color: #111;
  display: block;
  font-size: 1.15em;
  font-weight: 400;
  text-decoration: none;
  -webkit-transition:
    background 0.25s ease,
    border 0.25s ease;
  -moz-transition:
    background 0.25s ease,
    border 0.25s ease;
  -o-transition:
    background 0.25s ease,
    border 0.25s ease;
}
section#select .items-wrapper .item > a i {
  font-size: 36px;
  color: #111;
  display: block;
  margin: 0 auto;
  margin-bottom: 30px;
}
section#select .items-wrapper .item > a img {
  height: 44px;
  margin-bottom: 10px;
}
section#select .items-wrapper .item > a p {
  text-transform: uppercase;
  font-size: 16px;
  font-weight: 500;
}
section#select .items-wrapper .item > a:hover {
  background: #f5f5f5;
  cursor: pointer;
}
section#select .items-wrapper .item:hover {
  cursor: pointer;
}
section#select .items-wrapper .item:hover a p {
  text-decoration: underline;
}
section#select .items-wrapper .item.feature {
  padding: 60px;
  color: #111;
  font-size: 1.15em;
  font-weight: 400;
  text-decoration: none;
}
section#select .items-wrapper .item.feature i {
  font-size: 36px;
  color: #111;
  display: block;
  margin: 0 auto;
  margin-bottom: 30px;
}
section#select .items-wrapper .item.feature img {
  margin-bottom: 30px;
}
section#select .items-wrapper .item.feature p {
  margin: 0;
}
section#select .items-wrapper .item.feature small {
  margin: 20px 0 0 0;
  display: inline-block;
  line-height: 24px;
  font-weight: 400;
}
section#select .items-wrapper .item.feature small a {
  font-weight: 400;
}
@media only screen and (max-width: 768px) {
  section#select .items-wrapper .item.feature {
    padding: 30px;
    display: inherit !important;
  }
}
section#select .items-wrapper .item.center {
  float: inherit;
}
section#select.text .items-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
section#select.text .items-wrapper .item {
  padding: 40px 30px 50px 30px;
}
section#select.text .items-wrapper .item img {
  height: 54px;
  margin-bottom: 20px;
}
section#select.text .items-wrapper .item h3 {
  margin-bottom: 20px;
}
section#select.text .items-wrapper .item h3 small {
  font-size: 12px;
  display: block;
}
section#select.text .items-wrapper .item span {
  font-size: 3em;
  color: #caa76a;
  font-weight: 500;
  display: inline-block;
  margin-bottom: 20px;
}
section#select.text .items-wrapper .item p {
  line-height: 28px;
  font-size: 15px;
}
section#select.text .items-wrapper .item:hover {
  cursor: inherit;
}
@media only screen and (max-width: 544px) {
  section#select.text .items-wrapper .item {
    width: 100%;
  }
}
section#select.text .items-wrapper .item.large {
  padding: 60px 80px 70px 80px;
  max-width: 600px;
}
@media only screen and (max-width: 768px) {
  section#select.text .items-wrapper .item.large {
    width: 100%;
  }
}
section#select.homepage {
  padding: 0;
}
@media only screen and (max-width: 544px) {
  section#select.homepage .items-wrapper .item {
    width: 100%;
    margin: 0 0 5px 0;
  }
}
@media only screen and (max-width: 768px) {
  section#select.homepage {
    padding: 5rem 0;
  }
}
section#select.nooffers {
  padding: 6rem 0;
}
section#select.search {
  padding: 4rem 0;
}

@media only screen and (max-width: 768px) {
  section#select .items-wrapper .item {
    float: none;
  }
}
/** _offers.scss **/
section#offers .offers-wrapper {
  overflow: auto;
  margin-bottom: calc(5rem - 30px);
}
section#offers .offers-wrapper .offer {
  margin-bottom: 30px;
}
section#offers .offers-wrapper .offer .image-wrapper {
  background: #f7f6f3;
  border-bottom: 1px solid rgba(20, 22, 26, 0.1);
  position: relative;
  height: 400px;
  overflow: hidden;
  -webkit-border-top-left-radius: 2px;
  -webkit-border-top-right-radius: 2px;
  -moz-border-radius-topleft: 2px;
  -moz-border-radius-topright: 2px;
  border-top-left-radius: 2px;
  border-top-right-radius: 2px;
}
section#offers .offers-wrapper .offer .image-wrapper::after {
  content: "";
  position: absolute;
  z-index: 3;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: #caa76a;
  -webkit-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-transform-origin: left center;
  transform-origin: left center;
  -webkit-transition: -webkit-transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
section#offers .offers-wrapper .offer .image-wrapper a > i.fal {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  font-size: 4em;
  color: #ccc;
}
section#offers .offers-wrapper .offer .image-wrapper .tags {
  position: absolute;
  z-index: 2;
  top: 20px;
  left: 20px;
  text-align: left;
}
section#offers .offers-wrapper .offer .image-wrapper .tags span {
  display: inline-block;
  background: #f7f6f3;
  color: #14161a;
  border-radius: 2px;
  padding: 5px 9px;
  margin-right: 6px;
  font-size: 0.7em;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.06em;
}
section#offers .offers-wrapper .offer .image-wrapper .tags span:last-child {
  margin: 0;
}
section#offers .offers-wrapper .offer .image-wrapper p.title {
  position: absolute;
  z-index: 2;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  font-size: 20px;
  line-height: 28px;
  letter-spacing: -0.015em;
  bottom: 20px;
  left: 20px;
  width: calc(100% - 40px);
  text-align: left;
  -webkit-transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
section#offers .offers-wrapper .offer .image-wrapper .shadow {
  position: absolute;
  opacity: 0.55;
  width: 100%;
  bottom: 0;
  z-index: 1;
  height: 55%;
  display: block;
  background: rgb(0, 0, 0);
  background: -webkit-gradient(
    linear,
    left bottom,
    left top,
    from(rgb(0, 0, 0)),
    to(rgba(0, 0, 0, 0))
  );
  background: linear-gradient(0deg, rgb(0, 0, 0) 0%, rgba(0, 0, 0, 0) 100%);
}
section#offers .offers-wrapper .offer .image-wrapper img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  max-width: none;
  height: 100%;
  object-fit: cover;
  object-position: center;
  -webkit-transition: -webkit-transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
section#offers .offers-wrapper .offer .text-wrapper {
  padding: 1.1rem 0 0 0;
  text-align: left;
  background: transparent;
}
section#offers .offers-wrapper .offer .text-wrapper p.address {
  margin: 0 0 0.75rem 0;
  color: rgba(20, 22, 26, 0.75);
  font-size: 0.875rem;
  line-height: 1.45;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
section#offers .offers-wrapper .offer .text-wrapper .meta-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
  -ms-flex-align: baseline;
  align-items: baseline;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 0.75rem;
  border-top: 1px solid rgba(20, 22, 26, 0.1);
}
section#offers .offers-wrapper .offer .text-wrapper p.price {
  margin: 0;
  color: #14161a;
  font-weight: 700;
  font-size: 1.25rem;
  line-height: 1.2;
  letter-spacing: -0.02em;
  white-space: nowrap;
}
section#offers .offers-wrapper .offer .text-wrapper div.icons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
  -ms-flex-align: baseline;
  align-items: baseline;
  min-width: 0;
}
section#offers .offers-wrapper .offer .text-wrapper div.icons span {
  min-width: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
section#offers .offers-wrapper .offer .text-wrapper div.icons span + span::before {
  content: "·";
  margin: 0 0.5rem;
  color: rgba(20, 22, 26, 0.3);
}
section#offers .offers-wrapper .offer .text-wrapper div.icons span small {
  color: rgba(20, 22, 26, 0.75);
  font-weight: 400;
  font-size: 0.875rem;
  letter-spacing: 0;
  text-transform: none;
}
section#offers .offers-wrapper .offer.noimage p.title {
  color: #14161a;
}
section#offers .offers-wrapper .offer:hover .image-wrapper img {
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
}
section#offers .offers-wrapper .offer:hover .image-wrapper p.title {
  bottom: 28px;
}
section#offers .offers-wrapper .offer:hover .image-wrapper::after {
  -webkit-transform: scaleX(1);
  transform: scaleX(1);
}
section#offers .buttons {
  overflow: auto;
  padding: 3rem 0;
}
section#offers.next {
  padding: 1rem 0 0 0;
}
section#offers.next h3 {
  margin-bottom: 5rem;
}
section#offers.next h3.withtags {
  margin-bottom: 3rem;
}
section#offers.next .tags {
  text-align: center;
  margin-bottom: 4rem;
}
section#offers.next .tags a {
  display: inline-block;
  background: #f5f5f5;
  padding: 5px 8px;
  font-size: 13px;
  border-radius: 2px;
  text-decoration: none;
  color: #111;
  margin: 0 5px;
}
section#offers.next .buttons {
  padding: 0 0 6rem 0;
}

@media only screen and (max-width: 768px) {
  section#offers {
    padding: 5rem 0;
  }
  section#offers .buttons div:last-child {
    margin-top: 15px;
  }
}
/** _testimonials.scss **/
section#testimonials {
  padding: 3rem 0;
  background: #f5f5f5;
}
section#testimonials.referencie {
  background: transparent;
}
section#testimonials .item {
  text-align: center;
}
section#testimonials .item p {
  color: #111;
  margin: 0 auto;
  width: 100%;
  max-width: 700px;
  font-size: 20px;
  line-height: 32px;
  font-weight: 400;
  margin-bottom: 2rem;
}
section#testimonials .item small {
  font-size: 1em;
  color: #caa76a;
}
section#testimonials .item.line {
  margin-bottom: 5rem;
  padding-bottom: 5rem;
  border-bottom: 1px solid #d9cfe6;
}
section#testimonials .item.line:last-child {
  border: none;
}

/** _blog.scss **/
.blog-share {
  text-align: center;
  margin: 5rem 0 0 0;
}
.blog-share a {
  margin-right: 10px;
  display: inline-block;
}
.blog-share a:last-child {
  margin: 0;
}
.blog-share .facebook-share {
  background: #1877f2;
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  height: 60px;
  line-height: 60px;
  padding: 0 20px;
  border-radius: 3px;
}
.blog-share .facebook-share .fab {
  font-size: 20px;
  position: relative;
  top: 2px;
  margin-right: 15px;
}
.blog-share .twitter-share {
  background: #08a0e9;
  color: #fff;
  text-decoration: none;
  height: 60px;
  line-height: 60px;
  padding: 0 20px;
  font-weight: 500;
  border-radius: 3px;
}
.blog-share .twitter-share .fab {
  font-size: 20px;
  position: relative;
  top: 2px;
  margin-right: 15px;
}

@media only screen and (max-width: 544px) {
  .blog-share a {
    width: 100%;
    margin: 10px 0;
  }
}
section#blog {
  overflow: hidden;
}
section#blog .articles-wrapper {
  overflow: hidden;
}
section#blog .articles-wrapper .article {
  overflow: hidden;
  margin-bottom: 5rem;
}
section#blog .articles-wrapper .article .photo {
  background: #f5f5f5 url("../img/logo.svg") center center no-repeat;
  background-size: 33% auto;
  min-height: 300px;
}
section#blog .articles-wrapper .article .text {
  margin: 0;
  padding: 0 60px 20px 60px;
}
section#blog .articles-wrapper .article .text h3 {
  margin: 0 0 20px 0;
}
section#blog .articles-wrapper .article .text h3 a {
  color: #111;
  text-decoration: none;
  font-weight: 400;
}
section#blog .articles-wrapper .article .text h3 a:hover {
  text-decoration: underline;
}
section#blog .articles-wrapper .article .text .icons {
  margin: 30px 0 35px 0;
}
section#blog .articles-wrapper .article .text .icons span {
  margin-right: 20px;
}
section#blog .articles-wrapper .article .text .icons span a {
  text-decoration: none;
  color: #505050;
}
section#blog .articles-wrapper .article .text .icons span i {
  color: #caa76a;
  margin-right: 8px;
  font-size: 1.1em;
}
section#blog .articles-wrapper .article .text p {
  margin-bottom: 30px;
  line-height: 28px;
}
section#blog .articles-wrapper .article .text p a {
  font-weight: 500;
  text-transform: uppercase;
  font-size: 14px;
}
section#blog .articles-wrapper .article .text p:last-child {
  margin: 0;
}
section#blog .articles-wrapper .article .photo {
  margin: 0;
  padding: 0;
  overflow: hidden;
  height: 100%;
}
section#blog .articles-wrapper .article .photo img {
  width: 100%;
}
section#blog .articles-wrapper .article:last-child {
  margin: 0;
}
section#blog .articles-wrapper .article.photo-right .photo {
  float: right;
}
@media only screen and (max-width: 992px) {
  section#blog .articles-wrapper .article .text {
    padding: 10px 30px;
  }
}
@media only screen and (max-width: 768px) {
  section#blog .articles-wrapper .article {
    display: block;
    max-height: 9999px;
  }
  section#blog .articles-wrapper .article .text {
    clear: both;
    text-align: center;
    padding: 20px 20px 0 20px;
  }
  section#blog .articles-wrapper .article .text .icons {
    margin: 30px 0;
  }
  section#blog .articles-wrapper .article .photo {
    max-width: 80%;
    margin: 0 auto;
    float: none !important;
  }
  section#blog .buttons {
    padding: 0 30px;
  }
}
/** _offerform.scss **/
section#offerform .form {
  background: #f5f5f5;
  padding: 5rem;
  text-align: center;
}
section#offerform .form h2 {
  margin: 0 0 3rem 0;
}
section#offerform .form .checkbox {
  margin: 20px 0 10px 0;
  display: inline-block;
  width: 100%;
}
section#offerform .rk {
  overflow: auto;
}
section#offerform .rk .contact {
  padding: 0;
}
section#offerform .rk .contact h4 {
  margin: 0 0 15px 0;
}
section#offerform .rk .contact address {
  margin-bottom: 15px;
  line-height: 28px;
  font-style: normal;
}
section#offerform .rk .map {
  height: 380px;
  background: #f5f5f5;
}
section#offerform .contacts {
  padding: 8rem 0;
}
section#offerform .contacts .icons {
  overflow: auto;
}
section#offerform .contacts .icons .item {
  text-align: center;
}
section#offerform .contacts .icons .item i.fal {
  font-size: 36px;
  color: #caa76a;
  display: block;
  margin: 0 auto;
  margin-bottom: 30px;
}
section#offerform .contacts .icons .item a {
  color: #111;
  font-size: 1.15em;
  font-weight: 500;
}

@media only screen and (max-width: 768px) {
  section#offerform .rk .contact {
    padding: 0 0 6rem 0;
    text-align: center;
  }
  section#offerform .form {
    padding: 3rem;
  }
  section#offerform .form form fieldset button {
    width: calc(100% - 30px);
  }
  section#offerform .contacts .item {
    margin-bottom: 5rem;
  }
  section#offerform .contacts .item:last-child {
    margin-bottom: 0;
  }
}
@media only screen and (max-width: 544px) {
  section#offerform .form {
    padding: 1rem;
  }
}
/** _agents.scss **/
section#agents .agents-wrapper {
  overflow: auto;
  margin-bottom: 5rem;
}
section#agents .agents-wrapper .agent .image-wrapper {
  position: relative;
  height: 400px;
  overflow: hidden;
  border-radius: 2px;
}
section#agents .agents-wrapper .agent .image-wrapper p.name {
  position: absolute;
  z-index: 2;
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  font-size: 1.25em;
  bottom: 30px;
  left: 8%;
  width: 84%;
  text-align: center;
  -webkit-transition: all 0.33s ease;
  transition: all 0.33s ease;
}
section#agents .agents-wrapper .agent .image-wrapper p.mail,
section#agents .agents-wrapper .agent .image-wrapper p.phone {
  width: 100%;
  position: absolute;
  bottom: -30px;
  z-index: 2;
  width: 100%;
  text-align: center;
  color: #fff;
  -webkit-transition: all 0.33s ease;
  transition: all 0.33s ease;
}
section#agents .agents-wrapper .agent .image-wrapper p.mail a,
section#agents .agents-wrapper .agent .image-wrapper p.phone a {
  color: #fff;
}
section#agents .agents-wrapper .agent .image-wrapper p.mail a:hover,
section#agents .agents-wrapper .agent .image-wrapper p.phone a:hover {
  text-decoration: underline;
}
section#agents .agents-wrapper .agent .image-wrapper p.mail i.fal,
section#agents .agents-wrapper .agent .image-wrapper p.phone i.fal {
  margin-right: 8px;
}
section#agents .agents-wrapper .agent .image-wrapper .shadow {
  position: absolute;
  opacity: 0.75;
  width: 100%;
  bottom: 0;
  z-index: 1;
  height: 66%;
  display: block;
  background: rgb(0, 0, 0);
  background: -webkit-gradient(
    linear,
    left bottom,
    left top,
    from(rgb(0, 0, 0)),
    to(rgba(0, 0, 0, 0))
  );
  background: linear-gradient(0deg, rgb(0, 0, 0) 0%, rgba(0, 0, 0, 0) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#000000",endColorstr="#000000",GradientType=1);
}
section#agents .agents-wrapper .agent .image-wrapper img {
  height: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
section#agents .agents-wrapper .agent:hover .image-wrapper img {
  height: calc(100% + 20px);
}
section#agents .agents-wrapper .agent:hover .image-wrapper p.title {
  bottom: 70px;
}
section#agents .agents-wrapper .agent:hover .image-wrapper p.name {
  bottom: 110px;
}
section#agents .agents-wrapper .agent:hover .image-wrapper p.mail {
  bottom: 70px;
  display: block;
}
section#agents .agents-wrapper .agent:hover .image-wrapper p.phone {
  bottom: 30px;
  display: block;
}
section#agents .agents-grid {
  overflow: auto;
  margin: 0 0 5rem 0;
}
section#agents .agents-grid .agent {
  overflow: hidden;
  margin-bottom: 5rem;
}
section#agents .agents-grid .agent .text {
  margin: 0;
  padding: 20px 60px;
}
section#agents .agents-grid .agent .text h3 {
  margin: 0 0 20px 0;
}
section#agents .agents-grid .agent .text .stars {
  margin: 20px 0;
  color: #caa76a;
  font-size: 1.25em;
}
section#agents .agents-grid .agent .text .flags {
  margin: 0 0 30px 0;
}
section#agents .agents-grid .agent .text .flags img {
  margin-right: 5px;
  height: 10px;
  width: 15px;
}
section#agents .agents-grid .agent .text .flags img:last-child {
  margin: 0;
}
section#agents .agents-grid .agent .text .icons {
  margin: 35px 0 40px 0;
}
section#agents .agents-grid .agent .text .icons span {
  margin-right: 30px;
}
section#agents .agents-grid .agent .text .icons span a {
  text-decoration: none;
  color: #111;
}
section#agents .agents-grid .agent .text .icons span i {
  color: #caa76a;
  margin-right: 8px;
  font-size: 1.5em;
  position: relative;
  top: 3px;
}
section#agents .agents-grid .agent .text .icons span.phone i {
  margin-right: 11px;
}
section#agents .agents-grid .agent .text p {
  line-height: 28px;
}
section#agents .agents-grid .agent .text p a {
  font-weight: 500;
}
section#agents .agents-grid .agent .text p:last-child {
  margin: 0;
}
section#agents .agents-grid .agent .photo {
  margin: 0;
  padding: 0;
  overflow: hidden;
  height: 100%;
}
section#agents .agents-grid .agent .photo img {
  width: 100%;
}
section#agents .agents-grid .agent:last-child {
  margin: 0;
}
section#agents .agents-grid .agent.photo-right .photo {
  float: right;
}
section#agents.dopyt {
  padding-top: 0;
}
section#agents.kontakt {
  padding-top: 0;
}

@media only screen and (max-width: 992px) {
  section#agents {
    padding: 5rem 10%;
  }
  section#agents .agents-grid {
    margin: 5rem 0;
  }
  section#agents .agents-grid .agent .text {
    padding: 10px 30px;
  }
  section#agents .agents-grid .agent .text span {
    display: block;
    margin-bottom: 20px;
  }
}
@media only screen and (max-width: 768px) {
  section#agents {
    padding: 5rem 15px;
  }
  section#agents .agents-grid {
    margin: 0;
  }
  section#agents .agents-grid .agent {
    display: block;
    max-height: 9999px;
  }
  section#agents .agents-grid .agent .text {
    clear: both;
    text-align: center;
    padding: 20px 20px 0 20px;
  }
  section#agents .agents-grid .agent .text .icons {
    margin: 30px 0;
  }
  section#agents .agents-grid .agent .photo {
    max-width: 80%;
    margin: 0 auto;
    float: none !important;
  }
}
/** _detail.scss **/
section#sticky-header {
  background: #f5f5f5;
  border-bottom: 1px solid #d9cfe6;
  padding: 0 30px;
  position: fixed;
  top: 90px;
  z-index: 5;
  width: 100%;
}
section#sticky-header h4 {
  float: left;
  margin: 0;
  height: 90px;
  line-height: 90px;
}
section#sticky-header .icons {
  float: right;
  height: 83px;
  line-height: 83px;
}
section#sticky-header .icons span {
  display: inline-block;
  margin: 0 40px 0 0;
  color: #111;
  height: 90px;
  line-height: 90px;
}
section#sticky-header .icons span i.fal {
  display: inline-block;
  color: #caa76a;
  font-size: 1.5em;
  margin-right: 15px;
  position: relative;
  top: 2px;
}
section#sticky-header .icons .address {
  display: none;
}
section#sticky-header .icons.develo.icons span:last-child {
  margin: 0;
}
section#sticky-header .price {
  float: right;
  margin-top: 22px;
  display: inline-block;
  background: #caa76a;
  -webkit-border-top-right-radius: 2px;
  -webkit-border-bottom-right-radius: 2px;
  -moz-border-radius-topright: 2px;
  -moz-border-radius-bottomright: 2px;
  border-top-right-radius: 2px;
  border-bottom-right-radius: 2px;
  margin-left: 20px;
  position: relative;
  padding: 0 15px 0 15px;
  height: 40px;
  line-height: 40px;
}
section#sticky-header .price strong {
  display: inline-block;
  height: 40px;
  line-height: 40px;
  color: #fff;
  font-weight: 500;
}
section#sticky-header .price:before {
  content: "";
  position: absolute;
  display: block;
  left: -20px;
  top: 0;
  width: 0;
  height: 0;
  border-top: 20px solid transparent;
  border-bottom: 20px solid transparent;
  border-right: 20px solid #caa76a;
}
section#sticky-header .price:after {
  content: "";
  background: white;
  border-radius: 50%;
  width: 5px;
  height: 5px;
  display: block;
  position: absolute;
  left: -7px;
  top: 18px;
}

section#sticky-bottom {
  display: none;
  position: fixed;
  z-index: 1;
  bottom: 0;
  width: 100%;
  background: #fff;
  text-align: center;
  padding: 15px 0;
  -webkit-box-shadow: 0px -3px 20px rgba(50, 50, 50, 0.15);
  box-shadow: 0px -3px 20px rgba(50, 50, 50, 0.15);
}
section#sticky-bottom a {
  border: 1px solid #caa76a;
  width: calc(40% - 15px);
  padding: 12px;
}
section#sticky-bottom a:first-child {
  background: transparent;
  color: #caa76a;
  width: calc(60% - 15px);
}

section#carousel .gallery-carousel {
  height: 400px;
}
section#carousel .gallery-carousel a {
  display: block;
  height: 400px;
  margin: 0 5px;
}
section#carousel .gallery-carousel a img {
  height: 100%;
  width: auto;
}
section#carousel .gallery-carousel button {
  visibility: hidden;
  height: 50px;
  width: 50px;
  border-radius: 50%;
  background: #fff;
  line-height: 50px;
  border: none;
}
section#carousel .gallery-carousel button.slick-prev {
  position: absolute;
  z-index: 1;
  left: 20px;
  top: calc(50% - 25px);
}
section#carousel .gallery-carousel button.slick-prev:after {
  color: #caa76a;
  font-size: 1.5em;
  font-family: "Font Awesome 5 Pro";
  content: "\f30a";
}
section#carousel .gallery-carousel button.slick-next {
  position: absolute;
  z-index: 1;
  right: 20px;
  top: calc(50% - 25px);
}
section#carousel .gallery-carousel button.slick-next:after {
  color: #caa76a;
  font-size: 1.5em;
  font-family: "Font Awesome 5 Pro";
  content: "\f30b";
}
section#carousel .gallery-carousel button:hover {
  cursor: pointer;
}
section#carousel .gallery-carousel:hover button {
  visibility: inherit;
}
section#carousel.develo-photos {
  height: 80px;
  margin-top: 10px;
}
section#carousel.develo-photos .gallery-carousel {
  height: 80px;
}
section#carousel.develo-photos .gallery-carousel a {
  height: 80px;
}

section#detail {
  overflow: hidden;
}
section#detail strong {
  font-weight: 500;
}
section#detail .tags {
  text-align: center;
  overflow: hidden;
}
section#detail .tags span {
  background: #111;
  color: #caa76a;
  display: inline-block;
  padding: 4px 8px;
  margin-right: 5px;
  font-size: 0.7em;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.02em;
}
section#detail .tags span:last-child {
  margin-right: 0;
}
section#detail .subhead {
  text-align: center;
  margin: 2rem 0;
}
section#detail .subhead .icons {
  display: inline-block;
  margin-right: 40px;
}
section#detail .subhead .icons span {
  display: inline-block;
  margin: 20px 40px;
  color: #111;
}
section#detail .subhead .icons span i.fal {
  display: inline-block;
  color: #caa76a;
  font-size: 1.5em;
  margin-right: 15px;
  position: relative;
  top: 2px;
}
section#detail .subhead .price {
  display: inline-block;
  background: #caa76a;
  -webkit-border-top-right-radius: 2px;
  -webkit-border-bottom-right-radius: 2px;
  -moz-border-radius-topright: 2px;
  -moz-border-radius-bottomright: 2px;
  border-top-right-radius: 2px;
  border-bottom-right-radius: 2px;
  margin-left: 20px;
  position: relative;
  padding: 0 20px;
  height: 50px;
  line-height: 50px;
}
section#detail .subhead .price strong {
  display: inline-block;
  height: 50px;
  line-height: 50px;
  color: #fff;
  font-size: 1.33em;
}
section#detail .subhead .price:before {
  content: "";
  position: absolute;
  display: block;
  left: -25px;
  top: 0;
  width: 0;
  height: 0;
  border-top: 25px solid transparent;
  border-bottom: 25px solid transparent;
  border-right: 25px solid #caa76a;
}
section#detail .subhead .price:after {
  content: "";
  background: white;
  border-radius: 50%;
  width: 6px;
  height: 6px;
  display: block;
  position: absolute;
  left: -7px;
  top: 21px;
}
section#detail .description {
  margin: 0;
}
section#detail .description p {
  margin: 0 auto;
  max-width: 75%;
  text-align: center;
}
section#detail .description p a {
  display: inline-block;
  margin-top: 15px;
  text-transform: uppercase;
  font-weight: 500;
  font-size: 14px;
}
section#detail .share {
  margin-bottom: 3rem;
  text-align: center;
}
section#detail .share .social {
  display: inline-block;
  margin: 0 0 30px 0;
  width: 100%;
}
section#detail .share .social i.fab {
  position: relative;
  top: 2px;
  display: inline-block;
  font-size: 1.5em;
  margin-left: 20px;
}
section#detail .share .mail,
section#detail .share .see {
  display: inline-block;
  margin-right: 60px;
}
section#detail .share .mail a,
section#detail .share .see a {
  cursor: pointer;
  text-decoration: none;
}
section#detail .share .mail a i.fal,
section#detail .share .see a i.fal {
  position: relative;
  top: 3px;
  display: inline-block;
  font-size: 1.5em;
  margin-right: 14px;
}
section#detail .share .mail a:hover,
section#detail .share .see a:hover {
  text-decoration: underline;
}
section#detail .share .print {
  display: inline-block;
}
section#detail .share .print a {
  cursor: pointer;
  text-decoration: none;
}
section#detail .share .print a i.fal {
  position: relative;
  top: 2px;
  display: inline-block;
  font-size: 1.33em;
  margin-right: 12px;
}
section#detail .share .print a:hover {
  text-decoration: underline;
}
section#detail .buttons {
  border: 1px solid #caa76a;
  overflow: auto;
  padding: 30px;
  border-radius: 2px;
}
section#detail .buttons .button {
  text-align: center;
}
section#detail .buttons .button a {
  text-decoration: none;
}
section#detail .buttons .button a i.fal {
  font-size: 1.15em;
  margin-right: 15px;
}
section#detail .free {
  padding: 5rem 0;
}
section#detail .free table i.fal {
  font-size: 1.33em;
}
section#detail .free table i.fal.yes {
  color: #caa76a;
}
section#detail .free table i.fal.no {
  color: #777;
}
section#detail .free p.link {
  display: block;
  text-align: center;
  margin-top: 30px;
}
section#detail .video.half {
  width: 50%;
  float: left;
}
section#detail .table {
  clear: both;
  overflow: hidden;
  padding: 5rem 0;
}
section#detail .table .items-wrapper {
  overflow: hidden;
  margin-bottom: 30px;
}
section#detail .table .items-wrapper .item {
  overflow: hidden;
  height: 50px;
  line-height: 50px;
  padding: 0 50px;
}
section#detail .table .items-wrapper .item label {
  float: left;
  font-weight: 400;
}
section#detail .table .items-wrapper .item strong {
  float: right;
}
section#detail .table .items-wrapper .item i.fal {
  font-size: 1.33em;
}
section#detail .table .items-wrapper .item i.fal.yes {
  color: #caa76a;
}
section#detail .table .items-wrapper .item i.fal.no {
  color: #777;
}
section#detail .map {
  height: 200px;
  background: #fff;
  border-radius: 2px;
  padding: 3rem 0;
  text-align: center;
  position: relative;
}
section#detail .map a.button {
  position: absolute;
  z-index: 2;
  left: calc(50% - 88px);
  top: calc(50% - 22px);
  -webkit-transition: top ease 0.25s;
  transition: top ease 0.25s;
  text-transform: uppercase;
}
section#detail .map a.button:hover {
  top: calc(50% - 27px);
}
section#detail .map .olMapViewport {
  opacity: 0.5;
}
section#detail .map .olMapViewport .olControlPanZoom,
section#detail .map .olMapViewport .olControlAttribution {
  display: none;
}
section#detail .map.open {
  height: 500px;
}
section#detail .map.open .olMapViewport {
  opacity: 1;
}
section#detail .map.open .olMapViewport .olControlPanZoom,
section#detail .map.open .olMapViewport .olControlAttribution {
  display: block;
}
section#detail .contact {
  overflow: auto;
  margin: 6rem 0 0 0;
}
section#detail .contact .photo {
  float: left;
  width: calc(33.3% - 15px);
  padding: 0;
  border-radius: 2px;
  overflow: hidden;
}
section#detail .contact .photo .text {
  z-index: 2;
  width: 100%;
  position: absolute;
  bottom: 20px;
  text-align: center;
}
section#detail .contact .photo .text h3 {
  margin-bottom: 20px;
  color: #fff;
}
section#detail .contact .photo .text .icons span {
  width: 100%;
  display: block;
  margin-bottom: 20px;
}
section#detail .contact .photo .text .icons span a {
  text-decoration: none;
  color: #fff;
}
section#detail .contact .photo .text .icons span i {
  color: #fff;
  margin-right: 8px;
  font-size: 1.1em;
}
section#detail .contact .photo .shadow {
  position: absolute;
  opacity: 0.75;
  width: 100%;
  bottom: 0;
  z-index: 1;
  height: 66%;
  display: block;
  background: rgb(0, 0, 0);
  background: -webkit-gradient(
    linear,
    left bottom,
    left top,
    from(rgb(0, 0, 0)),
    to(rgba(0, 0, 0, 0))
  );
  background: linear-gradient(0deg, rgb(0, 0, 0) 0%, rgba(0, 0, 0, 0) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#000000",endColorstr="#000000",GradientType=1);
}
section#detail .contact .photo img {
  width: 100%;
  height: auto;
}
section#detail .contact .agent {
  width: calc(33.3% - 15px);
  float: left;
  border: 1px solid #d9cfe6;
  border-radius: 2px;
  padding: 4rem 3rem;
  display: block;
  overflow: auto;
  text-align: center;
}
section#detail .contact .agent .avatar {
  display: inline-block;
  margin-bottom: 20px;
  width: 178px;
  height: 178px;
  overflow: hidden;
  border-radius: 50%;
}
section#detail .contact .agent .avatar img {
  width: 100%;
}
section#detail .contact .agent .text h3 {
  margin: 0 0 20px 0;
}
section#detail .contact .agent .text .flags {
  margin: 0 0 30px 0;
}
section#detail .contact .agent .text .flags img {
  margin-right: 5px;
  height: 10px;
  width: 15px;
}
section#detail .contact .agent .text .flags img:last-child {
  margin: 0;
}
section#detail .contact .agent .text .icons {
  margin: 20px 0 40px 0;
}
section#detail .contact .agent .text .icons span {
  width: 100%;
  display: block;
  margin-bottom: 20px;
}
section#detail .contact .agent .text .icons span a {
  text-decoration: none;
  color: #111;
}
section#detail .contact .agent .text .icons span i {
  color: #caa76a;
  margin-right: 8px;
  font-size: 1.1em;
}
section#detail .contact .form {
  width: calc(66.6% - 15px);
  float: right;
  background: #f5f5f5;
  padding: 3rem;
}
section#detail .contact .form h3 {
  margin-bottom: 30px;
}
section#detail .contact .form button {
  width: calc(100% - 30px);
  margin: 30px 15px 0 15px;
}
section#detail .contact .form p.checkbox {
  display: inline-block;
  overflow: hidden;
  margin: 10px 15px 0 15px;
  max-width: 75%;
}
section#detail .contact .form .styled-checkbox + label:before {
  margin-bottom: 5px;
}
section#detail .contact .form p#recaptcha2 {
  text-align: center;
  margin: 20px 0 0 0;
}
section#detail .contact .form p#recaptcha2 >  div {
  display: inline-block;
}
section#detail .contact .form a.reserve {
  text-align: center;
  display: inline-block;
  width: calc(100% - 30px);
  margin: 50px 15px 15px 15px;
  text-decoration: none;
}
section#detail .contact .form a.reserve i.fal {
  margin-right: 12px;
  font-size: 1.33em;
  position: relative;
  top: 2px;
}
section#detail .contact .form a.reserve:hover {
  text-decoration: underline;
}

@media only screen and (min-width: 1440px) {
  section#sticky-header .icons .address {
    display: inline-block;
  }
}
@media only screen and (max-width: 1200px) {
  section#detail .share .social {
    display: block;
    width: 100%;
    margin-bottom: 3rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1200px) {
  section#sticky-header .icons .date,
  section#sticky-header .icons .address {
    display: none;
  }
}
@media only screen and (max-width: 992px) {
  section#sticky-header {
    top: 60px;
  }
  section#sticky-header h4 {
    width: 100%;
    text-align: center;
  }
  section#sticky-header .icons,
  section#sticky-header .price {
    display: none;
  }
  section#carousel .gallery-carousel {
    height: 250px;
  }
  section#carousel .gallery-carousel a {
    height: 250px;
  }
  section#carousel.develo-photos {
    height: 50px;
  }
  section#carousel.develo-photos .gallery-carousel {
    height: 50px;
  }
  section#carousel.develo-photos .gallery-carousel a {
    height: 50px;
  }
  section#detail {
    padding: 3rem 0;
  }
  section#detail .icons {
    width: 100%;
  }
  section#detail .subhead .price {
    margin-top: 40px;
  }
  section#detail .subhead .icons span {
    margin: 20px 40px;
  }
  section#detail .subhead .icons span:last-child {
    margin: 20px 40px 0 40px;
  }
  section#detail .share .see,
  section#detail .share .mail,
  section#detail .share .print {
    display: block;
    width: 100%;
    margin-bottom: 20px;
  }
  section#detail .share .print {
    margin: 0;
  }
  section#detail .buttons .button {
    margin: 10px 0;
  }
  section#detail .contact .photo {
    width: 80%;
    margin: 0 10% 30px 10%;
  }
  section#detail .contact .agent {
    width: 80%;
    margin: 0 10% 30px 10%;
  }
  section#detail .contact .agent .icons span {
    display: block;
    margin-bottom: 10px;
  }
  section#detail .contact .agent .icons span:last-child {
    margin: 0;
  }
  section#detail .contact .form {
    width: 80%;
    margin: 0 10%;
  }
  section#detail .contact .form p.checkbox {
    max-width: 100%;
  }
}
@media only screen and (max-width: 768px) {
  section#sticky-bottom {
    display: block !important;
  }
  section#sticky-header {
    display: none !important;
  }
  section#carousel .gallery-carousel button {
    display: none;
  }
  section#detail {
    padding: 0 0 3rem 0;
  }
  section#detail .breadcrumb {
    margin-top: 30px;
  }
  section#detail .contact .photo {
    text-align: center;
    float: none;
    width: 80%;
    margin: 0 auto;
    margin-bottom: 30px;
  }
  section#detail .contact .agent {
    text-align: center;
    float: none;
    width: 80%;
    margin: 0 auto;
    margin-bottom: 30px;
  }
  section#detail .contact .agent .avatar {
    float: none;
    display: inline-block;
    margin-right: 0;
  }
  section#detail .contact .agent .text {
    float: none;
  }
}
@media only screen and (max-width: 544px) {
  section#detail .subhead .icons span {
    display: block;
    margin: 0 0 30px 0;
  }
  section#detail .contact .agent,
  section#detail .contact .photo,
  section#detail .contact .form {
    width: 100%;
    margin: 15px 0 0 0;
  }
}
/** _popups.scss **/
.mfp-content h4 {
  margin: 10px 0;
}
.mfp-content form {
  margin: 0 -15px;
}
.mfp-content form fieldset p.checkbox {
  display: inline-block;
  overflow: hidden;
  margin: 0 15px;
}
.mfp-content form fieldset p#recaptcha2 {
  margin: 30px 15px 20px 15px;
}
.mfp-content form fieldset button {
  margin: 10px 0 20px 15px;
}

/** _form.scss **/
form fieldset {
  border: none;
  padding: 0;
  margin: 0;
}
form fieldset .form-group {
  position: relative;
  padding: 0;
  margin-bottom: 20px;
}
form fieldset .form-group select {
  width: calc(100% - 30px);
  display: inline-block;
  border: none;
  border-bottom: 1px solid #505050;
  background: transparent;
  height: 60px;
  font-family: "Poppins", sans-serif;
  color: #666666;
  font-size: 15px;
  cursor: pointer;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border-radius: 0;
  text-indent: 0;
}
form fieldset .form-group select:hover {
  border-color: #caa76a;
}
form fieldset .form-group input {
  position: relative;
  display: block;
  width: calc(100% - 30px);
  border: none;
  border-bottom: 1px solid #505050;
  background-color: transparent;
  margin: 0px auto;
  padding: 20px 0px 0px 0px;
  height: 60px;
  outline: none !important;
  font-size: 1.33em;
  color: #111;
  background: -webkit-gradient(
    linear,
    left bottom,
    left top,
    color-stop(50%, #caa76a),
    color-stop(50%, #caa76a)
  );
  background: linear-gradient(to top, #caa76a 50%, #caa76a 50%);
  background-position: left bottom;
  background-size: 0 1px;
  background-repeat: no-repeat;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
form fieldset .form-group label {
  position: absolute;
  top: 0;
  left: 15px;
  text-align: left;
  display: block;
  width: 100%;
  height: 60px;
  line-height: 80px;
  font-size: 1em;
  background: transparent;
  color: rgba(0, 0, 0, 0.6);
  margin: 0px auto;
  cursor: text;
  -webkit-transition: all 0.15s ease-in-out;
  transition: all 0.15s ease-in-out;
}
form fieldset .form-group input:hover,
form fieldset .form-group input:focus {
  border-color: #caa76a;
}
form fieldset .form-group input:focus {
  background-position: left bottom;
  background-size: 100% 1px;
}
form fieldset .form-group input:valid + label,
form fieldset .form-group input:focus + label {
  height: 20px;
  line-height: 20px;
  font-size: 11px;
  color: #caa76a;
}
form fieldset .form-group input:focus ::-webkit-input-placeholder {
  color: transparent;
  font-size: 0;
}
form fieldset .form-group input:focus :-moz-placeholder {
  color: transparent;
  font-size: 0;
}
form fieldset .form-group input:focus ::-moz-placeholder {
  color: transparent;
  font-size: 0;
}
form fieldset .form-group input:focus :-ms-input-placeholder {
  color: transparent;
  font-size: 0;
}
form fieldset .form-group ::-webkit-input-placeholder {
  text-align: right;
  color: #caa76a;
  font-size: 13px;
  font-weight: 400;
}
form fieldset .form-group :-moz-placeholder {
  text-align: right;
  color: #caa76a;
  font-size: 13px;
  font-weight: 400;
}
form fieldset .form-group ::-moz-placeholder {
  text-align: right;
  color: #caa76a;
  font-size: 13px;
  font-weight: 400;
}
form fieldset .form-group :-ms-input-placeholder {
  text-align: right;
  color: #caa76a;
  font-size: 13px;
  font-weight: 400;
}
form fieldset .form-text {
  margin-bottom: 20px;
}
form fieldset .form-text textarea {
  background: transparent;
  width: 100%;
  height: 34px;
  border: none;
  border-bottom: 1px solid #505050;
  resize: none;
  font-size: 20px;
  color: #111;
  -webkit-transition: all 0.15s ease-in-out;
  transition: all 0.15s ease-in-out;
}
form fieldset .form-text textarea:hover,
form fieldset .form-text textarea:focus {
  border-bottom: 1px solid #caa76a;
}
form fieldset ::-webkit-input-placeholder {
  text-align: left;
  color: #666;
  font-size: 15px;
  font-family: "DM Sans", sans-serif;
  font-weight: 400;
}
form fieldset :-moz-placeholder {
  text-align: left;
  color: #666;
  font-size: 15px;
  font-family: "DM Sans", sans-serif;
  font-weight: 400;
}
form fieldset ::-moz-placeholder {
  text-align: left;
  color: #666;
  font-size: 15px;
  font-family: "DM Sans", sans-serif;
  font-weight: 400;
}
form fieldset :-ms-input-placeholder {
  text-align: left;
  color: #666;
  font-size: 15px;
  font-family: "DM Sans", sans-serif;
  font-weight: 400;
}
form fieldset button {
  margin-top: 30px;
  cursor: pointer;
  padding: 15px 40px;
  background: #caa76a;
  font-family: "DM Sans", sans-serif;
  font-weight: 500;
  text-transform: uppercase;
  font-size: 15px;
  color: #fff;
  text-decoration: none;
  border: none;
  border-radius: 2px;
}
form fieldset button i {
  margin-right: 15px;
}
form fieldset .g-recaptcha {
  text-align: center;
  margin: 30px 0 0 0;
}
form fieldset .g-recaptcha > div {
  display: inline-block;
}
form fieldset .styled-checkbox {
  position: absolute;
  opacity: 0;
}
form fieldset .styled-checkbox + label {
  position: relative;
  cursor: pointer;
  padding: 0;
  font-weight: 400;
}
form fieldset .styled-checkbox + label:before {
  content: "";
  margin-right: 15px;
  display: inline-block;
  vertical-align: text-top;
  width: 20px;
  height: 20px;
  background: white;
  border: 1px solid #d9cfe6;
  margin-top: 1px;
}
form fieldset .styled-checkbox:hover + label:before {
  background: #caa76a;
}
form fieldset .styled-checkbox:focus + label:before {
  -webkit-box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.12);
  box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.12);
}
form fieldset .styled-checkbox:checked + label:before {
  background: #caa76a;
}
form fieldset .styled-checkbox:disabled + label {
  color: #b8b8b8;
  cursor: auto;
}
form fieldset .styled-checkbox:disabled + label:before {
  -webkit-box-shadow: none;
  box-shadow: none;
  background: #ddd;
}
form fieldset .styled-checkbox:checked + label:after {
  content: "";
  position: absolute;
  left: 5px;
  top: 10px;
  background: white;
  width: 2px;
  height: 2px;
  -webkit-box-shadow:
    2px 0 0 white,
    4px 0 0 white,
    4px -2px 0 white,
    4px -4px 0 white,
    4px -6px 0 white,
    4px -8px 0 white;
  box-shadow:
    2px 0 0 white,
    4px 0 0 white,
    4px -2px 0 white,
    4px -4px 0 white,
    4px -6px 0 white,
    4px -8px 0 white;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

/** _table.scss **/
table {
  width: 100%;
  border-collapse: collapse;
  min-width: 800px;
  overflow-x: auto;
}
table thead {
  background: #111;
  height: 40px;
  line-height: 40px;
}
table thead th {
  text-align: center;
  font-weight: 500;
  font-size: 0.88em;
}
table thead th a {
  color: #fff;
}
table thead th a.active {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
}
table tbody tr {
  border-bottom: 1px solid #d9cfe6;
}
table tbody tr td {
  text-align: center;
}
table tbody tr td img {
  height: 30px;
  margin: 10px 0 4px 0;
}
table tbody tr:last-child {
  border: none;
}
table tbody tr:hover {
  cursor: pointer;
  background: #f5f5f5;
}
table.responsive {
  min-width: 1px;
}
@media only screen and (min-width: 1200px) {
  table.responsive td.lg,
  table.responsive th.lg {
    display: table-cell !important;
  }
}
@media only screen and (min-width: 992px) {
  table.responsive td.md,
  table.responsive th.md {
    display: table-cell !important;
  }
}
@media only screen and (min-width: 768px) {
  table.responsive td.sm,
  table.responsive th.sm {
    display: table-cell !important;
  }
}
@media only screen and (min-width: 544px) {
  table.responsive td.xs,
  table.responsive th.xs {
    display: table-cell !important;
  }
}
table.responsive td.lg,
table.responsive td.md,
table.responsive td.sm,
table.responsive td.xs,
table.responsive th.lg,
table.responsive th.md,
table.responsive th.sm,
table.responsive th.xs {
  display: none;
}

/** _bottom.scss **/
section#bottom {
  background: #f5f5f5;
  padding: 6rem 0;
  text-align: center;
}
section#bottom h3 {
  margin: 0;
}
section#bottom .member {
  margin: 0 0 2rem 0;
}
section#bottom p {
  max-width: 80%;
  margin: 0 auto;
  margin-bottom: 20px;
  line-height: 28px;
}
section#bottom p:last-child {
  margin: 0 auto;
}
section#bottom .contact {
  overflow: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 6rem;
}
section#bottom .contact .map .olMapViewport {
  height: 100%;
}
section#bottom .contact .form {
  background: #fff;
  padding: 2rem 3rem 3rem 3rem;
  border-radius: 2px;
}
section#bottom .contact .form p.checkbox {
  display: inline-block;
  margin: 20px 0 10px 0;
  max-width: calc(100% - 30px);
  text-align: left;
}
section#bottom .contact .form .styled-checkbox + label:before {
  margin-bottom: 5px;
}
section#bottom .submenu {
  clear: both;
  overflow: auto;
  overflow-y: hidden;
  margin: 6rem 0 0 0;
  padding-bottom: 5px;
}
section#bottom .submenu h4 {
  margin-top: 0px;
}

@media only screen and (max-width: 768px) {
  section#bottom {
    padding-bottom: 0;
  }
  section#bottom .contact {
    display: block;
  }
  section#bottom .contact .map .olMapViewport {
    height: 300px !important;
  }
  section#bottom .contact .form p.checkbox {
    text-align: center;
  }
  section#bottom .submenu .item {
    margin-bottom: 5rem;
  }
  section#bottom .submenu .item:last-child {
    margin: 0;
  }
}
/** _footer.scss **/
footer {
  padding: 2rem 0;
  text-align: center;
}
footer .container >  a {
  display: inline-block;
  margin: 30px 0 0 0;
}
footer .container p {
  font-size: 0.88em;
  line-height: 1.75em;
}
footer .container p.social {
  margin: 0 0 20px 0;
}
footer .container p.social a {
  border: none !important;
  display: inline-block;
  margin: 0 10px;
  font-size: 20px;
}
footer .container p.bo {
  margin-top: 40px;
}
footer .container p.bo a {
  border-bottom: none;
}

/** _modal.scss **/
.mfp-content button:not(.mfp-close) {
  background: #caa76a;
  font-weight: 500;
  color: #fff;
  font-size: 0.95em;
  letter-spacing: 0.015em;
  text-decoration: none;
  padding: 12px 24px;
  -webkit-transition: top ease 0.25s;
  transition: top ease 0.25s;
  border-radius: 2px;
  margin-top: 30px;
}
.mfp-content button:not(.mfp-close).close {
  background: #ccc;
  color: #222;
  float: right;
}

#termin1,
#termin2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  margin: 20px 0;
}
#termin1 .mtr-row:first-child,
#termin2 .mtr-row:first-child {
  -webkit-box-ordinal-group: 3;
  -ms-flex-order: 2;
  order: 2;
}

.mtr-datepicker .mtr-content,
.mtr-datepicker .mtr-content .mtr-values .mtr-default-value,
.mtr-datepicker .mtr-content .mtr-values .mtr-default-value-name,
.mtr-datepicker .mtr-content .mtr-values .mtr-default-value.has-name {
  background: #111 !important;
}

.mtr-datepicker .mtr-input-slider .mtr-content .mtr-input {
  color: #fff;
}

.mtr-datepicker .mtr-content input,
.mtr-datepicker .mtr-content input .mtr-values .mtr-default-value,
.mtr-datepicker .mtr-content input .mtr-values .mtr-default-value-name,
.mtr-datepicker .mtr-content input .mtr-values .mtr-default-value.has-name,
.mtr-datepicker .mtr-content.mtr-active,
.mtr-datepicker .mtr-content.mtr-active .mtr-values .mtr-default-value,
.mtr-datepicker .mtr-content.mtr-active .mtr-values .mtr-default-value-name,
.mtr-datepicker .mtr-content.mtr-active .mtr-values .mtr-default-value.has-name,
.mtr-datepicker .mtr-content:hover,
.mtr-datepicker .mtr-content:hover .mtr-values .mtr-default-value,
.mtr-datepicker .mtr-content:hover .mtr-values .mtr-default-value-name,
.mtr-datepicker .mtr-content:hover .mtr-values .mtr-default-value.has-name,
.mtr-datepicker .mtr-content .mtr-input,
.mtr-datepicker .mtr-content input,
.mtr-datepicker .mtr-content:hover {
  background: #caa76a !important;
}

/** _custom.scss **/
.olControlAttribution.olControlNoSelect {
  bottom: 0;
}

.markerContent {
  height: 530px;
  width: 240px;
  overflow: hidden;
}

/* _hypo.scss */
.hypo {
  margin: 5rem 0;
  overflow: auto;
}
.hypo .form {
  overflow: auto;
  padding: 30px 30px 10px 30px;
  background: #f5f5f5;
}
.hypo .form a.logo {
  float: left !important;
  margin: 10px 0 20px 0;
}
.hypo .form a.logo img {
  height: 40px;
}
.hypo .form p.sum {
  height: 30px;
  line-height: 30px !important;
  float: right !important;
  width: 180px !important;
  text-align: left !important;
  margin: 0px !important;
}
.hypo .form p.sum small {
  float: right;
  height: 30px;
  line-height: 26px;
  font-size: 1em;
  color: #caa76a;
}
.hypo .form p.sum input[type="text"] {
  background: #f5f5f5;
  font-size: 1.5em;
  font-weight: 500;
  float: right;
  height: 30px;
  line-height: 30px;
  border: none;
  text-align: right;
  width: 120px;
  padding: 0 10px;
}
.hypo .form p.sum input[type="text"]:disabled {
  color: #111;
}
.hypo .form .line {
  margin-bottom: 20px;
  overflow: hidden;
  float: left;
  width: 100%;
  height: 30px;
  line-height: 30px;
}
.hypo .form .line label {
  color: #111;
  font-weight: 500;
  float: left;
  display: block;
  width: 150px;
  margin-bottom: 5px;
  margin-right: 30px;
}
.hypo .form .line input[type="range"] {
  width: calc(100% - 380px);
  margin: 13px 0;
  float: left;
  background: transparent;
}
.hypo .form .line.final {
  margin: 10px 0 0 0;
  height: 60px;
}
.hypo .form .line.final label {
  margin: 3px 0;
  width: 150px;
  float: left;
  line-height: 18px;
  text-align: left;
  margin-right: 30px;
}
.hypo .form .line.final p.sum {
  float: left !important;
  text-align: left !important;
  margin: 4px 0 !important;
  width: 160px !important;
}
.hypo .form .line.final p.sum strong {
  float: left;
  font-size: 2.5em;
  font-weight: bold;
  margin-right: 10px;
  color: #111 !important;
}
.hypo .form .line.final p.sum small {
  float: left;
  line-height: 16px;
}
.hypo .form .line.final a.button {
  float: right;
  padding: 0 30px;
  margin-top: 5px;
  height: 40px;
  line-height: 40px;
  background: #caa76a;
  text-transform: uppercase;
  border: 0;
  color: #ffffff;
  cursor: pointer;
}

/* range slider */
input[type="range"] {
  -webkit-appearance: none;
  width: 100%;
  margin: 8.5px 0;
}

input[type="range"]:focus {
  outline: none;
}

input[type="range"]::-webkit-slider-runnable-track {
  width: 100%;
  height: 3px;
  cursor: pointer;
  -webkit-box-shadow:
    0px 0px 0px rgba(0, 0, 0, 0),
    0px 0px 0px rgba(13, 13, 13, 0);
  box-shadow:
    0px 0px 0px rgba(0, 0, 0, 0),
    0px 0px 0px rgba(13, 13, 13, 0);
  background: #caa76a;
  border-radius: 0px;
  border: 0px solid #010101;
}

input[type="range"]::-webkit-slider-thumb {
  -webkit-box-shadow:
    0px 0px 1.9px #000000,
    0px 0px 0px #0d0d0d;
  box-shadow:
    0px 0px 1.9px #000000,
    0px 0px 0px #0d0d0d;
  border: 0px solid #000000;
  height: 20px;
  width: 20px;
  border-radius: 50%;
  background: #ffffff;
  cursor: pointer;
  -webkit-appearance: none;
  margin-top: -8.5px;
}

input[type="range"]:focus::-webkit-slider-runnable-track {
  background: #caa76a;
}

input[type="range"]::-moz-range-track {
  width: 100%;
  height: 3px;
  cursor: pointer;
  box-shadow:
    0px 0px 0px rgba(0, 0, 0, 0),
    0px 0px 0px rgba(13, 13, 13, 0);
  background: #caa76a;
  border-radius: 50%;
  border: 0px solid #010101;
}

input[type="range"]::-moz-range-thumb {
  box-shadow:
    0px 0px 1.9px #000000,
    0px 0px 0px #0d0d0d;
  border: 0px solid #000000;
  height: 20px;
  width: 10px;
  border-radius: 50%;
  background: #ffffff;
  cursor: pointer;
}

input[type="range"]::-ms-track {
  width: 100%;
  height: 3px;
  cursor: pointer;
  background: transparent;
  border-color: transparent;
  color: transparent;
}

input[type="range"]::-ms-fill-lower {
  background: #caa76a;
  border: 0px solid #010101;
  border-radius: 50%;
  box-shadow:
    0px 0px 0px rgba(0, 0, 0, 0),
    0px 0px 0px rgba(13, 13, 13, 0);
}

input[type="range"]::-ms-fill-upper {
  background: #caa76a;
  border: 0px solid #010101;
  border-radius: 50%;
  box-shadow:
    0px 0px 0px rgba(0, 0, 0, 0),
    0px 0px 0px rgba(13, 13, 13, 0);
}

input[type="range"]::-ms-thumb {
  box-shadow:
    0px 0px 1.9px #000000,
    0px 0px 0px #0d0d0d;
  border: 0px solid #000000;
  height: 20px;
  width: 10px;
  border-radius: 50%;
  background: #ffffff;
  cursor: pointer;
  height: 3px;
}

input[type="range"]:focus::-ms-fill-lower {
  background: #caa76a;
}

input[type="range"]:focus::-ms-fill-upper {
  background: #caa76a;
}

/* hypokalkulacka */
@media (max-width: 1200px) {
  .hypo .form .line {
    height: 60px !important;
  }
  .hypo .form .line label {
    width: 100% !important;
    margin: 0 !important;
  }
  .hypo .form .line input[type="range"] {
    width: calc(100% - 180px) !important;
    margin-left: -10px;
  }
  .hypo .form .line.final {
    height: 110px !important;
  }
  .hypo .form .line.final a.button {
    float: left;
    width: 100%;
    text-align: center;
    padding: 0;
    margin-bottom: 20px;
  }
  .hypo .form .line.final label {
    width: 140px !important;
  }
  .hypo .form .line.final p.sum {
    width: initial !important;
    float: right !important;
    text-align: right !important;
    margin-right: 0 !important;
  }
  .hypo .form .line.final p.sum small {
    float: right !important;
  }
}

/* _map.scss */
/* #map {
	.infowindow {
		img {
		    max-width: 100%;
    		max-height: 200px;
		}

		h2 {
			font-size: 1.5em;
    		margin: 5px 0 10px 0;
		}

		p {
			overflow: hidden;
			height: 28px;
			line-height: 28px;

			label {
				float: left;
			}

			strong {
				float: right;
			}
		}

		a.button {
			float: left;
			width: 100%;
			text-align: center;
		}

		a:not(.button) {
			float: left;
			clear: left;
			margin-top: 10px;
			font-size: 0.9em;
			display: inline-block;
			text-align: center;
			width: 100%;
		}
	}
} */
#OpenLayers_Map_2_OpenLayers_Container {
  height: 100%;
  width: 100%;
}

#map #pop_close,
#map #pop_FrameDecorationDiv_0,
#map #pop_FrameDecorationDiv_1,
#map #pop_FrameDecorationDiv_2,
#map #pop_FrameDecorationDiv_3,
#map #pop_FrameDecorationDiv_4 {
  display: none !important;
}
#map .markerContent {
  width: 320px !important;
  height: 287px !important;
  background: #fff;
  overflow: hidden;
}
#map .image-wrapper {
  width: 100%;
  height: 160px;
}
#map .image-wrapper .tags {
  position: absolute;
  z-index: 2;
  top: 15px;
  left: 15px;
  text-align: left;
}
#map .image-wrapper .tags span {
  background: #caa76a;
  color: #fff;
  padding: 4px 8px;
  margin-right: 5px;
  font-size: 0.7em;
  text-transform: uppercase;
  font-weight: 500;
  letter-spacing: 0.02em;
}
#map .image-wrapper .tags span:last-child {
  margin: 0;
}
#map .text-wrapper {
  padding: 15px;
}
#map .text-wrapper p.title {
  height: 40px;
  overflow: hidden;
  line-height: 20px;
}
#map .text-wrapper p.title a {
  border-color: transparent;
  font-weight: 500;
}
#map .text-wrapper p.title a:hover {
  border: none;
}
#map .text-wrapper p.icons {
  margin: 8px 0;
}
#map .text-wrapper p.icons span {
  margin-right: 15px;
}
#map .text-wrapper p.icons span small {
  font-weight: 500;
  color: #111;
  margin-left: 7px;
  font-size: 13px !important;
  position: relative;
  top: -1px;
}
#map .text-wrapper p.icons span:last-child {
  margin: 0;
}
#map .text-wrapper p.cena {
  font-size: 14px;
}

section#nacenenie {
  padding: 0 0 5rem 0;
}
section#nacenenie .line {
  margin-bottom: 10px;
}
section#nacenenie .button {
  padding: 16px 40px;
  margin-top: 30px;
}
section#nacenenie input[type="text"] {
  font-family: "DM Sans", sans-serif;
  border: none;
  height: 58px;
  width: 100%;
  padding-left: 20px;
  font-size: 15px;
  border: 1px solid #d0d0d0;
}
section#nacenenie .checkbox {
  display: inline-block;
  margin: 0 20px;
}
@media only screen and (max-width: 768px) {
  section#nacenenie .checkbox {
    margin: 0 20px 20px 20px;
  }
}

section#image-grid {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

section#image-grid .item {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

section#image-grid .item .content p,
section#image-grid .item .content ul li {
  line-height: 1.65em;
}

section#image-grid .item.img-sm,
section#image-grid .item.img-md {
  grid-template-columns: repeat(12, 1fr);
}

section#image-grid .item.img-sm .img-wrapper {
  grid-column: span 3;
}

section#image-grid .item.img-sm > div:not(.img-wrapper) {
  grid-column: span 9;
}

section#image-grid .item.img-md .img-wrapper {
  grid-column: span 6;
}

section#image-grid .item.img-md.center .img-wrapper {
  grid-column: 4 / 10;
}

section#image-grid .item.img-md > div:not(.img-wrapper) {
  grid-column: span 6;
}

section#image-grid .item.img-full {
  grid-template-columns: 1fr;
}

section#image-grid .item .img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 10px;
}

section#image-grid .item > div:not(.img-wrapper) {
  width: 100%;
  padding: 10px 32px;
}

section#image-grid .item > div.center:not(.img-wrapper) {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

@media screen and (max-width: 768px) {
  section#image-grid .item {
    grid-template-columns: 1fr !important;
    text-align: center;
  }

  section#image-grid .item .img-wrapper {
    margin-top: 3rem;
    order: 2;
  }

  section#image-grid .item > div.center:not(.img-wrapper) {
    text-align: center;
  }
}

#list-items ul {
  display: grid;
  gap: 2px;
  grid-template-columns: 1fr 1fr;
  list-style: none;
  padding-bottom: 4rem;
  padding-left: 0;
}

#list-items ul li {
  background-color: #f5f5f5;
  padding: 2rem;
  text-align: center;
}
#list-items ul li:last-child:nth-child(odd),
#list-items ul li.span2 {
  grid-column: span 2;
}

#list-items ul li.span1 {
  grid-column: span 1 !important;
}

@media screen and (max-width: 768px) {
  #list-items ul {
    grid-template-columns: 1fr !important;
  }
  #list-items ul li {
    grid-column: span 1 !important;
  }
}

/** _nav-check: show burger + overflow panel **/

/* Burger: float-right at its natural DOM position, same style as mobile */
header.nav-show-burger a.menu {
  display: block !important;
  float: right;
  font-size: 1.33em;
  color: #000;
  height: 50px;
  width: 50px;
  line-height: 50px;
  text-align: center;
  margin: 20px 0;
}
header.white.nav-show-burger a.menu {
  color: #fff;
}
header.small.nav-show-burger a.menu {
  margin: 20px 15px;
  width: auto;
}

/* Panel: fixed strip below the header showing hidden items as a flex row */
.nav-expanded-panel {
  display: none;
  position: fixed;
  left: 0;
  right: 0;
  background: #fff;
  z-index: 8;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.07);
}
.nav-expanded-panel.open {
  display: block;
}
.nav-expanded-panel > ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0 20px;
  height: auto;
  line-height: normal;
}
.nav-expanded-panel > ul > li {
  display: inline-block;
  float: none;
  margin: 0 15px;
  height: 50px;
  line-height: 50px;
  text-align: center;
}
.nav-expanded-panel > ul > li > a {
  color: #111;
  font-weight: 500;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.033em;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  -webkit-transition: border 0.25s ease;
  transition: border 0.25s ease;
}
.nav-expanded-panel > ul > li > a:hover,
.nav-expanded-panel > ul > li > a.active {
  border-bottom-color: #caa76a;
}
/* dropdown sub-menus inside panel */
.nav-expanded-panel > ul > li.dropdown {
  position: relative;
}
.nav-expanded-panel > ul > li.dropdown > ul {
  display: none;
  position: absolute;
  top: 100%;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  background: #caa76a;
  border-radius: 2px;
  list-style: none;
  padding: 10px 20px;
  min-width: 150px;
  height: auto;
  line-height: 40px;
  z-index: 9;
}
.nav-expanded-panel > ul > li.dropdown:hover > ul {
  display: block;
}
.nav-expanded-panel > ul > li.dropdown > ul > li {
  display: block;
  height: 40px;
  line-height: 40px;
  white-space: nowrap;
  text-align: center;
  margin: 0;
}
.nav-expanded-panel > ul > li.dropdown > ul > li > a {
  color: #fff;
}
.nav-expanded-panel > ul > li.dropdown > a::after {
  content: "\f107";
  font-family: "Font Awesome 5 Pro";
  font-weight: 900;
  margin-left: 5px;
}
/* social icon cluster inside panel */
.nav-expanded-panel > ul > li.social-wrapper > ul {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  position: static;
  background: none;
  border-radius: 0;
  height: auto;
  line-height: 50px;
  padding: 0;
  gap: 15px;
  margin: 0;
  -webkit-transform: none;
  transform: none;
  min-width: unset !important;
}
.nav-expanded-panel > ul > li.social-wrapper > ul > li.social {
  display: inline-block;
  height: 50px;
  line-height: 50px;
  width: auto;
  margin: 0;
}
.nav-expanded-panel > ul > li.social-wrapper > ul > li.social > a {
  color: #111;
  font-size: 1.2em;
  border: none;
}

/* Panel: mobile/tablet vertical dropdown style (full menu, one item per row) */
.nav-expanded-panel.mobile-style > ul {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  padding: 10px 0;
}
.nav-expanded-panel.mobile-style > ul > li {
  display: block;
  width: 100%;
  margin: 0;
  text-align: center;
  height: 50px;
  line-height: 50px;
}
.nav-expanded-panel.mobile-style > ul > li.dropdown > ul {
  position: relative;
  left: auto;
  top: auto;
  -webkit-transform: none;
  transform: none;
  margin: 0 auto;
}
.nav-expanded-panel.mobile-style > ul > li.social-wrapper > ul {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
/* Cloned "Pracujeme inak" (a.button.right) shown in the panel */
.nav-expanded-panel > ul > li.button {
  height: auto;
  line-height: normal;
  padding: 10px 0;
}
.nav-expanded-panel > ul > li.button > a.button {
  display: inline-block;
}

/* Tablet (1026-1440): both menus sit on a single centered row below the centered logo.
   white-space:nowrap + JS hide-overflow keeps everything on one line. The header reserves
   a fixed strip on the right for the absolutely-positioned burger so it never overlays
   the menus. */
@media only screen and (min-width: 1026px) and (max-width: 1440px) {
  header {
    text-align: center;
    padding: 100px 80px 0 80px;
    height: 180px;
    white-space: nowrap;
  }
  header a.logo {
    top: 10px;
  }
  header a.right {
    display: none;
  }
  header ul.menu,
  header ul.menu.right {
    display: inline-block;
    float: none !important;
    width: auto;
    height: 70px;
    line-height: 70px;
    margin: 0;
    padding: 0;
    vertical-align: middle;
    white-space: nowrap;
  }
  header ul.menu > li {
    display: inline-block;
    float: none;
    width: auto;
    margin: 0 15px;
    text-align: center;
    padding: 0;
    vertical-align: middle;
    height: 70px;
    line-height: 70px;
  }
  header ul.menu li.button,
  header ul.menu li.social {
    margin: 0 15px;
  }
  /* Normalize the social-wrapper sub-ul so it shares the 70px row baseline */
  header ul li.social-wrapper > ul {
    padding: 0;
    height: 70px;
    line-height: 70px;
    gap: 14px;
    vertical-align: middle;
  }
  header ul li.social-wrapper > ul > li {
    height: 70px;
    line-height: 70px;
  }
  header ul.social {
    display: none;
  }
  /* Burger anchored in the right padding strip so menus never flow under it */
  header.nav-show-burger a.menu {
    position: absolute;
    top: 100px;
    right: 15px;
    margin: 10px 0;
    float: none;
  }
  header.small {
    height: 140px;
    padding: 70px 80px 0 80px;
  }
  header.small.nav-show-burger a.menu {
    top: 75px;
    margin: 5px 0;
  }
}

/* Mobile dropdown (<=1025px): ensure menu text is visible regardless of nav-expanded-panel styles */
@media only screen and (max-width: 1025px) {
  header ul.menu li a {
    color: #111 !important;
  }
  header.white ul.menu li a {
    color: #000 !important;
  }
  header ul.menu li ul li a {
    color: #fff !important;
  }
  header.small.nav-show-burger a.menu{
    line-height: 40px;
    margin: 10px 0;
    height: 40px;
  }
}

/* redizajn */

.stat-band {
  position: relative;
  background: #f7f6f3;
  border-radius: 2px;
  padding: 4rem 3rem;
}

.stat-band::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  border-radius: 2px;
  background: #caa76a;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.stat-band.is-visible::before {
  transform: scaleX(1);
}

.stat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.stat-item {
  position: relative;
  padding: 0 2rem;
}

.stat-item:first-child {
  padding-left: 0;
}

.stat-item + .stat-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.35rem;
  bottom: 0.35rem;
  width: 1px;
  background: rgba(20, 22, 26, 0.1);
}

.stat-tick {
  display: block;
  width: 24px;
  height: 2px;
  border-radius: 2px;
  background: #caa76a;
  margin-bottom: 1.5rem;
  transform: scaleX(0);
  transform-origin: left center;
  transition:
    transform 0.7s cubic-bezier(0.16, 1, 0.3, 1) 0.15s,
    width 0.4s ease;
}

.stat-band.is-visible .stat-tick {
  transform: scaleX(1);
}

.stat-item:hover .stat-tick {
  width: 48px;
}

.stat-num {
  display: flex;
  align-items: baseline;
  gap: 0.3rem;
  color: #14161a;
  font-size: clamp(2.4rem, 4.2vw, 3.75rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.03em;
  white-space: nowrap;
}

.stat-suf {
  font-size: 0.4em;
  font-weight: 600;
  white-space: nowrap;
}

.stat-label {
  margin-top: 1rem;
  max-width: 12rem;
  color: rgba(20, 22, 26, 0.75);
  font-size: 0.875rem;
  line-height: 1.55;
}

@media (max-width: 991px) {
  .stat-band {
    padding: 3rem 2rem;
  }

  .stat-grid {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 2.75rem;
  }

  .stat-item {
    padding: 0 1.5rem;
  }

  .stat-item:nth-child(odd) {
    padding-left: 0;
  }

  .stat-item:nth-child(odd)::before {
    display: none;
  }
}

@media (max-width: 575px) {
  .stat-band {
    padding: 2.5rem 1.5rem;
  }

  .stat-grid {
    grid-template-columns: 1fr;
    row-gap: 2rem;
  }

  .stat-item,
  .stat-item:nth-child(odd) {
    padding: 0;
  }

  .stat-item + .stat-item::before {
    top: -1rem;
    bottom: auto;
    width: 100%;
    height: 1px;
  }

  .stat-label {
    max-width: none;
  }
}

.intro-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: start;
}

.intro-main {
  padding-right: 4rem;
}

.intro-logo {
  display: block;
  width: auto;
  height: 52px;
  margin-bottom: 1.75rem;
}

.intro-lead {
  margin: 0;
  color: #14161a;
  font-size: 1.45rem;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: -0.015em;
}

.intro-side {
  position: relative;
  padding-left: 4rem;
}

.intro-side::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.35rem;
  bottom: 0.35rem;
  width: 1px;
  background: rgba(20, 22, 26, 0.1);
}

.intro-side p {
  margin: 0;
  color: rgba(20, 22, 26, 0.75);
  font-size: 1rem;
  line-height: 1.65;
}

.intro-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
  margin-top: 2rem;
}

@media (max-width: 991px) {
  .intro-block {
    grid-template-columns: 1fr;
    row-gap: 2rem;
  }

  .intro-main {
    padding-right: 0;
  }

  .intro-side {
    padding-left: 0;
    padding-top: 2rem;
  }

  .intro-side::before {
    left: 0;
    top: 0;
    bottom: auto;
    width: 100%;
    height: 1px;
  }
}

@media (max-width: 575px) {
  .intro-actions {
    flex-direction: column;
    align-items: stretch;
  }
}

.ways {
    text-align: left;
}

.ways-head {
    margin-bottom: 3rem;
}

.ways .ways-head {
    margin-bottom: 5rem;
}

.ways-name {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.ways-name b {
    color: #14161A;
    font-size: .95rem;
    font-weight: 600;
    letter-spacing: -.01em;
    white-space: nowrap;
}

.ways-rule {
    display: block;
    flex: none;
    width: 56px;
    height: 1px;
    background: rgba(20, 22, 26, .25);
}

.ways-head h2 {
    margin: 0 0 2rem 0;
    color: #14161A;
    font-size: clamp(1.9rem, 3.6vw, 3rem);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -.035em;
    text-transform: none;
}

.ways-sub {
    margin: 0;
    color: rgba(20, 22, 26, .75);
    font-size: 1.0625rem;
    line-height: 1.7;
}

.way {
    display: grid;
    grid-template-columns: 5fr 7fr;
    column-gap: 4rem;
    align-items: stretch;
}

.way+.way {
    margin-top: 5rem;
    padding-top: 5rem;
    border-top: 1px solid rgba(20, 22, 26, .1);
}

.way.reverse {
    grid-template-columns: 7fr 5fr;
}

.way.reverse .way-media {
    order: 2;
}

.way.reverse .way-body {
    order: 1;
}

.way-media {
    display: flex;
}

.way-media img {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 26rem;
    object-fit: cover;
    border-radius: 2px;
}

.way-body h3 {
    margin: 0 0 1rem 0;
    color: #14161A;
    font-size: clamp(1.25rem, 1.9vw, 1.6rem);
    font-weight: 700;
    line-height: 1.25;
    letter-spacing: -.02em;
    text-transform: none;
}

.way-intro {
    margin: 0 0 2.5rem 0;
    max-width: 38rem;
    color: rgba(20, 22, 26, .75);
    font-size: 1rem;
    line-height: 1.65;
}

.way-list {
    border-top: 1px solid rgba(20, 22, 26, .1);
}

.way-item {
    display: grid;
    grid-template-columns: minmax(0, 11rem) 1fr auto;
    column-gap: 2rem;
    align-items: baseline;
    padding: 1.5rem .5rem;
    border-bottom: 1px solid rgba(20, 22, 26, .1);
    text-decoration: none;
    color: inherit;
    -webkit-transition: background .3s ease;
    transition: background .3s ease;
}

.way-item-title {
    color: #14161A;
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.4;
    letter-spacing: -.01em;
}

.way-item-text {
    color: rgba(20, 22, 26, .75);
    font-size: .9375rem;
    line-height: 1.6;
}

.way-item-go {
    color: #CAA76A;
    font-size: 1rem;
    line-height: 1.4;
    -webkit-transition: -webkit-transform .4s cubic-bezier(.16, 1, .3, 1);
    transition: transform .4s cubic-bezier(.16, 1, .3, 1);
}

a.way-item .way-item-title {
    -webkit-transition: color .3s ease;
    transition: color .3s ease;
}

a.way-item:hover {
    background: #F7F6F3;
}

a.way-item:hover .way-item-title {
    color: #CAA76A;
}

a.way-item:hover .way-item-go {
    -webkit-transform: translateX(6px);
    transform: translateX(6px);
}

.way-facts p {
    margin: 0 0 1.5rem 0;
    max-width: 38rem;
    color: rgba(20, 22, 26, .75);
    font-size: 1rem;
    line-height: 1.65;
}

.way-facts p:last-child {
    margin-bottom: 0;
}

.way-facts strong {
    color: #14161A;
    font-weight: 600;
}

.way-note {
    margin: 2.5rem 0 0 0;
    padding: 1.25rem 1.5rem;
    max-width: 38rem;
    background: #F7F6F3;
    border-radius: 2px;
    color: rgba(20, 22, 26, .75);
    font-size: .875rem;
    line-height: 1.65;
}

.way-actions {
    margin-top: 2.5rem;
}

.intro-actions .button-alt,
.way-actions .button,
.way-actions .button-alt,
.journey-actions .button,
.journey-actions .button-alt,
.open-actions .button,
.open-actions .button-alt {
    margin: 0;
    float: none;
}

@media (max-width: 991px) {
    .ways .ways-head {
        margin-bottom: 3.5rem;
    }

    .ways-name {
        margin-bottom: 2rem;
    }

    .way,
    .way.reverse {
        grid-template-columns: 1fr;
        row-gap: 2.5rem;
    }

    .way+.way {
        margin-top: 3.5rem;
        padding-top: 3.5rem;
    }

    .way-media,
    .way.reverse .way-media {
        margin-top: 0;
        margin-bottom: 0;
        order: 1;
    }

    .way.reverse .way-body,
    .way .way-body {
        order: 2;
        margin-top: 0;
    }

    .way-media img {
        height: auto;
        min-height: 0;
        aspect-ratio: 16 / 10;
    }
}

@media (max-width: 575px) {
    .way-item {
        grid-template-columns: 1fr;
        row-gap: .4rem;
        column-gap: 0;
    }

    .way-item-go {
        justify-self: start;
    }
}

.paths {
    text-align: left;
}

.paths-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-top: 1px solid rgba(20, 22, 26, .1);
}

.path {
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 2.5rem 2.5rem 0 2.5rem;
    text-decoration: none;
    color: inherit;
}

.path:first-child {
    padding-left: 0;
}

.path:last-child {
    padding-right: 0;
}

.path+.path::before {
    content: "";
    position: absolute;
    left: 0;
    top: 2.5rem;
    bottom: 0;
    width: 1px;
    background: rgba(20, 22, 26, .1);
}

.path h3 {
    margin: 0 0 1rem 0;
    color: #14161A;
    font-size: clamp(1.15rem, 1.7vw, 1.45rem);
    font-weight: 700;
    line-height: 1.25;
    letter-spacing: -.02em;
    text-transform: none;
    -webkit-transition: color .3s ease;
    transition: color .3s ease;
}

.path p {
    margin: 0 0 2rem 0;
    color: rgba(20, 22, 26, .75);
    font-size: .9375rem;
    line-height: 1.65;
}

.path-go {
    margin-top: auto;
    color: #CAA76A;
    font-size: .9375rem;
    line-height: 1.4;
}

.path-go span {
    display: inline-block;
    margin-left: .4rem;
    -webkit-transition: -webkit-transform .4s cubic-bezier(.16, 1, .3, 1);
    transition: transform .4s cubic-bezier(.16, 1, .3, 1);
}

a.path:hover h3 {
    color: #CAA76A;
}

a.path:hover .path-go span {
    -webkit-transform: translateX(6px);
    transform: translateX(6px);
}

@media (max-width: 991px) {
    .paths-grid {
        grid-template-columns: 1fr;
    }

    .path,
    .path:first-child,
    .path:last-child {
        padding: 2rem 0;
    }

    .path+.path::before {
        left: 0;
        top: 0;
        bottom: auto;
        width: 100%;
        height: 1px;
    }

    .path p {
        margin-bottom: 1.25rem;
    }
}   
.journey {
    background: #F7F6F3;
    text-align: left;
}

.journey-steps {
    display: flex;
    align-items: stretch;
    border-top: 1px solid rgba(20, 22, 26, .1);
}

.journey-step {
    flex: 1 1 0;
    min-width: 0;
    padding: 2rem 0 0 1.5rem;
}

.journey-step:first-child {
    padding-left: 0;
}

.journey-step:last-child {
    padding-right: 0;
}

.journey-num {
    display: block;
    margin-bottom: 1.25rem;
    color: #CAA76A;
    font-size: .8125rem;
    font-weight: 600;
    line-height: 1rem;
    letter-spacing: .02em;
}

.journey-step h3 {
    margin: 0 0 .6rem 0;
    color: #14161A;
    font-size: 1.05rem;
    font-weight: 600;
    line-height: 1.3;
    letter-spacing: -.015em;
    text-transform: none;
}

.journey-step p {
    margin: 0;
    color: rgba(20, 22, 26, .75);
    font-size: .875rem;
    line-height: 1.6;
}

.journey-arrow {
    position: relative;
    flex: 0 0 .5rem;
    -webkit-transform: translateX(-20px);
    transform: translateX(-20px);
}

.journey-arrow svg {
    display: block;
    position: absolute;
    top: 2.5rem;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    -webkit-transition: -webkit-transform .45s cubic-bezier(.16, 1, .3, 1);
    transition: transform .45s cubic-bezier(.16, 1, .3, 1);
}

.journey-step:hover+.journey-arrow svg {
    -webkit-transform: translate(calc(-50% + 6px), -50%);
    transform: translate(calc(-50% + 6px), -50%);
}

.journey-actions {
    margin-top: 3.5rem;
}

@media (max-width: 1199px) {
    .journey-steps {
        flex-direction: column;
    }

    .journey-step,
    .journey-step:first-child,
    .journey-step:last-child {
        flex: none;
        padding: 1.25rem 0 0 0;
    }

    .journey-step:first-child {
        padding-top: 2rem;
    }

    .journey-arrow {
        flex: none;
        width: 100%;
        height: 2.75rem;
        -webkit-transform: none;
        transform: none;
    }

    .journey-arrow svg {
        top: 50%;
        left: 4px;
        -webkit-transform: translate(-50%, -50%) rotate(90deg);
        transform: translate(-50%, -50%) rotate(90deg);
    }

    .journey-step:hover+.journey-arrow svg {
        -webkit-transform: translate(-50%, calc(-50% + 6px)) rotate(90deg);
        transform: translate(-50%, calc(-50% + 6px)) rotate(90deg);
    }
}

.open {
    text-align: left;
}

.open-band,
.cf-band {
    position: relative;
    overflow: hidden;
    background: #14161A;
    border-radius: 2px;
    padding: 4rem;
}

.open-band::before,
.cf-band::before {
    content: "";
    position: absolute;
    right: 2rem;
    bottom: 2rem;
    background: url("/template/img/bpv-logo-white.svg") no-repeat ;
    background-size: contain;
    width: 300px;
    height: 60px;
    opacity: .8;
    pointer-events: none;
}
.open-band.watermark-left::before {
    left: 2rem;
    right: unset;
}
.cf-band::before {
    right: unset;
    left: 2rem;
}

.open-inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 7fr 5fr;
    column-gap: 4rem;
    align-items: center;
}

.open .ways-name b,
.contactform .ways-name b {
    color: #CAA76A;
}

.open .ways-rule,
.contactform .ways-rule {
    background: rgba(202, 167, 106, .5);
}

.open-main{
    position: relative;
    z-index: 2;
}

.open-main h2,
.cf-main h2 {
    margin: 0 0 1.5rem 0;
    color: #F6F3EC;
    font-size: clamp(1.6rem, 2.8vw, 2.4rem);
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -.03em;
    text-transform: none;
}

.open-main p,
.cf-main p {
    margin: 0 0 1.25rem 0;
    max-width: 34rem;
    color: rgba(246, 243, 236, .78);
    font-size: .9375rem;
    line-height: 1.7;
}

.open-main strong {
    color: #F6F3EC;
    font-weight: 600;
}

.open-actions {
    margin-top: 2rem;
}

.open-actions .button-alt {
    border-color: #F6F3EC;
    color: #F6F3EC;
}

.open-actions .button-alt:hover {
    background: #F6F3EC;
    border-color: #F6F3EC;
    color: #14161A;
}

.open-main p a:not(.button-alt) {
    color: #CAA76A;
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
}

.open-main .open-actions a {
    text-decoration: none;
}

.open-fact {
    padding: 1.5rem 0;
    border-top: 1px solid rgba(246, 243, 236, .12);
}

.open-fact:first-child {
    padding-top: 0;
    border-top: 0;
}

.open-fact:last-child {
    padding-bottom: 0;
}

.open-fact i,
.services .path i {
    display: block;
    margin-bottom: 1.25rem;
    color: #CAA76A;
    font-size: 1.25rem;
    line-height: 1;
}

.open-fact b {
    display: block;
    margin-bottom: .6rem;
    color: #F6F3EC;
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.35;
    letter-spacing: -.01em;
}

.open-fact span {
    display: block;
    color: rgba(246, 243, 236, .72);
    font-size: .8125rem;
    line-height: 1.6;
}

@media (max-width: 991px) {

    .open-band,
    .cf-band {
        padding: 3rem 2rem 6rem 2rem;
    }

    .open-band::before,
    .cf-band::before {
        width: 160px;
        height: 32px;
        bottom: 2rem;
    }

    .open-inner {
        grid-template-columns: 1fr;
        row-gap: 3rem;
    }
}

@media (max-width: 575px) {

    .open-band,
    .cf-band {
        padding: 2.5rem 1.5rem 5rem 1.5rem;
    }

    .open-band::before,
    .cf-band::before {
        width: 130px;
        height: 26px;
        right: 1.5rem;
        bottom: 1.5rem;
    }

    .open-band.watermark-left::before,
    .cf-band::before {
        left: 1.5rem;
        right: unset;
    }
}

.services .path:nth-child(3n+1) {
    padding-left: 0;
}

.services .path:nth-child(3n) {
    padding-right: 0;
}

.services .path:nth-child(3n+1)::before {
    display: none;
}

.services .path:nth-child(n+4) {
    border-top: 1px solid rgba(20, 22, 26, .1);
}

.services .path p {
    margin-bottom: 2.5rem;
}

@media (max-width: 991px) {

    .services .path:nth-child(3n+1),
    .services .path:nth-child(3n) {
        padding-left: 0;
        padding-right: 0;
    }

    .services .path:nth-child(3n+1)::before {
        display: block;
    }

    .services .path:nth-child(n+4) {
        border-top: 0;
    }
}

.offers-head-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    margin-bottom: 2rem;
}

.offers-head-row h2 {
    margin: 0;
    max-width: 42rem;
}

.offers-head-row .button-alt {
    flex: none;
    margin: 0;
    float: none;
    white-space: nowrap;
}

@media (max-width: 991px) {
    .offers-head-row {
        display: block;
    }

    .offers-head-row .button-alt {
        margin-top: 2rem;
    }
}

#reviews {
    background: #F7F6F3;
    text-align: left;
}

.reviews-carousel {
    border-top: 1px solid rgba(20, 22, 26, .1);
}

.reviews-carousel .slick-track {
    display: flex;
    align-items: stretch;
}

.reviews-carousel .slick-slide {
    height: auto;
    outline: none;
}

.review {
    position: relative;
    padding: 2.5rem 2rem;
}

.review::before {
    content: "";
    position: absolute;
    left: 0;
    top: 2.5rem;
    bottom: 2.5rem;
    width: 1px;
    background: rgba(20, 22, 26, .1);
}

.review-inner {
    display: flex;
    flex-direction: column;
    min-height: 100%;
}

.reviews-carousel .slick-dots {
    display: flex;
    justify-content: center;
    gap: .5rem;
    list-style: none;
    margin: 2.5rem 0 0 0;
    padding: 0;
}

.reviews-carousel .slick-dots li {
    position: static;
    width: auto;
    height: auto;
    margin: 0;
    line-height: 0;
}

.reviews-carousel .slick-dots li button {
    position: static;
    display: block;
    width: 8px;
    height: 8px;
    padding: 0;
    border: 0;
    border-radius: 2px;
    background: rgba(20, 22, 26, .2);
    color: transparent;
    font-size: 0;
    line-height: 0;
    text-indent: -9999px;
    overflow: hidden;
    cursor: pointer;
    -webkit-transition: background .3s ease;
    transition: background .3s ease;
}

.reviews-carousel .slick-dots li button::before {
    content: none;
    display: none;
}

.reviews-carousel .slick-dots li.slick-active button {
    background: #CAA76A;
}

.review-stars {
    display: flex;
    gap: .35rem;
    margin-bottom: 1.5rem;
    color: #CAA76A;
    font-size: .875rem;
    line-height: 1;
}

.review-stars i {
    font-weight: 900;
}

.review-text {
    margin: 0 0 2rem 0;
    color: #14161A;
    font-size: 1.0625rem;
    font-weight: 500;
    line-height: 1.55;
    letter-spacing: -.01em;
}

.review-author {
    margin-top: auto;
    color: rgba(20, 22, 26, .75);
    font-size: .875rem;
    line-height: 1.5;
}

@media (max-width: 991px) {
    .review {
        padding: 2rem 1.5rem;
    }
}

@media (max-width: 575px) {
    .review {
        padding: 2rem 0;
    }

    .review::before {
        display: none;
    }
}

.faq {
    background: #F7F6F3;
    text-align: left;
}

.faq-list {
    border-top: 1px solid rgba(20, 22, 26, .1);
}

.faq-item {
    width: 100%;
    border-bottom: 1px solid rgba(20, 22, 26, .1);
}

.faq-item summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    width: 100%;
    padding: 1.5rem 0;
    color: #14161A;
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.4;
    letter-spacing: -.01em;
    cursor: pointer;
    list-style: none;
    -webkit-transition: color .3s ease;
    transition: color .3s ease;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::marker {
    content: "";
}

.faq-item summary:hover {
    color: #CAA76A;
}

.faq-sign {
    position: relative;
    flex: none;
    width: 16px;
    height: 16px;
}

.faq-sign::before,
.faq-sign::after {
    content: "";
    position: absolute;
    background: #CAA76A;
    -webkit-transition: -webkit-transform .35s cubic-bezier(.16, 1, .3, 1);
    transition: transform .35s cubic-bezier(.16, 1, .3, 1);
}

.faq-sign::before {
    top: 7px;
    left: 0;
    right: 0;
    height: 2px;
}

.faq-sign::after {
    left: 7px;
    top: 0;
    bottom: 0;
    width: 2px;
    -webkit-transform-origin: center;
    transform-origin: center;
}

.faq-item[open] .faq-sign::after {
    -webkit-transform: scaleY(0);
    transform: scaleY(0);
}

.faq-answer {
    padding: 0 0 1.75rem 0;
}

.faq-answer p {
    margin: 0;
    color: rgba(20, 22, 26, .75);
    font-size: .9375rem;
    line-height: 1.7;
}

@media (max-width: 575px) {
    .faq-item summary {
        gap: 1.25rem;
    }
}

.contactform {
    text-align: left;
    padding: 0 0 5rem 0;
}

.cf-inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 5fr 7fr;
    column-gap: 4rem;
    align-items: start;
}

.cf-main,
.cf-form {
    min-width: 0;
}

.cf-captcha {
    max-width: 100%;
    overflow-x: auto;
}

.cf-phone {
    margin: 2rem 0 .5rem 0 !important;
}

.cf-main .cf-phone a,
p.cf-phone a {
    color: #F6F3EC;
    font-size: 1.6rem;
    font-weight: 700;
    letter-spacing: -.02em;
    text-decoration: none;
    border: 0;
}

.cf-main .cf-phone a:hover,
p.cf-phone a:hover {
    color: #CAA76A;
}

.cf-sign {
    margin: 0 !important;
    font-size: .8125rem !important;
}

.cf-form form {
    margin: 0;
}

.cf-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.cf-field {
    min-width: 0;
}

.cf-field.full {
    grid-column: 1 / -1;
}

.cf-field label {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.cf-field input,
.cf-field textarea {
    display: block;
    width: 100%;
    min-width: 0;
    max-width: 100%;
    box-sizing: border-box;
    padding: 1rem 1.15rem;
    background: #fff;
    border: 1px solid transparent;
    border-radius: 2px;
    color: #14161A;
    font-family: "DM Sans", sans-serif;
    font-size: .9375rem;
    line-height: 1.5;
    -webkit-transition: border-color .25s ease;
    transition: border-color .25s ease;
}

.cf-field textarea {
    min-height: 8rem;
    resize: vertical;
}

.cf-field input:focus,
.cf-field textarea:focus {
    border-color: #CAA76A;
}

.cf-field ::-webkit-input-placeholder {
    color: rgba(20, 22, 26, .45);
    font-size: .9375rem;
    text-align: left;
}

.cf-field ::-moz-placeholder {
    color: rgba(20, 22, 26, .45);
    font-size: .9375rem;
    text-align: left;
}

.cf-field :-ms-input-placeholder {
    color: rgba(20, 22, 26, .45);
    font-size: .9375rem;
    text-align: left;
}

.cf-consent {
    display: block;
    margin: 1.5rem 0 0 0;
    color: rgba(246, 243, 236, .72);
    font-size: .8125rem;
    line-height: 1.6;
}

.cf-consent label {
    color: rgba(246, 243, 236, .72);
}

.cf-consent label a {
    color: #CAA76A;
}

.cf-captcha {
    margin: 1.25rem 0 0 0;
}

.cf-form fieldset button {
    width: 100%;
    margin-top: 1.5rem;
}

@media (max-width: 991px) {
    .cf-inner {
        grid-template-columns: 1fr;
        row-gap: 3rem;
    }
}

@media (max-width: 575px) {
    .cf-grid {
        grid-template-columns: 1fr;
    }
}

section#blog {
    text-align: left;
}

section#blog .articles-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem 30px;
    margin-left: 0;
    margin-right: 0;
}

section#blog .articles-wrapper > div[id^="page_"] {
    display: contents;
}

section#blog .articles-wrapper #op {
    display: none;
}

section#blog .articles-wrapper .article {
    margin: 0;
    padding: 0;
    float: none;
    width: auto;
    overflow: visible;
}

.article-image {
    position: relative;
    display: block;
    height: 260px;
    overflow: hidden;
    background: #f7f6f3;
    border-bottom: 1px solid rgba(20, 22, 26, .1);
    border-top-left-radius: 2px;
    border-top-right-radius: 2px;
}

.article-image::after {
    content: "";
    position: absolute;
    z-index: 3;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 2px;
    background: #caa76a;
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
    -webkit-transform-origin: left center;
    transform-origin: left center;
    -webkit-transition: -webkit-transform .6s cubic-bezier(.16, 1, .3, 1);
    transition: transform .6s cubic-bezier(.16, 1, .3, 1);
}

section#blog .articles-wrapper .article .article-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    max-width: none;
    height: 100%;
    object-fit: cover;
    object-position: center;
    -webkit-transition: -webkit-transform .5s cubic-bezier(.16, 1, .3, 1);
    transition: transform .5s cubic-bezier(.16, 1, .3, 1);
}

.article:hover .article-image img {
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
}

.article:hover .article-image::after {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
}

.article-text {
    padding: 1.1rem 0 0 0;
}

.article-meta {
    display: flex;
    align-items: baseline;
    flex-wrap: wrap;
    margin-bottom: .75rem;
    color: rgba(20, 22, 26, .75);
    font-size: .875rem;
    line-height: 1.45;
}

.article-meta span+span::before {
    content: "·";
    margin: 0 .5rem;
    color: rgba(20, 22, 26, .3);
}

section#blog .article-text h3 {
    margin: 0 0 .6rem 0;
    font-size: 1.05rem;
    font-weight: 600;
    line-height: 1.35;
    letter-spacing: -.015em;
}

section#blog .article-text h3 a {
    color: #14161A;
    font-weight: 600;
    text-decoration: none;
    -webkit-transition: color .3s ease;
    transition: color .3s ease;
}

.article:hover .article-text h3 a {
    color: #CAA76A;
}

section#blog .article-text p {
    margin: 0 0 1.1rem 0;
    color: rgba(20, 22, 26, .75);
    font-size: .9375rem;
    line-height: 1.65;
}

.article-go {
    display: inline-block;
    color: #CAA76A;
    font-size: .9375rem;
    line-height: 1.4;
    text-decoration: none;
}

.article-go span {
    display: inline-block;
    margin-left: .4rem;
    -webkit-transition: -webkit-transform .4s cubic-bezier(.16, 1, .3, 1);
    transition: transform .4s cubic-bezier(.16, 1, .3, 1);
}

.article:hover .article-go span {
    -webkit-transform: translateX(6px);
    transform: translateX(6px);
}

@media (max-width: 991px) {
    section#blog .articles-wrapper {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    section#blog .articles-wrapper .article.article-3 {
        display: none;
    }
}

@media (max-width: 767px) {
    section#blog .articles-wrapper {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
}

@media only screen and (min-width: 1025px) and (max-width: 1440px) {
    section#carousel.text {
        margin-top: calc(180px + 5rem);
    }
}

#carousel.pb-hero {
    text-align: left;
    padding-bottom: 0;
}

#carousel.pb-hero .ways-head {
    margin-bottom: 0;
}

#carousel.pb-hero .ways-head h1 {
    margin: 0 0 2rem 0;
    color: #14161A;
    font-size: clamp(1.9rem, 4.2vw, 3.4rem);
    font-weight: 700;
    line-height: 1.08;
    letter-spacing: -.035em;
}

.pb-guarantees .open-inner {
    grid-template-columns: 6fr 6fr;
}

@media (max-width: 991px) {
    .pb-guarantees .open-inner {
        grid-template-columns: 1fr;
    }
}

.pb-spain .open-band,
.pb-photo-band .open-band {
    background-color: #14161A;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}

.pb-spain .open-band {
    background-image: url("/template/img/bpv-spanielsko.jpg");
}

.pb-spain .open-band::after,
.pb-photo-band .open-band::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: linear-gradient(90deg, rgba(20, 22, 26, .9) 0%, rgba(20, 22, 26, .55) 100%);
    pointer-events: none;
}

.way.compact .way-media img {
    min-height: 20rem;
}

.way.compact .way-list {
    border-top: 0;
}

.pb-spain .open-inner {
    grid-template-columns: 1fr;
}

.pb-band .open-inner {
    grid-template-columns: 1fr;
}

.pb-rows .paths-grid {
    grid-template-columns: 1fr;
}

.pb-rows .path,
.pb-rows .path:first-child,
.pb-rows .path:last-child {
    display: grid;
    grid-template-columns: minmax(0, 20rem) 1fr;
    column-gap: 4rem;
    align-items: start;
    padding: 2.5rem 0;
}

.pb-rows .path+.path::before {
    left: 0;
    top: 0;
    bottom: auto;
    width: 100%;
    height: 1px;
}

.pb-rows .path h3 {
    margin: 0;
}

.pb-rows .path p {
    margin: 0 0 1.5rem 0;
}

.pb-rows .way-list {
    margin-top: 1.5rem;
}

.pb-list {
    margin: 0 0 2rem 0;
    padding: 0;
    list-style: none;
}

.pb-list li {
    display: flex;
    align-items: baseline;
    gap: 1rem;
    padding: .4rem 0;
    color: rgba(20, 22, 26, .75);
    font-size: .9375rem;
    line-height: 1.6;
}

.pb-list li::before {
    content: "\f00c";
    flex: none;
    width: 12px;
    color: #CAA76A;
    font-family: "Font Awesome 5 Pro";
    font-weight: 300;
    font-size: .8125rem;
}

.pb-go {
    display: -webkit-inline-box;
    display: inline-flex;
    align-items: baseline;
    gap: 1.75rem;
    white-space: nowrap;
}

.pb-go b {
    color: #14161A;
    font-size: 1.0625rem;
    font-weight: 600;
    letter-spacing: -.015em;
}

@media (max-width: 991px) {

    .pb-rows .path,
    .pb-rows .path:first-child,
    .pb-rows .path:last-child {
        grid-template-columns: 1fr;
        row-gap: 1.25rem;
        padding: 2rem 0;
    }
}

.pb-two .paths-grid {
    grid-template-columns: repeat(2, 1fr);
}

.pb-two .path,
.pb-two .path:first-child,
.pb-two .path:last-child {
    padding-top: 3rem;
    padding-bottom: 0;
}

.pb-two .path h3 {
    margin-bottom: 1.25rem;
    font-size: clamp(1.4rem, 2.2vw, 1.85rem);
}

.d-gallery {
    display: grid;
    grid-template-columns: 2fr 1fr;
    grid-template-rows: 12rem 12rem;
    gap: 10px;
    margin-bottom: 3rem;
}

.d-shot {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: 2px;
    background: #F7F6F3;
}

.d-shot:first-child {
    grid-column: 1;
    grid-row: 1 / 3;
}

.d-gallery.tiles-1,
.d-gallery.tiles-2 {
    grid-template-rows: 25rem;
}

.d-gallery.tiles-1 {
    grid-template-columns: 1fr;
}

.d-gallery.tiles-2 {
    grid-template-columns: 1fr 1fr;
}

.d-gallery.tiles-1 .d-shot:first-child,
.d-gallery.tiles-2 .d-shot:first-child {
    grid-column: 1;
    grid-row: 1;
}

.d-shot video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.d-shot img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    max-width: none;
    height: 100%;
    object-fit: cover;
    -webkit-transition: -webkit-transform .5s cubic-bezier(.16, 1, .3, 1);
    transition: transform .5s cubic-bezier(.16, 1, .3, 1);
}

.d-shot:hover img {
    -webkit-transform: scale(1.04);
    transform: scale(1.04);
}

.d-shot.is-hidden {
    display: none;
}

.d-more {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(20, 22, 26, .55);
    color: #F6F3EC;
    font-size: 1.05rem;
    font-weight: 600;
    letter-spacing: -.01em;
}

.d-layout {
    display: grid;
    grid-template-columns: minmax(0, 6fr) minmax(0, 4fr);
    grid-template-rows: auto 1fr;
    column-gap: 4rem;
    align-items: start;
}

.d-main,
.d-panel {
    min-width: 0;
}

.d-layout > .d-gallery,
.d-main {
    grid-column: 1;
}

.d-panel {
    grid-column: 2;
    grid-row: 1 / -1;
    position: -webkit-sticky;
    position: sticky;
    top: 0;
}

section#detail {
    padding-top: 0;
    padding-bottom: 5rem;
}

section#sticky-header {
    background: #F7F6F3;
    border-bottom: 1px solid rgba(20, 22, 26, .1);
    padding: 0 50px;
}

section#sticky-header h4,
section#sticky-header .icons,
section#sticky-header .icons span,
section#sticky-header .price,
section#sticky-header .price strong {
    height: 64px;
    line-height: 64px;
}

section#sticky-header h4 {
    color: #14161A;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: -.015em;
}

section#sticky-header .price {
    float: left;
    margin: 0 0 0 2rem;
    padding: 0;
    background: none;
    border-radius: 0;
}

section#sticky-header .price strong {
    color: #14161A;
    font-size: 1.0625rem;
    font-weight: 700;
    letter-spacing: -.02em;
}

section#sticky-header .price::before,
section#sticky-header .price::after {
    content: none;
}

section#sticky-header .icons span {
    margin: 0 0 0 2.5rem;
    color: rgba(20, 22, 26, .75);
    font-size: .875rem;
}

section#sticky-header .icons span i.fal {
    top: 0;
    margin-right: .6rem;
    color: #CAA76A;
    font-size: 1em;
}

@media only screen and (min-width: 993px) and (max-width: 1025px) {
    section#sticky-header {
        top: 60px;
    }
}

@media only screen and (min-width: 1026px) and (max-width: 1440px) {
    section#sticky-header {
        top: 140px;
    }
}

section#detail .description {
    text-align: left;
}

section#detail .description p {
    max-width: none;
    margin-left: 0;
    margin-right: 0;
    text-align: left;
    color: rgba(20, 22, 26, .75);
    font-size: .9375rem;
    line-height: 1.7;
}

.d-panel-loc {
    margin: 0 0 1.25rem 0;
    color: rgba(20, 22, 26, .75);
    font-size: .9375rem;
    line-height: 1.5;
}


.d-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 1.25rem;
}

.d-tags span {
    background: #F7F6F3;
    color: #14161A;
    border-radius: 2px;
    padding: 5px 9px;
    font-size: .7rem;
    font-weight: 600;
    letter-spacing: .06em;
    text-transform: uppercase;
}

.d-title {
    margin: 0 0 1rem 0;
    color: #14161A;
    font-size: clamp(1.5rem, 2.2vw, 1.9rem);
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -.03em;
}

.d-meta {
    display: flex;
    flex-wrap: wrap;
    gap: .5rem 2rem;
    margin: 0 0 2.5rem 0;
    color: rgba(20, 22, 26, .75);
    font-size: .9375rem;
}

.d-meta i {
    margin-right: .6rem;
    color: #CAA76A;
}

.d-panel-price {
    margin: 0 0 2rem 0;
    color: #14161A;
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    font-weight: 700;
    line-height: 1;
    letter-spacing: -.03em;
}

.d-panel-note {
    margin: 0 0 2rem 0;
    color: rgba(20, 22, 26, .75);
    font-size: .875rem;
    line-height: 1.6;
}

.d-facts {
    margin: 0 0 2rem 0;
    border-top: 1px solid rgba(20, 22, 26, .1);
}

.d-fact {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    justify-content: space-between;
    gap: .2rem 1rem;
    padding: .8rem 0;
    border-bottom: 1px solid rgba(20, 22, 26, .1);
    font-size: .9375rem;
    line-height: 1.5;
}

.d-fact span {
    flex: 0 1 auto;
    min-width: 0;
    color: rgba(20, 22, 26, .75);
}

.d-fact strong {
    flex: 1 1 auto;
    min-width: 0;
    color: #14161A;
    font-weight: 600;
    text-align: right;
    overflow-wrap: break-word;
    word-break: break-word;
}

.d-panel .button-alt {
    display: block;
    width: 100%;
    margin: 0;
    float: none;
    text-align: center;
}

.d-actions {
    margin-top: 1.5rem;
    border-top: 1px solid rgba(20, 22, 26, .1);
}

.d-actions a {
    display: flex;
    align-items: center;
    gap: .75rem;
    padding: .85rem 0;
    border-bottom: 1px solid rgba(20, 22, 26, .1);
    color: #14161A;
    font-weight: 400;
    font-size: .9375rem;
    text-decoration: none;
    cursor: pointer;
    -webkit-transition: color .25s ease;
    transition: color .25s ease;
}

.d-actions a i {
    width: 16px;
    text-align: center;
    color: #CAA76A;
}

.d-actions a:hover {
    color: #CAA76A;
}

.d-panel-video {
    margin-top: 2rem;
}

.d-panel-video iframe {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
    border: 0;
    border-radius: 2px;
}

.d-panel-map {
    margin-top: 2rem;
}

.d-panel .map,
.d-panel #mapaponuka {
    height: 320px;
    min-height: 0;
    margin: 0;
    border-radius: 2px;
    overflow: hidden;
}

.d-block {
    margin-top: 3.5rem;
}

.d-wide {
    margin: 5rem 0 0 0;
}

.d-wide div,
.d-wide section,
.d-wide table,
.d-wide h1,
.d-wide h2,
.d-wide h3,
.d-wide h4 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
}

.d-wide h1,
.d-wide h2,
.d-wide h3,
.d-wide h4 {
    margin-bottom: 1.5rem !important;
}

.d-wide section + section,
.d-wide table + table,
.d-wide .free + .free,
.d-wide > div + div {
    margin-top: 5rem !important;
}

.d-block > h3 {
    margin: 0 0 1.5rem 0;
    color: #14161A;
    font-size: clamp(1.15rem, 1.7vw, 1.45rem);
    font-weight: 700;
    line-height: 1.25;
    letter-spacing: -.02em;
}

@media (max-width: 1199px) {
    .d-layout {
        column-gap: 2.5rem;
    }
}

@media (max-width: 991px) {
    .d-layout {
        grid-template-columns: 1fr;
        grid-template-rows: none;
        row-gap: 0;
    }

    .d-panel {
        margin-bottom: 3rem;
    }

    .d-layout > .d-gallery,
    .d-main,
    .d-panel {
        grid-column: 1;
        grid-row: auto;
    }

    .d-panel {
        position: static;
    }

    .d-gallery {
        grid-template-rows: 14rem 14rem;
    }
}

@media (max-width: 575px) {
    .d-gallery {
        grid-template-columns: 1fr;
        grid-template-rows: 13rem;
        grid-auto-rows: 8rem;
    }

    .d-shot:first-child {
        grid-column: 1;
        grid-row: 1;
    }
}

section#bottom {
    position: relative;
    overflow: hidden;
    background: #14161A;
    padding: 5rem 0 4rem 0;
    text-align: left;
}
/* 
section#bottom::before {
    content: "";
    position: absolute;
    top: 0;
    right: 2rem;
    bottom: 2rem;
    left: 0;
    background: url("/template/img/bpv-logo-white.svg") no-repeat center center;
    background-size: 300px;
    opacity: .09;
    pointer-events: none;
} */

section#bottom > .container {
    position: relative;
    z-index: 1;
}

section#bottom p {
    max-width: none;
    margin-left: 0;
    margin-right: 0;
    color: rgba(246, 243, 236, .72);
    font-size: .9375rem;
    line-height: 1.7;
    text-align: left;
}

section#bottom a {
    color: rgba(246, 243, 236, .72);
    font-weight: 400;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    -webkit-transition: border-color .25s ease, color .25s ease;
    transition: border-color .25s ease, color .25s ease;
}

section#bottom a:hover {
    color: #F6F3EC;
    border-bottom-color: #CAA76A;
}

section#bottom h4 {
    margin: 0 0 1.25rem 0;
    color: #F6F3EC;
    font-size: .875rem;
    font-weight: 600;
    letter-spacing: -.01em;
}

.foot-top {
    display: grid;
    grid-template-columns: minmax(0, 7fr) minmax(0, 5fr);
    column-gap: 4rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(246, 243, 236, .12);
}

.foot-brand > img {
    display: block;
    width: auto;
    height: 44px;
    margin-bottom: 1.75rem;
}

.foot-brand p {
    max-width: 34rem;
    margin-left: 0;
    margin-right: 0;
}

.foot-legal {
    margin-top: 1.5rem !important;
    color: rgba(246, 243, 236, .5) !important;
    font-size: .8125rem !important;
    line-height: 1.8 !important;
}

.foot-legal strong {
    color: #F6F3EC;
    font-weight: 600;
}

section#bottom .member {
    margin-top: 2rem;
}

.foot-contact p {
    margin: 0 0 .75rem 0;
}

.foot-contact a {
    color: #F6F3EC;
}

.foot-contact i {
    width: 16px;
    margin-right: .75rem;
    color: #CAA76A;
}

.foot-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    column-gap: 3rem;
    padding-top: 3rem;
}

.foot-grid p {
    margin: 0 0 .6rem 0;
    font-size: .9375rem;
    line-height: 1.5;
}

footer {
    background: #F7F6F3;
    border-top: 1px solid rgba(20, 22, 26, .1);
    text-align: center;
}

footer p {
    color: rgba(20, 22, 26, .75);
    font-size: .8125rem;
    line-height: 1.8;
}

footer p strong {
    color: #14161A;
}

footer a {
    color: rgba(20, 22, 26, .75);
    border-bottom: 0;
}

footer .social a {
    color: #CAA76A;
}

.foot-grid .item p:last-child a,
.foot-contact p:last-child a {
    border-bottom: 0;
}

@media (max-width: 991px) {
    .foot-top {
        grid-template-columns: 1fr;
        row-gap: 2.5rem;
    }

    .foot-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        row-gap: 2.5rem;
    }
}

@media (max-width: 575px) {
    section#bottom {
        padding-top: 2.5rem;
    }

    .foot-grid {
        grid-template-columns: 1fr;
    }
}

.svc-back {
    display: inline-block;
    margin-bottom: 2.5rem;
    color: #CAA76A;
    font-size: .9375rem;
    line-height: 1.4;
    text-decoration: none;
}

.svc-back span {
    display: inline-block;
    margin-right: .5rem;
    -webkit-transition: -webkit-transform .4s cubic-bezier(.16, 1, .3, 1);
    transition: transform .4s cubic-bezier(.16, 1, .3, 1);
}

.svc-back:hover span {
    -webkit-transform: translateX(-6px);
    transform: translateX(-6px);
}

.svc-layout {
    display: grid;
    grid-template-columns: minmax(0, 7fr) minmax(0, 5fr);
    column-gap: 4rem;
    align-items: start;
}

.svc-main,
.svc-aside {
    min-width: 0;
}

.svc-main > h2 {
    margin: 0 0 2rem 0;
    color: #14161A;
    font-size: clamp(1.4rem, 2.2vw, 1.85rem);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -.02em;
}

.svc-aside {
    position: -webkit-sticky;
    position: sticky;
    top: 2rem;
    padding-top: 2rem;
    border-top: 2px solid #CAA76A;
}

.svc-aside .svc-label {
    display: block;
    margin-bottom: 1rem;
    color: rgba(20, 22, 26, .75);
    font-size: .875rem;
    line-height: 1.4;
}

.svc-aside .stat-num {
    margin: 0 0 1.25rem 0;
    font-size: clamp(1.8rem, 3vw, 2.5rem);
}

.svc-aside p {
    margin: 0 0 2rem 0;
    color: rgba(20, 22, 26, .75);
    font-size: .9375rem;
    line-height: 1.65;
}

.svc-aside .button-alt {
    display: block;
    width: 100%;
    margin: 0;
    float: none;
    text-align: center;
}

@media (max-width: 991px) {
    .svc-layout {
        grid-template-columns: 1fr;
    }

    .svc-aside {
        position: static;
        margin-top: 3rem;
    }
}

.ref-wall {
    border-top: 1px solid rgba(20, 22, 26, .1);
}

.ref-item {
    display: grid;
    grid-template-columns: 4rem minmax(0, 1fr);
    column-gap: 2rem;
    padding: 3rem 0;
    border-bottom: 1px solid rgba(20, 22, 26, .1);
}

.ref-num {
    color: #CAA76A;
    font-size: .8125rem;
    font-weight: 600;
    line-height: 1.9;
    letter-spacing: .02em;
}

.ref-item .review-stars {
    margin-bottom: 1.25rem;
}

.review-stars svg {
    display: block;
    width: 17px;
    height: 17px;
    fill: #CAA76A;
    stroke: #CAA76A;
    stroke-width: .7;
    stroke-linejoin: round;
}

.ref-quote {
    margin: 0 0 1.25rem 0;
    color: #14161A;
    font-size: clamp(1.15rem, 2vw, 1.5rem);
    font-weight: 500;
    line-height: 1.5;
    letter-spacing: -.015em;
}

.ref-author {
    color: rgba(20, 22, 26, .75);
    font-size: .875rem;
    line-height: 1.5;
}

@media (max-width: 767px) {
    .ref-item {
        grid-template-columns: 1fr;
        row-gap: .75rem;
        padding: 2.5rem 0;
    }
}

.pb-col-photo {
    height: 14rem;
    margin-bottom: 2rem;
    overflow: hidden;
    border-radius: 2px;
    background: #F7F6F3;
}

.pb-col-photo img {
    display: block;
    width: 100%;
    max-width: none;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.pb-two .path>p {
    margin-bottom: 1.25rem;
}

.pb-two .pb-list {
    margin-bottom: 0;
}

.pb-two .pb-foot {
    margin-top: auto;
    padding-top: 2rem;
    border-top: 1px solid rgba(20, 22, 26, .1);
}

.pb-two .stat-num {
    margin: 0;
    font-size: clamp(1.8rem, 3vw, 2.5rem);
}

.pb-two a.path-go {
    display: inline-block;
    margin-top: 1.75rem;
    text-decoration: none;
}

.pb-two a.path-go:hover span {
    -webkit-transform: translateX(6px);
    transform: translateX(6px);
}

.pb-actions {
    margin-top: 3.5rem;
}

a.button-alt.pb-primary {
    background: #CAA76A;
    border-color: #CAA76A;
    color: #fff;
}

a.button-alt.pb-primary:hover {
    background: transparent;
    color: #CAA76A;
    text-decoration: none;
}

@media (max-width: 991px) {
    .pb-two .paths-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .pb-two .path,
    .pb-two .path:first-child,
    .pb-two .path:last-child {
        padding-top: 2.5rem;
        padding-bottom: 0;
    }
}

.pb-rows .pb-price-list {
    margin-top: 0;
    border-top: 0;
}

.pb-price-list .way-item {
    grid-template-columns: 1fr auto;
    padding: .5rem 0;
    border-bottom: 0;
}

.pb-rows .path p:last-child {
    margin-bottom: 0;
}

.pb-team-list {
    border-top: 1px solid rgba(20, 22, 26, .1);
}

.pb-team-item {
    display: grid;
    grid-template-columns: 140px minmax(0, 1fr) minmax(0, auto);
    column-gap: 3rem;
    align-items: center;
    padding: 0;
    border-bottom: 1px solid rgba(20, 22, 26, .1);
}

.pb-team-item.nophoto {
    grid-template-columns: minmax(0, 1fr) minmax(0, auto);
}

.pb-team-photo {
    width: 140px;
    height: 140px;
    overflow: hidden;
    border-radius: 2px;
    background: #F7F6F3;
}

.pb-team-photo img {
    display: block;
    width: 100%;
    height: 100%;
    max-width: none;
    object-fit: cover;
    object-position: center top;
}

.pb-team-name {
    margin: 0;
    color: #14161A;
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1.25;
    letter-spacing: -.02em;
}

.pb-team-meta {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: .5rem .9rem;
    margin-top: .45rem;
}

.pb-team-role {
    color: #CAA76A;
    font-size: .8125rem;
    font-weight: 600;
    letter-spacing: .02em;
}

.pb-team-flags {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    gap: 5px;
    line-height: 1;
}

.pb-team-flags img {
    display: block;
    height: 11px;
    width: auto;
    margin: 0;
    border-radius: 1px;
    opacity: .75;
}

.pb-team-link {
    display: inline-block;
    margin-top: 1rem;
    color: #CAA76A;
    font-size: .9375rem;
    line-height: 1.4;
    text-decoration: none;
}

.pb-team-link span {
    display: inline-block;
    margin-left: .4rem;
    -webkit-transition: -webkit-transform .4s cubic-bezier(.16, 1, .3, 1);
    transition: transform .4s cubic-bezier(.16, 1, .3, 1);
}

.pb-team-link:hover span {
    -webkit-transform: translateX(6px);
    transform: translateX(6px);
}

.pb-team-contact {
    text-align: right;
}

.pb-team-contact a {
    display: block;
    color: #14161A;
    font-size: .9375rem;
    font-weight: 400;
    line-height: 1.5;
    white-space: nowrap;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    -webkit-transition: border-color .25s ease;
    transition: border-color .25s ease;
}

.pb-team-contact a+a {
    margin-top: .5rem;
}

.pb-team-contact a:hover {
    border-bottom-color: #CAA76A;
}

.pb-team-contact i {
    margin-right: .6rem;
    color: #CAA76A;
}

@media (max-width: 991px) {
    .pb-team-item {
        grid-template-columns: 100px minmax(0, 1fr);
        column-gap: 1.75rem;
        align-items: start;
        padding: 2rem 0;
    }

    .pb-team-item.nophoto {
        grid-template-columns: minmax(0, 1fr);
    }

    .pb-team-photo {
        width: 100px;
        height: 100px;
    }

    .pb-team-contact {
        grid-column: 2 / -1;
        margin-top: 1.25rem;
        text-align: left;
    }

    .pb-team-item.nophoto .pb-team-contact {
        grid-column: 1 / -1;
    }
}

@media (max-width: 575px) {
    .pb-team-item {
        grid-template-columns: 1fr;
        row-gap: 1.25rem;
    }

    .pb-team-contact {
        grid-column: 1 / -1;
        margin-top: 0;
    }
}

.pb-team-rows {
    border-top: 1px solid rgba(20, 22, 26, .1);
}

.pb-member {
    display: grid;
    grid-template-columns: minmax(0, 7fr) minmax(0, 5fr);
    column-gap: 4rem;
    align-items: center;
    padding: 3.5rem 0;
    border-bottom: 1px solid rgba(20, 22, 26, .1);
}

.pb-member.reverse {
    grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
}

.pb-member.reverse .pb-member-photo {
    -ms-flex-order: 2;
    order: 2;
}

.pb-member.nophoto {
    grid-template-columns: minmax(0, 1fr);
}

.pb-member-photo {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    min-height: 240px;
    overflow: hidden;
    border-radius: 2px;
    background: #F7F6F3;
}

.pb-member-photo img {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    max-width: none;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center 25%;
    object-position: center 25%;
    -webkit-transition: -webkit-transform .6s cubic-bezier(.16, 1, .3, 1);
    transition: transform .6s cubic-bezier(.16, 1, .3, 1);
}

.pb-member:hover .pb-member-photo img {
    -webkit-transform: scale(1.03);
    transform: scale(1.03);
}

.pb-member-body {
    min-width: 0;
}

.pb-member-name {
    margin: 0;
    color: #14161A;
    font-size: clamp(1.4rem, 2.2vw, 1.9rem);
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -.03em;
}

.pb-member-meta {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: .5rem .9rem;
    margin-top: .6rem;
}

.pb-member-role {
    color: #CAA76A;
    font-size: .8125rem;
    font-weight: 600;
    letter-spacing: .02em;
}

.pb-member-flags {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    gap: 5px;
    line-height: 1;
}

.pb-member-flags img {
    display: block;
    height: 11px;
    width: auto;
    margin: 0;
    border-radius: 1px;
    opacity: .75;
}

.pb-member-text {
    margin: 1.5rem 0 0 0;
    color: rgba(20, 22, 26, .75);
    font-size: 1.0625rem;
    line-height: 1.7;
}

.pb-member-contact {
    margin-top: 1.75rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(20, 22, 26, .1);
}

.pb-member-contact a {
    display: inline-block;
    color: #14161A;
    font-size: .9375rem;
    font-weight: 400;
    line-height: 1.6;
    white-space: nowrap;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    -webkit-transition: border-color .25s ease;
    transition: border-color .25s ease;
}

.pb-member-contact a+a {
    margin-left: 2rem;
}

.pb-member-contact a:hover {
    border-bottom-color: #CAA76A;
}

.pb-member-contact i {
    margin-right: .6rem;
    color: #CAA76A;
}

.pb-member-link {
    display: inline-block;
    margin-top: 1.25rem;
    color: #CAA76A;
    font-size: .9375rem;
    line-height: 1.4;
    text-decoration: none;
}

.pb-member-link span {
    display: inline-block;
    margin-left: .4rem;
    -webkit-transition: -webkit-transform .4s cubic-bezier(.16, 1, .3, 1);
    transition: transform .4s cubic-bezier(.16, 1, .3, 1);
}

.pb-member-link:hover span {
    -webkit-transform: translateX(6px);
    transform: translateX(6px);
}

@media (max-width: 991px) {

    .pb-member,
    .pb-member.reverse {
        grid-template-columns: minmax(0, 1fr);
        row-gap: 1.75rem;
        padding: 2.5rem 0;
    }

    .pb-member.reverse .pb-member-photo {
        -ms-flex-order: 0;
        order: 0;
    }

    .pb-member-photo {
        aspect-ratio: 16 / 10;
        min-height: 0;
    }
}

@media (max-width: 575px) {
    .pb-member-contact a {
        display: block;
        white-space: normal;
    }

    .pb-member-contact a+a {
        margin: .5rem 0 0 0;
    }
}

.cf-main .open-fact {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: baseline;
    align-items: baseline;
    gap: 1rem;
}

.cf-main .open-fact i {
    -ms-flex: none;
    flex: none;
    width: 16px;
    margin: 0;
    text-align: center;
}

.cf-main .open-fact b a {
    color: #F6F3EC;
    font-weight: 600;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    -webkit-transition: border-color .25s ease;
    transition: border-color .25s ease;
}

.cf-main .open-fact b a:hover {
    border-bottom-color: #CAA76A;
}

.cf-main .pb-legal {
    margin: 2rem 0 0 0;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(246, 243, 236, .12);
    color: rgba(246, 243, 236, .55);
    font-size: .8125rem;
    line-height: 1.8;
}

.cf-main .pb-legal a {
    color: #CAA76A;
    font-weight: 400;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    -webkit-transition: border-color .25s ease;
    transition: border-color .25s ease;
}

.cf-main .pb-legal a:hover {
    border-bottom-color: #CAA76A;
}

.desktop-only {
    display: block;
}
@media (max-width: 991px) {
    .desktop-only {
        display: none;
    }
}

/* chcem-kupit: financovanie + agent */
.kb-duo {
    text-align: left;
}

.kb-duo-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: stretch;
}

.kb-panel {
    display: flex;
    flex-direction: column;
    padding: 3.5rem;
    background: #F7F6F3;
    border-top: 2px solid rgba(20, 22, 26, .1);
    border-radius: 2px;
}

.kb-panel.gold {
    background: #F6F1E7;
    border-top-color: #CAA76A;
}

.kb-panel .ways-name {
    margin-bottom: 1.75rem;
}

.kb-panel h2 {
    margin: 0 0 1.5rem 0;
    color: #14161A;
    font-size: clamp(1.5rem, 2.4vw, 2.1rem);
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -.03em;
    text-transform: none;
}

.kb-panel p {
    margin: 0 0 1.25rem 0;
    color: rgba(20, 22, 26, .75);
    font-size: .9375rem;
    line-height: 1.7;
}

.kb-panel .kb-lead {
    color: #14161A;
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.6;
}

.kb-panel>.pb-list {
    margin: .5rem 0 0 0;
}

.kb-actions {
    margin-top: auto;
    padding-top: 2.5rem;
}

.kb-actions .button,
.kb-actions .button-alt {
    margin: 0;
    float: none;
}

.kb-tiers {
    margin-top: .75rem;
    border-top: 1px solid rgba(20, 22, 26, .1);
}

a.kb-tier {
    display: block;
    padding: 1.5rem 0;
    border-bottom: 1px solid rgba(20, 22, 26, .1);
    color: inherit;
    text-decoration: none;
}

.kb-tier-head {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 1.5rem;
    margin-bottom: .75rem;
}

.kb-tier-title {
    color: #14161A;
    font-size: 1.0625rem;
    font-weight: 600;
    letter-spacing: -.01em;
    -webkit-transition: color .3s ease;
    transition: color .3s ease;
}

a.kb-tier:hover .kb-tier-title {
    color: #CAA76A;
}

.kb-tier-price {
    text-align: right;
    white-space: nowrap;
}

.kb-tier-price b {
    color: #14161A;
    font-size: 1.0625rem;
    font-weight: 600;
    letter-spacing: -.015em;
}

.kb-tier-price small {
    display: block;
    color: rgba(20, 22, 26, .55);
    font-size: .75rem;
}

.kb-tier .pb-list {
    margin: 0;
}

.kb-tier .pb-list li {
    padding: .2rem 0;
    font-size: .875rem;
}

@media (max-width: 991px) {
    .kb-duo-grid {
        grid-template-columns: 1fr;
    }

    .kb-panel {
        padding: 3rem 2rem;
    }
}

@media (max-width: 575px) {
    .kb-panel {
        padding: 2.5rem 1.5rem;
    }

    .kb-tier-head {
        flex-wrap: wrap;
        gap: .25rem 1.5rem;
    }

    .kb-tier-price {
        text-align: left;
    }
}

/* financovanie: panely pod sebou */
.kb-stack {
    display: grid;
    gap: 2rem;
}

.kb-panel.wide {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 4rem;
    align-items: start;
}

.kb-panel-main {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.kb-panel-side {
    padding-left: 4rem;
    border-left: 1px solid rgba(20, 22, 26, .1);
}

.kb-panel-side .pb-list {
    margin: 0;
}

.kb-panel .kb-price {
    margin: 0 0 1.5rem 0;
    color: #14161A;
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -.03em;
}

.kb-panel .kb-price small {
    display: block;
    margin-top: .4rem;
    color: rgba(20, 22, 26, .55);
    font-size: .8125rem;
    font-weight: 400;
    letter-spacing: 0;
}

@media (max-width: 991px) {
    .kb-panel.wide {
        grid-template-columns: 1fr;
        row-gap: 2rem;
    }

    .kb-panel-side {
        padding-left: 0;
        padding-top: 2rem;
        border-left: 0;
        border-top: 1px solid rgba(20, 22, 26, .1);
    }
}

/* chcem-kupit: samostatne sluzby (4 stlpce) */
.kb-services .path i {
    display: block;
    margin-bottom: 1.25rem;
    color: #CAA76A;
    font-size: 1.25rem;
    line-height: 1;
}

.kb-services .path h3 {
    font-size: clamp(1.05rem, 1.4vw, 1.2rem);
}

.kb-services .path-go span {
    margin-left: 0;
}

@media (min-width: 992px) {
    .kb-services .paths-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .kb-services .path {
        padding-left: 2rem;
        padding-right: 2rem;
    }

    .kb-services .path:first-child {
        padding-left: 0;
    }

    .kb-services .path:last-child {
        padding-right: 0;
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    .kb-services .paths-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .kb-services .path:nth-child(2n+1) {
        padding-left: 0;
    }

    .kb-services .path:nth-child(2n) {
        padding-right: 0;
    }

    .kb-services .path:nth-child(2n+1)::before {
        display: none;
    }

    .kb-services .path:nth-child(n+3) {
        margin-top: 2.5rem;
        border-top: 1px solid rgba(20, 22, 26, .1);
    }
}

/* chcem-kupit: svetly panel s fotkou */
.kb-soft {
    padding: 3rem;
    background: #F7F6F3;
    border-radius: 2px;
}

.kb-soft .way-body {
    align-self: center;
}

.kb-soft .ways-name {
    margin-bottom: 1.75rem;
}

.kb-soft .way-intro {
    margin-bottom: 0;
}

@media (max-width: 991px) {
    .kb-soft {
        padding: 2rem;
    }
}

@media (max-width: 575px) {
    .kb-soft {
        padding: 1.5rem;
    }
}

/* ako-pracujeme: kroky s ikonami */
.kb-journey .journey-step i {
    display: -webkit-box;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3.5rem;
    height: 3.5rem;
    margin-bottom: 1.25rem;
    background: #fff;
    border: 1px solid rgba(202, 167, 106, .4);
    border-radius: 50%;
    color: #CAA76A;
    font-size: 1.25rem;
    line-height: 1;
}

.kb-journey .journey-num {
    margin-bottom: .6rem;
}

/* ako-pracujeme: karty sluzieb */
.kb-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
}

a.kb-card {
    display: flex;
    flex-direction: column;
    padding: 2rem 1.75rem;
    background: #F7F6F3;
    border-top: 2px solid transparent;
    border-radius: 2px;
    color: inherit;
    text-decoration: none;
    -webkit-transition: background .3s ease, border-color .3s ease;
    transition: background .3s ease, border-color .3s ease;
}

a.kb-card:hover {
    background: #F6F1E7;
    border-top-color: #CAA76A;
}

.kb-card i {
    display: block;
    margin-bottom: 1.25rem;
    color: #CAA76A;
    font-size: 1.25rem;
    line-height: 1;
}

.kb-card h3 {
    margin: 0 0 .75rem 0;
    color: #14161A;
    font-size: 1.05rem;
    font-weight: 600;
    line-height: 1.3;
    letter-spacing: -.015em;
    text-transform: none;
    -webkit-transition: color .3s ease;
    transition: color .3s ease;
}

a.kb-card:hover h3 {
    color: #CAA76A;
}

.kb-card-price {
    display: block;
    margin-bottom: .5rem;
    color: #14161A;
    font-size: .9375rem;
    font-weight: 600;
    line-height: 1.4;
}

.kb-card p {
    margin: 0;
    color: rgba(20, 22, 26, .75);
    font-size: .875rem;
    line-height: 1.6;
}

.kb-card .path-go {
    padding-top: 1.5rem;
}

a.kb-card:hover .path-go span {
    -webkit-transform: translateX(6px);
    transform: translateX(6px);
}

@media (max-width: 1199px) {
    .kb-cards {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 767px) {
    .kb-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 575px) {
    .kb-cards {
        grid-template-columns: 1fr;
    }
}

/* samostatny obrazkovy pas medzi sekciami */
.pb-strip {
    overflow: hidden;
    border-radius: 2px;
    background: #F7F6F3;
}

.pb-strip img {
    display: block;
    width: 100%;
    max-width: none;
    height: 26rem;
    object-fit: cover;
    object-position: center;
}

.pb-strip--contain img {
    width: auto;
    max-width: 100%;
    margin: 0 auto;
    object-fit: contain;
}

@media (max-width: 991px) {
    .pb-strip img {
        height: 20rem;
    }
}

@media (max-width: 575px) {
    .pb-strip img {
        height: 14rem;
    }
}