@charset "UTF-8";
.fancybox-enabled {
  overflow: hidden;
}

.fancybox-enabled body {
  overflow: visible;
  height: 100%;
}

.fancybox-is-hidden {
  position: absolute;
  top: -9999px;
  left: -9999px;
  visibility: hidden;
}

.fancybox-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 99993;
  -webkit-tap-highlight-color: transparent;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  transform: translateZ(0);
}

/* Make sure that the first one is on the top */
.fancybox-container ~ .fancybox-container {
  z-index: 99992;
}

.fancybox-outer,
.fancybox-inner,
.fancybox-bg,
.fancybox-stage {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

.fancybox-outer {
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.fancybox-bg {
  background: #1e1e1e;
  opacity: 0;
  transition-duration: inherit;
  transition-property: opacity;
  transition-timing-function: cubic-bezier(0.47, 0, 0.74, 0.71);
}

.fancybox-is-open .fancybox-bg {
  opacity: 0.87;
  transition-timing-function: cubic-bezier(0.22, 0.61, 0.36, 1);
}

.fancybox-infobar,
.fancybox-toolbar,
.fancybox-caption-wrap {
  position: absolute;
  direction: ltr;
  z-index: 99997;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s, visibility 0s linear 0.25s;
  box-sizing: border-box;
}

.fancybox-show-infobar .fancybox-infobar,
.fancybox-show-toolbar .fancybox-toolbar,
.fancybox-show-caption .fancybox-caption-wrap {
  opacity: 1;
  visibility: visible;
  transition: opacity 0.25s, visibility 0s;
}

.fancybox-infobar {
  top: 0;
  left: 50%;
  margin-left: -79px;
}

.fancybox-infobar__body {
  display: inline-block;
  width: 70px;
  line-height: 44px;
  font-size: 13px;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  text-align: center;
  color: #ddd;
  background-color: rgba(30, 30, 30, 0.7);
  pointer-events: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
  -webkit-tap-highlight-color: transparent;
  -webkit-font-smoothing: subpixel-antialiased;
}

.fancybox-toolbar {
  top: 0;
  right: 0;
}

.fancybox-stage {
  overflow: hidden;
  direction: ltr;
  z-index: 99994;
  -webkit-transform: translate3d(0, 0, 0);
}

.fancybox-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  overflow: auto;
  outline: none;
  white-space: normal;
  box-sizing: border-box;
  text-align: center;
  z-index: 99994;
  -webkit-overflow-scrolling: touch;
  display: none;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  transition-property: transform, opacity;
  transform-style: preserve-3d;
}

.fancybox-slide::before {
  content: "";
  display: inline-block;
  vertical-align: middle;
  height: 100%;
  width: 0;
}

.fancybox-is-sliding .fancybox-slide,
.fancybox-slide--previous,
.fancybox-slide--current,
.fancybox-slide--next {
  display: block;
}

.fancybox-slide--image {
  overflow: visible;
}

.fancybox-slide--image::before {
  display: none;
}

.fancybox-slide--video .fancybox-content,
.fancybox-slide--video iframe {
  background: #000;
}

.fancybox-slide--map .fancybox-content,
.fancybox-slide--map iframe {
  background: #E5E3DF;
}

.fancybox-slide--next {
  z-index: 99995;
}

.fancybox-slide > * {
  display: inline-block;
  position: relative;
  padding: 24px;
  margin: 44px 0 44px;
  border-width: 0;
  vertical-align: middle;
  text-align: left;
  background-color: #fff;
  overflow: auto;
  box-sizing: border-box;
}

.fancybox-slide .fancybox-image-wrap {
  position: absolute;
  top: 0;
  left: 0;
  margin: 0;
  padding: 0;
  border: 0;
  z-index: 99995;
  background: transparent;
  cursor: default;
  overflow: visible;
  transform-origin: top left;
  background-size: 100% 100%;
  background-repeat: no-repeat;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.fancybox-can-zoomOut .fancybox-image-wrap {
  cursor: zoom-out;
}

.fancybox-can-zoomIn .fancybox-image-wrap {
  cursor: zoom-in;
}

.fancybox-can-drag .fancybox-image-wrap {
  cursor: -webkit-grab;
  cursor: grab;
}

.fancybox-is-dragging .fancybox-image-wrap {
  cursor: -webkit-grabbing;
  cursor: grabbing;
}

.fancybox-image,
.fancybox-spaceball {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  border: 0;
  max-width: none;
  max-height: none;
}

.fancybox-spaceball {
  z-index: 1;
}

.fancybox-slide--iframe .fancybox-content {
  padding: 0;
  width: 80%;
  height: 80%;
  max-width: calc(100% - 100px);
  max-height: calc(100% - 88px);
  overflow: visible;
  background: #fff;
}

.fancybox-iframe {
  display: block;
  margin: 0;
  padding: 0;
  border: 0;
  width: 100%;
  height: 100%;
  background: #fff;
}

.fancybox-error {
  margin: 0;
  padding: 40px;
  width: 100%;
  max-width: 380px;
  background: #fff;
  cursor: default;
}

.fancybox-error p {
  margin: 0;
  padding: 0;
  color: #444;
  font: 16px/20px "Helvetica Neue", Helvetica, Arial, sans-serif;
}

.fancybox-close-small {
  position: absolute;
  top: 0;
  right: 0;
  width: 44px;
  height: 44px;
  padding: 0;
  margin: 0;
  border: 0;
  border-radius: 0;
  outline: none;
  background: transparent;
  z-index: 10;
  cursor: pointer;
}

.fancybox-close-small:after {
  content: "×";
  position: absolute;
  top: 5px;
  right: 5px;
  width: 30px;
  height: 30px;
  font: 20px/30px Arial, "Helvetica Neue", Helvetica, sans-serif;
  color: #888;
  font-weight: 300;
  text-align: center;
  border-radius: 50%;
  border-width: 0;
  background: #fff;
  transition: background 0.25s;
  box-sizing: border-box;
  z-index: 2;
}

.fancybox-close-small:focus:after {
  outline: 1px dotted #888;
}

.fancybox-close-small:hover:after {
  color: #555;
  background: #eee;
}

.fancybox-slide--iframe .fancybox-close-small {
  top: 0;
  right: -44px;
}

.fancybox-slide--iframe .fancybox-close-small:after {
  background: transparent;
  font-size: 35px;
  color: #aaa;
}

.fancybox-slide--iframe .fancybox-close-small:hover:after {
  color: #fff;
}

/* Caption */
.fancybox-caption-wrap {
  bottom: 0;
  left: 0;
  right: 0;
  padding: 60px 30px 0 30px;
  background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.1) 20%, rgba(0, 0, 0, 0.2) 40%, rgba(0, 0, 0, 0.6) 80%, rgba(0, 0, 0, 0.8) 100%);
  pointer-events: none;
}

.fancybox-caption {
  padding: 30px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.4);
  font-size: 14px;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  color: #fff;
  line-height: 20px;
  -webkit-text-size-adjust: none;
}

.fancybox-caption a,
.fancybox-caption button,
.fancybox-caption select {
  pointer-events: all;
}

.fancybox-caption a {
  color: #fff;
  text-decoration: underline;
}

/* Buttons */
.fancybox-button {
  display: inline-block;
  position: relative;
  margin: 0;
  padding: 0;
  border: 0;
  width: 44px;
  height: 44px;
  line-height: 44px;
  text-align: center;
  background: transparent;
  color: #ddd;
  border-radius: 0;
  cursor: pointer;
  vertical-align: top;
  outline: none;
}

.fancybox-button[disabled] {
  cursor: default;
  pointer-events: none;
}

.fancybox-infobar__body, .fancybox-button {
  background: rgba(30, 30, 30, 0.6);
}

.fancybox-button:hover:not([disabled]) {
  color: #fff;
  background: rgba(0, 0, 0, 0.8);
}

.fancybox-button::before,
.fancybox-button::after {
  content: "";
  pointer-events: none;
  position: absolute;
  background-color: currentColor;
  color: currentColor;
  opacity: 0.9;
  box-sizing: border-box;
  display: inline-block;
}

.fancybox-button[disabled]::before,
.fancybox-button[disabled]::after {
  opacity: 0.3;
}

.fancybox-button--left::after,
.fancybox-button--right::after {
  top: 18px;
  width: 6px;
  height: 6px;
  background: transparent;
  border-top: solid 2px currentColor;
  border-right: solid 2px currentColor;
}

.fancybox-button--left::after {
  left: 20px;
  transform: rotate(-135deg);
}

.fancybox-button--right::after {
  right: 20px;
  transform: rotate(45deg);
}

.fancybox-button--left {
  border-bottom-left-radius: 5px;
}

.fancybox-button--right {
  border-bottom-right-radius: 5px;
}

.fancybox-button--close::before, .fancybox-button--close::after {
  content: "";
  display: inline-block;
  position: absolute;
  height: 2px;
  width: 16px;
  top: calc(50% - 1px);
  left: calc(50% - 8px);
}

.fancybox-button--close::before {
  transform: rotate(45deg);
}

.fancybox-button--close::after {
  transform: rotate(-45deg);
}

/* Navigation arrows */
.fancybox-arrow {
  position: absolute;
  top: 50%;
  margin: -50px 0 0 0;
  height: 100px;
  width: 54px;
  padding: 0;
  border: 0;
  outline: none;
  background: none;
  cursor: pointer;
  z-index: 99995;
  opacity: 0;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  transition: opacity 0.25s;
}

.fancybox-arrow::after {
  content: "";
  position: absolute;
  top: 28px;
  width: 44px;
  height: 44px;
  background-color: rgba(30, 30, 30, 0.8);
  background-image: url(data:image/svg+xml;base64,PHN2ZyBmaWxsPSIjRkZGRkZGIiBoZWlnaHQ9IjQ4IiB2aWV3Qm94PSIwIDAgMjQgMjQiIHdpZHRoPSI0OCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4gICAgPHBhdGggZD0iTTAgMGgyNHYyNEgweiIgZmlsbD0ibm9uZSIvPiAgICA8cGF0aCBkPSJNMTIgNGwtMS40MSAxLjQxTDE2LjE3IDExSDR2MmgxMi4xN2wtNS41OCA1LjU5TDEyIDIwbDgtOHoiLz48L3N2Zz4=);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 24px 24px;
}

.fancybox-arrow--right {
  right: 0;
}

.fancybox-arrow--left {
  left: 0;
  transform: scaleX(-1);
}

.fancybox-arrow--right::after,
.fancybox-arrow--left::after {
  left: 0;
}

.fancybox-show-nav .fancybox-arrow {
  opacity: 0.6;
}

.fancybox-show-nav .fancybox-arrow[disabled] {
  opacity: 0.3;
}

/* Loading indicator */
.fancybox-loading {
  border: 6px solid rgba(100, 100, 100, 0.4);
  border-top: 6px solid rgba(255, 255, 255, 0.6);
  border-radius: 100%;
  height: 50px;
  width: 50px;
  -webkit-animation: fancybox-rotate 0.8s infinite linear;
  animation: fancybox-rotate 0.8s infinite linear;
  background: transparent;
  position: absolute;
  top: 50%;
  left: 50%;
  margin-top: -25px;
  margin-left: -25px;
  z-index: 99999;
}

@-webkit-keyframes fancybox-rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(359deg);
  }
}
@keyframes fancybox-rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(359deg);
  }
}
/* Transition effects */
.fancybox-animated {
  transition-timing-function: cubic-bezier(0, 0, 0.25, 1);
}

/* transitionEffect: slide */
.fancybox-fx-slide.fancybox-slide--previous {
  transform: translate3d(-100%, 0, 0);
  opacity: 0;
}

.fancybox-fx-slide.fancybox-slide--next {
  transform: translate3d(100%, 0, 0);
  opacity: 0;
}

.fancybox-fx-slide.fancybox-slide--current {
  transform: translate3d(0, 0, 0);
  opacity: 1;
}

/* transitionEffect: fade */
.fancybox-fx-fade.fancybox-slide--previous,
.fancybox-fx-fade.fancybox-slide--next {
  opacity: 0;
  transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
}

.fancybox-fx-fade.fancybox-slide--current {
  opacity: 1;
}

/* transitionEffect: zoom-in-out */
.fancybox-fx-zoom-in-out.fancybox-slide--previous {
  transform: scale3d(1.5, 1.5, 1.5);
  opacity: 0;
}

.fancybox-fx-zoom-in-out.fancybox-slide--next {
  transform: scale3d(0.5, 0.5, 0.5);
  opacity: 0;
}

.fancybox-fx-zoom-in-out.fancybox-slide--current {
  transform: scale3d(1, 1, 1);
  opacity: 1;
}

/* transitionEffect: rotate */
.fancybox-fx-rotate.fancybox-slide--previous {
  transform: rotate(-360deg);
  opacity: 0;
}

.fancybox-fx-rotate.fancybox-slide--next {
  transform: rotate(360deg);
  opacity: 0;
}

.fancybox-fx-rotate.fancybox-slide--current {
  transform: rotate(0deg);
  opacity: 1;
}

/* transitionEffect: circular */
.fancybox-fx-circular.fancybox-slide--previous {
  transform: scale3d(0, 0, 0) translate3d(-100%, 0, 0);
  opacity: 0;
}

.fancybox-fx-circular.fancybox-slide--next {
  transform: scale3d(0, 0, 0) translate3d(100%, 0, 0);
  opacity: 0;
}

.fancybox-fx-circular.fancybox-slide--current {
  transform: scale3d(1, 1, 1) translate3d(0, 0, 0);
  opacity: 1;
}

/* transitionEffect: tube */
.fancybox-fx-tube.fancybox-slide--previous {
  transform: translate3d(-100%, 0, 0) scale(0.1) skew(-10deg);
}

.fancybox-fx-tube.fancybox-slide--next {
  transform: translate3d(100%, 0, 0) scale(0.1) skew(10deg);
}

.fancybox-fx-tube.fancybox-slide--current {
  transform: translate3d(0, 0, 0) scale(1);
}

/* Styling for Small-Screen Devices */
@media all and (max-width: 800px) {
  .fancybox-infobar {
    left: 0;
    margin-left: 0;
  }

  .fancybox-button--left,
.fancybox-button--right {
    display: none !important;
  }

  .fancybox-caption {
    padding: 20px 0;
    margin: 0;
  }
}
/* Fullscreen  */
.fancybox-button--fullscreen::before {
  width: 15px;
  height: 11px;
  left: calc(50% - 7px);
  top: calc(50% - 6px);
  border: 2px solid;
  background: none;
}

/* Slideshow button */
.fancybox-button--play::before,
.fancybox-button--pause::before {
  top: calc(50% - 6px);
  left: calc(50% - 4px);
  background: transparent;
}

.fancybox-button--play::before {
  width: 0;
  height: 0;
  border-top: 6px inset transparent;
  border-bottom: 6px inset transparent;
  border-left: 10px solid;
  border-radius: 1px;
}

.fancybox-button--pause::before {
  width: 7px;
  height: 11px;
  border-style: solid;
  border-width: 0 2px 0 2px;
}

/* Thumbs */
.fancybox-thumbs {
  display: none;
}

.fancybox-button--thumbs {
  display: none;
}

@media all and (min-width: 800px) {
  .fancybox-button--thumbs {
    display: inline-block;
  }

  .fancybox-button--thumbs span {
    font-size: 23px;
  }

  .fancybox-button--thumbs::before {
    width: 3px;
    height: 3px;
    top: calc(50% - 2px);
    left: calc(50% - 2px);
    box-shadow: 0 -4px 0, -4px -4px 0, 4px -4px 0, 0 0 0 32px inset, -4px 0 0, 4px 0 0, 0 4px 0, -4px 4px 0, 4px 4px 0;
  }

  .fancybox-thumbs {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: auto;
    width: 220px;
    margin: 0;
    padding: 5px 5px 0 0;
    background: #fff;
    word-break: normal;
    -webkit-tap-highlight-color: transparent;
    -webkit-overflow-scrolling: touch;
    -ms-overflow-style: -ms-autohiding-scrollbar;
    box-sizing: border-box;
    z-index: 99995;
  }

  .fancybox-show-thumbs .fancybox-thumbs {
    display: block;
  }

  .fancybox-show-thumbs .fancybox-inner {
    right: 220px;
  }

  .fancybox-thumbs > ul {
    list-style: none;
    position: absolute;
    position: relative;
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    overflow-y: auto;
    font-size: 0;
  }

  .fancybox-thumbs > ul > li {
    float: left;
    overflow: hidden;
    max-width: 50%;
    padding: 0;
    margin: 0;
    width: 105px;
    height: 75px;
    position: relative;
    cursor: pointer;
    outline: none;
    border: 5px solid transparent;
    border-top-width: 0;
    border-right-width: 0;
    -webkit-tap-highlight-color: transparent;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    box-sizing: border-box;
  }

  li.fancybox-thumbs-loading {
    background: rgba(0, 0, 0, 0.1);
  }

  .fancybox-thumbs > ul > li > img {
    position: absolute;
    top: 0;
    left: 0;
    min-width: 100%;
    min-height: 100%;
    max-width: none;
    max-height: none;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
  }

  .fancybox-thumbs > ul > li:before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    border-radius: 2px;
    border: 4px solid #4ea7f9;
    z-index: 99991;
    opacity: 0;
    transition: all 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  }

  .fancybox-thumbs > ul > li.fancybox-thumbs-active:before {
    opacity: 1;
  }
}
.jslider .jslider-bg i,
.jslider .jslider-pointer {
  background: url(/assets/img/jslider.png) no-repeat 0 0;
}

.jslider {
  display: block;
  width: 100%;
  height: 1em;
  position: relative;
  top: 0.6em;
  font-family: Arial, sans-serif;
}

.jslider table {
  width: 100%;
  border-collapse: collapse;
  border: 0;
}

.jslider td, .jslider th {
  padding: 0;
  vertical-align: top;
  text-align: left;
  border: 0;
}

.jslider table,
.jslider table tr,
.jslider table tr td {
  width: 100%;
  vertical-align: top;
}

.jslider .jslider-bg {
  position: relative;
}

.jslider .jslider-bg i {
  height: 5px;
  position: absolute;
  font-size: 0;
  top: 0;
}

.jslider .jslider-bg .l {
  width: 10%;
  background-position: 0 0;
  left: 0;
}

.jslider .jslider-bg .f {
  width: 80%;
  left: 10%;
  background-repeat: repeat-x;
  background-position: 0 -20px;
}

.jslider .jslider-bg .r {
  width: 10%;
  left: 90%;
  background-position: right 0;
}

.jslider .jslider-bg .v {
  position: absolute;
  width: 60%;
  left: 20%;
  top: 0;
  height: 5px;
  background-repeat: repeat-x;
  background-position: 0 -40px;
}

.jslider .jslider-pointer {
  width: 13px;
  height: 15px;
  background-position: 0 -60px;
  position: absolute;
  left: 20%;
  top: -4px;
  margin-left: -6px;
  cursor: pointer;
  cursor: hand;
}

.jslider .jslider-pointer-hover {
  background-position: -20px -60px;
}

.jslider .jslider-pointer-to {
  left: 80%;
}

.jslider .jslider-label {
  font-size: 9px;
  line-height: 12px;
  color: black;
  opacity: 0.4;
  white-space: nowrap;
  padding: 0px 2px;
  position: absolute;
  top: -18px;
  left: 0px;
}

.jslider .jslider-label-to {
  left: auto;
  right: 0;
}

.jslider .jslider-value {
  font-size: 9px;
  white-space: nowrap;
  padding: 1px 2px 0;
  position: absolute;
  top: -19px;
  left: 20%;
  background: white;
  line-height: 12px;
  border-radius: 2px;
}

.jslider .jslider-value-to {
  left: 80%;
}

.jslider .jslider-label small,
.jslider .jslider-value small {
  position: relative;
  top: -0.4em;
}

.jslider .jslider-scale {
  position: relative;
  top: 9px;
}

.jslider .jslider-scale span {
  position: absolute;
  height: 5px;
  border-left: 1px solid #999;
  font-size: 0;
}

.jslider .jslider-scale ins {
  font-size: 9px;
  text-decoration: none;
  position: absolute;
  left: 0px;
  top: 5px;
  color: #999;
}

.jslider-single .jslider-pointer-to,
.jslider-single .jslider-value-to,
.jslider-single .jslider-bg .v,
.jslider-limitless .jslider-label {
  display: none;
}

.select2-container {
  box-sizing: border-box;
  display: inline-block;
  margin: 0;
  position: relative;
  vertical-align: middle;
}

.select2-container .select2-selection--single {
  box-sizing: border-box;
  cursor: pointer;
  display: block;
  height: 28px;
  -moz-user-select: none;
   -ms-user-select: none;
       user-select: none;
  -webkit-user-select: none;
}

