@charset "UTF-8";

* {
  margin: 0;
  padding: 0;
  text-decoration: none;
  text-transform: none;
  box-sizing: border-box;
  list-style: none;
  border-radius: 0;
  color: black;
  font-size: 16px;
  line-height: 1;
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
}

*:focus {
  outline: transparent;
}

.container {
  width: 90%;
  max-width: 1140px;
  margin: auto;
}

body {
  overflow-x: hidden;
  max-width: 100%;
  background-color: white;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

body footer {
  margin-top: auto;
  margin-bottom: 0;
}

.section-title {
  font-family: Belladonna;
  font-size: 36px;
  letter-spacing: 2px;
  line-height: 1.33;
  text-transform: uppercase;
}

input {
  border-radius: 0;
  -webkit-appearance: none;
}

.page-search .page-header {
  padding-top: 85px;
  padding-bottom: 35px;
}

.page-search .page-header h1 {
  font-size: 50px;
  font-family: Belladonna;
  letter-spacing: 3px;
  position: relative;
}

.page-search .page-header h1:before {
  content: "";
  position: absolute;
  top: calc(50% - 1px);
  right: calc(100% + 25px);
  background-color: #999999;
  height: 1px;
  width: 0;
  transition: 0.5s;
}

.page-search .page-header h1.open:before {
  width: calc((100vw - 1140px)/2 + 85px);
}

.page-search .page-header h1:after {
  content: "";
  position: absolute;
  bottom: -35px;
  left: 2px;
  width: 35px;
  height: 1px;
  background-color: black;
}

.page-search .page-header .container {
  display: flex;
  align-items: center;
  padding-left: 110px;
}

.page-search h2 {
  font-size: 24px;
  text-align: center;
  padding: 30px 0 40px 0;
  width: 100%;
}

.page-search .search-list {
  padding-bottom: 70px;
}

.page-search .search-list .container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.page-search .search-list .box {
  display: flex;
  align-items: center;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  width: calc(50% - 20px);
  margin-bottom: 40px;
  transition: 0.3s;
}

.page-search .search-list .box:hover {
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.4);
}

.page-search .search-list .box .img {
  width: 200px;
  height: 200px;
  min-width: 200px;
  padding: 20px;
  margin-right: 20px;
}

.page-search .search-list .box .img img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

.page-search .search-list .box .info {
  padding: 20px 20px 20px 0;
}

.page-search .search-list .box .info .description * {
  font-size: 14px;
  line-height: 1.78;
}

.page-search .search-list .box .info h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 15px;
  line-height: 1.2;
}

.page-search .search-list .box .info .box-ico {
  display: flex;
  align-items: flex-start;
  margin-bottom: 10px;
}

.page-search .search-list .box .info .box-ico:last-child {
  margin-bottom: 0;
}

.page-search .search-list .box .info .box-ico svg {
  width: 20px;
  height: 20px;
  margin-right: 15px;
}

.page-search .search-list .box .info .box-ico p {
  font-size: 16px;
  line-height: 1.5;
}

.page-search .unsearch {
  text-align: center;
  padding-top: 40px;
  margin: auto;
}

.page-search .search {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-bottom: 40px;
}

.page-search .search input {
  border: none;
  border-bottom: 1px solid black;
  padding: 5px 10px;
}

.page-search .search .icon {
  display: none;
}

@font-face {
  font-family: Belladonna;
  src: url("../fonts/belladonna_normal.ttf");
}

/* Slider */

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

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

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

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

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

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

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

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

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

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

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

.slick-slide img {
  display: block;
}

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

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

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

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

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

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

/* Slider */

/* Icons */

@font-face {
  font-family: "slick";
  src: url("./fonts/slick.eot");
  src: url("./fonts/slick.eot?#iefix") format("embedded-opentype"), url("./fonts/slick.woff") format("woff"), url("./fonts/slick.ttf") format("truetype"), url("./fonts/slick.svg#slick") format("svg");
  font-weight: normal;
  font-style: normal;
}

/* Arrows */

.slick-prev,
.slick-next {
  position: absolute;
  display: block;
  height: 20px;
  width: 20px;
  line-height: 0px;
  font-size: 0px;
  cursor: pointer;
  background: transparent;
  color: transparent;
  top: 50%;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  padding: 0;
  border: none;
  outline: none;
}

.slick-prev:hover,
.slick-prev:focus,
.slick-next:hover,
.slick-next:focus {
  outline: none;
  background: transparent;
  color: transparent;
}

.slick-prev:hover:before,
.slick-prev:focus:before,
.slick-next:hover:before,
.slick-next:focus:before {
  opacity: 1;
}

.slick-prev.slick-disabled:before,
.slick-next.slick-disabled:before {
  opacity: 0.25;
}

.slick-prev:before,
.slick-next:before {
  font-family: "slick";
  font-size: 20px;
  line-height: 1;
  color: white;
  opacity: 0.75;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.slick-prev {
  left: -25px;
}

[dir="rtl"] .slick-prev {
  left: auto;
  right: -25px;
}

.slick-prev:before {
  content: "←";
}

[dir="rtl"] .slick-prev:before {
  content: "→";
}

.slick-next {
  right: -25px;
}

[dir="rtl"] .slick-next {
  left: -25px;
  right: auto;
}

.slick-next:before {
  content: "→";
}

[dir="rtl"] .slick-next:before {
  content: "←";
}

/* Dots */

.slick-dotted.slick-slider {
  margin-bottom: 30px;
}

.slick-dots {
  position: absolute;
  bottom: -25px;
  list-style: none;
  display: block;
  text-align: center;
  padding: 0;
  margin: 0;
  width: 100%;
}

.slick-dots li {
  position: relative;
  display: inline-block;
  height: 20px;
  width: 20px;
  margin: 0 5px;
  padding: 0;
  cursor: pointer;
}

.slick-dots li button {
  border: 0;
  background: transparent;
  display: block;
  height: 20px;
  width: 20px;
  outline: none;
  line-height: 0px;
  font-size: 0px;
  color: transparent;
  padding: 5px;
  cursor: pointer;
}

.slick-dots li button:hover,
.slick-dots li button:focus {
  outline: none;
}

.slick-dots li button:hover:before,
.slick-dots li button:focus:before {
  opacity: 1;
}

.slick-dots li button:before {
  position: absolute;
  top: 0;
  left: 0;
  content: "•";
  width: 20px;
  height: 20px;
  font-family: "slick";
  font-size: 6px;
  line-height: 20px;
  text-align: center;
  color: black;
  opacity: 0.25;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.slick-dots li.slick-active button:before {
  color: black;
  opacity: 0.75;
}

.header .top-line {
  padding: 10px 0;
  background-color: black;
}

.header .top-line .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header .top-line .search {
  display: flex;
  align-content: center;
}

.header .top-line .search .input {
  height: 30px;
  width: 0;
  transition: 0.3s;
  overflow: hidden;
}

.header .top-line .search .input input {
  border: none;
  border-bottom: 1px solid white;
  background-color: transparent;
  color: white;
  height: 30px;
}

.header .top-line .search .input input::-webkit-search-decoration,
.header .top-line .search .input input::-webkit-search-cancel-button,
.header .top-line .search .input input::-webkit-search-results-button,
.header .top-line .search .input input::-webkit-search-results-decoration {
  display: none;
}

.header .top-line .search .icon {
  padding: 10px;
  width: 38px;
  height: 38px;
  margin-left: -10px;
  transition: 0.3s;
  position: relative;
  cursor: pointer;
}

.header .top-line .search .icon svg {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 18px;
  height: 18px;
  transition: 0.3s;
}

.header .top-line .search .icon svg * {
  fill: #cc99cc;
  stroke: #cc99cc;
}

.header .top-line .search .icon svg:nth-child(1) {
  -webkit-transform: translateX(-50%) translateY(-50%) scale(1);
  transform: translateX(-50%) translateY(-50%) scale(1);
}

.header .top-line .search .icon svg:nth-child(2) {
  -webkit-transform: translateX(-50%) translateY(-50%) scale(0);
  transform: translateX(-50%) translateY(-50%) scale(0);
}

.header .top-line .search.open .input {
  width: 210px;
  transition: 0.3s;
}

.header .top-line .search.open .icon {
  margin-left: 0;
}

.header .top-line .search.open .icon svg:nth-child(1) {
  -webkit-transform: translateX(-50%) translateY(-50%) scale(0);
  transform: translateX(-50%) translateY(-50%) scale(0);
}

.header .top-line .search.open .icon svg:nth-child(2) {
  -webkit-transform: translateX(-50%) translateY(-50%) scale(1);
  transform: translateX(-50%) translateY(-50%) scale(1);
}

.header .top-line .right-menu ul {
  display: flex;
}

.header .top-line .right-menu .current-menu-item a {
  color: #cc99cc;
}

.header .top-line .right-menu a {
  font-size: 15px;
  font-weight: 300;
  color: white;
  margin-left: 80px;
  transition: 0.3s;
}

.header .top-line .right-menu a:hover {
  color: #cc99cc;
}

.header .top-line .right-menu li:first-child a {
  margin-left: 0;
}

.header .top-line .mob-btn {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  cursor: pointer;
  margin-right: -3.5px;
}

.header .top-line .mob-btn span {
  display: block;
  width: 33px;
  height: 3px;
  background-color: #cc99cc;
  margin-bottom: 5px;
  transition: 0.3s;
}

.header .top-line .mob-btn span:nth-child(2) {
  transition: 0.2s;
}

.header .top-line .mob-btn span:last-child {
  margin-bottom: 0;
}

.header .top-line .mob-btn.open span:nth-child(1) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  margin-bottom: -5px;
}

.header .top-line .mob-btn.open span:nth-child(2) {
  opacity: 0;
}

.header .top-line .mob-btn.open span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  margin-top: -6px;
}

.header .center-line {
  padding: 45px 0;
}

.header .center-line .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header .center-line .time {
  color: #333333;
  width: 170px;
}

.header .center-line .time p {
  font-size: 11px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #999999;
}

.header .center-line .time p span {
  font-size: 11px;
  letter-spacing: 1px;
  color: #333333;
}

.header .center-line .logo {
  display: block;
  width: 230px;
  height: 71px;
}

.header .center-line .logo img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

.header .center-line .language {
  width: 170px;
  text-align: right;
}

.header .center-line .language p {
  font-size: 11px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #999999;
}

.header .center-line .language p span {
  font-size: 11px;
  letter-spacing: 1px;
  color: #333333;
}

.header .menu-line {
  border-top: 1px solid #e6e6e6;
  border-bottom: 1px solid #e6e6e6;
  background-color: white;
}

.header .menu-line .container {
  max-width: 1270px;
  width: 100%;
}

.header .menu-line ul {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header .menu-line li {
  flex-grow: 1;
}

.header .menu-line .current-menu-item a {
  color: black;
  background-color: #f1e1ee;
}

.header .menu-line a {
  display: block;
  padding: 15px;
  transition: 0.3s;
  text-align: center;
  color: #666666;
}

.header .menu-line a:hover {
  color: black;
  background-color: #f1e1ee;
}

.header .mob-menu {
  display: none;
  position: absolute;
  left: 0;
  top: 100%;
  background-color: white;
  width: 100%;
  height: calc(100vh - 60px);
  padding-top: 20px;
  padding-bottom: 40px;
  -webkit-transform: translateX(-103%);
  transform: translateX(-103%);
  transition: 0.3s;
  overflow-y: auto;
}

.header .mob-menu.open {
  -webkit-transform: none;
  transform: none;
}

.header .mob-menu.open .main-menu-mob:after {
  transition-delay: 0.5s;
  width: 65px;
}

.header .mob-menu .container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.header .mob-menu .logo {
  width: 141px;
  height: 43px;
  margin: 0 auto 30px auto;
}

.header .mob-menu .languages {
  position: absolute;
  right: 5vw;
  top: 93px;
  margin-right: -10px;
  margin-top: -10px;
}

.header .mob-menu .languages a {
  padding: 10px;
  display: block;
  font-size: 14px;
  font-weight: 700;
}

.header .mob-menu .main-menu-mob {
  margin-bottom: 40px;
  position: relative;
}

.header .mob-menu .main-menu-mob li {
  margin-bottom: 10px;
}

.header .mob-menu .main-menu-mob li:last-child {
  margin-bottom: 0;
}

.header .mob-menu .main-menu-mob:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -20px;
  width: 0;
  height: 1px;
  background-color: #333333;
  transition: 0.5s;
  transition-delay: 0s;
}

.header .mob-menu .main-menu-mob a {
  font-size: 18px;
}

.header .mob-menu .bottom-menu-mob li {
  margin-bottom: 10px;
}

.header .mob-menu .bottom-menu-mob li:last-child {
  margin-bottom: 0;
}

.header .mob-menu .bottom-menu-mob a {
  font-size: 18px;
}

.footer {
  padding-top: 0px;
  border-top: 1px solid #e6e6e6;
}

.footer .main-content {
  padding-bottom: 70px;
}

.footer .main-content .container {
  display: flex;
  justify-content: space-between;
}

.footer .main-content .coll_1 {
  width: 225px;
  min-width: 220px;
}

.footer .main-content .coll_1 .logo {
  display: block;
  width: 92px;
  height: 67px;
  margin-bottom: 45px;
}

.footer .main-content .coll_1 .logo img {
  width: 100%;
  height: 100%;
}

.footer .main-content .coll_1 p {
  font-size: 12px;
  line-height: 1.8;
  color: #333333;
}

.footer .main-content .coll_1 p.address {
  margin-bottom: 30px;
}

.footer .main-content .coll_1 a {
  font-size: 12px;
  color: #333333;
  transition: 0.3s;
}

.footer .main-content .coll_1 a:hover {
  color: black;
}

.footer .main-content .coll_1 .socials {
  margin-top: 10px;
  display: flex;
  align-items: center;
  margin-left: -10px;
}

.footer .main-content .coll_1 .socials a {
  padding: 10px;
}

.footer .main-content .coll_1 .socials a.facebook {
  height: 38px;
  width: 35px;
}

.footer .main-content .coll_1 .socials a.twitter {
  height: 38px;
  width: 38px;
}

.footer .main-content .coll_1 .socials a.youtube {
  height: 38px;
  width: 40px;
}

.footer .main-content .coll_1 .socials a.google {
  height: 38px;
  width: 43px;
}

.footer .main-content .coll_1 .socials a svg {
  width: 100%;
  height: 100%;
}

.footer .main-content .coll_1 .socials a svg * {
  transition: 0.3s;
  fill: #999999;
}

.footer .main-content .coll_1 .socials a:hover svg * {
  fill: black;
}

.footer .main-content .coll_2 {
  width: 300px;
  min-width: 250px;
  padding-top: 25px;
}

.footer .main-content .coll_2 .menus {
  display: flex;
  justify-content: space-between;
}

.footer .main-content .coll_2 a {
  display: block;
  font-size: 14px;
  color: #999999;
  margin-bottom: 10px;
  transition: 0.3s;
}

.footer .main-content .coll_2 a:hover {
  color: black;
}

.footer .main-content .coll_2 li:last-child a {
  margin-bottom: 0;
}

.footer .main-content .coll_3 {
  display: flex;
  flex-direction: column;
  width: 440px;
  padding-top: 25px;
}

.footer .main-content .coll_3 p {
  font-size: 14px;
  line-height: 1.78;
  color: #999999;
  margin-bottom: 10px;
}

.footer .main-content h3 {
  font-size: 22px;
  font-family: Belladonna;
  letter-spacing: 1px;
  margin-bottom: 30px;
  text-transform: uppercase;
}

.footer .main-content .payment {
  margin-top: auto;
  display: flex;
  justify-content: flex-end;
}

.footer .main-content .payment svg {
  width: 40px;
  height: 27px;
  margin-left: 25px;
}

.footer .main-content .payment svg:nth-child(1) {
  margin-left: 0;
}

