:root {
  --primary: #ab8c6b;
  --hover: #cdb49a;
  --secondary: #30373f;
  --white: #fff;
  --milk: #eeeee8;
  --gray-brown: #666162;
  --black: #000;
}

body {
  font-family: 'Abhaya Libre';
  font-weight: 400;
  font-style: normal;
  position: relative;
  width: 100%;
  height: 100%;
  background-color: var(--white);
}

svg,
img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

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

/*
*
*
* Header
*
*
*/

.header {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 16px 24px;
  background-color: var(--white);
}

.header-menu {
  font-size: 20px;
  line-height: 32px;
  display: flex;
  align-items: center;
  margin-right: 226px; /* center next */
  cursor: pointer;
  text-transform: uppercase;
}

.header-menu-icon {
  position: relative;
  width: 24px;
  height: 14px;
  margin-left: 8px;
}

.header-menu-icon span,
.header-menu-icon::before,
.header-menu-icon::after {
  position: absolute;
  left: 0;
  width: 100%;
  height: 1px;
  content: '';
  transition: all 0.3s ease-in-out;
  opacity: 0;
  background-color: var(--primary);

  will-change: opacity, top, bottom;
}

.header-menu-icon span {
  top: 50%;
  height: 2px;
  transform: translateY(-50%);
  opacity: 1;
}

.header-menu-icon::before {
  top: 0;
}

.header-menu:hover .header-menu-icon::before {
  opacity: 1;
}

.header-menu-icon::after {
  bottom: 0;
}

.header-menu:hover .header-menu-icon::after {
  opacity: 1;
}

.header-logo img {
  width: 48px;
}

.header-sound-bar {
  display: none;
  margin-right: 34px;
  cursor: pointer;
}

.header-sound-bar svg path {
  transition: all 0.3s;

  stroke: var(--secondary);
}

.header-sound-bar.active svg path {
  stroke: var(--primary);
}

.header-language {
  display: flex;
  align-items: center;
  cursor: pointer;
  user-select: none;
}

.header-language-item {
  color: var(--secondary);
}

.header-language-item.active {
  display: none;
  color: var(--hover);
}

.header-contacts {
  display: flex;
  align-items: center;
  margin-left: 80px;
}

.header-contacts-icon {
  display: inline-block;
  width: 34px;
  height: 34px;
  margin-right: 10px;
  transition: all 0.3s;
  text-align: center;
  border: 1px solid var(--secondary);
  border-radius: 50%;
}

.header-contacts-icon svg path {
  transition: all 0.3s;
}

.header-contacts-icon svg {
  width: 14px;
  height: 14px;
}

.header-contacts:hover .header-contacts-icon,
.header-contacts-icon:hover {
  border-color: var(--hover);
}

.header-contacts:hover .header-contacts-icon svg path,
.header-contacts-icon:hover svg path {
  stroke: var(--hover);
}

.header-contacts a {
  text-decoration: none;
  color: var(--secondary);
}

.header-contacts-text {
  margin-left: 5px;
}

.header-info {
  font-size: 16px;
  line-height: 28px;
  display: flex;
  align-items: center;
}

/*
*
*
* Sidebar
*
*
*/

.sidebar-wrapper {
  position: fixed;
  z-index: 110;
  top: 0;
  left: 0;
  visibility: visible;
  overflow-y: auto;
  width: 320px;
  height: 100vh;
  padding: 28px 32px;
  transition: all 0.4s ease-in-out;
  opacity: 1;
  color: var(--white);
  background: rgba(71, 74, 80, 0.8);

  will-change: opacity, left, visibility;
  backdrop-filter: blur(5px);
}

.sidebar-wrapper.sidebar--hidden {
  left: -320px;
  visibility: hidden;
  opacity: 0;
}

.sidebar .nav {
  margin-top: 120px;
  padding: 0 8px;
}

.sidebar .nav-link {
  font-size: 20px;
  font-weight: 700;
  line-height: 32px;
  position: relative;
  display: block;
  text-decoration: none;
  color: var(--white);
}

.sidebar .nav-link-icon {
  position: absolute;
  top: 0;
  right: 0;
  display: inline-block;
  transition: all 0.3s;

  will-change: transform;
}

.sidebar .nav-link.nav-link--active {
  color: var(--hover);
}

.sidebar .nav-link.nav-link--active .nav-link-icon {
  transform: rotate(90deg);
}

.sidebar .nav-link:hover {
  color: var(--hover);
}

.sidebar .nav-link:hover .nav-link-icon svg path,
.sidebar .nav-link.nav-link--active .nav-link-icon svg path {
  stroke: var(--hover);
}

.sidebar .nav-sublist {
  display: none;
}

.sidebar .nav-sublist-item span {
  font-size: 16px;
  font-weight: 400;
  line-height: 28px;
  text-decoration: none;
  color: var(--white);
}

.sidebar .nav-sublist-item:hover span {
  color: var(--hover);
}

.sidebar-close {
  font-size: 20px;
  font-weight: bold;
  line-height: 24px;
  position: relative;
  display: inline-block;
  padding-right: 32px;
  cursor: pointer;
  user-select: none;
  text-transform: uppercase;
}

.sidebar-close::before,
.sidebar-close::after {
  position: absolute;
  top: 50%;
  right: 0;
  width: 24px;
  height: 1px;
  content: '';
  transition: all 0.3s ease-in-out;
  background-color: var(--primary);

  will-change: transform, background-color;
}

.sidebar-close:hover::before {
  transform: translateY(-50%) rotate(45deg);
  background-color: var(--hover);
}

.sidebar-close:hover::after {
  transform: translateY(-50%) rotate(-45deg);
  background-color: var(--hover);
}

/*
*
*
* Section
*
*
*/

.section-wrapper {
  width: 100%;
  height: 100vh;
  padding-top: 80px;
}

.section {
  position: absolute;
  z-index: 1;
  top: 80px;
  left: 0;
  overflow: hidden;
  width: 100%;
  height: calc(100% - 80px);
}

.section--back {
  position: absolute;
  z-index: 100;
  top: 90px;
  left: 20px;
  display: none;
  cursor: pointer;
}

.section--back.show {
  display: block;
}

/*
*
*
* Main
*
*
*/