.select2-container .select2-selection--single .select2-selection__rendered {
  display: block;
  padding-left: 8px;
  padding-right: 20px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.select2-container .select2-selection--single .select2-selection__clear {
  background-color: transparent;
  border: none;
  font-size: 1em;
}

.select2-container[dir=rtl] .select2-selection--single .select2-selection__rendered {
  padding-right: 8px;
  padding-left: 20px;
}

.select2-container .select2-selection--multiple {
  box-sizing: border-box;
  cursor: pointer;
  display: block;
  min-height: 32px;
  -moz-user-select: none;
   -ms-user-select: none;
       user-select: none;
  -webkit-user-select: none;
}

.select2-container .select2-selection--multiple .select2-selection__rendered {
  display: inline;
  list-style: none;
  padding: 0;
}

.select2-container .select2-selection--multiple .select2-selection__clear {
  background-color: transparent;
  border: none;
  font-size: 1em;
}

.select2-container .select2-search--inline .select2-search__field {
  box-sizing: border-box;
  border: none;
  font-size: 100%;
  margin-top: 5px;
  margin-left: 5px;
  padding: 0;
  max-width: 100%;
  resize: none;
  height: 18px;
  vertical-align: bottom;
  font-family: sans-serif;
  overflow: hidden;
  word-break: keep-all;
}

.select2-container .select2-search--inline .select2-search__field::-webkit-search-cancel-button {
  -webkit-appearance: none;
}

.select2-dropdown {
  background-color: white;
  border: 1px solid #aaa;
  border-radius: 4px;
  box-sizing: border-box;
  display: block;
  position: absolute;
  left: -100000px;
  width: 100%;
  z-index: 1051;
}

.select2-results {
  display: block;
}

.select2-results__options {
  list-style: none;
  margin: 0;
  padding: 0;
}

.select2-results__option {
  padding: 6px;
  -moz-user-select: none;
   -ms-user-select: none;
       user-select: none;
  -webkit-user-select: none;
}

.select2-results__option--selectable {
  cursor: pointer;
}

.select2-container--open .select2-dropdown {
  left: 0;
}

.select2-container--open .select2-dropdown--above {
  border-bottom: none;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

.select2-container--open .select2-dropdown--below {
  border-top: none;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.select2-search--dropdown {
  display: block;
  padding: 4px;
}

.select2-search--dropdown .select2-search__field {
  padding: 4px;
  width: 100%;
  box-sizing: border-box;
}

.select2-search--dropdown .select2-search__field::-webkit-search-cancel-button {
  -webkit-appearance: none;
}

.select2-search--dropdown.select2-search--hide {
  display: none;
}

.select2-close-mask {
  border: 0;
  margin: 0;
  padding: 0;
  display: block;
  position: fixed;
  left: 0;
  top: 0;
  min-height: 100%;
  min-width: 100%;
  height: auto;
  width: auto;
  opacity: 0;
  z-index: 99;
  background-color: #fff;
  filter: alpha(opacity=0);
}

.select2-hidden-accessible {
  border: 0 !important;
  clip: rect(0 0 0 0) !important;
  -webkit-clip-path: inset(50%) !important;
  clip-path: inset(50%) !important;
  height: 1px !important;
  overflow: hidden !important;
  padding: 0 !important;
  position: absolute !important;
  width: 1px !important;
  white-space: nowrap !important;
}

.select2-container--default .select2-selection--single {
  background-color: #fff;
  border: 1px solid #aaa;
  border-radius: 4px;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
  color: #444;
  line-height: 28px;
}

.select2-container--default .select2-selection--single .select2-selection__clear {
  cursor: pointer;
  float: right;
  font-weight: bold;
  height: 26px;
  margin-right: 20px;
  padding-right: 0px;
}

.select2-container--default .select2-selection--single .select2-selection__placeholder {
  color: #999;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
  height: 26px;
  position: absolute;
  top: 1px;
  right: 1px;
  width: 20px;
}

.select2-container--default .select2-selection--single .select2-selection__arrow b {
  border-color: #888 transparent transparent transparent;
  border-style: solid;
  border-width: 5px 4px 0 4px;
  height: 0;
  left: 50%;
  margin-left: -4px;
  margin-top: -2px;
  position: absolute;
  top: 50%;
  width: 0;
}

.select2-container--default[dir=rtl] .select2-selection--single .select2-selection__clear {
  float: left;
}

.select2-container--default[dir=rtl] .select2-selection--single .select2-selection__arrow {
  left: 1px;
  right: auto;
}

.select2-container--default.select2-container--disabled .select2-selection--single {
  background-color: #eee;
  cursor: default;
}

.select2-container--default.select2-container--disabled .select2-selection--single .select2-selection__clear {
  display: none;
}

.select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b {
  border-color: transparent transparent #888 transparent;
  border-width: 0 4px 5px 4px;
}

.select2-container--default .select2-selection--multiple {
  background-color: white;
  border: 1px solid #aaa;
  border-radius: 4px;
  cursor: text;
  padding-bottom: 5px;
  padding-right: 5px;
  position: relative;
}

.select2-container--default .select2-selection--multiple.select2-selection--clearable {
  padding-right: 25px;
}

.select2-container--default .select2-selection--multiple .select2-selection__clear {
  cursor: pointer;
  font-weight: bold;
  height: 20px;
  margin-right: 10px;
  margin-top: 5px;
  position: absolute;
  right: 0;
  padding: 1px;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice {
  background-color: #e4e4e4;
  border: 1px solid #aaa;
  border-radius: 4px;
  box-sizing: border-box;
  display: inline-block;
  margin-left: 5px;
  margin-top: 5px;
  padding: 0;
  padding-left: 20px;
  position: relative;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  vertical-align: bottom;
  white-space: nowrap;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice__display {
  cursor: default;
  padding-left: 2px;
  padding-right: 5px;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
  background-color: transparent;
  border: none;
  border-right: 1px solid #aaa;
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
  color: #999;
  cursor: pointer;
  font-size: 1em;
  font-weight: bold;
  padding: 0 4px;
  position: absolute;
  left: 0;
  top: 0;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice__remove:hover, .select2-container--default .select2-selection--multiple .select2-selection__choice__remove:focus {
  background-color: #f1f1f1;
  color: #333;
  outline: none;
}

.select2-container--default[dir=rtl] .select2-selection--multiple .select2-selection__choice {
  margin-left: 5px;
  margin-right: auto;
}

.select2-container--default[dir=rtl] .select2-selection--multiple .select2-selection__choice__display {
  padding-left: 5px;
  padding-right: 2px;
}

.select2-container--default[dir=rtl] .select2-selection--multiple .select2-selection__choice__remove {
  border-left: 1px solid #aaa;
  border-right: none;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
}

.select2-container--default[dir=rtl] .select2-selection--multiple .select2-selection__clear {
  float: left;
  margin-left: 10px;
  margin-right: auto;
}

.select2-container--default.select2-container--focus .select2-selection--multiple {
  border: solid black 1px;
  outline: 0;
}

.select2-container--default.select2-container--disabled .select2-selection--multiple {
  background-color: #eee;
  cursor: default;
}

.select2-container--default.select2-container--disabled .select2-selection__choice__remove {
  display: none;
}

.select2-container--default.select2-container--open.select2-container--above .select2-selection--single, .select2-container--default.select2-container--open.select2-container--above .select2-selection--multiple {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.select2-container--default.select2-container--open.select2-container--below .select2-selection--single, .select2-container--default.select2-container--open.select2-container--below .select2-selection--multiple {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

.select2-container--default .select2-search--dropdown .select2-search__field {
  border: 1px solid #aaa;
}

.select2-container--default .select2-search--inline .select2-search__field {
  background: transparent;
  border: none;
  outline: 0;
  box-shadow: none;
  -webkit-appearance: textfield;
}

.select2-container--default .select2-results > .select2-results__options {
  max-height: 200px;
  overflow-y: auto;
}

.select2-container--default .select2-results__option .select2-results__option {
  padding-left: 1em;
}

.select2-container--default .select2-results__option .select2-results__option .select2-results__group {
  padding-left: 0;
}

.select2-container--default .select2-results__option .select2-results__option .select2-results__option {
  margin-left: -1em;
  padding-left: 2em;
}

.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
  margin-left: -2em;
  padding-left: 3em;
}

.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
  margin-left: -3em;
  padding-left: 4em;
}

.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
  margin-left: -4em;
  padding-left: 5em;
}

.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
  margin-left: -5em;
  padding-left: 6em;
}

.select2-container--default .select2-results__option--group {
  padding: 0;
}

.select2-container--default .select2-results__option--disabled {
  color: #999;
}

.select2-container--default .select2-results__option--selected {
  background-color: #ddd;
}

.select2-container--default .select2-results__option--highlighted.select2-results__option--selectable {
  background-color: #5897fb;
  color: white;
}

.select2-container--default .select2-results__group {
  cursor: default;
  display: block;
  padding: 6px;
}

.select2-container--classic .select2-selection--single {
  background-color: #f7f7f7;
  border: 1px solid #aaa;
  border-radius: 4px;
  outline: 0;
  background-image: linear-gradient(to bottom, white 50%, #eeeeee 100%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#FFFFFFFF", endColorstr="#FFEEEEEE", GradientType=0);
}

.select2-container--classic .select2-selection--single:focus {
  border: 1px solid #5897fb;
}

.select2-container--classic .select2-selection--single .select2-selection__rendered {
  color: #444;
  line-height: 28px;
}

.select2-container--classic .select2-selection--single .select2-selection__clear {
  cursor: pointer;
  float: right;
  font-weight: bold;
  height: 26px;
  margin-right: 20px;
}

.select2-container--classic .select2-selection--single .select2-selection__placeholder {
  color: #999;
}

.select2-container--classic .select2-selection--single .select2-selection__arrow {
  background-color: #ddd;
  border: none;
  border-left: 1px solid #aaa;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
  height: 26px;
  position: absolute;
  top: 1px;
  right: 1px;
  width: 20px;
  background-image: linear-gradient(to bottom, #eeeeee 50%, #cccccc 100%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#FFEEEEEE", endColorstr="#FFCCCCCC", GradientType=0);
}

.select2-container--classic .select2-selection--single .select2-selection__arrow b {
  border-color: #888 transparent transparent transparent;
  border-style: solid;
  border-width: 5px 4px 0 4px;
  height: 0;
  left: 50%;
  margin-left: -4px;
  margin-top: -2px;
  position: absolute;
  top: 50%;
  width: 0;
}

.select2-container--classic[dir=rtl] .select2-selection--single .select2-selection__clear {
  float: left;
}

.select2-container--classic[dir=rtl] .select2-selection--single .select2-selection__arrow {
  border: none;
  border-right: 1px solid #aaa;
  border-radius: 0;
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
  left: 1px;
  right: auto;
}

.select2-container--classic.select2-container--open .select2-selection--single {
  border: 1px solid #5897fb;
}

.select2-container--classic.select2-container--open .select2-selection--single .select2-selection__arrow {
  background: transparent;
  border: none;
}

.select2-container--classic.select2-container--open .select2-selection--single .select2-selection__arrow b {
  border-color: transparent transparent #888 transparent;
  border-width: 0 4px 5px 4px;
}

.select2-container--classic.select2-container--open.select2-container--above .select2-selection--single {
  border-top: none;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  background-image: linear-gradient(to bottom, white 0%, #eeeeee 50%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#FFFFFFFF", endColorstr="#FFEEEEEE", GradientType=0);
}

.select2-container--classic.select2-container--open.select2-container--below .select2-selection--single {
  border-bottom: none;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  background-image: linear-gradient(to bottom, #eeeeee 50%, white 100%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#FFEEEEEE", endColorstr="#FFFFFFFF", GradientType=0);
}

.select2-container--classic .select2-selection--multiple {
  background-color: white;
  border: 1px solid #aaa;
  border-radius: 4px;
  cursor: text;
  outline: 0;
  padding-bottom: 5px;
  padding-right: 5px;
}

.select2-container--classic .select2-selection--multiple:focus {
  border: 1px solid #5897fb;
}

.select2-container--classic .select2-selection--multiple .select2-selection__clear {
  display: none;
}

.select2-container--classic .select2-selection--multiple .select2-selection__choice {
  background-color: #e4e4e4;
  border: 1px solid #aaa;
  border-radius: 4px;
  display: inline-block;
  margin-left: 5px;
  margin-top: 5px;
  padding: 0;
}

.select2-container--classic .select2-selection--multiple .select2-selection__choice__display {
  cursor: default;
  padding-left: 2px;
  padding-right: 5px;
}

.select2-container--classic .select2-selection--multiple .select2-selection__choice__remove {
  background-color: transparent;
  border: none;
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
  color: #888;
  cursor: pointer;
  font-size: 1em;
  font-weight: bold;
  padding: 0 4px;
}

.select2-container--classic .select2-selection--multiple .select2-selection__choice__remove:hover {
  color: #555;
  outline: none;
}

.select2-container--classic[dir=rtl] .select2-selection--multiple .select2-selection__choice {
  margin-left: 5px;
  margin-right: auto;
}

.select2-container--classic[dir=rtl] .select2-selection--multiple .select2-selection__choice__display {
  padding-left: 5px;
  padding-right: 2px;
}

.select2-container--classic[dir=rtl] .select2-selection--multiple .select2-selection__choice__remove {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
}

.select2-container--classic.select2-container--open .select2-selection--multiple {
  border: 1px solid #5897fb;
}

.select2-container--classic.select2-container--open.select2-container--above .select2-selection--multiple {
  border-top: none;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.select2-container--classic.select2-container--open.select2-container--below .select2-selection--multiple {
  border-bottom: none;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

.select2-container--classic .select2-search--dropdown .select2-search__field {
  border: 1px solid #aaa;
  outline: 0;
}

.select2-container--classic .select2-search--inline .select2-search__field {
  outline: 0;
  box-shadow: none;
}

.select2-container--classic .select2-dropdown {
  background-color: white;
  border: 1px solid transparent;
}

.select2-container--classic .select2-dropdown--above {
  border-bottom: none;
}

.select2-container--classic .select2-dropdown--below {
  border-top: none;
}

.select2-container--classic .select2-results > .select2-results__options {
  max-height: 200px;
  overflow-y: auto;
}

.select2-container--classic .select2-results__option--group {
  padding: 0;
}

.select2-container--classic .select2-results__option--disabled {
  color: grey;
}

.select2-container--classic .select2-results__option--highlighted.select2-results__option--selectable {
  background-color: #3875d7;
  color: white;
}

.select2-container--classic .select2-results__group {
  cursor: default;
  display: block;
  padding: 6px;
}

.select2-container--classic.select2-container--open .select2-dropdown {
  border-color: #5897fb;
}

@-webkit-keyframes loadAnimation {
  9% {
    box-shadow: none;
  }
  10% {
    box-shadow: -8px 0 0;
  }
  35% {
    box-shadow: -8px 0 0;
  }
  35.1% {
    box-shadow: -8px 0 0, 8px 0 0;
  }
  60% {
    box-shadow: -8px 0 0, 8px 0 0;
  }
  60.1% {
    box-shadow: -8px 0 0, 8px 0 0, 24px 0 0;
  }
  85% {
    box-shadow: -8px 0 0, 8px 0 0, 24px 0 0;
  }
  85.1% {
    box-shadow: none;
  }
  100% {
    box-shadow: none;
  }
}

@keyframes loadAnimation {
  9% {
    box-shadow: none;
  }
  10% {
    box-shadow: -8px 0 0;
  }
  35% {
    box-shadow: -8px 0 0;
  }
  35.1% {
    box-shadow: -8px 0 0, 8px 0 0;
  }
  60% {
    box-shadow: -8px 0 0, 8px 0 0;
  }
  60.1% {
    box-shadow: -8px 0 0, 8px 0 0, 24px 0 0;
  }
  85% {
    box-shadow: -8px 0 0, 8px 0 0, 24px 0 0;
  }
  85.1% {
    box-shadow: none;
  }
  100% {
    box-shadow: none;
  }
}
@font-face {
  font-family: "montserratarm";
  font-display: swap;
  src: url("/assets/fonts/Montserratarm-Regular/Montserratarm-Regular.eot?#iefix") format("embedded-opentype"), url("/assets/fonts/Montserratarm-Regular/Montserratarm-Regular.otf") format("opentype"), url("/assets/fonts/Montserratarm-Regular/Montserratarm-Regular.woff") format("woff"), url("/assets/fonts/Montserratarm-Regular/Montserratarm-Regular.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "icon";
  font-display: "auto";
  src: url("/assets/fonts/icons/icomoon.eot?e4dkio");
  src: url("/assets/fonts/icons/icomoon.eot?e4dkio#iefix") format("embedded-opentype"), url("/assets/fonts/icons/icomoon.ttf?e4dkio") format("truetype"), url("/assets/fonts/icons/icomoon.woff?e4dkio") format("woff");
  font-weight: normal;
  font-style: normal;
}
.icon_facebook:before {
  content: "\e90a";
}

.icon_arrow:before {
  content: "\e908";
}

.icon_instagram:before {
  content: "\e90b";
}

.icon_linkedin:before {
  content: "\e90c";
}

.icon_twitter:before {
  content: "\e90d";
}

.icon_pinterest:before {
  content: "\e90e";
}

.icon_youtube:before {
  content: "\e931";
}

.icon_telegram:before {
  content: "\e91a";
}

.icon_ok:before {
  content: "\e91b";
}

.icon_vk:before {
  content: "\e91c";
}

.icon_google:before {
  content: "\e91d";
}

.icon_tiktok:before {
  content: "\e91e";
}

.icon_flickr:before {
  content: "\e91f";
}

.icon_down:before {
  content: "\e901";
}

.icon_left:before {
  content: "\e902";
}

.icon_right:before {
  content: "\e903";
}

.icon_close:before {
  content: "\e904";
}

.icon_checked:before {
  content: "\e905";
}

.icon_info:before {
  content: "\e906";
}

.icon_globe:before {
  content: "\e92f";
}

.icon_favorite:before {
  content: "\e907";
}

.icon_call:before {
  content: "\e92c";
}

.icon_search:before {
  content: "\e90f";
}

.icon_union:before {
  content: "\e92e";
}

.icon_s1_logo:before {
  content: "\e92d";
}

.icon_promotion:before {
  content: "\e930";
}

.icon_download:before {
  content: "\e932";
}

html {
  height: 100%;
  font-size: 10px;
  line-height: 1.4286em;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  -ms-overflow-style: scrollbar;
  -webkit-tap-highlight-color: transparent;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding: 0;
  border: none;
  font-size: 100%;
  width: 100%;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
  min-height: 100%;
  font-family: "montserratarm";
  background: #282828;
}
body:before {
  display: block;
  position: fixed;
  content: "";
  z-index: 999;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.1);
  opacity: 0;
  height: 0;
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
  transition: height 0.05s, opacity 0.5s;
  transition-delay: 0.5s;
}
body.popup_opened {
  overflow: hidden;
}
body.popup_opened:before {
  height: 100%;
  opacity: 0.6;
  transition-delay: 0s;
}
body:not(.loaded) {
  pointer-events: none;
  overflow: hidden;
  height: 100%;
}
body.loaded .loader {
  transition: opacity 0.5s;
  transition-delay: 2s;
  opacity: 0;
  pointer-events: none;
}

.result_popup .popup_title {
  margin-bottom: 16px;
}
.result_popup .popup_description {
  color: #C7C7C7;
  font-size: 140%;
  line-height: 17px;
}

.presentation_content .popup_description,
.reservation_content .popup_description {
  font-size: 110%;
  line-height: 14px;
  color: #C7C7C7;
  margin-top: 20px;
}
.presentation_content .popup_description a,
.reservation_content .popup_description a {
  color: #FCB535;
}
.presentation_content.presentation_content .popup_title,
.reservation_content.presentation_content .popup_title {
  margin-bottom: 0;
}
.presentation_content.presentation_content .block_description,
.reservation_content.presentation_content .block_description {
  font-size: 140%;
  line-height: 20px;
  margin: 10px 0 20px;
  color: #C7C7C7;
}
.presentation_content.presentation_content.popup_content,
.reservation_content.presentation_content.popup_content {
  display: none;
}
.presentation_content.presentation_content.popup_content.showed,
.reservation_content.presentation_content.popup_content.showed {
  opacity: 1;
  height: auto;
}
.presentation_content.presentation_content.popup_content.active,
.reservation_content.presentation_content.popup_content.active {
  display: block;
}
.presentation_content.presentation_content .list_pdf,
.reservation_content.presentation_content .list_pdf {
  padding: 0;
  margin: 0;
  list-style-type: none;
  font-size: 140%;
  line-height: 20px;
  color: #ffffff;
  margin-top: 10px;
}
.presentation_content.presentation_content .list_pdf li,
.reservation_content.presentation_content .list_pdf li {
  margin-bottom: 20px;
}
.presentation_content.presentation_content .list_pdf a,
.reservation_content.presentation_content .list_pdf a {
  color: inherit;
  display: flex;
  align-items: center;
  width: 100%;
  max-width: -webkit-max-content;
  max-width: -moz-max-content;
  max-width: max-content;
}
.presentation_content.presentation_content .list_pdf a span,
.reservation_content.presentation_content .list_pdf a span {
  text-decoration: underline;
  margin-left: 12px;
}
.presentation_content.presentation_content .list_pdf a:before,
.reservation_content.presentation_content .list_pdf a:before {
  content: "\e932";
  color: #FCB535;
  font-size: 2.4rem;
}
.presentation_content input,
.reservation_content input {
  border: 1px solid #F8F8F8;
  height: 45px;
  width: 100%;
  background: none;
  font-size: 140%;
  line-height: 17px;
  color: #ffffff;
  padding: 14px 10px;
}
.presentation_content input::-moz-placeholder, .reservation_content input::-moz-placeholder {
  color: #C7C7C7;
  font-size: 13px;
  line-height: 17px;
  text-transform: uppercase;
}
.presentation_content input:-ms-input-placeholder, .reservation_content input:-ms-input-placeholder {
  color: #C7C7C7;
  font-size: 13px;
  line-height: 17px;
  text-transform: uppercase;
}
.presentation_content input::placeholder,
.reservation_content input::placeholder {
  color: #C7C7C7;
  font-size: 13px;
  line-height: 17px;
  text-transform: uppercase;
}
@media screen and (max-width: 959px) {
  .presentation_content input::-moz-placeholder, .reservation_content input::-moz-placeholder {
    font-size: 12px;
  }
  .presentation_content input:-ms-input-placeholder, .reservation_content input:-ms-input-placeholder {
    font-size: 12px;
  }
  .presentation_content input::placeholder,
.reservation_content input::placeholder {
    font-size: 12px;
  }
}
.presentation_content .validate_btn,
.reservation_content .validate_btn {
  background: #FCB535;
  border: none;
  margin-top: 30px;
  padding: 17px 20px;
  color: #282828;
  font-size: 120%;
  line-height: 14px;
  text-align: center;
  display: block;
  text-transform: uppercase;
  width: 100%;
}
.presentation_content .field_block,
.reservation_content .field_block {
  margin-bottom: 20px;
}

.popup_block {
  position: fixed;
  left: 0;
  width: 100%;
  height: 100%;
  top: 100%;
  overflow: hidden;
  z-index: 1000;
  transition: top 0.5s;
}
.popup_block.showed {
  top: 0;
  overflow-y: auto;
}
.popup_inner {
  display: flex;
  width: 100%;
  min-height: 100%;
  justify-content: center;
  align-items: center;
  padding: 20px;
}
.popup_container {
  background: #282828;
  width: 100%;
  max-width: 420px;
  padding: 50px 70px;
  position: relative;
}
.popup_content {
  position: relative;
  overflow: hidden;
  transition: opacity 0.3s;
}
.popup_content:not(.showed) {
  opacity: 0;
  height: 0;
}
.popup_close {
  position: absolute;
  top: 25px;
  right: 25px;
  font-size: 130%;
  border: none;
  padding: 2px;
  background: transparent;
  color: #ffffff;
}
.popup_close:before {
  display: block;
}
.popup_title {
  color: #FCB535;
  font-size: 180%;
  line-height: 21px;
  margin-bottom: 25px;
}
@media screen and (max-width: 959px) {
  .popup_title {
    color: #FCB535;
    font-size: 150%;
    line-height: 21px;
    margin-bottom: 25px;
  }
  .popup_close {
    top: 8px;
    font-size: 110%;
    right: 15px;
  }
  .popup_container {
    background: #282828;
    width: 100%;
    max-width: 420px;
    padding: 20px 20px;
    position: relative;
  }
}

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

input,
select,
textarea,
button,
a,
.slick-slide {
  outline: none !important;
}

select {
  visibility: hidden;
}

a,
a:focus,
a:hover,
button:hover {
  text-decoration: none;
}

a {
  color: #FCB535;
}

button {
  cursor: pointer;
  display: block;
}

img {
  max-height: none;
  border: none;
}

input {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}

input,
textarea,
button {
  font-family: inherit;
  font-size: 100%;
}

.page_row {
  display: flex;
  flex-wrap: wrap;
  margin-left: -10px;
  margin-right: -10px;
}
.page_row .cb {
  flex: 0 0 100%;
  max-width: 100%;
}

.page_container {
  width: 100%;
  max-width: 1210px;
  padding-left: 15px;
  padding-right: 15px;
  margin: 0 auto;
}

.phone_link:not(.clickable) {
  color: inherit;
  cursor: default;
  pointer-events: none;
}

.individual_hint,
.drop_list,
.drop_block {
  display: none;
}

.error_hint {
  display: block;
  max-height: 0;
  overflow: hidden;
  color: #b94a48;
  font-size: 11px;
  line-height: 1.33em;
}

.help-block.form-error {
  display: none !important;
}

.has-error .error_hint,
.has-error + .error_hint {
  max-height: 60px;
  margin-top: 5px;
}

.field_block {
  position: relative;
}
.field_block input,
.field_block textarea {
  width: 100%;
}
.field_block textarea {
  resize: none;
  display: block;
}

.cb {
  display: block;
  clear: both;
}

.page_title {
  margin: 0;
  color: #ffffff;
  text-transform: uppercase;
  font-weight: 400;
  font-family: "Cormorant Garamond", serif;
  letter-spacing: 0.08em;
}
@media screen and (min-width: 1200px) {
  .page_title {
    font-size: 400%;
    line-height: 48px;
  }
}
@media screen and (min-width: 960px) and (max-width: 1199px) {
  .page_title {
    font-size: 350%;
    line-height: 40px;
  }
}
@media screen and (min-width: 768px) and (max-width: 959px) {
  .page_title {
    font-size: 250%;
    line-height: 34px;
  }
}
@media screen and (min-width: 576px) and (max-width: 767px) {
  .page_title {
    font-size: 200%;
    line-height: 29px;
  }
}
@media screen and (max-width: 575px) {
  .page_title {
    font-size: 200%;
    line-height: 25px;
  }
}

.block_sub_title {
  margin: 0;
  color: #ffffff;
  text-transform: uppercase;
}
@media screen and (min-width: 1200px) {
  .block_sub_title {
    font-size: 320%;
    line-height: 40px;
  }
}
@media screen and (min-width: 960px) and (max-width: 1199px) {
  .block_sub_title {
    font-size: 300%;
    line-height: 38px;
  }
}
@media screen and (min-width: 768px) and (max-width: 959px) {
  .block_sub_title {
    font-size: 250%;
    line-height: 34px;
  }
}
@media screen and (min-width: 576px) and (max-width: 767px) {
  .block_sub_title {
    font-size: 200%;
    line-height: 29px;
  }
}
@media screen and (max-width: 575px) {
  .block_sub_title {
    font-size: 180%;
    line-height: 23px;
  }
}

.page_description {
  font-size: 160%;
  line-height: 27px;
  color: #ffffff;
}

.sub_title {
  font-size: 200%;
  line-height: 27px;
  color: #C5C5C5;
}
@media screen and (max-width: 1199px) {
  .sub_title {
    font-size: 160%;
    line-height: 21px;
  }
}
@media screen and (max-width: 959px) {
  .sub_title {
    font-size: 140%;
    line-height: 21px;
  }
}

.label_text {
  font-size: 0;
  line-height: 0;
  opacity: 0;
  display: none;
}

label {
  width: auto;
  height: auto;
  display: block;
}

.inner_title_general {
  font-size: 180%;
  line-height: 21px;
  color: #ffffff;
}
@media screen and (max-width: 767px) {
  .inner_title_general {
    font-size: 150%;
    line-height: 21px;
  }
}

.section_title {
  font-size: 240%;
  line-height: 29px;
  color: #ffffff;
  font-family: "Cormorant Garamond", serif;
  font-weight: 400;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
@media screen and (max-width: 959px) {
  .section_title {
    font-size: 200%;
    line-height: 27px;
  }
}
@media screen and (max-width: 767px) {
  .section_title {
    font-size: 180%;
    line-height: 21px;
  }
}

.block_description {
  font-size: 120%;
  line-height: 21px;
  color: #ffffff;
  display: block;
}

.loader {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: #282828;
  padding: 20px;
  z-index: 1000;
}
.loader img {
  display: block;
  width: 100%;
  height: auto;
}
.loader_inner {
  position: relative;
  overflow: hidden;
  width: 240px;
  max-width: 50%;
}
.loader_inner span {
  display: block;
  background: #282828;
  z-index: 2;
  position: absolute;
  width: 34%;
}
.loader .indicator {
  position: absolute;
  width: 1px;
  height: 1px;
  bottom: 0;
  left: 0;
  opacity: 0;
  -webkit-animation: countAnimation 48s forwards linear;
          animation: countAnimation 48s forwards linear;
}
.loader .build_1 {
  left: 0;
  top: 30%;
  height: 43%;
  -webkit-animation: showBuild1 2.4s infinite;
          animation: showBuild1 2.4s infinite;
}
.loader .build_2 {
  left: 33.3%;
  top: 0;
  height: 73%;
  -webkit-animation: showBuild2 2.4s infinite;
          animation: showBuild2 2.4s infinite;
}
.loader .build_3 {
  left: 66.6%;
  top: 15%;
  height: 58%;
  -webkit-animation: showBuild3 2.4s infinite;
          animation: showBuild3 2.4s infinite;
}

@-webkit-keyframes countAnimation {
  0% {
    width: 1px;
  }
  100% {
    width: 21px;
  }
}

@keyframes countAnimation {
  0% {
    width: 1px;
  }
  100% {
    width: 21px;
  }
}
@-webkit-keyframes showBuild1 {
  0% {
    height: 43%;
  }
  25% {
    height: 0;
  }
  100% {
    height: 0;
  }
}
@keyframes showBuild1 {
  0% {
    height: 43%;
  }
  25% {
    height: 0;
  }
  100% {
    height: 0;
  }
}
@-webkit-keyframes showBuild2 {
  0% {
    height: 73%;
  }
  25% {
    height: 73%;
  }
  50% {
    height: 0;
  }
  100% {
    height: 0;
  }
}
@keyframes showBuild2 {
  0% {
    height: 73%;
  }
  25% {
    height: 73%;
  }
  50% {
    height: 0;
  }
  100% {
    height: 0;
  }
}
@-webkit-keyframes showBuild3 {
  0% {
    height: 58%;
  }
  50% {
    height: 58%;
  }
  75% {
    height: 0;
  }
  100% {
    height: 0;
  }
}
@keyframes showBuild3 {
  0% {
    height: 58%;
  }
  50% {
    height: 58%;
  }
  75% {
    height: 0;
  }
  100% {
    height: 0;
  }
}
@-webkit-keyframes showName {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
@keyframes showName {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
@-webkit-keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(40px);
    -webkit-clip-path: inset(100% 0 0 0);
            clip-path: inset(100% 0 0 0);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
    -webkit-clip-path: inset(0 0 0 0);
            clip-path: inset(0 0 0 0);
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  }
}
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(40px);
    -webkit-clip-path: inset(100% 0 0 0);
            clip-path: inset(100% 0 0 0);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
    -webkit-clip-path: inset(0 0 0 0);
            clip-path: inset(0 0 0 0);
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  }
}
.tab_block {
  transition: opacity 0.5s;
}
.tab_block:not(.selected) {
  height: 0;
  opacity: 0;
  position: relative;
  overflow: hidden;
}

.paging {
  padding: 30px;
}
.paging ul {
  padding: 0;
  margin: 0 0 0 0;
  list-style-type: none;
  display: flex;
  justify-content: flex-end;
  font-size: 120%;
  line-height: 14px;
  color: #ffffff;
}
.paging li {
  margin: 0 8px 0 7px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  color: #ffffff;
  background: transparent;
  border-radius: 4px;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}
.paging li.inactive {
  color: transparent;
  pointer-events: none;
}
.paging a {
  display: inherit;
  color: #ffffff;
  align-items: inherit;
  justify-content: inherit;
  width: inherit;
  height: inherit;
  border: none;
  background: none;
  border-radius: inherit;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}
.paging a:hover:not(.current_page) {
  background: rgba(252, 181, 53, 0.15);
  color: #FCB535;
}
.paging a.current_page {
  background: linear-gradient(135deg, #FCB535 0%, #FF8C00 100%);
  color: #282828;
  pointer-events: none;
  box-shadow: 0 0 8px rgba(252, 181, 53, 0.2);
}
.paging .prev_page,
.paging .next_page {
  border: none;
  background: transparent;
  font-size: 0;
}
.paging .prev_page:before,
.paging .next_page:before {
  font-size: 0.9rem;
  display: block;
  font-weight: 700;
}
@media screen and (min-width: 576px) and (max-width: 959px) {
  .paging ul {
    margin: 0 -5px;
  }
  .paging li {
    width: 40px;
    height: 40px;
    margin: 0 5px;
  }
}
@media screen and (max-width: 575px) {
  .paging ul {
    margin: 0 -3px;
    justify-content: center;
  }
  .paging li {
    margin: 0 3px;
    width: 34px;
    height: 34px;
  }
}

.breadcrumbs {
  position: relative;
  z-index: 6;
  padding-bottom: 17px;
}
.breadcrumbs ul {
  font-size: 120%;
  line-height: 14px;
  display: flex;
  align-items: center;
  color: #ffffff;
}
.breadcrumbs li {
  display: flex;
  align-items: center;
}
.breadcrumbs li:not(:first-child):before {
  display: block;
  margin: 0 5px;
  content: "/";
}
.breadcrumbs li a,
.breadcrumbs li div {
  display: block;
  max-width: 300px;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
  text-overflow: ellipsis;
}
.breadcrumbs a {
  color: #ffffff;
}
@media screen and (max-width: 767px) {
  .breadcrumbs {
    display: none;
  }
}

.share_bts {
  font-size: 120%;
  line-height: 17px;
  color: #ffffff;
  display: flex;
  align-items: center;
  width: 100%;
  justify-content: flex-end;
  margin-top: 30px;
}

.addthis_inline_share_toolbox_g5uj {
  margin-left: 16px;
}
.addthis_inline_share_toolbox_g5uj .at-share-btn-elements a {
  margin: 0 3px;
  border: 1px solid #ffffff;
  background: #282828 !important;
}
.addthis_inline_share_toolbox_g5uj .at-resp-share-element .at-share-btn {
  border-radius: 50% !important;
}

.inner_container {
  max-width: 980px;
  margin: 0 auto;
}

.privacy_policy {
  max-width: 1180px;
  width: 100%;
  margin: 0 auto;
  padding: 50px 10px;
}
.privacy_policy .page_description {
  color: #C7C7C7;
}
.privacy_policy ul {
  margin: 0;
  padding: 0 20px 0;
  font-size: 160%;
  line-height: 27px;
  color: #C7C7C7;
}

.hidden_inputs_block {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 8px;
}
.hidden_inputs_block > input {
  border: none;
  background: none;
  padding: 0;
  font-size: 150%;
  line-height: 18px;
  color: #ffffff;
  flex: 1;
  width: 100%;
  border-radius: 2px;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}

.vue-range-slider.slider-component .slider .slider-process {
  background: #FCB535 !important;
}

.vue-range-slider.slider-component .slider {
  background-color: #ECECEC !important;
  height: 4px !important;
  border-radius: 0 !important;
}

.vue-range-slider.slider-component .slider .slider-dot {
  width: 20px !important;
  height: 20px !important;
  margin-left: 0 !important;
  border-radius: 50% !important;
  border: 1px solid #ECECEC;
  background-color: #ffffff !important;
  top: 0;
  margin-top: -3px;
  box-shadow: 0 0 4px 0 rgba(133, 78, 41, 0.25) !important;
}

.to_input,
.from_input {
  border: none;
  background: none;
  padding: 0;
  font-size: 150%;
  line-height: 18px;
  color: #ffffff;
  flex: 1;
  width: 100%;
  border-radius: 2px;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}

.to_input {
  text-align: end;
}

.contents_scroll {
  display: block;
  width: 100%;
  max-width: 100%;
  position: relative;
  overflow: hidden;
}

.animation_transform.text_animation {
  transition: transform 1s;
}
.animation_transform:not(.active) {
  transform: scale(0);
  -moz-transform: scale(0);
  -ms-transform: scale(0);
  -webkit-transform: scale(0);
  -o-transform: scale(0);
}

.animation_active .animation_step {
  transition: all 1s;
}

.left_animation:not(.animation_active) .animation_step {
  transform: translate3d(-100vw, 0, 0);
  -moz-transform: translate3d(-100vw, 0, 0);
  -ms-transform: translate3d(-100vw, 0, 0);
  -webkit-transform: translate3d(-100vw, 0, 0);
  -o-transform: translate3d(-100vw, 0, 0);
}

.right_animation:not(.animation_active) .animation_step {
  transform: translate3d(100vw, 0, 0);
  -moz-transform: translate3d(100vw, 0, 0);
  -ms-transform: translate3d(100vw, 0, 0);
  -webkit-transform: translate3d(100vw, 0, 0);
  -o-transform: translate3d(100vw, 0, 0);
}

.bottom_animation:not(.animation_active) .animation_step {
  transform: translate3d(0, 100%, 0);
  -moz-transform: translate3d(0, 100%, 0);
  -ms-transform: translate3d(0, 100%, 0);
  -webkit-transform: translate3d(0, 100%, 0);
  -o-transform: translate3d(0, 100%, 0);
}

.top_animation:not(.animation_active) .animation_step {
  transform: translate3d(0, -100%, 0);
  -moz-transform: translate3d(0, -100%, 0);
  -ms-transform: translate3d(0, -100%, 0);
  -webkit-transform: translate3d(0, -100%, 0);
  -o-transform: translate3d(0, -100%, 0);
}

.fade_animation:not(.animation_active) .animation_step {
  opacity: 0;
}

.slider_disabled {
  pointer-events: none;
  opacity: 0.5;
}

.sharethis-inline-share-buttons {
  margin-left: 10px;
}
.sharethis-inline-share-buttons .st-last {
  display: inline-block !important;
}
.sharethis-inline-share-buttons .st-btn {
  background: none !important;
  border: 1px solid #ffffff !important;
  border-radius: 50% !important;
  min-width: 40px !important;
  width: 40px !important;
  height: 40px !important;
}
.sharethis-inline-share-buttons img {
  top: 8px !important;
  left: -2px !important;
}
.sharethis-inline-share-buttons .st-btn[data-network=telegram]:before {
  content: "\e91a";
}
.sharethis-inline-share-buttons .st-btn[data-network=telegram] img {
  display: none !important;
}

.list_block {
  position: relative;
}

.sale_sticker,
.hot_sticker {
  padding: 0 10px;
  height: 30px;
  font-size: 120%;
  line-height: 1.33rem;
  display: flex;
  align-items: center;
  width: 100%;
  max-width: -webkit-max-content;
  max-width: -moz-max-content;
  max-width: max-content;
  position: absolute;
  z-index: 1;
  right: 14px;
  top: 14px;
  font-weight: 600;
}
@media screen and (max-width: 959px) {
  .sale_sticker,
.hot_sticker {
    right: 10px;
    top: 10px;
  }
}
.sale_sticker + .hot_sticker,
.sale_sticker + .sale_sticker,
.hot_sticker + .hot_sticker,
.hot_sticker + .sale_sticker {
  margin-top: 40px;
}

.sale_sticker {
  background: #FFE194;
  color: #282828;
}
.sale_sticker:before {
  font-size: 2rem;
  margin-right: 5px;
  font-weight: 600;
}

.hot_sticker {
  background: #FF4D4D;
  color: #ffffff;
}

.custom_label_1 {
  background: #1a2a3a;
  color: #ffffff;
}
.custom_label_1:before {
  display: none;
}

.custom_label_2 {
  background: #800020;
  color: #ffffff;
}
.custom_label_2:before {
  display: none;
}

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

.iti-mobile {
  width: auto;
}

[class*=validate_btn].loading,
[class*=validate_button].loading,
[class*=validate-button].loading {
  pointer-events: none;
  -webkit-text-fill-color: transparent;
  position: relative;
}
[class*=validate_btn].loading:after,
[class*=validate_button].loading:after,
[class*=validate-button].loading:after {
  position: absolute;
  top: 50%;
  left: 50%;
  margin: -4px -12px;
  border-radius: 50%;
  color: inherit;
  display: block;
  width: 8px;
  height: 8px;
  content: "";
  -webkit-animation: loadAnimation 1.6s infinite linear;
          animation: loadAnimation 1.6s infinite linear;
}

@-webkit-keyframes showTouchHint {
  0%, 100% {
    opacity: 0;
  }
  50% {
    opacity: 0.6;
  }
}

@keyframes showTouchHint {
  0%, 100% {
    opacity: 0;
  }
  50% {
    opacity: 0.6;
  }
}
.touch_hint {
  -webkit-animation: showTouchHint 1s ease-in;
          animation: showTouchHint 1s ease-in;
}

.projects_list, .section_home, .home_section .home_buttons, .main_slider .slick-dots, .homes_filter .tab_buttons, .homes_filter .switch_buttons,
.homes_filter .filter_buttons, .homes_filter .slick-dots, .news_section .news_slider_btn,
.news_section .tab_buttons, .socials_list, .footer_menu, .header .catalog_list, .header .main_menu, .header .lg_list, .breadcrumbs ul {
  padding: 0;
  margin: 0;
  list-style-type: none;
}

.section_home li .img_inner img, .main_slider .slide_image, .map_block .preload_images, .homes_filter .images_slider .slide_block img, .images_section .images_slider .slide_inner img, .projects_list .img_block > img, .news_section .news_image > img {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.select2-container--default.select2-container--open .select2-selection__arrow, .iti__arrow.iti__arrow--up {
  transform: scaleY(-1);
  -moz-transform: scaleY(-1);
  -ms-transform: scaleY(-1);
  -webkit-transform: scaleY(-1);
  -o-transform: scaleY(-1);
}

@-webkit-keyframes kenBurns {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.05);
  }
}

@keyframes kenBurns {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.05);
  }
}
.projects_list .img_block > img, .news_section .news_image > img {
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-animation: kenBurns 25s linear infinite alternate;
          animation: kenBurns 25s linear infinite alternate;
}

.news_section .news_image iframe {
  position: absolute;
  left: 0;
  top: 0;
  width: 100% !important;
  height: 100% !important;
}

.news_section .news_image {
  position: relative;
  overflow: hidden;
}
.news_section .news_image:before {
  display: block;
  content: "";
  padding-bottom: 67%;
}

.main_slider .slick-arrow:before, .homes_filter .slick-arrow:before, .select2-container--default .select2-selection--single .select2-selection__arrow:before, .news_section .slick-arrow:before, .images_section .images_slider .slick-arrow:before, .iti__arrow:before, [class*=icon_]:before, .presentation_content.presentation_content .list_pdf a:before, .sharethis-inline-share-buttons .st-btn[data-network=telegram]:before, .copyright .developer a:after, .iti__arrow:after, [class*=icon_]:after, .sharethis-inline-share-buttons .st-btn[data-network=telegram]:after {
  font-family: "icon" !important;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.main_slider.slick-slider .slider_btn, .images_section .images_slider a.slide_inner img, .header .main_logo img, .animation_transform.text_animation {
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  transform-style: preserve-3d;
  -webkit-transform-style: preserve-3d;
}

.socials_list a, .loader {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.header {
  z-index: 100;
  position: relative;
  background: rgba(20, 20, 20, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  transition: background 0.7s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.header.scrolled {
  background: rgba(20, 20, 20, 0.96);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.6);
  border-bottom-color: rgba(252, 181, 53, 0.15);
}
.header_inner {
  height: 100px;
}
.header .page_container {
  display: flex;
  align-items: center;
}
.header .main_logo {
  position: relative;
  z-index: 100;
  padding: 14px 0;
  margin-right: 35px;
}
.header .main_logo a, .header .main_logo img {
  display: block;
}
.header .main_logo img {
  width: auto;
  height: 71px;
}
.header .lg_list {
  display: none;
  padding: 10px 7px;
  text-align: center;
  font-size: 120%;
  line-height: 14px;
  text-transform: uppercase;
  background: rgba(51, 51, 51, 0.6);
  -webkit-backdrop-filter: blur(25px);
  backdrop-filter: blur(25px);
  margin-top: 13px;
  position: relative;
}
.header .lg_list:before {
  content: "";
  position: absolute;
  width: 13px;
  height: 12px;
  border-style: solid;
  border-width: 0 7px 10px;
  border-color: rgba(51, 51, 51, 0.6) transparent;
  top: -12px;
  left: 25px;
}
.header .lg_list li:last-child a {
  margin-bottom: 0;
}
.header .lg_list a {
  display: block;
  color: #ffffff;
  width: 29px;
  margin: 0 auto 10px;
  position: relative;
}
.header .lg_list a.current_lg:before {
  content: "";
  height: 1px;
  background: #ffffff;
  width: 100%;
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
}
.header .lg_block {
  position: relative;
  z-index: 1;
  height: 20px;
  margin-left: 20px;
}
.header .lg_inner {
  position: relative;
  overflow: hidden;
}
.header .lg_btn {
  border: none;
  display: flex;
  align-items: self-end;
  justify-content: space-between;
  color: #C7C7C7;
  background: none;
  flex-direction: row-reverse;
  font-size: 120%;
  line-height: 14px;
  background: transparent;
}
.header .lg_btn:before {
  display: block;
  margin-left: 6px;
  font-size: 160%;
  color: #ffffff;
}
.header .main_menu > li {
  position: relative;
}
.header .main_menu > li > a {
  color: #FCB535;
  position: relative;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}
.header .main_menu > li > a::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: linear-gradient(135deg, #FCB535 0%, #FF8C00 100%);
  transition: width 0.3s ease;
}
.header .main_menu > li > a:hover::after {
  width: 100%;
}
.header .menu_btn {
  margin-left: 10px;
  border: none;
  background: transparent;
  color: #FCB535;
  padding: 9px 0;
  width: 24px;
  height: 20px;
  position: relative;
  overflow: hidden;
  z-index: 100;
}
.header .menu_btn:before, .header .menu_btn:after {
  display: block;
  content: "";
  position: absolute;
  transition: all 0.5s, color 0s;
  border-top: 2px solid;
  left: -30px;
  width: 70px;
}
.header .menu_btn:before {
  top: 2px;
}
.header .menu_btn:after {
  bottom: 2px;
}
.header .menu_btn span {
  display: block;
  border-top: 2px solid;
  transition: opacity 0.2s 0.3s;
}
.header .catalog_bnt {
  border: none;
  background: transparent;
  color: #ffffff;
  padding: 9px 0;
  width: 24px;
  height: 20px;
  position: relative;
  overflow: hidden;
  z-index: 100;
  cursor: pointer;
}
.header .catalog_bnt:before, .header .catalog_bnt:after {
  display: block;
  content: "";
  position: absolute;
  transition: all 0.5s, color 0s;
  border-top: 2px solid;
  left: -30px;
  width: 70px;
}
.header .catalog_bnt:before {
  top: 2px;
}
.header .catalog_bnt:after {
  bottom: 2px;
}
.header .catalog_bnt span {
  display: block;
  border-top: 2px solid;
  transition: opacity 0.2s 0.3s;
}
.header .catalog_menu {
  position: relative;
}
.header .catalog_menu.opened .catalog_block {
  overflow: unset;
  transition: all 0.5s;
}
.header .catalog_menu.opened .catalog_list {
  overflow: unset;
  min-height: 100%;
  opacity: 1;
  transition: all 0.5s;
}
.header .catalog_block {
  position: relative;
  transition: all 0.5s;
  overflow: hidden;
}
.header .catalog_block:before {
  content: "";
  position: absolute;
  width: 13px;
  height: 12px;
  border-style: solid;
  border-width: 0 7px 10px;
  border-color: rgba(51, 51, 51, 0.6) transparent;
  top: 6px;
}
.header .catalog_list {
  transition: all 0.5s;
  position: absolute;
  top: 100%;
  background: rgba(51, 51, 51, 0.6);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  z-index: 10;
  left: -20px;
  right: 0;
  min-width: 180px;
  max-width: 320px;
  margin: 17px auto 0;
  font-size: 120%;
  line-height: 14px;
  text-transform: uppercase;
  display: flex;
  flex-direction: column;
  min-height: 0;
  overflow: hidden;
  opacity: 0;
}
.header .catalog_list li {
  margin-bottom: 15px;
}
.header .catalog_list li:first-child {
  margin-top: 20px;
}
.header .catalog_list li:last-child {
  margin-bottom: 20px;
}
.header .catalog_list li a {
  padding: 0 20px;
  color: #ffffff;
  display: inline-block;
  width: 100%;
}
.header .buy_btn {
  background: transparent;
  border: 1px solid rgba(252, 181, 53, 0.6);
  min-width: 149px;
  padding: 10px 20px;
  color: #FCB535;
  font-size: 120%;
  font-family: "Inter", "montserratarm", sans-serif;
  font-weight: 400;
  letter-spacing: 0.1em;
  line-height: 14px;
  text-align: center;
  display: block;
  text-transform: uppercase;
  border-radius: 0;
  position: relative;
  overflow: hidden;
  transition: all 0.7s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 1;
}
.header .buy_btn::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0%;
  height: 100%;
  background: #FCB535;
  transition: width 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: -1;
}
.header .buy_btn:hover {
  color: #282828;
  border-color: #FCB535;
  box-shadow: 0 0 8px rgba(252, 181, 53, 0.2);
}
.header .buy_btn:hover::after {
  width: 100%;
}
.header .buy_btn:active {
  transform: translateY(0);
}
.header .actions_block {
  margin-left: auto;
  display: flex;
  align-items: center;
}
.header .actions_block .phone_link {
  color: #ffffff;
  font-size: 140%;
  line-height: 17px;
  display: flex;
  align-items: center;
  margin-right: 60px;
}
.header .actions_block .phone_link:before {
  padding-right: 11px;
  font-size: 130%;
}
@media screen and (min-width: 960px) {
  .header .menu_inner {
    margin-left: 35px;
  }
  .header .menu_btn {
    display: none;
  }
  .header .main_menu {
    height: 100%;
    display: flex;
  }
  .header .main_menu > li {
    display: flex;
    align-items: center;
    height: 100%;
    padding: 0 30px;
  }
  .header .main_menu > li > a {
    font-size: 120%;
    line-height: 14px;
    color: #ffffff;
    text-transform: uppercase;
  }
}
@media screen and (min-width: 960px) and (max-width: 1199px) {
  .header .main_menu > li {
    padding-left: 10px;
    padding-right: 10px;
  }
  .header .menu_inner {
    margin-left: 10px;
  }
  .header .actions_block .phone_link {
    margin-right: 20px;
  }
  .header .main_logo {
    margin-right: 20px;
  }
}
@media screen and (max-width: 959px) {
  .header .lg_block {
    margin-left: auto;
  }
  .header .actions_block {
    margin-left: 15px;
  }
  .header .actions_block .phone_link {
    font-size: 0;
    margin-left: 7px;
    margin-right: 0;
  }
  .header .actions_block .phone_link:before {
    font-size: 2rem;
  }
  .header .main_logo {
    padding: 9px 0;
    margin-right: 15px;
  }
  .header .main_logo img {
    height: 50px;
  }
  .header_inner {
    height: 70px;
  }
  .header .menu_block {
    position: fixed;
    top: 70px;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    width: 0;
    overflow: hidden;
    z-index: 10;
    transition: width 0.5s;
  }
  .header .menu_inner {
    width: 320px;
    height: 100%;
    overflow-x: hidden;
    overflow-y: auto;
    margin-left: auto;
    background: #141414;
  }
  .header .main_menu {
    padding: 12px 0;
  }
  .header .main_menu > li {
    padding: 9px 15px;
    border-top: 1px solid #282828;
  }
  .header .main_menu > li:last-child {
    border-bottom: 1px solid #282828;
  }
  .header .main_menu > li > a {
    font-size: 140%;
    line-height: 20px;
    text-transform: uppercase;
    color: #ffffff;
  }
}
@media screen and (max-width: 767px) {
  .header .btn_secondary {
    min-width: 120px;
    padding: 5px 15px;
    min-height: 28px;
  }
  .header .buy_btn {
    min-width: 120px;
    padding: 7px 15px;
  }
}
@media screen and (max-width: 575px) {
  .header .menu_btn {
    margin-left: 0;
  }
  .header .actions_block {
    position: absolute;
    bottom: -28px;
    width: 100%;
    left: 0;
    z-index: 1;
    margin-left: 0;
  }
  .header .actions_block .phone_link {
    position: absolute;
    left: 106px;
    bottom: 54px;
    margin-left: 15px;
  }
  .header .actions_block a {
    flex: 1;
  }
  .header .actions_block .btn_secondary {
    background: #FCB535;
    color: #282828;
  }
}

@media screen and (max-width: 959px) {
  .menu_opened body {
    overflow: hidden;
  }
  .menu_opened .menu_block {
    width: 100%;
  }
  .menu_opened .menu_btn span {
    opacity: 0;
    transition-delay: 0s;
  }
  .menu_opened .menu_btn:before {
    transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    -o-transform: rotate(45deg);
  }
  .menu_opened .menu_btn:after {
    transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
  }
}
.btn_secondary {
  display: flex;
  align-items: center;
  min-height: 34px;
  justify-content: center;
  padding: 9px 20px;
  text-transform: uppercase;
  font-size: 120%;
  font-family: "Inter", "montserratarm", sans-serif;
  font-weight: 400;
  letter-spacing: 0.1em;
  line-height: 14px;
  color: #FCB535;
  border: 1px solid rgba(252, 181, 53, 0.3);
  background: transparent;
  min-width: 117px;
  margin-left: 10px;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  border-radius: 0;
  position: relative;
  overflow: hidden;
  transition: all 0.7s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 1;
}
.btn_secondary::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0%;
  height: 100%;
  background: rgba(252, 181, 53, 0.1);
  transition: width 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: -1;
}
.btn_secondary:hover {
  border-color: rgba(252, 181, 53, 0.8);
  color: #FCB535;
  box-shadow: 0 0 8px rgba(252, 181, 53, 0.2);
}
.btn_secondary:hover::after {
  width: 100%;
}
.btn_secondary:active {
  transform: translateY(0);
}

.iti---dial-code .iti__selected-flag {
  border-right: 1px solid rgba(0, 0, 0, 0.3) !important;
  padding: 0 16px 0 15px;
  background: none;
}
.iti---dial-code .iti__selected-flag:focus {
  border: none;
  background: none;
  outline: none;
}

.iti__flag-container {
  padding: 0;
  transition: all 0.3s;
}

.iti--separate-dial-code .iti__selected-dial-code {
  font-size: 12px;
  line-height: 17px;
  color: #FCB535;
}

.iti__selected-flag {
  border-right: 1px solid #f2f2f2 !important;
  padding: 0 22px 0 12px !important;
  background: none;
}

.iti--allow-dropdown .iti__flag-container:hover {
  outline: none;
}

.iti {
  width: 100%;
}
.iti:focus {
  outline: none;
}
.iti.has-error .error_hint,
.iti.has-error + .error_hint {
  max-height: 60px;
  margin-top: 5px;
}

.iti__arrow {
  border: none !important;
  transition: all 0.5s;
}
.iti__arrow:before {
  content: "\e901";
  font-size: 90%;
  position: relative;
  top: -4px;
  left: 3px;
  color: #FCB535;
  display: block;
}
.iti--allow-dropdown .iti__flag-container:hover .iti__selected-flag {
  opacity: 0.8;
  transition: all 0.3s;
}

.iti__country-list {
  scrollbar-color: #666666 #f2f2f2;
  scrollbar-width: auto;
  overflow-x: hidden;
  min-width: 241px;
  border-radius: 4px;
  background-color: #ffffff;
  box-shadow: 0 2px 4px 0 rgba(36, 36, 36, 0.3);
  border: none;
  margin-top: 5px;
}
.iti__country-list::-webkit-scrollbar {
  width: 4px;
  height: 3px;
  border-radius: 5px;
  background: #f2f2f2;
}
.iti__country-list::-webkit-scrollbar-thumb {
  border-radius: 5px;
  background: #666666;
}

.iti__country.iti__highlight {
  background: rgba(0, 0, 0, 0.1);
}

.iti__country {
  height: 42px;
  display: flex;
  align-items: center;
}

.iti__country-name {
  margin-right: 7px;
  max-width: 241px;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  color: rgba(0, 0, 0, 0.7);
  font-size: 12px;
  line-height: 15px;
}

.telephone_block {
  padding-left: 103px !important;
}

.footer {
  opacity: 0;
  position: relative;
  overflow: hidden;
  background: #141414;
  min-height: 246px;
  padding: 50px 15px;
}
.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(252, 181, 53, 0.4) 30%, rgba(252, 181, 53, 0.8) 50%, rgba(252, 181, 53, 0.4) 70%, transparent);
}

.footer_blocks {
  flex: 0 0 25%;
  max-width: 25%;
  padding: 0 10px;
  display: flex;
  flex-direction: column;
}

.footer_title {
  font-size: 120%;
  line-height: 14px;
  color: #ffffff;
  margin-bottom: 10px;
  text-transform: uppercase;
  font-family: "Cormorant Garamond", serif;
  font-weight: 600;
  letter-spacing: 0.08em;
}

.socials_title {
  font-size: 110%;
  line-height: 13px;
  color: #ffffff;
  margin-bottom: 7px;
}

.footer_info {
  font-size: 110%;
  line-height: 13px;
  color: #C5C5C5;
  margin-bottom: 10px;
}
.footer_info a {
  color: inherit;
}

.footer_menu li {
  margin-bottom: 3px;
}
.footer_menu li a {
  font-size: 110%;
  line-height: 13px;
  color: #C5C5C5;
  display: block;
}

.logo_block img {
  display: block;
  width: 70px;
  height: auto;
  max-width: 100%;
  margin-bottom: 15px;
}

.socials_list {
  display: flex;
}
.socials_list li:not(:first-child) {
  margin-left: 15px;
}
.socials_list a {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  font-size: 0;
  line-height: 0;
  color: #ffffff;
  background: linear-gradient(135deg, #FCB535 0%, #FF8C00 100%);
  transition: all 0.7s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
}
.socials_list a::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.5s ease;
}
.socials_list a:before {
  display: block;
  font-size: 1.5rem;
  position: relative;
  z-index: 1;
}
.socials_list a:hover {
  transform: translateY(-2px) scale(1.08);
  box-shadow: 0 0 8px rgba(252, 181, 53, 0.2);
}
.socials_list a:hover::after {
  left: 150%;
}

.copyright {
  color: #ffffff;
  background: #141414;
  padding: 30px 0 30px;
  font-size: 120%;
  line-height: 15px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  position: relative;
}
.copyright::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(252, 181, 53, 0.2) 50%, transparent);
}
.copyright .page_container {
  display: flex;
  justify-content: space-between;
  align-tracks: flex-start;
}
.copyright .developer {
  max-width: 50%;
  padding-right: 10px;
  text-align: right;
  padding-right: 40px;
}
.copyright .developer a {
  display: inline-block;
  vertical-align: top;
  position: relative;
}
.copyright .developer a:after {
  content: "\e92d";
  bottom: 0;
  position: absolute;
  display: block;
  right: -40px;
  font-size: 3.2rem;
}
.copyright .customer {
  max-width: 50%;
  padding-left: 10px;
  text-align: right;
}
.copyright a {
  color: inherit;
}

@media screen and (max-width: 959px) {
  .footer {
    padding: 20px;
  }
  .footer .socials_list {
    margin-bottom: 35px;
  }

  .footer_blocks {
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }
  .footer_blocks:first-child {
    flex: 0 0 100%;
    max-width: 100%;
    justify-content: center;
    align-items: center;
  }
}
@media screen and (max-width: 719px) {
  .copyright .page_container {
    display: block;
  }
  .copyright .developer,
.copyright .customer {
    max-width: 100%;
    padding-left: 0;
    padding-right: 0;
    text-align: center;
  }
  .copyright .developer {
    margin-top: 8px;
  }
  .copyright .developer a {
    color: #ffffff;
    font-family: "montserratarm";
    margin-top: 8px;
  }
  .copyright .developer a:after {
    position: relative;
    bottom: auto;
    right: auto;
    margin-top: 5px;
    display: block;
  }
}
@media screen and (max-width: 575px) {
  .footer .socials_list {
    margin-bottom: 0;
  }

  .footer_blocks {
    flex: 0 0 100%;
    max-width: 100%;
    margin-bottom: 20px;
    justify-content: center;
    align-items: center;
    text-align: center;
  }
}
.snowflakes {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
}

.snowflake {
  position: absolute;
  top: -10%;
  color: white;
  font-size: 12px;
  -webkit-animation: fall linear infinite;
          animation: fall linear infinite;
  opacity: 0.4;
  transform: translateX(0);
}

@-webkit-keyframes fall {
  0% {
    transform: translateY(-100%) translateX(0);
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    transform: translateY(100vh) translateX(calc(50vw * var(--drift, 0.5)));
    opacity: 0;
  }
}

@keyframes fall {
  0% {
    transform: translateY(-100%) translateX(0);
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    transform: translateY(100vh) translateX(calc(50vw * var(--drift, 0.5)));
    opacity: 0;
  }
}
.images_section {
  position: relative;
  overflow: hidden;
}
@media screen and (min-width: 1920px) {
  .images_section {
    max-width: 1920px;
    margin: 0 auto;
    width: 100%;
  }
}
.images_section .video_btn {
  position: relative;
  display: block;
}
.images_section .video_btn:after {
  display: block;
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate3d(-50%, -50%, 0);
  -moz-transform: translate3d(-50%, -50%, 0);
  -ms-transform: translate3d(-50%, -50%, 0);
  -webkit-transform: translate3d(-50%, -50%, 0);
  -o-transform: translate3d(-50%, -50%, 0);
  border-style: solid;
  border-color: transparent #ffffff;
  z-index: 2;
  pointer-events: none;
  width: 16px;
  height: 13px;
  border-width: 8px 0 8px 13px;
  margin: 0 0 0 4px;
}
.images_section .video_btn:before {
  width: 40px;
  height: 40px;
  display: block;
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate3d(-50%, -50%, 0);
  -moz-transform: translate3d(-50%, -50%, 0);
  -ms-transform: translate3d(-50%, -50%, 0);
  -webkit-transform: translate3d(-50%, -50%, 0);
  -o-transform: translate3d(-50%, -50%, 0);
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid #ffffff;
  z-index: 1;
  pointer-events: none;
}
.images_section .images_slider {
  flex: 0 0 100%;
  max-width: 100%;
  margin-top: 40px;
  white-space: nowrap;
  font-size: 0;
  counter-reset: my-sec-counter;
}
.images_section .images_slider .slick-list {
  overflow: visible;
}
.images_section .images_slider .slide_block {
  display: inline-block;
  white-space: normal;
  font-size: 1rem;
  width: 66.66%;
  vertical-align: top;
  counter-increment: my-sec-counter;
  padding: 0 10px;
}
.images_section .images_slider .slide_inner {
  position: relative;
  overflow: hidden;
  padding-bottom: 67%;
}
.images_section .images_slider .slide_inner img {
  -o-object-fit: cover;
     object-fit: cover;
}
.images_section .images_slider a.slide_inner {
  display: block;
}
.images_section .images_slider .slick-arrow {
  position: absolute;
  top: 226px;
  width: 70px;
  height: 70px;
  color: #ffffff;
  padding: 0;
  z-index: 3;
  border-radius: 50%;
  background: rgba(20, 20, 20, 0.4);
  border: 1px solid rgba(252, 181, 53, 0.4);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  transition: all 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.images_section .images_slider .slick-arrow:before {
  display: block;
  font-size: 2.1rem;
}
.images_section .images_slider .slick-arrow:hover {
  border-color: #FCB535;
  box-shadow: 0 0 8px rgba(252, 181, 53, 0.2);
  background: rgba(252, 181, 53, 0.15);
}
.images_section .images_slider .slick-prev {
  right: 100%;
  margin-right: -34px;
}
.images_section .images_slider .slick-prev:before {
  content: "\e902";
}
.images_section .images_slider .slick-next {
  left: 50%;
  margin-left: 167px;
}
.images_section .images_slider .slick-next:before {
  content: "\e903";
}
.images_section .images_slider .slick-disabled {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
@media screen and (max-width: 1365px) {
  .images_section .images_slider .slick-prev {
    left: 30px;
    right: auto;
  }
  .images_section .images_slider .slick-next {
    right: 30px;
  }
}
@media screen and (max-width: 1199px) {
  .images_section .images_slider .slick-next {
    margin-left: 160px;
  }
  .images_section .images_slider .slick-arrow {
    top: 21.4vw;
    margin-top: -35px;
  }
}
@media screen and (min-width: 576px) and (max-width: 959px) {
  .images_section .images_slider {
    margin-top: 30px;
  }
  .images_section .images_slider .slick-arrow {
    width: 48px;
    height: 48px;
    margin-top: 0;
  }
  .images_section .images_slider .slick-arrow:before {
    font-size: 1.8rem;
  }
  .images_section .images_slider .slide_block {
    width: 75%;
  }
}
@media screen and (max-width: 575px) {
  .images_section .images_slider {
    margin-top: 20px;
  }
  .images_section .images_slider .slick-arrow {
    width: 38px;
    height: 38px;
    margin-top: -150px;
    top: 235px;
  }
  .images_section .images_slider .slick-arrow:before {
    font-size: 1.4rem;
  }
  .images_section .images_slider .slick-prev {
    left: 0 !important;
  }
  .images_section .images_slider .slick-prev:before {
    content: "\e902";
  }
  .images_section .images_slider .slick-next {
    right: 0 !important;
    left: auto !important;
  }
}
.images_section .images_slider .slide_block {
  width: 80%;
}
@media screen and (max-width: 479px) {
  .images_section .images_slider .slide_block {
    width: 100%;
    padding: 0 10px;
  }
  .images_section .images_slider .slick-prev {
    left: 15px;
  }
  .images_section .images_slider .slick-next {
    right: 15px;
  }
}
.images_section .info_slider {
  display: flex;
  margin-top: 30px;
}
.images_section .info_slider:before {
  content: counter(my-sec-counter, decimal-leading-zero);
  font-size: 640%;
  line-height: 78px;
  background: linear-gradient(135deg, #FCB535 0%, #FF8C00 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-right: 30px;
  font-family: "Cormorant Garamond", serif;
  font-weight: 700;
}
@media screen and (max-width: 1199px) {
  .images_section .info_slider:before {
    margin-right: 10px;
    line-height: 1.33em;
    font-size: 600%;
  }
}
@media screen and (max-width: 959px) {
  .images_section .info_slider:before {
    font-size: 500%;
    line-height: 27px;
  }
}
@media screen and (max-width: 767px) {
  .images_section .info_slider:before {
    font-size: 400%;
    line-height: 21px;
  }
}
.images_section .slider_title {
  font-size: 220%;
  line-height: 29px;
  color: #ffffff;
  margin-bottom: 10px;
}
@media screen and (max-width: 959px) {
  .images_section .slider_title {
    font-size: 200%;
    line-height: 27px;
  }
}
@media screen and (max-width: 767px) {
  .images_section .slider_title {
    font-size: 180%;
    line-height: 21px;
  }
}
.images_section .slider_description {
  color: #C5C5C5;
  font-size: 160%;
  line-height: 27px;
}
@media screen and (max-width: 959px) {
  .images_section .slider_description {
    font-size: 140%;
    line-height: 21px;
  }
}

.news_section {
  position: relative;
  overflow: hidden;
}
@media screen and (min-width: 1920px) {
  .news_section {
    max-width: 1920px;
    width: 100%;
  }
}
@media screen and (min-width: 1200px) {
  .news_section {
    margin: 100px auto 0;
  }
}
@media screen and (min-width: 960px) and (max-width: 1199px) {
  .news_section {
    margin: 50px auto 0;
  }
}
@media screen and (max-width: 959px) {
  .news_section {
    margin: 20px auto 0;
  }
}
.news_section .news_title {
  font-size: 180%;
  line-height: 21px;
  color: #ffffff;
  margin-bottom: 7px;
  transition: color 0.5s;
}
.news_section .inner_news_list {
  overflow: hidden;
  opacity: 0;
  transition: all 0.5s;
}
.news_section .inner_news_list > ul {
  padding: 0 30px 0;
  margin: 0;
  font-size: 140%;
  line-height: 22px;
  color: #ffffff;
}
.news_section .inner_news_list > ul li span {
  position: relative;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.news_section .inner_news_list > ul li::marker {
  background: #ffffff;
}
.news_section .inner_news_list > ul li:nth-child(n+3) {
  display: none;
}
.news_section .news_info {
  transition: all 0.7s cubic-bezier(0.16, 1, 0.3, 1);
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 110px;
  background: rgba(15, 15, 15, 0.75);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  padding: 15px 20px;
  display: flex;
  z-index: 3;
  flex-direction: column;
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}
.news_section .image_block {
  position: relative;
  overflow: hidden;
}
.news_section .image_block img {
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.news_section .image_block:hover {
  transition: all 0.9s;
}
.news_section .image_block:hover img {
  transform: scale(1.05);
}
.news_section .image_block:hover .news_info {
  transition: all 0.5s;
  height: 100%;
}
.news_section .image_block:hover .inner_news_list {
  overflow: unset;
  opacity: 1;
}
.news_section .image_block:hover .news_title {
  color: #FCB535;
  transition: color 0.5s;
}
.news_section .image_block:hover .btn_news {
  transition: all 0.5s;
  margin-top: 15px;
  height: 35px;
  opacity: 1;
  pointer-events: auto;
}
.news_section .btn_news {
  padding: 0 12px;
  border: 1px solid rgba(252, 181, 53, 0.4);
  background: transparent;
  color: #FCB535;
  font-size: 110%;
  font-family: "Inter", "montserratarm", sans-serif;
  letter-spacing: 0.1em;
  line-height: 14px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  margin-top: 0;
  height: 0;
  opacity: 0;
  pointer-events: none;
  text-transform: uppercase;
  min-width: 149px;
  margin-right: auto;
  border-radius: 0;
  position: relative;
  overflow: hidden;
  transition: all 0.7s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 1;
}
.news_section .btn_news::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0%;
  height: 100%;
  background: rgba(252, 181, 53, 0.1);
  transition: width 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: -1;
}
.news_section .btn_news:hover {
  border-color: rgba(252, 181, 53, 0.8);
  box-shadow: 0 0 8px rgba(252, 181, 53, 0.2);
}
.news_section .btn_news:hover::after {
  width: 100%;
}
.news_section .news_block {
  position: relative;
}
.news_section .video_tab .news_block:after {
  display: block;
  content: "";
  position: absolute;
  left: 34px;
  top: 34px;
  transform: translate3d(-50%, -50%, 0);
  -moz-transform: translate3d(-50%, -50%, 0);
  -ms-transform: translate3d(-50%, -50%, 0);
  -webkit-transform: translate3d(-50%, -50%, 0);
  -o-transform: translate3d(-50%, -50%, 0);
  border-style: solid;
  border-color: transparent #ffffff;
  z-index: 2;
  pointer-events: none;
  width: 16px;
  height: 13px;
  border-width: 8px 0 8px 13px;
  margin: 0 0 0 4px;
}
.news_section .video_tab .news_block:before {
  width: 40px;
  height: 40px;
  display: block;
  content: "";
  position: absolute;
  left: 34px;
  top: 34px;
  transform: translate3d(-50%, -50%, 0);
  -moz-transform: translate3d(-50%, -50%, 0);
  -ms-transform: translate3d(-50%, -50%, 0);
  -webkit-transform: translate3d(-50%, -50%, 0);
  -o-transform: translate3d(-50%, -50%, 0);
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid #ffffff;
  z-index: 1;
  pointer-events: none;
}
.news_section .all_category {
  background: #FCB535;
  border: none;
  min-width: 253px;
  padding: 18px 20px;
  color: #282828;
  font-size: 120%;
  line-height: 14px;
  text-align: center;
  display: block;
  margin-top: 20px;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  text-transform: uppercase;
}
.news_section .news_slider_btn,
.news_section .tab_buttons {
  display: flex;
  color: #ffffff;
  font-size: 140%;
  line-height: 17px;
  gap: 2px;
}
.news_section .news_slider_btn li,
.news_section .tab_buttons li {
  position: relative;
  display: block;
  text-align: center;
  color: #ffffff;
  padding: 8px 16px;
  border: 1px solid rgba(252, 181, 53, 0.4);
  min-width: 141px;
  transition: all 0.7s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: pointer;
}
.news_section .news_slider_btn li:hover:not(.selected),
.news_section .tab_buttons li:hover:not(.selected) {
  border-color: #FCB535;
  background: rgba(252, 181, 53, 0.08);
  color: #FCB535;
}
.news_section .news_slider_btn li.selected,
.news_section .tab_buttons li.selected {
  background: transparent;
  color: #FCB535;
  pointer-events: none;
  border-color: #FCB535;
  box-shadow: 0 0 10px rgba(252, 181, 53, 0.1) inset;
}
.news_section .news_slider_btn li.selected a,
.news_section .tab_buttons li.selected a {
  color: #FCB535;
}
.news_section .news_date {
  font-size: 120%;
  line-height: 14px;
  color: #ffffff;
  text-align: left;
  margin-bottom: 7px;
  width: 100%;
}
.news_section .news_description {
  font-size: 140%;
  line-height: 21px;
  color: #ffffff;
  text-align: left;
  position: relative;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}
@media screen and (max-width: 575px) {
  .news_section .news_description {
    font-size: 120%;
  }
}
.news_section .news_image {
  display: block;
}
@media screen and (max-width: 1199px) {
  .news_section .news_image:before {
    display: block;
    content: "";
    padding-bottom: 85%;
  }
}
.news_section .news_image img {
  border-radius: inherit;
}
.news_section .news_slider {
  margin: 30px -10px 0;
  position: relative;
  white-space: nowrap;
  font-size: 0;
  overflow: hidden;
}
.news_section .news_slider.slick-slider,
.news_section .news_slider .slick-list {
  overflow: visible;
}
.news_section .news_slider .slide_block {
  display: inline-block;
  white-space: normal;
  font-size: 1rem;
  width: 33.33%;
  vertical-align: top;
  padding: 0 10px;
  position: relative;
}
.news_section .slick-arrow {
  position: absolute;
  top: 50%;
  margin-top: -50px;
  width: 70px;
  height: 70px;
  color: #ffffff;
  padding: 0;
  z-index: 3;
  border-radius: 50%;
  background: rgba(40, 40, 40, 0.2);
  border: 2px solid #ffffff;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
}
.news_section .slick-arrow:before {
  display: block;
  font-size: 2.1rem;
}
.news_section .slick-prev {
  right: 100%;
  margin-right: -30px;
}
.news_section .slick-prev:before {
  content: "\e902";
}
.news_section .slick-next {
  left: 100%;
  margin-left: -30px;
}
.news_section .slick-next:before {
  content: "\e903";
}
.news_section .slick-disabled {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
@media screen and (max-width: 1365px) {
  .news_section .slick-prev {
    left: 30px;
    right: auto;
  }
  .news_section .slick-next {
    left: auto;
    right: 30px;
  }
}
@media screen and (max-width: 1199px) {
  .news_section .slick-next {
    margin-left: 160px;
  }
}
@media screen and (min-width: 576px) and (max-width: 959px) {
  .news_section {
    margin-top: 30px;
  }
  .news_section .slick-arrow {
    width: 48px;
    height: 48px;
  }
  .news_section .slick-arrow:before {
    font-size: 1.8rem;
  }
  .news_section .slide_block {
    width: 75%;
  }
}
@media screen and (max-width: 767px) {
  .news_section .inner_news_list {
    display: none;
  }
}
@media screen and (max-width: 575px) {
  .news_section .slick-arrow {
    width: 38px;
    height: 38px;
    margin-top: -25px;
  }
  .news_section .slick-arrow:before {
    font-size: 1.4rem;
  }
  .news_section .slick-prev {
    left: 0 !important;
  }
  .news_section .slick-prev:before {
    content: "\e902";
  }
  .news_section .slick-next {
    right: 0 !important;
    left: auto !important;
  }
}

.touch .image_block {
  position: relative;
}
.touch .image_block:active {
  transition: all 0.9s;
}
.touch .image_block:active .news_info {
  transition: all 0.5s;
  height: 110px !important;
}
.touch .image_block:active .btn_news {
  transition: all 0.3s;
  margin-top: 15px;
  height: auto;
  opacity: 1;
  pointer-events: auto;
}

.select2-container .select2-selection--single {
  height: auto;
}
.select2-container .select2-selection__placeholder {
  color: #ffffff;
}
.select2-container--default .select2-selection--single {
  background-color: transparent;
  border: 1px solid #F8F8F8;
  border-radius: 0;
  display: flex;
  align-items: center;
  position: relative;
  box-shadow: none;
  outline: none;
}
.select2-container--default .select2-selection--single .select2-selection__rendered {
  color: #ffffff;
  font-size: 140%;
  line-height: 17px;
  padding: 13px 10px;
  flex: 1;
  width: 50%;
}
.select2-container--default .select2-selection--single .select2-selection__arrow {
  height: auto;
  position: relative;
  top: auto;
  right: auto;
  padding: 13px 10px;
  padding-left: 0;
  width: auto;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
}
.select2-container--default .select2-selection--single .select2-selection__arrow * {
  display: none;
}
.select2-container--default .select2-selection--single .select2-selection__arrow:before {
  content: "\e901";
  font-size: 1rem;
  display: block;
}
.select2-container--default.select2-container--open .select2-selection--single {
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
  z-index: 10;
}
.select2-container .select2-search--dropdown {
  padding: 0;
}
.select2-container .select2-search--dropdown .select2-search__field {
  border: none;
  border-bottom: 1px solid #F8F8F8;
  padding: 13px 10px;
  font-size: 100%;
  line-height: inherit;
}

.select2-container .select2-dropdown {
  border: 1px solid 0;
  font-size: 140%;
  line-height: 17px;
  box-shadow: 0px 0px 0px #3E3E3E;
  position: relative;
  z-index: 5;
}
.select2-container .select2-results__options {
  overflow-x: hidden;
  scrollbar-color: #FCB535 #838383;
  scrollbar-width: thin;
}
.select2-container .select2-results__options::-webkit-scrollbar {
  width: 3px;
  height: auto;
  border-radius: 0;
  background: #838383;
}
.select2-container .select2-results__options::-webkit-scrollbar-thumb {
  border-radius: 0;
  background: #FCB535;
}
.select2-container .select2-results__options li {
  padding: 13px 10px;
}
.select2-container .select2-results__option:not(:last-child) {
  border-bottom: 1px solid #838383;
}
.select2-container .select2-results__option--highlighted.select2-results__option--selectable {
  background: none;
  color: #FCB535;
}
.select2-container .select2-results__option--selected {
  background: #3E3E3E !important;
  color: #FCB535 !important;
  cursor: default;
}

.select2-container .select2-results__options li {
  background: #3E3E3E;
  color: #ffffff;
}

.select2-container .select2-results__option--selected {
  border-color: #FCB535;
}

.select2-dropdown {
  border: 1px solid #838383;
  box-shadow: none;
  border-radius: 0;
}

.none_block {
  display: none !important;
}

.homes_filter {
  background: rgba(248, 248, 248, 0.1);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  padding: 40px 0;
}
@media screen and (min-width: 1200px) {
  .homes_filter {
    margin: 100px 0;
  }
}
@media screen and (min-width: 960px) and (max-width: 1199px) {
  .homes_filter {
    margin: 50px 0;
  }
}
@media screen and (max-width: 959px) {
  .homes_filter {
    margin: 30px 0;
  }
}
.homes_filter .filter_block {
  position: relative;
  margin-top: 25px;
  flex: 1;
  max-width: 100%;
}
.homes_filter .form_fields {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin: 0 -10px;
}
.homes_filter .form_fields .field_block {
  flex: 1;
  max-width: 100%;
  padding: 0 10px;
}
.homes_filter .form_fields .filter_block {
  padding: 0 10px;
}
.homes_filter .field_name {
  font-size: 120%;
  line-height: 14px;
  color: #C7C7C7;
  margin-bottom: 10px;
  display: block;
}
.homes_filter.home_slider {
  background: none;
  backdrop-filter: blur(0);
  -webkit-backdrop-filter: blur(0);
}
.homes_filter.home_slider .tabs_container {
  flex: 0 0 58.3333333333%;
  max-width: 58.3333333333%;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 3;
  background: rgba(51, 51, 51, 0.6);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(15px);
  width: 100%;
  height: 100%;
  padding: 40px;
}
.homes_filter .images_slider {
  position: relative;
  white-space: nowrap;
  font-size: 0;
  overflow: hidden;
  overflow: unset;
  z-index: 3;
}
.homes_filter .images_slider .slide_info {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  display: flex;
  align-items: end;
  padding-bottom: 115px;
  z-index: 2;
}
.homes_filter .images_slider .info_inner {
  background: rgba(51, 51, 51, 0.6);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  max-width: 311px;
  padding: 40px;
}
.homes_filter .images_slider .info_inner .section_title {
  margin-bottom: 6px;
  position: relative;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
}
.homes_filter .images_slider .info_inner .block_description {
  position: relative;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 6;
  -webkit-box-orient: vertical;
}
.homes_filter .images_slider .slide_block {
  display: inline-block;
  white-space: normal;
  font-size: 1rem;
  width: 100%;
  vertical-align: top;
  position: relative;
  overflow: hidden;
  z-index: 9;
  height: 751px;
}
.homes_filter .images_slider .slide_block:before {
  display: block;
  content: "";
  padding-bottom: 63.7%;
}
.homes_filter .images_slider .slide_block img {
  -o-object-fit: cover;
     object-fit: cover;
  z-index: 2;
}
.homes_filter .images_slider .slide_block:not(.slick-current) .slide_info {
  transform: translate3d(100%, 0, 0);
  -moz-transform: translate3d(100%, 0, 0);
  -ms-transform: translate3d(100%, 0, 0);
  -webkit-transform: translate3d(100%, 0, 0);
  -o-transform: translate3d(100%, 0, 0);
  transition: transform 0.01s;
  transition-delay: 0.5s;
}
.homes_filter .images_slider .slide_block.slick-current .slide_info {
  transition: transform 0.3s;
  transition-delay: 0.5s;
}
.homes_filter .slick-arrow {
  position: absolute;
  z-index: 3;
  font-size: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  color: #FCB535;
  background: transparent;
  border: 1px solid #ffffff;
  right: 50%;
  margin-right: -590px;
  bottom: 43px;
  transform: translate3d(-40px, 0, 0);
  -moz-transform: translate3d(-40px, 0, 0);
  -ms-transform: translate3d(-40px, 0, 0);
  -webkit-transform: translate3d(-40px, 0, 0);
  -o-transform: translate3d(-40px, 0, 0);
}
.homes_filter .slick-arrow:before {
  display: block;
  color: #ffffff;
  font-size: 1.3rem;
  margin-right: 2px;
}
@media screen and (max-width: 1199px) {
  .homes_filter .slick-arrow {
    right: 0;
    margin-right: 0;
    transform: translate3d(-20px, 0, 0);
    -moz-transform: translate3d(-20px, 0, 0);
    -ms-transform: translate3d(-20px, 0, 0);
    -webkit-transform: translate3d(-20px, 0, 0);
    -o-transform: translate3d(-20px, 0, 0);
  }
}
@media screen and (max-width: 959px) {
  .homes_filter .slick-arrow {
    bottom: 10px;
  }
}
.homes_filter .slick-next:before {
  content: "\e903";
}
.homes_filter .slick-prev {
  transform: translate3d(40px, 0, 0);
  -moz-transform: translate3d(40px, 0, 0);
  -ms-transform: translate3d(40px, 0, 0);
  -webkit-transform: translate3d(40px, 0, 0);
  -o-transform: translate3d(40px, 0, 0);
  left: 50%;
  margin-left: 98.3333333333px;
}
.homes_filter .slick-prev:before {
  content: "\e902";
}
@media screen and (max-width: 1199px) {
  .homes_filter .slick-prev {
    transform: translate3d(20px, 0, 0);
    -moz-transform: translate3d(20px, 0, 0);
    -ms-transform: translate3d(20px, 0, 0);
    -webkit-transform: translate3d(20px, 0, 0);
    -o-transform: translate3d(20px, 0, 0);
  }
}
@media screen and (max-width: 959px) {
  .homes_filter .slick-prev {
    transform: translate3d(-70px, 0, 0);
    -moz-transform: translate3d(-70px, 0, 0);
    -ms-transform: translate3d(-70px, 0, 0);
    -webkit-transform: translate3d(-70px, 0, 0);
    -o-transform: translate3d(-70px, 0, 0);
    left: auto;
    margin-left: 0;
    right: 0;
  }
}
.homes_filter .slick-dots {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  bottom: 55px;
  left: 50%;
  margin-left: 98.3333333333px;
  width: 491.6666666667px;
}
.homes_filter .slick-dots li {
  margin: 0;
  padding: 0 4px;
  width: auto;
  height: auto;
}
.homes_filter .slick-dots li.slick-active button {
  background: #FCB535;
  border-color: #FCB535;
}
.homes_filter .slick-dots button {
  border: 1px solid #ffffff;
  background: transparent;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  padding: 0;
}
.homes_filter .switch_buttons,
.homes_filter .filter_buttons {
  display: flex;
  color: #ffffff;
  font-size: 140%;
  line-height: 20px;
  margin-top: 23px;
  padding: 0 10px;
}
.homes_filter .switch_buttons li,
.homes_filter .filter_buttons li {
  position: relative;
}
.homes_filter .switch_buttons li a,
.homes_filter .filter_buttons li a {
  display: block;
  text-align: center;
  color: #ffffff;
  padding: 13px 16px;
  border: 1px solid #FCB535;
  min-width: 141px;
}
.homes_filter .switch_buttons li.active_btn,
.homes_filter .filter_buttons li.active_btn {
  background: #FCB535;
  color: #282828;
  pointer-events: none;
}
.homes_filter .switch_buttons li.active_btn a,
.homes_filter .filter_buttons li.active_btn a {
  color: #282828;
}
.homes_filter .tab_buttons {
  display: flex;
  color: #ffffff;
  font-size: 140%;
  line-height: 17px;
  margin-top: 40px;
}
.homes_filter .tab_buttons li {
  position: relative;
}
.homes_filter .tab_buttons li a {
  display: block;
  text-align: center;
  color: #ffffff;
  padding: 8px 16px;
  border: 1px solid #FCB535;
  min-width: 141px;
}
.homes_filter .tab_buttons li.selected {
  background: #FCB535;
  color: #282828;
  pointer-events: none;
}
.homes_filter .tab_buttons li.selected a {
  color: #282828;
}
.homes_filter .tab_buttons li.selected:before {
  content: "";
  position: absolute;
  width: 13px;
  height: 12px;
  border-style: solid;
  border-width: 10px 7px 0;
  border-color: #FCB535 transparent;
  bottom: -11px;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}
.homes_filter .limits_block {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.homes_filter .limits_block label {
  flex: 1;
  width: 20%;
  padding-left: 7px;
}
.homes_filter .limits_block label:last-child {
  order: 2;
  text-align: right;
}
.homes_filter .limits_block label:last-child input {
  text-align: right;
}
.homes_filter .limits_block input {
  border: none;
  background: none;
  padding: 0;
  font-size: 150%;
  line-height: 18px;
  color: #ffffff;
  flex: 1;
  width: 100%;
  border-radius: 2px;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}
.homes_filter .range_block {
  margin: 17px 0;
  position: relative;
  padding: 0 7px;
  height: 4px;
  background: #ECECEC;
}
.homes_filter .range_block input {
  visibility: hidden;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}
.homes_filter .jslider {
  height: 4px;
  top: auto;
}
.homes_filter .jslider-value, .homes_filter .jslider-label {
  display: none !important;
}
.homes_filter .jslider .jslider-pointer {
  width: 20px;
  height: 20px;
  margin-left: -7px;
  border-radius: 50%;
  border: 1px solid #ECECEC;
  background-color: #ffffff;
  top: 0;
  margin-top: -8px;
  box-shadow: 0 0 4px 0 rgba(133, 78, 41, 0.25);
}
.homes_filter .jslider .jslider-bg {
  position: relative;
  overflow: hidden;
  height: 4px;
}
.homes_filter .jslider .jslider-bg i {
  background: transparent;
}
.homes_filter .jslider .jslider-bg i.v {
  background: #FCB535;
  height: 4px;
}
.homes_filter .clean_filter {
  display: flex;
  align-items: center;
  flex-direction: row-reverse;
  align-content: center;
  justify-content: end;
  margin-bottom: 20px;
  font-size: 140%;
  line-height: 17px;
  color: #ffffff;
}
.homes_filter .clean_filter:before {
  color: #ffffff;
  padding-left: 10px;
  font-size: 70%;
}
.homes_filter .btn_home {
  background: #FCB535;
  border: none;
  min-width: 280px;
  display: inline-block;
  padding: 17px 20px;
  color: #282828;
  font-size: 120%;
  line-height: 14px;
  text-align: center;
  margin-top: 43px;
  text-transform: uppercase;
}
@media screen and (max-width: 1199px) {
  .homes_filter.home_slider .tabs_container {
    padding: 20px;
  }
}
@media screen and (max-width: 959px) {
  .homes_filter .images_slider .slide_block {
    height: 300px;
  }
  .homes_filter .images_slider .slide_block:before {
    padding-bottom: 40%;
  }
  .homes_filter .btn_home {
    margin-top: 45px;
    min-width: auto;
  }
  .homes_filter.home_slider .tabs_container {
    position: relative;
    flex: 0 0 100%;
    max-width: 100%;
  }
  .homes_filter .images_slider .info_inner {
    max-width: 400px;
    padding: 15px;
  }
  .homes_filter .images_slider .info_inner .section_title {
    margin-bottom: 6px;
    position: relative;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
  }
  .homes_filter .images_slider .info_inner .block_description {
    position: relative;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
  }
  .homes_filter .images_slider .slide_info {
    padding: 0 0 15px;
    align-items: center;
  }
}
@media screen and (max-width: 719px) {
  .homes_filter .switch_buttons,
.homes_filter .filter_buttons {
    width: 100%;
    margin-top: 0;
  }
  .homes_filter .switch_buttons > li,
.homes_filter .filter_buttons > li {
    margin-bottom: 20px;
    flex: 1;
    display: flex;
  }
  .homes_filter .switch_buttons > li a,
.homes_filter .filter_buttons > li a {
    min-width: unset;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .homes_filter .form_fields .filter_block,
.homes_filter .form_fields .field_block {
    flex: 0 0 100%;
    max-width: 100%;
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 479px) {
  .homes_filter .images_slider .slide_info {
    align-items: flex-start;
  }
}

.iti {
  position: relative;
  display: inline-block;
}

.iti * {
  box-sizing: border-box;
  -moz-box-sizing: border-box;
}

.iti__hide {
  display: none;
}

.iti__v-hide {
  visibility: hidden;
}

.iti input, .iti input[type=text], .iti input[type=tel] {
  position: relative;
  z-index: 0;
  margin-top: 0 !important;
  margin-bottom: 0 !important;
  padding-right: 36px;
  margin-right: 0;
}

.iti__flag-container {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  padding: 1px;
}

.iti__selected-flag {
  z-index: 1;
  position: relative;
  display: flex;
  align-items: center;
  height: 100%;
  padding: 0 6px 0 8px;
}

.iti__arrow {
  margin-left: 6px;
  width: 0;
  height: 0;
  border-left: 3px solid transparent;
  border-right: 3px solid transparent;
  border-top: 4px solid #555;
}

.iti__arrow--up {
  border-top: none;
  border-bottom: 4px solid #555;
}

.iti__country-list {
  position: absolute;
  z-index: 2;
  list-style: none;
  text-align: left;
  padding: 0;
  margin: 0 0 0 -1px;
  box-shadow: 1px 1px 4px rgba(0, 0, 0, 0.2);
  background-color: white;
  border: 1px solid #CCC;
  white-space: nowrap;
  max-height: 200px;
  overflow-y: scroll;
  -webkit-overflow-scrolling: touch;
}

.iti__country-list--dropup {
  bottom: 100%;
  margin-bottom: -1px;
}

@media (max-width: 500px) {
  .iti__country-list {
    white-space: normal;
  }
}
.iti__flag-box {
  display: inline-block;
  width: 20px;
}

.iti__divider {
  padding-bottom: 5px;
  margin-bottom: 5px;
  border-bottom: 1px solid #CCC;
}

.iti__country {
  padding: 5px 10px;
  outline: none;
}

.iti__dial-code {
  color: #999;
}

.iti__country.iti__highlight {
  background-color: rgba(0, 0, 0, 0.05);
}

.iti__flag-box, .iti__country-name, .iti__dial-code {
  vertical-align: middle;
}

.iti__flag-box, .iti__country-name {
  margin-right: 6px;
}

.iti--allow-dropdown input, .iti--allow-dropdown input[type=text], .iti--allow-dropdown input[type=tel], .iti--separate-dial-code input, .iti--separate-dial-code input[type=text], .iti--separate-dial-code input[type=tel] {
  padding-right: 6px;
  padding-left: 52px;
  margin-left: 0;
}

.iti--allow-dropdown .iti__flag-container, .iti--separate-dial-code .iti__flag-container {
  right: auto;
  left: 0;
}

.iti--allow-dropdown .iti__flag-container:hover {
  cursor: pointer;
}

.iti--allow-dropdown .iti__flag-container:hover .iti__selected-flag {
  background-color: rgba(0, 0, 0, 0.05);
}

.iti--allow-dropdown input[disabled] + .iti__flag-container:hover,
.iti--allow-dropdown input[readonly] + .iti__flag-container:hover {
  cursor: default;
}

.iti--allow-dropdown input[disabled] + .iti__flag-container:hover .iti__selected-flag,
.iti--allow-dropdown input[readonly] + .iti__flag-container:hover .iti__selected-flag {
  background-color: transparent;
}

.iti--separate-dial-code .iti__selected-flag {
  background-color: rgba(0, 0, 0, 0.05);
}

.iti--separate-dial-code .iti__selected-dial-code {
  margin-left: 6px;
}

.iti--container {
  position: absolute;
  top: -1000px;
  left: -1000px;
  z-index: 1060;
  padding: 1px;
}

.iti--container:hover {
  cursor: pointer;
}

.iti-mobile .iti--container {
  top: 30px;
  bottom: 30px;
  left: 30px;
  right: 30px;
  position: fixed;
}

.iti-mobile .iti__country-list {
  max-height: 100%;
  width: 100%;
}

.iti-mobile .iti__country {
  padding: 10px 10px;
  line-height: 1.5em;
}

.iti__flag {
  width: 20px;
}

.iti__flag.iti__be {
  width: 18px;
}

.iti__flag.iti__ch {
  width: 15px;
}

.iti__flag.iti__mc {
  width: 19px;
}

.iti__flag.iti__ne {
  width: 18px;
}

.iti__flag.iti__np {
  width: 13px;
}

.iti__flag.iti__va {
  width: 15px;
}

@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  .iti__flag {
    background-size: 5652px 15px;
  }
}
.iti__flag.iti__ac {
  height: 10px;
  background-position: 0px 0px;
}

.iti__flag.iti__ad {
  height: 14px;
  background-position: -22px 0px;
}

.iti__flag.iti__ae {
  height: 10px;
  background-position: -44px 0px;
}

.iti__flag.iti__af {
  height: 14px;
  background-position: -66px 0px;
}

.iti__flag.iti__ag {
  height: 14px;
  background-position: -88px 0px;
}

.iti__flag.iti__ai {
  height: 10px;
  background-position: -110px 0px;
}

.iti__flag.iti__al {
  height: 15px;
  background-position: -132px 0px;
}

.iti__flag.iti__am {
  height: 10px;
  background-position: -154px 0px;
}

.iti__flag.iti__ao {
  height: 14px;
  background-position: -176px 0px;
}

.iti__flag.iti__aq {
  height: 14px;
  background-position: -198px 0px;
}

.iti__flag.iti__ar {
  height: 13px;
  background-position: -220px 0px;
}

.iti__flag.iti__as {
  height: 10px;
  background-position: -242px 0px;
}

.iti__flag.iti__at {
  height: 14px;
  background-position: -264px 0px;
}

.iti__flag.iti__au {
  height: 10px;
  background-position: -286px 0px;
}

.iti__flag.iti__aw {
  height: 14px;
  background-position: -308px 0px;
}

.iti__flag.iti__ax {
  height: 13px;
  background-position: -330px 0px;
}

.iti__flag.iti__az {
  height: 10px;
  background-position: -352px 0px;
}

.iti__flag.iti__ba {
  height: 10px;
  background-position: -374px 0px;
}

.iti__flag.iti__bb {
  height: 14px;
  background-position: -396px 0px;
}

.iti__flag.iti__bd {
  height: 12px;
  background-position: -418px 0px;
}

.iti__flag.iti__be {
  height: 15px;
  background-position: -440px 0px;
}

.iti__flag.iti__bf {
  height: 14px;
  background-position: -460px 0px;
}

.iti__flag.iti__bg {
  height: 12px;
  background-position: -482px 0px;
}

.iti__flag.iti__bh {
  height: 12px;
  background-position: -504px 0px;
}

.iti__flag.iti__bi {
  height: 12px;
  background-position: -526px 0px;
}

.iti__flag.iti__bj {
  height: 14px;
  background-position: -548px 0px;
}

.iti__flag.iti__bl {
  height: 14px;
  background-position: -570px 0px;
}

.iti__flag.iti__bm {
  height: 10px;
  background-position: -592px 0px;
}

.iti__flag.iti__bn {
  height: 10px;
  background-position: -614px 0px;
}

.iti__flag.iti__bo {
  height: 14px;
  background-position: -636px 0px;
}

.iti__flag.iti__bq {
  height: 14px;
  background-position: -658px 0px;
}

.iti__flag.iti__br {
  height: 14px;
  background-position: -680px 0px;
}

.iti__flag.iti__bs {
  height: 10px;
  background-position: -702px 0px;
}

.iti__flag.iti__bt {
  height: 14px;
  background-position: -724px 0px;
}

.iti__flag.iti__bv {
  height: 15px;
  background-position: -746px 0px;
}

.iti__flag.iti__bw {
  height: 14px;
  background-position: -768px 0px;
}

.iti__flag.iti__by {
  height: 10px;
  background-position: -790px 0px;
}

.iti__flag.iti__bz {
  height: 14px;
  background-position: -812px 0px;
}

.iti__flag.iti__ca {
  height: 10px;
  background-position: -834px 0px;
}

.iti__flag.iti__cc {
  height: 10px;
  background-position: -856px 0px;
}

.iti__flag.iti__cd {
  height: 15px;
  background-position: -878px 0px;
}

.iti__flag.iti__cf {
  height: 14px;
  background-position: -900px 0px;
}

.iti__flag.iti__cg {
  height: 14px;
  background-position: -922px 0px;
}

.iti__flag.iti__ch {
  height: 15px;
  background-position: -944px 0px;
}

.iti__flag.iti__ci {
  height: 14px;
  background-position: -961px 0px;
}

.iti__flag.iti__ck {
  height: 10px;
  background-position: -983px 0px;
}

.iti__flag.iti__cl {
  height: 14px;
  background-position: -1005px 0px;
}

.iti__flag.iti__cm {
  height: 14px;
  background-position: -1027px 0px;
}

.iti__flag.iti__cn {
  height: 14px;
  background-position: -1049px 0px;
}

.iti__flag.iti__co {
  height: 14px;
  background-position: -1071px 0px;
}

.iti__flag.iti__cp {
  height: 14px;
  background-position: -1093px 0px;
}

.iti__flag.iti__cr {
  height: 12px;
  background-position: -1115px 0px;
}

.iti__flag.iti__cu {
  height: 10px;
  background-position: -1137px 0px;
}

.iti__flag.iti__cv {
  height: 12px;
  background-position: -1159px 0px;
}

.iti__flag.iti__cw {
  height: 14px;
  background-position: -1181px 0px;
}

.iti__flag.iti__cx {
  height: 10px;
  background-position: -1203px 0px;
}

.iti__flag.iti__cy {
  height: 14px;
  background-position: -1225px 0px;
}

.iti__flag.iti__cz {
  height: 14px;
  background-position: -1247px 0px;
}

.iti__flag.iti__de {
  height: 12px;
  background-position: -1269px 0px;
}

.iti__flag.iti__dg {
  height: 10px;
  background-position: -1291px 0px;
}

.iti__flag.iti__dj {
  height: 14px;
  background-position: -1313px 0px;
}

.iti__flag.iti__dk {
  height: 15px;
  background-position: -1335px 0px;
}

.iti__flag.iti__dm {
  height: 10px;
  background-position: -1357px 0px;
}

.iti__flag.iti__do {
  height: 14px;
  background-position: -1379px 0px;
}

.iti__flag.iti__dz {
  height: 14px;
  background-position: -1401px 0px;
}

.iti__flag.iti__ea {
  height: 14px;
  background-position: -1423px 0px;
}

.iti__flag.iti__ec {
  height: 14px;
  background-position: -1445px 0px;
}

.iti__flag.iti__ee {
  height: 13px;
  background-position: -1467px 0px;
}

.iti__flag.iti__eg {
  height: 14px;
  background-position: -1489px 0px;
}

.iti__flag.iti__eh {
  height: 10px;
  background-position: -1511px 0px;
}

.iti__flag.iti__er {
  height: 10px;
  background-position: -1533px 0px;
}

.iti__flag.iti__es {
  height: 14px;
  background-position: -1555px 0px;
}

.iti__flag.iti__et {
  height: 10px;
  background-position: -1577px 0px;
}

.iti__flag.iti__eu {
  height: 14px;
  background-position: -1599px 0px;
}

.iti__flag.iti__fi {
  height: 12px;
  background-position: -1621px 0px;
}

.iti__flag.iti__fj {
  height: 10px;
  background-position: -1643px 0px;
}

.iti__flag.iti__fk {
  height: 10px;
  background-position: -1665px 0px;
}

.iti__flag.iti__fm {
  height: 11px;
  background-position: -1687px 0px;
}

.iti__flag.iti__fo {
  height: 15px;
  background-position: -1709px 0px;
}

.iti__flag.iti__fr {
  height: 14px;
  background-position: -1731px 0px;
}

.iti__flag.iti__ga {
  height: 15px;
  background-position: -1753px 0px;
}

.iti__flag.iti__gb {
  height: 10px;
  background-position: -1775px 0px;
}

.iti__flag.iti__gd {
  height: 12px;
  background-position: -1797px 0px;
}

.iti__flag.iti__ge {
  height: 14px;
  background-position: -1819px 0px;
}

.iti__flag.iti__gf {
  height: 14px;
  background-position: -1841px 0px;
}

.iti__flag.iti__gg {
  height: 14px;
  background-position: -1863px 0px;
}

.iti__flag.iti__gh {
  height: 14px;
  background-position: -1885px 0px;
}

.iti__flag.iti__gi {
  height: 10px;
  background-position: -1907px 0px;
}

.iti__flag.iti__gl {
  height: 14px;
  background-position: -1929px 0px;
}

.iti__flag.iti__gm {
  height: 14px;
  background-position: -1951px 0px;
}

.iti__flag.iti__gn {
  height: 14px;
  background-position: -1973px 0px;
}

.iti__flag.iti__gp {
  height: 14px;
  background-position: -1995px 0px;
}

.iti__flag.iti__gq {
  height: 14px;
  background-position: -2017px 0px;
}

.iti__flag.iti__gr {
  height: 14px;
  background-position: -2039px 0px;
}

.iti__flag.iti__gs {
  height: 10px;
  background-position: -2061px 0px;
}

.iti__flag.iti__gt {
  height: 13px;
  background-position: -2083px 0px;
}

.iti__flag.iti__gu {
  height: 11px;
  background-position: -2105px 0px;
}

.iti__flag.iti__gw {
  height: 10px;
  background-position: -2127px 0px;
}

.iti__flag.iti__gy {
  height: 12px;
  background-position: -2149px 0px;
}

.iti__flag.iti__hk {
  height: 14px;
  background-position: -2171px 0px;
}

.iti__flag.iti__hm {
  height: 10px;
  background-position: -2193px 0px;
}

.iti__flag.iti__hn {
  height: 10px;
  background-position: -2215px 0px;
}

.iti__flag.iti__hr {
  height: 10px;
  background-position: -2237px 0px;
}

.iti__flag.iti__ht {
  height: 12px;
  background-position: -2259px 0px;
}

.iti__flag.iti__hu {
  height: 10px;
  background-position: -2281px 0px;
}

.iti__flag.iti__ic {
  height: 14px;
  background-position: -2303px 0px;
}

.iti__flag.iti__id {
  height: 14px;
  background-position: -2325px 0px;
}

.iti__flag.iti__ie {
  height: 10px;
  background-position: -2347px 0px;
}

.iti__flag.iti__il {
  height: 15px;
  background-position: -2369px 0px;
}

.iti__flag.iti__im {
  height: 10px;
  background-position: -2391px 0px;
}

.iti__flag.iti__in {
  height: 14px;
  background-position: -2413px 0px;
}

.iti__flag.iti__io {
  height: 10px;
  background-position: -2435px 0px;
}

.iti__flag.iti__iq {
  height: 14px;
  background-position: -2457px 0px;
}

.iti__flag.iti__ir {
  height: 12px;
  background-position: -2479px 0px;
}

.iti__flag.iti__is {
  height: 15px;
  background-position: -2501px 0px;
}

.iti__flag.iti__it {
  height: 14px;
  background-position: -2523px 0px;
}

.iti__flag.iti__je {
  height: 12px;
  background-position: -2545px 0px;
}

.iti__flag.iti__jm {
  height: 10px;
  background-position: -2567px 0px;
}

.iti__flag.iti__jo {
  height: 10px;
  background-position: -2589px 0px;
}

.iti__flag.iti__jp {
  height: 14px;
  background-position: -2611px 0px;
}

.iti__flag.iti__ke {
  height: 14px;
  background-position: -2633px 0px;
}

.iti__flag.iti__kg {
  height: 12px;
  background-position: -2655px 0px;
}

.iti__flag.iti__kh {
  height: 13px;
  background-position: -2677px 0px;
}

.iti__flag.iti__ki {
  height: 10px;
  background-position: -2699px 0px;
}

.iti__flag.iti__km {
  height: 12px;
  background-position: -2721px 0px;
}

.iti__flag.iti__kn {
  height: 14px;
  background-position: -2743px 0px;
}

.iti__flag.iti__kp {
  height: 10px;
  background-position: -2765px 0px;
}

.iti__flag.iti__kr {
  height: 14px;
  background-position: -2787px 0px;
}

.iti__flag.iti__kw {
  height: 10px;
  background-position: -2809px 0px;
}

.iti__flag.iti__ky {
  height: 10px;
  background-position: -2831px 0px;
}

.iti__flag.iti__kz {
  height: 10px;
  background-position: -2853px 0px;
}

.iti__flag.iti__la {
  height: 14px;
  background-position: -2875px 0px;
}

.iti__flag.iti__lb {
  height: 14px;
  background-position: -2897px 0px;
}

.iti__flag.iti__lc {
  height: 10px;
  background-position: -2919px 0px;
}

.iti__flag.iti__li {
  height: 12px;
  background-position: -2941px 0px;
}

.iti__flag.iti__lk {
  height: 10px;
  background-position: -2963px 0px;
}

.iti__flag.iti__lr {
  height: 11px;
  background-position: -2985px 0px;
}

.iti__flag.iti__ls {
  height: 14px;
  background-position: -3007px 0px;
}

.iti__flag.iti__lt {
  height: 12px;
  background-position: -3029px 0px;
}

.iti__flag.iti__lu {
  height: 12px;
  background-position: -3051px 0px;
}

.iti__flag.iti__lv {
  height: 10px;
  background-position: -3073px 0px;
}

.iti__flag.iti__ly {
  height: 10px;
  background-position: -3095px 0px;
}

.iti__flag.iti__ma {
  height: 14px;
  background-position: -3117px 0px;
}

.iti__flag.iti__mc {
  height: 15px;
  background-position: -3139px 0px;
}

.iti__flag.iti__md {
  height: 10px;
  background-position: -3160px 0px;
}

.iti__flag.iti__me {
  height: 10px;
  background-position: -3182px 0px;
}

.iti__flag.iti__mf {
  height: 14px;
  background-position: -3204px 0px;
}

.iti__flag.iti__mg {
  height: 14px;
  background-position: -3226px 0px;
}

.iti__flag.iti__mh {
  height: 11px;
  background-position: -3248px 0px;
}

.iti__flag.iti__mk {
  height: 10px;
  background-position: -3270px 0px;
}

.iti__flag.iti__ml {
  height: 14px;
  background-position: -3292px 0px;
}

.iti__flag.iti__mm {
  height: 14px;
  background-position: -3314px 0px;
}

.iti__flag.iti__mn {
  height: 10px;
  background-position: -3336px 0px;
}

.iti__flag.iti__mo {
  height: 14px;
  background-position: -3358px 0px;
}

.iti__flag.iti__mp {
  height: 10px;
  background-position: -3380px 0px;
}

.iti__flag.iti__mq {
  height: 14px;
  background-position: -3402px 0px;
}

.iti__flag.iti__mr {
  height: 14px;
  background-position: -3424px 0px;
}

.iti__flag.iti__ms {
  height: 10px;
  background-position: -3446px 0px;
}

.iti__flag.iti__mt {
  height: 14px;
  background-position: -3468px 0px;
}

.iti__flag.iti__mu {
  height: 14px;
  background-position: -3490px 0px;
}

.iti__flag.iti__mv {
  height: 14px;
  background-position: -3512px 0px;
}

.iti__flag.iti__mw {
  height: 14px;
  background-position: -3534px 0px;
}

.iti__flag.iti__mx {
  height: 12px;
  background-position: -3556px 0px;
}

.iti__flag.iti__my {
  height: 10px;
  background-position: -3578px 0px;
}

.iti__flag.iti__mz {
  height: 14px;
  background-position: -3600px 0px;
}

.iti__flag.iti__na {
  height: 14px;
  background-position: -3622px 0px;
}

.iti__flag.iti__nc {
  height: 10px;
  background-position: -3644px 0px;
}

.iti__flag.iti__ne {
  height: 15px;
  background-position: -3666px 0px;
}

.iti__flag.iti__nf {
  height: 10px;
  background-position: -3686px 0px;
}

.iti__flag.iti__ng {
  height: 10px;
  background-position: -3708px 0px;
}

.iti__flag.iti__ni {
  height: 12px;
  background-position: -3730px 0px;
}

.iti__flag.iti__nl {
  height: 14px;
  background-position: -3752px 0px;
}

.iti__flag.iti__no {
  height: 15px;
  background-position: -3774px 0px;
}

.iti__flag.iti__np {
  height: 15px;
  background-position: -3796px 0px;
}

.iti__flag.iti__nr {
  height: 10px;
  background-position: -3811px 0px;
}

.iti__flag.iti__nu {
  height: 10px;
  background-position: -3833px 0px;
}

.iti__flag.iti__nz {
  height: 10px;
  background-position: -3855px 0px;
}

.iti__flag.iti__om {
  height: 10px;
  background-position: -3877px 0px;
}

.iti__flag.iti__pa {
  height: 14px;
  background-position: -3899px 0px;
}

.iti__flag.iti__pe {
  height: 14px;
  background-position: -3921px 0px;
}

.iti__flag.iti__pf {
  height: 14px;
  background-position: -3943px 0px;
}

.iti__flag.iti__pg {
  height: 15px;
  background-position: -3965px 0px;
}

.iti__flag.iti__ph {
  height: 10px;
  background-position: -3987px 0px;
}

.iti__flag.iti__pk {
  height: 14px;
  background-position: -4009px 0px;
}

.iti__flag.iti__pl {
  height: 13px;
  background-position: -4031px 0px;
}

.iti__flag.iti__pm {
  height: 14px;
  background-position: -4053px 0px;
}

.iti__flag.iti__pn {
  height: 10px;
  background-position: -4075px 0px;
}

.iti__flag.iti__pr {
  height: 14px;
  background-position: -4097px 0px;
}

.iti__flag.iti__ps {
  height: 10px;
  background-position: -4119px 0px;
}

.iti__flag.iti__pt {
  height: 14px;
  background-position: -4141px 0px;
}

.iti__flag.iti__pw {
  height: 13px;
  background-position: -4163px 0px;
}

.iti__flag.iti__py {
  height: 11px;
  background-position: -4185px 0px;
}

.iti__flag.iti__qa {
  height: 8px;
  background-position: -4207px 0px;
}

.iti__flag.iti__re {
  height: 14px;
  background-position: -4229px 0px;
}

.iti__flag.iti__ro {
  height: 14px;
  background-position: -4251px 0px;
}

.iti__flag.iti__rs {
  height: 14px;
  background-position: -4273px 0px;
}

.iti__flag.iti__ru {
  height: 14px;
  background-position: -4295px 0px;
}

.iti__flag.iti__rw {
  height: 14px;
  background-position: -4317px 0px;
}

.iti__flag.iti__sa {
  height: 14px;
  background-position: -4339px 0px;
}

.iti__flag.iti__sb {
  height: 10px;
  background-position: -4361px 0px;
}

.iti__flag.iti__sc {
  height: 10px;
  background-position: -4383px 0px;
}

.iti__flag.iti__sd {
  height: 10px;
  background-position: -4405px 0px;
}

.iti__flag.iti__se {
  height: 13px;
  background-position: -4427px 0px;
}

.iti__flag.iti__sg {
  height: 14px;
  background-position: -4449px 0px;
}

.iti__flag.iti__sh {
  height: 10px;
  background-position: -4471px 0px;
}

.iti__flag.iti__si {
  height: 10px;
  background-position: -4493px 0px;
}

.iti__flag.iti__sj {
  height: 15px;
  background-position: -4515px 0px;
}

.iti__flag.iti__sk {
  height: 14px;
  background-position: -4537px 0px;
}

.iti__flag.iti__sl {
  height: 14px;
  background-position: -4559px 0px;
}

.iti__flag.iti__sm {
  height: 15px;
  background-position: -4581px 0px;
}

.iti__flag.iti__sn {
  height: 14px;
  background-position: -4603px 0px;
}

.iti__flag.iti__so {
  height: 14px;
  background-position: -4625px 0px;
}

.iti__flag.iti__sr {
  height: 14px;
  background-position: -4647px 0px;
}

.iti__flag.iti__ss {
  height: 10px;
  background-position: -4669px 0px;
}

.iti__flag.iti__st {
  height: 10px;
  background-position: -4691px 0px;
}

.iti__flag.iti__sv {
  height: 12px;
  background-position: -4713px 0px;
}

.iti__flag.iti__sx {
  height: 14px;
  background-position: -4735px 0px;
}

.iti__flag.iti__sy {
  height: 14px;
  background-position: -4757px 0px;
}

.iti__flag.iti__sz {
  height: 14px;
  background-position: -4779px 0px;
}

.iti__flag.iti__ta {
  height: 10px;
  background-position: -4801px 0px;
}

.iti__flag.iti__tc {
  height: 10px;
  background-position: -4823px 0px;
}

.iti__flag.iti__td {
  height: 14px;
  background-position: -4845px 0px;
}

.iti__flag.iti__tf {
  height: 14px;
  background-position: -4867px 0px;
}

.iti__flag.iti__tg {
  height: 13px;
  background-position: -4889px 0px;
}

.iti__flag.iti__th {
  height: 14px;
  background-position: -4911px 0px;
}

.iti__flag.iti__tj {
  height: 10px;
  background-position: -4933px 0px;
}

.iti__flag.iti__tk {
  height: 10px;
  background-position: -4955px 0px;
}

.iti__flag.iti__tl {
  height: 10px;
  background-position: -4977px 0px;
}

.iti__flag.iti__tm {
  height: 14px;
  background-position: -4999px 0px;
}

.iti__flag.iti__tn {
  height: 14px;
  background-position: -5021px 0px;
}

.iti__flag.iti__to {
  height: 10px;
  background-position: -5043px 0px;
}

.iti__flag.iti__tr {
  height: 14px;
  background-position: -5065px 0px;
}

.iti__flag.iti__tt {
  height: 12px;
  background-position: -5087px 0px;
}

.iti__flag.iti__tv {
  height: 10px;
  background-position: -5109px 0px;
}

.iti__flag.iti__tw {
  height: 14px;
  background-position: -5131px 0px;
}

.iti__flag.iti__tz {
  height: 14px;
  background-position: -5153px 0px;
}

.iti__flag.iti__ua {
  height: 14px;
  background-position: -5175px 0px;
}

.iti__flag.iti__ug {
  height: 14px;
  background-position: -5197px 0px;
}

.iti__flag.iti__um {
  height: 11px;
  background-position: -5219px 0px;
}

.iti__flag.iti__un {
  height: 14px;
  background-position: -5241px 0px;
}

.iti__flag.iti__us {
  height: 11px;
  background-position: -5263px 0px;
}

.iti__flag.iti__uy {
  height: 14px;
  background-position: -5285px 0px;
}

.iti__flag.iti__uz {
  height: 10px;
  background-position: -5307px 0px;
}

.iti__flag.iti__va {
  height: 15px;
  background-position: -5329px 0px;
}

.iti__flag.iti__vc {
  height: 14px;
  background-position: -5346px 0px;
}

.iti__flag.iti__ve {
  height: 14px;
  background-position: -5368px 0px;
}

.iti__flag.iti__vg {
  height: 10px;
  background-position: -5390px 0px;
}

.iti__flag.iti__vi {
  height: 14px;
  background-position: -5412px 0px;
}

.iti__flag.iti__vn {
  height: 14px;
  background-position: -5434px 0px;
}

.iti__flag.iti__vu {
  height: 12px;
  background-position: -5456px 0px;
}

.iti__flag.iti__wf {
  height: 14px;
  background-position: -5478px 0px;
}

.iti__flag.iti__ws {
  height: 10px;
  background-position: -5500px 0px;
}

.iti__flag.iti__xk {
  height: 15px;
  background-position: -5522px 0px;
}

.iti__flag.iti__ye {
  height: 14px;
  background-position: -5544px 0px;
}

.iti__flag.iti__yt {
  height: 14px;
  background-position: -5566px 0px;
}

.iti__flag.iti__za {
  height: 14px;
  background-position: -5588px 0px;
}

.iti__flag.iti__zm {
  height: 14px;
  background-position: -5610px 0px;
}

.iti__flag.iti__zw {
  height: 10px;
  background-position: -5632px 0px;
}

.iti__flag {
  height: 15px;
  box-shadow: 0px 0px 1px 0px #888;
  background-image: url("/assets/css/images/flags.png");
  background-repeat: no-repeat;
  background-color: #DBDBDB;
  background-position: 20px 0;
}

.iti__flag.iti__np {
  background-color: transparent;
}

/* Slider */
.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  display: block;
  overflow: hidden;
  margin: 0;
  padding: 0;
}

.slick-list:focus {
  outline: none;
}

.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  top: 0;
  left: 0;
  display: block;
}

.slick-track:before,
.slick-track:after {
  display: table;
  content: "";
}

.slick-track:after {
  clear: both;
}

.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  display: none;
  float: left;
  height: 100%;
  min-height: 1px;
}

[dir=rtl] .slick-slide {
  float: right;
}

.slick-slide img {
  display: block;
}

.slick-slide.slick-loading img {
  display: none;
}

.slick-slide.dragging img {
  pointer-events: none;
}

.slick-initialized .slick-slide {
  display: block;
}

.slick-loading .slick-slide {
  visibility: hidden;
}

.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
  display: none;
}

.contact_type {
  padding-bottom: 10px;
  font-size: 150%;
  line-height: 18px;
  color: #ffffff;
  display: block;
}

.map_block {
  flex: 0 0 100vw;
  max-width: 100vw;
  margin-top: 61px;
  position: relative;
}
@media screen and (min-width: 1920px) {
  .map_block {
    max-width: 1920px;
    margin: 0 auto;
    width: 100%;
  }
}
.map_block .preload_images {
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}
.map_block .preload_images img {
  flex: 0 0 640px;
  max-width: 640px;
  height: auto;
}

.address_btn {
  cursor: pointer;
}

#map {
  height: 568px;
  max-height: 75vh;
  position: relative;
  z-index: 2;
}

.iw_content {
  font-size: 1.2rem;
  line-height: 15px;
}

.iw_title {
  background: rgba(248, 248, 248, 0.1);
  -webkit-backdrop-filter: blur(25px);
          backdrop-filter: blur(25px);
}

.iw_address {
  margin-top: 16px;
}

.contact_info {
  font-size: 150%;
  line-height: 21px;
  color: #C5C5C5;
}
.contact_info a {
  display: inline-block;
  vertical-align: top;
  color: inherit;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
  max-width: 100%;
  text-overflow: ellipsis;
}

.contact_form .form_fields {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -10px;
}
.contact_form .field_block ::-webkit-input-placeholder {
  color: #999999;
}
.contact_form .field_block :-moz-placeholder {
  color: #999999;
}
.contact_form .field_block ::-moz-placeholder {
  color: #999999;
}
.contact_form .field_block :-ms-input-placeholder {
  color: #999999;
}
.contact_form .field_block.full_field {
  flex: 0 0 100%;
  max-width: 100%;
}
.contact_form .field_block input,
.contact_form .field_block textarea {
  font-size: 140%;
  line-height: 18px;
  padding: 13px 10px;
  border: 1px solid #F8F8F8;
  background: transparent;
  color: #ffffff;
}
.contact_form .field_block input:focus,
.contact_form .field_block textarea:focus {
  border-color: #ffffff;
}
.contact_form .field_block input:focus::-moz-placeholder, .contact_form .field_block textarea:focus::-moz-placeholder {
  color: #ffffff;
}
.contact_form .field_block input:focus:-ms-input-placeholder, .contact_form .field_block textarea:focus:-ms-input-placeholder {
  color: #ffffff;
}
.contact_form .field_block input:focus::placeholder,
.contact_form .field_block textarea:focus::placeholder {
  color: #ffffff;
}
.contact_form .field_block textarea {
  height: 92px;
}
.contact_form .field_block.has-error input,
.contact_form .field_block.has-error textarea {
  border-color: #b94a48 !important;
}
.contact_form .field_block .error_hint {
  display: block;
  text-align: right;
  font-size: 120%;
  line-height: 15px;
}
.contact_form .btn_block {
  flex: 0 0 50%;
  max-width: 50%;
  padding-left: 10px;
  padding-right: 10px;
  margin: 20px -10px 0;
}
.contact_form .btn_block button {
  background: #FCB535;
  border: none;
  min-width: 149px;
  padding: 17px 20px;
  color: #282828;
  font-size: 120%;
  line-height: 14px;
  text-align: center;
  display: block;
  text-transform: uppercase;
}

.contacts_list {
  margin: 0;
  list-style-type: none;
  display: flex;
  flex-wrap: wrap;
  padding: 0 10px;
}
.contacts_list > li {
  flex: 0 0 50%;
  max-width: 50%;
  margin-bottom: 40px;
}
.contacts_list .socials_list {
  margin-top: 10px;
}

.contact_form {
  padding: 0 10px;
}

@media screen and (min-width: 1200px) {
  .contacts_list {
    flex: 0 0 50%;
    max-width: 50%;
  }

  .contact_form {
    flex: 0 0 50%;
    max-width: 50%;
  }
}
@media screen and (max-width: 959px) {
  .contact_info {
    font-size: 130%;
    line-height: 18px;
  }

  .contacts_section .field_block,
.contact_form .field_block,
.contacts_list > li,
.contact_form .btn_block {
    flex: 0 0 100%;
    max-width: 100%;
    margin-bottom: 15px;
  }
}
@media screen and (min-width: 640px) and (max-width: 1199px) {
  .contact_form,
.contacts_list {
    flex: 0 0 50%;
    max-width: 50%;
  }
}
@media screen and (max-width: 639px) {
  #map {
    height: 300px;
    max-height: 75vh;
  }

  .contact_form,
.contacts_list {
    flex: 0 0 100%;
    max-width: 100%;
  }
}
.contacts_section.contact_page {
  margin-top: 50px;
}
@media screen and (max-width: 959px) {
  .contacts_section.contact_page {
    margin-top: 20px;
  }
}
@media screen and (max-width: 479px) {
  .contacts_section.contact_page {
    margin-top: 50px;
  }
}
.contacts_section .section_title {
  color: #FCB535;
  padding-bottom: 20px;
}
.contacts_section .section_inner {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  margin: 40px -10px 0;
}
.contacts_section .field_block {
  flex: 0 0 50%;
  max-width: 50%;
  padding-left: 10px;
  padding-right: 10px;
  margin-top: 10px;
}
@media screen and (max-width: 959px) {
  .contacts_section .field_block {
    flex: 0 0 100%;
    max-width: 100%;
  }
}
@media screen and (max-width: 959px) {
  .contacts_section .section_inner {
    margin-top: 20px;
  }
}

.main_slider {
  position: relative;
  white-space: nowrap;
  font-size: 0;
  overflow: hidden;
}
@media screen and (min-width: 1920px) {
  .main_slider {
    max-width: 1920px;
    margin: 0 auto;
    width: 100%;
  }
}
.main_slider .slide_block {
  display: inline-block;
  white-space: normal;
  font-size: 1rem;
  width: 100%;
  vertical-align: top;
  position: relative;
  overflow: hidden;
  z-index: 2;
}
.main_slider .slide_image {
  z-index: -1;
}
.main_slider .slide_image img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.main_slider.slick-slider .slider_title {
  transition: all 1s;
  transform: translate3d(100vw, 0, 0);
  -moz-transform: translate3d(100vw, 0, 0);
  -ms-transform: translate3d(100vw, 0, 0);
  -webkit-transform: translate3d(100vw, 0, 0);
  -o-transform: translate3d(100vw, 0, 0);
}
.main_slider.slick-slider .slider_description {
  transition: all 1s;
  transform: translate3d(-100vw, 0, 0);
  -moz-transform: translate3d(-100vw, 0, 0);
  -ms-transform: translate3d(-100vw, 0, 0);
  -webkit-transform: translate3d(-100vw, 0, 0);
  -o-transform: translate3d(-100vw, 0, 0);
}
.main_slider.slick-slider .slider_btn {
  transition: transform 1s;
}
.main_slider.slick-slider .slick-current .slider_btn {
  transition: all 1s;
  transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -webkit-transform: scale(1);
  -o-transform: scale(1);
}
.main_slider.slick-slider .slick-current .slider_description,
.main_slider.slick-slider .slick-current .slider_title {
  transition: all 1s;
  transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -webkit-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
}
.main_slider .slick-arrow {
  position: absolute;
  z-index: 3;
  font-size: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  color: #FCB535;
  background: transparent;
  border: 1px solid #ffffff;
}
.main_slider .slick-arrow:before {
  display: block;
  color: #ffffff;
  font-size: 1.3rem;
  margin-right: 2px;
}
@media screen and (min-width: 1200px) {
  .main_slider .slick-arrow {
    left: 50%;
    margin-left: -544.5316105215px;
    bottom: 50px;
  }
}
@media screen and (min-width: 960px) and (max-width: 1199px) {
  .main_slider .slick-arrow {
    left: 70px;
    bottom: 50px;
  }
}
.main_slider .slick-next:before {
  content: "\e903";
}
.main_slider .slick-prev {
  transform: translate3d(-45px, 0, 0);
  -moz-transform: translate3d(-45px, 0, 0);
  -ms-transform: translate3d(-45px, 0, 0);
  -webkit-transform: translate3d(-45px, 0, 0);
  -o-transform: translate3d(-45px, 0, 0);
}
.main_slider .slick-prev:before {
  content: "\e902";
}
.main_slider .slick-dots {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  bottom: 130px;
}
@media screen and (min-width: 1200px) {
  .main_slider .slick-dots {
    left: 50%;
    margin-left: -590px;
  }
}
@media screen and (min-width: 960px) and (max-width: 1199px) {
  .main_slider .slick-dots {
    left: 70px;
  }
}
.main_slider .slick-dots li {
  margin: 0;
  padding: 0 4px;
  width: auto;
  height: auto;
}
.main_slider .slick-dots li.slick-active button {
  background: #FCB535;
  border-color: #FCB535;
}
.main_slider .slick-dots button {
  border: 1px solid #ffffff;
  background: transparent;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  padding: 0;
}
.main_slider .slide_inner {
  display: flex;
  align-items: center;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 98.81%);
  color: #ffffff;
  aspect-ratio: 192/60;
}
.main_slider .slider_description {
  font-size: 160%;
  line-height: 27px;
  color: #ffffff;
  margin-top: 6px;
  max-width: 480px;
  margin-bottom: 30px;
  position: relative;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}
.main_slider .slider_btn {
  background: #FCB535;
  border: none;
  min-width: 168px;
  display: inline-block;
  padding: 17px 20px;
  color: #282828;
  font-size: 120%;
  line-height: 14px;
  text-align: center;
  text-transform: uppercase;
}
.main_slider .slider_title {
  position: relative;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  margin: 0;
  font-weight: unset;
  color: inherit;
  max-width: 800px;
}
@media screen and (min-width: 1200px) {
  .main_slider .slider_title {
    font-size: 500%;
    line-height: 60px;
  }
}
@media screen and (min-width: 960px) and (max-width: 1199px) {
  .main_slider .slider_title {
    font-size: 450%;
    line-height: 60px;
  }
}
@media screen and (min-width: 768px) and (max-width: 959px) {
  .main_slider .slider_title {
    font-size: 400%;
    line-height: 52px;
  }
}
@media screen and (min-width: 576px) and (max-width: 767px) {
  .main_slider .slider_title {
    font-size: 320%;
    line-height: 40px;
  }
}
@media screen and (max-width: 575px) {
  .main_slider .slider_title {
    font-size: 240%;
    line-height: 30px;
  }
}
@media screen and (min-width: 1440px) {
  .main_slider .slide_inner {
    padding: 0 100px;
  }
}
@media screen and (min-width: 960px) and (max-width: 1439px) {
  .main_slider .slide_inner {
    padding: 0 10px;
    aspect-ratio: 150/60;
  }
  .main_slider .slide_inner .page_container {
    padding: 0;
  }
}
@media screen and (min-width: 576px) and (max-width: 959px) {
  .main_slider .slide_inner {
    padding: 0 30px;
    aspect-ratio: 150/60;
  }
}
@media screen and (max-width: 767px) {
  .main_slider {
    background: #141414;
  }
  .main_slider .slider_btn {
    min-width: 135px;
    padding: 11px 15px;
  }
  .main_slider .slide_inner {
    padding: 20px 0;
    background: #141414;
    aspect-ratio: unset;
    position: relative;
    z-index: 10;
  }
  .main_slider .slide_image {
    position: relative;
    height: auto;
    top: auto;
    left: auto;
    aspect-ratio: 192/60;
  }
}
@media screen and (max-width: 575px) {
  .main_slider .slider_title {
    -webkit-line-clamp: 2;
  }
}
@media screen and (max-width: 479px) {
  .main_slider {
    margin-top: 28px;
  }
}

@media screen and (max-width: 575px) {
  .ios_device .slider_title {
    -webkit-line-clamp: 2;
    height: 60px;
    overflow: hidden;
  }
}

@media screen and (min-width: 1200px) {
  .our_projects_block {
    margin: 100px 0 0;
  }
}
@media screen and (min-width: 960px) and (max-width: 1199px) {
  .our_projects_block {
    margin: 50px 0 0;
  }
}
@media screen and (max-width: 959px) {
  .our_projects_block {
    margin: 20px 0 0;
  }
}

@media screen and (min-width: 1200px) {
  .home_contact {
    margin-top: 100px;
  }
}
@media screen and (min-width: 960px) and (max-width: 1199px) {
  .home_contact {
    margin-top: 50px;
  }
}
@media screen and (max-width: 959px) {
  .home_contact {
    margin-top: 30px;
  }
}

.home_section {
  display: flex;
  flex-direction: column;
}
.home_section .filter_block {
  order: 2;
}
.home_section .tab_buttons {
  order: 1;
}
.home_section .home_buttons {
  display: flex;
  color: #ffffff;
  font-size: 140%;
  line-height: 17px;
  margin-top: 40px;
}
.home_section .home_buttons li {
  position: relative;
}
.home_section .home_buttons li a {
  display: block;
  text-align: center;
  color: #ffffff;
  padding: 8px 16px;
  border: 1px solid #FCB535;
  min-width: 141px;
}
.home_section .home_buttons li.selected {
  background: #FCB535;
  color: #282828;
  pointer-events: none;
}
.home_section .home_buttons li.selected a {
  color: #282828;
}
.home_section .home_buttons li.selected:before {
  content: "";
  position: absolute;
  width: 13px;
  height: 12px;
  border-style: solid;
  border-width: 10px 7px 0;
  border-color: #FCB535 transparent;
  bottom: -11px;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}

.section_home {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -10px;
}
.section_home li {
  padding: 0 10px;
  margin-bottom: 20px;
}
.section_home li:nth-child(n+8) {
  display: none;
}
.section_home li .img_inner {
  position: relative;
  overflow: hidden;
  flex: 0 0 100%;
  max-width: 100%;
}
.section_home li .img_inner img {
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (min-width: 768px) {
  .section_home li:nth-child(1) {
    flex: 0 0 26.33%;
    max-width: 26.33%;
  }
  .section_home li:nth-child(1) .img_inner {
    display: block;
    content: "";
    padding-bottom: 133.33%;
  }
  .section_home li:nth-child(2) {
    flex: 0 0 20%;
    max-width: 20%;
    display: flex;
    align-items: flex-end;
  }
  .section_home li:nth-child(2) .img_inner {
    display: block;
    content: "";
    padding-bottom: 100%;
  }
  .section_home li:nth-child(3) {
    flex: 0 0 31.5%;
    max-width: 31.5%;
    display: flex;
    align-items: flex-end;
    padding-bottom: 67px;
  }
  .section_home li:nth-child(3) .img_inner:before {
    display: block;
    content: "";
    padding-bottom: 66.67%;
  }
  .section_home li:nth-child(4) {
    flex: 0 0 22.17%;
    max-width: 22.17%;
    display: flex;
    align-items: flex-end;
    padding-bottom: 67px;
  }
  .section_home li:nth-child(4) .img_inner:before {
    display: block;
    content: "";
    padding-bottom: 134.6%;
  }
  .section_home li:nth-child(5) {
    margin-left: auto;
    flex: 0 0 38.41%;
    max-width: 38.41%;
  }
  .section_home li:nth-child(5) .img_inner:before {
    display: block;
    content: "";
    padding-bottom: 66.7%;
  }
  .section_home li:nth-child(6) {
    flex: 0 0 31.3%;
    max-width: 31.3%;
    margin-top: -67px;
  }
  .section_home li:nth-child(6) .img_inner:before {
    display: block;
    content: "";
    padding-bottom: 128.6%;
  }
  .section_home li:nth-child(7) {
    flex: 0 22.3%;
    max-width: 22.3%;
    margin-top: -67px;
  }
  .section_home li:nth-child(7) .img_inner:before {
    display: block;
    content: "";
    padding-bottom: 100%;
  }
}
@media screen and (max-width: 767px) {
  .section_home li {
    flex: 0 50%;
    max-width: 50%;
    margin-top: 0;
    padding: 0 5px 0;
    margin-bottom: 10px;
  }
  .section_home li .img_inner {
    flex: 0 100%;
    max-width: 100%;
  }
  .section_home li .img_inner:before {
    display: block;
    content: "";
    padding-bottom: 100%;
  }
}

.top_block {
  display: flex;
  align-items: end;
  justify-content: space-between;
  margin-bottom: 40px;
}
.top_block .page_title {
  padding-right: 10px;
}
@media screen and (max-width: 959px) {
  .top_block {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    margin-bottom: 20px;
  }
  .top_block .sub_title {
    margin-left: 0;
    text-align: center;
    margin-top: 10px;
  }
}

.sub_title {
  margin-left: auto;
}

.list_block {
  position: relative;
}
.list_block:hover {
  transition: all 0.9s;
}
.list_block:hover .list_info {
  transition: all 0.5s;
  height: 100%;
  padding-top: 87px;
}
.list_block:hover .section_title {
  transition: all 0.5s;
  position: relative;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 6;
  -webkit-box-orient: vertical;
}
.list_block:hover .btn_project {
  background: #FFC55D;
  color: #282828;
  transition: all 0.5s;
}
.list_block:hover .arrow_btn {
  transition: all 0.5s;
  opacity: 1;
  overflow: unset;
  pointer-events: auto;
  height: 53px;
  margin-top: 100px;
}
@media screen and (max-width: 959px) {
  .list_block:hover .arrow_btn {
    height: 40px;
    margin-top: 50px;
  }
}

.list_info {
  transition: all 0.5s;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 200px;
  background: rgba(51, 51, 51, 0.6);
  -webkit-backdrop-filter: blur(3px);
  backdrop-filter: blur(3px);
  padding: 30px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.arrow_btn {
  width: 53px;
  height: 0;
  border-radius: 50%;
  font-size: 200%;
  border: 1px solid #ffffff;
  background: transparent;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  overflow: hidden;
  pointer-events: none;
  transition: all 0.5s;
}
.projects_list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: 0 -10px;
}
.projects_list li {
  flex: 0 0 33.3333333333%;
  max-width: 33.3333333333%;
  padding: 0 10px;
  margin-bottom: 20px;
}
.projects_list .img_block {
  position: relative;
  overflow: hidden;
}
.projects_list .img_block:before {
  display: block;
  content: "";
  padding-bottom: 136.7%;
}
.projects_list .section_title {
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 6px;
  transition: all 0.5s;
  position: relative;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}
.projects_list .block_description {
  text-align: center;
  position: relative;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.btn_project {
  padding: 10px 20px;
  border: 1px solid #FCB535;
  background: transparent;
  color: #FCB535;
  font-size: 120%;
  line-height: 14px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  margin: 14px auto 10px;
  min-width: 149px;
  transition: all 0.5s;
}

@media screen and (max-width: 959px) {
  .list_info {
    padding: 15px;
    justify-content: center;
  }

  .arrow_btn {
    width: 40px;
    font-size: 140%;
  }

  .projects_list li {
    flex: 0 0 50%;
    max-width: 50%;
  }
}
@media screen and (max-width: 599px) {
  .projects_list li {
    flex: 0 0 100%;
    max-width: 100%;
  }
}
.touch .list_block {
  position: relative;
}
.touch .list_block:active {
  transition: all 0.9s;
}
.touch .list_block:active .list_info {
  transition: all 0.5s;
  height: 100%;
  padding-top: 100px;
}
.touch .list_block:active .btn_project {
  background: #FFC55D;
  color: #282828;
  transition: all 0.5s;
}
.touch .list_block:active .arrow_btn {
  transition: all 0.5s;
  opacity: 1;
  overflow: unset;
  pointer-events: auto;
  height: 53px;
  margin-top: 100px;
}
@media screen and (max-width: 959px) {
  .touch .list_block:active .arrow_btn {
    height: 40px;
    margin-top: 50px;
  }
}

.hero_video_banner {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 500px;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.hero_video_bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero_video_iframe_wrap {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none !important;
}
.hero_video_iframe_wrap iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100vw;
  height: 56.25vw;
  min-height: 100vh;
  min-width: 177.78vh;
  transform: translate(-50%, -50%) scale(1.5);
  pointer-events: none !important;
  border: 0;
}

.hero_video_element {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  pointer-events: none;
}

.hero_video_fallback {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

.hero_video_overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: auto !important;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.35) 0%, rgba(0, 0, 0, 0.5) 50%, rgba(0, 0, 0, 0.7) 100%);
}

.hero_video_content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding-top: 120px;
}

.hero_video_inner {
  max-width: 860px;
}

.hero_video_title {
  margin: 0 0 20px;
  font-weight: 400;
  color: #ffffff;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.45);
  -webkit-animation: heroFadeUp 1s ease 0.2s both;
          animation: heroFadeUp 1s ease 0.2s both;
}
@media screen and (min-width: 1440px) {
  .hero_video_title {
    font-size: 600%;
    line-height: 1.1;
  }
}
@media screen and (min-width: 1200px) and (max-width: 1439px) {
  .hero_video_title {
    font-size: 520%;
    line-height: 1.1;
  }
}
@media screen and (min-width: 960px) and (max-width: 1199px) {
  .hero_video_title {
    font-size: 440%;
    line-height: 1.15;
  }
}
@media screen and (min-width: 768px) and (max-width: 959px) {
  .hero_video_title {
    font-size: 360%;
    line-height: 1.2;
  }
}
@media screen and (min-width: 576px) and (max-width: 767px) {
  .hero_video_title {
    font-size: 300%;
    line-height: 1.2;
  }
}
@media screen and (max-width: 575px) {
  .hero_video_title {
    font-size: 240%;
    line-height: 1.25;
  }
}

.hero_video_description {
  font-size: 160%;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.88);
  margin-bottom: 36px;
  max-width: 560px;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.4);
  -webkit-animation: heroFadeUp 1s ease 0.45s both;
          animation: heroFadeUp 1s ease 0.45s both;
}
@media screen and (max-width: 767px) {
  .hero_video_description {
    font-size: 140%;
    margin-bottom: 24px;
  }
}

.hero_video_btn {
  display: inline-block;
  padding: 16px 48px;
  background: #FCB535;
  color: #282828;
  font-size: 120%;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border: none;
  -webkit-animation: heroFadeUp 1s ease 0.7s both;
          animation: heroFadeUp 1s ease 0.7s both;
}
@media screen and (max-width: 575px) {
  .hero_video_btn {
    padding: 13px 32px;
  }
}

.hero_scroll_indicator {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero_scroll_line {
  width: 1px;
  height: 60px;
  background: rgba(255, 255, 255, 0.6);
  position: relative;
  overflow: hidden;
}
.hero_scroll_line::after {
  content: "";
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: #FCB535;
  -webkit-animation: scrollLine 1.8s ease-in-out infinite;
          animation: scrollLine 1.8s ease-in-out infinite;
}

@-webkit-keyframes heroFadeUp {
  from {
    opacity: 0;
    transform: translate3d(0, 30px, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes heroFadeUp {
  from {
    opacity: 0;
    transform: translate3d(0, 30px, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
@-webkit-keyframes scrollLine {
  0% {
    top: -100%;
  }
  100% {
    top: 100%;
  }
}
@keyframes scrollLine {
  0% {
    top: -100%;
  }
  100% {
    top: 100%;
  }
}
@media screen and (max-width: 767px) {
  .hero_video_banner {
    height: 100svh;
    min-height: 400px;
  }

  .hero_video_content {
    padding-top: 80px;
  }

  .hero_scroll_indicator {
    display: none;
  }
}
.header--transparent {
  position: fixed !important;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200 !important;
  background: transparent !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  box-shadow: none !important;
  border-bottom: 1px solid rgba(252, 181, 53, 0.25) !important;
  transition: background 0.5s ease, backdrop-filter 0.5s ease, -webkit-backdrop-filter 0.5s ease, box-shadow 0.5s ease, border-color 0.5s ease;
}
.header--transparent.header--scrolled {
  background: rgba(20, 20, 20, 0.55) !important;
  -webkit-backdrop-filter: blur(18px) saturate(180%) !important;
  backdrop-filter: blur(18px) saturate(180%) !important;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.25) !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
}

.displayNone {
  display: none;
}

.displayBlock {
  display: block !important;
}

.paging a {
  cursor: pointer;
}

.subscribe_success, .subscribe_error {
  display: none;
  font-size: 12px;
}

.link_style {
  cursor: pointer;
}

.color-green {
  color: green !important;
}

.error-message {
  font-size: 140%;
}

.subscribe_success, .contact_success, .msg_success {
  /*color: green;*/
  color: white;
  font-size: 140%;
}

.subscribe_error, .msg_error, .contact_error {
  color: red;
}

.text_block p:first-child {
  margin: unset;
}

.vaccine_ul p {
  margin: unset;
}

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

.grecaptcha-badge {
  z-index: 99999;
}

.tag-selected {
  font-size: 16px;
}

.page_description p {
  padding: unset;
  /*margin: unset;*/
  margin: 0;
}

.reservation_validate_btn {
  background: #FCB535;
  border: none;
  margin-top: 30px;
  padding: 17px 20px;
  color: #282828;
  font-size: 120%;
  line-height: 14px;
  text-align: center;
  display: block;
  text-transform: uppercase;
  width: 100%;
}

.vue-range-slider.slider-component .slider .slider-process {
  background-color: #fcb535 !important;
}

/*to be transformed to front and remove*/
.internal_page .svg_block .svg_inner svg .free {
  fill: green !important;
}

.internal_page .svg_block .svg_inner svg .fixed, .internal_page .svg_block .svg_inner svg .purchased {
  pointer-events: unset !important;
}

/*to be transformed to front and remove*/
.marginTop100 {
  margin-top: 100px !important;
}

.homes_filter .switch_buttons, .homes_filter .filter_buttons {
  margin-top: 23px !important;
}

.header .lg_list {
  margin-top: 13px !important;
  padding: 10px 7px !important;
}

.listing_list > li {
  opacity: 1 !important;
}

.btn_home {
  cursor: pointer;
}

.listing_list .complex_info li.square_area {
  margin-top: -6px;
}

․clean_filter {
  cursor: pointer !important;
}

#st-1 {
  z-index: 1 !important;
}

.listing_list .info_price li:first-child {
  text-align: left;
  width: 50%;
}
.listing_list .info_price li:first-child .price {
  text-align: left;
}
.listing_list .info_price li:last-child {
  width: 50%;
  text-align: right;
}

/* .contact_validate_button.is-loading {
    position: relative;
    pointer-events: none;
    opacity: 0.8;
}

.contact_validate_button.is-loading::after {
    content: "";
    position: absolute;
    right: 10px;              
    top: 50%;
    width: 16px;
    height: 16px;
    margin-top: -8px;
    border-radius: 50%;
    border: 2px solid #fff;   
    border-top-color: transparent;
    animation: btn-spinner 0.6s linear infinite;
}
 */
@-webkit-keyframes btn-spinner {
  to {
    transform: rotate(360deg);
  }
}
@keyframes btn-spinner {
  to {
    transform: rotate(360deg);
  }
}
.web .presentation_content .popup_description a, .presentation_content .popup_description .web a,
.web .reservation_content .popup_description a,
.reservation_content .popup_description .web a, .web .header .main_logo a, .header .main_logo .web a, .web .images_section .images_slider a.slide_inner, .images_section .images_slider .web a.slide_inner, .footer {
  transition: opacity 0.3s;
}

.web .paging a, .paging .web a, .web .popup_close, .web .homes_filter .clean_filter, .homes_filter .web .clean_filter, .web .presentation_content.presentation_content .list_pdf a, .presentation_content.presentation_content .list_pdf .web a, .web .breadcrumbs a, .breadcrumbs .web a, .web .header .lg_list a, .header .lg_list .web a, .web .header .lg_btn, .header .web .lg_btn, .web .header .main_menu > li > a, .header .web .main_menu > li > a, .web .header .catalog_bnt, .header .web .catalog_bnt, .web .header .catalog_list li a, .header .catalog_list li .web a, .web .footer_info a, .footer_info .web a, .web .footer_menu li a, .footer_menu li .web a, .web .copyright a, .copyright .web a, .web .homes_filter .switch_buttons li a, .homes_filter .switch_buttons li .web a,
.web .homes_filter .filter_buttons li a,
.homes_filter .filter_buttons li .web a, .web .homes_filter .tab_buttons li a, .homes_filter .tab_buttons li .web a, .web .address_btn, .web .contact_info a, .contact_info .web a, .web .home_section .home_buttons li a, .home_section .home_buttons li .web a {
  transition: color 0.3s;
}

.web .btn_project, .web .presentation_content .validate_btn, .presentation_content .web .validate_btn,
.web .reservation_content .validate_btn,
.reservation_content .web .validate_btn, .web .news_section .all_category, .news_section .web .all_category, .web .homes_filter .slick-dots button, .homes_filter .slick-dots .web button, .web .homes_filter .btn_home, .homes_filter .web .btn_home, .web .contact_form .btn_block button, .contact_form .btn_block .web button, .web .main_slider .slick-dots button, .main_slider .slick-dots .web button, .web .main_slider .slider_btn, .main_slider .web .slider_btn, .web .hero_video_btn {
  transition: background-color 0.3s;
}

.web .news_section .slick-arrow:hover:before, .news_section .web .slick-arrow:hover:before, .web .homes_filter .slick-arrow:hover:before, .homes_filter .web .slick-arrow:hover:before, .web .main_slider .slick-arrow:hover:before, .main_slider .web .slick-arrow:hover:before, .web .arrow_btn:hover:before, .web .news_section .slick-arrow, .news_section .web .slick-arrow, .web .homes_filter .slick-arrow, .homes_filter .web .slick-arrow, .web .main_slider .slick-arrow, .main_slider .web .slick-arrow, .web .arrow_btn, .presentation_content.presentation_content .list_pdf a, .error_hint, .images_section .video_btn:after, .images_section .video_btn:before, .news_section .video_tab .news_block:after, .news_section .video_tab .news_block:before, .select2-container .select2-results__options li, .contact_form .field_block input,
.contact_form .field_block textarea, .arrow_btn:before {
  transition: all 0.3s;
}

.touch .presentation_content .popup_description a, .presentation_content .popup_description .touch a,
.touch .reservation_content .popup_description a,
.reservation_content .popup_description .touch a, .touch .header .main_logo a, .header .main_logo .touch a, .touch .images_section .images_slider a.slide_inner, .images_section .images_slider .touch a.slide_inner {
  transition: opacity 0.15s;
}

.touch .paging a, .paging .touch a, .touch .popup_close, .touch .homes_filter .clean_filter, .homes_filter .touch .clean_filter, .touch .presentation_content.presentation_content .list_pdf a, .presentation_content.presentation_content .list_pdf .touch a, .touch .header .lg_list a, .header .lg_list .touch a, .touch .header .lg_btn, .header .touch .lg_btn, .touch .copyright a, .copyright .touch a, .touch .contact_info a, .contact_info .touch a {
  transition: color 0.15s;
}

.touch .presentation_content .validate_btn, .presentation_content .touch .validate_btn,
.touch .reservation_content .validate_btn,
.reservation_content .touch .validate_btn {
  transition: background-color 0.15s;
}

.web .presentation_content.presentation_content .list_pdf a:hover, .presentation_content.presentation_content .list_pdf .web a:hover, .web .breadcrumbs a:hover, .breadcrumbs .web a:hover, .web .header .lg_list a:hover, .header .lg_list .web a:hover, .web .header .lg_btn:hover, .header .web .lg_btn:hover, .web .header .main_menu > li > a:hover, .header .web .main_menu > li > a:hover, .web .header .catalog_bnt:hover, .header .web .catalog_bnt:hover, .web .header .catalog_list li a:hover, .header .catalog_list li .web a:hover, .web .footer_info a:hover, .footer_info .web a:hover, .web .footer_menu li a:hover, .footer_menu li .web a:hover, .web .copyright a:hover, .copyright .web a:hover, .web .homes_filter .switch_buttons li a:hover, .homes_filter .switch_buttons li .web a:hover,
.web .homes_filter .filter_buttons li a:hover,
.homes_filter .filter_buttons li .web a:hover, .web .homes_filter .tab_buttons li a:hover, .homes_filter .tab_buttons li .web a:hover, .web .address_btn:hover, .web .contact_info a:hover, .contact_info .web a:hover, .web .home_section .home_buttons li a:hover, .home_section .home_buttons li .web a:hover {
  color: #FCB535;
}
.web .presentation_content.presentation_content .list_pdf a:hover span, .presentation_content.presentation_content .list_pdf .web a:hover span, .web .breadcrumbs a:hover span, .breadcrumbs .web a:hover span, .web .header .lg_list a:hover span, .header .lg_list .web a:hover span, .web .header .lg_btn:hover span, .header .web .lg_btn:hover span, .web .header .main_menu > li > a:hover span, .header .web .main_menu > li > a:hover span, .web .header .catalog_bnt:hover span, .header .web .catalog_bnt:hover span, .web .header .catalog_list li a:hover span, .header .catalog_list li .web a:hover span, .web .footer_info a:hover span, .footer_info .web a:hover span, .web .footer_menu li a:hover span, .footer_menu li .web a:hover span, .web .copyright a:hover span, .copyright .web a:hover span, .web .homes_filter .switch_buttons li a:hover span, .homes_filter .switch_buttons li .web a:hover span,
.web .homes_filter .filter_buttons li a:hover span,
.homes_filter .filter_buttons li .web a:hover span, .web .homes_filter .tab_buttons li a:hover span, .homes_filter .tab_buttons li .web a:hover span, .web .address_btn:hover span, .web .contact_info a:hover span, .contact_info .web a:hover span, .web .home_section .home_buttons li a:hover span, .home_section .home_buttons li .web a:hover span {
  color: #FCB535;
}
.web .presentation_content .validate_btn:hover, .presentation_content .web .validate_btn:hover,
.web .reservation_content .validate_btn:hover,
.reservation_content .web .validate_btn:hover, .web .news_section .all_category:hover, .news_section .web .all_category:hover, .web .homes_filter .slick-dots button:hover, .homes_filter .slick-dots .web button:hover, .web .homes_filter .btn_home:hover, .homes_filter .web .btn_home:hover, .web .contact_form .btn_block button:hover, .contact_form .btn_block .web button:hover, .web .main_slider .slick-dots button:hover, .main_slider .slick-dots .web button:hover, .web .main_slider .slider_btn:hover, .main_slider .web .slider_btn:hover, .web .hero_video_btn:hover {
  background: #EC9800;
}
.web .homes_filter .clean_filter:hover, .homes_filter .web .clean_filter:hover {
  color: rgba(252, 181, 53, 0.7);
}
.web .btn_project:hover {
  background: #FCB535;
}
.web .presentation_content .popup_description a:hover, .presentation_content .popup_description .web a:hover,
.web .reservation_content .popup_description a:hover,
.reservation_content .popup_description .web a:hover, .web .header .main_logo a:hover, .header .main_logo .web a:hover, .web .images_section .images_slider a.slide_inner:hover, .images_section .images_slider .web a.slide_inner:hover {
  opacity: 0.7;
}
.web .news_section .slick-arrow:hover, .news_section .web .slick-arrow:hover, .web .homes_filter .slick-arrow:hover, .homes_filter .web .slick-arrow:hover, .web .main_slider .slick-arrow:hover, .main_slider .web .slick-arrow:hover, .web .arrow_btn:hover {
  background: transparent;
  border-color: #FCB535;
}
.web .news_section .slick-arrow:hover:before, .news_section .web .slick-arrow:hover:before, .web .homes_filter .slick-arrow:hover:before, .homes_filter .web .slick-arrow:hover:before, .web .main_slider .slick-arrow:hover:before, .main_slider .web .slick-arrow:hover:before, .web .arrow_btn:hover:before {
  color: #FCB535;
}
.web .popup_close:hover {
  color: #000000;
}
.web .paging a:hover, .paging .web a:hover {
  background: #4D4D4D;
}
.touch .presentation_content.presentation_content .list_pdf a:active, .presentation_content.presentation_content .list_pdf .touch a:active, .touch .header .lg_list a:active, .header .lg_list .touch a:active, .touch .header .lg_btn:active, .header .touch .lg_btn:active, .touch .copyright a:active, .copyright .touch a:active, .touch .contact_info a:active, .contact_info .touch a:active {
  color: #FCB535;
}
.touch .presentation_content.presentation_content .list_pdf a:active span, .presentation_content.presentation_content .list_pdf .touch a:active span, .touch .header .lg_list a:active span, .header .lg_list .touch a:active span, .touch .header .lg_btn:active span, .header .touch .lg_btn:active span, .touch .copyright a:active span, .copyright .touch a:active span, .touch .contact_info a:active span, .contact_info .touch a:active span {
  color: #FCB535;
}
.touch .presentation_content .validate_btn:active, .presentation_content .touch .validate_btn:active,
.touch .reservation_content .validate_btn:active,
.reservation_content .touch .validate_btn:active {
  background: #ffffff;
}
.touch .homes_filter .clean_filter:active, .homes_filter .touch .clean_filter:active {
  color: rgba(252, 181, 53, 0.7);
}
.touch .presentation_content .popup_description a:active, .presentation_content .popup_description .touch a:active,
.touch .reservation_content .popup_description a:active,
.reservation_content .popup_description .touch a:active, .touch .header .main_logo a:active, .header .main_logo .touch a:active, .touch .images_section .images_slider a.slide_inner:active, .images_section .images_slider .touch a.slide_inner:active {
  opacity: 0.7;
}
.touch .popup_close:active {
  color: #000000;
}
.touch .paging a:active, .paging .touch a:active {
  color: #000000;
}
.whatsapp_float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: linear-gradient(135deg, #eed8a1 0%, #d6ba81 100%);
  color: #FFF;
  border-radius: 50%;
  width: 65px;
  height: 65px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  transition: transform 0.3s ease;
}
.whatsapp_float:before {
  content: "";
  position: absolute;
  top: -10px;
  left: -10px;
  right: -10px;
  bottom: -10px;
  border-radius: 50%;
  background-color: rgba(214, 186, 129, 0.5);
  z-index: -1;
  -webkit-animation: whatsapp-pulse 2s infinite cubic-bezier(0.215, 0.61, 0.355, 1);
          animation: whatsapp-pulse 2s infinite cubic-bezier(0.215, 0.61, 0.355, 1);
}
.whatsapp_float svg {
  fill: white;
  width: 32px;
  height: 32px;
}
.whatsapp_float:hover, .whatsapp_float:focus {
  transform: scale(1.05);
  color: white;
}

@-webkit-keyframes whatsapp-pulse {
  0% {
    transform: scale(0.7);
    opacity: 0.8;
  }
  100% {
    transform: scale(1.3);
    opacity: 0;
  }
}

@keyframes whatsapp-pulse {
  0% {
    transform: scale(0.7);
    opacity: 0.8;
  }
  100% {
    transform: scale(1.3);
    opacity: 0;
  }
}