.footer .bottom-line {
  background-color: black;
}

.footer .bottom-line .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
}

.footer .bottom-line p,
.footer .bottom-line a {
  font-size: 12px;
  font-weight: 500;
  color: white;
  transition: 0.3s;
  margin: 0 auto;
}

.footer .bottom-line a:hover {
  color: #ff0000;
}

.footer .bottom-line .create {
  display: flex;
  align-items: center;
}

.footer .bottom-line svg {
  margin-left: 0px;
  width: 80px;
  height: 30px;
}

.page-home .main-banner {
  margin-bottom: 0;
  overflow: hidden;
  height: calc(100vh - 267px);
  min-height: 28.540vw;
  max-height: 36.458vw;
}

.page-home .main-banner img {
  width: 100%;
  height: calc(100vh - 267px);
  -o-object-fit: cover;
  object-fit: cover;
  min-height: 28.540vw;
  max-height: 36.458vw;
}

.page-home .main-banner .slide-block {
  position: relative;
}

.page-home .main-banner .num {
  font-family: Belladonna;
  font-size: 15.625vw;
  color: white;
  position: absolute;
  z-index: 2;
  left: 0;
  bottom: 0;
  -webkit-transform: translateX(-27%) translateY(21%);
  transform: translateX(-27%) translateY(21%);
}

.page-home .main-banner_mob {
  margin-bottom: 0;
  overflow: hidden;
  height: calc(100vh - 143px);
  max-height: 137.500vw;
  min-height: 120vw;
}

.page-home .main-banner_mob img {
  width: 100%;
  height: calc(100vh - 143px);
  max-height: 137.500vw;
  min-height: 120vw;
  -o-object-fit: cover;
  object-fit: cover;
}

.page-home .main-banner_mob .slide-block {
  position: relative;
}

.page-home .main-banner_mob .num {
  font-family: Belladonna;
  font-size: 51.250vw;
  color: white;
  position: absolute;
  z-index: 2;
  left: 0;
  bottom: 0;
  -webkit-transform: translateX(-27%) translateY(21%);
  transform: translateX(-27%) translateY(21%);
}

.page-home .directions__header {
  padding: 80px 0px 80px 0;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.page-home .directions__header .sub-text {
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #999999;
}

.page-home .directions__header .sub-text:first-child {
  position: relative;
}

.page-home .directions__header .sub-text:first-child:before {
  content: "";
  position: absolute;
  top: calc(50% - 1px);
  left: calc(100% + 25px);
  height: 1px;
  background-color: #999999;
  width: 0;
  transition: 0.5s;
}

.page-home .directions__header .sub-text:first-child.open:before {
  width: calc((100vw - 1140px)/2 + 150px);
}

.page-home .directions__header .sub-text:last-child {
  position: relative;
}

.page-home .directions__header .sub-text:last-child:before {
  content: "";
  position: absolute;
  top: 50%;
  right: calc(100% + 30px);
  width: 35px;
  height: 1px;
  background-color: black;
}

.page-home .directions__header .section-title {
  text-align: right;
  padding: 0px 0 0px 0;
}

.page-home .directions__content {
  display: flex;
  flex-wrap: wrap;
}

.page-home .directions__content .box {
  width: 380px;
  height: 380px;
}

.page-home .directions__content .box:nth-child(1) {
  order: 1;
}

.page-home .directions__content .box:nth-child(2) {
  order: 2;
}

.page-home .directions__content .box:nth-child(3) {
  order: 3;
}

.page-home .directions__content .box:nth-child(4) {
  order: 6;
}

.page-home .directions__content .box:nth-child(5) {
  order: 5;
}

.page-home .directions__content .box:nth-child(6) {
  order: 4;
}

.page-home .directions__content .box.text {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0 30px;
  position: relative;
}

.page-home .directions__content .box.text h3 {
  text-align: center;
  font-family: Belladonna;
  font-size: 36px;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 10px;
  color: #333333;
}

.page-home .directions__content .box.text h4 {
  text-align: center;
  font-family: Belladonna;
  font-size: 25px;
  letter-spacing: 7px;
  text-transform: uppercase;
  margin-bottom: 20px;
  color: #333333;
}

.page-home .directions__content .box.text .hr {
  height: 1px;
  width: 130px;
  background-color: #cccccc;
  margin-bottom: 30px;
}

.page-home .directions__content .box.text p {
  text-align: center;
  font-size: 12px;
  line-height: 1.33;
  font-weight: 300;
  color: #333333;
  width: 100%;
}

.page-home .directions__content .box.text .hr-l {
  height: 1px;
  width: 65px;
  background-color: #333333;
  margin-top: 20px;
}

.page-home .directions__content .box.img {
  position: relative;
}

.page-home .directions__content .box.img img {
  position: absolute;
  left: 50%;
  top: 50%;
}

.page-home .directions__content .box.img .triangle {
  transition: 0.3s;
  transition-delay: 0.6s;
}

.page-home .directions__content .box.img:nth-child(1) img {
  height: 100%;
  -webkit-transform: translateX(calc(-1 * (50% + 70px))) translateY(-50%);
  transform: translateX(calc(-1 * (50% + 70px))) translateY(-50%);
}

.page-home .directions__content .box.img:nth-child(1) .triangle {
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  border: 15px solid transparent;
  border-right: 15px solid white;
  z-index: 2;
}

.page-home .directions__content .box.img:nth-child(3) img {
  height: 100%;
  -webkit-transform: translateX(calc(-1 * (50% - 70px))) translateY(-50%);
  transform: translateX(calc(-1 * (50% - 70px))) translateY(-50%);
}

.page-home .directions__content .box.img:nth-child(3) .triangle {
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  border: 15px solid transparent;
  border-bottom: 15px solid white;
  z-index: 2;
}

.page-home .directions__content .box.img:nth-child(5) img {
  width: 100%;
  max-width: 260px;
  margin-top: auto;
  -webkit-transform: translateX(-50%) translateY(calc( -1 * (50% - 55px)));
  transform: translateX(-50%) translateY(calc( -1 * (50% - -23px)));
}

.page-home .directions__content .box.img:nth-child(5) .triangle {
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  border: 15px solid transparent;
  border-left: 15px solid white;
  z-index: 2;
}

.page-home .news {
  padding-top: 200px;
  padding-left: calc((100% - 1140px)/2);
  padding-bottom: 160px;
  display: flex;
}

.page-home .news .news__header {
  padding-left: 120px;
  margin-bottom: 140px;
}

.page-home .news .news__header .sub-text {
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #999999;
}

.page-home .news .news__header .sub-text:first-child {
  position: relative;
}

.page-home .news .news__header .sub-text:first-child:before {
  content: "";
  position: absolute;
  top: calc(50% - 1px);
  right: calc(100% + 25px);
  height: 1px;
  background-color: #999999;
  width: 0;
  transition: 0.5s;
}

.page-home .news .news__header .sub-text:first-child.open:before {
  width: calc((100vw - 1140px)/2 + 150px);
}

.page-home .news .news__header .sub-text:last-child {
  position: relative;
  padding-left: 65px;
}

.page-home .news .news__header .sub-text:last-child:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 2px;
  width: 35px;
  height: 1px;
  background-color: black;
}

.page-home .news .news__header .section-title {
  padding: 60px 0 30px 0;
}

.page-home .news .news__left {
  width: calc(100vw - ((100vw - 1140px) / 2) - 35.938vw);
}

.page-home .news .news__list {
  max-width: 831.5px;
  margin-bottom: 0;
}

.page-home .news .news__list .box {
  display: flex;
  align-items: center;
  position: relative;
}

.page-home .news .news__list .box:nth-child(1) {
  margin-bottom: 20px;
}

.page-home .news .news__list .box:nth-child(2) .text {
  transition-delay: 0.6s;
}

.page-home .news .news__list .box img {
  width: 300px;
  height: 300px;
  -o-object-fit: cover;
  object-fit: cover;
}

.page-home .news .news__list .box .text {
  background-color: rgba(255, 255, 255, 0.9);
  padding: 50px 30px;
  margin-left: -70px;
  transition: 0.5s;
  transition-delay: 0.3s;
  -webkit-transform: translateX(70px);
  transform: translateX(70px);
  opacity: 0;
}

.page-home .news .news__list .box .text .date {
  font-size: 13px;
  letter-spacing: 1px;
  font-weight: 300;
  color: #999999;
  margin-bottom: 27px;
}

.page-home .news .news__list .box .text .title {
  font-size: 22px;
  line-height: 1.36;
  letter-spacing: 1px;
  font-family: Belladonna;
  text-transform: uppercase;
}

.page-home .news .news__list .box .read-more {
  font-size: 14px;
  color: #999999;
  text-transform: uppercase;
  position: absolute;
  bottom: 0;
  right: 80px;
}

.page-home .news .news__list .box .read-more:before {
  content: "";
  position: absolute;
  left: -60px;
  top: calc(50% - 1px);
  width: 35px;
  height: 1px;
  background-color: black;
  transition: 0.3s;
}

.page-home .news .news__list .box .read-more:hover:before {
  left: -10px;
  width: 120px;
}

.page-home .news .news__list .slick-active .box .text {
  -webkit-transform: translateX(0);
  transform: translateX(0);
  opacity: 1;
}

.page-home .news .news__list .slick-dots {
  bottom: -70px;
  z-index: 2;
  text-align: left;
  padding-left: 115px;
  display: flex;
  align-content: center;
}

.page-home .news .news__list .slick-dots li {
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-home .news .news__list .slick-dots li.slick-active button {
  width: 15px;
  height: 15px;
  border-color: black;
  background-color: transparent;
}

.page-home .news .news__list .slick-dots button {
  padding: 0;
  width: 5px;
  height: 5px;
  background-color: #999999;
  border: 1px solid #999999;
  border-radius: 99px;
  transition: 0.3s;
}

.page-home .news .news__list .slick-dots button:before {
  display: none;
}

.page-home .news .news__right {
  background-size: cover;
  background-position: left top;
  width: 35.938vw;
  min-width: 35.938vw;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 100px 80px;
}

.page-home .news .news__right h3 {
  font-family: Belladonna;
  font-size: 31px;
  line-height: 1.32;
  letter-spacing: 1.5px;
  margin-bottom: 60px;
  max-width: 350px;
}

.page-home .news .news__right form {
  display: flex;
  align-items: center;
}

.page-home .news .news__right form .wpcf7-response-output {
  display: none !important;
}

.page-home .news .news__right form p {
  display: flex;
  align-items: center;
}

.page-home .news .news__right form .input {
  height: 50px;
  width: 100%;
  max-width: 370px;
  border: none;
  background-color: white;
  padding-left: 23px;
  font-size: 13px;
  font-weight: 700;
  color: black;
}

.page-home .news .news__right form .input::-webkit-input-placeholder {
  font-size: 11px;
  font-weight: 700;
  color: #999999;
  text-transform: uppercase;
}

.page-home .news .news__right form .input:-ms-input-placeholder {
  font-size: 11px;
  font-weight: 700;
  color: #999999;
  text-transform: uppercase;
}

.page-home .news .news__right form .input::-ms-input-placeholder {
  font-size: 11px;
  font-weight: 700;
  color: #999999;
  text-transform: uppercase;
}

.page-home .news .news__right form .input::placeholder {
  font-size: 11px;
  font-weight: 700;
  color: #999999;
  text-transform: uppercase;
}

.page-home .news .news__right form .input.wpcf7-not-valid {
  border: 3px solid #7A0117;
}

.page-home .news .news__right form .input + span {
  display: none !important;
}

.page-home .news .news__right form .btn {
  background-color: black;
  border: none;
  height: 50px;
  width: 130px;
  min-width: 130px;
  font-size: 13px;
  text-transform: uppercase;
  color: white;
  font-weight: 700;
  text-align: center;
  cursor: pointer;
  transition: 0.3s;
}

.page-home .news .news__right form .btn:hover {
  background-color: #333333;
}

.popup-thx {
  position: fixed;
  top: 50%;
  left: 50%;
  -webkit-transform: translateX(-50%) translateY(0);
  transform: translateX(-50%) translateY(0);
  background-color: white;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.5);
  opacity: 0;
  padding: 30px 50px;
  transition: 0.3s;
  z-index: -2;
}

.popup-thx.open {
  -webkit-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
  opacity: 1;
  z-index: 2;
}

.popup-thx .exit-btn {
  position: absolute;
  right: 0;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  -webkit-transform: translateX(100%) translateY(-100%);
  transform: translateX(100%) translateY(-100%);
  width: 30px;
  height: 30px;
  cursor: pointer;
}

.popup-thx .exit-btn span {
  display: block;
  width: 30px;
  height: 3px;
  background-color: black;
  transition: 0.3s;
}

.popup-thx .exit-btn span:nth-child(1) {
  margin-bottom: -1.5px;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.popup-thx .exit-btn span:nth-child(2) {
  margin-top: -1.5px;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.popup-thx .exit-btn:hover span:nth-child(1) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.popup-thx .exit-btn:hover span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.popup-thx .text h3 {
  font-family: Belladonna;
  font-size: 26px;
}

.page-shop .page-header {
  padding-top: 85px;
  padding-bottom: 35px;
}

.page-shop .page-header h1 {
  font-size: 50px;
  font-family: Belladonna;
  letter-spacing: 3px;
  position: relative;
}

.page-shop .page-header h1:before {
  content: "";
  position: absolute;
  top: calc(50% - 1px);
  right: calc(100% + 25px);
  background-color: #999999;
  height: 1px;
  width: 0;
  transition: 0.5s;
}

.page-shop .page-header h1.open:before {
  width: calc((100vw - 1140px)/2 + 85px);
}

.page-shop .page-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-left: 110px;
}

.page-shop .page-header .search-brands {
  display: flex;
  align-items: center;
  margin-right: -10px;
}

.page-shop .page-header .search-brands input {
  border: none;
  border-bottom: 1px solid black;
  margin-right: 10px;
  padding: 5px 10px;
}

.page-shop .page-header .search-brands p {
  font-size: 14px;
  color: #999999;
  text-transform: uppercase;
  margin-right: 20px;
}

.page-shop .page-header .search-brands .icon {
  padding: 10px;
  width: 38px;
  height: 38px;
  margin-left: -10px;
  transition: 0.3s;
  position: relative;
  cursor: pointer;
}

.page-shop .page-header .search-brands .icon svg {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 18px;
  height: 18px;
  transition: 0.3s;
}

.page-shop .page-header .search-brands .icon svg * {
  fill: #cc99cc;
  stroke: #cc99cc;
}

.page-shop .page-header .search-brands .icon svg:nth-child(1) {
  -webkit-transform: translateX(-50%) translateY(-50%) scale(1);
  transform: translateX(-50%) translateY(-50%) scale(1);
}

.page-shop .page-header .search-brands .icon svg:nth-child(2) {
  -webkit-transform: translateX(-50%) translateY(-50%) scale(0);
  transform: translateX(-50%) translateY(-50%) scale(0);
}

.page-shop .filters {
  margin-top: -8px;
}

.page-shop .filters .container {
  display: flex;
  align-items: center;
  padding-left: 112px;
  width: 90%;
}

.page-shop .filters .line {
  width: 35px;
  min-width: 35px;
  height: 1px;
  background-color: #333333;
  margin-right: 30px;
}

.page-shop .filters .list {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.page-shop .filters .list a {
  display: block;
  font-size: 15px;
  font-weight: 400;
  color: #666666;
  transition: 0.3s;
  position: relative;
  white-space: nowrap;
}

.page-shop .filters .list a:before {
  content: "";
  position: absolute;
  top: 50%;
  left: -5%;
  width: 0;
  height: 1px;
  background-color: #999999;
  transition: 0.3s;
}

.page-shop .filters .list a:hover {
  color: black;
}

.page-shop .filters .list a:hover:before {
  width: 110%;
}

.page-shop .shops-list {
  padding: 90px 0 0 0;
}

.page-shop .shops-list .container {
  display: flex;
  flex-wrap: wrap;
}

.page-shop .shops-list .shop {
  width: calc(25% - 30px);
  height: 170px;
  margin-right: 40px;
  margin-bottom: 40px;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-shop .shops-list .shop:hover {
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.15);
}

.page-shop .shops-list .shop img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

.page-shop #ajax-load-more {
  width: 100%;
}

.page-shop #ajax-load-more .alm-reveal {
  display: flex;
  flex-wrap: wrap;
}

