html {
  scrollbar-color: #e4e4e4 #cfc1b1;
  scrollbar-width: thin;
}
html ::-webkit-scrollbar {
  width: 16px;
}
html ::-webkit-scrollbar-track {
  background-color: #e4e4e4;
  border-radius: 0;
}
html ::-webkit-scrollbar-thumb {
  background-color: #cfc1b1;
  border-radius: 0;
}

body {
  color: #000;
  font-family: "Futura PT", sans-serif;
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
  margin: 0;
  min-width: 320px;
}

h1, h2, h3, strong, b {
  font-weight: 300;
  letter-spacing: 0.04em;
}

h1 {
  font-size: 3.4rem;
  margin-top: 0;
}

h2 {
  font-size: 2.4rem;
  text-align: center;
}

h3 {
  font-size: 2rem;
}

p {
  line-height: 1.3;
}

a {
  color: #000;
  transition: color 0.3s;
}

::-moz-selection {
  color: #fff;
  background: #cfc1b1;
}

::selection {
  color: #fff;
  background: #cfc1b1;
}

img {
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.button > * {
  -webkit-appearance: none;
  border: none;
  background: none;
  border: 2px solid #8f8273;
  color: #8f8273;
  font: inherit;
  font-size: 1.7rem;
  line-height: 1;
  padding: 1.5rem 3rem 1.75rem;
  outline: 0;
  position: relative;
  text-decoration: none;
  display: inline-block;
  cursor: pointer;
  transition: border-color 0.5s;
}
.button > *:hover, .button > *:active {
  border-color: #cfc1b1;
}
.button > *:active {
  top: 1px;
  box-shadow: 0 -5px 5px rgba(0, 0, 0, 0.15);
  border-color: #cfc1b1;
}

.round-button {
  display: inline-block;
  width: 24px;
  height: 24px;
  padding: 12px;
  background-color: rgba(207, 193, 177, 0.64);
  border-radius: 50px;
  position: relative;
  cursor: pointer;
}
.round-button span {
  position: absolute;
  top: 50%;
  left: 12px;
  width: 24px;
  height: 3px;
  margin: -1px 0 0;
  background: #fff;
  transform: rotate(0);
  transition: 0.3s linear;
}
.round-button span:before, .round-button span:after {
  content: "";
  position: absolute;
  top: -7px;
  right: 0;
  width: 24px;
  height: 3px;
  background: #fff;
  transform: rotate(0);
  transition: 0.3s linear;
}
.round-button span:after {
  top: 7px;
}
.round-button.toleft span:after, .round-button.toleft span:before, .round-button.toright span:after, .round-button.toright span:before, .round-button.todown span:after, .round-button.todown span:before {
  top: -5px;
  right: -3px;
  width: 16px;
  transform: rotate(45deg);
}
.round-button.toleft span:after, .round-button.toright span:after, .round-button.todown span:after {
  top: 5px;
  transform: rotate(-45deg);
}
.round-button.toleft span {
  transform: rotate(180deg);
}
.round-button.todown span {
  transform: rotate(90deg);
}

.live_arrow {
  width: 100%;
  text-align: center;
  margin: 0;
  position: absolute;
  bottom: 3rem;
  z-index: 200;
}

.row {
  width: calc(100% - 2rem);
  border: solid #fff;
  border-width: 1px 1rem 1rem;
  clear: both;
}
.row.full-window {
  min-height: calc(100vh - 1rem - 1px);
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
}
.row.parallax {
  background-attachment: fixed;
}
.row.white {
  background-color: #fff;
}
.row.grey {
  background: #f8f8f8;
}
.row.beige {
  background: #f5f1eb;
}
.row.justpic {
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: cover;
}

section {
  display: block;
  box-sizing: border-box;
  width: 100%;
  max-width: 1280px;
  margin: auto;
  padding: 0 60px;
}

.row > .section {
  max-width: 100%;
}

.flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
.flex > div {
  width: 50%;
  box-sizing: border-box;
}
.flex > div.text, .flex > div .text {
  padding: 8%;
  font-size: 1.5rem;
}
.flex .fit, .flex figure {
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: cover;
  min-height: 100%;
}
.flex .fit > *, .flex figure > * {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}

nav {
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: fixed;
  top: 0;
  left: 100vw;
  z-index: 5002;
  overflow-y: auto;
  width: 30rem;
  height: 100vh;
  transition: left 0.3s;
  background-color: #fff;
}
nav ul {
  height: auto;
  display: block;
  padding: 0 4rem;
  list-style: none;
}
nav ul li {
  box-sizing: border-box;
  width: 100%;
  margin: 1.4rem 0;
  padding: 0;
  line-height: 1.1;
  font-size: 2rem;
}
nav ul li a {
  text-decoration: none;
}
nav ul li a:hover {
  color: #cfc1b1;
}

#menu-button {
  position: fixed;
  top: 3.5vw;
  right: 3.5vw;
  z-index: 5003;
}