.section--main::after {
  position: absolute;
  z-index: 1;
  z-index: 1111;
  top: 0;
  left: 0;
  visibility: hidden;
  width: 100%;
  height: 100%;
  content: '';
  user-select: none;
  transition: all 0.1s;
  opacity: 0;
  background: var(--black);

  will-change: opacity, visibility;
}

.section--main.overlay::after {
  visibility: visible;
  transition: all 0.3s ease-in-out 1.2s;
  opacity: 0.8;
}

.section--main .section-video {
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.section--main .section-video img,
.section--main .section-video video {
  position: absolute;
  width: 100%;
  height: 100%;

  object-fit: cover;
  object-position: center;
}

.section--main .section-blocks {
  position: absolute;
  z-index: 10;
  top: 0;
  left: 0;
  display: flex;
  align-items: stretch;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.section--main .section-block-wrap {
  position: relative;
  z-index: 2;
  width: 50%;
  height: 100%;
  transition: all 0.7s;
  background: transparent;

  will-change: width;
}

.section--main .section-block-wrap:hover {
  width: 100%;
  transition: all 1.5s;
  background-color: rgba(0, 0, 0, 0.34);
}

.section--main .section-block-wrap:hover .section-block {
  opacity: 1;
}

.section--main .section-block {
  font-size: 48px;
  font-weight: 400;
  font-style: normal;
  line-height: 57px;
  position: absolute;
  top: 50%;
  width: 580px;
  transition: all 0.5s;
  transform: translateY(-50%);
  text-transform: uppercase;
  opacity: 0;
  color: var(--white);

  will-change: opacity, left, right;
}

.section--main .section-block-wrap:first-child .section-block {
  left: 160px;
}

.section--main .section-block-wrap:last-child .section-block {
  right: 160px;
}

.section--main .section-info {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  flex-direction: column;
  flex-shrink: 0;
  justify-content: center;
  width: 310px;
  margin-right: -155px;
  margin-left: -155px;
  text-align: center;
}

.section--main .section-info-title {
  font-size: 48px;
  font-weight: 700;
  line-height: 57px;
  margin-top: 24px;
  margin-bottom: 8px;
  text-transform: uppercase;
  color: var(--white);
}

.section--main .section-corner-box {
  position: absolute;
  z-index: 20;
  top: 16px;
  right: 0;
  width: 300px;
  padding: 3px 33px;
  text-align: right;
}

.section--main .section-corner-box::before {
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: '';
  transform: matrix(-1, 0, 0, 1, 0, 0);
  opacity: 0.85;
  background: linear-gradient(
  90deg,
  #57340f 29.69%,
  rgba(171, 140, 107, 0) 90.98%
  );
}

.section--main .corner-box-text {
  font-size: 20px;
  font-weight: 700;
  line-height: 32px;
  position: relative;
  z-index: 2;
  color: var(--milk);
}

.section--main .corner-box-text:nth-child(2) {
  font-size: 36px;
  font-weight: 700;
  line-height: 42px;
  margin-top: -10px;
  margin-bottom: -10px;
}

.section--main .corner-box-text a {
  font-size: 16px;
  font-weight: 700;
  line-height: 28px;
  color: var(--milk);
}

.section--main .section-action {
  position: absolute;
  z-index: 20;
  bottom: 70px;
  left: 50%;
  width: 220px;
  transform: translateX(-50%);
  text-align: center;
}

.ios .section--main .section-action {
  bottom: 130px;
}

.section--main .section-action-title {
  font-size: 16px;
  font-weight: 700;
  line-height: 28px;
  color: var(--white);
}

.section--main .section-action-link {
  display: inline-block;
  width: 54px;
  height: 54px;
  margin-top: 20px;
}

.section--main .section-action-link a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  transition: all 0.3s;
  border: 1px solid rgba(255, 255, 255, 0.44);
  border-radius: 50%;
}

.section--main .section-action-link a:hover {
  border-color: var(--hover);
  background: var(--hover);
}

/*
*
*
* Content section
*
*
*/

.section--content {
  z-index: -1;
  transition: all 0.6s;
  opacity: 0;

  will-change: opacity;
}

.section--content.show {
  z-index: 2;
  opacity: 1;
}

.section--content .section-blocks {
  position: absolute;
  z-index: 10;
  top: 0;
  left: 0;
  display: flex;
  align-items: stretch;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.section--content .section-block {
  position: relative;
  z-index: 2;
  width: 50%;
  height: 100%;
  transition: all 0.7s;

  will-change: width;
}

.section--content:not(.no-over) .section-block:hover {
  width: 80%;
  transition: all 1.4s;
}

.section--content .section-block:nth-child(1) {
  top: -100%;
  left: 0;
}

.section--content .section-block:nth-child(2) {
  right: 0;
  bottom: -100%;
}

.section--content .section-blocks.show-1 .section-block:nth-child(1) {
  top: 0;
}

.section--content .section-blocks.show-2 .section-block:nth-child(2) {
  bottom: 0;
}

.section--content .section-blocks.hide-1 .section-block:nth-child(1) {
  left: -100%;
}

.section--content .section-blocks.hide-2 .section-block:nth-child(2) {
  right: -100%;
}

.section--content .section-block-background {
  position: relative;
  width: 100%;
  height: 100%;
}

.section--content .section-block-background img {
  width: 100%;
  height: 100%;

  object-fit: cover;
  object-position: center;
}

.section--content .section-block-content {
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 50%;
  transform: translate(-100%, -50%);
}

.section--content .section-block-title {
  font-size: 48px;
  line-height: 57px;
  margin-bottom: 55px;
  text-transform: uppercase;
  color: var(--white);
}

.section--content .section-block-content-button {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  border: 1px solid rgba(255, 255, 255, 0.44);
  border-radius: 50%;
}

.section--content .section-block-content-button:after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: '';
  transform: rotate(45deg);
  border: 2px solid rgba(255, 255, 255, 1);
  border-right-color: transparent;
  border-bottom-color: transparent;
  border-left-color: transparent;
  border-radius: 50%;
}

.section--content .section-block-inner-content {
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  display: flex;
  visibility: hidden;
  flex-direction: column;
  width: 100%;
  height: 100%;
  transition: all 0.4s;
  opacity: 0;
  background: var(--white);

  will-change: opacity, visibility;
}

.section--content:not(.no-over)
  .section-block:hover
  .section-block-inner-content {
  visibility: visible;
  opacity: 1;
}

.section--content .inner-slider {
  height: 55%;
}

.section--content .section-block:nth-child(1) .inner-slider {
  background-color: var(--gray-brown);
}

.section--content .section-block:nth-child(2) .inner-slider {
  background-color: var(--milk);
}

.section--content .custom-slider {
  position: relative;
  height: 100%;
}

.section--content .custom-slider-wrapper {
  /**/
}

.section--content .custom-slider-slide {
  min-width: 52vw;
  height: 51vh;
}

.section--content .inner-slide {
  overflow-x: hidden;
  overflow-y: auto;
  height: 100%;
  padding: 90px 160px 40px;
}

.section--content .section-block:nth-child(1) .inner-slide {
  color: var(--white);
}

.section--content .section-block:nth-child(2) .inner-slide {
  color: var(--secondary);
}

.section--content .inner-slide .inner-slide-title {
  font-size: 48px;
  font-weight: 400;
  line-height: 57px;
  margin-bottom: 24px;
  text-transform: uppercase;
}

.section--content .inner-slide .inner-slide-text {
  font-size: 16px;
  line-height: 28px;
  width: 470px;
}

.section--content .inner-slide .inner-slide-list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
  min-width: 600px;
}