.page-shop-single .page-header {
  padding-top: 85px;
  padding-bottom: 35px;
}

.page-shop-single .page-header h1 {
  font-size: 50px;
  font-family: Belladonna;
  letter-spacing: 3px;
  position: relative;
}

.page-shop-single .page-header h1:before {
  content: "";
  position: absolute;
  top: calc(50% - 1px);
  right: calc(100% + 25px);
  background-color: #999999;
  height: 1px;
  width: 0;
  transition: 0.5s;
}

.page-shop-single .page-header h1.open:before {
  width: calc((100vw - 1140px)/2 + 85px);
}

.page-shop-single .page-header h1:after {
  content: "";
  position: absolute;
  bottom: -35px;
  left: 2px;
  width: 35px;
  height: 1px;
  background-color: black;
}

.page-shop-single .page-header .container {
  display: flex;
  align-items: center;
  padding-left: 110px;
}

.page-shop-single .media-content {
  display: flex;
  padding-left: calc((100% - 1140px)/2);
}

.page-shop-single .media-content .left {
  width: 595px;
  min-width: 595px;
  margin-right: 90px;
}

.page-shop-single .media-content .left .info {
  padding-top: 65px;
  padding-left: 110px;
  margin-left: -25px;
  margin-bottom: 65px;
}

.page-shop-single .media-content .left .img {
  width: 100%;
}

.page-shop-single .media-content .left .img img {
  width: 100%;
}

.page-shop-single .media-content .left .characteristics {
  margin-bottom: 50px;
}

.page-shop-single .media-content .left .characteristics .box {
  display: flex;
  align-items: flex-start;
  margin-bottom: 20px;
}

.page-shop-single .media-content .left .characteristics svg {
  width: 18px;
  height: 18px;
  margin-right: 10px;
}

.page-shop-single .media-content .left .characteristics p,
.page-shop-single .media-content .left .characteristics a {
  font-size: 18px;
  font-weight: 300;
  color: black;
  line-height: 1.2;
}

.page-shop-single .media-content .left .characteristics a {
  transition: 0.3s;
}

.page-shop-single .media-content .left .characteristics a:hover {
  color: #999999;
}

.page-shop-single .media-content .left .to-map {
  padding: 15px 30px 12px 30px;
  font-size: 14px;
  text-transform: uppercase;
  color: #999999;
  border: 1px solid #999999;
  position: relative;
  display: inline-block;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  margin-left: 40px;
}

.page-shop-single .media-content .left .to-map:before {
  content: "";
  position: absolute;
  top: 50%;
  left: -18px;
  width: 35px;
  height: 1px;
  background-color: black;
  transition: 0.3s;
}

.page-shop-single .media-content .left .to-map:hover:before {
  width: calc(100% - 40px);
  left: 20px;
}

.page-shop-single .media-content .right {
  width: 100%;
}

.page-shop-single .media-content .right img {
  max-width: 100%;
  width: auto;
  height: auto;
}

.page-shop-single .text {
  padding-top: 40px;
  padding-bottom: 50px;
}

.page-shop-single .text p {
  font-size: 14px;
  color: #999999;
  font-weight: 300;
  line-height: 1.78;
}

.page-shop-single .box.socials {
  margin-left: -10px;
}

.page-shop-single .box.socials a {
  padding: 10px;
  width: 40px;
  height: 40px;
}

.page-shop-single .box.socials a svg {
  width: 100%;
  height: 100%;
}

.page-shop-single .box.socials a svg * {
  transition: 0.3s;
}

.page-shop-single .box.socials a:hover svg * {
  fill: #cc92c1;
}

.page-about .page-header {
  padding-top: 85px;
  padding-bottom: 35px;
}

.page-about .page-header h1 {
  font-size: 50px;
  font-family: Belladonna;
  letter-spacing: 3px;
  position: relative;
}

.page-about .page-header h1:before {
  content: "";
  position: absolute;
  top: calc(50% - 1px);
  right: calc(100% + 25px);
  background-color: #999999;
  height: 1px;
  width: 0;
  transition: 0.5s;
}

.page-about .page-header h1.open:before {
  width: calc((100vw - 1140px)/2 + 85px);
}

.page-about .page-header h1:after {
  content: "";
  position: absolute;
  bottom: -35px;
  left: 2px;
  width: 35px;
  height: 1px;
  background-color: black;
}

.page-about .page-header .container {
  display: flex;
  align-items: center;
  padding-left: 110px;
}

.page-about .number-info {
  padding-top: 60px;
  margin-bottom: 65px;
}

.page-about .number-info .container {
  display: flex;
  justify-content: space-between;
}

.page-about .number-info .box {
  max-width: 275px;
  position: relative;
}

.page-about .number-info .box:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 35px;
  height: 1px;
  background-color: #333333;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}

.page-about .number-info .num {
  font-size: 77px;
  font-family: Belladonna;
  color: #cc33cc;
  text-align: center;
  margin-bottom: 15px;
}

.page-about .number-info .num span {
  font-size: 33px;
  font-family: Belladonna;
  color: #cc33cc;
}

.page-about .number-info .desc {
  font-size: 36px;
  font-family: Belladonna;
  line-height: 1.33;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-align: center;
  padding-bottom: 35px;
  color: #333333;
}

.page-about .main-info .video {
  width: 100%;
  position: relative;
  z-index: 2;
}

.page-about .main-info .video iframe {
  width: 100%;
  height: 580px;
}

.page-about .main-info .video img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  z-index: 2;
  transition: .3s;
}

.page-about .main-info .video .play-btn {
  position: absolute;
  z-index: 3;
  left: 50%;
  top: 50%;
  -webkit-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
  width: 50px;
  height: 50px;
  background-color: rgba(0, 0, 0, 0.8);
  transition: .3s;
  border-radius: 50px;
  cursor: pointer;
}

.page-about .main-info .video .play-btn svg {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translateX(-40%) translateY(-50%);
  transform: translateX(-40%) translateY(-50%);
  width: 40%;
  height: 60%;
}

.page-about .main-info .video .play-btn svg * {
  fill: #fff;
}

.page-about .main-info .video.play img {
  opacity: 0;
}

.page-about .main-info .video.play .play-btn {
  opacity: 0;
}

.page-about .main-info .video.del img {
  display: none;
}

.page-about .main-info .video.del .play-btn {
  display: none;
}

.page-about .main-info .text {
  width: calc(100% + 130px);
  background-color: #fae8f7;
  margin-left: -65px;
  margin-top: -140px;
  padding: 195px 55px 70px 55px;
}

.page-about .main-info .text p {
  font-size: 14px;
  line-height: 1.78;
}

.page-about .dop-info {
  padding: 70px 0;
}

.page-about .dop-info .mob-img {
  display: none;
  width: 100%;
}

.page-about .dop-info p {
  font-size: 14px;
  line-height: 1.78;
}

.page-entertainment .page-header {
  padding-top: 85px;
  padding-bottom: 35px;
}

.page-entertainment .page-header h1 {
  font-size: 50px;
  font-family: Belladonna;
  letter-spacing: 3px;
  position: relative;
}

.page-entertainment .page-header h1:before {
  content: "";
  position: absolute;
  top: calc(50% - 1px);
  right: calc(100% + 25px);
  background-color: #999999;
  height: 1px;
  width: 0;
  transition: 0.5s;
}

.page-entertainment .page-header h1.open:before {
  width: calc((100vw - 1140px)/2 + 85px);
}

.page-entertainment .page-header h1:after {
  content: "";
  position: absolute;
  bottom: -35px;
  left: 2px;
  width: 35px;
  height: 1px;
  background-color: black;
}

.page-entertainment .page-header .container {
  display: flex;
  align-items: center;
  padding-left: 110px;
}

.page-entertainment .skypark {
  margin-top: 70px;
}

.page-entertainment .skypark .container {
  display: flex;
  align-items: center;
}

.page-entertainment .skypark .btn-c {
  padding: 15px 30px 12px 30px;
  font-size: 14px;
  text-transform: uppercase;
  color: black;
  border: 1px solid #999999;
  position: relative;
  display: inline-block;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  margin-top: 20px;
}

.page-entertainment .skypark .btn-c:before {
  content: "";
  position: absolute;
  top: 50%;
  left: -18px;
  width: 35px;
  height: 1px;
  background-color: black;
  transition: 0.3s;
}

.page-entertainment .skypark .btn-c:hover:before {
  width: 115px;
  left: 20px;
}

.page-entertainment .skypark .btn-c:after {
  content: "";
  position: absolute;
  bottom: -45px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 65px;
  height: 1px;
  background-color: #333333;
}

.page-entertainment .skypark .text {
  width: 765px;
  padding-right: 195px;
  background-color: #fee3f9;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-bottom: 100px;
  padding-left: 35px;
}

.page-entertainment .skypark .text p {
  max-width: 350px;
  font-size: 12px;
  color: #333333;
  line-height: 1.78;
  text-align: center;
  position: relative;
}

.page-entertainment .skypark .text img {
  margin-top: -35px;
}

.page-entertainment .skypark .text .hr {
  margin: 45px 0 25px 0;
  width: 130px;
  height: 1px;
  background-color: #dadada;
}

.page-entertainment .skypark .img {
  width: 570px;
  margin-left: -195px;
}

.page-entertainment .skypark .img img {
  width: 100%;
}

.page-entertainment .directions {
  margin-top: 85px;
  margin-bottom: 150px;
}

.page-entertainment .directions__content {
  display: flex;
  flex-wrap: wrap;
}

.page-entertainment .directions__content .box {
  width: 380px;
  height: 380px;
}

.page-entertainment .directions__content .box:nth-child(1) {
  order: 1;
}

.page-entertainment .directions__content .box:nth-child(2) {
  order: 2;
}

.page-entertainment .directions__content .box:nth-child(3) {
  order: 3;
}

.page-entertainment .directions__content .box:nth-child(4) {
  order: 6;
}

.page-entertainment .directions__content .box:nth-child(5) {
  order: 5;
}

.page-entertainment .directions__content .box:nth-child(6) {
  order: 4;
}

.page-entertainment .directions__content .box.text {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0 30px;
  position: relative;
}

.page-entertainment .directions__content .box.text h3 {
  text-align: center;
  font-family: Belladonna;
  font-size: 36px;
  letter-spacing: 2px;
  line-height: 1.2;
  text-transform: uppercase;
  margin-bottom: 20px;
  color: #333333;
}

.page-entertainment .directions__content .box.text h4 {
  text-align: center;
  font-family: Belladonna;
  font-size: 25px;
  letter-spacing: 7px;
  text-transform: uppercase;
  margin-bottom: 20px;
  color: #333333;
}

.page-entertainment .directions__content .box.text .hr {
  height: 1px;
  width: 130px;
  background-color: #cccccc;
  margin-bottom: 30px;
}

.page-entertainment .directions__content .box.text p {
  text-align: center;
  font-size: 12px;
  line-height: 1.33;
  font-weight: 300;
  color: #333333;
}

.page-entertainment .directions__content .box.text .hr-l {
  height: 1px;
  width: 65px;
  background-color: #333333;
  margin-top: 20px;
}

.page-entertainment .directions__content .box.img {
  position: relative;
}

.page-entertainment .directions__content .box.img img {
  position: absolute;
  left: 50%;
  top: 50%;
}

.page-entertainment .directions__content .box.img .triangle {
  transition: 0.3s;
  transition-delay: 0.6s;
}

.page-entertainment .directions__content .box.img:nth-child(1) img {
  height: 100%;
  -webkit-transform: translateX(calc(-1 * (50% + 70px))) translateY(-50%);
  transform: translateX(calc(-1 * (50% + 70px))) translateY(-50%);
}

.page-entertainment .directions__content .box.img:nth-child(1) .triangle {
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  border: 15px solid transparent;
  border-right: 15px solid white;
  z-index: 2;
}

.page-entertainment .directions__content .box.img:nth-child(3) img {
  height: 100%;
  -webkit-transform: translateX(calc(-1 * (50% - 70px))) translateY(-50%);
  transform: translateX(calc(-1 * (50% - 70px))) translateY(-50%);
}

.page-entertainment .directions__content .box.img:nth-child(3) .triangle {
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  border: 15px solid transparent;
  border-bottom: 15px solid white;
  z-index: 2;
}

.page-entertainment .directions__content .box.img:nth-child(5) img {
  width: 100%;
  margin-top: auto;
  -webkit-transform: translateX(-50%) translateY(calc( -1 * (50% - 55px)));
  transform: translateX(-50%) translateY(calc( -1 * (50% - 55px)));
}

.page-entertainment .directions__content .box.img:nth-child(5) .triangle {
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  border: 15px solid transparent;
  border-left: 15px solid white;
  z-index: 2;
}

.page-restaurants .page-header {
  padding-top: 85px;
  padding-bottom: 35px;
}

.page-restaurants .page-header h1 {
  font-size: 50px;
  font-family: Belladonna;
  letter-spacing: 3px;
  position: relative;
}

.page-restaurants .page-header h1:before {
  content: "";
  position: absolute;
  top: calc(50% - 1px);
  right: calc(100% + 25px);
  background-color: #999999;
  height: 1px;
  width: 0;
  transition: 0.5s;
}

.page-restaurants .page-header h1.open:before {
  width: calc((100vw - 1140px)/2 + 85px);
}

.page-restaurants .page-header h1:after {
  content: "";
  position: absolute;
  bottom: -35px;
  left: 2px;
  width: 35px;
  height: 1px;
  background-color: black;
}

.page-restaurants .page-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-left: 110px;
}

.page-restaurants .page-header .search-brands {
  display: flex;
  align-items: center;
  margin-right: -10px;
}

.page-restaurants .page-header .search-brands p {
  font-size: 14px;
  color: #999999;
  text-transform: uppercase;
  margin-right: 20px;
}

.page-restaurants .page-header .search-brands .icon {
  padding: 10px;
  width: 38px;
  height: 38px;
  margin-left: -10px;
  transition: 0.3s;
  position: relative;
  cursor: pointer;
}

.page-restaurants .page-header .search-brands .icon svg {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 18px;
  height: 18px;
  transition: 0.3s;
}

.page-restaurants .page-header .search-brands .icon svg * {
  fill: #cc99cc;
  stroke: #cc99cc;
}

.page-restaurants .page-header .search-brands .icon svg:nth-child(1) {
  -webkit-transform: translateX(-50%) translateY(-50%) scale(1);
  transform: translateX(-50%) translateY(-50%) scale(1);
}

.page-restaurants .page-header .search-brands .icon svg:nth-child(2) {
  -webkit-transform: translateX(-50%) translateY(-50%) scale(0);
  transform: translateX(-50%) translateY(-50%) scale(0);
}

.page-restaurants .restaurants-list {
  padding: 90px 0 70px 0;
}

.page-restaurants .restaurants-list .container {
  display: flex;
  flex-wrap: wrap;
}

.page-restaurants .restaurants-list .restaurant {
  width: calc(25% - 30px);
  height: 170px;
  margin-right: 40px;
  margin-bottom: 40px;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-restaurants .restaurants-list .restaurant:hover {
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.15);
}

.page-restaurants .restaurants-list .restaurant img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

.page-news .page-header {
  padding-top: 85px;
  padding-bottom: 35px;
}