.menu-opened #menu-button span {
  transform: rotate(0deg);
}
.menu-opened #menu-button span:after, .menu-opened #menu-button span:before {
  top: -5px;
  right: -3px;
  width: 16px;
  transform: rotate(45deg);
}
.menu-opened #menu-button span:after {
  top: 5px;
  transform: rotate(-45deg);
}
.menu-opened nav {
  left: calc(100vw - 30rem);
  transition: left 0.3s;
  box-shadow: 0 0 40px rgba(0, 0, 0, 0.15);
}

#first {
  min-height: calc(100vh - 2rem);
  height: calc(100vh - 2rem);
  border-width: 1rem;
  position: relative;
}
#first video {
  box-sizing: border-box;
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
#first #logo {
  position: absolute;
  left: 3.5rem;
  top: 0;
  z-index: 5001;
  width: calc(47vw - 5rem);
  margin-top: 3.5vw;
}
#first #logo img {
  width: 100%;
}
#first #logo p {
  margin: 0 0 2vw;
  font-size: 1vw;
  letter-spacing: 0.2em;
  color: rgba(255, 255, 255, 0.9);
  cursor: default;
  text-transform: uppercase;
}
#first #slogan {
  position: absolute;
  left: 3.5rem;
  top: 0;
  z-index: 5001;
  width: calc(47vw - 5rem);
}
#first #slogan p {
  margin: 0;
  font-size: 1.8vw;
  line-height: 1.3em;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.9);
  cursor: default;
}

#about {
  font-size: 1.2rem;
  padding: 2rem 0;
  background-image: url(../img/aw.svg);
  background-repeat: no-repeat;
  background-position: -180px 40%;
}
#about .flex > div:first-child {
  padding-right: 4rem;
  width: 60%;
}
#about .flex > div.gallery {
  width: 40%;
}
#about .button {
  text-align: center;
  margin: 3rem 0;
}

#features {
  padding-bottom: 6rem;
}
#features .grid-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(4, 1fr);
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}
#features .grid-container .text {
  padding: 0.5rem 2rem 1.5rem;
  background-color: rgba(255, 255, 255, 0.98);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  position: relative;
}
#features .grid-container .text h3 {
  font-size: 1.4rem;
}
#features .grid-container .text::before {
  content: "";
  position: absolute;
  right: -30px;
  top: calc(50% - 30px);
  z-index: 5001;
  width: 0;
  height: 0;
  border-top: 30px solid transparent;
  border-bottom: 30px solid transparent;
  border-left: 30px solid #fff;
}
#features .grid-container .image {
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: cover;
  transition: transform 1s, box-shadow 1s;
}
#features .grid-container .image:hover {
  transform: scale(0.9);
  box-shadow: 1px 1px 5px rgba(0, 0, 0, 0.15);
}
#features .grid-container div:nth-of-type(1) {
  order: 1;
}
#features .grid-container div:nth-of-type(2) {
  order: 2;
}
#features .grid-container div:nth-of-type(3) {
  order: 3;
}
#features .grid-container div:nth-of-type(4) {
  order: 4;
}
#features .grid-container div:nth-of-type(5) {
  order: 6;
}
#features .grid-container div:nth-of-type(6) {
  order: 5;
}
#features .grid-container div:nth-of-type(7) {
  order: 8;
}
#features .grid-container div:nth-of-type(8) {
  order: 7;
}
#features .grid-container div:nth-of-type(9) {
  order: 9;
}
#features .grid-container div:nth-of-type(10) {
  order: 10;
}
#features .grid-container div:nth-of-type(11) {
  order: 11;
}
#features .grid-container div:nth-of-type(12) {
  order: 12;
}
#features .grid-container div:nth-of-type(13) {
  order: 14;
}
#features .grid-container div:nth-of-type(14) {
  order: 13;
}
#features .grid-container div:nth-of-type(15) {
  order: 16;
}
#features .grid-container div:nth-of-type(16) {
  order: 15;
}
#features .grid-container div:nth-of-type(5)::before,
#features .grid-container div:nth-of-type(7)::before,
#features .grid-container div:nth-of-type(13)::before,
#features .grid-container div:nth-of-type(15)::before {
  right: 100%;
  border-right: 30px solid #fff;
  border-left: transparent;
}