.section--content .inner-slide .inner-slide-list-item {
  width: 45%;
  margin-left: 12px;
  cursor: pointer;
  opacity: 1;
}

.section--content .inner-slide .inner-slide-list:hover .inner-slide-list-item {
  opacity: 0.5;
}

.section--content
  .inner-slide
  .inner-slide-list:hover
  .inner-slide-list-item:hover {
  opacity: 1;
}

.section--content .inner-slide .inner-slide-list-item.on-hover {
  opacity: 0.5;
}

.section--content .inner-slide .inner-slide-list-item:nth-child(odd) {
  margin-right: 12px;
  margin-left: 0;
}

.section--content
  .inner-slide
  .inner-slide-list-item:nth-child(odd)
  .list-item-title {
  text-align: right;
}

.section--content .inner-slide .inner-slide-list-item .list-item-title {
  font-size: 16px;
  font-weight: 400;
  line-height: 44px;
  position: relative;
  z-index: 2;
  text-transform: uppercase;
}

.section--content
  .inner-slide
  .inner-slide-list-item
  .list-item-content-wrapper {
  position: absolute;
  z-index: 1;
  top: 0;
  right: 0;
  visibility: hidden;
  width: 100%;
  height: 100%;
  transition: all 0.01s;
  opacity: 0;

  will-change: opacity, visibility;
}

.section--content
  .inner-slide
  .inner-slide-list-item:hover
  .list-item-content-wrapper {
  visibility: visible;
  user-select: none;
  transition: all 0.6s;
  pointer-events: none;
  opacity: 1;
}

.section--content .inner-slide .inner-slide-list-item .list-item-content-image {
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 50%;
  width: 260px;
  height: 260px;
  user-select: none;
  transform: translate(-50%, -50%);
  pointer-events: none;
  opacity: 0.6; /* TODO: 1 or 0.6 ? */
}

.section--content .inner-slide .inner-slide-list-item .list-item-content-text {
  font-size: 16px;
  line-height: 28px;
  position: absolute;
  z-index: 1;
  top: 30px;
  right: 50px;
  width: 190px;
  user-select: none;
  pointer-events: none;
}

.section--content .inner-slider-buttons {
  position: absolute;
  z-index: 1;
  bottom: 50px;
  left: 150px;
  display: flex;
  align-items: center;
}

.section--content .inner-slider-button-next,
.section--content .inner-slider-button-prev {
  position: relative;
  width: 30px;
  height: 15px;
  margin-right: 10px;
  cursor: pointer;
  transition: all 0.3s;

  will-change: transform;
}

.section--content .inner-slider-button-next.custom-slider-button-disabled,
.section--content .inner-slider-button-prev.custom-slider-button-disabled {
  display: none;
}

.section--content .inner-slider-button-next::before,
.section--content .inner-slider-button-prev::before {
  position: absolute;
  top: 50%;
  right: 0;
  width: 100%;
  height: 1px;
  content: '';
  transition: all 0.5s;
  background-color: var(--secondary);

  will-change: background-color;
}

.section--content
  .inner-slider-button-next:not(.custom-slider-button-disabled):hover::before,
.section--content
  .inner-slider-button-prev:not(.custom-slider-button-disabled):hover::before {
  background-color: var(--hover);
}

.section--content .inner-slider-button-next::after,
.section--content .inner-slider-button-prev::after {
  position: absolute;
  top: 3px;
  width: 11px;
  height: 11px;
  content: '';
  transition: all 0.5s;
  border: 1px solid var(--secondary);
  border-bottom-color: transparent;
  border-left-color: transparent;

  will-change: border;
}

.section--content
  .inner-slider-button-next:not(.custom-slider-button-disabled):hover::after,
.section--content
  .inner-slider-button-prev:not(.custom-slider-button-disabled):hover::after {
  border: 1px solid var(--hover);
  border-bottom-color: transparent;
  border-left-color: transparent;
}

.section--content .inner-slider-button-next::after {
  right: 0;
  transform: rotate(45deg);
}

.section--content .inner-slider-button-prev::after {
  left: 0;
  transform: rotate(225deg);
}

.section--content .inner-preview {
  width: 100%;
  height: 45%;
  background-color: var(--white);
}

.section--content .inner-preview-video {
  position: relative;
  width: 100%;
  height: 100%;
}

.section--content .inner-preview-video img,
.section--content .inner-preview-video video {
  position: absolute;
  width: 100%;
  height: 100%;

  object-fit: cover;
  object-position: center;
}

.section--content .inner-preview-button {
  position: absolute;
  bottom: 70px;
  left: 165px;
  display: flex;
  align-items: center;
  cursor: pointer;
  text-decoration: none;
}

.section--content .inner-preview-button-image {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  margin-right: 13px;
  border: 1px solid rgba(255, 255, 255, 0.44);
  border-radius: 50%;
}

