/* FONTS */
@font-face {
  font-family: "OpenSans";
  src: url("../fonts/opensans.woff");
  src: url("../fonts/opensans.woff2");
}

/* END FONTS */
html {
  scroll-behavior: smooth;
}

*,
*::before,
*:after {
  box-sizing: border-box;
}

a:focus {
  outline: none;
}

button:focus {
  outline: none;
}

h1,
h2,
h3,
p {
  margin: 0;
}

li {
  list-style: none;
}

a {
  text-decoration: none;
}

ul {
  padding: 0;
  margin: 0;
}

button {
  border: none;
}

:active,
:hover,
:focus {
  outline: 0;
  outline-offset: 0;
}

body {
  font-family: "OpenSans";
  margin: 0;
  padding: 0;
}

.swal2-icon.swal2-info {
  border-color: #f4b835 !important;
  color: #f4b835 !important;
}

.tenant1__wrapper {
  width: 1200px;
  margin: 0 auto;
  margin-bottom: 120px;
  display: flex;
}
.tenant1__box {
  position: relative;
  width: 32%;
  margin-left: 0.5%;
  margin-right: 0.5%;
  height: 384px;
}
.tenant2__box {
  position: relative;
  width: 100%;
  margin-left: 0.5%;
  margin-right: 0.5%;
  height: 384px;
}
.tenant1__box:nth-child(1) {
  background: url("../images/tenant/01.jpg") center no-repeat;
  background-size: cover;
}
.tenant1__box:nth-child(2) {
  background: url("../images/tenant/02.jpg") center no-repeat;
  background-size: cover;
}
.tenant1__box:nth-child(3) {
  background: url("../images/tenant/3new.jpg") center no-repeat;
  background-size: cover;
}
.tenant2__box:nth-child(1) {
  background: url("../images/tenant/4.jpg") center no-repeat;
  background-size: cover;
}
.tenant1__box h2 {
  text-align: center;
  margin-top: 15px;
  font-size: 28px;
}
.tenant1__box p {
  text-align: center;
  font-size: 26px;
  color: white;
  margin-top: 10px;
}

@media (max-width: 760px) {
  .tenant1__wrapper {
    display: block;
    width: auto;
  }
  .tenant1__box {
    position: relative;
    width: 320px;
    height: 320px;
    margin-left: 0.5%;
    margin-right: 0.5%;
  }
  .tenant1__box h2 {
    padding-top: 12px;
  }
}

.swal2-icon.swal2-info {
  border-color: #f4b835 !important;
  color: #f4b835 !important;
}

/* Title page */
.page-title__wrapper {
  width: 100%;
  margin: 0px 0 54px;
}

.page-title__wrapper--top {
  margin-top: 130px;
}

.page-title__wrapper-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
}

.page-title {
  font-size: 28px;
  font-family: "OpenSans";
  color: rgb(36, 36, 36);
  font-weight: bold;
  line-height: 1.105;
  margin: 0 40px;
  transition: 0.3s;
  text-align: center;
}

.page-title:hover {
  color: #f2b532;
}

.page-title--wihte {
  color: #fff;
}

.triangle {
  position: relative;
  left: 49.5%;
}

/* Preloader*/
.loading {
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: #111;
  z-index: 9999999999999;
}

.load-circle {
  margin: 20vh auto;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  border: 10px solid #111;
  border-top: 10px solid #f4b835;
  -webkit-animation: rotate 1.2s infinite linear;
  animation: rotate 1.2s infinite linear;
}