.page-news .page-header h1 {
  font-size: 50px;
  font-family: Belladonna;
  letter-spacing: 3px;
  position: relative;
}

.page-news .page-header h1:before {
  content: "";
  position: absolute;
  top: calc(50% - 1px);
  right: calc(100% + 25px);
  background-color: #999999;
  height: 1px;
  width: 0;
  transition: 0.5s;
}

.page-news .page-header h1.open:before {
  width: calc((100vw - 1140px)/2 + 85px);
}

.page-news .page-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-left: 110px;
}

.page-news .page-header .search-brands {
  display: flex;
  align-items: center;
  margin-right: -10px;
}

.page-news .page-header .search-brands p {
  font-size: 14px;
  color: #999999;
  text-transform: uppercase;
  margin-right: 20px;
}

.page-news .page-header .search-brands .icon {
  padding: 10px;
  width: 38px;
  height: 38px;
  margin-left: -10px;
  transition: 0.3s;
  position: relative;
  cursor: pointer;
}

.page-news .page-header .search-brands .icon svg {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 18px;
  height: 18px;
  transition: 0.3s;
}

.page-news .page-header .search-brands .icon svg * {
  fill: #cc99cc;
  stroke: #cc99cc;
}

.page-news .page-header .search-brands .icon svg:nth-child(1) {
  -webkit-transform: translateX(-50%) translateY(-50%) scale(1);
  transform: translateX(-50%) translateY(-50%) scale(1);
}

.page-news .page-header .search-brands .icon svg:nth-child(2) {
  -webkit-transform: translateX(-50%) translateY(-50%) scale(0);
  transform: translateX(-50%) translateY(-50%) scale(0);
}

.page-news .filters {
  margin-top: -8px;
  margin-bottom: 75px;
}

.page-news .filters .container {
  display: flex;
  align-items: center;
  padding-left: 112px;
  width: 90%;
}

.page-news .filters .line {
  width: 35px;
  min-width: 35px;
  height: 1px;
  background-color: #333333;
  margin-right: 30px;
}

.page-news .filters .list {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
}

.page-news .filters .list a {
  display: block;
  font-size: 15px;
  font-weight: 400;
  color: #666666;
  transition: 0.3s;
  position: relative;
  white-space: nowrap;
  margin-right: 35px;
}

.page-news .filters .list a:before {
  content: "";
  position: absolute;
  top: 50%;
  left: -5%;
  width: 0;
  height: 1px;
  background-color: #999999;
  transition: 0.3s;
}

.page-news .filters .list a:hover {
  color: black;
}

.page-news .filters .list a:hover:before {
  width: 110%;
}

.page-news .news-list {
  margin-bottom: 20px;
}

.page-news .news-list .news-cont,
.page-news .news-list .alm-reveal {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.page-news .news-list .box {
  width: 33.33%;
  height: 380px;
}

.page-news .news-list .box.img {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}

.page-news .news-list .box.img .triangle {
  transition: 0.3s;
}

.page-news .news-list .box.text {
  padding: 65px 35px 20px 35px;
  position: relative;
}

.page-news .news-list .box.text .date {
  font-size: 10px;
  margin-bottom: 25px;
}

.page-news .news-list .box.text .title {
  font-size: 24px;
  letter-spacing: 1px;
  line-height: 1.3;
  font-family: Belladonna;
  text-transform: uppercase;
  margin-bottom: 60px;
  position: relative;
}

.page-news .news-list .box.text .title:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -30px;
  background-color: #999999;
  width: 130px;
  height: 1px;
}

.page-news .news-list .box.text .description {
  position: relative;
}

.page-news .news-list .box.text .description * {
  font-size: 11px;
  line-height: 1.2;
}

.page-news .news-list .box.text .description:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -20px;
  background-color: #333333;
  width: 65px;
  height: 1px;
}

.page-news .news-list .box.text:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  background-color: #faf3f2;
  width: 0;
  height: 100%;
  transition: 0.3s;
}

.page-news .news-list .box.text.hover:before {
  width: 100%;
}

.page-news .news-list .box:nth-child(6n-5) {
  order: 1;
}

.page-news .news-list .box:nth-child(6n-5) .triangle {
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  border: 15px solid transparent;
  border-right: 15px solid #fff;
  z-index: 2;
}

.page-news .news-list .box:nth-child(6n-4) {
  order: 2;
  margin-right: auto;
  margin-left: 0;
}

.page-news .news-list .box:nth-child(6n-3) {
  order: 3;
}

.page-news .news-list .box:nth-child(6n-3) .triangle {
  position: absolute;
  top: auto;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  border: 15px solid transparent;
  border-bottom: 15px solid #fff;
  z-index: 2;
}

.page-news .news-list .box:nth-child(6n-2) {
  order: 6;
  text-align: center;
}

.page-news .news-list .box:nth-child(6n-2) .title:before {
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}

.page-news .news-list .box:nth-child(6n-2) .description:before {
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}

.page-news .news-list .box:nth-child(6n-2):before {
  top: 0;
  left: 0;
  right: auto;
  height: 0;
  width: 100%;
}

.page-news .news-list .box:nth-child(6n-2).hover:before {
  height: 100%;
}

.page-news .news-list .box:nth-child(6n-1) {
  order: 5;
}

.page-news .news-list .box:nth-child(6n-1) .triangle {
  position: absolute;
  bottom: auto;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  border: 15px solid transparent;
  border-left: 15px solid #fff;
  z-index: 2;
}

.page-news .news-list .box:nth-child(6n) {
  order: 4;
}

.page-news .news-list .box:nth-child(6n):before {
  top: 0;
  right: 0;
  left: auto;
  width: 0;
  height: 100%;
}

.page-article .page-header {
  padding-top: 85px;
  padding-bottom: 35px;
}

.page-article .page-header h1 {
  font-size: 50px;
  font-family: Belladonna;
  letter-spacing: 3px;
  position: relative;
}

.page-article .page-header h1:before {
  content: "";
  position: absolute;
  top: calc(50% - 1px);
  right: calc(100% + 25px);
  background-color: #999999;
  height: 1px;
  width: 0;
  transition: 0.5s;
}

.page-article .page-header h1.open:before {
  width: calc((100vw - 1140px)/2 + 85px);
}

.page-article .page-header h1:after {
  content: "";
  position: absolute;
  bottom: -35px;
  left: 2px;
  width: 35px;
  height: 1px;
  background-color: black;
}

.page-article .page-header .container {
  display: flex;
  align-items: center;
  padding-left: 110px;
}

.page-article .article-content {
  padding-top: 55px;
}

.page-article .article-content .container {
  display: flex;
  justify-content: space-between;
}

.page-article .article-content .img {
  width: calc(50% - 15px);
  margin-right: 30px;
}

.page-article .article-content .img img {
  width: 100%;
  height: auto;
  -o-object-fit: contain;
  object-fit: contain;
}

.page-article .article-content .content {
  width: calc(50% - 15px);
}

.page-article .article-content .content > * {
  margin-bottom: 30px;
}

.page-article .article-content .content > *:last-child {
  margin-bottom: 0;
}

.page-article .article-content .content p {
  font-size: 14px;
  line-height: 1.78;
  font-weight: 300;
}

.page-article .article-content .content h1,
.page-article .article-content .content h2,
.page-article .article-content .content h3,
.page-article .article-content .content h4,
.page-article .article-content .content h5,
.page-article .article-content .content h6 {
  font-size: 18px;
  font-weight: 700;
}

.page-article .article-content .content strong {
  font-size: 14px;
  line-height: 1.78;
  font-weight: 700;
}

.page-article .article-content .content a {
  font-size: 14px;
  line-height: 1.78;
  font-weight: 400;
  text-decoration: underline;
}

.page-article .article-content .content ol {
  padding-left: 30px;
}

.page-article .article-content .content ol li {
  list-style: decimal;
  margin-bottom: 5px;
}

.page-article .article-content .content ul {
  padding-left: 30px;
}

.page-article .article-content .content ul li {
  list-style: disc;
  margin-bottom: 5px;
}

.page-article .btn-section {
  padding: 45px 0 90px 0;
}

.page-article .btn-section .left {
  width: calc(50% - 15px);
  text-align: center;
}

.page-article .btn-section a {
  width: 211px;
  padding: 15px 30px 12px 30px;
  font-size: 14px;
  text-transform: uppercase;
  color: #999999;
  border: 1px solid #999999;
  position: relative;
  display: inline-block;
}

.page-article .btn-section a:before {
  content: "";
  position: absolute;
  top: 50%;
  left: -18px;
  width: 35px;
  height: 1px;
  background-color: black;
  transition: 0.3s;
}

.page-article .btn-section a:hover:before {
  width: 167px;
  left: 20px;
}

#preloader {
  position: fixed;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  z-index: 999999999;
  background-color: white;
  opacity: 1;
}