.section--content .inner-preview-button-image:after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: '';
  transform: rotate(45deg);
  border: 2px solid rgba(255, 255, 255, 1);
  border-right-color: transparent;
  border-bottom-color: transparent;
  border-left-color: transparent;
  border-radius: 50%;
}

.section--content .inner-preview-button-text {
  font-size: 16px;
  font-weight: 700;
  line-height: 28px;
  text-transform: uppercase;
  color: var(--white);
}

/*
*
*
* exterior section
*
*
*/
.section.section--exterior {
  z-index: -1;
  transition: all 0.6s;
  opacity: 0;
  color: var(--white);

  will-change: opacity;
}

.section.section--exterior.show {
  z-index: 3;
  opacity: 1;
  background-color: var(--black);
}

.section--exterior .section-blocks-wrap {
  height: 100%;
}

.section--exterior .section-blocks {
  position: relative;
  z-index: 10;
  top: 0;
  left: 0;
  display: flex;
  overflow-y: auto;
  align-items: stretch;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.section--exterior .section-block {
  position: relative;
  z-index: 2;
  width: 50%;
  height: 100%;
  transition: all 0.7s;

  will-change: width;
}

.section--exterior:not(.no-over) .section-block:hover {
  width: 80%;
  transition: all 1.4s;
}

.section--exterior .exterior-preview {
  position: relative;
  width: 100%;
  height: 30vh;
  min-height: 290px;
  cursor: pointer;
  transition: all 0.3s;

  will-change: height;
}

.section--exterior .section-block:nth-child(1) .exterior-preview:last-child {
  height: 40vh;
}

.section--exterior .section-block:nth-child(2) .exterior-preview:first-child {
  height: 40vh;
}

.section--exterior .exterior-preview-title {
  font-size: 48px;
  font-weight: 400;
  line-height: 57px;
  position: absolute;
  z-index: 10;
  top: 50%;
  left: 160px;
  transform: translateY(-50%);
}

.section--exterior .exterior-preview-image {
  position: absolute;
  z-index: 1;
  width: 100%;
  height: 100%;
}

.section--exterior .exterior-preview-image:before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: '';
  transition: all 0.3s;
  background: rgba(0, 0, 0, 0.64);

  will-change: background;
}

.section--exterior:not(.no-over)
  .exterior-preview:hover
  .exterior-preview-image:before {
  background: transparent;
}

.section--exterior .exterior-preview-image img {
  width: 100%;
  height: 100%;

  object-fit: cover;
  object-position: center;
}

/*
*
*
* exterior-slider section
*
*
*/
.section.section--exterior-slider {
  z-index: -1;
  transition: all 0.6s;
  opacity: 0;
  color: var(--secondary);

  will-change: opacity;
}

.section.section--exterior-slider.show {
  z-index: 5;
  opacity: 1;
  background-color: var(--white);
}

.section.section--exterior-slider .exterior-slide {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  width: 100%;
  height: calc(100vh - 80px);
}

.section.section--exterior-slider .exterior-slide-wrap {
  vertical-align: middle;
}

.section.section--exterior-slider .exterior-slide-images {
  position: relative;
  width: calc(100% - 480px);
  height: 100%;
}

.section.section--exterior-slider
  .exterior-slide-images
  .exterior-slide-image
  img {
  width: 100%;
  height: 100%;

  object-fit: cover;
  object-position: center;
}

.section.section--exterior-slider .exterior-slide-images {
  position: relative;
  width: calc(100% - 480px);
  height: 100%;
}

.section.section--exterior-slider
  .exterior-slide-images
  .exterior-slider-button-prev {
  position: absolute;
  z-index: 100;
  top: 50%;
  left: 50px;
  cursor: pointer;
  transform: translateY(-50%);
  animation: shakeLeft 3s ease 0s infinite;
}

.section.section--exterior-slider
  .exterior-slide-images
  .exterior-slider-button-prev:hover {
  animation-play-state: paused;
}

.section.section--exterior-slider
  .exterior-slide-images
  .exterior-slider-button-next {
  position: absolute;
  z-index: 100;
  top: 50%;
  right: 50px;
  cursor: pointer;
  transform: translateY(-50%);
  animation: shakeRight 3s ease 0s infinite;
}

.section.section--exterior-slider
  .exterior-slide-images
  .exterior-slider-button-next:hover {
  animation-play-state: paused;
}

.section.section--exterior-slider .exterior-slide-images .slick-dots,
.section.section--exterior-slider
  .exterior-slide-images
  .exterior-slider-pagination {
  position: absolute;
  z-index: 100;
  bottom: 32px;
  left: 48px;
  display: flex !important;
  align-items: center;
}

.section.section--exterior-slider .exterior-slide-images .slick-dots li button {
  visibility: hidden;
  opacity: 0;
}

.section.section--exterior-slider .exterior-slide-images .slick-dots li,
.section.section--exterior-slider
  .exterior-slide-images
  .exterior-slider-pagination-bullet {
  position: relative;
  display: inline-block;
  flex-shrink: 0;
  width: 30px;
  height: 30px;
  margin-right: 20px;
  cursor: pointer;
  transition: all 0.3s;
  opacity: 1;
  border: 1px solid var(--gray-brown);
  border-radius: 50%;
  background: transparent;

  will-change: transform, border;
}

.section.section--exterior-slider .exterior-slide-images .slick-dots li:hover,
.section.section--exterior-slider
  .exterior-slide-images
  .slick-dots
  li.slick-active,
.section.section--exterior-slider
  .exterior-slide-images
  .exterior-slider-pagination-bullet:hover,
.section.section--exterior-slider
  .exterior-slide-images
  .exterior-slider-pagination-bullet.custom-slider-pagination-bullet-active {
  transform: rotate(-45deg);
  border-color: var(--white);
  border-top-color: transparent;
}

.section.section--exterior-slider .exterior-slide-images .slick-dots li:after,
.section.section--exterior-slider
  .exterior-slide-images
  .exterior-slider-pagination-bullet:after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 10px;
  content: '';
  transition: all 0.3s;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background-color: var(--gray-brown);

  will-change: background-color;
}

