@charset "UTF-8";
.future ul li .number p:after, .index .main-slider .slick-dots li button:after, .yellow-block:after, .popup-floor .container-fluid .popup-floor-info .popup-floor-text ul li:after, .popup-floor .container-fluid .popup-floor-info .popup-floor-text .title:after, .popup-floor .pagination .btn:after, .slider-floor .pagination .btn:after, .slider-floor .img .plans li .info:after, .select-floor .select-content .info-btn .select-floor-hint .icon-hint:after, .select-floor .animation-select-floor .info:after, .popup .popup-container .close-popup:after, .popup .popup-container .close-popup:before, .video-container .img-block .play-video:before, .video-container .img-block .play-video:after, .styled-checkbox label .checkmark:after, .styled-checkbox label .checkmark:before, .form:after, .input-style .bar:before, .input-style .bar:after, .orange-fon:after, .info-contacts.bg-orange-contacts:after, .info-contacts.bg-orange-contacts:before, .description .description-info ul:after, .description .description-info:before, .features li .number:after, .img-big:before, .img-big:after, .text-container.type-5 .img:before, .text-container.type-4 .img:before, .text-container.type-3:after, .text-container.type-2 .text:after, header .menu ul li:after, .main-big-block:after, .main-btn:after, .main-btn-input:after {
  position: absolute;
  content: "";
}

.flex-center {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}

.flex-end {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: flex-end;
  align-items: flex-end;
}

.space-between {
  width: 100%;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-align-items: center;
  align-items: center;
}

.info-contacts.bg-orange-contacts ul li, header .space-between {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-align-items: center;
  align-items: center;
}

.features li, .features, .text-container, .main-title .sub-title, .main-title {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}

/*! PhotoSwipe main CSS by Dmitry Semenov | photoswipe.com | MIT license */
/*
	Styles for basic PhotoSwipe functionality (sliding area, open/close transitions)
*/
/* pswp = photoswipe */
.pswp {
  display: none;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  overflow: hidden;
  -ms-touch-action: none;
  touch-action: none;
  z-index: 1500;
  -webkit-text-size-adjust: 100%;
  /* create separate layer, to avoid paint on window.onscroll in webkit/blink */
  -webkit-backface-visibility: hidden;
  outline: none;
}

.pswp * {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.pswp img {
  max-width: none;
}

/* style is added when JS option showHideOpacity is set to true */
.pswp--animate_opacity {
  /* 0.001, because opacity:0 doesn't trigger Paint action, which causes lag at start of transition */
  opacity: 0.001;
  will-change: opacity;
  /* for open/close transition */
  -webkit-transition: opacity 333ms cubic-bezier(0.4, 0, 0.22, 1);
  transition: opacity 333ms cubic-bezier(0.4, 0, 0.22, 1);
}

.pswp--open {
  display: block;
}

.pswp--zoom-allowed .pswp__img {
  /* autoprefixer: off */
  cursor: -webkit-zoom-in;
  cursor: -moz-zoom-in;
  cursor: zoom-in;
}

.pswp--zoomed-in .pswp__img {
  /* autoprefixer: off */
  cursor: -webkit-grab;
  cursor: -moz-grab;
  cursor: grab;
}

.pswp--dragging .pswp__img {
  /* autoprefixer: off */
  cursor: -webkit-grabbing;
  cursor: -moz-grabbing;
  cursor: grabbing;
}

/*
	Background is added as a separate element.
	As animating opacity is much faster than animating rgba() background-color.
*/
.pswp__bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: 0;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-backface-visibility: hidden;
  will-change: opacity;
}

.pswp__scroll-wrap {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.pswp__container,
.pswp__zoom-wrap {
  -ms-touch-action: none;
  touch-action: none;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
}

/* Prevent selection and tap highlights */
.pswp__container,
.pswp__img {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
}

.pswp__zoom-wrap {
  position: absolute;
  width: 100%;
  -webkit-transform-origin: left top;
  -ms-transform-origin: left top;
  transform-origin: left top;
  /* for open/close transition */
  -webkit-transition: -webkit-transform 333ms cubic-bezier(0.4, 0, 0.22, 1);
  transition: transform 333ms cubic-bezier(0.4, 0, 0.22, 1);
}

.pswp__bg {
  will-change: opacity;
  /* for open/close transition */
  -webkit-transition: opacity 333ms cubic-bezier(0.4, 0, 0.22, 1);
  transition: opacity 333ms cubic-bezier(0.4, 0, 0.22, 1);
}

.pswp--animated-in .pswp__bg,
.pswp--animated-in .pswp__zoom-wrap {
  -webkit-transition: none;
  transition: none;
}

.pswp__container,
.pswp__zoom-wrap {
  -webkit-backface-visibility: hidden;
}

.pswp__item {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  overflow: hidden;
}

.pswp__img {
  position: absolute;
  width: auto;
  height: auto;
  top: 0;
  left: 0;
}

/*
	stretched thumbnail or div placeholder element (see below)
	style is added to avoid flickering in webkit/blink when layers overlap
*/
.pswp__img--placeholder {
  -webkit-backface-visibility: hidden;
}

/*
	div element that matches size of large image
	large image loads on top of it
*/
.pswp__img--placeholder--blank {
  background: #222;
}

.pswp--ie .pswp__img {
  width: 100% !important;
  height: auto !important;
  left: 0;
  top: 0;
}

/*
	Error message appears when image is not loaded
	(JS option errorMsg controls markup)
*/
.pswp__error-msg {
  position: absolute;
  left: 0;
  top: 50%;
  width: 100%;
  text-align: center;
  font-size: 14px;
  line-height: 16px;
  margin-top: -8px;
  color: #CCC;
}

.pswp__error-msg a {
  color: #CCC;
  text-decoration: underline;
}

/*! PhotoSwipe Default UI CSS by Dmitry Semenov | photoswipe.com | MIT license */
/*

	Contents:

	1. Buttons
	2. Share modal and links
	3. Index indicator ("1 of X" counter)
	4. Caption
	5. Loading indicator
	6. Additional styles (root element, top bar, idle state, hidden state, etc.)

*/
/*

	1. Buttons

 */
/* <button> css reset */
.pswp__button {
  width: 44px;
  height: 44px;
  position: relative;
  background: none;
  cursor: pointer;
  overflow: visible;
  -webkit-appearance: none;
  display: block;
  border: 0;
  padding: 0;
  margin: 0;
  float: right;
  opacity: 0.75;
  -webkit-transition: opacity 0.2s;
  transition: opacity 0.2s;
  -webkit-box-shadow: none;
  box-shadow: none;
}

.pswp__button:focus, .pswp__button:hover {
  opacity: 1;
}

.pswp__button:active {
  outline: none;
  opacity: 0.9;
}

.pswp__button::-moz-focus-inner {
  padding: 0;
  border: 0;
}

/* pswp__ui--over-close class it added when mouse is over element that should close gallery */
.pswp__ui--over-close .pswp__button--close {
  opacity: 1;
}

.pswp__button,
.pswp__button--arrow--left:before,
.pswp__button--arrow--right:before {
  background: url(default-skin.png) 0 0 no-repeat;
  background-size: 264px 88px;
  width: 44px;
  height: 44px;
}

@media (-webkit-min-device-pixel-ratio: 1.1), (-webkit-min-device-pixel-ratio: 1.09375), (min-resolution: 105dpi), (min-resolution: 1.1dppx) {
  /* Serve SVG sprite if browser supports SVG and resolution is more than 105dpi */
  .pswp--svg .pswp__button,
.pswp--svg .pswp__button--arrow--left:before,
.pswp--svg .pswp__button--arrow--right:before {
    background-image: url(default-skin.svg);
  }

  .pswp--svg .pswp__button--arrow--left,
.pswp--svg .pswp__button--arrow--right {
    background: none;
  }
}
.pswp__button--close {
  background-position: 0 -44px;
}

.pswp__button--share {
  background-position: -44px -44px;
}

.pswp__button--fs {
  display: none;
}

.pswp--supports-fs .pswp__button--fs {
  display: block;
}

.pswp--fs .pswp__button--fs {
  background-position: -44px 0;
}

.pswp__button--zoom {
  display: none;
  background-position: -88px 0;
}

.pswp--zoom-allowed .pswp__button--zoom {
  display: block;
}

.pswp--zoomed-in .pswp__button--zoom {
  background-position: -132px 0;
}

/* no arrows on touch screens */
.pswp--touch .pswp__button--arrow--left,
.pswp--touch .pswp__button--arrow--right {
  visibility: hidden;
}

/*
	Arrow buttons hit area
	(icon is added to :before pseudo-element)
*/
.pswp__button--arrow--left,
.pswp__button--arrow--right {
  background: none;
  top: 50%;
  margin-top: -50px;
  width: 70px;
  height: 100px;
  position: absolute;
}

.pswp__button--arrow--left {
  left: 0;
}

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

.pswp__button--arrow--left:before,
.pswp__button--arrow--right:before {
  content: "";
  top: 35px;
  background-color: rgba(0, 0, 0, 0.3);
  height: 30px;
  width: 32px;
  position: absolute;
}

.pswp__button--arrow--left:before {
  left: 6px;
  background-position: -138px -44px;
}

.pswp__button--arrow--right:before {
  right: 6px;
  background-position: -94px -44px;
}

/*

	2. Share modal/popup and links

 */
.pswp__counter,
.pswp__share-modal {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.pswp__share-modal {
  display: block;
  background: rgba(0, 0, 0, 0.5);
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  padding: 10px;
  position: absolute;
  z-index: 1600;
  opacity: 0;
  -webkit-transition: opacity 0.25s ease-out;
  transition: opacity 0.25s ease-out;
  -webkit-backface-visibility: hidden;
  will-change: opacity;
}

.pswp__share-modal--hidden {
  display: none;
}

.pswp__share-tooltip {
  z-index: 1620;
  position: absolute;
  background: #FFF;
  top: 56px;
  border-radius: 2px;
  display: block;
  width: auto;
  right: 44px;
  -webkit-box-shadow: 0 2px 5px rgba(0, 0, 0, 0.25);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.25);
  -webkit-transform: translateY(6px);
  -ms-transform: translateY(6px);
  transform: translateY(6px);
  -webkit-transition: -webkit-transform 0.25s;
  transition: transform 0.25s;
  -webkit-backface-visibility: hidden;
  will-change: transform;
}

.pswp__share-tooltip a {
  display: block;
  padding: 8px 12px;
  color: #000;
  text-decoration: none;
  font-size: 14px;
  line-height: 18px;
}

.pswp__share-tooltip a:hover {
  text-decoration: none;
  color: #000;
}

.pswp__share-tooltip a:first-child {
  /* round corners on the first/last list item */
  border-radius: 2px 2px 0 0;
}

.pswp__share-tooltip a:last-child {
  border-radius: 0 0 2px 2px;
}

.pswp__share-modal--fade-in {
  opacity: 1;
}

.pswp__share-modal--fade-in .pswp__share-tooltip {
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
}

/* increase size of share links on touch devices */
.pswp--touch .pswp__share-tooltip a {
  padding: 16px 12px;
}

a.pswp__share--facebook:before {
  content: "";
  display: block;
  width: 0;
  height: 0;
  position: absolute;
  top: -12px;
  right: 15px;
  border: 6px solid transparent;
  border-bottom-color: #FFF;
  -webkit-pointer-events: none;
  -moz-pointer-events: none;
  pointer-events: none;
}

a.pswp__share--facebook:hover {
  background: #3E5C9A;
  color: #FFF;
}

a.pswp__share--facebook:hover:before {
  border-bottom-color: #3E5C9A;
}

a.pswp__share--twitter:hover {
  background: #55ACEE;
  color: #FFF;
}

a.pswp__share--pinterest:hover {
  background: #CCC;
  color: #CE272D;
}

a.pswp__share--download:hover {
  background: #DDD;
}

/*

	3. Index indicator ("1 of X" counter)

 */
.pswp__counter {
  position: absolute;
  left: 0;
  top: 0;
  height: 44px;
  font-size: 13px;
  line-height: 44px;
  color: #FFF;
  opacity: 0.75;
  padding: 0 10px;
}

/*

	4. Caption

 */
.pswp__caption {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  min-height: 44px;
}

.pswp__caption small {
  font-size: 11px;
  color: #BBB;
}

.pswp__caption__center {
  text-align: left;
  max-width: 420px;
  margin: 0 auto;
  font-size: 13px;
  padding: 10px;
  line-height: 20px;
  color: #CCC;
}

.pswp__caption--empty {
  display: none;
}

/* Fake caption element, used to calculate height of next/prev image */
.pswp__caption--fake {
  visibility: hidden;
}

/*

	5. Loading indicator (preloader)

	You can play with it here - http://codepen.io/dimsemenov/pen/yyBWoR

 */
.pswp__preloader {
  width: 44px;
  height: 44px;
  position: absolute;
  top: 0;
  left: 50%;
  margin-left: -22px;
  opacity: 0;
  -webkit-transition: opacity 0.25s ease-out;
  transition: opacity 0.25s ease-out;
  will-change: opacity;
  direction: ltr;
}

.pswp__preloader__icn {
  width: 20px;
  height: 20px;
  margin: 12px;
}

.pswp__preloader--active {
  opacity: 1;
}

.pswp__preloader--active .pswp__preloader__icn {
  /* We use .gif in browsers that don't support CSS animation */
  background: url(preloader.gif) 0 0 no-repeat;
}

.pswp--css_animation .pswp__preloader--active {
  opacity: 1;
}

.pswp--css_animation .pswp__preloader--active .pswp__preloader__icn {
  -webkit-animation: clockwise 500ms linear infinite;
  animation: clockwise 500ms linear infinite;
}

.pswp--css_animation .pswp__preloader--active .pswp__preloader__donut {
  -webkit-animation: donut-rotate 1000ms cubic-bezier(0.4, 0, 0.22, 1) infinite;
  animation: donut-rotate 1000ms cubic-bezier(0.4, 0, 0.22, 1) infinite;
}

.pswp--css_animation .pswp__preloader__icn {
  background: none;
  opacity: 0.75;
  width: 14px;
  height: 14px;
  position: absolute;
  left: 15px;
  top: 15px;
  margin: 0;
}

.pswp--css_animation .pswp__preloader__cut {
  /*
  	The idea of animating inner circle is based on Polymer ("material") loading indicator
  	 by Keanu Lee https://blog.keanulee.com/2014/10/20/the-tale-of-three-spinners.html
  */
  position: relative;
  width: 7px;
  height: 14px;
  overflow: hidden;
}

.pswp--css_animation .pswp__preloader__donut {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: 14px;
  height: 14px;
  border: 2px solid #FFF;
  border-radius: 50%;
  border-left-color: transparent;
  border-bottom-color: transparent;
  position: absolute;
  top: 0;
  left: 0;
  background: none;
  margin: 0;
}

@media screen and (max-width: 1024px) {
  .pswp__preloader {
    position: relative;
    left: auto;
    top: auto;
    margin: 0;
    float: right;
  }
}
@-webkit-keyframes clockwise {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes clockwise {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@-webkit-keyframes donut-rotate {
  0% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }
  50% {
    -webkit-transform: rotate(-140deg);
    transform: rotate(-140deg);
  }
  100% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }
}
@keyframes donut-rotate {
  0% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }
  50% {
    -webkit-transform: rotate(-140deg);
    transform: rotate(-140deg);
  }
  100% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }
}
/*

	6. Additional styles

 */
/* root element of UI */
.pswp__ui {
  -webkit-font-smoothing: auto;
  visibility: visible;
  opacity: 1;
  z-index: 1550;
}

/* top black bar with buttons and "1 of X" indicator */
.pswp__top-bar {
  position: absolute;
  left: 0;
  top: 0;
  height: 44px;
  width: 100%;
}

.pswp__caption,
.pswp__top-bar,
.pswp--has_mouse .pswp__button--arrow--left,
.pswp--has_mouse .pswp__button--arrow--right {
  -webkit-backface-visibility: hidden;
  will-change: opacity;
  -webkit-transition: opacity 333ms cubic-bezier(0.4, 0, 0.22, 1);
  transition: opacity 333ms cubic-bezier(0.4, 0, 0.22, 1);
}

/* pswp--has_mouse class is added only when two subsequent mousemove events occur */
.pswp--has_mouse .pswp__button--arrow--left,
.pswp--has_mouse .pswp__button--arrow--right {
  visibility: visible;
}

.pswp__top-bar,
.pswp__caption {
  background-color: rgba(0, 0, 0, 0.5);
}

/* pswp__ui--fit class is added when main image "fits" between top bar and bottom bar (caption) */
.pswp__ui--fit .pswp__top-bar,
.pswp__ui--fit .pswp__caption {
  background-color: rgba(0, 0, 0, 0.3);
}

/* pswp__ui--idle class is added when mouse isn't moving for several seconds (JS option timeToIdle) */
.pswp__ui--idle .pswp__top-bar {
  opacity: 0;
}

.pswp__ui--idle .pswp__button--arrow--left,
.pswp__ui--idle .pswp__button--arrow--right {
  opacity: 0;
}

/*
	pswp__ui--hidden class is added when controls are hidden
	e.g. when user taps to toggle visibility of controls
*/
.pswp__ui--hidden .pswp__top-bar,
.pswp__ui--hidden .pswp__caption,
.pswp__ui--hidden .pswp__button--arrow--left,
.pswp__ui--hidden .pswp__button--arrow--right {
  /* Force paint & create composition layer for controls. */
  opacity: 0.001;
}

/* pswp__ui--one-slide class is added when there is just one item in gallery */
.pswp__ui--one-slide .pswp__button--arrow--left,
.pswp__ui--one-slide .pswp__button--arrow--right,
.pswp__ui--one-slide .pswp__counter {
  display: none;
}

.pswp__element--disabled {
  display: none !important;
}

.pswp--minimal--dark .pswp__top-bar {
  background: none;
}