#collections {
  padding-bottom: 5rem;
}
#collections .flex {
  background-color: #fff;
}

#nature .grid {
  min-height: 100vh;
  display: grid !important;
  grid-template-columns: 1fr;
  grid-template-rows: auto 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}
#nature .grid .flex {
  height: 100%;
}
#nature .grid .flex > div {
  height: 100%;
  display: flex;
  align-items: center;
}
#nature .grid .flex > div.text {
  padding: 0 6%;
  font-size: 1.3rem;
}

#about-too .section, #about-too .flex {
  height: calc(100vh - 1rem - 1px);
}
#about-too .text {
  padding-left: 17%;
  padding-right: 17%;
}

#contacts #map-cover {
  position: relative;
}
#contacts #map-cover #map {
  height: 60vh;
}
#contacts #map-cover #map iframe {
  border: 0;
  height: 100%;
}
#contacts #map-cover #map .ymaps-2-1-79-b-cluster-content,
#contacts #map-cover #map .ymaps-2-1-79-b-cluster-carousel_pager_numeric .ymaps-2-1-79-b-cluster-carousel__pager,
#contacts #map-cover #map .ymaps-2-1-79-balloon__content {
  font-family: "Futura PT", sans-serif;
  font-weight: 400 !important;
  font-size: 14px;
}
#contacts #map-cover #map .ymaps-2-1-79-b-cluster-content b,
#contacts #map-cover #map .ymaps-2-1-79-b-cluster-carousel_pager_numeric .ymaps-2-1-79-b-cluster-carousel__pager b,
#contacts #map-cover #map .ymaps-2-1-79-balloon__content b {
  font-weight: 400 !important;
}
#contacts #map-cover #map .ymaps-2-1-79-b-cluster-content__body {
  margin-bottom: 0;
}
#contacts #map-cover #map .ymaps-2-1-79-i-custom-scroll ::-webkit-scrollbar-thumb,
#contacts #map-cover #map .ymaps-2-1-79-i-custom-scroll::-webkit-scrollbar-thumb {
  background-color: #cfc1b1;
}
#contacts #map-cover #map .ymaps-2-1-79-b-cluster-carousel_pager_numeric .ymaps-2-1-79-b-cluster-carousel__pager-item {
  color: #8f8273;
}
#contacts #map-cover #map .ymaps-2-1-79-balloon-content__footer {
  font-size: 0.9rem;
  font-weight: 700;
}
#contacts #map-cover #city_choose_button span {
  box-sizing: border-box;
  width: 320px;
}
#contacts #map-cover .map_block_list {
  position: relative;
  margin: 0 auto 3rem;
  text-align: center;
}
#contacts #map-cover #city_list {
  display: none;
  overflow-y: auto;
  position: absolute;
  background-color: rgba(255, 255, 255, 0.8);
  width: 320px;
  left: calc(50% - 160px);
  z-index: 5001;
  box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.15);
  font-size: 1.2rem;
  text-align: left;
  box-sizing: border-box;
  padding: 1rem 1.5rem;
  max-height: 50vh;
  overflow-y: scroll;
}
#contacts #map-cover #city_list span {
  display: block;
  padding: 0.5rem 1rem;
  cursor: pointer;
}
#contacts #map-cover #city_list span:hover {
  background: #8f8273;
  color: #fff;
}
#contacts #map-cover a.adrr_click {
  font-size: 16px !important;
  color: #000 !important;
}

footer {
  background: #8f8273;
  color: #eee;
  text-align: center;
  padding: 6rem 0;
}
footer div {
  text-align: center;
}
footer div.bottom-logo img {
  width: 256px;
}
footer div.social {
  margin-top: 1rem;
}
footer div.social a {
  display: inline-block;
  margin: 0 0.5rem;
}
footer div.social a img {
  width: 48px;
  opacity: 0.6;
}
footer div.social a:hover img {
  opacity: 0.9;
}

/* slider */
.slider .round-button {
  position: absolute;
  z-index: 5001;
  top: calc(50% - 24px);
}
.slider .round-button.toleft {
  left: calc(3.5vw - 1rem);
}
.slider .round-button.toright {
  right: calc(3.5vw - 1rem);
}