.section.section--exterior-slider
  .exterior-slide-images
  .slick-dots
  li:hover:after,
.section.section--exterior-slider
  .exterior-slide-images
  .slick-dots
  li.slick-active:after,
.section.section--exterior-slider
  .exterior-slide-images
  .exterior-slider-pagination-bullet:hover:after,
.section.section--exterior-slider
  .exterior-slide-images
  .exterior-slider-pagination-bullet.custom-slider-pagination-bullet-active:after {
  background-color: var(--white);
}

.section.section--exterior-slider .custom-slider-wrapper {
  height: calc(100vh - 80px);
}

.section.section--exterior-slider .exterior-slide-images .custom-slider-slide {
  height: calc(100vh - 80px);
}

.section.section--exterior-slider .exterior-slide-images .custom-slider-slide img {
  width: 100%;
  height: 100%;

  object-fit: cover;
  object-position: center;
}

.section.section--exterior-slider .exterior-slide-content {
  display: flex;
  align-items: center;
  flex-direction: column;
  flex-shrink: 0;
  justify-content: space-between;
  width: 480px;
  height: calc(100vh - 80px);
  padding: 48px 70px;
  background: var(--white);
}

.section.section--exterior-slider .content-data {
  margin: 20px 0;
  text-align: center;
}

.section.section--exterior-slider .content-data-title {
  font-size: 48px;
  font-weight: 700;
  line-height: 57px;
  margin-bottom: 48px;
  color: var(--secondary);
}

.section.section--exterior-slider .content-data-text {
  font-size: 16px;
  font-weight: 400;
  line-height: 28px;
  text-align: justify;
  color: var(--gray-brown);
}

.section.section--exterior-slider .exterior-slide-content .content-control-prev,
.section.section--exterior-slider
  .exterior-slide-content
  .content-control-next {
  display: flex;
  cursor: pointer;
}

.section.section--exterior-slider
  .exterior-slide-content
  .content-control-prev
  span,
.section.section--exterior-slider
  .exterior-slide-content
  .content-control-next
  span {
  font-size: 16px;
  line-height: 28px;
  margin-left: 18px;
}

/*
*
*
* interior section
*
*
*/
.section.section--interior {
  z-index: -1;
  transition: all 0.6s;
  opacity: 0;
  color: var(--white);

  will-change: opacity;
}

.section.section--interior.show {
  z-index: 4;
  opacity: 1;
  background-color: var(--black);
}

.section--interior .section-blocks-wrap {
  height: 100%;
}

.section--interior .section-blocks {
  position: relative;
  z-index: 10;
  top: 0;
  left: 0;
  display: flex;
  overflow-y: auto;
  align-items: stretch;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.section--interior .section-block {
  position: relative;
  z-index: 2;
  width: 50%;
  height: 100%;
  transition: all 0.7s;

  will-change: width;
}

.section--interior:not(.no-over) .section-block:hover {
  width: 80%;
  transition: all 1.4s;
}

.section--interior .interior-preview {
  position: relative;
  width: 100%;
  height: 30vh;
  min-height: 290px;
  cursor: pointer;
  transition: all 0.3s;

  will-change: height;
}

.section--interior .section-block:nth-child(1) .interior-preview:last-child {
  height: 40vh;
}

.section--interior .section-block:nth-child(2) .interior-preview:first-child {
  height: 40vh;
}

.section--interior .interior-preview-title {
  font-size: 48px;
  font-weight: 400;
  line-height: 57px;
  position: absolute;
  z-index: 10;
  top: 50%;
  left: 160px;
  transform: translateY(-50%);
}

.section--interior .interior-preview-image {
  position: absolute;
  z-index: 1;
  width: 100%;
  height: 100%;
}

.section--interior .interior-preview-image:before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: '';
  transition: all 0.3s;
  background: rgba(0, 0, 0, 0.64);

  will-change: background;
}

.section--interior:not(.no-over)
  .interior-preview:hover
  .interior-preview-image:before {
  background: transparent;
}

.section--interior .interior-preview-image img {
  width: 100%;
  height: 100%;

  object-fit: cover;
  object-position: center;
}

/*
*
*
* interior-slider section
*
*
*/
.section.section--interior-slider {
  z-index: -1;
  transition: all 0.6s;
  opacity: 0;
  color: var(--secondary);

  will-change: opacity;
}

.section.section--interior-slider.show {
  z-index: 6;
  opacity: 1;
  background-color: var(--white);
}

.section.section--interior-slider .interior-slide {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  width: 100%;
  height: calc(100vh - 80px);
}

.section.section--interior-slider .interior-slide-wrap {
  vertical-align: middle;
}

.section.section--interior-slider .interior-slide-images {
  position: relative;
  width: calc(100% - 480px);
  height: 100%;
}

.section.section--interior-slider
  .interior-slide-images
  .interior-slide-image
  img {
  width: 100%;
  height: 100%;

  object-fit: cover;
  object-position: center;
}

.section.section--interior-slider .interior-slide-images .interior-slide-image {
  width: 100%;
  height: 100%;
}

.section.section--interior-slider
  .interior-slide-images
  .interior-slider-button-prev {
  position: absolute;
  z-index: 100;
  top: 50%;
  left: 50px;
  cursor: pointer;
  transform: translateY(-50%);
  animation: shakeLeft 3s ease 0s infinite;
}

.section.section--interior-slider
  .interior-slide-images
  .interior-slider-button-prev:hover {
  animation-play-state: paused;
}

.section.section--interior-slider
  .interior-slide-images
  .interior-slider-button-next {
  position: absolute;
  z-index: 100;
  top: 50%;
  right: 50px;
  cursor: pointer;
  transform: translateY(-50%);
  animation: shakeRight 3s ease 0s infinite;
}

.section.section--interior-slider
  .interior-slide-images
  .interior-slider-button-next:hover {
  animation-play-state: paused;
}

.section.section--interior-slider .interior-slide-images .slick-dots,
.section.section--interior-slider
  .interior-slide-images
  .interior-slider-pagination {
  position: absolute;
  z-index: 100;
  bottom: 32px;
  left: 48px;
  display: flex !important;
  align-items: center;
}