@font-face {
  font-family: "TTFirsNeueDemiBold";
  src: url("yadro_font/TTFirsNeue-DemiBold.eot");
  src: local("TT Firs Neue DemiBold"), local("TTFirsNeue-DemiBold"), url("yadro_font/TTFirsNeue-DemiBold.eot?#iefix") format("embedded-opentype"), url("yadro_font/TTFirsNeue-DemiBold.woff2") format("woff2"), url("yadro_font/TTFirsNeue-DemiBold.woff") format("woff"), url("yadro_font/TTFirsNeue-DemiBold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
}
@font-face {
  font-family: "TTFirsNeueRegular";
  src: url("yadro_font/TTFirsNeue-Regular.eot");
  src: local("TT Firs Neue Regular"), local("TTFirsNeue-Regular"), url("yadro_font/TTFirsNeue-Regular.eot?#iefix") format("embedded-opentype"), url("yadro_font/TTFirsNeue-Regular.woff2") format("woff2"), url("yadro_font/TTFirsNeue-Regular.woff") format("woff"), url("yadro_font/TTFirsNeue-Regular.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "TTFirsNeueLight";
  src: url("yadro_font/TTFirsNeue-Light.eot");
  src: local("TT Firs Neue Light"), local("TTFirsNeue-Light"), url("yadro_font/TTFirsNeue-Light.eot?#iefix") format("embedded-opentype"), url("yadro_font/TTFirsNeue-Light.woff2") format("woff2"), url("yadro_font/TTFirsNeue-Light.woff") format("woff"), url("yadro_font/TTFirsNeue-Light.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
}
@font-face {
  font-family: "TTFirsNeueBoldItalic";
  src: url("yadro_font/TTFirsNeue-BoldItalic.eot");
  src: local("TT Firs Neue Bold Italic"), local("TTFirsNeue-BoldItalic"), url("yadro_font/TTFirsNeue-BoldItalic.eot?#iefix") format("embedded-opentype"), url("yadro_font/TTFirsNeue-BoldItalic.woff2") format("woff2"), url("yadro_font/TTFirsNeue-BoldItalic.woff") format("woff"), url("yadro_font/TTFirsNeue-BoldItalic.ttf") format("truetype");
  font-weight: bold;
  font-style: italic;
}
@font-face {
  font-family: "TTFirsNeueDemiBoldItalic";
  src: url("yadro_font/TTFirsNeue-DemiBoldItalic.eot");
  src: local("TT Firs Neue DemiBold Italic"), local("TTFirsNeue-DemiBoldItalic"), url("yadro_font/TTFirsNeue-DemiBoldItalic.eot?#iefix") format("embedded-opentype"), url("yadro_font/TTFirsNeue-DemiBoldItalic.woff2") format("woff2"), url("yadro_font/TTFirsNeue-DemiBoldItalic.woff") format("woff"), url("yadro_font/TTFirsNeue-DemiBoldItalic.ttf") format("truetype");
  font-weight: 600;
  font-style: italic;
}
@font-face {
  font-family: "TTFirsNeueExtraLight";
  src: url("yadro_font/TTFirsNeue-ExtraLight.eot");
  src: local("TT Firs Neue ExtraLight"), local("TTFirsNeue-ExtraLight"), url("yadro_font/TTFirsNeue-ExtraLight.eot?#iefix") format("embedded-opentype"), url("yadro_font/TTFirsNeue-ExtraLight.woff2") format("woff2"), url("yadro_font/TTFirsNeue-ExtraLight.woff") format("woff"), url("yadro_font/TTFirsNeue-ExtraLight.ttf") format("truetype");
  font-weight: 200;
  font-style: normal;
}
@font-face {
  font-family: "TTFirsNeueThinItalic";
  src: url("yadro_font/TTFirsNeue-ThinItalic.eot");
  src: local("TT Firs Neue Thin Italic"), local("TTFirsNeue-ThinItalic"), url("yadro_font/TTFirsNeue-ThinItalic.eot?#iefix") format("embedded-opentype"), url("yadro_font/TTFirsNeue-ThinItalic.woff2") format("woff2"), url("yadro_font/TTFirsNeue-ThinItalic.woff") format("woff"), url("yadro_font/TTFirsNeue-ThinItalic.ttf") format("truetype");
  font-weight: 100;
  font-style: italic;
}
@font-face {
  font-family: "TTFirsNeue";
  src: url("yadro_font/TTFirsNeue-MediumItalic.eot");
  src: local("TT Firs Neue Medium Italic"), local("TTFirsNeue-MediumItalic"), url("yadro_font/TTFirsNeue-MediumItalic.eot?#iefix") format("embedded-opentype"), url("yadro_font/TTFirsNeue-MediumItalic.woff2") format("woff2"), url("yadro_font/TTFirsNeue-MediumItalic.woff") format("woff"), url("yadro_font/TTFirsNeue-MediumItalic.ttf") format("truetype");
  font-weight: 500;
  font-style: italic;
}
@font-face {
  font-family: "TTFirsNeueBlackItalic";
  src: url("yadro_font/TTFirsNeue-BlackItalic.eot");
  src: local("TT Firs Neue Black Italic"), local("TTFirsNeue-BlackItalic"), url("yadro_font/TTFirsNeue-BlackItalic.eot?#iefix") format("embedded-opentype"), url("yadro_font/TTFirsNeue-BlackItalic.woff2") format("woff2"), url("yadro_font/TTFirsNeue-BlackItalic.woff") format("woff"), url("yadro_font/TTFirsNeue-BlackItalic.ttf") format("truetype");
  font-weight: 900;
  font-style: italic;
}
@font-face {
  font-family: "TTFirsNeueLightItalic";
  src: url("yadro_font/TTFirsNeue-LightItalic.eot");
  src: local("TT Firs Neue Light Italic"), local("TTFirsNeue-LightItalic"), url("yadro_font/TTFirsNeue-LightItalic.eot?#iefix") format("embedded-opentype"), url("yadro_font/TTFirsNeue-LightItalic.woff2") format("woff2"), url("yadro_font/TTFirsNeue-LightItalic.woff") format("woff"), url("yadro_font/TTFirsNeue-LightItalic.ttf") format("truetype");
  font-weight: 300;
  font-style: italic;
}
@font-face {
  font-family: "TTFirsNeueExtraLightItalic";
  src: url("yadro_font/TTFirsNeue-ExtraLightItalic.eot");
  src: local("TT Firs Neue ExtraLight Italic"), local("TTFirsNeue-ExtraLightItalic"), url("yadro_font/TTFirsNeue-ExtraLightItalic.eot?#iefix") format("embedded-opentype"), url("yadro_font/TTFirsNeue-ExtraLightItalic.woff2") format("woff2"), url("yadro_font/TTFirsNeue-ExtraLightItalic.woff") format("woff"), url("yadro_font/TTFirsNeue-ExtraLightItalic.ttf") format("truetype");
  font-weight: 200;
  font-style: italic;
}
@font-face {
  font-family: "TTFirsNeue";
  src: url("yadro_font/TTFirsNeue-Bold.eot");
  src: local("TT Firs Neue Bold"), local("TTFirsNeue-Bold"), url("yadro_font/TTFirsNeue-Bold.eot?#iefix") format("embedded-opentype"), url("yadro_font/TTFirsNeue-Bold.woff2") format("woff2"), url("yadro_font/TTFirsNeue-Bold.woff") format("woff"), url("yadro_font/TTFirsNeue-Bold.ttf") format("truetype");
  font-weight: bold;
  font-style: normal;
}
@font-face {
  font-family: "TTFirsNeue";
  src: url("yadro_font/TTFirsNeue-ExtraBold.eot");
  src: local("TT Firs Neue ExtraBold"), local("TTFirsNeue-ExtraBold"), url("yadro_font/TTFirsNeue-ExtraBold.eot?#iefix") format("embedded-opentype"), url("yadro_font/TTFirsNeue-ExtraBold.woff2") format("woff2"), url("yadro_font/TTFirsNeue-ExtraBold.woff") format("woff"), url("yadro_font/TTFirsNeue-ExtraBold.ttf") format("truetype");
  font-weight: 800;
  font-style: normal;
}
@font-face {
  font-family: "TTFirsNeue";
  src: url("yadro_font/TTFirsNeue-Medium.eot");
  src: local("TT Firs Neue Medium"), local("TTFirsNeue-Medium"), url("yadro_font/TTFirsNeue-Medium.eot?#iefix") format("embedded-opentype"), url("yadro_font/TTFirsNeue-Medium.woff2") format("woff2"), url("yadro_font/TTFirsNeue-Medium.woff") format("woff"), url("yadro_font/TTFirsNeue-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: "TTFirsNeue";
  src: url("yadro_font/TTFirsNeue-Thin.eot");
  src: local("TT Firs Neue Thin"), local("TTFirsNeue-Thin"), url("yadro_font/TTFirsNeue-Thin.eot?#iefix") format("embedded-opentype"), url("yadro_font/TTFirsNeue-Thin.woff2") format("woff2"), url("yadro_font/TTFirsNeue-Thin.woff") format("woff"), url("yadro_font/TTFirsNeue-Thin.ttf") format("truetype");
  font-weight: 100;
  font-style: normal;
}
@font-face {
  font-family: "TTFirsNeue";
  src: url("yadro_font/TTFirsNeue-ExtraBoldItalic.eot");
  src: local("TT Firs Neue ExtraBold Italic"), local("TTFirsNeue-ExtraBoldItalic"), url("yadro_font/TTFirsNeue-ExtraBoldItalic.eot?#iefix") format("embedded-opentype"), url("yadro_font/TTFirsNeue-ExtraBoldItalic.woff2") format("woff2"), url("yadro_font/TTFirsNeue-ExtraBoldItalic.woff") format("woff"), url("yadro_font/TTFirsNeue-ExtraBoldItalic.ttf") format("truetype");
  font-weight: 800;
  font-style: italic;
}
@font-face {
  font-family: "TTFirsNeue";
  src: url("yadro_font/TTFirsNeue-Black.eot");
  src: local("TT Firs Neue Black"), local("TTFirsNeue-Black"), url("yadro_font/TTFirsNeue-Black.eot?#iefix") format("embedded-opentype"), url("yadro_font/TTFirsNeue-Black.woff2") format("woff2"), url("yadro_font/TTFirsNeue-Black.woff") format("woff"), url("yadro_font/TTFirsNeue-Black.ttf") format("truetype");
  font-weight: 900;
  font-style: normal;
}
@font-face {
  font-family: "TTFirsNeue";
  src: url("yadro_font/TTFirsNeue-Italic.eot");
  src: local("TT Firs Neue Italic"), local("TTFirsNeue-Italic"), url("yadro_font/TTFirsNeue-Italic.eot?#iefix") format("embedded-opentype"), url("yadro_font/TTFirsNeue-Italic.woff2") format("woff2"), url("yadro_font/TTFirsNeue-Italic.woff") format("woff"), url("yadro_font/TTFirsNeue-Italic.ttf") format("truetype");
  font-weight: normal;
  font-style: italic;
}
@font-face {
  font-family: "icomoon";
  src: url("yadro_font/fonts/icomoon.eot?dvg1g3");
  src: url("yadro_font/fonts/icomoon.eot?dvg1g3#iefix") format("embedded-opentype"), url("yadro_font/fonts/icomoon.ttf?dvg1g3") format("truetype"), url("yadro_font/fonts/icomoon.woff?dvg1g3") format("woff"), url("yadro_font/fonts/icomoon.svg?dvg1g3#icomoon") format("svg");
  font-weight: normal;
  font-style: normal;
  font-display: block;
}
[class^=icon-], [class*=" icon-"] {
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: "icomoon" !important;
  speak: never;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.icon-yadro-logo-small:before {
  content: "";
}

.icon-yadro-logo-big:before {
  content: "";
}

.icon-walk:before {
  content: "";
  color: #fefefe;
}

.icon-car:before {
  content: "";
  color: #fff;
}

.icon-facebook:before {
  content: "";
}

.icon-instagram:before {
  content: "";
}

.icon-youtube:before {
  content: "";
}

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

h1, h2, h3, h4, h5, h6 {
  letter-spacing: 0.02em;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, hgroup, menu, nav, section, main {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

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

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

* a {
  text-decoration: none;
}

* {
  letter-spacing: 0.03em;
  font-size: 0;
  outline: none !important;
  box-sizing: border-box;
  -webkit-appearance: none !important;
  -webkit-tap-highlight-color: transparent;
  -webkit-tap-highlight-color: transparent;
}

div {
  font-size: 0;
}

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

:focus {
  outline: none;
}

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

input[type=submit]::-moz-focus-inner, input[type=button]::-moz-focus-inner {
  border: 0px;
}

a, a:visited, a:focus, a:active, a:hover {
  outline: 0 none !important;
}

input[type=submit]:focus, input[type=button]:focus {
  outline: none;
}

button {
  cursor: pointer;
  border: none !important;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input::-ms-clear {
  display: none;
}

input[type=search]::-webkit-search-decoration,
input[type=search]::-webkit-search-cancel-button,
input[type=search]::-webkit-search-results-button,
input[type=search]::-webkit-search-results-decoration {
  display: none;
}

p, a, h1, h2, h3, h4, h5, h6 {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

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

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
  transition: background-color 5000s ease-in-out 0s;
}

html > div[style] {
  display: none !important;
}

@-webkit-keyframes autofill {
  to {
    color: #5A5757;
    background: transparent;
  }
}
input:-webkit-autofill {
  -webkit-animation-name: autofill;
  -webkit-animation-fill-mode: both;
}

html {
  height: 100vh;
  min-width: 320px;
}

body {
  width: 100%;
  min-width: 320px;
  height: 100%;
  position: relative;
  color: #2A2A3C;
  background-color: #F6F6F6;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  -webkit-font-smoothing: subpixel-antialiased;
  background-size: cover;
  background-position: center;
  letter-spacing: 0;
}
body.fix {
  position: fixed !important;
  overflow: hidden !important;
  -webkit-overflow-scrolling: auto !important;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

html .loader-container {
  background: none repeat scroll 0 0 white;
  bottom: 0;
  height: 100%;
  left: 0;
  position: fixed;
  right: 0;
  top: 0;
  width: 100%;
  z-index: 9999;
}

html .loader-container .loader {
  background-image: url(../img/loader.gif);
  background-repeat: no-repeat;
  background-position: center center;
  background-color: white;
  position: absolute;
  background-size: 60px auto;
  z-index: 1000;
  width: 100%;
  height: 100%;
}

h1, h2, h3, h4, h5, h6 {
  font-size: 18px;
  font-family: "TTFirsNeueRegular", sans-serif;
}

p, a {
  font-family: "TTFirsNeueRegular", sans-serif;
  font-size: 18px;
  line-height: 27px;
  color: #2A2A3C;
}
@media (max-width: 840px) {
  p, a {
    font-size: 16px;
    line-height: 25px;
  }
}

b, strong {
  font-family: "TTFirsNeueDemiBold", sans-serif;
}

.container-fluid {
  width: 100%;
  height: auto;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 2;
}

.content {
  width: 100%;
  height: auto;
  flex: 1 0 auto;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  padding: 40px 0;
  overflow: hidden;
  position: relative;
  pointer-events: all;
}
@media (max-width: 767px) {
  .content {
    padding: 40px 0 20px;
  }
}

.padding-100 {
  padding-top: 100px;
}
@media (max-width: 767px) {
  .padding-100 {
    padding-top: 50px;
  }
}

.padding-70 {
  padding-top: 70px;
}
@media (max-width: 767px) {
  .padding-70 {
    padding-top: 50px;
  }
}

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

.row {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -20px;
  margin-left: -20px;
}
@media (max-width: 991px) {
  .row {
    margin-right: -10px;
    margin-left: -10px;
  }
}

.flex-wrap {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

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

.main-title {
  width: 100%;
  height: auto;
  margin-bottom: 44px;
}
@media (max-width: 767px) {
  .main-title {
    margin-bottom: 30px;
  }
}
.main-title h1, .main-title h2, .main-title h3, .main-title h4, .main-title h5, .main-title h6 {
  font-family: "TTFirsNeueDemiBold", sans-serif;
  font-size: 44px;
  line-height: 55px;
}
@media (max-width: 991px) {
  .main-title h1, .main-title h2, .main-title h3, .main-title h4, .main-title h5, .main-title h6 {
    font-size: 36px;
    line-height: 42px;
  }
}
@media (max-width: 767px) {
  .main-title h1, .main-title h2, .main-title h3, .main-title h4, .main-title h5, .main-title h6 {
    font-size: 24px;
    line-height: 31px;
  }
}
.main-title h1 span, .main-title h2 span, .main-title h3 span, .main-title h4 span, .main-title h5 span, .main-title h6 span {
  font-family: "TTFirsNeueLight", sans-serif;
}
@media (max-width: 991px) {
  .main-title h1 span, .main-title h2 span, .main-title h3 span, .main-title h4 span, .main-title h5 span, .main-title h6 span {
    font-size: 28px;
  }
}
@media (max-width: 767px) {
  .main-title h1 span, .main-title h2 span, .main-title h3 span, .main-title h4 span, .main-title h5 span, .main-title h6 span {
    font-size: 18px;
  }
}
.main-title .sub-title {
  width: 100%;
  height: auto;
  display: inline-block;
  padding-top: 15px;
}
@media (max-width: 910px) {
  .main-title .space-between {
    display: inline-block;
  }
}
.main-title .space-between p {
  margin-bottom: 10px;
}

.main-btn-input {
  position: relative;
  width: auto;
  display: inline-block;
}
.main-btn-input input {
  width: auto;
  height: 65px;
  min-width: 215px;
  text-align: center;
  display: inline-block;
  -webkit-border-radius: 0 10px 0 10px;
  -moz-border-radius: 0 10px 0 10px;
  border-radius: 0 10px 0 10px;
  background-color: #FBC013;
  padding: 19px 55px 19px 30px;
  font-size: 20px;
  letter-spacing: 0.83px;
  line-height: 26px;
  cursor: pointer;
  font-family: "TTFirsNeueRegular", sans-serif;
  border: none !important;
}
@media (max-width: 767px) {
  .main-btn-input input {
    padding: 12px 40px 12px 19px;
    height: 50px;
    font-size: 18px;
  }
}
.main-btn-input:after {
  top: 50%;
  right: 0;
  background-color: black;
  width: 42px;
  height: 2px;
  -webkit-transform: translate(0, -50%);
  -moz-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  -o-transform: translate(0, -50%);
  transform: translate(0, -50%);
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  z-index: 1;
}
@media (max-width: 767px) {
  .main-btn-input:after {
    width: 25px;
  }
}
@media (min-width: 991px) {
  .main-btn-input:hover:after {
    width: 100%;
  }
}

.main-btn {
  width: auto;
  height: 65px;
  min-width: 215px;
  text-align: center;
  display: inline-block;
  -webkit-border-radius: 0 10px 0 10px;
  -moz-border-radius: 0 10px 0 10px;
  border-radius: 0 10px 0 10px;
  background-color: #FBC013;
  padding: 19px 55px 19px 30px;
  font-size: 20px;
  letter-spacing: 0.83px;
  line-height: 26px;
  position: relative;
  cursor: pointer;
  font-family: "TTFirsNeueRegular", sans-serif;
  border: none !important;
  white-space: nowrap;
}
.main-btn.white-btn {
  background-color: white;
}
@media (max-width: 767px) {
  .main-btn {
    padding: 12px 40px 12px 19px;
    height: 50px;
    font-size: 18px;
  }
}
.main-btn:after {
  top: 50%;
  right: 0;
  background-color: black;
  width: 42px;
  height: 2px;
  -webkit-transform: translate(0, -50%);
  -moz-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  -o-transform: translate(0, -50%);
  transform: translate(0, -50%);
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
@media (max-width: 767px) {
  .main-btn:after {
    width: 25px;
  }
}
@media (min-width: 991px) {
  .main-btn:hover:after {
    width: 100%;
  }
}

.bg-black {
  background-color: black;
  position: relative;
}
.bg-black .main-title {
  position: relative;
  z-index: 1;
  color: white;
}

.bg-orange {
  background-color: #FBC013;
  position: relative;
}
.bg-orange .main-title {
  position: relative;
  z-index: 1;
}

.another-padding {
  padding-bottom: 180px;
}
@media (max-width: 991px) {
  .another-padding {
    padding-bottom: 100px;
  }
}
@media (max-width: 767px) {
  .another-padding {
    padding-bottom: 50px;
  }
}

.no-padding-button {
  padding-bottom: 0;
}

.no-padding {
  padding: 0;
}

.padding-header {
  width: 100%;
  height: auto;
  display: inline-block;
}

.no-relative .container-fluid {
  position: initial !important;
}

.main-big-block {
  min-height: 100vh;
  height: auto;
  position: relative;
  background-size: cover;
  background-position: center;
}
.main-big-block:after {
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: black;
  -webkit-opacity: 0.5;
  -moz-opacity: 0.5;
  opacity: 0.5;
  pointer-events: none;
}
.main-big-block .container-fluid {
  vertical-align: middle;
}
.main-big-block .container-fluid:before {
  content: "";
  display: inline-block;
  vertical-align: middle;
  height: 100%;
}
.main-big-block .construction-text {
  position: relative;
  z-index: 1;
  vertical-align: middle;
  display: inline-block;
  max-width: 700px;
  width: 100%;
  padding-bottom: 150px;
}
.main-big-block .construction-text .main-title {
  margin-bottom: 25px;
}
.main-big-block .construction-text .main-title h1, .main-big-block .construction-text .main-title h2, .main-big-block .construction-text .main-title h3, .main-big-block .construction-text .main-title h4, .main-big-block .construction-text .main-title h5, .main-big-block .construction-text .main-title h6 {
  color: white;
}
.main-big-block .construction-text p {
  width: 100%;
  color: white;
  font-size: 24px;
  line-height: 31px;
  margin-bottom: 30px;
  display: inline-block;
  letter-spacing: 0.06em;
}
@media (max-width: 991px) {
  .main-big-block .construction-text p {
    font-size: 18px;
    line-height: 24px;
  }
}
@media (max-width: 767px) {
  .main-big-block .construction-text p {
    font-size: 16px;
  }
}

.index .animation-8 {
  top: -165px;
  left: -130px;
  opacity: 0.5;
}

.padding-bottom {
  padding-bottom: 0;
}

.wid-100 {
  width: 100%;
  height: auto;
  display: inline-block;
}

.scroll {
  width: 40px;
  height: 160px;
  position: absolute;
  text-align: center;
  bottom: -30px;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
  -moz-transform: translate(-50%, 0);
  -ms-transform: translate(-50%, 0);
  -o-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
  z-index: 4;
  overflow: hidden;
  -webkit-animation: height 2s infinite ease-in-out;
  -moz-animation: height 2s infinite ease-in-out;
  animation: height 2s infinite ease-in-out;
}
@media (max-width: 767px) {
  .scroll {
    height: 100px;
  }
  .scroll img {
    height: 100%;
  }
}
.scroll a {
  width: 100%;
  height: 100%;
  display: block;
  padding: 15px;
}
@media (max-width: 767px) {
  .scroll {
    width: 25px;
  }
}
@-webkit-keyframes height {
  0% {
    height: 160px;
  }
  50% {
    height: 120px;
  }
  100% {
    height: 160px;
  }
}
@-webkit-keyframes height {
  0% {
    height: 160px;
  }
  50% {
    height: 120px;
  }
  100% {
    height: 160px;
  }
}
@-moz-keyframes height {
  0% {
    height: 160px;
  }
  50% {
    height: 120px;
  }
  100% {
    height: 160px;
  }
}
@-moz-keyframes height {
  0% {
    height: 160px;
  }
  50% {
    height: 120px;
  }
  100% {
    height: 160px;
  }
}
@keyframes height {
  0% {
    height: 160px;
  }
  50% {
    height: 120px;
  }
  100% {
    height: 160px;
  }
}

.appartmen .social-index li .icon {
  color: black;
  border-color: black;
}

header {
  width: 100%;
  height: auto;
  top: 0;
  left: 0;
  z-index: 4;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  background-color: transparent;
  position: fixed;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
header.hide {
  top: -100%;
}
header.fix-menu, header.fix {
  background-color: white;
}
header.fix-menu .menu ul li a,
header.fix-menu .phone,
header.fix-menu .logo .icon, header.fix .menu ul li a,
header.fix .phone,
header.fix .logo .icon {
  color: black;
}
header.fix-menu .burger span,
header.fix-menu .burger span::after,
header.fix-menu .burger span::before, header.fix .burger span,
header.fix .burger span::after,
header.fix .burger span::before {
  background-color: black;
}
@media (max-width: 1100px) {
  header {
    padding: 20px 0;
  }
}
@media (max-width: 767px) {
  header {
    padding: 10px 0;
  }
}
header .logo {
  width: auto;
  height: auto;
  display: inline-block;
}
header .logo .icon {
  font-size: 38px;
  color: white;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
@media (max-width: 1160px) {
  header .logo .icon {
    font-size: 30px;
  }
}
@media (max-width: 767px) {
  header .logo .icon {
    font-size: 22px;
  }
}
header .phone {
  font-family: "TTFirsNeueDemiBold", sans-serif;
  display: inline-block;
  padding-left: 60px;
  color: white;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
@media (max-width: 1160px) {
  header .phone {
    padding-left: 35px;
  }
}
@media (max-width: 1100px) {
  header .phone {
    color: #2A2A3C;
    padding: 20px;
  }
}
@media (min-width: 991px) {
  header .phone:hover {
    color: #FBC013;
  }
}
header .burger {
  width: 30px;
  height: 30px;
  cursor: pointer;
  vertical-align: middle;
  z-index: 7;
  position: relative;
  display: none;
}
@media (max-width: 1100px) {
  header .burger {
    display: block;
  }
}
header .burger span {
  left: 0;
  top: 50%;
  position: absolute;
  display: inline-block;
  z-index: 102;
  -webkit-transform: translate(0, -50%);
  -moz-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  -o-transform: translate(0, -50%);
  transform: translate(0, -50%);
  bottom: auto;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
@media (max-width: 767px) {
  header .burger span {
    left: 0;
    right: auto;
  }
}
@media (max-width: 1023px) and (min-width: 768px) and (max-height: 320px) {
  header .burger span {
    left: 0;
    right: auto;
  }
}
header .burger span::after, header .burger span::before {
  content: "";
  left: 0;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
header .burger span::before {
  -webkit-transform: translateY(-8px);
  -moz-transform: translateY(-8px);
  -ms-transform: translateY(-8px);
  -o-transform: translateY(-8px);
  transform: translateY(-8px);
}
header .burger span::after {
  -webkit-transform: translateY(8px);
  -moz-transform: translateY(8px);
  -ms-transform: translateY(8px);
  -o-transform: translateY(8px);
  transform: translateY(8px);
}
header .burger span,
header .burger span::after,
header .burger span::before {
  position: absolute;
  width: 22px;
  height: 2px;
  background-color: white;
}
header .burger.active span {
  background-color: transparent;
}
header .burger.active span:after {
  -webkit-transform: translate(0, 0) rotate(-45deg);
  -moz-transform: translate(0, 0) rotate(-45deg);
  -ms-transform: translate(0, 0) rotate(-45deg);
  -o-transform: translate(0, 0) rotate(-45deg);
  transform: translate(0, 0) rotate(-45deg);
}
header .burger.active span:before {
  -webkit-transform: translate(0, 0) rotate(45deg);
  -moz-transform: translate(0, 0) rotate(45deg);
  -ms-transform: translate(0, 0) rotate(45deg);
  -o-transform: translate(0, 0) rotate(45deg);
  transform: translate(0, 0) rotate(45deg);
}
header .menu {
  width: auto;
  height: auto;
  display: inline-block;
}
@media (max-width: 1100px) {
  header .menu {
    position: fixed;
    top: 71px;
    right: 0;
    -webkit-transform: translate3d(200%, 0, 0);
    -moz-transform: translate3d(200%, 0, 0);
    -ms-transform: translate3d(200%, 0, 0);
    -o-transform: translate3d(200%, 0, 0);
    transform: translate3d(200%, 0, 0);
    webkit-transition: transform 0.51s cubic-bezier(0.57, -0.01, 0.32, 1);
    -moz-transition: transform 0.51s cubic-bezier(0.57, -0.01, 0.32, 1);
    -ms-transition: transform 0.51s cubic-bezier(0.57, -0.01, 0.32, 1);
    -o-transition: transform 0.51s cubic-bezier(0.57, -0.01, 0.32, 1);
    transition: transform 0.51s cubic-bezier(0.57, -0.01, 0.32, 1);
    pointer-events: none;
    height: calc(100% - 71px);
    background-color: white;
    width: 100%;
    max-width: 300px;
    overflow: auto;
    padding-bottom: 40px;
    min-width: 320px;
  }
  header .menu::-webkit-scrollbar {
    width: 5px;
  }
  header .menu::-webkit-scrollbar-track {
    background-color: white;
  }
  header .menu::-webkit-scrollbar-thumb {
    background-color: #FBC013;
  }
  header .menu.active {
    -webkit-opacity: 1;
    -moz-opacity: 1;
    opacity: 1;
    pointer-events: all;
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    -o-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@media (max-width: 767px) {
  header .menu {
    top: 51px;
    height: calc(100% - 51px);
  }
}
header .menu ul {
  display: inline-block;
}
header .menu ul li {
  display: inline-block;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  position: relative;
}
@media (max-width: 1100px) {
  header .menu ul li {
    width: 100%;
  }
}
header .menu ul li:after {
  width: 0px;
  height: 6px;
  top: 0;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
  -moz-transform: translate(-50%, 0);
  -ms-transform: translate(-50%, 0);
  -o-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
  background-color: #FBC013;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
@media (max-width: 1100px) {
  header .menu ul li:after {
    display: none;
  }
}
header .menu ul li a {
  color: white;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  padding: 22px 11px;
  display: inline-block;
  text-transform: uppercase;
  font-size: 16px;
}
@media (max-width: 1100px) {
  header .menu ul li a {
    color: #2A2A3C;
    padding: 20px;
  }
}
header .menu ul li.active:after {
  width: 100%;
  left: 0;
  -webkit-transform: translate(0, 0);
  -moz-transform: translate(0, 0);
  -ms-transform: translate(0, 0);
  -o-transform: translate(0, 0);
  transform: translate(0, 0);
}
@media (max-width: 1100px) {
  header .menu ul li.active {
    background-color: #FBC013;
  }
  header .menu ul li.active a {
    font-family: "TTFirsNeueDemiBold", sans-serif;
  }
}
@media (min-width: 1100px) {
  header .menu ul li:hover:after {
    width: 100%;
    left: 0;
    -webkit-transform: translate(0, 0);
    -moz-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    -o-transform: translate(0, 0);
    transform: translate(0, 0);
  }
}
@media (max-width: 1100px) and (min-width: 1024px) {
  header .menu ul li:hover {
    background-color: #FBC013;
  }
  header .menu ul li:hover a {
    font-family: "TTFirsNeueDemiBold", sans-serif;
  }
}

.bg-close {
  width: 100%;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  background-color: #FBC013;
  -webkit-opacity: 0.6;
  -moz-opacity: 0.6;
  opacity: 0.6;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  -webkit-transform: translate3d(200%, 0, 0);
  -moz-transform: translate3d(200%, 0, 0);
  -ms-transform: translate3d(200%, 0, 0);
  -o-transform: translate3d(200%, 0, 0);
  transform: translate3d(200%, 0, 0);
  webkit-transition: transform 0.51s cubic-bezier(0.57, -0.01, 0.32, 1);
  -moz-transition: transform 0.51s cubic-bezier(0.57, -0.01, 0.32, 1);
  -ms-transition: transform 0.51s cubic-bezier(0.57, -0.01, 0.32, 1);
  -o-transition: transform 0.51s cubic-bezier(0.57, -0.01, 0.32, 1);
  transition: transform 0.51s cubic-bezier(0.57, -0.01, 0.32, 1);
  pointer-events: none;
  z-index: 3;
}
.bg-close.active {
  pointer-events: all;
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.text-container {
  width: 100%;
  height: auto;
}
.text-container.type-1 {
  position: relative;
}
.text-container.type-1 .img {
  position: absolute;
  top: 50%;
  -webkit-transform: translate(0, -50%);
  -moz-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  -o-transform: translate(0, -50%);
  transform: translate(0, -50%);
  right: -100px;
  width: 50%;
  height: auto;
}
@media (max-width: 1024px) {
  .text-container.type-1 .img {
    right: 0;
  }
}
@media (max-width: 767px) {
  .text-container.type-1 .img {
    display: none;
  }
}
.text-container.type-1 .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: bottom right;
}
.text-container.type-1 .text {
  width: 50%;
  height: auto;
  display: inline-block;
  padding: 100px;
}
@media (max-width: 1250px) {
  .text-container.type-1 .text {
    padding: 60px;
  }
}
@media (max-width: 1125px) {
  .text-container.type-1 .text {
    padding: 40px;
  }
}
@media (max-width: 1024px) {
  .text-container.type-1 .text {
    padding: 0 20px 0 0;
  }
}
@media (max-width: 767px) {
  .text-container.type-1 .text {
    width: 100%;
  }
}
.text-container.type-1 .text p {
  margin-bottom: 10px;
}
.text-container.type-2 .text {
  width: 100%;
  height: auto;
  max-width: 410px;
  display: inline-block;
  position: relative;
}
.text-container.type-2 .text .padding {
  padding: 60px 45px 50px;
  position: relative;
  z-index: 2;
}
@media (max-width: 767px) {
  .text-container.type-2 .text .padding {
    padding: 26px 20px 26px;
  }
}
.text-container.type-2 .text p {
  font-family: "TTFirsNeueLight", sans-serif;
}
.text-container.type-2 .text .main-btn {
  position: relative;
  z-index: 2;
}
.text-container.type-2 .text:after {
  top: 0;
  left: 0;
  width: 100%;
  height: calc(100% - 32px);
  background-color: white;
}
.text-container.type-3:after {
  top: -40px;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
  -moz-transform: translate(-50%, 0);
  -ms-transform: translate(-50%, 0);
  -o-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
  background-color: #FBC013;
  width: 6px;
  height: 0px;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
  display: none;
}
.text-container.type-3 .row {
  margin: 0 -60px;
}
@media (max-width: 991px) {
  .text-container.type-3 .row {
    margin: 0 -20px;
  }
}
.text-container.type-3 .text {
  width: calc(50% - 120px);
  height: auto;
  display: inline-block;
  vertical-align: top;
  margin: 0 60px;
}
@media (max-width: 991px) {
  .text-container.type-3 .text {
    width: calc(50% - 40px);
    height: auto;
    margin: 0 20px;
  }
}
@media (max-width: 991px) {
  .text-container.type-3 .text {
    width: calc(100% - 40px);
    height: auto;
    margin-bottom: 40px;
  }
}
.text-container.type-3 .text h1, .text-container.type-3 .text h2, .text-container.type-3 .text h3, .text-container.type-3 .text h4, .text-container.type-3 .text h5, .text-container.type-3 .text h6 {
  font-family: "TTFirsNeueDemiBold", sans-serif;
  font-size: 24px;
  line-height: 31px;
  margin-bottom: 10px;
}
@media (max-width: 767px) {
  .text-container.type-3 .text h1, .text-container.type-3 .text h2, .text-container.type-3 .text h3, .text-container.type-3 .text h4, .text-container.type-3 .text h5, .text-container.type-3 .text h6 {
    font-size: 22px;
    line-height: 30px;
  }
}
.text-container.type-4 {
  position: relative;
}
.text-container.type-4 .text {
  width: 50%;
  height: auto;
  display: inline-block;
  padding: 55px 100px 90px 0;
}
@media (max-width: 1024px) {
  .text-container.type-4 .text {
    padding: 40px 20px 50px 0;
  }
}
@media (max-width: 767px) {
  .text-container.type-4 .text {
    padding: 0;
    width: 100%;
  }
}
.text-container.type-4 .text p {
  margin-bottom: 15px;
}
.text-container.type-4 .text .main-btn {
  margin-top: 35px;
}
.text-container.type-4 .img {
  position: absolute;
  top: 50%;
  -webkit-transform: translate(0, -50%);
  -moz-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  -o-transform: translate(0, -50%);
  transform: translate(0, -50%);
  right: -100px;
  width: 50%;
  height: auto;
}
@media (max-width: 1024px) {
  .text-container.type-4 .img {
    right: -50px;
  }
}
@media (max-width: 767px) {
  .text-container.type-4 .img {
    display: none;
  }
}
.text-container.type-4 .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center left;
}
.text-container.type-4 .img:before {
  bottom: 92px;
  left: -5px;
  width: 10px;
  height: 0px;
  background-color: #FBC013;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
.text-container.type-5 {
  position: relative;
  display: inline-block;
  text-align: right;
}
.text-container.type-5 .text {
  width: 50%;
  height: auto;
  display: inline-block;
  padding: 55px 100px 90px 0;
  text-align: left;
}
@media (max-width: 1100px) {
  .text-container.type-5 .text {
    padding: 40px 20px 50px 0;
  }
}
@media (max-width: 767px) {
  .text-container.type-5 .text {
    padding: 0;
    width: 100%;
  }
}
.text-container.type-5 .text .text-line {
  width: 100%;
  height: auto;
  display: inline-block;
  margin-bottom: 30px;
}
.text-container.type-5 .text .title {
  font-family: "TTFirsNeueDemiBold", sans-serif;
  font-size: 30px;
  line-height: 38px;
  margin-bottom: 10px;
}
@media (max-width: 767px) {
  .text-container.type-5 .text .title {
    font-size: 22px;
    line-height: 30px;
  }
}
.text-container.type-5 .text p {
  margin-bottom: 15px;
}
.text-container.type-5 .text .main-btn {
  margin-top: 35px;
}
.text-container.type-5 .img {
  position: absolute;
  top: 50%;
  -webkit-transform: translate(0, -50%);
  -moz-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  -o-transform: translate(0, -50%);
  transform: translate(0, -50%);
  left: -100px;
  width: 50%;
  height: auto;
}
@media (max-width: 1200px) {
  .text-container.type-5 .img {
    left: -50px;
  }
}
@media (max-width: 767px) {
  .text-container.type-5 .img {
    display: none;
  }
}
.text-container.type-5 .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.text-container.type-5 .img:before {
  bottom: 92px;
  right: -5px;
  width: 10px;
  height: 0px;
  background-color: #FBC013;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

.img-big {
  background-position: center;
  background-size: cover;
}
@media (min-width: 991px) {
  .img-big {
    min-height: 760px;
  }
}
.img-big:after {
  width: 100%;
  height: 100%;
  bottom: 0;
  left: 0;
  background-color: black;
  -webkit-opacity: 0.2;
  -moz-opacity: 0.2;
  opacity: 0.2;
  pointer-events: none;
}
.img-big:before {
  width: 0px;
  height: 10px;
  top: 0;
  left: 10%;
  background-color: #FBC013;
  pointer-events: none;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}
.img-big .container-fluid {
  vertical-align: middle;
}
.img-big .container-fluid:before {
  content: "";
  display: inline-block;
  vertical-align: middle;
  height: 100%;
}
.img-big .text-container {
  vertical-align: middle;
  display: inline-block;
  position: relative;
  z-index: 1;
  text-align: right;
  margin: 50px 0;
}
@media (max-width: 767px) {
  .img-big .text-container {
    margin: 20px 0;
  }
}
.img-big .text-container .text {
  text-align: left;
}

.features {
  width: 100%;
  height: auto;
}
.features li {
  width: calc(33.3% - 40px);
  height: auto;
  margin: 0 20px 24px;
  -webkit-border-radius: 0 15px 0 15px;
  -moz-border-radius: 0 15px 0 15px;
  border-radius: 0 15px 0 15px;
  background-color: #FBC013;
  -webkit-box-shadow: 0 2px 9px 0 rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 0 2px 9px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 2px 9px 0 rgba(0, 0, 0, 0.2);
  padding: 20px;
}
@media (max-width: 991px) {
  .features li {
    margin: 0 10px 20px;
    width: calc(50% - 20px);
    height: auto;
  }
}
@media (max-width: 490px) {
  .features li {
    width: calc(100% - 20px);
    height: auto;
  }
}
.features li .number {
  display: inline-block;
  position: relative;
}
.features li .number:after {
  width: 100%;
  height: 6px;
  background-color: white;
  bottom: 0;
  left: 0;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
}
.features li .number p {
  font-size: 36px;
  line-height: 46px;
  color: white;
  padding-bottom: 10px;
}
@media (max-width: 767px) {
  .features li .number p {
    font-size: 30px;
    line-height: 36px;
  }
}
.features li .icon {
  width: auto;
  height: 60px;
  display: inline-block;
  text-align: center;
}
@media (max-width: 767px) {
  .features li .icon {
    height: 45px;
  }
}
.features li .features-text {
  width: 100%;
  height: auto;
  display: inline-block;
  padding-top: 20px;
}
.features li .features-text p, .features li .features-text h1, .features li .features-text h2, .features li .features-text h3, .features li .features-text h4, .features li .features-text h5, .features li .features-text h6 {
  color: white;
}
.features li .features-text h1, .features li .features-text h2, .features li .features-text h3, .features li .features-text h4, .features li .features-text h5, .features li .features-text h6 {
  font-family: "TTFirsNeueDemiBold", sans-serif;
  font-size: 24px;
  line-height: 31px;
}
@media (max-width: 767px) {
  .features li .features-text h1, .features li .features-text h2, .features li .features-text h3, .features li .features-text h4, .features li .features-text h5, .features li .features-text h6 {
    font-size: 20px;
    line-height: 25px;
  }
}
.features li .features-text p {
  font-size: 18px;
  line-height: 24px;
  font-family: "TTFirsNeueLight", sans-serif;
  margin-bottom: 5px;
  min-height: 50px;
}
@media (max-width: 767px) {
  .features li .features-text p {
    font-size: 16px;
    line-height: 22px;
  }
}

.description {
  width: 100%;
  display: inline-block;
  text-align: right;
}
.description .description-info {
  width: 100%;
  height: auto;
  display: inline-block;
  max-width: 820px;
  position: relative;
  z-index: 1;
  padding: 115px 0 75px;
  text-align: left;
}
@media (max-width: 991px) {
  .description .description-info {
    padding: 70px 0 90px;
  }
}
@media (max-width: 767px) {
  .description .description-info {
    padding: 40px 0 40px;
  }
}
.description .description-info:before {
  width: 10px;
  height: 0%;
  top: 0;
  right: 35%;
  background-color: #FBC013;
  -webkit-transform: translate(35%, 0);
  -moz-transform: translate(35%, 0);
  -ms-transform: translate(35%, 0);
  -o-transform: translate(35%, 0);
  transform: translate(35%, 0);
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}
.description .description-info ul {
  width: 100%;
  height: auto;
  display: inline-block;
  padding: 50px 40px 25px 95px;
  background-color: white;
  position: relative;
}
@media (max-width: 767px) {
  .description .description-info ul {
    padding: 40px 30px 20px 30px;
  }
}
@media (max-width: 470px) {
  .description .description-info ul {
    padding: 35px 20px 15px;
  }
}
.description .description-info ul:after {
  width: 0%;
  height: 10px;
  top: -5px;
  left: 50%;
  background-color: #FBC013;
  -webkit-transform: translate(-50%, 0);
  -moz-transform: translate(-50%, 0);
  -ms-transform: translate(-50%, 0);
  -o-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}
.description .description-info ul li {
  width: 100%;
  height: auto;
  display: inline-block;
  margin-bottom: 20px;
}
.description .description-info ul li p {
  font-family: "TTFirsNeueLight", sans-serif;
  width: 50%;
  display: inline-block;
  vertical-align: top;
}
.description .description-info ul li p:first-child {
  padding-right: 15px;
}
@media (max-width: 470px) {
  .description .description-info ul li p:first-child {
    font-family: "TTFirsNeueDemiBold", sans-serif;
    margin-bottom: 5px;
  }
}
@media (max-width: 470px) {
  .description .description-info ul li p {
    width: 100%;
  }
}
.description .img {
  width: 60%;
  height: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
}
.description .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: bottom right;
}

.slider img {
  display: block;
  width: 100%;
  height: 600px;
  object-fit: cover;
  object-position: center;
}
@media (max-width: 991px) {
  .slider img {
    height: 450px;
  }
}
@media (max-width: 767px) {
  .slider img {
    height: 290px;
  }
}
.slider .slick-slide {
  height: auto !important;
}

.slick-arrow {
  width: 57px;
  height: 57px;
  overflow: hidden;
  position: absolute;
  top: 50%;
  -webkit-transform: translate(0, -50%);
  -moz-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  -o-transform: translate(0, -50%);
  transform: translate(0, -50%);
  z-index: 1;
  background-repeat: no-repeat;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
  background-color: rgba(255, 255, 255, 0.6);
  background-size: cover;
  background-position: center;
}
@media (min-width: 991px) {
  .slick-arrow:hover {
    background-color: #FBC013;
  }
}
@media (max-width: 767px) {
  .slick-arrow {
    width: 50px;
    height: 50px;
    background-position: -13px center;
  }
}
.slick-arrow.slick-prev {
  left: 0;
  background-image: url(../img/arrowleft.svg);
}
.slick-arrow.slick-next {
  right: 0;
  background-image: url(../img/arrowright.svg);
}

.slick-dots {
  width: 100%;
  height: auto;
  display: inline-block;
  text-align: center;
  margin-top: 17px;
}
.slick-dots li {
  width: auto;
  height: auto;
  display: inline-block;
  margin: 0 3px;
}
.slick-dots li button {
  width: 65px;
  height: 2px;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  background-color: white;
}
@media (max-width: 991px) {
  .slick-dots li button {
    width: 30px;
  }
}
@media (max-width: 420px) {
  .slick-dots li button {
    width: 20px;
  }
}
@media (min-width: 991px) {
  .slick-dots li:hover button {
    background-color: black;
  }
}
.slick-dots li.slick-active button {
  background-color: black;
}

.slider-more {
  margin: 0 -18px 40px;
}
@media (max-width: 991px) {
  .slider-more {
    margin: 0 -10px 40px;
  }
}
.slider-more .slick-slide {
  height: auto !important;
}
.slider-more .item {
  margin: 0 18px;
}
@media (max-width: 991px) {
  .slider-more .item {
    margin: 0 10px;
  }
}
.slider-more img {
  display: block;
  width: 100%;
  height: 500px;
  object-fit: cover;
  object-position: center;
}
@media (max-width: 960px) {
  .slider-more img {
    height: 380px;
  }
}
.slider-more .slick-arrow.slick-prev {
  left: 17px;
}
@media (max-width: 991px) {
  .slider-more .slick-arrow.slick-prev {
    left: 9px;
  }
}
.slider-more .slick-arrow.slick-next {
  right: 17px;
}
@media (max-width: 991px) {
  .slider-more .slick-arrow.slick-next {
    right: 9px;
  }
}

.slider-each {
  position: relative;
}
.slider-each .main-btn {
  background-color: white;
  position: absolute;
  bottom: 50px;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
  -moz-transform: translate(-50%, 0);
  -ms-transform: translate(-50%, 0);
  -o-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
}
.slider-each .btn {
  width: 100%;
  height: 64px;
  display: inline-block;
  background-color: white;
  border: 1px solid #FBC013;
  text-align: center;
  padding: 20px 15px;
  max-width: 380px;
  position: absolute;
  bottom: 50px;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
  -moz-transform: translate(-50%, 0);
  -ms-transform: translate(-50%, 0);
  -o-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
  letter-spacing: 0.1em;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
@media (max-width: 767px) {
  .slider-each .btn {
    height: 50px;
    padding: 13px 10px;
    max-width: 230px;
    bottom: 30px;
  }
}
@media (min-width: 991px) {
  .slider-each .btn:hover {
    background-color: #FBC013;
  }
}

.main-slider .slick-slide {
  height: auto;
}
.main-slider .slick-arrow {
  display: none !important;
}
.main-slider .slick-dots {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: auto;
  margin-left: 25px;
  margin-top: 0;
}
@media (max-width: 991px) {
  .main-slider .slick-dots {
    top: 0;
    -webkit-transform: translate(-50%, 0);
    -moz-transform: translate(-50%, 0);
    -ms-transform: translate(-50%, 0);
    -o-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
  }
}
@media (max-width: 767px) {
  .main-slider .slick-dots {
    left: 0;
    -webkit-transform: translate(0, 0);
    -moz-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    -o-transform: translate(0, 0);
    transform: translate(0, 0);
    margin-left: 0;
  }
}
.main-slider .slick-dots li {
  display: block;
  margin: 6px 0;
}
.main-slider .slick-dots li button {
  width: 2px;
  height: 65px;
  padding: 0;
  opacity: 0.5;
}
@media (max-width: 767px) {
  .main-slider .slick-dots li button {
    height: 30px;
  }
}
.main-slider .slick-dots li.slick-active button {
  opacity: 1;
}
.main-slider .item .img {
  width: 50%;
  height: auto;
  display: inline-block;
  vertical-align: middle;
}
.main-slider .item .img img {
  width: 100%;
  height: auto;
  display: inline-block;
}
@media (max-width: 991px) {
  .main-slider .item .img {
    vertical-align: top;
  }
}
@media (max-width: 767px) {
  .main-slider .item .img {
    display: none;
  }
}
.main-slider .item .text {
  width: 50%;
  height: auto;
  display: inline-block;
  padding-left: 120px;
  vertical-align: middle;
  margin: 60px 0;
}
@media (max-width: 1115px) {
  .main-slider .item .text {
    padding-left: 55px;
  }
}
@media (max-width: 991px) {
  .main-slider .item .text {
    vertical-align: top;
    margin: 0 0 20px;
  }
}
@media (max-width: 767px) {
  .main-slider .item .text {
    width: 100%;
    padding-left: 40px;
  }
}
.main-slider .item .text .icon {
  width: auto;
  height: 92px;
  display: block;
  margin-bottom: 25px;
}
.main-slider .item .text h1, .main-slider .item .text h2, .main-slider .item .text h3, .main-slider .item .text h4, .main-slider .item .text h5, .main-slider .item .text h6 {
  font-size: 30px;
  line-height: 34px;
  font-family: "TTFirsNeueDemiBold", sans-serif;
  max-width: 320px;
  width: 100%;
  display: inline-block;
  margin-bottom: 10px;
}
.main-slider .item .text p {
  max-width: 360px;
  width: 100%;
  display: inline-block;
}

.social {
  width: auto;
  height: auto;
  display: inline-block;
  vertical-align: top;
  padding-left: 15px;
}
@media (max-width: 1140px) {
  .social {
    width: 100%;
  }
}
@media (max-width: 910px) {
  .social {
    padding-left: 0;
  }
}
.social li {
  width: auto;
  height: auto;
  display: inline-block;
  vertical-align: middle;
  margin-right: 20px;
  margin-bottom: 10px;
}
@media (min-width: 1090px) {
  .social li {
    min-width: 150px;
  }
}
.social li:last-child {
  margin-right: 0;
}
.social li .icon {
  font-size: 19px;
  display: inline-block;
  vertical-align: middle;
  margin-right: 10px;
  color: #FBC013;
  width: 40px;
  height: 40px;
  border: 2px solid #FBC013;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  text-align: center;
  padding: 8px 0;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
.social li a {
  font-size: 16px;
}
@media (min-width: 991px) {
  .social li:hover .icon {
    background-color: #FBC013;
    color: #2A2A3C;
  }
}

.info-contacts {
  width: 50%;
  height: auto;
  display: inline-block;
  vertical-align: top;
}
@media (max-width: 1024px) {
  .info-contacts {
    width: 100%;
  }
}
.info-contacts ul {
  width: 100%;
  height: auto;
  display: inline-block;
  margin-bottom: 20px;
}
.info-contacts ul li {
  width: 100%;
  height: auto;
  display: inline-block;
  margin-bottom: 25px;
}
@media (max-width: 370px) {
  .info-contacts ul li {
    margin-bottom: 15px;
  }
}
.info-contacts ul.social {
  padding-left: 0;
}
.info-contacts ul.social li {
  width: auto;
}
@media (max-width: 400px) {
  .info-contacts ul.social li {
    width: 100%;
    margin-bottom: 15px;
  }
}
.info-contacts .title {
  text-transform: uppercase;
  color: #A1A1A1;
  font-size: 16px;
  font-family: "TTFirsNeueLight", sans-serif;
  margin-bottom: 10px;
}
@media (max-width: 767px) {
  .info-contacts .title {
    font-size: 12px;
    line-height: 16px;
    margin-bottom: 0;
  }
}
.info-contacts p span {
  min-width: 75px;
  display: inline-block;
}
.info-contacts a {
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
@media (min-width: 991px) {
  .info-contacts a:hover {
    color: #FBC013;
  }
}
.info-contacts.bg-orange-contacts {
  -webkit-border-radius: 100px 0 0 0;
  -moz-border-radius: 100px 0 0 0;
  border-radius: 100px 0 0 0;
  background-color: #FBC013;
  padding: 65px;
  position: relative;
}
@media (max-width: 1140px) {
  .info-contacts.bg-orange-contacts {
    padding: 65px 0 65px 65px;
  }
}
.info-contacts.bg-orange-contacts:before {
  top: 0;
  left: 100%;
  width: 10000%;
  height: 100%;
  background-color: #FBC013;
}
.info-contacts.bg-orange-contacts:after {
  top: 100%;
  left: 0;
  width: 10000%;
  height: 10000%;
  background-color: #FBC013;
}
@media (max-width: 1024px) {
  .info-contacts.bg-orange-contacts {
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
    padding: 30px 0 30px 0;
  }
  .info-contacts.bg-orange-contacts:after {
    top: 0;
    left: initial;
    right: 100%;
  }
}
@media (max-width: 1024px) {
  .info-contacts.bg-orange-contacts .main-title {
    margin-bottom: 30px;
  }
}
.info-contacts.bg-orange-contacts .main-title h1, .info-contacts.bg-orange-contacts .main-title h2, .info-contacts.bg-orange-contacts .main-title h3, .info-contacts.bg-orange-contacts .main-title h4, .info-contacts.bg-orange-contacts .main-title h5, .info-contacts.bg-orange-contacts .main-title h6 {
  font-size: 36px;
  line-height: 40px;
}
@media (max-width: 1120px) {
  .info-contacts.bg-orange-contacts .main-title h1, .info-contacts.bg-orange-contacts .main-title h2, .info-contacts.bg-orange-contacts .main-title h3, .info-contacts.bg-orange-contacts .main-title h4, .info-contacts.bg-orange-contacts .main-title h5, .info-contacts.bg-orange-contacts .main-title h6 {
    font-size: 30px;
    line-height: 36px;
  }
}
@media (max-width: 767px) {
  .info-contacts.bg-orange-contacts .main-title h1, .info-contacts.bg-orange-contacts .main-title h2, .info-contacts.bg-orange-contacts .main-title h3, .info-contacts.bg-orange-contacts .main-title h4, .info-contacts.bg-orange-contacts .main-title h5, .info-contacts.bg-orange-contacts .main-title h6 {
    font-size: 24px;
    line-height: 31px;
  }
}
.info-contacts.bg-orange-contacts .how {
  display: inline-block;
  vertical-align: middle;
}
.info-contacts.bg-orange-contacts .left {
  width: auto;
  min-width: 120px;
  display: inline-block;
  vertical-align: middle;
  text-align: right;
}
.info-contacts.bg-orange-contacts .icon {
  width: 30px;
  height: 30px;
  display: inline-block;
  vertical-align: middle;
  text-align: center;
  margin-left: 20px;
}
.info-contacts.bg-orange-contacts .icon.icon-walk {
  font-size: 24px;
}
.info-contacts.bg-orange-contacts .icon.icon-car {
  font-size: 30px;
}
.info-contacts.bg-orange-contacts ul {
  margin-bottom: 0;
}
.info-contacts.bg-orange-contacts ul li {
  margin-bottom: 15px;
}
@media (max-width: 380px) {
  .info-contacts.bg-orange-contacts ul li {
    display: inline-block;
  }
  .info-contacts.bg-orange-contacts ul li p {
    font-family: "TTFirsNeueDemiBold", sans-serif;
  }
  .info-contacts.bg-orange-contacts ul li .left {
    width: 100%;
    text-align: left;
  }
  .info-contacts.bg-orange-contacts ul li .left p {
    font-family: "TTFirsNeueRegular", sans-serif;
  }
}

.orange-fon {
  width: 50%;
  height: 100px;
  position: absolute;
  top: 0;
  right: 0;
  background-color: #FBC013;
}
@media (max-width: 1024px) {
  .orange-fon {
    width: 100%;
  }
}
@media (max-width: 991px) {
  .orange-fon {
    height: 100%;
  }
}
.orange-fon:after {
  top: 0;
  left: 100%;
  width: 10000%;
  height: 100%;
  background-color: #FBC013;
}

#map {
  width: 100%;
  height: 600px;
  display: inline-block;
  position: relative;
  z-index: 2;
  margin-bottom: 70px;
}
@media (max-width: 991px) {
  #map {
    height: 400px;
  }
}
@media (max-width: 991px) {
  #map {
    margin-bottom: 40px;
    height: 300px;
  }
}
#map .main-btn {
  position: absolute;
  top: 0;
  left: 0;
}
@media (max-width: 1024px) {
  #map .main-btn {
    top: 10px;
    left: 10px;
  }
}
#map iframe {
  width: 100% !important;
  height: 100% !important;
}

.input-style {
  position: relative;
  margin-bottom: 30px;
}
.input-style input {
  padding: 10px 0;
  display: block;
  width: 100%;
  border: none;
  border-bottom: 1px solid #ccc;
  font-family: "TTFirsNeueLight", sans-serif;
  font-size: 16px;
  line-height: 24px;
  color: #2A2A3C;
}
.input-style input:focus {
  outline: none;
}
.input-style input:focus ~ label, .input-style input:valid ~ label {
  top: -15px;
  font-size: 12px;
  color: #FBC013;
}
.input-style input:focus ~ .bar:before, .input-style input:focus ~ .bar:after {
  width: 50%;
}
.input-style .error {
  font-size: 14px;
  color: red;
  display: none;
  padding-top: 5px;
}
.input-style .error.active {
  display: block;
}
.input-style label {
  position: absolute;
  pointer-events: none;
  left: 0;
  top: 15px;
  transition: 0.2s ease all;
  -moz-transition: 0.2s ease all;
  -webkit-transition: 0.2s ease all;
  font-family: "TTFirsNeueLight", sans-serif;
  font-size: 16px;
  line-height: 24px;
  color: #2A2A3C;
}
.input-style .bar {
  position: relative;
  display: block;
  width: 100%;
}
.input-style .bar:before, .input-style .bar:after {
  width: 0;
  height: 2px;
  bottom: 0;
  position: absolute;
  background: #FBC013;
  transition: 0.2s ease all;
  -moz-transition: 0.2s ease all;
  -webkit-transition: 0.2s ease all;
}
.input-style .bar:before {
  left: 50%;
}
.input-style .bar:after {
  right: 50%;
}

.mini-popup {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: white;
  z-index: 1;
  -webkit-opacity: 0;
  -moz-opacity: 0;
  opacity: 0;
  pointer-events: none;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
.mini-popup.active {
  -webkit-opacity: 1;
  -moz-opacity: 1;
  opacity: 1;
  pointer-events: all;
}
.mini-popup:before {
  content: "";
  display: inline-block;
  vertical-align: middle;
  height: 100%;
}
.mini-popup .bg-white {
  width: 100%;
  height: auto;
  display: inline-block;
  vertical-align: middle;
  padding: 40px;
  background-color: white;
  text-align: center;
}
.mini-popup .bg-white .main-title {
  display: inline-block;
  text-align: center;
}
.mini-popup .bg-white .main-title h1, .mini-popup .bg-white .main-title h2, .mini-popup .bg-white .main-title h3, .mini-popup .bg-white .main-title h4, .mini-popup .bg-white .main-title h5, .mini-popup .bg-white .main-title h6 {
  font-size: 30px;
  line-height: 42px;
}
@media (max-width: 767px) {
  .mini-popup .bg-white .main-title h1, .mini-popup .bg-white .main-title h2, .mini-popup .bg-white .main-title h3, .mini-popup .bg-white .main-title h4, .mini-popup .bg-white .main-title h5, .mini-popup .bg-white .main-title h6 {
    font-size: 24px;
    line-height: 31px;
  }
}
@media (max-width: 767px) {
  .mini-popup .bg-white {
    padding: 20px;
  }
}

.form {
  width: calc(50% - 100px);
  height: auto;
  display: inline-block;
  text-align: left;
  padding: 65px;
  background-color: white;
  position: relative;
  margin-bottom: 50px;
}
@media (max-width: 1220px) {
  .form {
    width: 50%;
  }
}
@media (max-width: 1090px) {
  .form {
    padding: 50px;
  }
}
@media (max-width: 991px) {
  .form {
    padding: 50px 0 50px 50px;
  }
}
@media (max-width: 880px) {
  .form {
    width: 70%;
  }
}
@media (max-width: 660px) {
  .form {
    width: 100%;
  }
}
@media (max-width: 560px) {
  .form {
    padding: 30px 0 30px 25px;
  }
}
.form .title {
  font-size: 24px;
  line-height: 31px;
  margin-bottom: 40px;
}
@media (max-width: 480px) {
  .form .title {
    font-size: 20px;
    line-height: 26px;
    margin-bottom: 25px;
  }
}
.form:after {
  top: 0;
  left: 100%;
  width: 10000%;
  height: 100%;
  background-color: white;
}

.contact-form {
  width: 100%;
  height: auto;
  display: inline-block;
  text-align: right;
}
.contact-form .img {
  width: 100%;
  height: calc(100% + 160px);
  position: absolute;
  bottom: 0;
  left: 0;
}
@media (max-width: 1024px) {
  .contact-form .img {
    width: 100%;
  }
}
.contact-form .img img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.styled-checkbox {
  margin-bottom: 30px;
  height: auto;
  display: inline-block;
}
.styled-checkbox .error {
  font-size: 14px;
  color: red;
  display: none;
  padding-top: 5px;
}
.styled-checkbox .error.active {
  display: block;
}
.styled-checkbox label {
  display: block;
  position: relative;
  padding-left: 35px;
  margin-bottom: 12px;
  cursor: pointer;
  font-size: 14px;
  font-family: "TTFirsNeueLight", sans-serif;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  padding-top: 3px;
}
@media (max-width: 500px) {
  .styled-checkbox label {
    font-size: 12px;
  }
}
.styled-checkbox label input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}
.styled-checkbox label input:checked ~ .checkmark:after {
  display: block;
}
.styled-checkbox label input:disabled ~ .checkmark:before {
  display: block;
}
.styled-checkbox label .checkmark {
  position: absolute;
  top: 0;
  left: 0;
  width: 21px;
  height: 21px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  border: 1px solid #F5F5F5;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
.styled-checkbox label .checkmark:after, .styled-checkbox label .checkmark:before {
  display: none;
}
.styled-checkbox label .checkmark:after {
  left: 8px;
  top: 4px;
  width: 5px;
  height: 10px;
  border: solid #2A2A3C;
  border-width: 0 2px 2px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

.contacts-page header {
  background-color: rgba(255, 255, 255, 0.5);
}
.contacts-page header .menu ul li a,
.contacts-page header .phone,
.contacts-page header .logo .icon {
  color: black;
}
.contacts-page header.fix-menu, .contacts-page header.fix {
  background-color: white;
}
.contacts-page .burger span,
.contacts-page .burger span::after,
.contacts-page .burger span::before {
  background-color: black;
}
.contacts-page footer {
  border-top: none;
}
.contacts-page footer p {
  color: #2A2A3C;
}
@media (max-width: 767px) {
  .contacts-page footer .space-between {
    display: inline-block;
    width: 100%;
  }
}
.contacts-page footer .social {
  width: auto !important;
}
@media (max-width: 767px) {
  .contacts-page footer .social {
    width: 100% !important;
    padding-top: 10px;
  }
}
.contacts-page footer .social li {
  min-width: initial;
}

footer {
  padding: 30px 0;
  background-color: white;
  border-top: 1px solid #2A2A3C;
}
footer p {
  font-size: 16px;
}

.gallery-page {
  background-color: black;
}
.gallery-page .slick-list {
  overflow: initial;
}
.gallery-page .animation-2 {
  width: 400px;
  height: 400px;
  bottom: 0;
  right: 0;
  z-index: 1;
  background-size: 550px 550px;
  position: fixed;
  left: initial;
}
.gallery-page header {
  background-color: black;
}
.gallery-page header.fix-menu .menu ul li a, .gallery-page header.fix-menu .phone, .gallery-page header.fix-menu .logo .icon, .gallery-page header.fix .menu ul li a, .gallery-page header.fix .phone, .gallery-page header.fix .logo .icon {
  color: white;
}
.gallery-page footer {
  background-color: black;
  border: none;
}
.gallery-page footer p {
  color: white;
  -webkit-opacity: 0.7;
  -moz-opacity: 0.7;
  opacity: 0.7;
}
.gallery-page footer .phone {
  width: 100%;
  display: inline-block;
  color: white;
  -webkit-opacity: 0.7;
  -moz-opacity: 0.7;
  opacity: 0.7;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  text-align: center;
}
@media (min-width: 991px) {
  .gallery-page footer .phone:hover {
    color: #FBC013;
  }
}
.gallery-page footer .social {
  margin: 30px 0;
}
.gallery-page footer .social li {
  min-width: initial !important;
}
.gallery-page .slider-each {
  margin-bottom: 50px;
}
.gallery-page .gallery-slider {
  padding-top: 10px;
}
.gallery-page .item {
  vertical-align: middle;
  margin: 0 20px;
  display: inline-block;
  max-width: 850px;
  max-height: 750px;
}
@media (max-width: 991px) {
  .gallery-page .item {
    max-width: 650px;
    max-height: 550px;
  }
}
@media (max-width: 767px) {
  .gallery-page .item {
    max-width: 450px;
    max-height: 350px;
  }
}
@media (min-width: 991px) and (max-height: 800px) {
  .gallery-page .item {
    max-width: 650px;
    max-height: 550px;
  }
}
@media (max-width: 991px) and (min-width: 767px) and (max-height: 600px) {
  .gallery-page .item {
    max-width: 450px;
    max-height: 350px;
  }
}
@media (max-width: 767px) and (max-height: 400px) {
  .gallery-page .item {
    max-width: 450px;
    max-height: 250px;
  }
}
.gallery-page .item:before {
  content: "";
  display: inline-block;
  vertical-align: middle;
  height: 100%;
}
.gallery-page .item img {
  display: inline-block;
  max-width: 850px;
  max-height: 750px;
  width: auto;
  height: auto;
  vertical-align: middle;
}
@media (max-width: 991px) {
  .gallery-page .item img {
    max-width: 650px;
    max-height: 550px;
  }
}
@media (max-width: 767px) {
  .gallery-page .item img {
    max-width: 450px;
    max-height: 350px;
  }
}
@media (min-width: 991px) and (max-height: 800px) {
  .gallery-page .item img {
    max-width: 650px;
    max-height: 550px;
  }
}
@media (max-width: 991px) and (min-width: 767px) and (max-height: 600px) {
  .gallery-page .item img {
    max-width: 450px;
    max-height: 350px;
  }
}
@media (max-width: 767px) and (max-height: 400px) {
  .gallery-page .item img {
    max-width: 450px;
    max-height: 250px;
  }
}

.video-container {
  width: 100%;
  height: 540px;
  display: inline-block;
  position: relative;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  overflow: hidden;
  margin-bottom: 60px;
}
@media (max-width: 1200px) {
  .video-container {
    height: 440px;
  }
}
@media (max-width: 990px) {
  .video-container {
    height: 380px;
  }
}
@media (max-width: 767px) {
  .video-container {
    height: 280px;
    margin-bottom: 40px;
  }
}
.video-container iframe, .video-container .img-block {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.video-container .img-block {
  z-index: 2;
  background-size: cover;
  background-position: center;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}
.video-container .img-block.hide {
  -webkit-opacity: 0;
  -moz-opacity: 0;
  opacity: 0;
  pointer-events: none;
}
.video-container .img-block .play-video {
  width: 71px;
  height: 71px;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  cursor: pointer;
}
.video-container .img-block .play-video:after {
  width: 100%;
  height: 100%;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  background-color: #FBC013;
  -webkit-box-shadow: 0px 15px 35px rgba(246, 194, 0, 0.21);
  -moz-box-shadow: 0px 15px 35px rgba(246, 194, 0, 0.21);
  box-shadow: 0px 15px 35px rgba(246, 194, 0, 0.21);
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}
@media (min-width: 1024px) {
  .video-container .img-block .play-video:hover:after {
    width: 90px;
    height: 90px;
  }
}
.video-container .img-block .play-video:before {
  width: 20px;
  height: 100%;
  background-image: url(../img/play.svg);
  z-index: 2;
  background-repeat: no-repeat;
  background-position: center;
  left: 27px;
}

.bg-orange .container-fluid {
  position: relative;
  z-index: 2;
}

.animation-3 {
  position: absolute;
  width: 380px;
  height: 380px;
  top: calc(100% - 190px);
  left: calc(100% - 190px);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 1;
}
@media (max-width: 767px) {
  .animation-3 {
    display: none;
  }
}

.animation-7 {
  position: absolute;
  width: 400px;
  height: 400px;
  top: -165px;
  left: -140px;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 1;
}
@media (max-width: 767px) {
  .animation-7 {
    width: 250px;
    height: 250px;
    top: -114px;
    left: -100px;
  }
}

.animation-8 {
  position: absolute;
  width: 376px;
  height: 376px;
  top: -255px;
  left: -200px;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 1;
}
@media (max-width: 767px) {
  .animation-8 {
    width: 250px;
    height: 250px;
    top: -120px;
    left: -152px;
  }
}

.animation-2 {
  width: 600px;
  height: 600px;
  bottom: calc(100% - 230px);
  left: calc(100% - 300px);
  z-index: 1;
}

.animation-1 {
  width: 460px;
  height: 460px;
  top: calc(100% - 230px);
  right: calc(100% - 230px);
  z-index: 1;
}

.animation-1,
.animation-2 {
  position: absolute;
}

.animation-4 {
  position: absolute;
  width: 436px;
  height: 436px;
  top: -150px;
  left: calc(100% - 300px);
  z-index: 1;
}
@media (max-width: 767px) {
  .animation-4 {
    width: 336px;
    height: 336px;
    top: -30px;
    left: calc(100% - 100px);
  }
}

.animation-5 {
  position: absolute;
  width: 420px;
  height: 420px;
  top: -80px;
  right: calc(100% - 90px);
  z-index: 1;
}

.animation-6 {
  position: absolute;
  width: 565px;
  height: 565px;
  bottom: -220px;
  right: calc(100% - 290px);
  z-index: 1;
}
@media (max-width: 767px) {
  .animation-6 {
    width: 365px;
    height: 365px;
    bottom: -150px;
    right: calc(100% - 130px);
  }
}

.animation-relative {
  width: 100%;
  height: auto;
  display: inline-block;
  position: relative;
}

.focus-page.focus .text-container.type-4 .img:before {
  height: 464px;
}
.focus-page.focus .text-container.type-5 .img:before {
  height: 464px;
}
.focus-page.focus .description .description-info:before {
  height: 100%;
}
.focus-page.focus .description .description-info ul:after {
  width: calc(100% - 135px);
}
.focus-page.focus.img-big:before {
  width: 550px;
}
.focus-page.focus .text-container.type-3:after {
  height: calc(100% - 90px);
}

.popup {
  width: 100%;
  height: 100vh;
  min-width: 320px;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10;
  padding: 50px;
  text-align: center;
  -webkit-opacity: 0;
  -moz-opacity: 0;
  opacity: 0;
  -webkit-transform: translate(0, 0) scale(0.8);
  -moz-transform: translate(0, 0) scale(0.8);
  -ms-transform: translate(0, 0) scale(0.8);
  -o-transform: translate(0, 0) scale(0.8);
  transform: translate(0, 0) scale(0.8);
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  pointer-events: none;
  overflow: auto;
  background-color: rgba(251, 192, 19, 0.5);
}
.popup::-webkit-scrollbar {
  width: 5px;
}
.popup::-webkit-scrollbar-track {
  background-color: white;
}
.popup::-webkit-scrollbar-thumb {
  background-color: #FBC013;
}
@media (max-width: 560px) {
  .popup {
    padding: 30px;
  }
}
@media (max-width: 400px) {
  .popup {
    padding: 0;
  }
}
.popup.active {
  pointer-events: all;
  -webkit-opacity: 1;
  -moz-opacity: 1;
  opacity: 1;
  -webkit-transform: translate(0, 0) scale(1);
  -moz-transform: translate(0, 0) scale(1);
  -ms-transform: translate(0, 0) scale(1);
  -o-transform: translate(0, 0) scale(1);
  transform: translate(0, 0) scale(1);
}
.popup:before {
  content: "";
  display: inline-block;
  vertical-align: middle;
  height: 100%;
}
.popup .popup-container {
  width: 100%;
  height: auto;
  max-width: 1050px;
  background-color: white;
  border: 1px solid #FBC013;
  position: relative;
  display: inline-block;
  text-align: right;
  z-index: 2;
  vertical-align: middle;
}
@media (max-width: 400px) {
  .popup .popup-container {
    height: 100%;
  }
}
.popup .popup-container .close-popup {
  width: 65px;
  height: 65px;
  position: absolute;
  top: 0;
  right: 0;
  border-left: 1px solid #FBC013;
  border-bottom: 1px solid #FBC013;
  z-index: 1;
  cursor: pointer;
}
@media (max-width: 560px) {
  .popup .popup-container .close-popup {
    width: 45px;
    height: 45px;
  }
}
.popup .popup-container .close-popup:after, .popup .popup-container .close-popup:before {
  top: 50%;
  left: 50%;
  width: 2px;
  height: 24px;
  background-color: black;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
@media (max-width: 560px) {
  .popup .popup-container .close-popup:after, .popup .popup-container .close-popup:before {
    height: 20px;
  }
}
.popup .popup-container .close-popup:after {
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
  -moz-transform: translate(-50%, -50%) rotate(45deg);
  -ms-transform: translate(-50%, -50%) rotate(45deg);
  -o-transform: translate(-50%, -50%) rotate(45deg);
  transform: translate(-50%, -50%) rotate(45deg);
}
.popup .popup-container .close-popup:before {
  -webkit-transform: translate(-50%, -50%) rotate(-45deg);
  -moz-transform: translate(-50%, -50%) rotate(-45deg);
  -ms-transform: translate(-50%, -50%) rotate(-45deg);
  -o-transform: translate(-50%, -50%) rotate(-45deg);
  transform: translate(-50%, -50%) rotate(-45deg);
}
@media (min-width: 1024px) {
  .popup .popup-container .close-popup:hover:after, .popup .popup-container .close-popup:hover:before {
    background-color: #FBC013;
    height: 28px;
  }
}
.popup .popup-container .img {
  width: 425px;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
@media (max-width: 991px) {
  .popup .popup-container .img {
    width: 300px;
  }
}
@media (max-width: 767px) {
  .popup .popup-container .img {
    display: none;
  }
}
.popup .popup-container .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.popup .popup-container .form {
  width: calc(100% - 425px);
  margin-bottom: 0;
  text-align: center;
}
@media (max-width: 991px) {
  .popup .popup-container .form {
    padding: 40px 30px;
    width: calc(100% - 300px);
  }
}
@media (max-width: 767px) {
  .popup .popup-container .form {
    width: 100%;
  }
}
@media (max-width: 380px) {
  .popup .popup-container .form {
    padding: 35px 20px;
  }
}
.popup .popup-container .form .input-style, .popup .popup-container .form .title, .popup .popup-container .form .styled-checkbox {
  max-width: 425px;
  width: 100%;
  display: inline-block;
  text-align: left;
}
.popup .popup-container .form .title {
  font-size: 30px;
  font-family: "TTFirsNeueDemiBold", sans-serif;
}
@media (max-width: 580px) {
  .popup .popup-container .form .title {
    margin-bottom: 30px;
    font-size: 28px;
  }
}
.popup .popup-container .form .title span {
  font-size: 18px;
  font-family: "TTFirsNeueRegular", sans-serif;
  width: 100%;
  display: inline-block;
  line-height: 22px;
  padding-top: 13px;
}
@media (max-width: 580px) {
  .popup .popup-container .form .title span {
    font-size: 16px;
    line-height: 20px;
    padding-top: 8px;
  }
}
.popup .popup-container .form:after {
  display: none;
}

.select-floor {
  padding: 0 !important;
  background-size: cover;
  background-position: center;
  overflow: initial;
}
.select-floor .img {
  width: 100%;
  height: auto;
  display: inline-block;
  position: relative;
}
.select-floor .img img {
  width: 100%;
  height: auto;
  display: inline-block;
}
@media (max-width: 767px) {
  .select-floor .img img {
    height: 500px;
    object-fit: cover;
    object-position: center;
  }
}
.select-floor .animation-select-floor {
  position: absolute;
  bottom: 18%;
  right: calc(19% - 6px);
  width: calc(57% + 11px);
  height: 51%;
  z-index: 3;
}
@media (max-width: 767px) {
  .select-floor .animation-select-floor {
    width: 100%;
    right: 0;
  }
}
.select-floor .animation-select-floor .info {
  position: absolute;
  top: calc(100% + 15px);
  background-color: #FBC013;
  width: 210px;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
  -moz-transform: translate(-50%, 0);
  -ms-transform: translate(-50%, 0);
  -o-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
  padding: 20px;
  -webkit-opacity: 0;
  -moz-opacity: 0;
  opacity: 0;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
@media (max-width: 991px) {
  .select-floor .animation-select-floor .info {
    -webkit-opacity: 1;
    -moz-opacity: 1;
    opacity: 1;
    top: 0;
    padding: 0 10px;
    width: 125px;
  }
}
.select-floor .animation-select-floor .info:after {
  width: 0;
  height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-bottom: 12px solid #FBC013;
  top: -12px;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
  -moz-transform: translate(-50%, 0);
  -ms-transform: translate(-50%, 0);
  -o-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
}
@media (max-width: 991px) {
  .select-floor .animation-select-floor .info:after {
    top: 50%;
    left: -16px;
    -webkit-transform: translate(0, -50%);
    -moz-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    -o-transform: translate(0, -50%);
    transform: translate(0, -50%);
    border-top: 6px solid transparent;
    border-right: 8px solid #FBC013;
    border-bottom: 6px solid transparent;
  }
}
.select-floor .animation-select-floor .info .title {
  width: 100%;
  display: inline-block;
  font-size: 24px;
  line-height: 31px;
  font-family: "TTFirsNeueDemiBold", sans-serif;
}
@media (max-width: 991px) {
  .select-floor .animation-select-floor .info .title {
    font-size: 14px;
  }
}
.select-floor .animation-select-floor .info .sub-text {
  width: 100%;
  display: inline-block;
  font-size: 16px;
  padding-bottom: 10px;
}
@media (max-width: 991px) {
  .select-floor .animation-select-floor .info .sub-text {
    display: none;
  }
}
.select-floor .animation-select-floor .info .text {
  width: 100%;
  display: inline-block;
  padding-bottom: 5px;
}
@media (max-width: 991px) {
  .select-floor .animation-select-floor .info .text {
    display: none;
  }
}
.select-floor .animation-select-floor .list {
  width: 100%;
  height: calc(10% + 3px);
  display: inline-block;
  background-color: transparent;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  position: relative;
}
@media (max-width: 991px) {
  .select-floor .animation-select-floor .list {
    height: calc(10% + 7px);
  }
}
.select-floor .animation-select-floor .list:first-child {
  height: calc(25% + 1px);
}
@media (max-width: 991px) {
  .select-floor .animation-select-floor .list:first-child {
    height: calc(10% + 7px);
  }
}
@media (min-width: 1023px) {
  .select-floor .animation-select-floor .list:hover {
    background-color: rgba(251, 192, 19, 0.6);
  }
  .select-floor .animation-select-floor .list:hover .info {
    -webkit-opacity: 1;
    -moz-opacity: 1;
    opacity: 1;
  }
}
.select-floor .select-content {
  width: 100%;
  height: auto;
  display: inline-block;
}
.select-floor .select-content .info-btn {
  width: 100%;
  height: auto;
  position: absolute;
  top: 30%;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
  -moz-transform: translate(-50%, 0);
  -ms-transform: translate(-50%, 0);
  -o-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
  z-index: 3;
  cursor: pointer;
  max-width: 1320px;
  padding: 0 20px;
}
@media (max-width: 767px) {
  .select-floor .select-content .info-btn {
    top: 70px;
  }
  .select-floor .select-content .info-btn br {
    display: none;
  }
}
.select-floor .select-content .info-btn .select-floor-hint {
  width: auto;
  height: auto;
  display: inline-block;
  position: relative;
  padding-right: 69px;
}
@media (max-width: 991px) {
  .select-floor .select-content .info-btn .select-floor-hint {
    font-size: 28px;
    line-height: 30px;
    padding-right: 60px;
  }
}
.select-floor .select-content .info-btn .select-floor-hint p {
  font-size: 44px;
  letter-spacing: 0;
  line-height: 44px;
}
@media (max-width: 1190px) {
  .select-floor .select-content .info-btn .select-floor-hint p {
    font-size: 36px;
    line-height: 35px;
  }
}
@media (max-width: 991px) {
  .select-floor .select-content .info-btn .select-floor-hint p {
    font-size: 28px;
    line-height: 30px;
  }
}
@media (max-width: 767px) {
  .select-floor .select-content .info-btn .select-floor-hint p {
    font-size: 20px;
    line-height: 28px;
  }
}
.select-floor .select-content .info-btn .select-floor-hint .icon-hint {
  width: 42px;
  height: 42px;
  display: inline-block;
  border: 1px solid #FBC013;
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translate(0, -50%);
  -moz-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  -o-transform: translate(0, -50%);
  transform: translate(0, -50%);
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  display: none;
}
@media (max-width: 767px) {
  .select-floor .select-content .info-btn .select-floor-hint .icon-hint {
    width: 35px;
    height: 35px;
  }
}
.select-floor .select-content .info-btn .select-floor-hint .icon-hint:after {
  width: 100%;
  height: 100%;
  background-position: center;
  background-image: url(../img/arrowright.svg);
}

.slider-floor img {
  width: 100%;
  height: auto;
  display: inline-block;
  vertical-align: middle;
}
.slider-floor img.compass {
  width: 95px;
  margin-top: 55px;
}
.slider-floor .img {
  width: calc(100% - 200px);
  height: auto;
  display: inline-block;
  vertical-align: middle;
  text-align: left;
  position: relative;
}
@media (max-width: 991px) {
  .slider-floor .img {
    width: calc(100% - 100px);
    height: auto;
  }
}
@media (max-width: 767px) {
  .slider-floor .img {
    width: 100%;
    height: auto;
    max-width: 500px;
    margin-top: 20px;
  }
}
.slider-floor .img .plans {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}
@media (max-width: 767px) {
  .slider-floor .img .plans {
    pointer-events: all;
  }
}
.slider-floor .img .plans li {
  background: transparent;
  position: absolute;
  cursor: pointer;
}
.slider-floor .img .plans li.active .info {
  -webkit-opacity: 1;
  -moz-opacity: 1;
  opacity: 1;
}
.slider-floor .img .plans li .info {
  position: absolute;
  top: calc(100% + 15px);
  background-color: #FBC013;
  width: 210px;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
  -moz-transform: translate(-50%, 0);
  -ms-transform: translate(-50%, 0);
  -o-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
  padding: 20px;
  -webkit-opacity: 0;
  -moz-opacity: 0;
  opacity: 0;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
@media (max-width: 991px) {
  .slider-floor .img .plans li .info {
    -webkit-opacity: 1;
    -moz-opacity: 1;
    opacity: 1;
    top: 0;
    padding: 0 10px;
    width: 100px;
    left: 0;
    -webkit-transform: translate(0, 0);
    -moz-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    -o-transform: translate(0, 0);
    transform: translate(0, 0);
  }
}
.slider-floor .img .plans li .info:after {
  width: 0;
  height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-bottom: 12px solid #FBC013;
  top: -12px;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
  -moz-transform: translate(-50%, 0);
  -ms-transform: translate(-50%, 0);
  -o-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
}
@media (max-width: 991px) {
  .slider-floor .img .plans li .info:after {
    top: 50%;
    left: -16px;
    -webkit-transform: translate(0, -50%);
    -moz-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    -o-transform: translate(0, -50%);
    transform: translate(0, -50%);
    border-top: 6px solid transparent;
    border-right: 8px solid #FBC013;
    border-bottom: 6px solid transparent;
  }
}
.slider-floor .img .plans li .info .title {
  width: 100%;
  display: inline-block;
  font-size: 24px;
  line-height: 31px;
  font-family: "TTFirsNeueDemiBold", sans-serif;
}
@media (max-width: 991px) {
  .slider-floor .img .plans li .info .title {
    font-size: 14px;
  }
}
.slider-floor .img .plans li .info .sub-text {
  width: 100%;
  display: inline-block;
  font-size: 16px;
  padding-bottom: 10px;
}
@media (max-width: 991px) {
  .slider-floor .img .plans li .info .sub-text {
    display: none;
  }
}
.slider-floor .img .plans li .info .text {
  width: 100%;
  display: inline-block;
  padding-bottom: 5px;
}
@media (max-width: 991px) {
  .slider-floor .img .plans li .info .text {
    display: none;
  }
}
.slider-floor .img .plans li.room-1 {
  width: 24%;
  height: 20%;
  top: 19%;
  left: 0;
}
@media (max-width: 767px) {
  .slider-floor .img .plans li.room-1 {
    width: 37%;
    height: 21%;
    top: 0;
    right: 0;
    left: initial;
  }
}
@media (max-width: 991px) {
  .slider-floor .img .plans li.room-1 .info {
    left: initial;
    right: 0;
  }
}
@media (max-width: 767px) {
  .slider-floor .img .plans li.room-1 .info {
    top: 50%;
  }
}
.slider-floor .img .plans li.room-2 {
  width: 14%;
  height: 38%;
  bottom: 24%;
  left: 0;
}
@media (max-width: 767px) {
  .slider-floor .img .plans li.room-2 {
    width: 63%;
    height: 11%;
    top: 0;
    left: 0;
    bottom: initial;
  }
}
@media (max-width: 991px) {
  .slider-floor .img .plans li.room-2 .info {
    left: 30px;
  }
}
@media (max-width: 767px) {
  .slider-floor .img .plans li.room-2 .info {
    left: 50%;
  }
}
.slider-floor .img .plans li.room-3 {
  width: 11%;
  height: 24%;
  bottom: 24%;
  left: 13%;
}
@media (max-width: 767px) {
  .slider-floor .img .plans li.room-3 {
    width: 42%;
    height: 10%;
    top: 11%;
    bottom: initial;
    left: 0;
  }
}
@media (max-width: 991px) {
  .slider-floor .img .plans li.room-3 .info {
    left: 50%;
    -webkit-transform: translate(-50%, 0);
    -moz-transform: translate(-50%, 0);
    -ms-transform: translate(-50%, 0);
    -o-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
  }
  .slider-floor .img .plans li.room-3 .info:after {
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 12px solid #FBC013;
    top: -12px;
    left: 50%;
    -webkit-transform: translate(-50%, 0);
    -moz-transform: translate(-50%, 0);
    -ms-transform: translate(-50%, 0);
    -o-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
  }
}
@media (max-width: 767px) {
  .slider-floor .img .plans li.room-3 .info {
    top: 30px;
  }
}
.slider-floor .img .plans li.room-4 {
  width: 11%;
  height: 24%;
  bottom: 24%;
  left: 24%;
}
@media (max-width: 767px) {
  .slider-floor .img .plans li.room-4 {
    width: 42%;
    height: 10%;
    top: 21%;
    bottom: initial;
    left: 0;
  }
}
@media (max-width: 360px) {
  .slider-floor .img .plans li.room-4 {
    top: 20%;
  }
}
@media (max-width: 991px) {
  .slider-floor .img .plans li.room-4 .info {
    left: 50%;
    -webkit-transform: translate(-50%, 0);
    -moz-transform: translate(-50%, 0);
    -ms-transform: translate(-50%, 0);
    -o-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
    top: 45px;
  }
  .slider-floor .img .plans li.room-4 .info:after {
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 12px solid #FBC013;
    top: -12px;
    left: 50%;
    -webkit-transform: translate(-50%, 0);
    -moz-transform: translate(-50%, 0);
    -ms-transform: translate(-50%, 0);
    -o-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
  }
}
.slider-floor .img .plans li.room-5 {
  width: 12%;
  height: 38%;
  bottom: 24%;
  left: 35%;
}
@media (max-width: 767px) {
  .slider-floor .img .plans li.room-5 {
    width: 64%;
    height: calc(12% - 5px);
    top: 31%;
    bottom: initial;
    left: 0;
  }
}
@media (max-width: 410px) {
  .slider-floor .img .plans li.room-5 {
    top: 30%;
  }
}
@media (max-width: 991px) {
  .slider-floor .img .plans li.room-5 .info:after {
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 12px solid #FBC013;
    top: -12px;
    left: 50%;
    -webkit-transform: translate(-50%, 0);
    -moz-transform: translate(-50%, 0);
    -ms-transform: translate(-50%, 0);
    -o-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
  }
}
@media (max-width: 767px) {
  .slider-floor .img .plans li.room-5 .info {
    top: 30px;
    left: 50%;
    -webkit-transform: translate(-50%, 0);
    -moz-transform: translate(-50%, 0);
    -ms-transform: translate(-50%, 0);
    -o-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
  }
}
.slider-floor .img .plans li.room-6 {
  width: 12%;
  height: 38%;
  bottom: 24%;
  left: 47%;
}
@media (max-width: 767px) {
  .slider-floor .img .plans li.room-6 {
    width: 64%;
    height: calc(12% - 5px);
    top: 43%;
    bottom: initial;
    left: 0;
  }
}
@media (max-width: 410px) {
  .slider-floor .img .plans li.room-6 {
    top: 42%;
  }
}
@media (max-width: 360px) {
  .slider-floor .img .plans li.room-6 {
    top: 41%;
  }
}
@media (max-width: 991px) {
  .slider-floor .img .plans li.room-6 .info {
    top: 40px;
  }
  .slider-floor .img .plans li.room-6 .info:after {
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 12px solid #FBC013;
    top: -12px;
    left: 50%;
    -webkit-transform: translate(-50%, 0);
    -moz-transform: translate(-50%, 0);
    -ms-transform: translate(-50%, 0);
    -o-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
  }
}
@media (max-width: 767px) {
  .slider-floor .img .plans li.room-6 .info {
    left: 50%;
    -webkit-transform: translate(-50%, 0);
    -moz-transform: translate(-50%, 0);
    -ms-transform: translate(-50%, 0);
    -o-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
  }
}
.slider-floor .img .plans li.room-7 {
  width: 11%;
  height: 24%;
  bottom: 24%;
  right: 30%;
}
@media (max-width: 767px) {
  .slider-floor .img .plans li.room-7 {
    width: 42%;
    height: calc(10% - 5px);
    bottom: initial;
    left: 0;
    top: calc(55% - 5px);
    right: initial;
  }
}
@media (max-width: 410px) {
  .slider-floor .img .plans li.room-7 {
    top: calc(53% - 5px);
  }
}
@media (max-width: 360px) {
  .slider-floor .img .plans li.room-7 {
    top: calc(52% - 5px);
  }
}
@media (max-width: 991px) {
  .slider-floor .img .plans li.room-7 .info {
    top: 15px;
  }
  .slider-floor .img .plans li.room-7 .info:after {
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 12px solid #FBC013;
    top: -12px;
    left: 50%;
    -webkit-transform: translate(-50%, 0);
    -moz-transform: translate(-50%, 0);
    -ms-transform: translate(-50%, 0);
    -o-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
  }
}
@media (max-width: 767px) {
  .slider-floor .img .plans li.room-7 .info {
    top: 40px;
    left: 50%;
    -webkit-transform: translate(-50%, 0);
    -moz-transform: translate(-50%, 0);
    -ms-transform: translate(-50%, 0);
    -o-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
  }
}
.slider-floor .img .plans li.room-8 {
  width: 11%;
  height: 24%;
  bottom: 24%;
  right: 19%;
}
@media (max-width: 767px) {
  .slider-floor .img .plans li.room-8 {
    width: 42%;
    height: 10%;
    bottom: initial;
    top: calc(64% + 4px);
    left: 0;
    right: initial;
  }
}
@media (max-width: 410px) {
  .slider-floor .img .plans li.room-8 {
    top: calc(62% - 5px);
  }
}
@media (max-width: 410px) {
  .slider-floor .img .plans li.room-8 {
    top: calc(61% - 5px);
  }
}
@media (max-width: 991px) {
  .slider-floor .img .plans li.room-8 .info {
    top: 60px;
  }
  .slider-floor .img .plans li.room-8 .info:after {
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 12px solid #FBC013;
    top: -12px;
    left: 50%;
    -webkit-transform: translate(-50%, 0);
    -moz-transform: translate(-50%, 0);
    -ms-transform: translate(-50%, 0);
    -o-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
  }
}
@media (max-width: 767px) {
  .slider-floor .img .plans li.room-8 .info {
    top: 40px;
    left: 50%;
    -webkit-transform: translate(-50%, 0);
    -moz-transform: translate(-50%, 0);
    -ms-transform: translate(-50%, 0);
    -o-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
  }
}
.slider-floor .img .plans li.room-9 {
  width: 19%;
  height: 38%;
  bottom: 24%;
  right: 0;
}
@media (max-width: 767px) {
  .slider-floor .img .plans li.room-9 {
    width: 64%;
    height: 17%;
    top: 74%;
    bottom: initial;
    right: initial;
    left: 0;
  }
}
@media (max-width: 410px) {
  .slider-floor .img .plans li.room-9 {
    top: 72%;
  }
}
@media (max-width: 360px) {
  .slider-floor .img .plans li.room-9 {
    top: 71%;
  }
}
.slider-floor .img .plans li.room-9 .info {
  left: initial;
  right: 0;
  -webkit-transform: translate(0, 0);
  -moz-transform: translate(0, 0);
  -ms-transform: translate(0, 0);
  -o-transform: translate(0, 0);
  transform: translate(0, 0);
}
@media (max-width: 767px) {
  .slider-floor .img .plans li.room-9 .info {
    top: 40px;
  }
}
.slider-floor .img .mobile-plan {
  width: 100%;
  height: auto;
  display: none;
}
@media (max-width: 767px) {
  .slider-floor .img .mobile-plan {
    display: inline-block;
  }
}
@media (max-width: 767px) {
  .slider-floor .img svg {
    display: none;
  }
}
.slider-floor .img svg #Hover_yellow .st66 {
  fill: transparent;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  cursor: pointer;
}
.slider-floor .img svg #Hover_yellow .st66:hover {
  fill: #FBC013;
}
.slider-floor .pagination {
  width: auto;
  height: 300px;
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translate(0, -50%);
  -moz-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  -o-transform: translate(0, -50%);
  transform: translate(0, -50%);
  padding: 50px 0;
  z-index: 2;
}
@media (max-width: 767px) {
  .slider-floor .pagination {
    top: 0;
    left: 0;
    -webkit-transform: translate(0, 0);
    -moz-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    -o-transform: translate(0, 0);
    transform: translate(0, 0);
    height: auto;
    width: 100%;
    padding: 0;
    position: relative;
    margin-bottom: 25px;
  }
}
.slider-floor .pagination p {
  -webkit-transform: translate(-50%, -50%) rotate(-90deg);
  -moz-transform: translate(-50%, -50%) rotate(-90deg);
  -ms-transform: translate(-50%, -50%) rotate(-90deg);
  -o-transform: translate(-50%, -50%) rotate(-90deg);
  transform: translate(-50%, -50%) rotate(-90deg);
  color: #FBC013;
  font-family: "TTFirsNeueDemiBold", sans-serif;
  font-size: 30px;
  line-height: 38px;
  text-align: center;
  position: absolute;
  top: 50%;
  left: 20px;
  width: 200px;
}
@media (max-width: 767px) {
  .slider-floor .pagination p {
    -webkit-transform: translate(0, 0) rotate(0deg);
    -moz-transform: translate(0, 0) rotate(0deg);
    -ms-transform: translate(0, 0) rotate(0deg);
    -o-transform: translate(0, 0) rotate(0deg);
    transform: translate(0, 0) rotate(0deg);
    position: relative;
    width: 100%;
    text-align: center;
    padding: 0 50px;
    left: 0;
    font-size: 23px;
  }
}
.slider-floor .pagination .btn {
  width: 42px;
  height: 42px;
  display: inline-block;
  border: 1px solid #FBC013;
  position: absolute;
  left: 0;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  z-index: 1;
}
.slider-floor .pagination .btn:after {
  width: 100%;
  height: 100%;
  top: 50%;
  left: 50%;
  background-position: center;
  transform: translate(-50%, -50%) rotate(90deg);
}
.slider-floor .pagination .btn.prev {
  top: 0;
}
@media (max-width: 767px) {
  .slider-floor .pagination .btn.prev {
    left: initial;
    right: 0;
  }
}
.slider-floor .pagination .btn.prev:after {
  background-image: url(../img/arrowleft.svg);
}
@media (max-width: 767px) {
  .slider-floor .pagination .btn.prev:after {
    -webkit-transform: translate(-50%, -50%) rotate(180deg);
    -moz-transform: translate(-50%, -50%) rotate(180deg);
    -ms-transform: translate(-50%, -50%) rotate(180deg);
    -o-transform: translate(-50%, -50%) rotate(180deg);
    transform: translate(-50%, -50%) rotate(180deg);
  }
}
.slider-floor .pagination .btn.next {
  bottom: 0;
}
@media (max-width: 767px) {
  .slider-floor .pagination .btn.next {
    left: 0;
    right: 0;
  }
}
.slider-floor .pagination .btn.next:after {
  background-image: url(../img/arrowright.svg);
}
@media (max-width: 767px) {
  .slider-floor .pagination .btn.next:after {
    -webkit-transform: translate(-50%, -50%) rotate(-180deg);
    -moz-transform: translate(-50%, -50%) rotate(-180deg);
    -ms-transform: translate(-50%, -50%) rotate(-180deg);
    -o-transform: translate(-50%, -50%) rotate(-180deg);
    transform: translate(-50%, -50%) rotate(-180deg);
  }
}
@media (min-width: 1024px) {
  .slider-floor .pagination .btn:hover {
    background-color: #FBC013;
  }
}

.slider-floor-content {
  height: 100%;
}
@media (min-width: 991px) and (max-height: 777px) {
  .slider-floor-content {
    height: 777px;
  }
}
@media (max-width: 991px) and (max-height: 630px) {
  .slider-floor-content {
    height: 630px;
  }
}
@media (max-width: 767px) {
  .slider-floor-content {
    height: auto;
    display: inline-block;
    padding-bottom: 50px;
  }
}
.slider-floor-content .slider-floor,
.slider-floor-content .floor,
.slider-floor-content .container-fluid {
  height: 100%;
}
@media (max-width: 767px) {
  .slider-floor-content .slider-floor,
.slider-floor-content .floor,
.slider-floor-content .container-fluid {
    height: auto;
  }
}
.slider-floor-content .slider-floor {
  position: relative;
}
@media (max-width: 767px) {
  .slider-floor-content .slider-floor {
    margin-top: 30px;
  }
}
.slider-floor-content .slider-floor .btn-floor {
  display: none;
}
@media (max-width: 420px) {
  .slider-floor-content .slider-floor .btn-floor {
    display: inline-block;
    position: relative;
    left: 0;
    width: 100%;
    text-align: center;
    margin-bottom: 20px;
  }
  .slider-floor-content .slider-floor .btn-floor .btn {
    left: 50%;
    -webkit-transform: translate(-50%, 0);
    -moz-transform: translate(-50%, 0);
    -ms-transform: translate(-50%, 0);
    -o-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
  }
}
.slider-floor-content .floor {
  text-align: right;
  width: 100%;
  display: inline-block;
}
@media (max-width: 767px) {
  .slider-floor-content .floor {
    text-align: center;
  }
}
.slider-floor-content .floor.none {
  opacity: 0;
  pointer-events: none;
}
@media (min-width: 767px) {
  .slider-floor-content .floor:before {
    content: "";
    display: inline-block;
    vertical-align: middle;
    height: 100%;
  }
}

.popup-floor {
  width: 100%;
  height: 100%;
  display: inline-block;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 2;
  padding: 130px 0 50px;
  -webkit-opacity: 0;
  -moz-opacity: 0;
  opacity: 0;
  pointer-events: none;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  text-align: right;
  background-color: #F6F6F6;
  min-width: 320px;
}
@media (max-width: 991px) {
  .popup-floor {
    padding: 50px 0;
  }
}
.popup-floor.active {
  -webkit-opacity: 1;
  -moz-opacity: 1;
  opacity: 1;
}
.popup-floor.active .scroll-floor,
.popup-floor.active .popup-floor-info {
  pointer-events: all;
}
.popup-floor .btn-floor {
  display: none !important;
}
@media (max-width: 420px) {
  .popup-floor .btn-floor {
    display: inline-block !important;
    position: relative !important;
    left: 0;
    width: 100% !important;
    margin-top: 20px !important;
    margin-bottom: 0 !important;
  }
  .popup-floor .btn-floor .btn {
    left: 50% !important;
    -webkit-transform: translate(-50%, 0);
    -moz-transform: translate(-50%, 0);
    -ms-transform: translate(-50%, 0);
    -o-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
  }
}
.popup-floor .pagination {
  width: auto;
  height: 300px;
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translate(0, -50%);
  -moz-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  -o-transform: translate(0, -50%);
  transform: translate(0, -50%);
  padding: 50px 0;
  z-index: 2;
}
@media (max-width: 767px) {
  .popup-floor .pagination {
    top: 0;
    left: 0;
    -webkit-transform: translate(0, 0);
    -moz-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    -o-transform: translate(0, 0);
    transform: translate(0, 0);
    height: auto;
    width: 100%;
    padding: 0;
    position: relative;
    margin: 15px 0 35px;
  }
}
.popup-floor .pagination p {
  -webkit-transform: translate(-50%, -50%) rotate(-90deg);
  -moz-transform: translate(-50%, -50%) rotate(-90deg);
  -ms-transform: translate(-50%, -50%) rotate(-90deg);
  -o-transform: translate(-50%, -50%) rotate(-90deg);
  transform: translate(-50%, -50%) rotate(-90deg);
  color: #FBC013;
  font-family: "TTFirsNeueDemiBold", sans-serif;
  font-size: 30px;
  line-height: 38px;
  text-align: center;
  position: absolute;
  top: 50%;
  left: 20px;
  width: 200px;
}
@media (max-width: 767px) {
  .popup-floor .pagination p {
    -webkit-transform: translate(0, 0) rotate(0deg);
    -moz-transform: translate(0, 0) rotate(0deg);
    -ms-transform: translate(0, 0) rotate(0deg);
    -o-transform: translate(0, 0) rotate(0deg);
    transform: translate(0, 0) rotate(0deg);
    position: relative;
    width: 100%;
    text-align: center;
    padding: 0 50px;
    left: 0;
    font-size: 23px;
  }
}
.popup-floor .pagination .btn {
  width: 42px;
  height: 42px;
  display: inline-block;
  border: 1px solid #FBC013;
  position: absolute;
  left: 0;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  z-index: 1;
}
.popup-floor .pagination .btn:after {
  width: 100%;
  height: 100%;
  top: 50%;
  left: 50%;
  background-position: center;
  transform: translate(-50%, -50%) rotate(90deg);
}
.popup-floor .pagination .btn.prev {
  top: 0;
}
@media (max-width: 767px) {
  .popup-floor .pagination .btn.prev {
    left: initial;
    right: 0;
  }
}
.popup-floor .pagination .btn.prev:after {
  background-image: url(../img/arrowleft.svg);
}
@media (max-width: 767px) {
  .popup-floor .pagination .btn.prev:after {
    -webkit-transform: translate(-50%, -50%) rotate(180deg);
    -moz-transform: translate(-50%, -50%) rotate(180deg);
    -ms-transform: translate(-50%, -50%) rotate(180deg);
    -o-transform: translate(-50%, -50%) rotate(180deg);
    transform: translate(-50%, -50%) rotate(180deg);
  }
}
.popup-floor .pagination .btn.next {
  bottom: 0;
}
@media (max-width: 767px) {
  .popup-floor .pagination .btn.next {
    left: 0;
  }
}
.popup-floor .pagination .btn.next:after {
  background-image: url(../img/arrowright.svg);
}
@media (max-width: 767px) {
  .popup-floor .pagination .btn.next:after {
    -webkit-transform: translate(-50%, -50%) rotate(-180deg);
    -moz-transform: translate(-50%, -50%) rotate(-180deg);
    -ms-transform: translate(-50%, -50%) rotate(-180deg);
    -o-transform: translate(-50%, -50%) rotate(-180deg);
    transform: translate(-50%, -50%) rotate(-180deg);
  }
}
@media (min-width: 1024px) {
  .popup-floor .pagination .btn:hover {
    background-color: #FBC013;
  }
}
.popup-floor .scroll-floor {
  width: 100%;
  height: 100%;
  display: inline-block;
  overflow: auto;
}
.popup-floor .scroll-floor::-webkit-scrollbar {
  width: 5px;
}
.popup-floor .scroll-floor::-webkit-scrollbar-track {
  background-color: white;
}
.popup-floor .scroll-floor::-webkit-scrollbar-thumb {
  background-color: #FBC013;
}
.popup-floor .scroll-floor:before {
  content: "";
  display: inline-block;
  vertical-align: middle;
  height: 100%;
}
.popup-floor .wid-100 {
  vertical-align: middle;
}
.popup-floor .container-fluid .popup-floor-info {
  width: 100%;
  height: auto;
  display: inline-block;
  vertical-align: middle;
  padding-left: 200px;
  text-align: left;
  position: relative;
}
@media (max-width: 1140px) {
  .popup-floor .container-fluid .popup-floor-info {
    padding-left: 100px;
  }
}
@media (max-width: 767px) {
  .popup-floor .container-fluid .popup-floor-info {
    padding-left: 0;
  }
}
.popup-floor .container-fluid .popup-floor-info .popup-floor-img {
  width: calc(100% - 460px);
  height: auto;
  display: inline-block;
  vertical-align: top;
  text-align: center;
  height: auto;
  padding-left: 40px;
}
@media (max-width: 991px) {
  .popup-floor .container-fluid .popup-floor-info .popup-floor-img {
    padding-left: 30px;
    width: calc(100% - 400px);
  }
}
@media (max-width: 900px) {
  .popup-floor .container-fluid .popup-floor-info .popup-floor-img {
    width: calc(100% - 300px);
  }
}
@media (max-width: 666px) {
  .popup-floor .container-fluid .popup-floor-info .popup-floor-img {
    width: 100%;
    height: auto !important;
    padding-left: 0;
  }
}
.popup-floor .container-fluid .popup-floor-info .popup-floor-img.mini-slider {
  padding-right: 120px;
  position: relative;
}
@media (max-width: 991px) {
  .popup-floor .container-fluid .popup-floor-info .popup-floor-img.mini-slider {
    padding-right: 95px;
  }
}
.popup-floor .container-fluid .popup-floor-info .popup-floor-img.mini-slider img {
  display: none;
}
.popup-floor .container-fluid .popup-floor-info .popup-floor-img.mini-slider img.active {
  display: block;
}
.popup-floor .container-fluid .popup-floor-info .popup-floor-img.mini-slider ul {
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: translate(0, -50%);
  -moz-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  -o-transform: translate(0, -50%);
  transform: translate(0, -50%);
  width: auto;
  height: auto;
}
.popup-floor .container-fluid .popup-floor-info .popup-floor-img.mini-slider ul li {
  padding-bottom: 10px;
  cursor: pointer;
}
.popup-floor .container-fluid .popup-floor-info .popup-floor-img.mini-slider ul li p {
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
.popup-floor .container-fluid .popup-floor-info .popup-floor-img.mini-slider ul li.active p {
  color: #FBC013;
  font-family: "TTFirsNeueDemiBold", sans-serif;
}
@media (min-width: 991px) {
  .popup-floor .container-fluid .popup-floor-info .popup-floor-img.mini-slider ul li:hover p {
    color: #FBC013;
  }
}
.popup-floor .container-fluid .popup-floor-info .popup-floor-img img {
  width: auto;
  height: auto;
  display: inline-block;
  max-width: 100%;
  max-height: 100%;
}
@media (max-width: 666px) {
  .popup-floor .container-fluid .popup-floor-info .popup-floor-img img {
    width: 100%;
    height: auto;
    max-width: initial;
    max-height: 450px;
  }
}
.popup-floor .container-fluid .popup-floor-info .popup-floor-text {
  width: 460px;
  height: auto;
  display: inline-block;
  background-color: white;
  padding: 30px;
  vertical-align: top;
}
@media (max-width: 991px) {
  .popup-floor .container-fluid .popup-floor-info .popup-floor-text {
    padding: 20px;
    width: 400px;
  }
}
@media (max-width: 900px) {
  .popup-floor .container-fluid .popup-floor-info .popup-floor-text {
    width: 300px;
  }
}
@media (max-width: 666px) {
  .popup-floor .container-fluid .popup-floor-info .popup-floor-text {
    width: 100%;
    margin-bottom: 30px;
  }
}
.popup-floor .container-fluid .popup-floor-info .popup-floor-text .title {
  font-size: 30px;
  line-height: 34px;
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 10px;
}
@media (max-width: 991px) {
  .popup-floor .container-fluid .popup-floor-info .popup-floor-text .title {
    font-size: 22px;
    line-height: 29px;
  }
}
.popup-floor .container-fluid .popup-floor-info .popup-floor-text .title:after {
  width: 90px;
  height: 4px;
  bottom: 0;
  left: 0;
  background-color: #FBC013;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
}
.popup-floor .container-fluid .popup-floor-info .popup-floor-text .important-info {
  width: calc(100% - 180px);
  height: auto;
  display: inline-block;
  vertical-align: top;
  text-align: right;
  padding-left: 15px;
}
@media (max-width: 900px) {
  .popup-floor .container-fluid .popup-floor-info .popup-floor-text .important-info {
    width: 100%;
    text-align: left;
  }
}
@media (max-width: 666px) {
  .popup-floor .container-fluid .popup-floor-info .popup-floor-text .important-info {
    width: calc(100% - 180px);
    text-align: right;
  }
}
@media (max-width: 435px) {
  .popup-floor .container-fluid .popup-floor-info .popup-floor-text .important-info {
    width: 100%;
    text-align: left;
  }
}
.popup-floor .container-fluid .popup-floor-info .popup-floor-text .important-info p:first-child {
  margin-bottom: 20px;
}
@media (max-width: 900px) {
  .popup-floor .container-fluid .popup-floor-info .popup-floor-text .important-info p:first-child {
    margin-bottom: 10px;
  }
}
.popup-floor .container-fluid .popup-floor-info .popup-floor-text ul {
  width: 180px;
  height: auto;
  display: inline-block;
  vertical-align: top;
}
.popup-floor .container-fluid .popup-floor-info .popup-floor-text ul.none-info {
  display: none;
}
.popup-floor .container-fluid .popup-floor-info .popup-floor-text ul.none-info.active {
  display: inline-block;
}
@media (max-width: 900px) {
  .popup-floor .container-fluid .popup-floor-info .popup-floor-text ul {
    width: 100%;
    padding-bottom: 20px;
  }
}
@media (max-width: 666px) {
  .popup-floor .container-fluid .popup-floor-info .popup-floor-text ul {
    width: 180px;
  }
}
@media (max-width: 435px) {
  .popup-floor .container-fluid .popup-floor-info .popup-floor-text ul {
    width: 100%;
    padding-bottom: 20px;
  }
}
.popup-floor .container-fluid .popup-floor-info .popup-floor-text ul li {
  width: 180px;
  height: auto;
  display: inline-block;
  padding-left: 15px;
  position: relative;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-align-items: center;
  align-items: center;
  margin-bottom: 10px;
}
.popup-floor .container-fluid .popup-floor-info .popup-floor-text ul li:after {
  width: 3px;
  height: 3px;
  top: 11px;
  left: 0;
  background-color: #2A2A3C;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
}
.popup-floor .container-fluid .popup-floor-info .popup-floor-text ul li p {
  font-size: 16px;
  line-height: 20px;
}
.popup-floor .container-fluid .popup-floor-info .popup-floor-text ul li p span {
  font-size: 12px;
}
.popup-floor .container-fluid .popup-floor-info .location-floor-text {
  width: auto;
  height: auto;
  display: inline-block;
  margin-bottom: 30px;
  vertical-align: bottom;
  margin-right: 50px;
}
@media (max-width: 925px) {
  .popup-floor .container-fluid .popup-floor-info .location-floor-text {
    margin-right: 0;
  }
}
@media (max-width: 470px) {
  .popup-floor .container-fluid .popup-floor-info .location-floor-text {
    text-align: center;
  }
}
.popup-floor .container-fluid .popup-floor-info .location-floor {
  width: 100%;
  height: auto;
  display: inline-block;
  padding-top: 30px;
}
.popup-floor .container-fluid .popup-floor-info .location-floor .location-floor-icon {
  width: auto;
  height: auto;
  display: inline-block;
  vertical-align: middle;
  margin-right: 20px;
}
.popup-floor .container-fluid .popup-floor-info .location-floor .location-floor-icon svg .st77 {
  fill: transparent;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  cursor: pointer;
}
.popup-floor .container-fluid .popup-floor-info .location-floor .location-floor-icon svg .st77.active {
  fill: #FBC013;
}
.popup-floor .container-fluid .popup-floor-info .location-floor .location-floor-icon svg .st77:hover {
  fill: #FBC013;
}
.popup-floor .container-fluid .popup-floor-info .location-floor .location-floor-icon p {
  margin-bottom: 10px;
}
.popup-floor .container-fluid .popup-floor-info .location-floor .location-floor-btn {
  width: auto;
  height: auto;
  display: inline-block;
  text-align: center;
  min-width: 270px;
  vertical-align: bottom;
  margin-bottom: 30px;
}
@media (max-width: 925px) {
  .popup-floor .container-fluid .popup-floor-info .location-floor .location-floor-btn {
    min-width: 100%;
    width: 100%;
  }
}
.popup-floor .container-fluid .popup-floor-info .location-floor .location-floor-btn .btn {
  width: 100%;
  height: 64px;
  display: inline-block;
  background-color: #FBC013;
  border: 1px solid #FBC013;
  text-align: center;
  padding: 17px 15px;
  max-width: 270px;
  letter-spacing: 0.1em;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
@media (max-width: 767px) {
  .popup-floor .container-fluid .popup-floor-info .location-floor .location-floor-btn .btn {
    height: 50px;
    padding: 12px 10px;
    max-width: 230px;
    bottom: 30px;
  }
}
@media (min-width: 991px) {
  .popup-floor .container-fluid .popup-floor-info .location-floor .location-floor-btn .btn:hover {
    background-color: white;
  }
}
.popup-floor .container-fluid .popup-floor-info .location-floor .location-floor-download {
  width: auto;
  height: auto;
  display: inline-block;
  vertical-align: middle;
  margin-top: 55px;
}
@media (max-width: 470px) {
  .popup-floor .container-fluid .popup-floor-info .location-floor .location-floor-download {
    width: 100%;
    margin-top: 25px;
  }
}
.popup-floor .container-fluid .popup-floor-info .location-floor .location-floor-download p {
  display: inline-block;
  vertical-align: middle;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
@media (min-width: 991px) {
  .popup-floor .container-fluid .popup-floor-info .location-floor .location-floor-download:hover p {
    color: #FBC013;
  }
}
.popup-floor .container-fluid .popup-floor-info .location-floor .location-floor-download .icon {
  width: 25px;
  height: 25px;
  display: inline-block;
  vertical-align: middle;
  background-image: url(../img/download.svg);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  margin-right: 10px;
}

.floor-page header {
  padding: 15px 0;
}
@media (max-width: 767px) {
  .floor-page header {
    padding: 10px 0;
  }
}
.floor-page header .space-between {
  position: relative;
}
.floor-page .burger {
  display: inline-block;
}
.floor-page .logo {
  position: absolute;
  top: 11px;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
  -moz-transform: translate(-50%, 0);
  -ms-transform: translate(-50%, 0);
  -o-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
}
@media (max-width: 991px) {
  .floor-page .logo {
    left: initial;
    top: initial;
    -webkit-transform: translate(0, 0);
    -moz-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    -o-transform: translate(0, 0);
    transform: translate(0, 0);
    position: relative;
  }
}
.floor-page .logo i {
  color: black;
  font-size: 46px;
}
@media (max-width: 991px) {
  .floor-page .logo i {
    font-size: 30px;
  }
}
@media (max-width: 767px) {
  .floor-page .logo i {
    font-size: 22px;
  }
}
.floor-page .phone {
  color: #2A2A3C;
  padding: 20px;
}
.floor-page .burger span, .floor-page .burger span::after, .floor-page .burger span::before {
  background-color: black;
}
.floor-page .btn-floor {
  width: 250px;
  height: 64px;
  display: inline-block;
  position: relative;
}
.floor-page .btn-floor .btn {
  width: 100%;
  height: 64px;
  display: inline-block;
  background-color: transparent;
  border: 1px solid #FBC013;
  text-align: center;
  padding: 20px 15px;
  max-width: 270px;
  letter-spacing: 0.1em;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  position: absolute;
  top: 0;
  left: 0;
}
@media (max-width: 991px) {
  .floor-page .btn-floor .btn {
    padding: 10px 10px;
    max-width: 250px;
    height: auto;
  }
}
@media (max-width: 767px) {
  .floor-page .btn-floor .btn {
    height: 40px;
    padding: 8px 10px;
    max-width: 185px;
    bottom: 30px;
    font-size: 13px;
  }
}
.floor-page .btn-floor .btn.select-floor-btn.none {
  opacity: 0;
}
.floor-page .btn-floor .btn.close-popup-floor {
  -webkit-opacity: 0;
  -moz-opacity: 0;
  opacity: 0;
  pointer-events: none;
}
.floor-page .btn-floor .btn.close-popup-floor.active {
  -webkit-opacity: 1;
  -moz-opacity: 1;
  opacity: 1;
  pointer-events: all;
}
@media (min-width: 991px) {
  .floor-page .btn-floor .btn:hover {
    background-color: #FBC013;
  }
}
@media (max-width: 991px) {
  .floor-page .btn-floor {
    position: absolute;
    right: 60px;
    top: -7px;
    height: 50px;
  }
}
@media (max-width: 767px) {
  .floor-page .btn-floor {
    width: 185px;
    top: -5px;
  }
}
@media (max-width: 420px) {
  .floor-page .btn-floor {
    display: none;
  }
}
.floor-page .menu {
  position: fixed;
  top: 95px;
  right: 0;
  -webkit-transform: translate3d(200%, 0, 0);
  -moz-transform: translate3d(200%, 0, 0);
  -ms-transform: translate3d(200%, 0, 0);
  -o-transform: translate3d(200%, 0, 0);
  transform: translate3d(200%, 0, 0);
  webkit-transition: transform 0.51s cubic-bezier(0.57, -0.01, 0.32, 1);
  -moz-transition: transform 0.51s cubic-bezier(0.57, -0.01, 0.32, 1);
  -ms-transition: transform 0.51s cubic-bezier(0.57, -0.01, 0.32, 1);
  -o-transition: transform 0.51s cubic-bezier(0.57, -0.01, 0.32, 1);
  transition: transform 0.51s cubic-bezier(0.57, -0.01, 0.32, 1);
  pointer-events: none;
  height: calc(100% - 95px);
  background-color: white;
  width: 100%;
  max-width: 300px;
  overflow: auto;
  padding-bottom: 40px;
  min-width: 320px;
}
@media (max-width: 991px) {
  .floor-page .menu {
    top: 61px;
    height: calc(100% - 61px);
  }
}
@media (max-width: 767px) {
  .floor-page .menu {
    top: 51px;
    height: calc(100% - 51px);
  }
}
.floor-page .menu ul li {
  width: 100%;
}
.floor-page .menu ul li:after {
  display: none;
}
@media (min-width: 991px) {
  .floor-page .menu ul li:hover {
    background-color: #FBC013;
  }
  .floor-page .menu ul li:hover a {
    font-family: "TTFirsNeueDemiBold", sans-serif;
  }
}
.floor-page .menu ul li.active {
  background-color: #FBC013;
}
.floor-page .menu ul li.active a {
  font-family: "TTFirsNeueDemiBold", sans-serif;
}
.floor-page .menu::-webkit-scrollbar {
  width: 5px;
}
.floor-page .menu::-webkit-scrollbar-track {
  background-color: white;
}
.floor-page .menu::-webkit-scrollbar-thumb {
  background-color: #FBC013;
}
.floor-page .menu.active {
  -webkit-opacity: 1;
  -moz-opacity: 1;
  opacity: 1;
  pointer-events: all;
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.animation-floor {
  height: 552px;
  width: 552px;
  top: -192px;
  left: 25%;
  position: absolute;
  z-index: 1;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}

.yellow-block:after {
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: #FBC013;
}

.index .scroll {
  left: 50%;
  -webkit-transform: translate(-50%, 0);
  -moz-transform: translate(-50%, 0);
  -ms-transform: translate(-50%, 0);
  -o-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
}
.index .main-slider .slick-dots li button {
  padding: 20px;
  background-color: transparent;
  position: relative;
}
@media (max-width: 767px) {
  .index .main-slider .slick-dots li button {
    padding: 0 14px 0 0;
  }
}
.index .main-slider .slick-dots li button:after {
  width: 2px;
  height: 100%;
  top: 0;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
  -moz-transform: translate(-50%, 0);
  -ms-transform: translate(-50%, 0);
  -o-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
  background-color: white;
}
.index .main-slider .slick-dots li.slick-active button:after {
  background-color: black;
}
.index header {
  border: none;
}
.index header .space-between {
  -webkit-align-items: end;
  align-items: end;
}
@media (max-width: 1100px) {
  .index header .space-between {
    -webkit-align-items: center;
    align-items: center;
  }
}
.index header .logo {
  padding: 20px 0;
}
@media (max-width: 1100px) {
  .index header .logo {
    padding: 0;
  }
}
.index header .logo .icon {
  font-size: 83px;
}
@media (max-width: 1300px) {
  .index header .logo .icon {
    font-size: 63px;
  }
}
@media (max-width: 1215px) {
  .index header .logo .icon {
    font-size: 43px;
  }
}
@media (max-width: 1100px) {
  .index header .logo .icon {
    font-size: 38px;
  }
}
.index header.fix .space-between {
  -webkit-align-items: center;
  align-items: center;
}
.index header.fix .logo {
  padding: 0;
}
.index header.fix .logo .icon {
  font-size: 38px;
}
.index .slider .slick-dots li button {
  opacity: 0.5;
}
.index .slider .slick-dots li.slick-active button {
  background-color: #FBC013;
  opacity: 1;
}
@media (min-width: 1023px) {
  .index .slider .slick-dots li:hover {
    background-color: #FBC013;
  }
}
.index .animation-1 {
  width: 600px;
  height: 600px;
  bottom: -50px;
  left: -150px;
  top: initial;
  right: initial;
  z-index: 1;
  opacity: 0.5;
  pointer-events: none;
}
@media (max-width: 991px) {
  .index .animation-1 {
    display: none !important;
  }
}
.index .animation-10 {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 400px;
  height: 600px;
  z-index: 1;
  background-size: cover;
  pointer-events: none;
}
@media (max-width: 991px) {
  .index .animation-10 {
    display: none !important;
  }
}
.index .animation-11 {
  position: absolute;
  bottom: calc(100% - 200px);
  right: 0;
  width: 437px;
  height: 518px;
  z-index: 1;
  background-size: cover;
  pointer-events: none;
}
@media (max-width: 991px) {
  .index .animation-11 {
    bottom: initial;
    top: 0;
  }
}
.index .animation-11.vers-slider {
  bottom: 100px;
  right: -150px;
}
@media (max-width: 767px) {
  .index .animation-11.vers-slider {
    right: -250px;
  }
}
.index .animation-11.vers2-slider {
  bottom: 100px;
  right: calc(100% - 215px);
}
@media (max-width: 767px) {
  .index .animation-11.vers2-slider {
    display: none;
  }
}
.index .bg-black {
  width: 100%;
  height: auto;
  display: inline-block;
  padding-top: 40px;
  position: relative;
}
.index .planning {
  width: 100%;
  height: auto;
  display: inline-block;
  position: relative;
}
@media (max-width: 991px) {
  .index .planning {
    padding-bottom: 30px;
  }
}
.index .planning .img {
  width: 100%;
  height: auto;
  display: inline-block;
  margin-top: -190px;
  position: relative;
  overflow: hidden;
}
@media (max-width: 991px) {
  .index .planning .img {
    position: absolute;
    bottom: 0;
    left: 0;
    height: calc(100% - 65px);
    margin-top: 0;
  }
}
@media (max-width: 767px) {
  .index .planning .img {
    height: calc(100% - 40px);
  }
}
.index .planning .img .animation-11 {
  right: calc(100% - 100px);
  top: 0;
  bottom: initial;
  width: 437px;
  height: 518px;
  pointer-events: none;
}
.index .planning .img img {
  width: 100%;
  height: auto;
  display: inline-block;
}
@media (min-width: 1200px) {
  .index .planning .img img {
    height: 700px;
    object-fit: cover;
    object-position: center;
  }
}
@media (max-width: 991px) {
  .index .planning .img img {
    height: 100%;
    object-fit: cover;
    object-position: center;
  }
}
.index .planning .features {
  margin-bottom: 30px;
}
@media (max-width: 991px) {
  .index .planning .features {
    display: inline-block;
    text-align: center;
  }
}
.index .planning .features li {
  width: calc(25% - 40px);
  text-align: right;
}
@media (max-width: 991px) {
  .index .planning .features li {
    width: calc(50% - 20px);
    max-width: 300px;
    display: inline-block;
  }
}
@media (max-width: 767px) {
  .index .planning .features li {
    width: calc(50% - 10px);
    margin: 0 5px 10px;
  }
}
@media (max-width: 400px) {
  .index .planning .features li {
    padding: 10px;
  }
}
.index .planning .features li .features-text {
  padding-top: 50px;
}
@media (max-width: 767px) {
  .index .planning .features li .features-text {
    padding-top: 20px;
  }
}

.social-index {
  width: 100%;
  margin-top: 80px;
  margin-bottom: 80px;
}
@media (max-width: 767px) {
  .social-index {
    margin-top: 50px;
    margin-bottom: 50px;
  }
}
@media (max-width: 767px) {
  .social-index {
    margin-top: 40px;
    margin-bottom: 50px;
  }
}
.social-index li {
  min-width: initial;
}
.social-index li .icon {
  border-color: white;
  color: white;
}
@media (min-width: 1023px) {
  .social-index li:hover .icon {
    border-color: #FBC013;
  }
}

.future {
  width: 100%;
  height: 600px;
  display: inline-block;
  background-size: cover;
  background-position: center bottom;
}
@media (max-width: 1023px) {
  .future {
    height: auto;
    padding: 55px 0;
  }
}
@media (max-width: 767px) {
  .future {
    padding: 20px 0;
  }
}
.future ul {
  width: 100%;
  height: auto;
  display: inline-block;
}
@media (min-width: 1023px) {
  .future ul {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -webkit-align-items: center;
    align-items: center;
  }
}
.future ul li {
  display: inline-block;
  text-align: left;
  vertical-align: top;
  position: relative;
  padding-top: 55px;
  cursor: pointer;
}
@media (max-width: 1023px) {
  .future ul li {
    width: calc(33.3% - 10px);
    vertical-align: top;
    margin: 0 5px 10px;
    padding-top: 0;
  }
}
@media (max-width: 767px) {
  .future ul li {
    width: calc(50% - 10px);
  }
}
@media (max-width: 550px) {
  .future ul li {
    width: 100%;
    margin: 0 0 5px;
  }
}
.future ul li .number {
  width: 100%;
  height: auto;
  display: inline-block;
}
@media (max-width: 1023px) {
  .future ul li .number {
    display: none;
  }
}
.future ul li .number p {
  display: inline-block;
  color: white;
  font-size: 30px;
  line-height: 34px;
  font-family: "TTFirsNeueDemiBold", sans-serif;
  text-shadow: 1px 1px 2px rgba(88, 87, 87, 0.1), 0 0 1em rgba(178, 147, 109, 0.2);
  position: relative;
}
.future ul li .number p:after {
  top: 50%;
  left: calc(100% + 30px);
  width: 60px;
  height: 1px;
  background-color: white;
  -webkit-transform: translate(0, -50%);
  -moz-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  -o-transform: translate(0, -50%);
  transform: translate(0, -50%);
}
.future ul li .info {
  width: 300px;
  height: auto;
  background-color: #FBC013;
  padding: 35px;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  z-index: 1;
}
@media (max-width: 1023px) {
  .future ul li .info {
    padding: 30px;
    width: 100%;
  }
}
@media (min-width: 1023px) {
  .future ul li .info {
    pointer-events: none;
    -webkit-opacity: 0;
    -moz-opacity: 0;
    opacity: 0;
    position: absolute;
    top: -10px;
    left: 50%;
    -webkit-transform: translate(-50%, 0);
    -moz-transform: translate(-50%, 0);
    -ms-transform: translate(-50%, 0);
    -o-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
  }
}
.future ul li .info h1, .future ul li .info h2, .future ul li .info h3, .future ul li .info h4, .future ul li .info h5, .future ul li .info h6 {
  font-size: 30px;
  line-height: 34px;
  font-family: "TTFirsNeueDemiBold", sans-serif;
  margin-bottom: 10px;
}
@media (max-width: 1023px) {
  .future ul li .info h1, .future ul li .info h2, .future ul li .info h3, .future ul li .info h4, .future ul li .info h5, .future ul li .info h6 {
    font-size: 24px;
  }
}
.future ul li:first-child .info {
  left: 0;
  -webkit-transform: translate(0, 0);
  -moz-transform: translate(0, 0);
  -ms-transform: translate(0, 0);
  -o-transform: translate(0, 0);
  transform: translate(0, 0);
}
.future ul li:last-child p:after {
  display: none;
}
.future ul li:last-child .info {
  right: 0;
  left: initial;
  -webkit-transform: translate(0, 0);
  -moz-transform: translate(0, 0);
  -ms-transform: translate(0, 0);
  -o-transform: translate(0, 0);
  transform: translate(0, 0);
}
@media (min-width: 1023px) {
  .future ul li .info {
    height: auto !important;
  }
  .future ul li:hover .info {
    -webkit-opacity: 1;
    -moz-opacity: 1;
    opacity: 1;
    pointer-events: all;
  }
}

.about .main-big-block p {
  font-size: 18px;
  margin-bottom: 5px;
}
.about .animation-about {
  height: 781px;
  width: 755px;
  top: 0;
  left: 0;
  position: absolute;
  z-index: 1;
}
.about .social {
  width: 100%;
  margin-top: 70px;
  margin-bottom: 30px;
}
@media (max-width: 991px) {
  .about .social {
    margin-top: 50px;
    margin-bottom: 0;
  }
}
.about .social li {
  min-width: initial;
}
.about .animation-pattern {
  width: 437px;
  height: 518px;
  position: absolute;
  top: 0;
  left: calc(100% - 300px);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  pointer-events: none;
}
@media (max-width: 991px) {
  .about .animation-pattern {
    left: calc(100% - 100px);
    width: 237px;
    height: 318px;
  }
}
.about .animation-ring {
  width: 436px;
  height: 436px;
  position: absolute;
  top: 20px;
  right: calc(100% - 200px);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  pointer-events: none;
}
@media (max-width: 991px) {
  .about .animation-ring {
    right: calc(100% - 100px);
    width: 237px;
    height: 237px;
  }
}
.about .animation-ring-two {
  width: 495px;
  height: 682px;
  position: absolute;
  bottom: calc(100% - 320px);
  right: 0;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  pointer-events: none;
}
@media (max-width: 991px) {
  .about .animation-ring-two {
    width: 260px;
    height: 450px;
    bottom: calc(100% - 275px);
  }
}
.about .documents-block {
  padding-top: 120px;
  padding-bottom: 60px;
}
@media (max-width: 991px) {
  .about .documents-block {
    padding-top: 80px;
  }
}
@media (max-width: 767px) {
  .about .documents-block {
    padding-bottom: 40px;
  }
}
.about .main-title h1, .about .main-title h2, .about .main-title h3, .about .main-title h4, .about .main-title h5, .about .main-title h6 {
  width: 100%;
  display: inline-block;
}
.about .main-title .sub-title {
  max-width: 935px;
}
.about .animation-container {
  width: 100%;
  height: auto;
  display: inline-block;
  position: relative;
}
.about .animation-container .animation-pattern {
  top: initial;
  bottom: -120px;
  left: -160px;
  right: initial;
}
@media (max-width: 991px) {
  .about .animation-container .animation-pattern {
    bottom: -90px;
    left: -100px;
  }
}

.img-plan {
  width: 100%;
  height: auto;
  display: inline-block;
  margin-top: -11%;
}

.love-yadro {
  width: 100%;
  height: auto;
  display: inline-block;
  margin-bottom: 20px;
}
.love-yadro li {
  width: calc(33.3% - 30px);
  height: auto;
  min-height: 570px;
  display: inline-block;
  margin: 0 15px 30px;
  background-color: #FBC013;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  -webkit-border-radius: 0 15px 0 15px;
  -moz-border-radius: 0 15px 0 15px;
  border-radius: 0 15px 0 15px;
  overflow: hidden;
  vertical-align: top;
}
@media (max-width: 1215px) {
  .love-yadro li {
    min-height: 510px;
  }
}
@media (max-width: 1075px) {
  .love-yadro li {
    min-height: initial;
  }
}
@media (max-width: 991px) {
  .love-yadro li {
    width: calc(33.30% - 20px);
    height: auto;
    margin: 0 10px 20px;
  }
}
@media (max-width: 920px) {
  .love-yadro li {
    width: calc(50% - 20px);
    height: auto;
  }
}
@media (max-width: 580px) {
  .love-yadro li {
    width: calc(100% - 20px);
    height: auto;
  }
}
.love-yadro li .text {
  width: 100%;
  height: auto;
  display: inline-block;
  padding: 40px;
}
@media (max-width: 1215px) {
  .love-yadro li .text {
    padding: 25px;
  }
}
@media (max-width: 767px) {
  .love-yadro li .text {
    padding: 20px;
  }
}
.love-yadro li h1, .love-yadro li h2, .love-yadro li h3, .love-yadro li h4, .love-yadro li h5, .love-yadro li h6 {
  font-size: 30px;
  line-height: 34px;
  font-family: "TTFirsNeueDemiBold", sans-serif;
  margin-bottom: 10px;
}
@media (max-width: 1100px) {
  .love-yadro li h1, .love-yadro li h2, .love-yadro li h3, .love-yadro li h4, .love-yadro li h5, .love-yadro li h6 {
    font-size: 24px;
    line-height: 28px;
  }
}
.love-yadro li .img {
  width: 100%;
  height: auto;
  display: inline-block;
}

.documents {
  width: 100%;
  height: auto;
  display: inline-block;
}
.documents li {
  width: calc(20% - 30px);
  height: auto;
  display: inline-block;
  margin: 0 15px 30px;
  background-color: white;
  border: 1px solid #FBC013;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  vertical-align: top;
}
@media (max-width: 1170px) {
  .documents li {
    width: calc(25% - 30px);
    height: auto;
  }
}
@media (max-width: 991px) {
  .documents li {
    width: calc(33.3% - 20px);
    height: auto;
    margin: 0 10px 20px;
  }
}
@media (max-width: 720px) {
  .documents li {
    width: calc(50% - 20px);
    height: auto;
  }
}
@media (max-width: 470px) {
  .documents li {
    width: calc(100% - 20px);
    height: auto;
  }
}
@media (min-width: 1023px) {
  .documents li:hover {
    background-color: #FBC013;
  }
}
.documents li a {
  width: 100%;
  height: 320px;
  display: inline-block;
  position: relative;
}
@media (max-width: 470px) {
  .documents li a {
    height: 200px;
  }
}
.documents li p {
  position: absolute;
  top: 50%;
  left: 0;
  padding: 0 10px;
  -webkit-transform: translate(0, -50%);
  -moz-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  -o-transform: translate(0, -50%);
  transform: translate(0, -50%);
  text-align: center;
  width: 100%;
  text-transform: uppercase;
  font-size: 16px;
  line-height: 22px;
}

.thanks .padding-header {
  height: 100%;
}
.thanks .content {
  min-height: 100%;
  height: auto;
}
.thanks .content .container-fluid {
  vertical-align: middle;
}
.thanks .content .container-fluid:before {
  content: "";
  display: inline-block;
  vertical-align: middle;
  height: 100%;
}
.thanks .content .text {
  width: auto;
  height: auto;
  display: inline-block;
  background-color: white;
  position: relative;
  z-index: 2;
  padding: 100px 50px;
}
@media (max-width: 767px) {
  .thanks .content .text {
    padding: 50px;
  }
}
@media (max-width: 460px) {
  .thanks .content .text {
    padding: 50px 25px;
  }
}
.thanks .content .text .main-title {
  position: relative;
  z-index: 3;
}
.thanks .content .text .main-title h1, .thanks .content .text .main-title h2, .thanks .content .text .main-title h3, .thanks .content .text .main-title h4, .thanks .content .text .main-title h5, .thanks .content .text .main-title h6 {
  font-size: 38px;
}
@media (max-width: 991px) {
  .thanks .content .text .main-title h1, .thanks .content .text .main-title h2, .thanks .content .text .main-title h3, .thanks .content .text .main-title h4, .thanks .content .text .main-title h5, .thanks .content .text .main-title h6 {
    font-size: 36px;
    line-height: 42px;
  }
}
@media (max-width: 767px) {
  .thanks .content .text .main-title h1, .thanks .content .text .main-title h2, .thanks .content .text .main-title h3, .thanks .content .text .main-title h4, .thanks .content .text .main-title h5, .thanks .content .text .main-title h6 {
    font-size: 24px;
    line-height: 31px;
  }
}
@media (max-width: 460px) {
  .thanks .content .text .main-title h1, .thanks .content .text .main-title h2, .thanks .content .text .main-title h3, .thanks .content .text .main-title h4, .thanks .content .text .main-title h5, .thanks .content .text .main-title h6 {
    font-size: 20px;
    line-height: 28px;
  }
}
.thanks .img {
  height: 100% !important;
}
.thanks .contact-form {
  vertical-align: middle;
  text-align: center;
  margin: 100px 0 50px;
}
.thanks .animation-7 {
  z-index: 2;
}
@media (max-width: 991px) {
  .thanks .animation-7 {
    top: -200px;
  }
}
@media (max-width: 767px) {
  .thanks .animation-7 {
    top: -150px;
  }
}

/*# sourceMappingURL=main.css.map */
.chess-photos {
    width: 100%;
    margin: 0 auto 50px;
}

.chess-photos img {
    display: block;
    width: 100%;
    height: auto;
    margin-bottom: 12px;
}

.chess-photos img:last-child {
    margin-bottom: 0;
}