@-webkit-keyframes rotate {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.preloader__title {
  margin-top: 392px;
}

.preloader__title-text {
  text-align: center;
  color: #fff;
  font-size: 28px;
  margin-top: 24px;
  font-family: "OpenSans";
}

.preloader__title-text__metropole {
  text-align: center;
  color: #fff;
  font-size: 50px;
  font-family: "OpenSans";
}

.shop-cart-image {
  width: 47%;
  background-size: cover !important;
}

/* PAGE SHOPS */
.brands__box {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  overflow: hidden;
}

.brands__box {
  justify-content: center;
  margin: 40px 0;
}

.brands__img {
  width: 280px;
  height: 120px;
  background: #ffffff;
  border-radius: 10px;
  justify-content: center;
  display: flex;
  align-items: center;
  transition: 0.3s;
  opacity: 0.4;
}

.brands__logo {
  width: 235px;
  height: 100px;
}

.brands__logo--grey {
  filter: grayscale(100%);
}

.brands__img:hover {
  opacity: 1;
}

.brands__img:hover .brands__logo--grey {
  filter: none;
}

.brands__link {
  margin: 10px;
}

.brands__img:hover {
  border: 3px solid #fabf3f;
}

.description {
  display: none;
  color: black;
  position: absolute;
  width: 200px;
  z-index: 100;
  background: white;
  margin-top: -70px;
  padding: 15px;
  text-align: center;
  border: 3px solid #fabf3f;
  border-radius: 10px;
}

.desc1 {
  width: 250px;
  margin-top: -110px;
}

.description b {
  text-decoration: underline;
}

.brands__img:hover .description {
  display: block;
}

@media (min-width: 320px) and (max-width: 540px) {
  .preloader__title-text {
    text-align: center;
    color: #fff;
    font-size: 24px;
    margin-top: 14px;
  }

  .preloader__title-text__metropole {
    text-align: center;
    color: #fff;
    font-size: 34px;
  }
}

/* BEGIN HEADER */
.header {
  width: 100%;
  background-color: #242424;
}

/* navigation */
.header-navigation {
  width: 100%;
  background: #000000;
  border-bottom: 1px solid #ffffff64;
}

.header-navigation__container {
  margin: 0 auto;
  width: 1200px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.menu__wrapper {
  width: 100%;
  display: flex;
  align-items: center;
}

/* hamburger */
.menu {
  display: flex;
  align-items: center;
}

.menu__icon {
  display: none;
  width: 45px;
  height: 35px;
  position: relative;
  cursor: pointer;
}

.menu__icon span {
  display: block;
  position: absolute;
  height: 5px;
  width: 100%;
  background: #ffffff;
  border-radius: 9px;
  opacity: 1;
  left: 0;
  transform: rotate(0deg);
  transition: 0.25s ease-in-out;
}

.menu__icon span:nth-child(1) {
  top: 0px;
}

.menu__icon span:nth-child(2),
.menu__icon span:nth-child(3) {
  top: 11px;
}

.menu__icon span:nth-child(4) {
  top: 22px;
}

.menu.menu_state_open .menu__icon span:nth-child(1) {
  top: 18px;
  width: 0%;
  left: 50%;
}

.menu.menu_state_open .menu__icon span:nth-child(2) {
  transform: rotate(45deg);
}

.menu.menu_state_open .menu__icon span:nth-child(3) {
  transform: rotate(-45deg);
}

.menu.menu_state_open .menu__icon span:nth-child(4) {
  top: 18px;
  width: 0%;
  left: 50%;
}

.menu.menu_state_open .header-navigation__menu-nav,
.menu.menu_state_open .header-navigation__social-networks,
.menu.menu_state_open .header-navigation__lang {
  display: flex;
}

/* end hamburger */
.header-navigation__menu-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.header-navigation__item {
  margin: 0 18px;
  font-size: 18px;
  font-family: "OpenSans";
  line-height: 1.556;
  padding: 20px 0;
}

.header-navigation__link {
  color: #ffffff;
  padding: 19px 0;
  transition: 0.1s;
}

/* .header-navigation__link--hover{
    border-bottom: 3px solid #ffffff
} */
.header-navigation__link:hover {
  border-bottom: 3px solid #ffffff;
}

.header-navigation__social-networks {
  display: flex;
  margin: 0 40px 0 67px;
}

.social-networks__item {
  margin: 0 5px;
}

.social-networks__link {
  padding: 6px 8px;
  background: #ffffff50;
  border-radius: 50%;
}

.social-networks__link i {
  width: 19px;
  height: 11px;
  color: #ffffff;
  text-align: center;
  transition: 0.3s;
}

.social-networks__item:hover .social-networks__link {
  background: #f6ba3a;
}

.social-networks__item:hover .social-networks__link i {
  color: #000000;
}

.header-navigation__lang {
  display: flex;
}

.lang__item {
  margin: 0 7px;
}

.lang__link {
  padding: 20px 0;
  transition: 0.1s;
}

.lang__link-span {
  font-size: 18px;
  font-family: "OpenSans";
  color: rgb(255, 255, 255);
  line-height: 1.556;
}

.lang__link:hover {
  border-bottom: 3px solid #ffffff;
}

/* END HEADER */
/* BEGIN CONTENT */
.content {
  width: 100%;
  display: flex;
  flex-direction: column;
  background: #ffffff;
}

.brands__box--grey {
  background: #f8f8f8;
}

.content__wrapper {
  display: flex;
  flex-direction: column;
  width: 1200px;
  margin: 0 auto;
}

.content__cookies {
  display: flex;
  margin: 50px 0 42px 0;
  align-items: center;
}

.main-page__cookies {
  font-size: 18px;
  font-family: "OpenSans";
  color: rgb(36, 36, 36);
  line-height: 1.556;
}

.main-page__cookies--grey {
  color: #9f9f9f;
}

.span-cookies {
  margin: 0 12px;
  display: flex;
}

.content__block {
  width: 100%;
  display: flex;
  margin-bottom: 50px;
}

.content__image {
  width: 47%;
  /*max-height: 450px;*/
  overflow: hidden;
}

.content__box-shop {
  width: 53%;
  display: flex;
  background: #f8f8f8;
  flex-wrap: wrap;
}

.content__titll {
  font-size: 38px;
  font-family: "OpenSans";
  color: rgb(36, 36, 36);
  font-weight: bold;
  line-height: 1.105;
  margin: 44px 0 48px 42px;
}

.content__list {
  width: 93%;
  margin: 80px 0px 40px 42px;
  display: flex;
  flex-wrap: wrap;
}

.content__item-contact {
  width: 49%;
  margin: 0 0px 54px 0;
}

.item-contact__link {
  display: flex;
}

.content__wrapper-link {
  margin-left: 20px;
}

.content__title {
  font-size: 18px;
  font-family: "OpenSans";
  color: rgb(36, 36, 36);
  font-weight: bold;
  line-height: 2.333;
}

.content__text {
  font-size: 18px;
  font-family: "OpenSans";
  color: rgb(36, 36, 36);
  line-height: 1.556;
}

.content__text-shop {
  font-size: 18px;
  font-family: "OpenSans";
  color: rgb(36, 36, 36);
  line-height: 1.556;
  margin-bottom: 34px;
}

.shop-navigation {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  background: #f8f8f8;
  margin-bottom: 100px;
}

.store-block__photo {
  margin: 30px 0 60px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.store-block__photo a {
  margin: 5px;
  width: 30.3333%;
}

.photo {
  width: 100%;
  filter: grayscale(1);
  transition: 0.3s;
  /*height: 160px;*/
}

.photo:hover {
  filter: grayscale(0);
}

.content-floof__image {
  width: 100%;
  max-height: 461px;
}

.shop-navigation__title {
  font-size: 38px;
  font-family: "OpenSans";
  color: rgba(36, 36, 36, 0.549);
  font-weight: bold;
  line-height: 1.105;
  padding: 150px 0;
  align-items: center;
}

/* shops navigation */
.shop-navigation {
  position: relative;
}

.svg-floof {
  position: absolute;
  top: 0px;
  left: 0;
  height: 100%;
  width: 100%;
}

.trading-place {
  opacity: 0.1;
  transition: 0.3s;
  fill: #9f9f9f;
}

.trading-place:hover {
  opacity: 0.65;
  fill: white;
}

.trading-place--rent {
  fill: #9f9f9f;
  opacity: 0.1;
}

.trading-place--rent:hover {
  opacity: 0.5;
  fill: #f9be3e;
}

.trading-place__rent {
  opacity: 0.75;
  transition: 0.3s;
  fill: white;
}

.content-floof__title {
  font-size: 38px;
  font-family: "OpenSans";
  color: rgb(36, 36, 36);
  font-weight: bold;
  line-height: 1.105;
  margin-bottom: 40px;
}

.active {
  fill: white;
  opacity: 0.6;
}

/* END CONTENT */
/* BEGIN FOOTER */
.footer {
  background: #000000;
  width: 100%;
}

.footer-navigation {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 30px 0 30px 0;
  background: #2a2a2a;
}

.footer__nav {
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-nav__item {
  margin: 0 0 0 26px;
}

.footer--margin-botton {
  margin-bottom: 36px;
}

.footer-bottom__text {
  font-size: 18px;
  font-family: "OpenSans";
  color: rgb(255, 255, 255);
  line-height: 1.111;
  text-align: center;
  padding: 25px;
}

.footer-nav__link {
  font-size: 18px;
  font-family: "OpenSans";
  color: rgb(255, 255, 255);
  line-height: 1.556;
}

.footer-nav__link:hover {
  color: rgb(236, 227, 227);
}

.footer-bottom__link {
  font-size: 16px;
  font-family: "OpenSans";
  color: rgb(255, 255, 255);
  line-height: 1.111;
}

.footer-bottom__text--right {
  text-align: right;
  padding: 5px 15px 5px 0;
  font-size: 16px;
}

/* END FOOTER */
.pavilion__hover {
  width: 106px;
  height: 45px;
  padding: 5px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
  border: 1px solid #f2b532;
  position: absolute;
  border-radius: 5px;
  background-color: #fff;
  text-align: center;
}

.pavilion__hover img {
  width: 80%;
  height: 100%;
}

/* MODAL */
.one-pavilion__hover {
  top: 83px;
  left: 132px;
  display: none;
}

.two-pavilion__hover {
  top: 82px;
  left: 162px;
  display: none;
}

.pavilion__hover::before {
  position: absolute;
  content: url("../images/triangle.png");
  top: 38px;
  left: 2px;
}

.three-pavilion__hover {
  top: 69px;
  left: 192px;
  display: none;
}

.four-pavilion__hover {
  top: 69px;
  left: 245px;
  display: none;
}

.five-pavilion__hover {
  top: 69px;
  left: 289px;
  display: none;
}

.six-pavilion__hover {
  top: 69px;
  left: 332px;
  display: none;
}

.seven-pavilion__hover {
  top: 69px;
  left: 377px;
  display: none;
}

.eight-pavilion__hover {
  top: 69px;
  left: 421px;
  display: none;
}

.nine-pavilion__hover {
  top: 69px;
  left: 463px;
  display: none;
}

.ten-pavilion__hover {
  top: 118px;
  left: 451px;
  display: none;
}

.eleven-pavilion__hover {
  top: 69px;
  left: 509px;
  display: none;
}

.twelve-pavilion__hover {
  top: 69px;
  left: 558px;
  display: none;
}

.thirteen-pavilion__hover {
  top: 69px;
  left: 602px;
  display: none;
}

.fourteen-pavilion__hover {
  top: 69px;
  left: 639px;
  display: none;
}

.fifteen-pavilion__hover {
  top: 201px;
  left: 63px;
  display: none;
}

.sixteen-pavilion__hover {
  top: 140px;
  left: 50px;
  display: none;
}

.seventeen-pavilion__hover {
  top: 136px;
  left: 93px;
  display: none;
}

.eighteen-pavilion__hover {
  top: 100px;
  left: 103px;
  display: none;
}

.eighteen-pavilion-new__hover {
  top: 155px;
  left: 238px;
  display: none;
}

.nineteen-pavilion__hover {
  top: 127px;
  left: 141px;
  display: none;
}

.twenty-pavilion__hover {
  top: 148px;
  left: 168px;
  display: none;
}

.twenty_one-pavilion__hover {
  top: 204px;
  left: 201px;
  display: none;
}

.twenty_two-pavilion__hover {
  top: 173px;
  left: 256px;
  display: none;
}

.twenty_three-pavilion__hover {
  top: 173px;
  left: 326px;
  display: none;
}

.twenty_four-pavilion__hover {
  top: 203px;
  left: 290px;
  display: none;
}

.twenty_five-pavilion__hover {
  top: 203px;
  left: 334px;
  display: none;
}

.twenty_six-pavilion__hover {
  top: 203px;
  left: 398px;
  display: none;
}

.twenty_seven-pavilion__hover {
  top: 203px;
  left: 486px;
  display: none;
}

.twenty_eight-pavilion__hover {
  top: 203px;
  left: 552px;
  display: none;
}

.twenty_nine-pavilion__hover {
  top: 203px;
  left: 599px;
  display: none;
}

.thirty-pavilion__hover--new {
  top: 159px;
  left: 635px;
  display: none;
}

.thirty-pavilion__hover {
  top: 69px;
  left: 754px;
  display: none;
}

.thirty_one-pavilion__hover {
  top: 69px;
  left: 795px;
  display: none;
}

.thirty_two-pavilion__hover {
  top: 69px;
  left: 840px;
  display: none;
}

.thirty_three-pavilion__hover {
  top: 69px;
  left: 881px;
  display: none;
}

.thirty_four-pavilion__hover {
  top: 69px;
  left: 926px;
  display: none;
}

.thirty_five-pavilion__hover {
  top: 69px;
  left: 970px;
  display: none;
}

.thirty_six-pavilion__hover {
  top: 69px;
  left: 1014px;
  display: none;
}

.thirty_seven-pavilion__hover {
  top: 69px;
  left: 1057px;
  display: none;
}

.thirty_eight-pavilion__hover {
  top: 69px;
  left: 1016px;
  display: none;
}

.thirty_eight-pavilion__hover::before {
  left: 81px;
}

.thirty_nine-pavilion__hover {
  top: 69px;
  left: 1057px;
  display: none;
}

.thirty_nine-pavilion__hover::before {
  left: 81px;
}

.forty-pavilion__hover {
  top: 136px;
  left: 974px;
  display: none;
}

.forty_one-pavilion__hover {
  top: 172px;
  left: 487px;
  display: none;
}

.forty_two-pavilion__hover {
  top: 172px;
  left: 388px;

  display: none;
}
.forty_four-pavilion__hover {
  top: 145px;
  left: 290px;

  display: none;
}
.forty-pavilion__hover::before {
  left: 81px;
}
.forty_five-pavilion__hover {
  top: 172px;
  left: 437px;
  display: none;
}

.two_one-pavilion__hover {
  top: 81px;
  left: 353px;
  display: none;
}

.two_two-pavilion__hover {
  top: 67px;
  left: 472px;
  display: none;
}

.two_three-pavilion__hover {
  top: 67px;
  left: 519px;
  display: none;
}

.two_four-pavilion__hover {
  top: 67px;
  left: 562px;
  display: none;
}

.two_five-pavilion__hover {
  top: 67px;
  left: 601px;
  display: none;
}

.two_six-pavilion__hover {
  top: 67px;
  left: 649px;
  display: none;
}

.two_seven-pavilion__hover {
  top: 67px;
  left: 685px;
  display: none;
}

.two_eight-pavilion__hover {
  top: 67px;
  left: 712px;
  display: none;
}

.two_nine-pavilion__hover {
  top: 67px;
  left: 742px;
  display: none;
}

.two_ten-pavilion__hover {
  top: 67px;
  left: 777px;
  display: none;
}

.two_eleven-pavilion__hover {
  top: 139px;
  left: 453px;
  display: none;
}

.two_twelve-pavilion__hover {
  top: 155px;
  left: 499px;
  display: none;
}

.two_thirteen-pavilion__hover {
  top: 155px;
  left: 537px;
  display: none;
}

.two_fourteen-pavilion__hover {
  top: 137px;
  left: 566px;
  display: none;
}

.two_fifteen-pavilion__hover {
  top: 183px;
  left: 602px;
  display: none;
}

.two_sixteen-pavilion__hover {
  top: 183px;
  left: 727px;
  display: none;
}

.two_seventeen-pavilion__hover {
  top: 199px;
  left: 562px;
  display: none;
}

.two_eighteen-pavilion__hover {
  top: 199px;
  left: 648px;
  display: none;
}

.two_nineteen-pavilion__hover {
  top: 271px;
  left: 521px;
  display: none;
}

.two_twenty-pavilion__hover {
  top: 272px;
  left: 636px;
  display: none;
}

.two_twenty-one-pavilion__hover {
  top: 140px;
  left: 567px;
  display: none;
}

.two_new_eighteen-pavilion__hover {
  top: 182px;
  left: 602px;
  display: none;
}

.three_one-pavilion__hover {
  top: 84px;
  left: 360px;
  display: none;
}

.three_two-pavilion__hover {
  top: 68px;
  left: 516px;
  display: none;
}

.three_three-pavilion__hover {
  top: 68px;
  left: 557px;
  display: none;
}

.three_four-pavilion__hover {
  top: 68px;
  left: 604px;
  display: none;
}

.three_five-pavilion__hover {
  top: 202px;
  left: 514px;
  display: none;
}

.three_six-pavilion__hover {
  top: 202px;
  left: 558px;
  display: none;
}

.three_seven-pavilion__hover {
  top: 163px;
  left: 526px;
  display: none;
}

.three_eight-pavilion__hover {
  top: 145px;
  left: 568px;
  display: none;
}

.three_nine-pavilion__hover {
  top: 69px;
  left: 691px;
  display: none;
}

.three_ten-pavilion__hover {
  top: 69px;
  left: 735px;
  display: none;
}

.three_eleven-pavilion__hover {
  top: 69px;
  left: 777px;
  display: none;
}

/* end MODAL */

.hover_pavilion {
  opacity: 0.65;
  fill: white;
}

.block__legends-item {
  filter: grayscale(100%);
  opacity: 0.6;
}

.block__legends-item:hover {
  filter: none;
  opacity: 1;
}

.shop-navigation--orange {
  background-color: #f2b532;
}

.block__legends {
  display: none;
}

.block__legends--active {
  display: block;
}

.navigation-info__img {
  position: absolute;
  bottom: 10%;
  right: 4%;
  width: 34%;
}

.shop-navigation--two .navigation-info__img {
  position: absolute;
  bottom: 18%;
  right: 6%;
  width: 34%;
}

/* RENT */
.content__list--rent {
  width: 54%;
  margin: 0px 0px 0px 42px;
  display: flex;
  flex-direction: column;
}

.content__item-contact--rent {
  width: initial;
}

.form__contacts--rent {
  display: flex;
  flex-direction: column;
  width: 34%;
  align-items: flex-end;
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="message"] {
  width: 100%;
  height: 50px;
  font-size: 14px;
  background-color: transparent;
  border: 1px solid #050505;
  padding: 5px;
  margin: 10px 0;
}

input[type="message"] {
  word-break: break-word;
}

input[type="submit"] {
  width: 151px;
  height: 47px;
  background: #f4b835;
  cursor: pointer;
  transition: 0.3s;
  margin: 20px 0;
  border: #f4b835 1px solid;
  border-radius: 10px;
}

input[type="submit"]:hover {
  background: #ffffff50;
  border: 2px solid #f2b532;
}

input[value="Отправить"] {
  font-size: 16px;
  font-family: "OpenSans";
  color: rgb(36, 36, 36);
  font-weight: bold;
  line-height: 2.333;
  transition: 0.3s;
}

input[type="text"]::-webkit-input-placeholder {
  color: #050505;
}

input[type="email"]::-webkit-input-placeholder {
  color: #050505;
}

input[type="tel"]::-webkit-input-placeholder {
  color: #050505;
}

input[type="message"]::-webkit-input-placeholder {
  color: #050505;
}

/* swipebox */
#swipebox-overlay {
  background: rgba(0, 0, 0, 0.8);
}

#swipebox-slider .slide img {
  max-height: 80%;
  max-width: 80%;
}

/* @MEDIA */

@media (max-width: 1124px) {
  .lang__link-span {
    font-size: 15px;
  }

  .header-navigation__item {
    font-size: 15px;
  }

  .header-navigation__social-networks {
    margin: 0px 25px 0 19px;
  }

  .header-navigation__social-networks {
    display: flex;
    margin: 0px 25px 0 19px;
  }

  .header-slider__text {
    font-size: 22px;
  }
}

@media (max-width: 1200px) {
  .header-navigation__container {
    width: 90%;
  }

  .container {
    width: 90%;
  }

  .footer__nav {
    display: flex;
    width: 100%;
    flex-wrap: wrap;
  }

  .content__wrapper {
    width: 90%;
  }

  .content__list--rent {
    width: 100%;
  }

  .form__contacts--rent {
    display: flex;
    flex-direction: inherit;
    align-items: flex-end;
    flex-wrap: wrap;
    width: 100%;
  }
}

@media screen and (max-width: 960px) {
  .header-navigation__item {
    margin: 0 16px;
  }

  .content__titll {
    margin: 34px 0 38px 26px;
  }

  .content__list {
    width: 100%;
    margin: 80px 0px 0px 26px;
  }

  .content__text {
    font-size: 15px;
  }

  .footer__nav {
    justify-content: center;
  }

  .content__title {
    font-size: 16px;
  }
}

@media screen and (max-width: 780px) {
  .header-navigation__logo-image {
    margin: 10px 0;
  }

  .shop-cart-image {
    width: 100%;
    height: 60vw;
    background-size: cover !important;
  }

  .menu {
    align-items: center;
  }

  .menu__icon {
    display: inline-block;
  }

  .menu__wrapper {
    display: block;
    position: absolute;
    background-color: rgba(0, 0, 0, 0.7);
    margin-top: 73px;
    z-index: 1000;
    width: 100%;
    right: 0;
    top: 0;
  }

  .menu .header-navigation__menu-nav,
  .menu .header-navigation__social-networks,
  .menu .header-navigation__lang {
    position: relative;
    display: none;
    background-color: rgba(0, 0, 0, 0.3);
    z-index: 1000;
  }

  .header-navigation__item {
    font-size: 20px;
    font-weight: bold;
  }

  .lang__link-span {
    font-size: 20px;
    font-weight: bold;
  }

  .header-navigation__item {
    justify-content: center;
    display: flex;
    margin: 0;
    padding: 0;
    border-bottom: 1px solid #ffffff64;
    width: 100%;
  }

  .header-navigation__social-networks {
    width: 100%;
    margin: 0;
    justify-content: center;
    padding: 10px 0;
    border-bottom: 1px solid #ffffff64;
  }

  .social-networks__item {
    margin: 5px 20px;
    display: flex;
    justify-content: center;
  }

  .social-networks__link i {
    color: #ffffff;
  }

  .menu .header-navigation__lang {
    margin: 0;
    justify-content: center;
  }

  .lang__item {
    padding: 10px;
  }

  .lang__link {
    padding: 10px;
  }

  .header-navigation__menu-nav .header-navigation__item {
    margin-left: 0;
  }

  .nav .item {
    display: block;
    padding: 10px 0;
    text-align: center;
    color: #ffffff;
  }

  .content__block {
    flex-direction: column;
  }

  .content__image {
    width: 100%;
    height: 56%;
  }

  .content__box-shop {
    width: 100%;
  }

  .footer__nav {
    align-items: center;
    justify-content: center;
  }

  .footer-nav__item {
    margin: 0 0 10px 26px;
  }

  .page-title-image {
    width: 60px;
    height: 30px;
  }

  .page-title {
    margin: 0 20px;
    font-size: 32px;
    text-align: center;
  }

  .triangle {
    left: 47.5%;
  }

  .page-title__wrapper {
    margin: 50px 0 50px 0;
  }
}

@media (min-width: 320px) and (max-width: 680px) {
  .main-page__cookies {
    font-size: 15px;
  }

  .page-title {
    font-size: 20px;
  }

  .shop-navigation--two .navigation-info__img {
    position: absolute;
    bottom: 25%;
    right: 2%;
    width: 30%;
  }

  .page-title__wrapper-wrapper {
    margin-bottom: 10px;
  }

  .page-title__wrapper {
    margin: 0px 0 25px 0;
  }

  .triangle {
    width: 16px;
    height: 8px;
  }

  .content__image {
    height: 250px;
  }

  .content__titll {
    font-size: 32px;
    width: 90%;
  }

  .content__title {
    font-size: 15px;
  }

  .content__item-contact {
    width: 100%;
    margin: 0 0px 25px 0;
  }

  .content__text {
    font-size: 15px;
  }

  .content__text-shop {
    font-size: 15px;
    margin-bottom: 25px;
    text-align: justify;
  }

  .content__list {
    margin: 25px 0px 20px 25px;
    justify-content: center;
    width: 92%;
  }

  .content__list--rent {
    margin: 0px 0px 20px 25px;
    justify-content: center;
    width: 92%;
  }

  .content__cookies {
    align-items: inherit;
  }

  .photo {
    width: 100%;
    /*height: 100px;*/
  }

  .store-block__photo a {
    margin: 5px 5px;
    width: 46%;
  }

  .footer-nav__item {
    margin: 0px 13px 10px 13px;
  }

  .footer-bottom__text {
    font-size: 13px;
    padding: 12px;
  }

  .page-title__wrapper--top {
    margin-top: 130px;
  }
}

.two_new_twenty-pavilion__hover {
  top: 70px;
  left: 830px;
  display: none;
}