.section.section--interior-slider .interior-slide-images .slick-dots li button {
  visibility: hidden;
  opacity: 0;
}

.section.section--interior-slider .interior-slide-images .slick-dots li,
.section.section--interior-slider
  .interior-slide-images
  .interior-slider-pagination-bullet {
  position: relative;
  display: inline-block;
  flex-shrink: 0;
  width: 30px;
  height: 30px;
  margin-right: 20px;
  cursor: pointer;
  transition: all 0.3s;
  opacity: 1;
  border: 1px solid var(--gray-brown);
  border-radius: 50%;
  background: transparent;

  will-change: transform, border;
}

.section.section--interior-slider .interior-slide-images .slick-dots li:hover,
.section.section--interior-slider
  .interior-slide-images
  .slick-dots
  li.slick-active,
.section.section--interior-slider
  .interior-slide-images
  .interior-slider-pagination-bullet:hover,
.section.section--interior-slider
  .interior-slide-images
  .interior-slider-pagination-bullet.custom-slider-pagination-bullet-active {
  transform: rotate(-45deg);
  border-color: var(--white);
  border-top-color: transparent;
}

.section.section--interior-slider .interior-slide-images .slick-dots li:after,
.section.section--interior-slider
  .interior-slide-images
  .interior-slider-pagination-bullet:after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 10px;
  content: '';
  transition: all 0.3s;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background-color: var(--gray-brown);

  will-change: background-color;
}

.section.section--interior-slider
  .interior-slide-images
  .slick-dots
  li:hover:after,
.section.section--interior-slider
  .interior-slide-images
  .slick-dots
  li.slick-active:after,
.section.section--interior-slider
  .interior-slide-images
  .interior-slider-pagination-bullet:hover:after,
.section.section--interior-slider
  .interior-slide-images
  .interior-slider-pagination-bullet.custom-slider-pagination-bullet-active:after {
  background-color: var(--white);
}

.section.section--interior-slider .custom-slider-wrapper {
  height: calc(100vh - 80px);
}

.section.section--interior-slider .interior-slide-images .custom-slider-slide {
  height: calc(100vh - 80px);
}

.section.section--interior-slider .interior-slide-images .custom-slider-slide img {
  width: 100%;
  height: 100%;

  object-fit: cover;
  object-position: center;
}

.section.section--interior-slider .interior-slide-content {
  display: flex;
  align-items: center;
  flex-direction: column;
  flex-shrink: 0;
  justify-content: space-between;
  width: 480px;
  height: calc(100vh - 80px);
  padding: 48px 70px;
  background: var(--white);
}

.section.section--interior-slider .content-data {
  margin: 20px 0;
  text-align: center;
}

.section.section--interior-slider .content-data-title {
  font-size: 48px;
  font-weight: 700;
  line-height: 57px;
  margin-bottom: 48px;
  color: var(--secondary);
}

.section.section--interior-slider .content-data-text {
  font-size: 16px;
  font-weight: 400;
  line-height: 28px;
  text-align: justify;
  color: var(--gray-brown);
}

.section.section--interior-slider .interior-slide-content .content-control-prev,
.section.section--interior-slider
  .interior-slide-content
  .content-control-next {
  display: flex;
  cursor: pointer;
}

.section.section--interior-slider
  .interior-slide-content
  .content-control-prev
  span,
.section.section--interior-slider
  .interior-slide-content
  .content-control-next
  span {
  font-size: 16px;
  line-height: 28px;
  margin-left: 18px;
}

/*
*
*
* About section
*
*
*/

.section--about {
  z-index: -1;
  transition: all 0.6s;
  opacity: 0;

  will-change: opacity;
}

.section--about.show {
  z-index: 2;
  opacity: 1;
}

.section--about .section-blocks {
  position: absolute;
  z-index: 10;
  top: 0;
  left: 0;
  display: flex;
  align-items: stretch;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.section--about .section-block {
  position: relative;
  z-index: 2;
  width: 50%;
  height: 100%;
  transition: all 0.7s;

  will-change: width;
}

.section--about .section-block:nth-child(1) .section-block-content-wrapper {
  color: var(--white);
  background-color: var(--secondary);
}

.section--about .section-block:nth-child(2) .section-block-content-wrapper {
  color: var(--secondary);
  background-color: var(--milk);
}

.section--about:not(.no-over) .section-block:hover {
  width: 80%;
  transition: all 1.4s;
}

.section--about .section-block-background {
  position: relative;
  width: 100%;
  height: 100%;
}

.section--about .section-block-background img {
  position: absolute;
  z-index: 1;
  width: 100%;
  height: 100%;

  object-fit: cover;
  object-position: center;
}

.section--about h2.section-block-title {
  font-size: 48px;
  font-weight: 400;
  line-height: 57px;
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 160px;
  transform: translateY(-50%);
  text-transform: uppercase;
  color: var(--white);
}

.section--about .section-block .section-block-content-wrapper {
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  display: flex;
  visibility: hidden;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  padding: 60px;
  transition: all 0.4s;
  opacity: 0;
  background: var(--white);

  will-change: visibility, opacity;
}

.section--about .section-block:hover .section-block-content-wrapper {
  visibility: visible;
  opacity: 1;
}

.section--about .section-block .section-block-content {
  width: 470px;
  margin: 0 auto;
}

.section--about .section-block .section-block-content .show-content {
  position: relative;
  top: 1000px;
  transition: top 0.4s ease-in-out 0.7s;

  will-change: top;
}

.section--about .section-block:hover .section-block-content .show-content {
  top: 0;
}

.section--about .section-block .section-block-content h2 {
  font-size: 48px;
  font-weight: 400;
  font-style: normal;
  line-height: 57px;
  margin-bottom: 32px;
  text-transform: uppercase;
}

.section--about .section-block .section-block-content p {
  font-size: 16px;
  font-weight: 400;
  font-style: normal;
  line-height: 28px;
  margin-bottom: 16px;
}

.section--about .section-block .section-block-content h3 {
  font-size: 24px;
  font-weight: 700;
  line-height: 28px;
  margin-top: 48px;
  margin-bottom: 16px;
}

.section--about .section-block .info-blocks {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 48px;
}

.section--about .section-block .info-block {
  display: flex;
  align-items: center;
  width: 50%;
}

.section--about .section-block .info-block-number {
  font-size: 48px;
  font-weight: 700;
  line-height: 57px;
  width: 80px;
  margin-right: 6px;
  text-align: center;
  color: var(--primary);
}

.section--about .section-block .info-block-text {
  font-size: 16px;
  font-weight: 400;
  line-height: 28px;
  color: var(--white);
}

.section--about .section-block .info-list {
  margin-top: 16px;
  margin-bottom: 48px;
  padding: 0;
  list-style-type: none;
}

.section--about .section-block .info-list-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 24px;
}

