@import url(/assets/fonts/Avenir/stylesheet.css);
* {
  box-sizing: border-box;
  outline: none;
}
html {
  display: flex;
  flex-direction: column;
  min-height: 100%;
}
body {
  margin: 0;
  padding: 0;
  display: flex;
  flex: auto;
  flex-direction: column;
  font-family: 'Avenir Next Cyr', sans-serif;
  background: #f1e8dd url(/assets/img/dots-left.png) repeat-y left top / 900px auto;
  color: #000;
  font-size: 16px;
  letter-spacing: 0.05em;
}
img {
  border: 0;
}
h1,
.h1 {
  font-size: 40px;
  font-weight: normal;
  margin: 0 0 15px;
  padding: 0;
}
h2,
.h2 {
  font-size: 30px;
  font-weight: normal;
  margin: 0 0 15px;
  padding: 0;
}
h3,
.h3 {
  font-size: 20px;
  font-weight: normal;
  margin: 0 0 15px;
  padding: 0;
}
input,
textarea,
a,
button {
  outline: none;
}
a {
  color: blue;
  transition: all 0.3s ease;
}
a:hover {
  color: blue;
  text-decoration: none;
}
.dn {
  display: none;
}
.clr {
  clear: both;
}
.col {
  vertical-align: top;
  display: inline-block;
}
main {
  width: 100%;
  overflow: hidden;
  flex: auto;
  background: url(/assets/img/dots-right.png) repeat-y right top / 900px auto;
}
.footer {
  background: #fff;
}
.footer__row {
  display: flex;
  justify-content: space-between;
}
.footer__col {
  background: #f1f1f1;
  width: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.footer__content {
  padding-bottom: 15px;
  flex: 1;
  min-height: 370px;
  padding-top: 55px;
  display: flex;
  padding-right: 70px;
  align-items: stretch;
}
.footer__text {
  width: 220px;
  font-size: 18px;
  line-height: 24px;
}
.footer .contacts {
  flex: 1;
}
.copyright {
  background: #f6f6f6;
  color: rgba(0, 0, 0, 0.6);
  font-size: 12px;
  line-height: 120%;
  height: 90px;
  display: flex;
  align-items: center;
  padding: 0 30px;
}
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
textarea:-webkit-autofill,
textarea:-webkit-autofill:hover,
textarea:-webkit-autofill:focus,
select:-webkit-autofill,
select:-webkit-autofill:hover,
select:-webkit-autofill:focus {
  -webkit-text-fill-color: #000;
  -webkit-box-shadow: 0 0 0 1000px #f5f5f5 inset;
}
.logo {
  display: inline-block;
  background: #fff url(/assets/img/logo.svg) no-repeat center / 267px auto;
  width: 321px;
  height: 321px;
  border-radius: 50%;
}
.logo--simple {
  width: 151px;
  height: 151px;
  background-image: url(/assets/img/logo-simple.svg);
  background-size: 135px auto;
}
.logo--big {
  background-size: 223px auto;
  width: 268px;
  height: 268px;
}
.logo--mb {
  margin-bottom: -60px;
}
.preload {
  font-size: 54px;
  line-height: 120%;
  font-weight: bold;
  text-transform: uppercase;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.preload .logo {
  margin-bottom: 30px;
}
header {
  display: flex;
  justify-content: space-between;
  padding: 26px 30px;
  align-items: flex-start;
  position: relative;
  z-index: 5;
}
header > div {
  display: flex;
}
.header__content {
  flex: 1;
  flex-direction: column;
}
.header__row {
  display: flex;
  align-items: center;
  width: 100%;
  justify-content: space-between;
}
.header__price {
  display: flex;
  align-items: center;
  margin-top: 25px;
  font-size: 18px;
  font-weight: bold;
  text-transform: uppercase;
}
.header__price .btn {
  margin-left: 35px;
}
.header--cart {
  background: #fff;
  box-shadow: 0 0 29px rgba(168, 168, 168, 0.9);
}
.header--cart .logo {
  width: 93px;
  height: 93px;
  border: 5px solid #000;
  background-size: 80px;
  margin-right: 45px;
}
.header--cart .btn--white {
  background: #f4f4f4;
}
.header--cart .cabinet {
  margin: 0;
}
.header--cart .menu {
  display: none;
}
.under {
  position: relative;
  color: #000;
  text-decoration: none;
}
.under:after {
  width: 100%;
  content: "";
  position: absolute;
  top: 150%;
  height: 2px;
  background: transparent;
  left: 0;
  transition: all 0.3s ease;
}
.under:hover {
  text-decoration: none;
  color: #000;
}
.under:hover:after {
  background: #000;
}
.under--small:after {
  top: 110%;
}
.under--under:after {
  background: #000;
}
.under--under:hover:after {
  background: transparent;
}
.menu {
  display: flex;
  margin-top: 24px;
  margin-left: 32px;
  align-items: flex-start;
}
.menu-item {
  line-height: 120%;
  font-family: 'Avenir Next Cyr', sans-serif;
  font-size: 17px;
  font-weight: bold;
  text-transform: uppercase;
  color: #000;
  text-decoration: none;
  display: flex;
  align-items: center;
  margin: 0 20px;
  height: 45px;
  border-bottom: 2px solid transparent;
}
.menu-item.active {
  background: #fff;
  padding: 0 25px;
  border-radius: 5px;
  border-bottom: none;
  margin: 0;
}
.menu-item:hover {
  color: #000;
  text-decoration: none;
  border-bottom-color: #000;
}
.menu--footer {
  flex-direction: column;
  margin: -5px 0 0 0;
  padding: 0 58px 40px;
  width: 315px;
  justify-content: space-between;
  height: 100%;
}
.menu--footer .menu-item {
  font-size: 19px;
  padding: 0 10px;
  border-radius: 8px;
  height: 32px;
  border: 2px solid transparent;
  margin: 0 0 5px;
}
.menu--footer .menu-item.active,
.menu--footer .menu-item:hover {
  padding: 0 10px;
  border-color: #000;
}
.follow {
  pointer-events: all!important;
  z-index: 2;
}
.back {
  line-height: 120%;
  font-size: 17px;
  font-weight: bold;
  text-transform: uppercase;
  color: #000;
  text-decoration: none;
}
.back:hover {
  text-decoration: none;
  color: #000;
}
.cabinet {
  display: flex;
  align-items: center;
  margin-top: 24px;
  font-size: 12px;
  line-height: 120%;
  font-weight: bold;
  text-transform: uppercase;
}
.cabinet a {
  color: #000;
  text-decoration: none;
}
.cabinet a:hover {
  text-decoration: none;
}
.cabinet .btn {
  margin-left: 30px;
}
.btn {
  display: inline-block;
  height: 44px;
  border: none;
  font-family: 'Avenir Next Cyr', sans-serif;
  font-weight: bold;
  font-size: 12px;
  line-height: 12px;
  text-transform: uppercase;
  padding: 0 30px;
  cursor: pointer;
  border-radius: 6px;
  color: #000;
  background: #fbb900;
  text-decoration: none;
  transition: all 0.3s ease;
  /*&.swiper-button-next, &.swiper-button-prev{
    &:hover{
      background-color: @gray4;
    }
  }*/
  /*&--hover{
    &:hover{
      background: @yellow4; color: @black;
    }
  }*/
}
.btn > span {
  display: flex;
  align-items: center;
  height: 100%;
  text-align: center;
  justify-content: center;
}
.btn:hover {
  color: #fff;
  background: #000;
  text-decoration: none;
}
.btn--white {
  background: #fff;
  color: #000;
}
.btn--white:hover {
  background: #fbb900;
  color: #000;
}
.btn--black {
  background: #000;
  color: #fff;
}
.btn--black:hover {
  background: #6f6f6f;
  color: #fff;
}
.btn--gray {
  background: #dbdbdb;
  color: #000;
}
.btn--gray:hover {
  background: #fbb900;
  color: #000;
}
.btn .icon {
  margin-right: 15px;
  vertical-align: middle;
}
.btn--fixed {
  min-width: 200px;
}
.btn--fixed-2 {
  min-width: 130px;
}
.btn--big {
  height: 60px;
  font-size: 16px;
  line-height: 16px;
}
.btn--big.btn--fixed {
  min-width: 270px;
}
.btn--big.btn--fixed-2 {
  min-width: 200px;
}
.btn--small {
  height: 32px;
  font-size: 8px;
  line-height: 8px;
}
.btn--arrow {
  font-size: 24px;
  line-height: 26px;
  width: 50px;
}
.btn--border {
  border: 1px solid #000;
  background: #fff;
}
.btn--border:hover {
  background: #fbb900;
  color: #000;
  border-color: #fbb900;
}
.btn--nowrap {
  white-space: nowrap;
}
.btn--special-1 {
  padding-left: 7px;
}
.btn--special-1 .icon {
  margin-right: 10px;
}
.btn--icon .icon {
  margin-right: 0;
}
.btn--cart {
  padding: 0 15px;
}
.btn--cart > span {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-weight: 500;
}
.btn--cart > span b {
  font-weight: bold;
}
.btn--cart > span span {
  display: inline-block;
  margin-top: 3px;
}
.btn--cart:hover svg path {
  fill: #fff;
}
.icon {
  display: inline-block;
  background: no-repeat center / contain;
  line-height: 0;
}
.icon--cart {
  width: 22px;
  height: 22px;
}
.icon--wa {
  background-image: url(/assets/img/icon-wa.svg);
  width: 32px;
  height: 32px;
}
.icon--pic {
  width: 22px;
  height: 22px;
}
.icon img,
.icon svg {
  width: 100%;
  height: 100%;
}
.icon img path,
.icon svg path,
.icon img polygon,
.icon svg polygon {
  transition: all 0.3s ease;
}
b,
strong {
  font-weight: 600;
}
.contacts {
  display: flex;
  flex-wrap: wrap;
}
.contacts--big {
  margin: 0 0 0 30px;
  border-radius: 22px 0 0 0;
  background: #fff4e7;
  padding: 55px 65px 90px;
}
.contacts--big .contact {
  width: 330px;
  margin-bottom: 0;
}
.contacts--big .contact__title {
  font-size: 33px;
  line-height: 120%;
  margin-bottom: 40px;
}
.contacts--big .contact__text {
  font-size: 17px;
  line-height: 150%;
}
.contact {
  width: 320px;
  margin-bottom: 55px;
  padding-right: 70px;
}
.contact__title {
  font-size: 16px;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 15px;
}
.contact__text {
  font-size: 13px;
  line-height: 19px;
  letter-spacing: 0.05em;
  font-family: 'Arial', sans-serif;
}
.social {
  display: flex;
  margin-top: 30px;
}
.social-item {
  display: inline-block;
  width: 32px;
  height: 32px;
  background: no-repeat center / contain;
  border-radius: 5px;
  margin-right: 10px;
  line-height: 0;
}
.social-item--fb {
  background-image: url(/assets/img/icon-fb.svg);
}
.social-item--inst {
  background-image: url(/assets/img/icon-inst.svg);
}
.social-item--yt {
  background-image: url(/assets/img/icon-yt.svg);
}
.social-item--wa {
  background-image: url(/assets/img/icon-wa.svg);
}
.social-item img,
.social-item svg {
  width: 100%;
}
.social-item img path,
.social-item svg path {
  transition: all 0.3s ease;
}
.social-item img path.st0,
.social-item svg path.st0 {
  fill: #000;
}
.social-item img path.st1,
.social-item svg path.st1 {
  fill: #fff;
}
.social-item:hover svg path.st0 {
  fill: #fbb900;
}
.social-item:hover svg path.st1 {
  fill: #000;
}
.alert {
  position: fixed;
  bottom: 45px;
  right: 130px;
  background: #fbb900;
  border-radius: 22px;
  padding: 35px 40px;
  width: 350px;
  font-size: 12px;
  line-height: 17px;
  font-weight: 500;
  z-index: 99;
  letter-spacing: 0.05em;
}
.alert__title {
  text-transform: uppercase;
  font-weight: bold;
  margin-bottom: 20px;
}
.alert__text {
  font-family: 'Arial', sans-serif;
}
.alert__btns {
  margin-top: 35px;
  display: flex;
}
.alert__btns .btn {
  margin-right: 12px;
}
.alert:after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translate(-50%, 50%);
  border-radius: 50%;
  background: #fbb900;
  width: 26px;
  height: 26px;
}
.content {
  padding: 0 65px;
}
.page {
  position: relative;
}
.page--white {
  background: #fff;
}
.page--black {
  background: #000;
}
.page--catalog {
  margin-bottom: 110px;
}
.page--catalog .title {
  text-align: center;
  width: 1000px;
  margin: 0 auto;
}
.page--1 {
  padding: 70px 60px 0;
}
.page--1 .pic {
  width: 990px;
  height: 740px;
  position: absolute;
  top: 0;
  right: 0;
}
.page--1 .block {
  width: 500px;
  margin-left: 350px;
  margin-top: -30px;
}
.page--2 {
  padding: 60px 90px 0;
  min-height: 1300px;
}
.page--2 .title {
  margin-left: 225px;
  margin-bottom: 80px;
  position: relative;
  z-index: 2;
}
.page--2 .block {
  width: 675px;
  margin-left: auto;
  margin-top: -110px;
}
.page--2 .slider {
  width: 1100px;
  position: absolute;
  left: 0;
  top: 560px;
}
.page--2 .sun {
  position: absolute;
  left: 110px;
  top: -200px;
}
.page--3 {
  padding: 100px 0 0;
}
.page--3 .title {
  text-align: center;
}
.page--3 .btns {
  text-align: center;
  margin-top: 50px;
}
.page--3 .sun {
  position: absolute;
  left: 50%;
  bottom: -1000px;
  margin-left: -750px;
}
.page--3 .block {
  text-align: center;
  position: absolute;
  top: 8%;
  left: 50%;
  transform: translateX(-50%);
}
.page--3 .block .title {
  font-size: 79px;
}
.page--3 .block .btns {
  margin-top: 70px;
}
.page--4 {
  padding: 70px 0;
}
.page--4 .content {
  padding: 0 100px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.page--4 .slider {
  margin-top: 55px;
}
.page--5 {
  height: 930px;
  background: url(/assets/img/pic/03.jpg) no-repeat center / cover;
  display: flex;
  justify-content: center;
  align-items: center;
}
.page--5 .block {
  width: 650px;
}
.page--5-2 {
  background-image: url(/assets/img/pic/03-2.jpg);
}
.page--5-3 {
  background-image: url(/assets/img/pic/03-3.jpg);
}
.page--6 {
  padding: 60px 100px 0;
}
.page--6 .title {
  margin-bottom: 50px;
}
.page--6 .pic {
  width: 750px;
  position: absolute;
  top: -60px;
  right: 130px;
}
.page--6 .block {
  width: 520px;
  margin-left: 345px;
}
.page--6 .text {
  width: 600px;
  margin-bottom: 90px;
  margin-left: 110px;
}
.page--6 .badge {
  position: absolute;
  left: 375px;
  bottom: -90px;
}
.page--7 {
  padding-top: 200px;
}
.page--7 .title {
  margin-left: 90px;
  position: relative;
  z-index: 2;
}
.page--7 .slider {
  margin: 200px auto 0;
  position: relative;
}
.page--7 .pic {
  width: 1600px;
  margin: 120px auto 0;
  position: relative;
}
.page--7 .pic img {
  position: relative;
}
.page--7 .sun {
  position: absolute;
  top: -160px;
  left: 800px;
}
.page--8 {
  padding-top: 150px;
}
.page--8 .title {
  margin-left: 100px;
  margin-bottom: 100px;
}
.page--8 .text {
  width: 550px;
  margin-left: 200px;
}
.page--8 .text--2 {
  width: 660px;
  margin-left: 620px;
  margin-top: 150px;
}
.page--8 .pic {
  position: absolute;
  top: 480px;
  right: 0;
  width: 860px;
}
.page--8 .badge {
  position: absolute;
  left: -75px;
  bottom: -60px;
}
.page--9 {
  padding-top: 130px;
  padding-left: 880px;
}
.page--9 .slider {
  width: 990px;
  position: absolute;
  left: 0;
  top: 80px;
}
.page--9 .title {
  margin-left: 230px;
  margin-bottom: 90px;
}
.page--9 .block {
  width: 490px;
}
.page--10 {
  padding-top: 100px;
}
.page--10 .text {
  text-align: center;
  width: 840px;
  margin: 0 auto 190px;
}
.page--10 .title {
  margin-left: 320px;
  margin-bottom: 140px;
}
.page--10 .pic {
  width: 100%;
  position: relative;
}
.page--10 .pic img {
  position: relative;
}
.page--10 .sun {
  position: absolute;
  left: 50%;
  margin-left: -775px;
  top: 0;
  z-index: -1;
  margin-top: -500px;
}
.page--11 {
  padding-left: 960px;
  padding-top: 10px;
}
.page--11 .title {
  margin-left: 140px;
  margin-bottom: 80px;
}
.page--11 .block {
  width: 580px;
}
.page--11 .pic {
  position: absolute;
  top: 90px;
  left: 0;
  width: 1010px;
}
.page--12 {
  padding-top: 220px;
  padding-bottom: 400px;
}
.page--12 .text {
  text-align: center;
  width: 750px;
  margin: 0 auto;
}
.page--12 .btns {
  text-align: center;
  margin-top: 80px;
}
.page--12 .sun {
  position: absolute;
  left: 50%;
  margin-left: -597px;
  top: 100%;
  margin-top: -290px;
  z-index: -1;
}
.page--12 .children {
  position: absolute;
  left: 100px;
  bottom: -90px;
}
.page--13 {
  padding-left: 1110px;
  padding-top: 50px;
}
.page--13 .title {
  margin-bottom: 60px;
}
.page--13 .text {
  width: 530px;
}
.page--13 .pic {
  position: absolute;
  left: 0;
  width: 1030px;
  top: 60px;
}
.page--13 .btns {
  margin-top: 50px;
}
.page--13 .contacts {
  position: relative;
}
.page--14 {
  padding-top: 150px;
}
.page--14 .sun {
  position: absolute;
  right: -489px;
  bottom: -612px;
}
.page--14 .children {
  position: absolute;
  bottom: -90px;
  right: -65px;
}
.page--15 {
  padding: 60px 0 0;
}
.page--15 + .page--4 {
  padding-top: 1px;
}
.page--16 {
  padding: 70px 0;
}
.yellow-bg {
  display: inline;
  background: #fbb900;
}
.yellow {
  color: #fbb900;
}
p {
  margin: 0;
  padding: 0;
}
p + p {
  margin-top: 20px;
}
.text {
  font-family: 'Arial', sans-serif;
  font-size: 26px;
  line-height: 44px;
}
.text--sm {
  font-size: 24px;
  line-height: 41px;
}
.text--xs {
  font-size: 22px;
  line-height: 37px;
}
.block {
  font-family: 'Arial', sans-serif;
  background: #fff;
  font-size: 18px;
  line-height: 26px;
  letter-spacing: 0.01em;
  border-radius: 22px;
  padding: 40px 45px;
  position: relative;
  z-index: 2;
}
.block--clear {
  padding: 0;
  background: transparent;
}
.block--form {
  padding: 80px 45px;
}
.block--big {
  padding: 60px 65px;
}
.block--big .btns {
  margin-top: 50px;
}
.block .title {
  margin-bottom: 25px;
}
.block .title--md {
  margin-bottom: 45px;
}
.pic {
  line-height: 0;
}
.pic img {
  width: 100%;
}
.pic--fit img {
  height: 100%;
  object-fit: cover;
}
.title {
  font-size: 65px;
  line-height: 130%;
  font-family: 'Avenir Next Cyr', sans-serif;
  font-weight: bold;
  text-transform: uppercase;
}
.title--lg {
  font-size: 71px;
}
.title--big {
  font-size: 80px;
}
.title--verybig {
  font-size: 101px;
}
.title--sm {
  font-size: 28px;
}
.title--extra {
  font-size: 180px;
}
.title--xs {
  font-size: 25px;
}
.title--md {
  font-size: 40px;
}
.title--normal {
  font-size: 57px;
}
.btns {
  margin-top: 30px;
}
.btns--flex {
  display: flex;
}
.btns--flex .slider-controls {
  margin-right: 10px;
}
.btns--center {
  text-align: center;
}
.slider--1 .swiper-container {
  width: 1100px;
}
.slider--1 .slider-item {
  width: 1100px;
  height: 740px;
  background: no-repeat center / cover;
}
.slider--3 .swiper-container {
  width: 990px;
}
.slider--3 .slider-item {
  width: 990px;
  height: 700px;
  background: no-repeat center / cover;
}
.slider--4 .swiper-container {
  width: 1600px;
}
.slider--4 .slider-item {
  width: 1600px;
  height: 1000px;
  background: no-repeat center / cover;
}
.slider-controls--1 {
  display: flex;
}
.slider-controls--2 {
  padding: 20px 100px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.slider-controls--4 {
  position: absolute;
  display: flex;
  justify-content: space-between;
  left: 50%;
  width: 1560px;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
}
.slider-controls--4 .swiper-button-next,
.slider-controls--4 .swiper-button-prev {
  margin: 0;
}
.slider-controls--center {
  width: 100%;
  justify-content: center;
}
.slider-controls--center .swiper-button-next,
.slider-controls--center .swiper-button-prev {
  margin: 0 5px;
}
.swiper-pagination {
  position: relative;
}
.swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: #f1e8dd;
  opacity: 1;
  margin-right: 10px;
  transition: all 0.3s ease;
}
.swiper-pagination-bullet-active {
  background: #fbb900;
}
.swiper-button-next,
.swiper-button-prev {
  position: relative;
  margin: 0 10px 0 0;
  padding-bottom: 2px;
  top: auto;
  left: auto;
  right: auto;
  transition: all 0.3s ease;
}
.swiper-button-next:after,
.swiper-button-prev:after {
  display: none;
}
.swiper-button-next.swiper-button-disabled,
.swiper-button-prev.swiper-button-disabled {
  opacity: 1;
  background: #f8f8f8;
  color: #fff;
}
.sun {
  border-radius: 50%;
  background: #fbb900;
  display: inline-block;
}
.sun--1 {
  width: 723px;
  height: 723px;
}
.sun--2 {
  width: 1500px;
  height: 1500px;
}
.sun--3 {
  width: 430px;
  height: 430px;
}
.sun--4 {
  width: 1194px;
  height: 1194px;
}
.grid {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 0 30px;
  margin-top: 120px;
}
.elem {
  margin: 25px 0;
  box-shadow: 0 0 18px rgba(0, 0, 0, 0.06);
  border-radius: 22px;
  position: relative;
}
.elem__pics {
  position: relative;
  width: 307px;
  height: 483px;
  overflow: hidden;
}
.elem__pics:after {
  width: 230px;
  height: 230px;
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 50%;
  background: #fbb900;
  top: 100%;
  z-index: 4;
  transition: all 0.6s ease;
}
.elem__pic {
  background: no-repeat center / cover;
  border-radius: 22px;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.2s ease;
}
.elem__pic--main {
  opacity: 1;
}
.elem__pic--only {
  opacity: 1;
}
.elem-fly {
  padding: 25px 30px;
  background: #f1f1f1;
  display: inline-block;
  width: 300px;
  position: absolute;
  border-radius: 22px;
  box-shadow: 0 0 71px rgba(0, 0, 0, 0.36);
}
.elem-fly__title {
  font-size: 23px;
  line-height: 120%;
  color: #000;
  text-transform: uppercase;
  font-weight: bold;
}
.elem-fly__price {
  font-size: 24px;
  font-weight: bold;
  margin-top: 20px;
}
.elem-fly__price sup {
  text-transform: uppercase;
  font-size: 50%;
}
.elem__buy {
  position: absolute;
  opacity: 0;
  top: 20px;
  left: 20px;
  transition: all 0.3s ease;
}
.elem.switch .elem__pic {
  opacity: 1;
}
.elem.switch .elem__pic--main {
  opacity: 0;
}
.elem:hover .elem__buy {
  opacity: 1;
}
.elem:hover .elem__pics:after {
  transform: translateY(-65px) translateX(-50%);
}
.elem:nth-child(5n-4),
.elem:nth-child(5n) {
  transform: translateY(-210px);
}
.elem:nth-child(5n-3),
.elem:nth-child(5n-1) {
  transform: translateY(-85px);
}
.elem--empty {
  box-shadow: none!important;
}
.elem--empty:hover .elem__pics:after {
  display: none;
}
.fly {
  transform: translateY(-100%);
  opacity: 0;
}
.float {
  position: fixed;
  opacity: 0;
}
.float.active {
  opacity: 1;
  z-index: 999;
}
.float .fly {
  opacity: 1;
}
.float--right .fly {
  transform: translate(-110%, -100%);
}
.office {
  overflow: hidden;
  width: 300px;
  height: 440px;
  border-radius: 22px;
  position: relative;
  background: #f5f5f5;
  margin: 20px 0 20px 65px;
  box-shadow: 0 0 18px rgba(0, 0, 0, 0.06);
  display: flex;
  flex-direction: column;
  -webkit-mask-image: -webkit-radial-gradient(white, black);
  transition: all 0.3s ease;
}
.office__logo {
  width: 100px;
  height: 100px;
  background: url(/assets/img/logo-simple.svg) no-repeat center / cover;
  border-radius: 50%;
  border: 6px solid #fff;
  position: absolute;
  top: 17px;
  left: 17px;
  z-index: 6;
  box-shadow: 0 18px 22px rgba(46, 46, 46, 0.15);
  transform: translateZ(0px);
}
.office__map {
  height: 50%;
  width: 100%;
  position: relative;
  z-index: 5;
}
.office__content {
  padding: 20px 30px;
  font-size: 15px;
  line-height: 120%;
  font-family: 'Arial', sans-serif;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.office__btns {
  position: absolute;
  top: 100%;
  transform: translateY(100%);
  /*background: @yellow;*/
  width: 100%;
  padding: 30px 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 50%;
  z-index: 2;
  transition: all 0.3s ease;
}
.office__btns:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  background: #fbb900;
  border-radius: 50%;
  width: 150%;
  height: 150%;
  transform: translate(-50%, -50%);
  z-index: -1;
}
.office__btns .btn {
  margin: 8px 0;
}
.office__links {
  font-size: 12px;
  font-weight: bold;
  margin-top: 15px;
}
.office__links a {
  color: #000;
}
.office__links a :hover {
  color: #000;
}
.office__title {
  font-size: 18px;
  font-weight: bold;
  text-transform: uppercase;
  line-height: 120%;
  margin-bottom: 20px;
}
.office:hover .office__btns {
  transform: translateY(-100%);
}
.office--small {
  height: auto;
}
.office--small .office__btns {
  height: 100%;
}
.swiper-slide--auto {
  width: auto;
}
.map {
  width: 100%;
  height: 100%;
}
.children {
  display: inline-block;
  background: url(/assets/img/children.svg) no-repeat center top / 100% auto;
  width: 648px;
  height: 570px;
}
.center {
  text-align: center;
}
.form {
  width: 260px;
  margin: 45px auto 0;
}
.form__row {
  margin-top: 20px;
}
.form__row--btns {
  margin-top: 50px;
  text-align: center;
}
.form__row--flex {
  display: flex;
  justify-content: space-between;
}
.form__col {
  width: 46%;
}
.form-elem__title {
  font-size: 18px;
  line-height: 24px;
  margin-bottom: 15px;
}
.form--2 {
  width: 100%;
}
.form--2 .form__row {
  margin-top: 25px;
}
.form--2 .form__row--btns {
  margin-top: 50px;
}
input[type="text"].custom-input,
input[type="password"].custom-input {
  font-family: 'Arial', sans-serif;
  border: none;
  background: #f5f5f5;
  border-radius: 5px;
  height: 44px;
  width: 100%;
  padding: 0 20px;
  color: #000;
  font-size: 18px;
  letter-spacing: 0.05em;
}
input[type="text"].custom-input::placeholder,
input[type="password"].custom-input::placeholder {
  color: #000;
}
.catalog-select {
  margin: 25px auto;
  position: relative;
}
.catalog-select__inner {
  position: absolute;
  z-index: 10;
  width: 290px;
  left: 50%;
  margin-left: -145px;
  transition: opacity 0.3s ease;
}
.catalog-select__inner.hide {
  opacity: 0;
}
.shops {
  margin-top: 60px;
  position: relative;
}
.shops__list .office {
  position: absolute;
  top: 20px;
  right: 20px;
  opacity: 0;
  z-index: -1;
  margin: 0;
  transition: opacity 0.3s ease;
  /*margin: 0 0 60px 0;
      &:last-child, &:nth-last-child(2){
        margin-bottom: 0;
      }*/
}
.shops__list .office.active {
  opacity: 1;
  z-index: 1;
  box-shadow: 0 0 18px rgba(0, 0, 0, 0.3);
}
.shops__map {
  width: 100%;
  height: 600px;
}
.shops__map .map {
  box-shadow: 0 0 18px rgba(0, 0, 0, 0.06);
  border-radius: 22px;
}
.partners {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: flex-end;
}
.partner {
  display: flex;
  justify-content: center;
  align-items: center;
  line-height: 0;
  width: 223px;
  height: 158px;
  position: relative;
  overflow: hidden;
  margin: 80px 50px 0;
  padding-top: 20px;
  transition: all 0.3s ease;
}
.partner img {
  position: relative;
  z-index: 2;
  max-width: 60%;
  max-height: 60%;
}
.partner:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 223px;
  background: #fbb900;
  border-radius: 50%;
}
.partner:hover {
  padding: 32px 0;
  height: 223px;
  margin-top: -65px;
}
.news {
  display: flex;
  margin-bottom: 140px;
}
.news__pic {
  line-height: 0;
  width: 780px;
  margin: 0 50px 0 180px;
  text-align: right;
  max-height: 830px;
}
.news__pic img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  margin-top: -40px;
}
.news__content {
  font-size: 18px;
  line-height: 30px;
}
.news__title {
  font-size: 45px;
  text-transform: uppercase;
  font-weight: bold;
  line-height: 120%;
  width: 550px;
  margin-bottom: 50px;
}
.news__text {
  width: 470px;
  font-family: 'Arial', sans-serif;
}
.news__cut {
  margin-bottom: 20px;
}
.news__full {
  display: none;
}
.news__btns {
  margin-top: 50px;
}
.news:nth-child(2n) .news__pic {
  margin-left: 230px;
}
.news-block {
  padding-top: 150px;
}
.news-loader {
  margin: 100px auto 150px;
  overflow: hidden;
  border-bottom: 3px solid #000;
  width: 150px;
  height: 100px;
  position: relative;
}
.news-loader span {
  width: 82px;
  height: 82px;
  border-radius: 50%;
  background: #fbb900;
  position: absolute;
  display: block;
  left: 50%;
  top: 100%;
  animation: sun 3s;
  animation-iteration-count: infinite;
}
@keyframes sun {
  0% {
    transform: translate(-50%, 0);
  }
  50% {
    transform: translate(-50%, -110%);
  }
  100% {
    transform: translate(-50%, 0);
  }
}
.badge {
  width: 143px;
  height: 143px;
  background: url(/assets/img/logo-simple.svg) no-repeat center / contain;
  border-radius: 50%;
  z-index: 2;
  transform: rotate(-15deg);
  transition: transform 1s ease;
}
.badge:hover {
  transform: rotate(-375deg);
  animation-iteration-count: infinite;
}
@keyframes badge {
  0% {
    transform: rotate(-15deg);
  }
  50% {
    transform: rotate(-195deg);
  }
  100% {
    transform: rotate(-375deg);
  }
}
.up {
  width: 70px;
  height: 70px;
  background: #fff;
  box-shadow: 0 0 29px rgba(199, 184, 165, 0.17);
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 99;
  display: none;
  border-radius: 50%;
  transform: rotate(90deg);
  color: #000;
  cursor: pointer;
  text-decoration: none;
  font-size: 35px;
  line-height: 35px;
  font-weight: bold;
  padding-bottom: 5px;
  transition: background 0.3s ease;
}
.up span {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}
.up:hover {
  background: #fbb900;
  color: #000;
}
.cart {
  margin-top: 50px;
  margin-bottom: 120px;
}
.cart__header {
  color: #6f6f6f;
}
.cart__header .cart__row {
  background: transparent;
  margin-bottom: 20px;
  min-height: auto;
}
.cart__header .cart__row:hover {
  background: transparent;
}
.cart__header .cart__col {
  padding: 0;
  font-size: 10px;
}
.cart__row {
  display: flex;
  background: #fff;
  border-radius: 5px;
  margin-bottom: 2px;
  align-items: center;
  min-height: 65px;
  padding: 10px 0;
  transition: all 0.3s ease;
}
.cart__row--right {
  text-align: right;
}
.cart__row--center {
  text-align: center;
}
.cart__row:nth-child(2n) {
  background: #fcfbf9;
}
.cart__row:hover {
  background: #fff5d9;
}
.cart__row:hover svg path {
  fill: #fbb900;
}
.cart__col {
  font-size: 12px;
  text-transform: uppercase;
  font-weight: bold;
}
.cart__col--center {
  text-align: center;
}
.cart__col--pic {
  padding-left: 35px;
  line-height: 0;
  position: relative;
}
.cart__col--pic:hover .cart__float {
  opacity: 1;
  visibility: visible;
}
.cart__col--description {
  font-weight: 500;
  padding-right: 50px;
  text-transform: none;
}
.cart__col:nth-child(1) {
  width: 110px;
}
.cart__col:nth-child(2) {
  width: 500px;
}
.cart__col:nth-child(3) {
  flex: 1;
}
.cart__col:nth-child(4) {
  width: 110px;
}
.cart__col:nth-child(5) {
  width: 150px;
}
.cart__col:nth-child(6) {
  width: 190px;
}
.cart__col:nth-child(7) {
  width: 100px;
}
.cart__float {
  position: absolute;
  opacity: 0;
  width: 171px;
  height: 268px;
  background: no-repeat center / cover;
  z-index: 3;
  box-shadow: 0 0 29px rgba(168, 168, 168, 0.9);
  border-radius: 22px;
  left: 80%;
  top: 50%;
  transform: translateY(-50%);
  visibility: hidden;
  transition: opacity 0.3s ease;
}
.cart .selectize-input.full {
  padding-top: 13px;
  padding-bottom: 13px;
  min-width: 150px;
}
.cart .selectize-input.full,
.cart .selectize-dropdown,
.cart .selectize-input,
.cart .selectize-control.single .selectize-input.input-active {
  background: #f4f4f4;
}
.popup {
  width: 850px;
  background: #fff;
  position: relative;
  border-radius: 54px;
  overflow: visible;
  padding: 35px;
}
.popup__close {
  width: 38px;
  height: 38px;
  background: #fbb900;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  line-height: 0;
  position: absolute;
  top: 5px;
  right: -45px;
  transition: all 0.3s ease;
}
.popup__close img,
.popup__close svg {
  width: 13px;
}
.popup__close:hover {
  background: #000;
}
.popup__close:hover svg path {
  fill: #fff;
}
.product__inner {
  display: flex;
  justify-content: space-between;
}
.product__imgs {
  width: 400px;
  height: 630px;
  position: relative;
}
.product__imgs:hover .product__img {
  opacity: 0;
}
.product__imgs:hover .product__img--hover,
.product__imgs:hover .product__img--only {
  opacity: 1;
}
.product__img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: no-repeat center / cover;
  border-radius: 22px;
  transition: all 0.3s ease;
}
.product__img--hover {
  opacity: 0;
}
.product__content {
  width: 350px;
  height: 630px;
  display: flex;
  flex-direction: column;
  position: relative;
  padding-bottom: 130px;
}
.product__content--long {
  padding-bottom: 65px;
}
.product__scroll {
  overflow-y: auto;
  position: relative;
  padding-right: 30px;
  margin-right: -30px;
}
.product__title {
  font-size: 23px;
  line-height: 120%;
  text-transform: uppercase;
  font-weight: bold;
  margin-bottom: 25px;
  margin-top: 5px;
}
.product__text {
  font-size: 18px;
  line-height: 120%;
  font-family: 'Arial', sans-serif;
}
.product__description {
  font-size: 15px;
  line-height: 22px;
  margin-top: 25px;
  font-family: 'Arial', sans-serif;
}
.product__buy {
  margin-top: 25px;
  position: absolute;
  width: 100%;
  bottom: 0;
  left: 0;
}
.product__price {
  display: flex;
  justify-content: space-between;
  font-size: 22px;
  text-transform: uppercase;
  line-height: 120%;
  font-weight: bold;
  margin-bottom: 15px;
}
.product__price .selectize-input.full {
  padding-top: 13px;
  padding-bottom: 13px;
  min-width: 150px;
}
.product__price input.custom-input {
  width: 150px;
}
.product__price .selectize-input.full,
.product__price .selectize-dropdown,
.product__price .selectize-input,
.product__price .selectize-control.single .selectize-input.input-active {
  background: #f4f4f4;
}
.product__price sup {
  font-size: 50%;
}
.product__btn {
  margin-bottom: 5px;
}
.product__btn .btn {
  width: 100%;
}
.hamburger {
  display: none;
}
[summ] {
  display: inline!important;
  margin: 0!important;
}
.delivery {
  display: flex;
  flex-direction: column;
}
.delivery-icon {
  display: inline-block;
  width: 208px;
  height: 74px;
  background: no-repeat center / cover;
  border-radius: 12px;
  border: 2px solid #000;
  margin-bottom: 20px;
  transition: all 0.3s ease;
}
.delivery-icon--ya {
  background-image: url(/assets/img/icon-yandex-food.png);
}
.delivery-icon--deli {
  background-image: url(/assets/img/icon-delivery-club.png);
}
.delivery-icon:hover {
  border-width: 4px;
}
.delivery--row {
  flex-direction: row;
}
.delivery--row .delivery-icon {
  margin: 0 20px 0 0;
}
.selectize-dropdown-content {
  max-height: none;
}
body {
  background-size: 50vw auto;
  font-size: 0.88888889vw;
}
h1,
.h1 {
  font-size: 2.22222222vw;
  margin: 0 0 0.83333333vw;
}
h2,
.h2 {
  font-size: 1.66666667vw;
  margin: 0 0 0.83333333vw;
}
h3,
.h3 {
  font-size: 1.11111111vw;
  margin: 0 0 0.83333333vw;
}
main {
  background-size: 50vw auto;
}
.footer__col {
  width: 28.88888889vw;
}
.footer__content {
  min-height: 20.55555556vw;
  padding-top: 3.05555556vw;
  padding-right: 3.88888889vw;
  padding-bottom: 0.83333333vw;
}
.footer__text {
  width: 12.22222222vw;
  font-size: 1vw;
  line-height: 1.33333333vw;
}
.copyright {
  font-size: 0.66666667vw;
  height: 5vw;
  padding: 0 1.66666667vw;
}
.logo {
  background-size: 14.83333333vw auto;
  width: 17.83333333vw;
  height: 17.83333333vw;
}
.logo--simple {
  width: 8.38888889vw;
  height: 8.38888889vw;
  background-size: 7.5vw auto;
}
.logo--big {
  background-size: 12.38888889vw auto;
  width: 14.88888889vw;
  height: 14.88888889vw;
}
.logo--mb {
  margin-bottom: -3.33333333vw;
}
.preload {
  font-size: 3vw;
}
.preload .logo {
  margin-bottom: 1.66666667vw;
}
header {
  padding: 1.44444444vw 1.66666667vw;
}
.header__price {
  margin-top: 1.38888889vw;
  font-size: 1vw;
}
.header__price .btn {
  margin-left: 1.94444444vw;
}
.header--cart {
  box-shadow: 0 0 1.61111111vw rgba(168, 168, 168, 0.9);
}
.header--cart .logo {
  width: 5.16666667vw;
  height: 5.16666667vw;
  border: 0.27777778vw solid #000;
  background-size: 4.44444444vw;
  margin-right: 2.5vw;
}
.menu {
  margin-top: 1.33333333vw;
  margin-left: 1.77777778vw;
}
.menu-item {
  font-size: 0.94444444vw;
  margin: 0 1.11111111vw;
  height: 2.5vw;
}
.menu-item.active {
  border-radius: 0.27777778vw;
  padding: 0 1.38888889vw;
  margin: 0;
}
.menu--footer {
  margin: -0.27777778vw 0 0 0;
  padding: 0 3.22222222vw 2.22222222vw;
  width: 17.5vw;
}
.menu--footer .menu-item {
  font-size: 1.05555556vw;
  padding: 0 0.55555556vw;
  border-radius: 0.44444444vw;
  height: 1.77777778vw;
  margin-bottom: 0.27777778vw;
}
.menu--footer .menu-item.active,
.menu--footer .menu-item:hover {
  padding: 0 0.55555556vw;
}
.back {
  font-size: 0.94444444vw;
}
.cabinet {
  margin-top: 1.33333333vw;
  font-size: 0.66666667vw;
}
.cabinet .btn {
  margin-left: 1.66666667vw;
}
.btn {
  height: 2.44444444vw;
  font-size: 0.66666667vw;
  line-height: 0.66666667vw;
  padding: 0 1.11111111vw;
  border-radius: 0.33333333vw;
}
.btn .icon {
  margin-right: 0.83333333vw;
}
.btn--fixed {
  min-width: 11.11111111vw;
}
.btn--fixed-2 {
  min-width: 7.22222222vw;
}
.btn--big {
  height: 3.33333333vw;
  font-size: 0.88888889vw;
  line-height: 0.88888889vw;
}
.btn--big.btn--fixed {
  min-width: 15vw;
}
.btn--big.btn--fixed-2 {
  min-width: 11.11111111vw;
}
.btn--small {
  height: 1.77777778vw;
  font-size: 0.44444444vw;
  line-height: 0.44444444vw;
}
.btn--arrow {
  font-size: 1.33333333vw;
  line-height: 1.44444444vw;
  width: 2.77777778vw;
}
.btn--special-1 {
  padding-left: 0.38888889vw;
}
.btn--special-1 .icon {
  margin-right: 0.55555556vw;
}
.btn--icon .icon {
  margin-right: 0;
}
.btn--cart {
  padding: 0 0.83333333vw;
}
.btn--cart > span span {
  margin-top: 0.16666667vw;
}
.icon--cart {
  width: 1.22222222vw;
  height: 1.22222222vw;
}
.icon--wa {
  width: 1.77777778vw;
  height: 1.77777778vw;
}
.icon--pic {
  width: 1.22222222vw;
  height: 1.22222222vw;
}
.contacts--big {
  margin: 0 0 0 1.66666667vw;
  border-radius: 1.22222222vw 0 0 0;
  padding: 3.05555556vw 3.61111111vw 5vw;
}
.contacts--big .contact {
  width: 18.33333333vw;
  margin-bottom: 0;
}
.contacts--big .contact__title {
  font-size: 1.83333333vw;
  margin-bottom: 2.22222222vw;
}
.contacts--big .contact__text {
  font-size: 0.94444444vw;
}
.contact {
  padding-right: 3.88888889vw;
  width: 17.77777778vw;
  margin-bottom: 3.05555556vw;
}
.contact__title {
  font-size: 0.88888889vw;
  margin-bottom: 0.83333333vw;
}
.contact__text {
  font-size: 0.72222222vw;
  line-height: 1.05555556vw;
}
.social {
  margin-top: 1.66666667vw;
}
.social-item {
  width: 1.77777778vw;
  height: 1.77777778vw;
  border-radius: 0.27777778vw;
  margin-right: 0.55555556vw;
}
.alert {
  bottom: 2.5vw;
  right: 7.22222222vw;
  border-radius: 1.22222222vw;
  padding: 1.94444444vw 2.22222222vw;
  width: 19.44444444vw;
  font-size: 0.66666667vw;
  line-height: 0.94444444vw;
}
.alert__title {
  margin-bottom: 1.11111111vw;
}
.alert__btns {
  margin-top: 1.94444444vw;
}
.alert__btns .btn {
  margin-right: 0.66666667vw;
}
.alert:after {
  width: 1.44444444vw;
  height: 1.44444444vw;
}
.content {
  padding: 0 3.61111111vw;
}
.page--catalog {
  margin-bottom: 6.11111111vw;
}
.page--catalog .title {
  width: 55.55555556vw;
}
.page--1 {
  padding: 3.88888889vw 3.33333333vw 0;
}
.page--1 .pic {
  width: 55vw;
  height: 41.11111111vw;
}
.page--1 .block {
  width: 27.77777778vw;
  margin-left: 19.44444444vw;
  margin-top: -1.66666667vw;
}
.page--2 {
  padding: 3.33333333vw 5vw 0;
  min-height: 72.22222222vw;
}
.page--2 .title {
  margin-left: 12.5vw;
  margin-bottom: 4.44444444vw;
}
.page--2 .block {
  width: 37.5vw;
  margin-top: -6.11111111vw;
}
.page--2 .slider {
  width: 61.11111111vw;
  top: 31.11111111vw;
}
.page--2 .sun {
  left: 6.11111111vw;
  top: -11.11111111vw;
}
.page--3 {
  padding: 5.55555556vw 0 0;
}
.page--3 .btns {
  margin-top: 2.77777778vw;
}
.page--3 .sun {
  bottom: -55.55555556vw;
  margin-left: -41.66666667vw;
}
.page--3 .block .title {
  font-size: 4.38888889vw;
}
.page--3 .block .btns {
  margin-top: 3.88888889vw;
}
.page--4 {
  padding: 3.88888889vw 0;
}
.page--4 .content {
  padding: 0 5.55555556vw;
}
.page--4 .slider {
  margin-top: 3.05555556vw;
}
.page--5 {
  height: 51.66666667vw;
}
.page--5 .block {
  width: 36.11111111vw;
}
.page--6 {
  padding: 3.33333333vw 5.55555556vw 0;
}
.page--6 .title {
  margin-bottom: 2.77777778vw;
}
.page--6 .pic {
  width: 41.66666667vw;
  top: -3.33333333vw;
  right: 7.22222222vw;
}
.page--6 .block {
  width: 28.88888889vw;
  margin-left: 19.16666667vw;
}
.page--6 .text {
  width: 33.33333333vw;
  margin-bottom: 5vw;
  margin-left: 6.11111111vw;
}
.page--6 .badge {
  left: 20.83333333vw;
  bottom: -5vw;
}
.page--7 {
  padding-top: 11.11111111vw;
}
.page--7 .title {
  margin-left: 5vw;
}
.page--7 .slider {
  margin: 11.11111111vw auto 0;
}
.page--7 .pic {
  width: 88.88888889vw;
  margin: 6.66666667vw auto 0;
}
.page--7 .sun {
  top: -8.88888889vw;
  left: 44.44444444vw;
}
.page--8 {
  padding-top: 8.33333333vw;
}
.page--8 .title {
  margin-left: 5.55555556vw;
  margin-bottom: 5.55555556vw;
}
.page--8 .text {
  width: 30.55555556vw;
  margin-left: 11.11111111vw;
}
.page--8 .text--2 {
  width: 36.66666667vw;
  margin-left: 34.44444444vw;
  margin-top: 8.33333333vw;
}
.page--8 .pic {
  top: 26.66666667vw;
  width: 47.77777778vw;
}
.page--8 .badge {
  left: -4.16666667vw;
  bottom: -3.33333333vw;
}
.page--9 {
  padding-top: 7.22222222vw;
  padding-left: 48.88888889vw;
}
.page--9 .slider {
  width: 55vw;
  top: 4.44444444vw;
}
.page--9 .title {
  margin-left: 12.77777778vw;
  margin-bottom: 5vw;
}
.page--9 .block {
  width: 27.22222222vw;
}
.page--10 {
  padding-top: 5.55555556vw;
}
.page--10 .text {
  width: 46.66666667vw;
  margin: 0 auto 10.55555556vw;
}
.page--10 .title {
  margin-left: 17.77777778vw;
  margin-bottom: 7.77777778vw;
}
.page--10 .sun {
  margin-left: -43.05555556vw;
  margin-top: -27.77777778vw;
}
.page--11 {
  padding-top: 0.55555556vw;
  padding-left: 53.33333333vw;
}
.page--11 .title {
  margin-left: 7.77777778vw;
  margin-bottom: 4.44444444vw;
}
.page--11 .block {
  width: 32.22222222vw;
}
.page--11 .btns {
  margin-top: 4.44444444vw;
}
.page--11 .pic {
  top: 5vw;
  width: 56.11111111vw;
}
.page--12 {
  padding-top: 12.22222222vw;
  padding-bottom: 22.22222222vw;
}
.page--12 .text {
  width: 41.66666667vw;
}
.page--12 .sun {
  margin-left: -33.16666667vw;
  margin-top: -16.11111111vw;
}
.page--12 .children {
  left: 5.55555556vw;
  bottom: -5vw;
}
.page--13 {
  padding-left: 61.66666667vw;
  padding-top: 2.77777778vw;
}
.page--13 .title {
  margin-bottom: 3.33333333vw;
}
.page--13 .text {
  width: 29.44444444vw;
}
.page--13 .pic {
  width: 57.22222222vw;
  top: 3.33333333vw;
}
.page--13 .btns {
  margin-top: 2.77777778vw;
}
.page--14 {
  padding-top: 8.33333333vw;
}
.page--14 .sun {
  right: -27.16666667vw;
  bottom: -34vw;
}
.page--14 .children {
  bottom: -5vw;
  right: -3.61111111vw;
}
.page--15 {
  padding: 3.33333333vw 0 0;
}
.page--16 {
  padding: 3.88888889vw 0;
}
p {
  margin: 0;
  padding: 0;
}
p + p {
  margin-top: 1.11111111vw;
}
.text {
  font-size: 1.44444444vw;
  line-height: 2.44444444vw;
}
.text--sm {
  font-size: 1.33333333vw;
  line-height: 2.27777778vw;
}
.text--xs {
  font-size: 1.22222222vw;
  line-height: 2.05555556vw;
}
.block {
  font-size: 1vw;
  line-height: 1.44444444vw;
  border-radius: 1.22222222vw;
  padding: 2.22222222vw 2.5vw;
}
.block--clear {
  padding: 0;
}
.block--form {
  padding: 4.44444444vw 2.5vw;
}
.block--big {
  padding: 3.33333333vw 3.61111111vw;
}
.block--big .btns {
  margin-top: 2.77777778vw;
}
.block .title {
  margin-bottom: 1.38888889vw;
}
.block .title--md {
  margin-bottom: 2.5vw;
}
.title {
  font-size: 3.61111111vw;
}
.title--lg {
  font-size: 3.94444444vw;
}
.title--big {
  font-size: 4.44444444vw;
}
.title--verybig {
  font-size: 5.61111111vw;
}
.title--sm {
  font-size: 1.55555556vw;
}
.title--extra {
  font-size: 10vw;
}
.title--xs {
  font-size: 1.38888889vw;
}
.title--md {
  font-size: 2.22222222vw;
}
.title--normal {
  font-size: 3.16666667vw;
}
.btns {
  margin-top: 1.66666667vw;
}
.btns--flex .slider-controls {
  margin-right: 0.55555556vw;
}
.slider--1 .swiper-container {
  width: 61.11111111vw;
}
.slider--1 .slider-item {
  width: 61.11111111vw;
  height: 41.11111111vw;
}
.slider--3 .swiper-container {
  width: 55vw;
}
.slider--3 .slider-item {
  width: 55vw;
  height: 38.88888889vw;
}
.slider--4 .swiper-container {
  width: 88.88888889vw;
}
.slider--4 .slider-item {
  width: 88.88888889vw;
  height: 55.55555556vw;
}
.slider-controls--2 {
  padding: 1.11111111vw 5.55555556vw 0;
}
.slider-controls--4 {
  width: 86.66666667vw;
}
.slider-controls--4 .swiper-button-next,
.slider-controls--4 .swiper-button-prev {
  margin: 0;
}
.slider-controls--center .swiper-button-next,
.slider-controls--center .swiper-button-prev {
  margin: 0 0.27777778vw;
}
.swiper-pagination-bullet {
  width: 0.55555556vw;
  height: 0.55555556vw;
  margin-right: 0.55555556vw;
}
.swiper-button-next,
.swiper-button-prev {
  margin: 0 0.55555556vw 0 0;
  padding-bottom: 0.11111111vw;
}
.sun--1 {
  width: 40.16666667vw;
  height: 40.16666667vw;
}
.sun--2 {
  width: 83.33333333vw;
  height: 83.33333333vw;
}
.sun--3 {
  width: 23.88888889vw;
  height: 23.88888889vw;
}
.sun--4 {
  width: 66.33333333vw;
  height: 66.33333333vw;
}
.grid {
  padding: 0 1.66666667vw;
  margin-top: 6.66666667vw;
}
.elem {
  margin: 1.38888889vw 0;
  box-shadow: 0 0 1vw rgba(0, 0, 0, 0.06);
  border-radius: 1.22222222vw;
}
.elem__pics {
  width: 17.05555556vw;
  height: 26.83333333vw;
}
.elem__pics:after {
  width: 12.77777778vw;
  height: 12.77777778vw;
}
.elem__pic {
  border-radius: 1.22222222vw;
}
.elem__buy {
  top: 1.11111111vw;
  left: 1.11111111vw;
}
.elem-fly {
  padding: 1.38888889vw 1.66666667vw;
  width: 16.66666667vw;
  border-radius: 1.22222222vw;
  box-shadow: 0 0 3.94444444vw rgba(0, 0, 0, 0.36);
}
.elem-fly__title {
  font-size: 1.27777778vw;
}
.elem-fly__price {
  margin-top: 1.11111111vw;
  font-size: 1.33333333vw;
}
.elem:hover .elem__pics:after {
  transform: translateY(-3.61111111vw) translateX(-50%);
}
.elem:nth-child(5n-4),
.elem:nth-child(5n) {
  transform: translateY(-11.66666667vw);
}
.elem:nth-child(5n-3),
.elem:nth-child(5n-1) {
  transform: translateY(-4.72222222vw);
}
.office {
  width: 16.66666667vw;
  height: 24.44444444vw;
  border-radius: 1.22222222vw;
  margin: 1.11111111vw 0 1.11111111vw 3.61111111vw;
  box-shadow: 0 0 1vw rgba(0, 0, 0, 0.06);
}
.office__logo {
  width: 5.55555556vw;
  height: 5.55555556vw;
  border: 0.33333333vw solid #fff;
  top: 0.94444444vw;
  left: 0.94444444vw;
  box-shadow: 0 1vw 1.22222222vw rgba(46, 46, 46, 0.15);
}
.office__content {
  padding: 1.11111111vw 1.66666667vw;
  font-size: 0.83333333vw;
}
.office__btns {
  padding: 1.66666667vw 2.77777778vw;
}
.office__btns .btn {
  margin: 0.44444444vw 0;
}
.office__title {
  font-size: 1vw;
  margin-bottom: 1.11111111vw;
}
.office__links {
  font-size: 0.66666667vw;
  margin-top: 0.83333333vw;
}
.office--small {
  height: auto;
}
.office--small .office__btns {
  height: 100%;
}
.badge {
  width: 7.94444444vw;
  height: 7.94444444vw;
}
.children {
  width: 36vw;
  height: 31.66666667vw;
}
.form {
  width: 14.44444444vw;
  margin: 2.5vw auto 0;
}
.form__row {
  margin-top: 1.11111111vw;
}
.form__row--btns {
  margin-top: 2.77777778vw;
}
.form-elem__title {
  font-size: 1vw;
  line-height: 1.33333333vw;
  margin-bottom: 0.83333333vw;
}
.form--2 {
  width: 100%;
}
.form--2 .form__row {
  margin-top: 1.38888889vw;
}
.form--2 .form__row--btns {
  margin-top: 2.77777778vw;
}
input[type="text"].custom-input,
input[type="password"].custom-input {
  border-radius: 0.27777778vw;
  height: 2.44444444vw;
  padding: 0 1.11111111vw;
  font-size: 1vw;
}
.catalog-select {
  margin: 1.38888889vw auto;
}
.catalog-select__inner {
  width: 16.11111111vw;
  margin-left: -8.05555556vw;
}
.shops {
  margin-top: 3.33333333vw;
}
.shops__list .office {
  top: 1.11111111vw;
  right: 1.11111111vw;
}
.shops__list .office.active {
  box-shadow: 0 0 1vw rgba(0, 0, 0, 0.3);
}
.shops__map {
  height: 33.33333333vw;
}
.shops__map .map {
  box-shadow: 0 0 1vw rgba(0, 0, 0, 0.06);
  border-radius: 1.22222222vw;
}
.partner {
  width: 12.38888889vw;
  height: 8.77777778vw;
  margin: 4.44444444vw 2.77777778vw 0;
  padding-top: 1.11111111vw;
}
.partner:after {
  height: 12.38888889vw;
}
.partner:hover {
  padding: 1.77777778vw 0;
  height: 12.38888889vw;
  margin-top: -3.61111111vw;
}
.news {
  margin-bottom: 7.77777778vw;
}
.news__pic {
  width: 43.33333333vw;
  margin: 0 2.77777778vw 0 10vw;
  max-height: 46.11111111vw;
}
.news__pic img {
  margin-top: -2.22222222vw;
}
.news__content {
  font-size: 1vw;
  line-height: 1.66666667vw;
}
.news__title {
  font-size: 2.5vw;
  width: 30.55555556vw;
  margin-bottom: 2.77777778vw;
}
.news__text {
  width: 26.11111111vw;
}
.news__cut {
  margin-bottom: 1.11111111vw;
}
.news__btns {
  margin-top: 2.77777778vw;
}
.news:nth-child(2n) .news__pic {
  margin-left: 12.77777778vw;
}
.news-block {
  padding-top: 8.33333333vw;
}
.news-loader {
  margin: 5.55555556vw auto 8.33333333vw;
  width: 8.33333333vw;
  height: 5.55555556vw;
}
.news-loader span {
  width: 4.55555556vw;
  height: 4.55555556vw;
}
.up {
  width: 3.88888889vw;
  height: 3.88888889vw;
  box-shadow: 0 0 1.61111111vw rgba(199, 184, 165, 0.17);
  bottom: 1.66666667vw;
  right: 1.66666667vw;
  font-size: 1.94444444vw;
  line-height: 1.94444444vw;
  padding-bottom: 0.27777778vw;
}
.cart {
  margin-top: 2.77777778vw;
  margin-bottom: 6.66666667vw;
}
.cart__header .cart__row {
  margin-bottom: 1.11111111vw;
}
.cart__header .cart__col {
  padding: 0;
  font-size: 0.55555556vw;
}
.cart__row {
  border-radius: 0.27777778vw;
  margin-bottom: 0.11111111vw;
  min-height: 3.61111111vw;
  padding: 0.55555556vw 0;
}
.cart__col {
  font-size: 0.66666667vw;
}
.cart__col--pic {
  padding-left: 1.94444444vw;
}
.cart__col--description {
  padding-right: 2.77777778vw;
}
.cart__col:nth-child(1) {
  width: 6.11111111vw;
}
.cart__col:nth-child(2) {
  width: 27.77777778vw;
}
.cart__col:nth-child(4) {
  width: 6.11111111vw;
}
.cart__col:nth-child(5) {
  width: 8.33333333vw;
}
.cart__col:nth-child(6) {
  width: 10.55555556vw;
}
.cart__col:nth-child(7) {
  width: 5.55555556vw;
}
.cart__float {
  width: 9.5vw;
  height: 14.88888889vw;
  box-shadow: 0 0 1.61111111vw rgba(168, 168, 168, 0.9);
  border-radius: 1.22222222vw;
}
.cart .selectize-input.full {
  padding-top: 0.72222222vw;
  padding-bottom: 0.72222222vw;
  min-width: 8.33333333vw;
}
.popup {
  width: 47.22222222vw;
  border-radius: 3vw;
  padding: 1.94444444vw;
}
.popup__close {
  width: 2.11111111vw;
  height: 2.11111111vw;
  top: 0.27777778vw;
  right: -2.5vw;
}
.popup__close img,
.popup__close svg {
  width: 0.72222222vw;
}
.product__imgs {
  width: 22.22222222vw;
  height: 35vw;
}
.product__img {
  border-radius: 1.22222222vw;
}
.product__content {
  width: 19.44444444vw;
  height: 35vw;
  padding-bottom: 7.22222222vw;
}
.product__content--long {
  padding-bottom: 3.61111111vw;
}
.product__scroll {
  padding-right: 1.66666667vw;
  margin-right: -1.66666667vw;
}
.product__title {
  font-size: 1.27777778vw;
  margin-bottom: 1.38888889vw;
  margin-top: 0.27777778vw;
}
.product__text {
  font-size: 1vw;
}
.product__description {
  font-size: 0.83333333vw;
  line-height: 1.22222222vw;
  margin-top: 1.38888889vw;
}
.product__buy {
  margin-top: 1.38888889vw;
}
.product__price {
  font-size: 1.22222222vw;
  margin-bottom: 0.83333333vw;
}
.product__price input.custom-input {
  width: 8.33333333vw;
}
.product__price .selectize-input.full {
  padding-top: 0.72222222vw;
  padding-bottom: 0.72222222vw;
  min-width: 8.33333333vw;
}
.product__btn {
  margin-bottom: 0.27777778vw;
}
.delivery-icon {
  width: 11.55555556vw;
  height: 4.11111111vw;
  border-radius: 0.66666667vw;
}
.delivery--row .delivery-icon {
  margin: 0 1.11111111vw 0 0;
}
@media only screen and (min-width: 768px) and (max-width: 1366px) {
  .page--1 .pic {
    width: 750px;
    height: 560px;
  }
  .page--1 .block {
    width: 430px;
    margin-left: 240px;
    margin-top: -30px;
  }
  .page--2 {
    padding-top: 100px;
  }
  .page--2 .title {
    margin-left: 100px;
    margin-bottom: 150px;
  }
  .page--2 .block {
    width: 515px;
    margin-top: -85px;
  }
  .page--5 {
    height: 660px;
  }
  .page--5 .block {
    width: 610px;
    padding: 45px;
  }
  .page--5 .block--form {
    width: 510px;
  }
  .page--6 .title {
    margin-bottom: 60px;
  }
  .page--6 .block {
    width: 485px;
    margin-left: 200px;
  }
  .page--6 .text {
    width: 450px;
    margin-bottom: 75px;
    margin-left: 65px;
  }
  .page--9 {
    padding-top: 30px;
  }
  .page--9 .slider {
    top: 60px;
  }
  .page--9 .title {
    margin-left: 160px;
    margin-bottom: 70px;
  }
  .page--9 .block {
    width: 460px;
  }
  .page--11 {
    padding-left: 680px;
  }
  .page--11 .title {
    margin-left: 150px;
    margin-bottom: 45px;
  }
  .page--11 .block {
    width: 535px;
  }
  .page--13 .text {
    width: 410px;
  }
  .block {
    font-size: 16px;
    line-height: 23px;
  }
  .office {
    box-shadow: none;
  }
  .office__content {
    font-size: 12px;
    line-height: 18px;
  }
  .office__links {
    font-size: 12px;
    line-height: 18px;
    margin-top: 10px;
  }
  .office__title {
    font-size: 14px;
    margin-bottom: 10px;
  }
  .alert {
    padding: 30px 35px;
    width: 330px;
    font-size: 12px;
    line-height: 17px;
  }
  .contacts--big {
    padding-bottom: 45px;
  }
  .contacts--big .contact {
    width: 260px;
  }
  .contacts--big .contact__title {
    font-size: 25px;
  }
  .contacts--big .contact__text {
    font-size: 14px;
  }
  .contact__title {
    font-size: 12px;
  }
  .contact__text {
    font-size: 12px;
    line-height: 18px;
  }
  .text {
    font-size: 18px;
    line-height: 32px;
  }
  .page--1 .pic {
    width: 54.90483163vw;
    height: 40.99560761vw;
  }
  .page--1 .block {
    width: 31.47877013vw;
    margin-left: 17.56954612vw;
    margin-top: -2.19619327vw;
  }
  .page--2 {
    padding-top: 7.32064422vw;
  }
  .page--2 .title {
    margin-left: 7.32064422vw;
    margin-bottom: 10.98096633vw;
  }
  .page--2 .block {
    width: 37.70131772vw;
    margin-top: -6.22254758vw;
  }
  .page--5 {
    height: 48.31625183vw;
  }
  .page--5 .block {
    width: 44.65592972vw;
    padding: 3.2942899vw;
  }
  .page--5 .block--form {
    width: 37.33528551vw;
  }
  .page--6 .title {
    margin-bottom: 4.39238653vw;
  }
  .page--6 .block {
    width: 35.50512445vw;
    margin-left: 14.64128843vw;
  }
  .page--6 .text {
    width: 32.94289898vw;
    margin-bottom: 5.49048316vw;
    margin-left: 4.75841874vw;
  }
  .page--9 {
    padding-top: 2.19619327vw;
  }
  .page--9 .slider {
    top: 4.39238653vw;
  }
  .page--9 .title {
    margin-left: 11.71303075vw;
    margin-bottom: 5.12445095vw;
  }
  .page--9 .block {
    width: 33.6749634vw;
  }
  .page--11 {
    padding-left: 49.78038067vw;
  }
  .page--11 .title {
    margin-left: 10.98096633vw;
    margin-bottom: 3.2942899vw;
  }
  .page--11 .block {
    width: 39.16544656vw;
  }
  .page--13 .text {
    width: 30.01464129vw;
  }
  .block {
    font-size: 1.17130307vw;
    line-height: 1.68374817vw;
  }
  .office__content {
    font-size: 0.87847731vw;
    line-height: 1.31771596vw;
  }
  .office__links {
    font-size: 0.87847731vw;
    line-height: 1.31771596vw;
    margin-top: 0.73206442vw;
  }
  .office__title {
    font-size: 1.02489019vw;
    margin-bottom: 0.73206442vw;
  }
  .alert {
    padding: 2.19619327vw 2.56222548vw;
    width: 24.15812592vw;
    font-size: 0.87847731vw;
    line-height: 1.24450952vw;
  }
  .contacts--big {
    padding-bottom: 3.2942899vw;
  }
  .contacts--big .contact {
    width: 19.03367496vw;
  }
  .contacts--big .contact__title {
    font-size: 1.83016105vw;
  }
  .contacts--big .contact__text {
    font-size: 1.02489019vw;
  }
  .contact__title {
    font-size: 0.87847731vw;
  }
  .contact__text {
    font-size: 0.87847731vw;
    line-height: 1.31771596vw;
  }
  .text {
    font-size: 1.31771596vw;
    line-height: 2.34260615vw;
  }
}
@media only screen and (max-width: 767px) {
  body.open {
    overflow: hidden;
  }
  body.open header .logo {
    transform: translateY(-150%);
  }
  body.open .menu:not(.menu--footer) {
    transform: translateY(0);
  }
  body.open .catalog-select {
    z-index: 1;
  }
  body.open .hamburger span {
    margin: 0;
  }
  body.open .hamburger span:first-child {
    width: 100%;
    transform: rotate(225deg);
    margin-bottom: -4.5px;
  }
  body.open .hamburger span:last-child {
    width: 100%;
    transform: rotate(135deg);
    margin-top: 2px;
  }
  .logo {
    background-size: 88px auto;
    width: 110px;
    height: 110px;
    border: 10px solid #fcf4e7;
  }
  .preload {
    font-size: 27px;
  }
  .preload .logo {
    margin-bottom: 15px;
  }
  .btn {
    height: 36px;
    font-size: 10px;
    line-height: 10px;
    padding: 0 15px;
    border-radius: 5px;
  }
  .btn .icon {
    margin-right: 10px;
  }
  .btn--small {
    height: 32px;
    font-size: 8px;
    line-height: 8px;
  }
  .btn--big {
    height: 40px;
    font-size: 11px;
    line-height: 11px;
  }
  .btn--arrow {
    font-size: 24px;
    line-height: 26px;
    width: 44px;
    height: 44px;
  }
  .btn--fixed {
    min-width: 160px;
  }
  .btn--special-1 {
    padding-left: 7px;
  }
  .btn--special-1 .icon {
    margin-right: 10px;
  }
  .btn--cart {
    padding: 0 15px;
    height: 44px;
  }
  .btn--cart > span span {
    margin-top: 2px;
  }
  .mobile-bg {
    background-size: 100% auto;
  }
  .mobile-bg--1 {
    background-image: url(/assets/img/dots-left.png);
    background-position: left top;
  }
  .mobile-bg--2 {
    background-image: url(/assets/img/dots-right.png);
    background-position: right top;
  }
  .wrapper {
    background: none;
  }
  .icon--cart {
    width: 22px;
    height: 22px;
  }
  .icon--wa {
    width: 32px;
    height: 32px;
  }
  .icon--pic {
    width: 22px;
    height: 22px;
  }
  .cabinet {
    font-size: 12px;
    background: #fff;
    border-radius: 6px;
    height: 44px;
    padding: 0 16px;
    display: flex;
    align-items: center;
    margin-left: 22px;
    margin-top: 0;
    line-height: 0;
    transition: all 0.3s ease;
  }
  .cabinet.active {
    background: #fbb900;
  }
  .cabinet a {
    display: flex;
    align-items: center;
  }
  .cabinet a i {
    margin-right: 10px;
  }
  .cabinet-mobile {
    margin-top: 10px;
    display: flex;
  }
  .cabinet-mobile .btn {
    height: 44px;
  }
  header {
    padding: 15px 25px 15px 15px;
    height: 150px;
  }
  header .logo,
  header .cabinet {
    position: relative;
    z-index: 2;
  }
  .header__price {
    flex-direction: row-reverse;
    flex: 1;
    justify-content: space-between;
    margin-top: 33px;
    font-size: 18px;
  }
  .header__price .btn {
    margin-left: 0;
  }
  .header--cart {
    background: #fff;
    box-shadow: none;
  }
  .header--cart .logo {
    width: 55px;
    height: 55px;
    border-width: 4px;
    background-size: 48px;
    margin-right: 20px;
  }
  .header--cart .cabinet {
    background: #f4f4f4;
    margin-left: 20px;
  }
  .header--cart .menu {
    display: flex;
  }
  .header__row--order {
    margin-left: -70px;
    width: auto;
  }
  .hamburger {
    display: block;
    width: 25px;
    height: 14px;
  }
  .hamburger span {
    display: inline-block;
    height: 3px;
    background: #000;
    margin: 2px 0;
    transition: all 0.3s ease;
  }
  .hamburger span:first-child {
    width: 100%;
  }
  .hamburger span:last-child {
    width: 70%;
  }
  .alert {
    bottom: 45px;
    right: 50%;
    transform: translateX(50%);
    border-radius: 22px;
    padding: 30px 35px;
    width: 350px;
    font-size: 12px;
    line-height: 16px;
  }
  .alert__title {
    margin-bottom: 20px;
  }
  .alert__btns {
    margin-top: 35px;
  }
  .alert__btns .btn {
    margin-right: 12px;
  }
  .alert:after {
    width: 26px;
    height: 26px;
  }
  .content {
    padding: 0 24px;
  }
  .up {
    width: 50px;
    height: 50px;
    box-shadow: 0 0 29px rgba(199, 184, 165, 0.17);
    bottom: 20px;
    right: 20px;
    font-size: 35px;
    line-height: 35px;
    padding-bottom: 7px;
  }
  p + p {
    margin-top: 15px;
  }
  .page--mobile {
    padding-top: 100px;
  }
  .page--catalog {
    margin-bottom: 50px;
  }
  .page--catalog .title {
    text-align: left;
    padding: 0 24px;
    width: 100%;
  }
  .page--1 {
    padding: 0 24px;
  }
  .page--1 .title {
    margin-bottom: 430px;
  }
  .page--1 .pic {
    width: 310px;
    height: 530px;
    top: 190px;
  }
  .page--1 .block {
    width: 100%;
    margin-left: 0;
  }
  .page--2 {
    padding: 45px 24px 0;
    min-height: 0;
  }
  .page--2 .title {
    margin-left: 0;
    margin-bottom: 50px;
  }
  .page--2 .block {
    width: 100%;
    margin-top: 0;
  }
  .page--2 .slider {
    width: 100vw;
    position: relative;
    left: 50%;
    top: 0;
    margin-left: -50vw;
    margin-bottom: 70px;
  }
  .page--2 .sun {
    left: 50%;
    top: -100px;
    margin-left: -167px;
  }
  .page--3 {
    padding: 60px 0 0;
  }
  .page--3 .sun {
    bottom: -270px;
    margin-left: -210px;
  }
  .page--3 .block {
    top: 13%;
  }
  .page--3 .block .title {
    font-size: 34px;
  }
  .page--3 .block .btns {
    margin-top: 25px;
  }
  .page--4 {
    padding: 45px 0 35px;
  }
  .page--4 .slider {
    margin-top: 30px;
  }
  .page--4 .title {
    text-align: center;
  }
  .page--5 {
    padding: 400px 24px 70px;
    background-size: 100% auto;
    background-position: center top;
    background-color: #fff;
    height: auto;
    background-image: url(/assets/img/pic/03m.jpg);
  }
  .page--5 .block {
    width: 100%;
    padding: 35px;
    box-shadow: 0 9px 91px rgba(46, 46, 46, 0.07);
  }
  .page--5-2 {
    background-image: url(/assets/img/pic/03-2m.jpg);
  }
  .page--5-3 {
    background-image: url(/assets/img/pic/03-3m.jpg);
  }
  .page--6 {
    padding: 0 24px;
  }
  .page--6 .title {
    margin-bottom: 25px;
  }
  .page--6 .pic {
    width: 275px;
    position: relative;
    top: 0;
    right: 0;
    margin-left: auto;
    margin-bottom: 30px;
  }
  .page--6 .block {
    width: 100%;
    margin-left: 0;
  }
  .page--6 .text {
    width: 80%;
    margin: 0 auto 30px;
  }
  .page--6 .badge {
    position: absolute;
    left: -30px;
    bottom: 85px;
  }
  .page--7 {
    padding: 35px 24px 0;
  }
  .page--7 .title {
    margin-left: 0;
  }
  .page--7 .pic {
    width: 100vw;
    margin: 25px 0 0 -24px;
  }
  .page--7 .sun {
    top: -65px;
    left: 200px;
  }
  .page--7 .slider {
    margin-top: 80px;
    width: 100vw;
    position: relative;
    left: -24px;
    top: 0;
    margin-bottom: 30px;
  }
  .page--8 {
    padding: 25px 24px;
  }
  .page--8 .title {
    margin-left: 0;
    margin-bottom: 30px;
  }
  .page--8 .text {
    width: 85%;
    margin: 0 auto 25px;
  }
  .page--8 .text--2 {
    width: 100%;
    margin: 25px 0 0;
  }
  .page--8 .pic {
    position: relative;
    top: 0;
    right: 0;
    width: 100%;
  }
  .page--9 {
    padding: 30px 24px 0;
  }
  .page--9 .slider {
    width: 100vw;
    position: relative;
    left: -24px;
    top: 0;
    margin-bottom: 60px;
  }
  .page--9 .title {
    margin-left: 0;
    margin-bottom: 35px;
  }
  .page--9 .block {
    width: 100%;
  }
  .page--9 .badge {
    position: absolute;
    right: 24px;
    top: -50px;
  }
  .page--10 {
    padding: 45px 24px 0;
  }
  .page--10 .text {
    width: 80%;
    margin: 0 auto 100px;
  }
  .page--10 .title {
    margin-left: 0;
    margin-bottom: 40px;
  }
  .page--10 .sun {
    margin-left: -210px;
    margin-top: -150px;
  }
  .page--10 .pic {
    width: 100vw;
    margin-left: -24px;
    height: 360px;
  }
  .page--10 .pic img {
    object-fit: cover;
    height: 100%;
  }
  .page--11 {
    padding: 0 24px;
  }
  .page--11 .title {
    margin-left: 0;
    margin-bottom: 30px;
  }
  .page--11 .block {
    width: 100%;
    margin-top: -45px;
  }
  .page--11 .pic {
    position: relative;
    top: 0;
    width: 100vw;
    height: 350px;
    left: -24px;
  }
  .page--11 .pic img {
    object-fit: cover;
    height: 100%;
  }
  .page--12 {
    padding-top: 35px;
    padding-bottom: 280px;
  }
  .page--12 .text {
    width: 80%;
  }
  .page--12 .sun {
    margin-left: -280px;
    margin-top: -130px;
  }
  .page--12 .children {
    left: 50%;
    transform: translateX(-50%);
    bottom: -40px;
  }
  .page--12 .btns {
    margin-top: 40px;
  }
  .page--13 {
    padding: 0 24px 0;
  }
  .page--13 .title {
    margin-bottom: 25px;
  }
  .page--13 .text {
    width: 85%;
    margin: 0 auto;
  }
  .page--13 .pic {
    position: relative;
    left: auto;
    width: 300px;
    top: 0;
    margin-bottom: 25px;
    right: -10px;
    margin-left: auto;
  }
  .page--13 .btns {
    margin-top: 30px;
  }
  .page--14 {
    padding: 40px 25px;
  }
  .page--14 .sun {
    right: 50%;
    margin-right: -280px;
    bottom: -430px;
  }
  .page--14 .children {
    bottom: -40px;
    right: 50%;
    transform: translateX(50%);
  }
  .page--15 {
    padding-top: 40px;
  }
  .page--16 {
    padding: 0 0 40px;
  }
  .footer {
    padding: 24px 24px 0;
  }
  .footer__row {
    flex-wrap: wrap;
  }
  .footer__col {
    background: #fff;
    width: 155px;
    flex-direction: column;
    justify-content: space-between;
    align-items: stretch;
  }
  .footer__content {
    flex: 1;
    min-height: 0;
    padding-top: 0;
    padding-right: 0;
    padding-bottom: 0;
  }
  .footer .logo {
    border: none;
    width: 150px;
    height: 150px;
    background-size: contain;
  }
  .copyright {
    background: #fff;
    font-size: 12px;
    height: auto;
    padding: 10px 0 24px;
  }
  .social {
    margin-bottom: 10px;
    justify-content: center;
  }
  .social-item {
    width: 25px;
    height: 25px;
    margin: 0 9px;
    border-radius: 5px;
    margin-right: 0;
  }
  .menu {
    margin: 0;
    position: fixed;
    width: 100%;
    height: 100%;
    background: #fbb900;
    flex-direction: column;
    transform: translateY(-100%);
    top: 0;
    left: 0;
    z-index: 2;
    align-items: center;
    justify-content: center;
    overflow-y: auto;
    padding: 60px 0;
    transition: all 0.3s ease;
  }
  .menu-item {
    font-size: 22px;
    margin: 8px 0;
    height: 44px;
    border-bottom-width: 2px;
  }
  .menu-item.active {
    padding: 0 25px;
    border-radius: 5px;
    margin: 8px 0;
  }
  .menu--footer {
    padding: 0;
    width: auto;
    margin: 0 0 0 -9px;
    position: relative;
    height: auto;
    background: transparent;
    transform: none;
    align-items: flex-start;
  }
  .menu--footer .menu-item {
    font-size: 18px;
    padding: 0 7px;
    border-radius: 8px;
    height: 30px;
    border: 2px solid transparent;
    margin: 0 0 5px;
  }
  .menu--footer .menu-item.active,
  .menu--footer .menu-item:hover {
    padding: 0 7px;
    border-color: #000;
  }
  .menu .links {
    margin-top: 20px;
    text-align: center;
  }
  .menu .under {
    margin-top: 30px;
    font-size: 12px;
    text-transform: uppercase;
    font-weight: bold;
    display: inline-block;
    color: #000;
    text-decoration: none;
  }
  .menu .under:hover {
    color: #000;
    text-decoration: none;
  }
  .block {
    font-size: 15px;
    line-height: 20px;
    border-radius: 22px;
    padding: 30px;
  }
  .block--clear {
    padding: 0;
  }
  .block--form {
    padding: 35px;
  }
  .block .title--sm {
    margin-bottom: 25px;
  }
  .btns {
    margin-top: 25px;
  }
  .btns--2 {
    margin-top: 35px;
  }
  .title {
    font-size: 30px;
  }
  .title--big,
  .title--verybig,
  .title--extra,
  .title--xs {
    font-size: 32px;
  }
  .title--sm {
    font-size: 18px;
  }
  .title--mobile {
    font-size: 25px;
  }
  .title--mobile-sm {
    font-size: 22px;
  }
  .title--mobile-md {
    font-size: 28px;
  }
  .title--mobile-lg {
    font-size: 35px;
  }
  .title--mobile-big {
    font-size: 40px;
  }
  .title--mobile-xl {
    font-size: 45px;
  }
  .title--mobile-extra {
    font-size: 50px;
  }
  .under:after {
    height: 2px;
  }
  .sun--1 {
    width: 334px;
    height: 334px;
  }
  .sun--2 {
    width: 420px;
    height: 420px;
  }
  .sun--3 {
    width: 240px;
    height: 240px;
  }
  .sun--4 {
    width: 560px;
    height: 560px;
  }
  .slider--1 .swiper-container {
    width: 375px;
  }
  .slider--1 .slider-item {
    width: 375px;
    height: 310px;
  }
  .slider--3 .swiper-container {
    width: 375px;
  }
  .slider--3 .slider-item {
    width: 375px;
    height: 250px;
  }
  .slider--4 .swiper-container {
    width: 375px;
  }
  .slider--4 .slider-item {
    width: 375px;
    height: 250px;
  }
  .slider-controls--1,
  .slider-controls--4 {
    position: absolute;
    display: block;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    bottom: -35px;
  }
  .slider-controls--1 .swiper-pagination-bullet,
  .slider-controls--4 .swiper-pagination-bullet {
    background: #fff;
  }
  .slider-controls--1 .swiper-pagination-bullet-active,
  .slider-controls--4 .swiper-pagination-bullet-active {
    background: #fbb900;
  }
  .slider-controls--center .swiper-button-next,
  .slider-controls--center .swiper-button-prev {
    margin: 0 5px;
  }
  .slider-controls--2 {
    justify-content: center;
    margin-top: 10px;
    padding: 0 24px;
  }
  .slider-controls--4 {
    width: auto;
    top: auto;
  }
  .slider-controls--4 .swiper-button-next,
  .slider-controls--4 .swiper-button-prev {
    margin: 0 0 0 10px;
  }
  .swiper-button-next,
  .swiper-button-prev {
    margin: 0 0 0 10px;
    padding-bottom: 2px;
  }
  .swiper-pagination-bullet {
    width: 9px;
    height: 9px;
    margin: 0 6px;
  }
  .grid {
    padding: 0 8px;
    margin-top: 30px;
    align-items: stretch;
  }
  .elem {
    margin: 5px 0;
    box-shadow: 0 0 18px rgba(0, 0, 0, 0.06);
    border-radius: 22px;
    width: 174px;
    color: #000;
    text-decoration: none;
    display: flex;
    flex-direction: column;
  }
  .elem:hover {
    color: #000;
    text-decoration: none;
  }
  .elem__pics {
    height: 250px;
    width: 100%;
  }
  .elem__pics:after {
    display: none;
  }
  .elem__pic {
    border-radius: 22px 22px 0 0;
    opacity: 1;
  }
  .elem__pic--main {
    opacity: 0;
  }
  .elem__pic--only {
    opacity: 1;
  }
  .elem-fly {
    position: relative;
    background: #fff;
    width: 100%;
    padding: 15px 20px;
    border-radius: 0 0 22px 22px;
    height: 100%;
    box-shadow: none;
  }
  .elem-fly__title {
    font-size: 13px;
    height: 45px;
    overflow: hidden;
    position: relative;
  }
  .elem-fly__title--dots:after {
    content: "...";
    background: #fff;
    position: absolute;
    bottom: 0;
    right: 0;
  }
  .elem-fly__price {
    margin-top: 10px;
    font-size: 14px;
  }
  .elem:nth-child(5n-4),
  .elem:nth-child(5n) {
    transform: none;
  }
  .elem:nth-child(5n-3),
  .elem:nth-child(5n-1) {
    transform: none;
  }
  .elem.hide {
    display: none;
  }
  .elem--empty {
    display: none;
  }
  .fly {
    transform: none;
    opacity: 1;
  }
  .fly-block {
    flex: 1;
  }
  .float {
    display: none;
  }
  .office {
    width: 300px;
    height: 440px;
    border-radius: 22px;
    margin: 20px auto;
    box-shadow: none;
  }
  .office__logo {
    width: 100px;
    height: 100px;
    border: 6px solid #fff;
    top: 17px;
    left: 17px;
    box-shadow: 0 18px 22px rgba(46, 46, 46, 0.15);
  }
  .office__links {
    font-size: 13px;
    margin-top: 10px;
  }
  .office__content {
    padding: 25px;
    font-size: 174px;
    line-height: 120%;
  }
  .office__btns {
    padding: 30px 50px;
  }
  .office__btns .btn {
    margin: 8px 0;
  }
  .office__title {
    font-size: 19px;
    margin-bottom: 20px;
  }
  .office.active {
    box-shadow: 0 0 30px rgba(251, 185, 0, 0.5);
  }
  .catalog-select {
    margin: -90px 0 0 0;
    position: relative;
    z-index: 999;
  }
  .catalog-select__inner {
    width: 210px;
    left: auto;
    right: 24px;
    margin: 25px 0 0 0;
  }
  .text {
    font-size: 15px;
    line-height: 25px;
  }
  .text--small {
    font-size: 14px;
    line-height: 25px;
  }
  .text--mobile {
    font-size: 17px;
    line-height: 28px;
  }
  .text--mobile-big {
    font-size: 20px;
    line-height: 25px;
  }
  .children {
    width: 320px;
    height: 283px;
  }
  .form {
    width: 100%;
    margin: 25px auto 0;
  }
  .form__row {
    margin-top: 20px;
  }
  .form__row--btns {
    margin-top: 30px;
    text-align: left;
  }
  .form__row--flex {
    display: block;
  }
  .form__row--center {
    text-align: center;
  }
  .form__col {
    width: 100%;
  }
  .form__col + .form__col {
    margin-top: 20px;
  }
  .form-elem__title {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 15px;
  }
  .form--2 {
    width: 100%;
  }
  .form--2 .form__row {
    margin-top: 20px;
  }
  .form--2 .form__row--btns {
    margin-top: 30px;
  }
  input[type="text"].custom-input,
  input[type="password"].custom-input {
    border-radius: 5px;
    height: 44px;
    width: 100%;
    padding: 0 20px;
    font-size: 18px;
  }
  .badge {
    width: 80px;
    height: 80px;
  }
  .contacts {
    display: block;
  }
  .contacts--big {
    margin: 0 -10px 240px;
    border-radius: 22px;
    padding: 35px 25px 1px;
  }
  .contacts--big .contact {
    width: 100%;
    margin-bottom: 40px;
  }
  .contacts--big .contact__title {
    font-size: 30px;
    margin-bottom: 25px;
  }
  .contacts--big .contact__text {
    font-size: 17px;
  }
  .contact {
    width: 100%;
    margin-bottom: 40px;
    padding: 0;
  }
  .contact__title {
    font-size: 30px;
    margin-bottom: 25px;
  }
  .contact__text {
    font-size: 15px;
    line-height: 150%;
  }
  .partner {
    width: 112px;
    height: 80px;
    margin: 50px 20px 0;
    padding-top: 10px;
  }
  .partner img {
    max-width: 60%;
    max-height: 60%;
  }
  .partner:after {
    height: 112px;
  }
  .partner:hover {
    padding: 20px 0;
    height: 112px;
    margin-top: -35px;
  }
  .news {
    margin-bottom: 50px;
  }
  .news__pic {
    width: 95%;
    margin: 0 0 20px 24px;
    text-align: left;
    max-height: none;
  }
  .news__pic img {
    max-height: 320px;
    margin-top: 0;
  }
  .news__content {
    font-size: 15px;
    line-height: 28px;
  }
  .news__title {
    font-size: 29px;
    width: 100%;
    margin-bottom: 20px;
  }
  .news__text {
    width: 100%;
  }
  .news__cut {
    margin-bottom: 20px;
  }
  .news__btns {
    margin-top: 25px;
  }
  .news:nth-child(2n) .news__pic {
    margin-left: 24px;
  }
  .news-block {
    padding: 0 24px 0;
  }
  .news-loader {
    margin: 30px auto 70px;
    border-bottom: 3px solid #000;
    width: 150px;
    height: 100px;
  }
  .news-loader span {
    width: 82px;
    height: 82px;
  }
  .cart {
    margin: 10px -15px;
  }
  .cart__header {
    display: none;
  }
  .cart__row {
    flex-wrap: wrap;
    justify-content: space-between;
    border-radius: 5px;
    margin-bottom: 2px;
    padding: 10px;
  }
  .cart__col {
    font-size: 10px;
    text-transform: uppercase;
  }
  .cart__col--center {
    text-align: center;
  }
  .cart__col--pic {
    padding-left: 0;
  }
  .cart__col--description {
    padding: 10px 0 15px;
    text-transform: none;
    font-size: 12px;
  }
  .cart__col--name {
    font-size: 12px;
    display: flex;
    justify-content: space-between;
  }
  .cart__col:nth-child(1) {
    width: 35px;
  }
  .cart__col:nth-child(2) {
    width: calc(100% - 9.33vw);
  }
  .cart__col:nth-child(3) {
    width: 100%;
    flex: auto;
  }
  .cart__col:nth-child(4) {
    width: 90px;
  }
  .cart__col:nth-child(5) {
    width: 100px;
  }
  .cart__col:nth-child(6) {
    width: 140px;
    text-align: right;
  }
  .cart__col:nth-child(7) {
    display: none;
  }
  .cart__col input[type="text"].custom-input {
    width: 100px;
    height: 36px;
    font-size: 14px;
  }
  .cart__float {
    width: 171px;
    height: 268px;
    box-shadow: 0 0 29px rgba(168, 168, 168, 0.9);
    left: 80%;
    top: -20px;
    transform: none;
  }
  .popup {
    width: 100%;
    border-radius: 0;
    overflow: hidden;
    overflow-y: scroll!important;
    height: 100%;
    padding: 40px 24px 24px;
  }
  .popup__close {
    width: 38px;
    height: 38px;
    z-index: 2;
    top: 10px;
    right: 10px;
  }
  .popup__close img,
  .popup__close svg {
    width: 14px;
  }
  .fancybox-slide--html {
    padding: 0;
  }
  .back {
    font-size: 10px;
  }
  .product {
    padding: 0 24px 24px;
  }
  .product__inner {
    display: block;
  }
  .product__imgs {
    width: 100vw;
    height: 590px;
    margin: 0 0 35px -24px;
  }
  .product__imgs:hover .product__img {
    opacity: 1;
  }
  .product__imgs:hover .product__img--hover {
    opacity: 1;
  }
  .product__imgs:hover .product__img--only {
    opacity: 1;
  }
  .product__img {
    border-radius: 0;
  }
  .product__img--hover {
    opacity: 1;
  }
  .product__content {
    width: 100%;
    height: auto;
    display: block;
    padding-bottom: 0;
  }
  .product__content--long {
    padding-bottom: 0;
  }
  .product__scroll {
    height: auto;
    padding-right: 0;
    margin-right: 0;
  }
  .product__title {
    font-size: 23px;
    margin-bottom: 25px;
    margin-top: 5px;
  }
  .product__text {
    font-size: 18px;
    line-height: 120%;
  }
  .product__description {
    font-size: 15px;
    line-height: 22px;
    margin-top: 25px;
  }
  .product__buy {
    margin: 30px 0;
    position: relative;
    bottom: auto;
    border: 1px solid #2e2e2e;
    border-radius: 5px;
    padding: 15px;
  }
  .product__price {
    font-size: 22px;
    margin-bottom: 15px;
  }
  .product__price input.custom-input {
    width: 150px;
  }
  .product__btn {
    margin-bottom: 0;
  }
  .product__btn .btn {
    width: 100%;
  }
  .product__controls {
    text-align: center;
    margin-bottom: 24px;
  }
  .product__controls .btn {
    margin: 0 5px;
  }
  .delivery {
    width: 100%;
    flex-direction: row;
    justify-content: space-between;
    margin-top: 20px;
  }
  .delivery-icon {
    width: 184px;
    height: 66px;
    border-radius: 12px;
    border: 2px solid #000;
    margin-bottom: 20px;
  }
  .delivery-icon:hover {
    border-width: 3px;
  }
  .delivery-icon:last-child {
    margin-left: -20px;
  }
  .delivery--col {
    display: block;
    margin-top: 30px;
  }
  .delivery--col .delivery-icon {
    margin: 0;
  }
  .delivery--col .delivery-icon:last-child {
    margin: 15px 0 0 0;
  }
  .shops__list .office {
    width: 100%;
    right: 0;
    top: 10px;
    height: auto;
    position: relative;
    display: none;
  }
  .shops__list .office.active {
    display: block;
  }
  .shops__map {
    height: 70vh;
  }
  .shops__map .map {
    box-shadow: 0 0 18px rgba(0, 0, 0, 0.06);
    border-radius: 22px;
  }
  body.open .hamburger span:first-child {
    margin-bottom: -1.2vw;
  }
  body.open .hamburger span:last-child {
    margin-top: 0.53333333vw;
  }
  .logo {
    background-size: 23.46666667vw auto;
    width: 29.33333333vw;
    height: 29.33333333vw;
    border: 2.66666667vw solid #fcf4e7;
  }
  .preload {
    font-size: 7.2vw;
  }
  .preload .logo {
    margin-bottom: 4vw;
  }
  .btn {
    height: 9.6vw;
    font-size: 2.66666667vw;
    line-height: 2.66666667vw;
    padding: 0 4vw;
    border-radius: 1.33333333vw;
  }
  .btn .icon {
    margin-right: 2.66666667vw;
  }
  .btn--big {
    height: 10.66666667vw;
    font-size: 2.93333333vw;
    line-height: 2.93333333vw;
  }
  .btn--small {
    height: 8.53333333vw;
    font-size: 2.13333333vw;
    line-height: 2.13333333vw;
  }
  .btn--arrow {
    font-size: 6.4vw;
    line-height: 6.93333333vw;
    width: 11.73333333vw;
    height: 11.73333333vw;
  }
  .btn--fixed {
    min-width: 42.66666667vw;
  }
  .btn--special-1 {
    padding-left: 1.86666667vw;
  }
  .btn--special-1 .icon {
    margin-right: 2.66666667vw;
  }
  .btn--cart {
    height: 11.73333333vw;
    padding: 0 4vw;
  }
  .btn--cart > span span {
    margin-top: 0.53333333vw;
  }
  .icon--cart {
    width: 5.86666667vw;
    height: 5.86666667vw;
  }
  .icon--wa {
    width: 8.53333333vw;
    height: 8.53333333vw;
  }
  .icon--pic {
    width: 5.86666667vw;
    height: 5.86666667vw;
  }
  .cabinet {
    font-size: 3.2vw;
    border-radius: 1.6vw;
    height: 11.73333333vw;
    padding: 0 4.26666667vw;
    margin-left: 5.86666667vw;
  }
  .cabinet a i {
    margin-right: 2.66666667vw;
  }
  .cabinet-mobile {
    margin-top: 2.66666667vw;
  }
  .cabinet-mobile .btn {
    height: 11.73333333vw;
  }
  header {
    padding: 4vw 6.66666667vw 4vw 4vw;
    height: 40vw;
  }
  .header__price {
    margin-top: 8.8vw;
    font-size: 4.8vw;
  }
  .header--cart .logo {
    width: 14.66666667vw;
    height: 14.66666667vw;
    border-width: 1.06666667vw;
    background-size: 12.8vw;
    margin-right: 5.33333333vw;
  }
  .header--cart .cabinet {
    margin-left: 5.33333333vw;
  }
  .header__row--order {
    margin-left: -18.66666667vw;
  }
  .hamburger {
    width: 6.66666667vw;
    height: 3.73333333vw;
  }
  .hamburger span {
    margin: 0.53333333vw 0;
    height: 0.8vw;
  }
  .alert {
    bottom: 12vw;
    border-radius: 5.86666667vw;
    padding: 8vw 9.33333333vw;
    width: 93.33333333vw;
    font-size: 3.2vw;
    line-height: 4.26666667vw;
  }
  .alert__title {
    margin-bottom: 5.33333333vw;
  }
  .alert__btns {
    margin-top: 9.33333333vw;
  }
  .alert__btns .btn {
    margin-right: 3.2vw;
  }
  .alert:after {
    width: 6.93333333vw;
    height: 6.93333333vw;
  }
  .content {
    padding: 0 6.4vw;
  }
  .up {
    width: 13.33333333vw;
    height: 13.33333333vw;
    box-shadow: 0 0 7.73333333vw rgba(199, 184, 165, 0.17);
    bottom: 5.33333333vw;
    right: 5.33333333vw;
    font-size: 9.33333333vw;
    line-height: 9.33333333vw;
    padding-bottom: 1.86666667vw;
  }
  .page--catalog {
    margin-bottom: 13.33333333vw;
  }
  .page--catalog .title {
    text-align: left;
    padding: 0 6.4vw;
  }
  .page--mobile {
    padding-top: 26.66666667vw;
  }
  .page--1 {
    padding: 0 6.4vw;
  }
  .page--1 .title {
    margin-bottom: 114.66666667vw;
  }
  .page--1 .pic {
    width: 82.66666667vw;
    height: 141.33333333vw;
    top: 50.66666667vw;
  }
  .page--2 {
    padding: 12vw 6.4vw 0;
  }
  .page--2 .title {
    margin-bottom: 13.33333333vw;
  }
  .page--2 .slider {
    margin-bottom: 18.66666667vw;
  }
  .page--2 .sun {
    top: -26.66666667vw;
    margin-left: -44.53333333vw;
  }
  .page--3 {
    padding: 16vw 0 0;
  }
  .page--3 .sun {
    bottom: -72vw;
    margin-left: -56vw;
  }
  .page--3 .block .title {
    font-size: 9.06666667vw;
  }
  .page--3 .block .btns {
    margin-top: 6.66666667vw;
  }
  .page--4 {
    padding: 12vw 0 9.33333333vw;
  }
  .page--4 .slider {
    margin-top: 8vw;
  }
  .page--5 {
    padding: 106.66666667vw 6.4vw 18.66666667vw;
  }
  .page--5 .block {
    padding: 9.33333333vw;
    box-shadow: 0 2.4vw 24.26666667vw rgba(46, 46, 46, 0.07);
  }
  .page--6 {
    padding: 0 6.4vw;
  }
  .page--6 .title {
    margin-bottom: 6.66666667vw;
  }
  .page--6 .pic {
    width: 73.33333333vw;
    margin-bottom: 8vw;
  }
  .page--6 .text {
    width: 80%;
    margin: 0 auto 30 37500vw;
  }
  .page--6 .badge {
    left: -8vw;
    bottom: 22.66666667vw;
  }
  .page--7 {
    padding: 9.33333333vw 6.4vw 0;
  }
  .page--7 .pic {
    margin: 6.66666667vw 0 0 -6.4vw;
  }
  .page--7 .sun {
    top: -17.33333333vw;
    left: 53.33333333vw;
  }
  .page--7 .slider {
    margin-top: 21.33333333vw;
    left: -6.4vw;
    margin-bottom: 8vw;
  }
  .page--8 {
    padding: 6.66666667vw 6.4vw;
  }
  .page--8 .title {
    margin-bottom: 8vw;
  }
  .page--8 .text {
    margin: 0 auto 6.66666667vw;
  }
  .page--8 .text--2 {
    margin: 6.66666667vw 0 0;
  }
  .page--9 {
    padding: 8vw 6.4vw 0;
  }
  .page--9 .slider {
    left: -6.4vw;
    margin-bottom: 16vw;
  }
  .page--9 .title {
    margin-bottom: 9.33333333vw;
  }
  .page--9 .badge {
    right: 6.4vw;
    top: -13.33333333vw;
  }
  .page--10 {
    padding: 12vw 6.4vw 0;
  }
  .page--10 .text {
    margin: 0 auto 29.33333333vw;
  }
  .page--10 .title {
    margin-bottom: 10.66666667vw;
  }
  .page--10 .sun {
    margin-left: -56vw;
    margin-top: -40vw;
  }
  .page--10 .pic {
    margin-left: -6.4vw;
    height: 96vw;
  }
  .page--11 {
    padding: 0 6.4vw;
  }
  .page--11 .title {
    margin-bottom: 8vw;
  }
  .page--11 .block {
    margin-top: -12vw;
  }
  .page--11 .pic {
    left: -6.4vw;
    height: 93.33333333vw;
  }
  .page--12 {
    padding-top: 9.33333333vw;
    padding-bottom: 74.66666667vw;
  }
  .page--12 .sun {
    margin-left: -74.66666667vw;
    margin-top: -34.66666667vw;
  }
  .page--12 .children {
    bottom: -10.66666667vw;
  }
  .page--12 .btns {
    margin-top: 10.66666667vw;
  }
  .page--13 {
    padding: 0 6.4vw 0;
  }
  .page--13 .title {
    margin-bottom: 6.66666667vw;
  }
  .page--13 .pic {
    left: auto;
    width: 80vw;
    top: 0;
    margin-bottom: 6.66666667vw;
    right: -2.66666667vw;
  }
  .page--13 .btns {
    margin-top: 8vw;
  }
  .page--14 {
    padding: 10.66666667vw 6.66666667vw;
  }
  .page--14 .sun {
    margin-right: -74.66666667vw;
    bottom: -114.66666667vw;
  }
  .page--14 .children {
    bottom: -10.66666667vw;
  }
  .page--15 {
    padding-top: 10.66666667vw;
  }
  .page--16 {
    padding: 0 0 10.66666667vw;
  }
  .footer {
    padding: 6.4vw 6.4vw 0;
  }
  .footer__col {
    width: 41.33333333vw;
  }
  .footer .logo {
    width: 40vw;
    height: 40vw;
  }
  .copyright {
    font-size: 3.2vw;
    padding: 2.66666667vw 0 6.4vw;
  }
  .social {
    margin-bottom: 2.66666667vw;
  }
  .social-item {
    margin: 0 2.4vw;
    width: 6.66666667vw;
    height: 6.66666667vw;
    border-radius: 1.33333333vw;
  }
  .menu {
    padding: 16vw 0;
  }
  .menu-item {
    font-size: 5.86666667vw;
    margin: 2.13333333vw 0;
    height: 11.73333333vw;
    border-bottom-width: 0.53333333vw;
  }
  .menu-item.active {
    padding: 0 6.66666667vw;
    border-radius: 1.33333333vw;
    margin: 2.13333333vw 0;
  }
  .menu--footer {
    margin: 0 0 0 -2.4vw;
    padding: 0;
  }
  .menu--footer .menu-item {
    font-size: 4.8vw;
    padding: 0 1.86666667vw;
    border-radius: 2.13333333vw;
    height: 8vw;
    margin: 0 0 1.33333333vw;
  }
  .menu--footer .menu-item.active,
  .menu--footer .menu-item:hover {
    padding: 0 1.86666667vw;
  }
  .menu .links {
    margin-top: 5.33333333vw;
  }
  .menu .under {
    margin-top: 8vw;
    font-size: 3.2vw;
  }
  .block {
    font-size: 4vw;
    line-height: 5.33333333vw;
    border-radius: 5.86666667vw;
    padding: 8vw;
  }
  .block--clear {
    padding: 0;
  }
  .block--form {
    padding: 9.33333333vw;
  }
  .block title--sm {
    margin-bottom: 6.66666667vw;
  }
  .btns {
    margin-top: 6.66666667vw;
  }
  .btns--2 {
    margin-top: 9.33333333vw;
  }
  .title {
    font-size: 8vw;
  }
  .title--big,
  .title--verybig,
  .title--extra,
  .title--xs {
    font-size: 8.53333333vw;
  }
  .title--sm {
    font-size: 4.8vw;
  }
  .title--mobile {
    font-size: 6.66666667vw;
  }
  .title--mobile-sm {
    font-size: 5.86666667vw;
  }
  .title--mobile-md {
    font-size: 7.73333333vw;
  }
  .title--mobile-lg {
    font-size: 9.33333333vw;
  }
  .title--mobile-big {
    font-size: 10.4vw;
  }
  .title--mobile-xl {
    font-size: 12vw;
  }
  .title--mobile-extra {
    font-size: 13.33333333vw;
  }
  .sun--1 {
    width: 89.06666667vw;
    height: 89.06666667vw;
  }
  .sun--2 {
    width: 112vw;
    height: 112vw;
  }
  .sun--3 {
    width: 64vw;
    height: 64vw;
  }
  .sun--4 {
    width: 149.33333333vw;
    height: 149.33333333vw;
  }
  .slider--1 .swiper-container {
    width: 100vw;
  }
  .slider--1 .slider-item {
    width: 100vw;
    height: 82.66666667vw;
  }
  .slider--3 .swiper-container,
  .slider--4 .swiper-container {
    width: 100vw;
  }
  .slider--3 .slider-item,
  .slider--4 .slider-item {
    width: 100vw;
    height: 66.66666667vw;
  }
  .slider-controls--1,
  .slider-controls--4 {
    bottom: -9.33333333vw;
  }
  .slider-controls--center .swiper-button-next,
  .slider-controls--center .swiper-button-prev {
    margin: 0 1.33333333vw;
  }
  .slider-controls--2 {
    margin-top: 2.66666667vw;
    padding: 0 6.4vw;
  }
  .slider-controls--4 .swiper-button-next,
  .slider-controls--4 .swiper-button-prev {
    margin: 0 0 0 2.66666667vw;
  }
  p + p {
    margin-top: 4vw;
  }
  .swiper-button-next,
  .swiper-button-prev {
    margin: 0 0 0 2.66666667vw;
    padding-bottom: 0.53333333vw;
  }
  .swiper-pagination-bullet {
    width: 2.4vw;
    height: 2.4vw;
    margin: 0 1.6vw;
  }
  .grid {
    padding: 0 2.13333333vw;
    margin-top: 8vw;
  }
  .elem {
    margin: 1.33333333vw 0;
    box-shadow: 0 0 4.8vw rgba(0, 0, 0, 0.06);
    border-radius: 5.86666667vw;
    width: 46.4vw;
  }
  .elem__pics {
    height: 66.66666667vw;
  }
  .elem__pic {
    border-radius: 5.86666667vw 5.86666667vw 0 0;
  }
  .elem-fly {
    padding: 4vw 5.33333333vw;
    border-radius: 0 0 5.86666667vw 5.86666667vw;
  }
  .elem-fly__title {
    font-size: 3.46666667vw;
    height: 12vw;
  }
  .elem-fly__price {
    margin-top: 2.66666667vw;
    font-size: 3.73333333vw;
  }
  .office {
    width: 80vw;
    height: 117.33333333vw;
    border-radius: 5.86666667vw;
    margin: 5.33333333vw auto;
  }
  .office__logo {
    width: 26.66666667vw;
    height: 26.66666667vw;
    border: 1.6vw solid #fff;
    top: 4.53333333vw;
    left: 4.53333333vw;
    box-shadow: 0 4.8vw 5.86666667vw rgba(46, 46, 46, 0.15);
  }
  .office__content {
    padding: 6.66666667vw;
    font-size: 4.53333333vw;
  }
  .office__links {
    font-size: 3.46666667vw;
    margin-top: 2.66666667vw;
  }
  .office__btns {
    padding: 8vw 13.33333333vw;
  }
  .office__btns .btn {
    margin: 2.13333333vw 0;
  }
  .office__title {
    font-size: 5.06666667vw;
    margin-bottom: 5.33333333vw;
  }
  .office.active {
    box-shadow: 0 0 8vw rgba(251, 185, 0, 0.5);
  }
  .catalog-select {
    margin: -24vw 0 0 0;
  }
  .catalog-select__inner {
    width: 56vw;
    right: 6.4vw;
    margin: 6.66666667vw 0 0 0;
  }
  .text {
    font-size: 4vw;
    line-height: 6.66666667vw;
  }
  .text--small {
    font-size: 3.73333333vw;
    line-height: 6.66666667vw;
  }
  .text--mobile {
    font-size: 4.53333333vw;
    line-height: 7.46666667vw;
  }
  .text--mobile-big {
    font-size: 5.33333333vw;
    line-height: 6.66666667vw;
  }
  .children {
    width: 85.33333333vw;
    height: 75.46666667vw;
  }
  .form {
    margin: 6.66666667vw auto 0;
  }
  .form__row {
    margin-top: 5.33333333vw;
  }
  .form__row--btns {
    margin-top: 8vw;
  }
  .form__col + .form__col {
    margin-top: 5.33333333vw;
  }
  .form-elem__title {
    font-size: 4.8vw;
    line-height: 6.4vw;
    margin-bottom: 4vw;
  }
  .form--2 .form__row {
    margin-top: 5.33333333vw;
  }
  .form--2 .form__row--btns {
    margin-top: 8vw;
  }
  input[type="text"].custom-input,
  input[type="password"].custom-input {
    border-radius: 1.33333333vw;
    height: 11.73333333vw;
    padding: 0 5.33333333vw;
    font-size: 4.8vw;
  }
  .badge {
    width: 21.33333333vw;
    height: 21.33333333vw;
  }
  .contacts--big {
    margin: 0 -2.66666667vw 64vw;
    border-radius: 5.86666667vw;
    padding: 9.33333333vw 6.66666667vw 0.26666667vw;
  }
  .contacts--big .contact {
    margin-bottom: 10.66666667vw;
  }
  .contacts--big .contact__title {
    font-size: 8vw;
    margin-bottom: 6.66666667vw;
  }
  .contacts--big .contact__text {
    font-size: 4vw;
  }
  .contact {
    margin-bottom: 10.66666667vw;
  }
  .contact__title {
    font-size: 8vw;
    margin-bottom: 6.66666667vw;
  }
  .contact__text {
    font-size: 4vw;
  }
  .partner {
    width: 29.86666667vw;
    height: 21.33333333vw;
    margin: 13.33333333vw 5.33333333vw 0;
    padding-top: 2.66666667vw;
  }
  .partner:after {
    height: 29.86666667vw;
  }
  .partner:hover {
    padding: 5.33333333vw 0;
    height: 29.86666667vw;
    margin-top: -9.33333333vw;
  }
  .news {
    margin-bottom: 13.33333333vw;
  }
  .news__pic {
    margin: 0 0 5.33333333vw 6.4vw;
  }
  .news__pic img {
    max-height: 85.33333333vw;
  }
  .news__content {
    font-size: 4vw;
    line-height: 7.46666667vw;
  }
  .news__title {
    font-size: 7.73333333vw;
    width: 100%;
    margin-bottom: 5.33333333vw;
  }
  .news__cut {
    margin-bottom: 5.33333333vw;
  }
  .news__btns {
    margin-top: 6.66666667vw;
  }
  .news:nth-child(2n) .news__pic {
    margin-left: 6.4vw;
  }
  .news-block {
    padding: 0 6.4vw 0;
  }
  .news-loader {
    margin: 8vw auto 18.66666667vw;
    border-bottom: 0.8vw solid #000;
    width: 40vw;
    height: 26.66666667vw;
  }
  .news-loader span {
    width: 21.86666667vw;
    height: 21.86666667vw;
  }
  .cart {
    margin: 2.66666667vw -4vw;
  }
  .cart__row {
    border-radius: 1.33333333vw;
    margin-bottom: 0.53333333vw;
    padding: 2.66666667vw;
  }
  .cart__col {
    font-size: 2.66666667vw;
  }
  .cart__col--description {
    padding: 2.66666667vw 0 4vw;
    font-size: 3.2vw;
  }
  .cart__col--name {
    font-size: 3.2vw;
  }
  .cart__col:nth-child(1) {
    width: 9.33333333vw;
  }
  .cart__col:nth-child(4) {
    width: 24vw;
  }
  .cart__col:nth-child(5) {
    width: 26.66666667vw;
  }
  .cart__col:nth-child(6) {
    width: 37.33333333vw;
  }
  .cart__col input[type="text"].custom-input {
    width: 26.66666667vw;
    height: 9.6vw;
    font-size: 3.73333333vw;
  }
  .cart__float {
    width: 45.6vw;
    height: 71.46666667vw;
    box-shadow: 0 0 7.73333333vw rgba(168, 168, 168, 0.9);
    top: -5.33333333vw;
  }
  .popup {
    padding: 10.66666667vw 6.4vw 6.4vw;
  }
  .popup__close {
    width: 10.13333333vw;
    height: 10.13333333vw;
    top: 2.66666667vw;
    right: 2.66666667vw;
  }
  .popup__close img,
  .popup__close svg {
    width: 3.73333333vw;
  }
  .back {
    font-size: 2.66666667vw;
  }
  .product {
    padding: 0 6.4vw 6.4vw;
  }
  .product__imgs {
    height: 157.33333333vw;
    margin: 0 0 9.33333333vw -6.4vw;
  }
  .product__title {
    font-size: 6.13333333vw;
    margin-bottom: 6.66666667vw;
    margin-top: 1.33333333vw;
  }
  .product__text {
    font-size: 4.8vw;
  }
  .product__description {
    font-size: 4vw;
    line-height: 5.86666667vw;
    margin-top: 6.66666667vw;
  }
  .product__buy {
    margin: 8vw 0;
    border-radius: 1.33333333vw;
    padding: 4vw;
  }
  .product__price {
    font-size: 5.86666667vw;
    margin-bottom: 4vw;
  }
  .product__price input.custom-input {
    width: 40vw;
  }
  .product__controls {
    margin-bottom: 6.4vw;
  }
  .product__controls .btn {
    margin: 0 1.33333333vw;
  }
  .delivery {
    margin-top: 5.33333333vw;
  }
  .delivery-icon {
    width: 49.06666667vw;
    height: 17.6vw;
    border-radius: 3.2vw;
    margin-bottom: 5.33333333vw;
  }
  .delivery-icon:last-child {
    margin-left: -5.33333333vw;
  }
  .delivery--col {
    margin-top: 8vw;
  }
  .delivery--col .delivery-icon {
    margin: 0;
  }
  .delivery--col .delivery-icon:last-child {
    margin: 4vw 0 0 0;
  }
  .shops__list .office {
    top: 2.66666667vw;
  }
  .shops__map {
    height: 70vh;
  }
  .shops__map .map {
    box-shadow: 0 0 4.8vw rgba(0, 0, 0, 0.06);
    border-radius: 5.86666667vw;
  }
}
/*# sourceMappingURL=style.css.map */