.preloader-cont {
  width: 100vw;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.preloader-cont svg {
  width: 90%;
  max-height: 90%;
  max-width: 340px;
}

.preloader-cont .s,
.preloader-cont .k,
.preloader-cont .y {
  stroke: black;
  fill: transparent;
}

.preloader-cont .m,
.preloader-cont .a,
.preloader-cont .l-1,
.preloader-cont .l-2 {
  stroke: #B51488;
  fill: transparent;
}

.preloader-cont .letter {
  transition: 1s;
  stroke-dasharray: 0 300;
}

.preloader-cont .letter.drow.s {
  stroke-dasharray: 160 300;
}

.preloader-cont .letter.drow.k {
  stroke-dasharray: 230 300;
}

.preloader-cont .letter.drow.y {
  stroke-dasharray: 200 300;
}

.preloader-cont .letter.drow.m {
  stroke-dasharray: 290 300;
}

.preloader-cont .letter.drow.a {
  stroke-dasharray: 150 300;
}

.preloader-cont .letter.drow.l-1 {
  stroke-dasharray: 120 300;
}

.preloader-cont .letter.drow.l-2 {
  stroke-dasharray: 120 300;
}

.preloader-cont .letter.fill.s,
.preloader-cont .letter.fill.k,
.preloader-cont .letter.fill.y {
  fill: black;
}

.preloader-cont .letter.fill.m,
.preloader-cont .letter.fill.a,
.preloader-cont .letter.fill.l-1,
.preloader-cont .letter.fill.l-2 {
  fill: #B51488;
}

.preloader-cont .bird {
  -webkit-clip-path: url(#bird-form);
  clip-path: url(#bird-form);
  fill: url(#bird-fill);
  opacity: 0;
  transition: 1s;
}

.preloader-cont .bird.fill {
  opacity: 1;
}

.preloader-cont .gradient-1 {
  stop-color: #CB0878;
}

.preloader-cont .gradient-2 {
  stop-color: #53318D;
}

.page-3d .page-header {
  padding-top: 85px;
  padding-bottom: 35px;
}

.page-3d .page-header h1 {
  font-size: 50px;
  font-family: Belladonna;
  letter-spacing: 3px;
  position: relative;
}

.page-3d .page-header h1:before {
  content: "";
  position: absolute;
  top: calc(50% - 1px);
  right: calc(100% + 25px);
  background-color: #999999;
  height: 1px;
  width: 0;
  transition: 0.5s;
}

.page-3d .page-header h1.open:before {
  width: calc((100vw - 1140px)/2 + 85px);
}

.page-3d .page-header h1:after {
  content: "";
  position: absolute;
  bottom: -35px;
  left: 2px;
  width: 35px;
  height: 1px;
  background-color: black;
}

.page-3d .page-header .container {
  display: flex;
  align-items: center;
  padding-left: 110px;
}

.page-3d .map-3d {
  padding: 70px 0;
}

.page-3d .map-3d iframe {
  width: 100%;
  height: 600px;
  max-height: 80vh;
}

.page-404 .container {
  padding: 40px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.page-404 h1 {
  font-size: 150px;
  font-family: Belladonna;
  color: #bd91be;
  text-align: center;
}

.page-404 .descr {
  text-transform: uppercase;
  text-align: center;
}

.page-404 a {
  padding: 15px 30px 12px 30px;
  font-size: 14px;
  text-transform: uppercase;
  color: #999999;
  border: 1px solid #999999;
  position: relative;
  display: inline-block;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  margin: 30px auto 0 auto;
}

.page-404 a:before {
  content: "";
  position: absolute;
  top: 50%;
  left: -18px;
  width: 35px;
  height: 1px;
  background-color: black;
  transition: 0.3s;
}

.page-404 a:hover:before {
  width: calc(100% - 40px);
  left: 20px;
}

.page-transport .page-header {
  padding-top: 85px;
  padding-bottom: 35px;
}

.page-transport .page-header h1 {
  font-size: 50px;
  font-family: Belladonna;
  letter-spacing: 3px;
  position: relative;
}

.page-transport .page-header h1:before {
  content: "";
  position: absolute;
  top: calc(50% - 1px);
  right: calc(100% + 25px);
  background-color: #999999;
  height: 1px;
  width: 0;
  transition: 0.5s;
}

.page-transport .page-header h1.open:before {
  width: calc((100vw - 1140px)/2 + 85px);
}

.page-transport .page-header h1:after {
  content: "";
  position: absolute;
  bottom: -35px;
  left: 2px;
  width: 35px;
  height: 1px;
  background-color: black;
}

.page-transport .page-header .container {
  display: flex;
  align-items: center;
  padding-left: 110px;
}

.page-transport .map-main {
  padding-top: 50px;
}

.page-transport .map-main #map {
  width: 100%;
  height: 500px;
  min-height: 270px;
}

.page-transport .transport {
  padding-bottom: 70px;
}

.page-transport .transport h2 {
  padding: 50px 0 40px 0;
  font-size: 18px;
  font-weight: 300;
}

.page-transport .variants {
  display: flex;
}

.page-transport .variants .left {
  width: 390px;
  margin-right: 60px;
}

.page-transport .variants .left .box {
  padding: 15px 30px 12px 30px;
  position: relative;
  border: 1px solid #999999;
  width: calc(100% - 15px);
  margin-left: 15px;
  margin-bottom: 17px;
  cursor: pointer;
  transition: 0.3s;
}

.page-transport .variants .left .box:before {
  content: "";
  position: absolute;
  top: 50%;
  left: -18px;
  width: 35px;
  height: 1px;
  background-color: black;
  transition: 0.3s;
}

.page-transport .variants .left .box:hover:before {
  left: -3px;
}

.page-transport .variants .left .box p {
  font-size: 14px;
  line-height: 1.5;
  text-transform: uppercase;
  color: black;
}

.page-transport .variants .left .box.active {
  background-color: #f2ddee;
}

.page-transport .variants .right {
  width: calc(100% - 450px);
  position: relative;
  transition: 0.3s;
}

.page-transport .variants .right .box {
  display: flex;
  flex-wrap: wrap;
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
  transition: 0.3s;
  z-index: 0;
  width: 100%;
}

.page-transport .variants .right .box.active {
  opacity: 1;
  z-index: 1;
}

.page-transport .variants .right .description {
  font-size: 14px;
  line-height: 1.78;
  font-weight: 300;
  margin-bottom: 40px;
}

.page-transport .variants .right h3 {
  font-size: 18px;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 25px;
}

.page-transport .variants .right .map {
  width: calc(100% - 280px);
  height: 420px;
}

.page-transport .variants .right .map .map-cont {
  width: 100%;
  height: 100%;
}

.page-transport .variants .right .time-list {
  width: 250px;
  margin-left: 30px;
}

.page-transport .variants .right .list {
  display: flex;
  flex-wrap: wrap;
}

.page-transport .variants .right .list .start {
  width: calc(100% - 70px);
  font-size: 18px;
  font-weight: 300;
  margin-bottom: 10px;
  padding-right: 10px;
}

.page-transport .variants .right .list .start.title {
  font-weight: 500;
  margin-bottom: 15px;
}

.page-transport .variants .right .list .stop {
  width: 70px;
  font-size: 18px;
  font-weight: 300;
  margin-bottom: 10px;
}

.page-transport .variants .right .list .stop.title {
  font-weight: 500;
  margin-bottom: 15px;
}

.page-transport .variants .right .list :last-child,
.page-transport .variants .right .list :nth-last-child(2) {
  margin-bottom: 0;
}

.page-transport .variants .right .dop-description {
  padding-top: 40px;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.38;
}

.page-contscts .page-header {
  padding-top: 85px;
  padding-bottom: 35px;
}

.page-contscts .page-header h1 {
  font-size: 50px;
  font-family: Belladonna;
  letter-spacing: 3px;
  position: relative;
}

.page-contscts .page-header h1:before {
  content: "";
  position: absolute;
  top: calc(50% - 1px);
  right: calc(100% + 25px);
  background-color: #999999;
  height: 1px;
  width: 0;
  transition: 0.5s;
}

.page-contscts .page-header h1.open:before {
  width: calc((100vw - 1140px)/2 + 85px);
}

.page-contscts .page-header h1:after {
  content: "";
  position: absolute;
  bottom: -35px;
  left: 2px;
  width: 35px;
  height: 1px;
  background-color: black;
}

.page-contscts .page-header .container {
  display: flex;
  align-items: center;
  padding-left: 110px;
}

.page-contscts .contact-info {
  padding-top: 70px;
}

.page-contscts .contact-info .container {
  display: flex;
  justify-content: space-between;
}

.page-contscts .contact-info h2 {
  font-family: Belladonna;
  font-size: 34px;
  margin-bottom: 25px;
}

.page-contscts .contact-info p,
.page-contscts .contact-info a {
  color: #999999;
  transition: 0.3s;
  margin-bottom: 15px;
  display: block;
}

.page-contscts .contact-info h3 {
  font-size: 20px;
  line-height: 1.2;
  font-family: Belladonna;
  margin-bottom: 15px;
}

.page-contscts .contact-info a:hover {
  color: black;
}

.page-contscts .contact-info .phones a {
  padding-left: 10px;
}

.page-contscts .contact-info form p {
  display: flex;
  flex-direction: column;
}

.page-contscts .contact-info form p > span {
  margin-bottom: 10px;
  display: block;
}

.page-contscts .contact-info form p > span span {
  padding: 3px 10px 0 10px;
  font-size: 12px;
}

.page-contscts .contact-info form input {
  width: 350px;
  border: none;
  border-bottom: 1px solid black;
  padding: 5px 10px;
}

.page-contscts .contact-info form select {
  width: 350px;
  border: none;
  border-bottom: 1px solid black;
  padding: 5px 7px;
}

.page-contscts .contact-info form textarea {
  width: 350px;
  border: none;
  border-bottom: 1px solid black;
  padding: 5px 10px;
  margin-bottom: 10px;
  resize: none;
  height: 120px;
}

.page-contscts .contact-info form .btn {
  padding: 15px 30px 12px 30px;
  font-size: 14px;
  text-transform: uppercase;
  color: white;
  border: none;
  background-color: black;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  cursor: pointer;
  font-weight: 700;
  text-align: center;
  transition: .3s;
}

.page-contscts .contact-info form .btn:hover {
  background-color: #333;
}

.page-contscts .map {
  padding: 40px 0 70px;
}

.page-contscts .map #map {
  width: 100%;
  height: 500px;
  min-height: 270px;
}

.page-contscts .wpcf7-response-output {
  max-width: 350px;
  margin: 0;
  padding: 5px;
  font-size: 12px;
  line-height: 1.3;
}

@media screen and (min-width: 451px) {
  .page-home .main-banner_mob {
    display: none;
  }
}

@media screen and (min-width: 769px) {
  .page-shop .shops-list .shop:nth-child(4n) {
    margin-right: 0;
  }

  .page-restaurants .restaurants-list .restaurant:nth-child(4n) {
    margin-right: 0;
  }
}

@media screen and (min-width: 851px) {
  .page-home .directions__content .color-block {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -1;
    transition: 0.3s ease-out;
    transition-delay: 0.3s;
    width: 0;
  }

  .page-home .directions__content .opacity-block {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 0;
    transition: 0.3s ease-out;
    transition-delay: 0s;
    background-color: rgba(0, 0, 0, 0);
  }

  .page-home .directions__content .box.img:nth-child(4) .opacity-block {
    width: 100%;
    height: 0;
  }

  .page-home .directions__content .box.img.hover .triangle {
    opacity: 0;
    transition-delay: 0s;
    transition: 0s;
  }

  .page-home .directions__content .box.img.hover .opacity-block {
    background-color: rgba(0, 0, 0, 0.02);
    transition-delay: 0.3s;
  }

  .page-home .directions__content .box.text.hover .color-block {
    width: 100%;
    transition-delay: 0s;
  }

  .page-home .directions__content .box.text.hover .opacity-block {
    background-color: rgba(0, 0, 0, 0.02);
    transition-delay: 0.3s;
  }

  .page-home .directions__content .box.text.hover:nth-child(4) .color-block {
    height: 100%;
  }

  .page-home .directions__content .box:nth-child(6) .color-block {
    right: 0;
    left: auto;
  }

  .page-home .directions__content .box:nth-child(4) .color-block {
    height: 0;
    width: 100%;
  }

  .page-entertainment .directions__content .color-block {
    position: absolute;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -1;
    transition: 0.3s ease-out;
    transition-delay: 0.3s;
    width: 0;
  }

  .page-entertainment .directions__content .opacity-block {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 0;
    transition: 0.3s ease-out;
    transition-delay: 0s;
    background-color: rgba(0, 0, 0, 0);
  }

  .page-entertainment .directions__content .box.img:nth-child(4) .opacity-block {
    width: 100%;
    height: 0;
  }

  .page-entertainment .directions__content .box.img.hover .triangle {
    opacity: 0;
    transition-delay: 0s;
    transition: 0s;
  }

  .page-entertainment .directions__content .box.img.hover .opacity-block {
    background-color: rgba(0, 0, 0, 0.02);
    transition-delay: 0.3s;
  }

  .page-entertainment .directions__content .box.text.hover .color-block {
    width: 100%;
    transition-delay: 0s;
  }

  .page-entertainment .directions__content .box.text.hover .opacity-block {
    background-color: rgba(0, 0, 0, 0.02);
    transition-delay: 0.3s;
  }

  .page-entertainment .directions__content .box.text.hover:nth-child(4) .color-block {
    height: 100%;
  }

  .page-entertainment .directions__content .box:nth-child(6) .color-block {
    right: 0;
    left: auto;
  }

  .page-entertainment .directions__content .box:nth-child(4) .color-block {
    height: 0;
    width: 100%;
  }
}

@media screen and (min-width: 901px) {
  .page-news .news-list .box:nth-child(6n-5).hover .triangle {
    border-right-color: #faf3f2;
  }

  .page-news .news-list .box:nth-child(6n-3).hover .triangle {
    border-bottom-color: #faf3f2;
  }

  .page-news .news-list .box:nth-child(6n-1).hover .triangle {
    border-left-color: #faf3f2;
  }

  .page-news .news-list .box:nth-child(6n) {
    text-align: right;
  }

  .page-news .news-list .box:nth-child(6n) .title:before {
    left: auto;
    right: 0;
    -webkit-transform: none;
    transform: none;
  }

  .page-news .news-list .box:nth-child(6n) .description:before {
    left: auto;
    right: 0;
    -webkit-transform: none;
    transform: none;
  }
}

@media screen and (min-width: 951px) {
  .header.fixed .menu-line {
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 9999;
    left: 0;
  }

  .header.fixed .center-line {
    padding-bottom: 91px;
  }
}

@media screen and (min-width: 951px) and (max-height: 700px) {
  .header.fixed .center-line {
    padding-bottom: 66px;
  }
}

@media screen and (max-width: 1850px) {
  .page-home .news .news__right {
    padding: 100px 40px;
  }

  .page-home .news .news__right h3 {
    margin-bottom: 80px;
  }
}

@media screen and (max-width: 1350px) {
  .page-home .directions__content {
    justify-content: center;
  }

  .page-home .directions__content .box {
    width: 28.148vw;
    height: 28.148vw;
  }

  .page-home .directions__content .box.img:nth-child(1) img {
    -webkit-transform: translateX(calc(-1 * (50% + 5.185vw))) translateY(-50%);
    transform: translateX(calc(-1 * (50% + 5.185vw))) translateY(-50%);
  }

  .page-home .directions__content .box.img:nth-child(3) img {
    -webkit-transform: translateX(calc(-1 * (50% - 5.185vw))) translateY(-50%);
    transform: translateX(calc(-1 * (50% - 5.185vw))) translateY(-50%);
  }

  .page-home .directions__content .box.img:nth-child(5) img {
    -webkit-transform: translateX(-50%) translateY(calc( -1 * (50% - 4.074vw)));
    transform: translateX(-50%) translateY(calc( -1 * (50% - 4.074vw)));
  }

  .page-shop-single .media-content .left {
    margin-right: 6.667vw;
    width: 44.074vw;
    min-width: 44.074vw;
  }

  .page-entertainment .directions__content {
    justify-content: center;
  }

  .page-entertainment .directions__content .box {
    width: 28.148vw;
    height: 28.148vw;
  }

  .page-entertainment .directions__content .box.img:nth-child(1) img {
    -webkit-transform: translateX(calc(-1 * (50% + 5.185vw))) translateY(-50%);
    transform: translateX(calc(-1 * (50% + 5.185vw))) translateY(-50%);
  }

  .page-entertainment .directions__content .box.img:nth-child(3) img {
    -webkit-transform: translateX(calc(-1 * (50% - 5.185vw))) translateY(-50%);
    transform: translateX(calc(-1 * (50% - 5.185vw))) translateY(-50%);
  }

  .page-entertainment .directions__content .box.img:nth-child(5) img {
    -webkit-transform: translateX(-50%) translateY(calc( -1 * (50% - 4.074vw)));
    transform: translateX(-50%) translateY(calc( -1 * (50% - 4.074vw)));
  }
}

@media screen and (max-width: 1300px) {
  .page-home .news {
    padding-left: 5%;
    padding-top: 140px;
  }

  .page-home .news .news__header {
    margin-bottom: 60px;
  }

  .page-home .news .news__left {
    width: calc(100vw - 5vw - 480px);
  }

  .page-home .news .news__left {
    width: calc(100vw - 5vw - 410px);
  }

  .page-home .news .news__list .box img {
    width: 250px;
    height: 250px;
  }

  .page-home .news .news__list .box .text {
    padding: 30px 30px;
    margin-left: -80px;
  }

  .page-home .news .news__list .box .text .title {
    font-size: 20px;
  }

  .page-home .news .news__right {
    min-width: 480px;
    width: 480px;
  }

  .page-home .news .news__right {
    width: 410px;
    min-width: 410px;
  }

  .page-home .news .news__right h3 {
    margin-bottom: 50px;
    font-size: 24px;
  }
}

@media screen and (max-width: 1285px) {
  .page-news .news-list .box {
    height: 29.572vw;
  }

  .page-news .news-list .box.text {
    padding: 5.058vw 2.724vw 1.556vw 2.724vw;
  }
}

@media screen and (max-width: 1267px) {
  .page-home .directions__header .sub-text:first-child.open:before {
    width: calc(5vw + 150px);
  }

  .page-home .news .news__header .sub-text:first-child.open:before {
    width: calc(5vw + 150px);
  }
}

@media screen and (max-width: 1266px) {
  .page-search .page-header h1.open:before {
    width: calc(5vw + 85px);
  }

  .page-search .page-header .container {
    padding-left: 8.689vw;
  }

  .page-home .directions__header {
    padding-right: 11.848vw;
  }

  .page-home .news .news__header {
    padding-left: 11.848vw;
  }

  .page-shop .page-header h1.open:before {
    width: calc(5vw + 85px);
  }

  .page-shop .page-header .container {
    padding-left: 8.689vw;
  }

  .page-shop .filters .container {
    padding-left: 0;
  }

  .page-shop .shops-list .shop {
    height: 13.428vw;
  }

  .page-shop-single .page-header h1.open:before {
    width: calc(5vw + 85px);
  }

  .page-shop-single .page-header .container {
    padding-left: 8.689vw;
  }

  .page-shop-single .media-content {
    padding-left: 5%;
  }

  .page-shop-single .media-content .left .info {
    padding-left: 8.689vw;
  }

  .page-about .page-header h1.open:before {
    width: calc(5vw + 85px);
  }

  .page-about .page-header .container {
    padding-left: 8.689vw;
  }

  .page-about .main-info .video iframe {
    height: 45.814vw;
  }

  .page-about .main-info .text {
    width: 100vw;
    margin-left: -5vw;
    margin-top: -11.058vw;
    padding: calc(5vw + 11.058vw) calc(5vw + 20px) calc(5vw + 20px) calc(5vw + 20px);
  }

  .page-about .dop-info .container {
    padding-left: 20px;
    padding-right: 20px;
  }

  .page-entertainment .page-header h1.open:before {
    width: calc(5vw + 85px);
  }

  .page-entertainment .page-header .container {
    padding-left: 8.689vw;
  }

  .page-entertainment .skypark .text {
    width: 60.427vw;
  }

  .page-entertainment .skypark .text img {
    max-width: 33.017vw;
  }

  .page-entertainment .skypark .img {
    width: 45.024vw;
    margin-left: -15.403vw;
  }

  .page-restaurants .page-header h1.open:before {
    width: calc(5vw + 85px);
  }

  .page-restaurants .page-header .container {
    padding-left: 8.689vw;
  }

  .page-restaurants .restaurants-list .restaurant {
    height: 13.428vw;
  }

  .page-news .page-header h1.open:before {
    width: calc(5vw + 85px);
  }

  .page-news .page-header .container {
    padding-left: 8.689vw;
  }

  .page-news .filters .container {
    padding-left: 0;
  }

  .page-article .page-header h1.open:before {
    width: calc(5vw + 85px);
  }

  .page-article .page-header .container {
    padding-left: 8.689vw;
  }

  .page-3d .page-header h1.open:before {
    width: calc(5vw + 85px);
  }

  .page-3d .page-header .container {
    padding-left: 8.689vw;
  }

  .page-3d .map-3d iframe {
    height: 47.393vw;
  }

  .page-transport .page-header h1.open:before {
    width: calc(5vw + 85px);
  }

  .page-transport .page-header .container {
    padding-left: 8.689vw;
  }

  .page-transport .map-main #map {
    height: 39.494vw;
  }

  .page-contscts .page-header h1.open:before {
    width: calc(5vw + 85px);
  }

  .page-contscts .page-header .container {
    padding-left: 8.689vw;
  }

  .page-contscts .map #map {
    height: 39.494vw;
  }
}

@media screen and (max-width: 1250px) {
  .page-home .directions__content .box.text h3 {
    font-size: 2.880vw;
    margin-bottom: 1.600vw;
  }

  .page-home .directions__content .box.text h4 {
    font-size: 2vw;
    margin-bottom: 1.600vw;
  }

  .page-home .directions__content .box.text .hr {
    margin-bottom: 2.400vw;
  }

  .page-home .directions__content .box.text .hr-l {
    margin-top: 1.600vw;
  }

  .page-entertainment .directions__content .box.text h3 {
    font-size: 2.880vw;
    margin-bottom: 1.600vw;
  }

  .page-entertainment .directions__content .box.text h4 {
    font-size: 2vw;
    margin-bottom: 1.600vw;
  }

  .page-entertainment .directions__content .box.text .hr {
    margin-bottom: 2.400vw;
  }

  .page-entertainment .directions__content .box.text .hr-l {
    margin-top: 1.600vw;
  }
}

@media screen and (max-width: 1200px) {
  .header .top-line .right-menu a {
    margin-left: 60px;
  }

  .header .menu-line .container {
    width: 98%;
  }

  .footer .main-content .coll_2 {
    margin: 0 40px;
  }

  .page-news .news-list .box.text {
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .page-news .news-list .box.text .date {
    margin-bottom: 15px;
  }

  .page-news .news-list .box.text .title {
    margin-bottom: 30px;
    font-size: 20px;
  }

  .page-news .news-list .box.text .title:before {
    bottom: -15px;
  }

  .page-news .news-list .box.text .description:before {
    bottom: -15px;
  }

  .page-transport .variants {
    flex-direction: column;
  }

  .page-transport .variants .right {
    width: 100%;
    margin-top: 30px;
  }
}

@media screen and (max-width: 1150px) {
  .page-home .directions__content .box.text {
    padding: 0 10px;
  }

  .page-entertainment .directions__content .box.text {
    padding: 0 10px;
  }
}

@media screen and (max-width: 1100px) {
  .page-search .search-list .box {
    width: 100%;
  }

  .page-news .news-list .box.text .title {
    font-size: 18px;
  }

  .page-contscts .contact-info h2 {
    font-size: 28px;
  }

  .page-contscts .contact-info h3 {
    font-size: 18px;
  }
}

@media screen and (max-width: 1024px) {
  .section-title {
    font-size: 3.516vw;
  }

  .page-search .page-header {
    padding-top: 40px;
  }

  .page-search .page-header h1 {
    font-size: 4.883vw;
  }

  .page-search .page-header h1.open:before {
    right: calc(100% + 10px);
  }

  .page-search .page-header .container {
    padding-left: 0;
  }

  .page-home .directions__header {
    padding-right: 0;
  }

  .page-home .directions__header .sub-text {
    font-size: 1.367vw;
  }

  .page-home .directions__header .sub-text:first-child {
    display: none;
  }

  .page-home .directions__header .section-title {
    padding-top: 0;
  }

  .page-home .news {
    padding-left: 0;
    padding-bottom: 0;
    width: 90%;
    margin: 0 auto;
    flex-direction: column;
  }

  .page-home .news {
    padding-top: 90px;
  }

  .page-home .news .news__header {
    padding-left: 0;
  }

  .page-home .news .news__header .sub-text {
    font-size: 1.367vw;
  }

  .page-home .news .news__header .sub-text:first-child {
    display: none;
  }

  .page-home .news .news__header .section-title {
    padding-top: 0;
    font-size: 3.516vw;
  }

  .page-home .news .news__left {
    width: 100%;
  }

  .page-home .news .news__list {
    max-width: 790px;
    margin: auto;
  }

  .page-home .news .news__list .slick-dots {
    padding-left: 0;
    justify-content: center;
    bottom: -40px;
  }

  .page-home .news .news__right {
    background-image: none !important;
    background-color: #e4d1cf;
    width: 100vw;
    min-width: 100vw;
    margin-left: -5vw;
    padding: 60px 20px;
    margin-top: 70px;
  }

  .page-home .news .news__right h3 {
    max-width: 100%;
    text-align: center;
    margin-bottom: 30px;
  }

  .page-home .news .news__right form {
    justify-content: center;
  }

  .page-shop .page-header {
    padding-top: 40px;
  }

  .page-shop .page-header h1 {
    font-size: 4.883vw;
  }

  .page-shop .page-header h1.open:before {
    right: calc(100% + 10px);
  }

  .page-shop .page-header .container {
    padding-left: 0;
  }

  .page-shop .filters .container {
    padding-left: 0;
  }

  .page-shop .filters .container {
    align-items: flex-start;
  }

  .page-shop .filters .line {
    margin-top: 7px;
  }

  .page-shop .filters .list a {
    margin-bottom: 10px;
    margin-right: 20px;
  }

  .page-shop .shops-list {
    padding: 40px 0 0 0;
  }

  .page-shop .shops-list .shop {
    margin-right: 20px;
    margin-bottom: 20px;
    width: calc(25% - 15px);
  }

  .page-shop-single .page-header {
    padding-top: 40px;
  }

  .page-shop-single .page-header h1 {
    font-size: 4.883vw;
  }

  .page-shop-single .page-header h1.open:before {
    right: calc(100% + 10px);
  }

  .page-shop-single .page-header .container {
    padding-left: 0;
  }

  .page-shop-single .media-content .left .info {
    padding-left: 0;
    margin-left: 0;
    padding-top: 35px;
    margin-bottom: 30px;
  }

  .page-shop-single .media-content .left .characteristics {
    margin-bottom: 30px;
  }

  .page-about .page-header {
    padding-top: 40px;
  }

  .page-about .page-header h1 {
    font-size: 4.883vw;
  }

  .page-about .page-header h1.open:before {
    right: calc(100% + 10px);
  }

  .page-about .page-header .container {
    padding-left: 0;
  }

  .page-about .number-info .box {
    max-width: 26.855vw;
  }

  .page-about .number-info .num {
    font-size: 7.520vw;
  }

  .page-about .number-info .num span {
    font-size: 3.223vw;
  }

  .page-about .number-info .desc {
    font-size: 3.516vw;
  }

  .page-entertainment .page-header {
    padding-top: 40px;
  }

  .page-entertainment .page-header h1 {
    font-size: 4.883vw;
  }

  .page-entertainment .page-header h1.open:before {
    right: calc(100% + 10px);
  }

  .page-entertainment .page-header .container {
    padding-left: 0;
  }

  .page-entertainment .directions {
    margin-bottom: 100px;
  }

  .page-restaurants .page-header {
    padding-top: 40px;
  }

  .page-restaurants .page-header h1 {
    font-size: 4.883vw;
  }

  .page-restaurants .page-header h1.open:before {
    right: calc(100% + 10px);
  }

  .page-restaurants .page-header .container {
    padding-left: 0;
  }

  .page-restaurants .restaurants-list {
    padding: 40px 0 40px 0;
  }

  .page-restaurants .restaurants-list .restaurant {
    margin-right: 20px;
    margin-bottom: 20px;
    width: calc(25% - 15px);
  }

  .page-news .page-header {
    padding-top: 40px;
  }

  .page-news .page-header h1 {
    font-size: 4.883vw;
  }

  .page-news .page-header h1.open:before {
    right: calc(100% + 10px);
  }

  .page-news .page-header .container {
    padding-left: 0;
  }

  .page-news .filters {
    margin-bottom: 40px;
  }

  .page-news .filters .container {
    padding-left: 0;
  }

  .page-news .filters .container {
    align-items: flex-start;
  }

  .page-news .filters .line {
    margin-top: 7px;
  }

  .page-news .filters .list a {
    margin-bottom: 10px;
    margin-right: 20px;
  }

  .page-article .page-header {
    padding-top: 40px;
  }

  .page-article .page-header h1 {
    font-size: 4.883vw;
  }

  .page-article .page-header h1.open:before {
    right: calc(100% + 10px);
  }

  .page-article .page-header .container {
    padding-left: 0;
  }

  .page-article .article-content {
    padding-top: 35px;
  }

  .page-article .btn-section {
    padding: 40px 0;
  }

  .page-3d .page-header {
    padding-top: 40px;
  }

  .page-3d .page-header h1 {
    font-size: 4.883vw;
  }

  .page-3d .page-header h1.open:before {
    right: calc(100% + 10px);
  }

  .page-3d .page-header .container {
    padding-left: 0;
  }

  .page-3d .map-3d {
    padding: 40px 0;
  }

  .page-transport .page-header {
    padding-top: 40px;
  }

  .page-transport .page-header h1 {
    font-size: 4.883vw;
  }

  .page-transport .page-header h1.open:before {
    right: calc(100% + 10px);
  }

  .page-transport .page-header .container {
    padding-left: 0;
  }

  .page-transport .transport {
    padding-bottom: 40px;
  }

  .page-contscts .page-header {
    padding-top: 40px;
  }

  .page-contscts .page-header h1 {
    font-size: 4.883vw;
  }

  .page-contscts .page-header h1.open:before {
    right: calc(100% + 10px);
  }

  .page-contscts .page-header .container {
    padding-left: 0;
  }

  .page-contscts .contact-info {
    padding-top: 40px;
  }

  .page-contscts .contact-info .container {
    flex-wrap: wrap;
  }

  .page-contscts .contact-info .container > div {
    width: 50%;
  }

  .page-contscts .contact-info .container .address {
    order: 1;
    margin-bottom: 40px;
  }

  .page-contscts .contact-info .container .phones {
    order: 3;
  }

  .page-contscts .contact-info .container .emails {
    order: 2;
    margin-bottom: 40px;
  }

  .page-contscts .contact-info .container .c-form {
    order: 4;
  }

  .page-contscts .map {
    padding-bottom: 40px;
  }
}

@media screen and (max-width: 970px) {
  .page-shop .filters .list {
    flex-wrap: wrap;
    justify-content: flex-end;
    margin-right: -20px;
  }

  .page-news .filters .list {
    flex-wrap: wrap;
    justify-content: flex-end;
    margin-right: -20px;
  }
}

@media screen and (max-width: 950px) {
  body.fix {
    overflow: hidden;
  }

  .page-search {
    border-top: 1px solid #999999;
  }

  .header {
    padding-top: 0px;
  }

  .header .top-line {
    position: fixed;
    width: 100vw;
    top: 0;
    z-index: 9999;
    left: 0;
  }

  .header .top-line .right-menu {
    display: none;
  }

  .header .top-line .mob-btn {
    display: flex;
  }

  .header .center-line .container {
    justify-content: center;
  }

  .header .center-line .time {
    display: none;
  }

  .header .center-line .language {
    display: none;
  }

  .header .menu-line {
    display: none;
  }

  .header .mob-menu {
    display: block;
  }

  .page-shop {
    border-top: 1px solid #999999;
  }

  .page-shop .page-header .search-brands {
    display: none;
  }

  .page-shop-single {
    border-top: 1px solid #999999;
  }

  .page-about {
    border-top: 1px solid #999999;
  }

  .page-entertainment {
    border-top: 1px solid #999999;
  }

  .page-restaurants {
    border-top: 1px solid #999999;
  }

  .page-restaurants .page-header .search-brands {
    display: none;
  }

  .page-news {
    border-top: 1px solid #999999;
  }

  .page-news .page-header .search-brands {
    display: none;
  }

  .page-article {
    border-top: 1px solid #999999;
  }

  .page-article .article-content .container {
    flex-direction: column;
    justify-content: flex-start;
  }

  .page-article .article-content .img {
    width: 100%;
    text-align: center;
    margin-bottom: 30px;
    margin-right: 0;
  }

  .page-article .article-content .img img {
    width: auto;
    max-width: 100%;
  }

  .page-article .article-content .content {
    width: 100%;
  }

  .page-article .btn-section .left {
    width: 100%;
  }

  .page-3d {
    border-top: 1px solid #999999;
  }

  .page-transport {
    border-top: 1px solid #999999;
  }

  .page-contscts {
    border-top: 1px solid #999999;
  }
}

@media screen and (max-width: 900px) {
  .page-entertainment .skypark .container {
    flex-direction: column;
  }

  .page-entertainment .skypark .text {
    width: 100vw;
    padding: 0 5vw 150px 5vw;
  }

  .page-entertainment .skypark .text img {
    max-width: 418px;
    width: 100%;
  }

  .page-entertainment .skypark .img {
    width: 100%;
    margin: -50px auto 0 auto;
  }

  .page-news .news-list .box {
    width: 50%;
    height: 44.149vw;
  }

  .page-news .news-list .box.text .title {
    font-size: 20px;
  }

  .page-news .news-list .box.text:before {
    display: none;
  }

  .page-news .news-list .box:nth-child(6n-3) {
    order: 4;
  }

  .page-news .news-list .box:nth-child(6n-3) .triangle {
    top: 50%;
    bottom: auto;
    left: 0;
    right: auto;
    border: 15px solid transparent;
    border-left: 15px solid #fff;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
  }

  .page-news .news-list .box:nth-child(6n-2) {
    order: 3;
  }

  .page-news .news-list .box:nth-child(6n-1) {
    order: 5;
  }

  .page-news .news-list .box:nth-child(6n-1) .triangle {
    position: absolute;
    right: 0;
    top: 50%;
    bottom: auto;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    border: 15px solid transparent;
    border-right: 15px solid #fff;
  }

  .page-news .news-list .box:nth-child(6n) {
    order: 6;
  }
}

@media screen and (max-width: 890px) {
  .footer .main-content .coll_2 {
    display: none;
  }

  .footer .main-content .coll_3 {
    margin-left: 40px;
  }
}

@media screen and (max-width: 850px) {
  .page-home .directions__content .box {
    width: 40vw;
    height: 40vw;
  }

  .page-home .directions__content .box:nth-child(1) {
    order: 1;
  }

  .page-home .directions__content .box:nth-child(2) {
    order: 2;
  }

  .page-home .directions__content .box:nth-child(3) {
    order: 4;
  }

  .page-home .directions__content .box:nth-child(4) {
    order: 3;
  }

  .page-home .directions__content .box:nth-child(5) {
    order: 5;
  }

  .page-home .directions__content .box:nth-child(6) {
    order: 6;
  }

  .page-home .directions__content .box.text h3 {
    font-size: 24px;
    margin-bottom: 15px;
  }

  .page-home .directions__content .box.text h4 {
    font-size: 17px;
    margin-bottom: 15px;
  }

  .page-home .directions__content .box.text .hr {
    margin-bottom: 20px;
  }

  .page-home .directions__content .box.text .hr-l {
    margin-top: 15px;
  }

  .page-home .directions__content .box.img:nth-child(3) .triangle {
    top: 50%;
    bottom: auto;
    left: 0;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    border: 15px solid transparent;
    border-left: 15px solid white;
  }

  .page-home .directions__content .box.img:nth-child(5) .triangle {
    right: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    border: 15px solid transparent;
    border-right: 15px solid white;
  }

  .page-entertainment .directions__content .box {
    width: 40vw;
    height: 40vw;
  }

  .page-entertainment .directions__content .box:nth-child(1) {
    order: 1;
  }

  .page-entertainment .directions__content .box:nth-child(2) {
    order: 2;
  }

  .page-entertainment .directions__content .box:nth-child(3) {
    order: 4;
  }

  .page-entertainment .directions__content .box:nth-child(4) {
    order: 3;
  }

  .page-entertainment .directions__content .box:nth-child(5) {
    order: 5;
  }

  .page-entertainment .directions__content .box:nth-child(6) {
    order: 6;
  }

  .page-entertainment .directions__content .box.text h3 {
    font-size: 24px;
    margin-bottom: 15px;
  }

  .page-entertainment .directions__content .box.text h4 {
    font-size: 17px;
    margin-bottom: 15px;
  }

  .page-entertainment .directions__content .box.text .hr {
    margin-bottom: 20px;
  }

  .page-entertainment .directions__content .box.text .hr-l {
    margin-top: 15px;
  }

  .page-entertainment .directions__content .box.img:nth-child(3) .triangle {
    top: 50%;
    bottom: auto;
    left: 0;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    border: 15px solid transparent;
    border-left: 15px solid white;
  }

  .page-entertainment .directions__content .box.img:nth-child(5) .triangle {
    right: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    border: 15px solid transparent;
    border-right: 15px solid white;
  }
}

@media screen and (max-width: 820px) {
  .page-contscts .contact-info form input {
    width: 100%;
  }

  .page-contscts .contact-info form select {
    width: 100%;
  }

  .page-contscts .contact-info form textarea {
    width: 100%;
  }
}

@media screen and (max-width: 768px) {
  .header .center-line {
    padding: 20px 0;
  }

  .header .center-line .logo {
    width: 141px;
    height: 43px;
  }

  .page-home .main-banner {
    height: calc(100vh - 189px);
  }

  .page-home .main-banner img {
    height: calc(100vh - 189px);
  }

  .page-home .directions__header {
    padding: 40px 0 25px 0;
  }

  .page-shop .shops-list {
    padding: 20px 0 0 0;
  }

  .page-shop .shops-list .shop {
    width: calc(33.33% - 13.333px);
    height: 18vw;
  }

  .page-restaurants .restaurants-list {
    padding: 20px 0 20px 0;
  }

  .page-restaurants .restaurants-list .restaurant {
    width: calc(33.33% - 13.333px);
    height: 18vw;
  }
}

@media screen and (max-width: 730px) {
  .page-home .directions__header .sub-text {
    font-size: 10px;
  }

  .page-home .news .news__header .sub-text {
    font-size: 10px;
  }
}

@media screen and (max-width: 700px) {
  .section-title {
    font-size: 25px;
  }

  .page-search .page-header h1 {
    font-size: 34px;
  }

  .page-shop .page-header h1 {
    font-size: 34px;
  }

  .page-shop-single .page-header h1 {
    font-size: 34px;
  }

  .page-about .page-header h1 {
    font-size: 34px;
  }

  .page-entertainment .page-header h1 {
    font-size: 34px;
  }

  .page-restaurants .page-header h1 {
    font-size: 34px;
  }

  .page-news .page-header h1 {
    font-size: 34px;
  }

  .page-article .page-header h1 {
    font-size: 34px;
  }

  .page-3d .page-header h1 {
    font-size: 34px;
  }

  .page-transport .page-header h1 {
    font-size: 34px;
  }

  .page-contscts .page-header h1 {
    font-size: 34px;
  }
}

@media screen and (max-width: 670px) {
  .page-transport .transport h2 {
    padding: 30px 0;
  }

  .page-transport .variants .left {
    margin: 0 auto;
  }

  .page-transport .variants .right {
    margin-top: 13px;
  }

  .page-transport .variants .right .box {
    flex-direction: column;
  }

  .page-transport .variants .right .description {
    margin-bottom: 20px;
    text-align: center;
  }

  .page-transport .variants .right .description {
    order: 1;
  }

  .page-transport .variants .right h3 {
    text-align: center;
  }

  .page-transport .variants .right .map {
    width: 100%;
    height: 270px;
  }

  .page-transport .variants .right .map {
    order: 3;
  }

  .page-transport .variants .right .time-list {
    order: 2;
  }

  .page-transport .variants .right .time-list {
    margin: 0 auto 30px auto;
    width: 100%;
    max-width: 300px;
  }

  .page-transport .variants .right .list .start {
    text-align: center;
    width: 50%;
  }

  .page-transport .variants .right .list .stop {
    text-align: center;
    width: 50%;
  }

  .page-transport .variants .right .dop-description {
    text-align: center;
  }

  .page-transport .variants .right .dop-description {
    order: 4;
  }
}

@media screen and (max-width: 640px) {
  .page-shop-single .media-content {
    flex-direction: column;
    padding: 0 5%;
  }

  .page-shop-single .media-content .left {
    width: 100%;
    min-width: 100%;
    margin-bottom: 5vw;
  }

  .page-shop-single .media-content .left .to-map {
    margin: 0 auto;
    display: block;
  }

  .page-shop-single .text {
    padding-top: 20px;
    padding-bottom: 40px;
  }

  .page-article .btn-section a {
    margin: 0 auto;
    display: block;
  }
}

@media screen and (max-width: 630px) {
  .page-home .directions__header .section-title {
    padding-bottom: 10px;
  }

  .page-home .directions__content .box.text h3 {
    font-size: 20px;
  }

  .page-home .directions__content .box.text h4 {
    font-size: 16px;
  }

  .page-home .news .news__header .section-title {
    font-size: 22px;
    padding-bottom: 10px;
  }

  .page-entertainment .directions__content .box.text h3 {
    font-size: 20px;
  }

  .page-entertainment .directions__content .box.text h4 {
    font-size: 16px;
  }
}

@media screen and (max-width: 625px) {
  .page-news .filters {
    margin-bottom: 20px;
  }

  .page-news .news-list .container {
    margin: 0;
    width: 100%;
  }

  .page-news .news-list .news-cont,
  .page-news .news-list .alm-reveal {
    justify-content: center;
  }

  .page-news .news-list .news-cont:nth-child(2n) .box:nth-child(6n-5),
  .page-news .news-list .alm-reveal:nth-child(2n) .box:nth-child(6n-5) {
    order: 1;
  }

  .page-news .news-list .news-cont:nth-child(2n) .box:nth-child(6n-4),
  .page-news .news-list .alm-reveal:nth-child(2n) .box:nth-child(6n-4) {
    order: 2;
  }

  .page-news .news-list .news-cont:nth-child(2n) .box:nth-child(6n-3),
  .page-news .news-list .alm-reveal:nth-child(2n) .box:nth-child(6n-3) {
    order: 3;
  }

  .page-news .news-list .news-cont:nth-child(2n) .box:nth-child(6n-2),
  .page-news .news-list .alm-reveal:nth-child(2n) .box:nth-child(6n-2) {
    order: 4;
  }

  .page-news .news-list .news-cont:nth-child(2n) .box:nth-child(6n-1),
  .page-news .news-list .alm-reveal:nth-child(2n) .box:nth-child(6n-1) {
    order: 5;
  }

  .page-news .news-list .news-cont:nth-child(2n) .box:nth-child(6n),
  .page-news .news-list .alm-reveal:nth-child(2n) .box:nth-child(6n) {
    order: 6;
  }

  .page-news .news-list .box {
    width: 100%;
    height: 100vw;
    max-width: 350px;
    max-height: 350px;
  }

  .page-news .news-list .box.img .triangle {
    top: auto;
    bottom: 0;
    left: 50%;
    right: auto;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    border: 15px solid transparent;
    border-bottom: 15px solid #fff;
  }

  .page-news .news-list .box.text {
    height: auto;
    padding: 30px 20px;
    text-align: center !important;
  }

  .page-news .news-list .box.text .title:before {
    left: 50% !important;
    -webkit-transform: translateX(-50%) !important;
    transform: translateX(-50%) !important;
  }

  .page-news .news-list .box.text .description {
    padding-bottom: 15px;
  }

  .page-news .news-list .box.text .description:before {
    left: 50% !important;
    -webkit-transform: translateX(-50%) !important;
    transform: translateX(-50%) !important;
    bottom: 0;
  }

  .page-news .news-list .box:nth-child(6n-4) {
    margin: 0;
  }

  .page-news .news-list .box:nth-child(6n-3) {
    order: 3;
  }

  .page-news .news-list .box:nth-child(6n-2) {
    order: 4;
  }
}

@media screen and (max-width: 620px) {
  .header .mob-menu .bottom-menu-mob a {
    font-size: 16px;
  }

  .page-home .directions .container {
    width: 100%;
  }

  .page-home .directions__header {
    padding: 40px 5% 25px 0;
  }

  .page-home .directions__content .box {
    overflow: hidden;
  }

  .page-home .directions__content .box:nth-child(1) {
    order: 1;
  }

  .page-home .directions__content .box:nth-child(2) {
    order: 2;
  }

  .page-home .directions__content .box:nth-child(3) {
    order: 5;
  }

  .page-home .directions__content .box:nth-child(4) {
    order: 6;
  }

  .page-home .directions__content .box:nth-child(5) {
    order: 3;
  }

  .page-home .directions__content .box:nth-child(6) {
    order: 4;
  }

  .page-home .directions__content .box.text {
    width: 350px;
    height: auto;
    padding: 35px 20px;
  }

  .page-home .directions__content .box.img {
    width: 350px;
    height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .page-home .directions__content .box.img:nth-child(1) img {
    -webkit-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
  }

  .page-home .directions__content .box.img:nth-child(1) .triangle {
    bottom: 0;
    top: auto;
    left: 50%;
    right: auto;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    border: 15px solid transparent;
    border-bottom: 15px solid #fff;
    z-index: 2;
  }

  .page-home .directions__content .box.img:nth-child(3) img {
    -webkit-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
  }

  .page-home .directions__content .box.img:nth-child(3) .triangle {
    bottom: 0;
    top: auto;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    border: 15px solid transparent;
    border-bottom: 15px solid #fff;
    z-index: 2;
  }

  .page-home .directions__content .box.img:nth-child(5) img {
    -webkit-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
  }

  .page-home .directions__content .box.img:nth-child(5) .triangle {
    bottom: 0;
    top: auto;
    left: 50%;
    right: auto;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    border: 15px solid transparent;
    border-bottom: 15px solid #fff;
    z-index: 2;
  }

  .page-home .news {
    padding-top: 20px;
  }

  .page-home .news .news__header {
    margin-bottom: 25px;
  }

  .page-home .news .news__list .box {
    margin-left: auto;
    margin-right: auto;
    width: 350px;
    height: 350px;
  }

  .page-home .news .news__list .box img {
    width: 350px;
    height: 350px;
  }

  .page-home .news .news__list .box .text {
    position: absolute;
    left: 30px;
    top: 30px;
    width: 290px;
    height: 290px;
    margin: 0;
  }

  .page-home .news .news__list .box .read-more {
    right: 60px;
    bottom: 60px;
  }

  .page-about .number-info {
    margin-bottom: 0;
  }

  .page-about .number-info .container {
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
  }

  .page-about .number-info .box {
    margin-bottom: 30px;
    max-width: 250px;
  }

  .page-about .number-info .num {
    font-size: 54px;
  }

  .page-about .number-info .num span {
    font-size: 36px;
  }

  .page-about .number-info .desc {
    padding-bottom: 30px;
    font-size: 32px;
  }

  .page-about .dop-info {
    padding: 0 0 20px 0;
  }

  .page-about .dop-info .mob-img {
    display: block;
  }

  .page-about .dop-info .container {
    background-color: rgba(255, 255, 255, 0.9);
    margin-top: -30px;
    position: relative;
    z-index: 2;
    padding: 20px;
  }

  .page-entertainment .skypark {
    margin-top: 50px;
  }

  .page-entertainment .skypark .btn-c:after {
    bottom: -30px;
  }

  .page-entertainment .skypark .text {
    padding-bottom: 110px;
  }

  .page-entertainment .skypark .text .hr {
    margin: 30px 0 20px 0;
  }

  .page-entertainment .directions {
    margin-top: 40px;
    margin-bottom: 20px;
  }

  .page-entertainment .directions .container {
    width: 100%;
  }

  .page-entertainment .directions__content .box {
    overflow: hidden;
  }

  .page-entertainment .directions__content .box:nth-child(1) {
    order: 1;
  }

  .page-entertainment .directions__content .box:nth-child(2) {
    order: 2;
  }

  .page-entertainment .directions__content .box:nth-child(3) {
    order: 5;
  }

  .page-entertainment .directions__content .box:nth-child(4) {
    order: 6;
  }

  .page-entertainment .directions__content .box:nth-child(5) {
    order: 3;
  }

  .page-entertainment .directions__content .box:nth-child(6) {
    order: 4;
  }

  .page-entertainment .directions__content .box.text {
    width: 350px;
    height: auto;
    padding: 35px 20px;
  }

  .page-entertainment .directions__content .box.img {
    width: 350px;
    height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .page-entertainment .directions__content .box.img:nth-child(1) img {
    -webkit-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
  }

  .page-entertainment .directions__content .box.img:nth-child(1) .triangle {
    bottom: 0;
    top: auto;
    left: 50%;
    right: auto;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    border: 15px solid transparent;
    border-bottom: 15px solid #fff;
    z-index: 2;
  }

  .page-entertainment .directions__content .box.img:nth-child(3) img {
    -webkit-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
  }

  .page-entertainment .directions__content .box.img:nth-child(3) .triangle {
    bottom: 0;
    top: auto;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    border: 15px solid transparent;
    border-bottom: 15px solid #fff;
    z-index: 2;
  }

  .page-entertainment .directions__content .box.img:nth-child(5) img {
    -webkit-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
  }

  .page-entertainment .directions__content .box.img:nth-child(5) .triangle {
    bottom: 0;
    top: auto;
    left: 50%;
    right: auto;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    border: 15px solid transparent;
    border-bottom: 15px solid #fff;
    z-index: 2;
  }

  .page-news .news-list .box.text .title {
    font-size: 18px;
  }

  .page-article .article-content .img {
    margin-bottom: 15px;
  }
}

@media screen and (max-width: 580px) {
  .footer .main-content {
    padding-bottom: 40px;
  }

  .footer .main-content .container {
    flex-direction: column;
    align-items: center;
  }

  .footer .main-content .coll_1 {
    margin: 0 auto;
  }

  .footer .main-content .coll_1 .logo {
    margin: 0 auto 30px auto;
  }

  .footer .main-content .coll_1 p {
    text-align: center;
  }

  .footer .main-content .coll_1 p.address {
    margin-bottom: 20px;
  }

  .footer .main-content .coll_1 a {
    text-align: center;
    margin: 0 auto;
    display: block;
  }

  .footer .main-content .coll_1 .socials {
    justify-content: center;
    margin: 10px auto 0 auto;
    max-width: 180px;
  }

  .footer .main-content .coll_3 {
    margin-left: 0;
    width: 100%;
  }

  .footer .main-content .coll_3 h3,
  .footer .main-content .coll_3 p {
    display: none;
  }

  .footer .main-content .payment {
    justify-content: center;
  }

  .page-contscts .contact-info .container {
    flex-direction: column;
    text-align: center;
  }

  .page-contscts .contact-info .container > div {
    width: 100%;
  }

  .page-contscts .contact-info .container .phones {
    margin-bottom: 40px;
  }

  .page-contscts .contact-info .phones a {
    padding-left: 0;
  }

  .page-contscts .contact-info form .btn {
    margin: auto;
  }
}

@media screen and (max-width: 550px) {
  .page-search .page-header h1.open:before {
    display: none;
  }

  .page-shop .page-header h1.open:before {
    display: none;
  }

  .page-shop .shops-list .shop {
    width: calc(50% - 10px);
    height: 23vw;
  }

  .page-shop .shops-list .shop:nth-child(2n) {
    margin-right: 0;
  }

  .page-shop-single .page-header h1.open:before {
    display: none;
  }

  .page-about .page-header h1.open:before {
    display: none;
  }

  .page-entertainment .page-header h1.open:before {
    display: none;
  }

  .page-restaurants .page-header h1.open:before {
    display: none;
  }

  .page-restaurants .restaurants-list .restaurant {
    width: calc(50% - 10px);
    height: 23vw;
  }

  .page-restaurants .restaurants-list .restaurant:nth-child(2n) {
    margin-right: 0;
  }

  .page-news .page-header h1.open:before {
    display: none;
  }

  .page-article .page-header h1.open:before {
    display: none;
  }

  .page-3d .page-header h1.open:before {
    display: none;
  }

  .page-transport .page-header h1.open:before {
    display: none;
  }

  .page-contscts .page-header h1.open:before {
    display: none;
  }
}

@media screen and (max-width: 500px) {
  .page-search .search-list .box {
    margin-bottom: 5vw;
  }

  .page-search .search-list .box.post .img {
    display: none;
  }

  .page-search .search-list .box.post .info {
    padding: 20px;
  }
}

@media screen and (max-width: 470px) {
  .page-transport .variants .left {
    width: 100%;
  }
}

@media screen and (max-width: 450px) {
  .page-search .search-list .box .img {
    width: 44.444vw;
    height: 44.444vw;
    min-width: 44.444vw;
  }

  .page-search .search-list .box .info h3 {
    font-size: 16px;
    margin-bottom: 8px;
  }

  .page-search .search-list .box .info .box-ico p {
    font-size: 14px;
  }

  .page-home .main-banner {
    display: none;
  }
}

@media screen and (max-width: 430px) {
  .page-home .news .news__right form {
    flex-direction: column;
  }

  .page-home .news .news__right form .input {
    max-width: 100%;
  }
}

@media screen and (max-width: 400px) {
  .page-shop .shops-list .shop {
    padding: 10px;
    width: calc(50% - 5px);
    margin-right: 10px;
    margin-bottom: 10px;
  }

  .page-restaurants .restaurants-list .restaurant {
    padding: 10px;
    width: calc(50% - 5px);
    margin-right: 10px;
    margin-bottom: 10px;
  }
}

@media screen and (max-width: 390px) {
  .page-home .news .news__list .box {
    height: 90vw;
    width: 90vw;
  }

  .page-home .news .news__list .box img {
    height: 90vw;
    width: 90vw;
  }

  .page-home .news .news__list .box .text {
    width: calc(90vw - 15.385vw);
    height: calc(90vw - 15.385vw);
    left: 7.692vw;
    top: 7.692vw;
    padding: 20px;
  }

  .page-home .news .news__list .box .text .date {
    margin-bottom: 15px;
  }

  .page-home .news .news__list .box .read-more {
    right: calc(7.692vw + 20px);
    bottom: calc(7.692vw + 20px);
  }
}

@media screen and (max-width: 380px) {
  .header .top-line .search.open .input {
    width: 170px;
  }
}

@media screen and (max-width: 375px) {
  .page-transport .variants .left .box p {
    font-size: 11px;
  }
}

@media screen and (max-width: 350px) {
  .page-home .directions__content .box.img {
    width: 100vw;
    height: 100vw;
  }

  .page-entertainment .directions__content .box.img {
    width: 100vw;
    height: 100vw;
  }
}

@media screen and (max-width: 40px) {
  .page-search .search-list {
    padding-bottom: 40px;
  }
}

@media screen and (min-width: 621px) and (max-width: 850px) {
  .directions__content {
    overflow: hidden;
  }
}

@media screen and (min-width: 551px) and (max-width: 768px) {
  .page-shop .shops-list .shop:nth-child(3n) {
    margin-right: 0;
  }

  .page-restaurants .restaurants-list .restaurant:nth-child(3n) {
    margin-right: 0;
  }
}

@media screen and (min-width: 626px) and (max-width: 900px) {
  .page-news .news-list .news-cont:nth-child(2n) .box:nth-child(6n-5),
  .page-news .news-list .alm-reveal:nth-child(2n) .box:nth-child(6n-5) {
    order: 2;
  }

  .page-news .news-list .news-cont:nth-child(2n) .box:nth-child(6n-5) .triangle,
  .page-news .news-list .alm-reveal:nth-child(2n) .box:nth-child(6n-5) .triangle {
    top: 50%;
    left: 0;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    border: 15px solid transparent;
    border-left: 15px solid #fff;
  }

  .page-news .news-list .news-cont:nth-child(2n) .box:nth-child(6n-4),
  .page-news .news-list .alm-reveal:nth-child(2n) .box:nth-child(6n-4) {
    order: 1;
    text-align: right;
  }

  .page-news .news-list .news-cont:nth-child(2n) .box:nth-child(6n-4) .title:before,
  .page-news .news-list .alm-reveal:nth-child(2n) .box:nth-child(6n-4) .title:before {
    left: auto;
    right: 0;
  }

  .page-news .news-list .news-cont:nth-child(2n) .box:nth-child(6n-4) .description:before,
  .page-news .news-list .alm-reveal:nth-child(2n) .box:nth-child(6n-4) .description:before {
    left: auto;
    right: 0;
  }

  .page-news .news-list .news-cont:nth-child(2n) .box:nth-child(6n-3),
  .page-news .news-list .alm-reveal:nth-child(2n) .box:nth-child(6n-3) {
    order: 3;
  }

  .page-news .news-list .news-cont:nth-child(2n) .box:nth-child(6n-3) .triangle,
  .page-news .news-list .alm-reveal:nth-child(2n) .box:nth-child(6n-3) .triangle {
    right: 0;
    top: 50%;
    bottom: auto;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    border: 15px solid transparent;
    border-right: 15px solid #fff;
  }

  .page-news .news-list .news-cont:nth-child(2n) .box:nth-child(6n-2),
  .page-news .news-list .alm-reveal:nth-child(2n) .box:nth-child(6n-2) {
    order: 4;
    text-align: left;
  }

  .page-news .news-list .news-cont:nth-child(2n) .box:nth-child(6n-2) .title:before,
  .page-news .news-list .alm-reveal:nth-child(2n) .box:nth-child(6n-2) .title:before {
    left: 0;
    right: auto;
  }

  .page-news .news-list .news-cont:nth-child(2n) .box:nth-child(6n-2) .description:before,
  .page-news .news-list .alm-reveal:nth-child(2n) .box:nth-child(6n-2) .description:before {
    left: 0;
    right: auto;
  }

  .page-news .news-list .news-cont:nth-child(2n) .box:nth-child(6n-1),
  .page-news .news-list .alm-reveal:nth-child(2n) .box:nth-child(6n-1) {
    order: 6;
  }

  .page-news .news-list .news-cont:nth-child(2n) .box:nth-child(6n-1) .triangle,
  .page-news .news-list .alm-reveal:nth-child(2n) .box:nth-child(6n-1) .triangle {
    top: 50%;
    left: 0;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    border: 15px solid transparent;
    border-left: 15px solid #fff;
  }

  .page-news .news-list .news-cont:nth-child(2n) .box:nth-child(6n),
  .page-news .news-list .alm-reveal:nth-child(2n) .box:nth-child(6n) {
    order: 5;
    text-align: right;
  }

  .page-news .news-list .news-cont:nth-child(2n) .box:nth-child(6n) .title:before,
  .page-news .news-list .alm-reveal:nth-child(2n) .box:nth-child(6n) .title:before {
    left: auto;
    right: 0;
  }

  .page-news .news-list .news-cont:nth-child(2n) .box:nth-child(6n) .description:before,
  .page-news .news-list .alm-reveal:nth-child(2n) .box:nth-child(6n) .description:before {
    left: auto;
    right: 0;
  }

  .page-news .news-list .box:nth-child(6n-2) {
    text-align: right;
  }

  .page-news .news-list .box:nth-child(6n-2) .title:before {
    left: auto;
    right: 0;
    -webkit-transform: none;
    transform: none;
  }

  .page-news .news-list .box:nth-child(6n-2) .description:before {
    left: auto;
    right: 0;
    -webkit-transform: none;
    transform: none;
  }
}

@media screen and (max-height: 700px) {
  .header .center-line {
    padding: 20px 0;
  }

  .header .center-line .logo {
    width: 141px;
    height: 43px;
  }

  .page-home .main-banner {
    height: calc(100vh - 189px);
  }

  .page-home .main-banner img {
    height: calc(100vh - 189px);
  }
}

@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .page-home .directions__content .box.img:nth-child(1) img {
    -webkit-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
  }

  .page-home .directions__content .box.img:nth-child(3) img {
    -webkit-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
  }

  .page-home .directions__content .box.img:nth-child(5) img {
    -webkit-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
  }
}





.z_header{
  width: 100%;
  max-width: 1920px;
  margin: 0 auto;
  background: url(../img/header-top.jpg) center;
  height: 100vh;
  max-height: 906px;
}
.block2 {
  width: 100%;
  max-width: 1290px;
  height: 930px;
  max-height: 930px;
  background: #ecedec;
  margin: -130px auto 0px;
  box-shadow: 0px 0px 35px rgba(13, 11, 35, 0.21);
  position: relative;
  overflow: hidden;
}
.block2 h2{
 color: #9d9d9d;
 text-transform: uppercase;
 letter-spacing: 2px;
 position: relative;
 top: 70px;
 left: 10px;
 margin: 0 auto;
 display: block;
 width: 100%;
 text-align: center;
}
.block2 h2:before{
 content: '';
 position: absolute;
 width: 533px;
 top: calc(50% - 1px);
 left: calc(56% + 25px);
 height: 1px;
 background-color: #999;
}
.z_txt-block{
  width: 100%;
  max-width: 460px;
  position: relative;
  left: 215px;
  top: 220px;
}
.z_txt-block b{
  font-size: 36px;
  font-family: Belladonna;
  text-transform: uppercase;
  letter-spacing: 2px;
}
.z_txt-block p{
  color: #585858;
  font-size: 14px;
  line-height: 22px;
  margin-top: 15px;

}

.block2 .foto{
  position: absolute;
  bottom: 0px;
  right: 0px;
}
.block3{
  position: relative;
}

.block3 iframe{
  margin: -170px auto;
  display: block;
  position: relative;
}
.overflow{
  height: 1093px;
  width: 50vw;
  background: #f1bfd7;
  left: 50vw;
  position: absolute;
  z-index: -1;
  top: -330px;
}
.block4{
 width: 100%;
 max-width: 1290px;
 height: 680px;
 background: url(../img/nout-2.png) no-repeat center;
 background-size: contain;
 margin: 305px auto 0px;
}
.block4 .txt-block{
 width: 100%;
 max-width: 324px;
 margin-top: 60px;

}
.block4 .txt-block b{
  font-size: 36px;
  font-family: Belladonna;
  text-transform: uppercase;
  letter-spacing: 2px;
}
.block4 .txt-block p{
  color: #585858;
  font-size: 14px;
  line-height: 22px;
  margin-top: 15px;
  text-align: justify;
}
.block5{
  width: 100%;
  height: 746px;
  background: url(../img/block5.jpg) center no-repeat;    padding-top: 100px;
}
.z_container{
  width: 100%;
  max-width: 1290px;
  margin: 0 auto;
  display: block;
}
.block5 .txt-block{
  max-width: 430px;
}
.block5 .txt-block b{
  font-size: 36px;
  font-family: Belladonna;
  text-transform: uppercase;
  letter-spacing: 2px;
}
.block5 .txt-block p{
  color: #585858;
  font-size: 14px;
  line-height: 22px;
  margin-top: 15px;
  text-align: justify;
}
.page-home{
  margin-bottom: 600px;
}
.skreen-block{
  width: 100%;
  justify-content: space-between;
  display: flex;
  max-width: 1290px;
  margin: 0px auto;
}
.skreen-block img {
  margin-bottom: 60px;
  box-shadow: 0px 0px 18px rgba(85, 85, 85, 0.47058823529411764);
}
.skreen-block .left-block, .skreen-block .right-block{
  max-width: 567px;
}

.skreen-block-m{
  width: 100%;
  justify-content: space-between;
  display: flex;
  max-width: 1290px;
  margin: 90px auto 0px;
  align-items: flex-start;
}
.skreen-block-m img{
 -o-object-fit: contain;
 object-fit: contain;
 box-shadow: 0px -31px 29px -22px rgba(94, 94, 94, 0.72);

}
.block6{
  width: 100%;
  background: #f1bfd7;
  padding-top: 80px;
  padding-bottom: 240px;
  margin-top: 100px;
}
.block6 .txt-block{
  max-width: 865px;
}
.block6 .txt-block b{
  font-size: 36px;
  font-family: Belladonna;
  text-transform: uppercase;
  letter-spacing: 2px;
}
.block6 .txt-block p{
  color: #585858;
  font-size: 14px;
  line-height: 22px;
  margin-top: 15px;
  text-align: justify;
}
@media screen and (max-width: 1500px) {
  .z_header {
    background: url(../img/header-top.jpg) no-repeat;
    background-size: contain;
    height: 90vh;
    max-height: 906px;
  }
}
@media screen and (max-width: 1024px) {
  .z_header {
    background: url(../img/header-top.jpg) -260px no-repeat;
    background-size: cover;
    height: 500px;
    max-height: 906px;
  }
}
@media screen and (max-width: 700px) {
  .z_header {
    background: url(../img/header-top.jpg) -210px no-repeat;
    background-size: cover;
    height: 370px;
    max-height: 906px;
  }
}
@media screen and (max-width: 510px) {
.z_header {
    background: url(../img/mob-ver.jpg) 0px no-repeat;
    background-size: cover;
    height: 430px;
}
.block5 {
    width: 100%;
    height: AUTO;
    background: #ebebeb;
    padding-top: 30px;
    padding-bottom: 30px;
}
.page-home .directions__header .section-title {
    padding-bottom: 10px;
    width: 100%;
    text-align: center;
}

}
@media screen and (max-width: 1200px) {
.block2 {

    margin: 0px auto 0px;
 
}
.z_header {

    height: 440px;
   
}
.skreen-block {
    width: 90%;
      flex-wrap: wrap;
}
.skreen-block .left-block, .skreen-block .right-block {
    max-width: 50vh;
}
.skreen-block img {
    max-width: 100%;
}
}
@media screen and (max-width: 1300px) {
.z_txt-block {
    left: 55px;
    top: 230px;
}
.block2 h2:before {
    content: '';
    position: absolute;
    width: 20%;
    top: calc(50% - 1px);
    left: calc(75% + 53px);
    height: 1px;
    background-color: #999;
}
}
@media screen and (max-width: 1030px) {
.block2 {
    height: 810px;
}
.z_txt-block {
    left: 55px;
    top: 140px;
}
.block2 .foto {
    max-width: 440px;
}
.page-home {
    margin-bottom: 130px;
}

}
@media screen and (max-width: 980px) {
.block2 {
    height: 570px;
}
.block2 .foto {
    max-width: 290px;
}
.block3 iframe {
    margin: 50px auto;
    display: block;
    position: relative;
}
.overflow {
    height: 603px;
}
.block4 {
    margin: 25px auto 0px;
}

}
@media screen and (max-width: 800px) {
.block2 h2 {
  
    left: 0px;
    
}
.block2 h2:before {
    content: '';
    position: absolute;
    width: 243px;
    top: calc(50% - 1px);
    left: calc(66% + 25px);
   
}
.z_txt-block {
 
    max-width: 340px;
 
}
.skreen-block .left-block, .skreen-block .right-block {
    max-width: 100vh;
    margin: 0 auto;
}
.skreen-block img {
    max-width: 100%;
    margin: 0 auto 60px;
    display: block;
}
}
@media screen and (max-width: 680px) {
.block2 {
    height: 580px;
}
.block2 h2 {
    left: 0px;
    top: 40px;
}
.z_txt-block {
    max-width: 90%;
    margin: 0 auto;
    left: 0px;
    top: 80px;
        z-index: 2;
    position: relative;
}
.block2 .foto {
    max-width: 190px;
    z-index: 1;
    opacity: 0.4;
}
.block3 iframe {
    margin: 0px auto;
    display: block;
    position: relative;
    width: 90%;
}
.block2 h2:before {
    content: '';
    position: absolute;
    width: 20%;
    top: calc(50% - 1px);
    left: unset;
    right: 0px;
}
}
@media screen and (max-width: 1366px) {
.block4 {
    width: 90%;
    max-width: 90%;
}
.block5 .z_container {
    width: 90%;
   
}
.skreen-block-m {
    width: 90%;
    justify-content: space-between;
    display: flex;
    max-width: 1290px;
    margin: 90px auto 0px;
    align-items: flex-start;
    flex-wrap: wrap;
}
.skreen-block-m img {
    -o-object-fit: contain;
    object-fit: contain;
    box-shadow: 0px 0px 18px #55555578;
       margin: 0 auto 30px;

}

.block6 .z_container {
    width: 90%;
}
}




.mob-nout{
  display: none;
}

@media screen and (max-width: 1020px) {
.block4 .txt-block {
    width: 100%;
    max-width: 100%;
    margin-top: 0px;
}
.block4 {
    height: auto;
    background: unset;
    background-size: 100%;
    
}
.mob-nout{
  display: block;
      margin: 40px auto 0px;
    display: block;
    max-width: 90%;
}
}
@media screen and (max-width: 400px) {
.skreen-block-m img {
    width: 100%;
      
}
.block6 {
    width: 100%;
    background: #f1bfd7;
    padding-top: 80px;
    padding-bottom: 80px;
    margin-top: 100px;
}
}