.section--about .section-block .info-list-item:last-child {
  margin-bottom: 0;
}

.section--about .section-block .info-list-item-number {
  font-size: 48px;
  font-weight: 700;
  line-height: 57px;
  flex-shrink: 0;
  width: 80px;
  margin-right: 8px;
  text-align: center;
  color: var(--primary);
}

.section--about .section-block .info-list-item-number .lower-text {
  font-size: 30px;
}

.section--about .section-block .info-list-item-text {
  font-size: 16px;
  font-weight: 400;
  line-height: 28px;
}

/*
*
*
* Contacts section
*
*
*/

.section--contacts {
  z-index: -1;
  transition: all 0.6s;
  opacity: 0;

  will-change: opacity;
}

.section--contacts.show {
  z-index: 8;
  opacity: 1;
}

.section--contacts .section-blocks {
  position: absolute;
  z-index: 10;
  top: 0;
  left: 0;
  display: flex;
  align-items: stretch;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.section--contacts .section-block {
  position: relative;
  z-index: 2;
  width: 50%;
  height: 100%;
  transition: all 0.7s;
  background-color: var(--white);

  will-change: width;
}

.section--contacts .section-block-background {
  position: relative;
  width: 100%;
  height: 100%;
}

.section--contacts .section-block-background img {
  position: absolute;
  z-index: 1;
  width: 100%;
  height: 100%;

  object-fit: cover;
  object-position: center;
}

.section--contacts .section-block .section-block-content-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 50%;
  padding: 50px;
}

.section--contacts .section-block .section-block-content {
  color: var(--secondary);
}

.section--contacts .section-block .section-block-content-map {
  font-size: 48px;
  line-height: 57px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 50%;
  background: var(--milk);
}

.section--contacts .section-block .section-block-content-map #map {
  width: 100%;
  height: 100%;
}

.section--contacts .section-block .section-block-content .section-block-title {
  font-size: 48px;
  font-weight: 400;
  line-height: 57px;
  margin-bottom: 36px;
}

.section--contacts .section-block .section-block-content p {
  font-size: 14px;
  font-weight: 400;
  line-height: 28px;
  color: var(--gray-brown);
}

.section--contacts .section-block .section-block-content b {
  font-size: 16px;
  line-height: 28px;
}

.section--contacts
  .section-block
  .section-block-content
  .section-block-link-tel {
  text-decoration: none;
  color: var(--secondary);
}

.section--contacts
  .section-block
  .section-block-content
  .section-block-link-mail {
  text-decoration: none;
  color: var(--primary);
}

.section--contacts
  .section-block
  .section-block-content
  .section-block-link-mail:hover {
  color: var(--hover);
}

@keyframes shakeRight {
  0%,
  10%,
  100% {
    transform: translateX(0) translateY(-50%);
  }

  20%,
  40%,
  60% {
    transform: translateX(10px) translateY(-50%);
  }

  30%,
  50%,
  70% {
    transform: translateX(0px) translateY(-50%);
  }
}

@keyframes shakeLeft {
  0%,
  10%,
  100% {
    transform: translateX(0) translateY(-50%);
  }

  20%,
  40%,
  60% {
    transform: translateX(-10px) translateY(-50%);
  }

  30%,
  50%,
  70% {
    transform: translateX(0px) translateY(-50%);
  }
}

/*
*
* Media 1440px
*
*/

@media screen and (max-width: 1440px) {
  .section--main .section-block-wrap:last-child .section-block {
    right: 20px;
    left: 80px;
    width: auto;
  }

  .section--main .section-block-wrap:first-child .section-block {
    right: 80px;
    left: 20px;
    width: auto;
  }

  .section--main .section-block-wrap:hover {
    background: rgba(0, 0, 0, 0.64);
  }

  .section--content .inner-slide .inner-slide-list {
    flex-direction: column;
    width: 100%;
  }

  .section--content .inner-slide .inner-slide-list-item {
    width: 100%;
    margin-right: 0;
    margin-left: 0;
    text-align: left;
  }

  .section--content .inner-slide .inner-slide-list-item:nth-child(odd) {
    margin-right: 0;
  }

  .section--content
  .inner-slide
  .inner-slide-list-item:nth-child(odd)
  .list-item-title {
    text-align: left;
  }

  .section--content .section-block-content {
    transform: translate(-50%, -50%);
  }

  .section--content .inner-slide {
    padding: 50px;
  }

  .section--content .inner-slide .inner-slide-list {
    width: 600px;
  }

  .section--content .inner-slider-buttons {
    left: 50px;
  }

  .section--about h2.section-block-title {
    left: 50%;
    width: max-content;
    transform: translate(-50%, -50%);
  }
}

/*
*
* Media 1024px
*
*/