.cookie_notice {
  display: none;
  align-items: center;
  position: fixed;
  z-index: 5002;
  bottom: 2rem;
  right: 2rem;
  box-sizing: border-box;
  max-width: 420px;
  margin-left: 2rem;
  padding: 1rem;
  background-color: #f5f1eb;
  border: 1px solid #fff;
  box-shadow: 1rem 1rem 1rem rgba(0, 0, 0, 0.1);
}
.cookie_notice p {
  margin: 0 1rem 0 0;
  line-height: 1.3;
  font-size: 1rem;
}
.cookie_notice a.round-button {
  display: inline-block;
  color: #fff;
  font-weight: 700;
  text-decoration: none;
  text-align: center;
  font-size: 1.1rem;
}

@media screen and (min-width: 821px) and (max-width: 1024px) {
  h1 {
    font-size: 2.4rem;
  }
  h2 {
    font-size: 1.6rem;
  }
  h3 {
    font-size: 1.3rem;
  }
  p {
    line-height: 1.4;
  }
  .flex > div .text,
  #about,
  #features .grid-container div.text p,
  #nature .grid > div .flex .text {
    font-size: 1rem;
  }
  #about .flex > div:first-child, #about .flex > div.gallery {
    width: 50%;
  }
  #features section .grid-container {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(8, 1fr);
  }
  #features section .grid-container div:nth-of-type(1) {
    order: 1;
  }
  #features section .grid-container div:nth-of-type(2) {
    order: 2;
  }
  #features section .grid-container div:nth-of-type(3) {
    order: 4;
  }
  #features section .grid-container div:nth-of-type(4) {
    order: 3;
  }
  #features section .grid-container div:nth-of-type(5) {
    order: 5;
  }
  #features section .grid-container div:nth-of-type(6) {
    order: 6;
  }
  #features section .grid-container div:nth-of-type(7) {
    order: 8;
  }
  #features section .grid-container div:nth-of-type(8) {
    order: 7;
  }
  #features section .grid-container div:nth-of-type(9) {
    order: 9;
  }
  #features section .grid-container div:nth-of-type(10) {
    order: 10;
  }
  #features section .grid-container div:nth-of-type(11) {
    order: 12;
  }
  #features section .grid-container div:nth-of-type(12) {
    order: 11;
  }
  #features section .grid-container div:nth-of-type(13) {
    order: 13;
  }
  #features section .grid-container div:nth-of-type(14) {
    order: 14;
  }
  #features section .grid-container div:nth-of-type(15) {
    order: 16;
  }
  #features section .grid-container div:nth-of-type(16) {
    order: 15;
  }
  #features section .grid-container div:nth-of-type(5)::before,
  #features section .grid-container div:nth-of-type(13)::before {
    right: -30px;
    border-left: 30px solid #fff;
    border-right: transparent;
  }
  #features section .grid-container div:nth-of-type(3)::before,
  #features section .grid-container div:nth-of-type(7)::before,
  #features section .grid-container div:nth-of-type(11)::before {
    right: 100%;
    border-right: 30px solid #fff;
    border-left: transparent;
  }
}
@media screen and (max-width: 820px) {
  h1 {
    font-size: 2.4rem;
  }
  h2 {
    font-size: 1.6rem;
  }
  h3, #features .grid-container .text h3 {
    font-size: 1.5rem;
  }
  p {
    line-height: 1.3;
  }
  .flex > div .text,
  #about,
  #features .grid-container div.text p,
  #nature .grid > div .flex .text {
    font-size: 1.2rem;
  }
  section, #nature .grid .flex > div.text, #about-too .text {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  .flex {
    align-items: flex-start;
  }
  nav {
    width: 100vw;
  }
  nav ul li {
    font-size: 1.4rem;
  }
  .menu-opened nav {
    left: 0;
  }
  #menu-button {
    top: 6vw;
    right: 6vw;
  }
  .row.full-window {
    min-height: 120vw;
  }
  .flex {
    flex-wrap: wrap;
  }
  .flex > div {
    width: 100% !important;
  }
  #first #logo {
    width: calc(100vw - 6rem);
    left: 2rem;
    margin-top: 6rem;
  }
  #first #logo p {
    margin-bottom: 0.8rem;
    font-size: 2.6vw;
  }
  #about {
    background-position: -530px 40%;
  }
  #about .flex > div:first-child {
    padding-right: 0;
  }
  #about .flex > div.gallery {
    margin-top: 2rem;
  }
  #about .flex > div.gallery img {
    width: 100%;
  }
  #collections {
    padding-bottom: 1rem;
  }
  #collections .flex {
    min-height: 0;
    align-content: flex-start;
  }
  #collections .flex h3 {
    margin: 0;
  }
  #features .grid-container {
    grid-template-columns: repeat(1, 1fr);
    grid-template-rows: repeat(16, 1fr);
  }
  #features .grid-container div:nth-of-type(1) {
    order: 1;
  }
  #features .grid-container div:nth-of-type(2) {
    order: 2;
  }
  #features .grid-container div:nth-of-type(3) {
    order: 3;
  }
  #features .grid-container div:nth-of-type(4) {
    order: 4;
  }
  #features .grid-container div:nth-of-type(5) {
    order: 5;
  }
  #features .grid-container div:nth-of-type(6) {
    order: 6;
  }
  #features .grid-container div:nth-of-type(7) {
    order: 7;
  }
  #features .grid-container div:nth-of-type(8) {
    order: 8;
  }
  #features .grid-container div:nth-of-type(9) {
    order: 9;
  }
  #features .grid-container div:nth-of-type(10) {
    order: 10;
  }
  #features .grid-container div:nth-of-type(11) {
    order: 11;
  }
  #features .grid-container div:nth-of-type(12) {
    order: 12;
  }
  #features .grid-container div:nth-of-type(13) {
    order: 13;
  }
  #features .grid-container div:nth-of-type(14) {
    order: 14;
  }
  #features .grid-container div:nth-of-type(15) {
    order: 15;
  }
  #features .grid-container div:nth-of-type(16) {
    order: 16;
  }
  #features .grid-container div.text::before {
    top: calc(100% - 20px);
    right: calc(50% - 20px);
    transform: rotate(90deg);
    border-top: 40px solid transparent;
    border-right: transparent;
    border-bottom: 40px solid transparent;
    border-left: 40px solid #fff;
  }
  #features .grid-container div.image {
    min-height: 25vh;
  }
  #nature {
    min-height: 0;
  }
  #nature .grid {
    min-height: 0;
    display: block !important;
  }
  #nature .grid > div {
    width: 100%;
  }
  #nature .grid > div .flex .text {
    margin: 2rem 0;
  }
  #nature .grid > div .flex .fit {
    height: 100vw;
  }
  #about-too .section, #about-too .flex {
    height: auto;
  }
  #about-too .section > div.fit, #about-too .flex > div.fit {
    height: 100vw;
  }
  #contacts #map-cover #map {
    height: 60vh;
  }
  .slider .round-button.toleft {
    left: calc(6vw - 1rem);
  }
  .slider .round-button.toright {
    right: calc(6vw - 1rem);
  }
}
/* animation */
.bounce {
  animation-name: bounce;
  animation-duration: 2s;
  animation-timing-function: ease;
  transform-origin: 50% 100%;
}
.bounce.infinite {
  animation-iteration-count: infinite;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-30px);
  }
  60% {
    transform: translateY(-15px);
  }
}
.slideUp {
  animation-name: slideUp;
  animation-duration: 1.5s;
  animation-timing-function: ease;
  visibility: visible !important;
}

@keyframes slideUp {
  0% {
    transform: translateY(100%);
  }
  50% {
    transform: translateY(-8%);
  }
  65% {
    transform: translateY(4%);
  }
  80% {
    transform: translateY(-4%);
  }
  95% {
    transform: translateY(2%);
  }
  100% {
    transform: translateY(0%);
  }
}
.fadeIn {
  animation-name: fadeIn;
  animation-duration: 1s;
  animation-timing-function: ease-in-out;
  visibility: visible !important;
}

@keyframes fadeIn {
  0% {
    transform: scale(0);
    opacity: 0;
  }
  60% {
    transform: scale(1.1);
  }
  80% {
    transform: scale(0.9);
    opacity: 1;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
/* fonts */
@font-face {
  font-family: "Futura PT";
  src: url("../fonts/FuturaPT-Light.eot");
  src: local("Futura PT Light"), local("FuturaPT-Light"), url("../fonts/FuturaPT-Light.eot?#iefix") format("embedded-opentype"), url("../fonts/FuturaPT-Light.woff") format("woff"), url("../fonts/FuturaPT-Light.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
}/*# sourceMappingURL=styles.css.map */