@media screen and (max-width: 1024px) {
  .section--content .section-blocks {
    display: block;
    overflow-y: auto;
  }

  .section--content .section-block {
    width: 100%;
    height: 50%;
  }

  .section--content:not(.no-over) .section-block:hover {
    flex-shrink: 0;
    width: 100%;
    height: auto;
    min-height: 600px;
    transition: all 1.4s;
  }

  .section--content .inner-preview-button {
    bottom: 30px;
  }

  .section--content .section-block:nth-child(1) {
    top: 0;
    left: -100%;
  }

  .section--content .section-block:nth-child(2) {
    right: -100%;
    bottom: 0;
  }

  .section--content .section-blocks.show-1 .section-block:nth-child(1) {
    left: 0;
  }

  .section--content .section-blocks.show-2 .section-block:nth-child(2) {
    right: 0;
  }

  .section--content .section-blocks.hide-1 .section-block:nth-child(1) {
    left: -100%;
  }

  .section--content .section-blocks.hide-2 .section-block:nth-child(2) {
    right: -100%;
  }

  .section--content .section-block-content {
    transform: translate(-100%, -50%);
  }

  .section--content .inner-slider {
    height: auto;
  }

  .section--content .inner-slide {
    padding: 50px 50px 80px;
  }

  .section--content .section-block-inner-content {
    display: block;
    overflow: hidden;
  }

  .section--exterior .exterior-preview-title,
  .section--interior .interior-preview-title {
    left: 50%;
    width: max-content;
    transform: translate(-50%, -50%);
  }

  .section.section--exterior-slider .exterior-slide,
  .section.section--interior-slider .interior-slide {
    display: block;
    overflow-y: auto;
  }

  .section.section--exterior-slider .exterior-slide-images,
  .section.section--interior-slider .interior-slide-images {
    width: 100%;
    height: 40vh;
    min-height: 290px;
  }

  .section.section--exterior-slider .exterior-slide-images .custom-slider-slide,
  .section.section--interior-slider .interior-slide-images .custom-slider-slide,
  .section.section--exterior-slider .exterior-slide-images .custom-slider-wrapper,
  .section.section--interior-slider .interior-slide-images .custom-slider-wrapper {
    height: 40vh;
    min-height: 290px;
  }

  .section.section--exterior-slider .exterior-slide-content,
  .section.section--interior-slider .interior-slide-content {
    width: 100%;
    height: auto;
    min-height: calc(60vh - 80px);
  }

  .section.section--exterior-slider .exterior-slide-images .slick-dots,
  .section.section--exterior-slider
  .exterior-slide-images
  .exterior-slider-pagination,
  .section.section--interior-slider .interior-slide-images .slick-dots,
  .section.section--interior-slider
  .interior-slide-images
  .interior-slider-pagination {
    bottom: 10px;
    left: 20px;
    flex-wrap: wrap;
    width: 80vw;
  }

  .section--about .section-blocks {
    display: block;
    overflow-y: auto;
  }

  .section--about:not(.no-over) .section-block:hover,
  .section--about .section-block {
    width: 100%;
    height: 50%;
  }

  .section--about:not(.no-over) .section-block:hover {
    height: 80%;
  }
}

/*
*
* Media 768px
*
*/

@media screen and (max-width: 768px) {
  .header-contacts {
    display: none;
  }

  .header-menu {
    width: 90px;
    margin-right: 0;
  }

  .header-info {
    justify-content: flex-end;
    width: 90px;
  }

  .section--main {
    /* min-height: 580px; */
  }

  .section--main .section-block-wrap .section-block {
    font-size: 16px;
    font-weight: 400;
    line-height: 28px;
  }

  .section--exterior .section-blocks,
  .section--interior .section-blocks {
    display: block;
  }

  .section--exterior:not(.no-over) .section-block:hover,
  .section--exterior .section-block,
  .section--interior:not(.no-over) .section-block:hover,
  .section--interior .section-block {
    width: 100%;
  }

  .section--exterior .section-block:nth-child(1) .exterior-preview:last-child,
  .section--interior .section-block:nth-child(1) .interior-preview:last-child,
  .section--exterior .section-block:nth-child(2) .exterior-preview:first-child,
  .section--interior .section-block:nth-child(2) .interior-preview:first-child {
    height: 30vh;
  }

  .section.section--exterior-slider .exterior-slide-images .slick-dots li,
  .section.section--exterior-slider .exterior-slide-images .exterior-slider-pagination-bullet {
    width: 16px;
    height: 16px;
    margin: 8px;
  }

  .section.section--exterior-slider .exterior-slide-images .slick-dots li:after,
  .section.section--exterior-slider .exterior-slide-images .exterior-slider-pagination-bullet:after {
    width: 6px;
    height: 6px;
  }

  .section--about .section-block .section-block-content {
    width: 100%;
  }

  .section--contacts .section-blocks {
    display: block;
    overflow-y: auto;
  }

  .section--contacts .section-block {
    width: 100%;
    height: auto;
  }

  .section--contacts .section-block:first-child {
    height: 30%;
  }

  .section--contacts .section-block .section-block-content-map {
    height: 30vh;
  }
}

/*
*
* Media 600px
*
*/

@media screen and (max-width: 600px) {
  .section--main .section-info {
    margin-top: -150px;
  }

  .section--content .section-block-title {
    font-size: 24px;
    font-weight: 400;
    line-height: 28px;
  }

  .section--content
  .inner-slide
  .inner-slide-list-item
  .list-item-content-wrapper {
    display: none;
  }

  .section--content
  .inner-slide
  .inner-slide-list:hover
  .inner-slide-list-item {
    opacity: 1;
  }

  .section--content .inner-slide .inner-slide-text {
    width: auto;
  }

  .section.section--exterior-slider .exterior-slide-content,
  .section.section--interior-slider .interior-slide-content {
    padding: 24px;
  }

  .section--about h2.section-block-title {
    font-size: 24px;
    font-weight: 700;
    line-height: 28px;
  }

  .section--about .section-block .section-block-content h2 {
    font-size: 24px;
    font-weight: 700;
    line-height: 28px;
  }

  .section--about .section-block .section-block-content p {
    font-size: 14px;
    font-weight: 400;
    line-height: 28px;
  }

  .section--about .section-block .section-block-content h3 {
    font-size: 18px;
    font-weight: 700;
    line-height: 24px;
  }

  .section--about .section-block .info-block-number {
    font-size: 36px;
    font-weight: 700;
    line-height: 42px;
  }

  .section--about .section-block .info-block-text {
    font-size: 14px;
    font-weight: 400;
    line-height: 28px;
  }

  .section--about .section-block .section-block-content-wrapper {
    padding: 24px;
  }

  .section--about .section-block .info-list-item-number {
    font-size: 36px;
    font-weight: 700;
    line-height: 42px;
  }

  .section--about .section-block .info-list-item-text {
    font-size: 14px;
    font-weight: 400;
    line-height: 28px;
  }

  .section--contacts .section-block .section-block-content-wrap {
    padding: 24px;
  }
}

/*
*
* IOS
*
*/

.ios video {
  display: none !important;
}
