@font-face {
  font-family: 'Grotesk';
  font-display: swap;
  font-style: normal;
  font-weight: 400;
  src: url(../fonts/grotesk.ttf);
}

@font-face {
  font-family: 'Znikomit';
  font-display: swap;
  font-style: normal;
  font-weight: 400;
  src: url(../fonts/znikomit.otf);
}

/* main styles */
::-webkit-scrollbar {
  width: 0;
}

::selection {
  background-color: rgba(255, 192, 203, 1);
}

*,
*::after,
*::before {
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
          box-sizing: border-box;
  cursor: url(../img/cursor.png), auto;
  transition: 0.5s ease-out;
}

body {
  margin: 0;
  font-family: "Grotesk", sans-serif;
  font-weight: 400;
  font-size: 0.95vw;
  line-height: 1;
  color: #282828;
  background-color: #ffffff;
  position: relative;
  width: 100%;
  overflow-x: hidden;
  position: relative;
}

body::before,
body::after {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  transition: transform 0.7s ease-in;
}

body::before {
  background-color: #f0f8ff;
  z-index: 10;
  transform: translateX(0%);
  transition-delay: 0.7s;
  width: 200vw;
}

body::after {
  background-color: #ffedf2;
  z-index: 11;
  transform: translateX(-100%);
}

body.loaded::before,
body.loaded::after {
  transform: translateX(100%);
}

a {
  color: #8b8f8f;
  text-decoration: none;
  transition: .3s;
}

a:hover,
a:focus {
  color: #1c3232;
}

a, input, textarea, button, .btn {
  outline: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
}

a:hover,
button:hover,
.btn:hover,
a:hover *,
button:hover *,
.btn:hover * {
  cursor: url(../img/pointer.png), pointer;
}

svg {
  -webkit-transition: .3s;
  -o-transition: .3s;
  transition: .3s;
}

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

p {
  font-family: "Grotesk", sans-serif;
  font-weight: 400;
  font-size: inherit;
  color: inherit;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Grotesk', sans-serif;
  font-weight: 400;
  margin: 0;
}

h1, .h1 {
  font-size: 7vw;
  text-align: center;
  text-shadow: 10px 10px 0 rgba(255, 192, 203, 0.3);
}

h2, .h2 {
  font-size: 5vw;
  line-height: 1;
  text-shadow: 10px 10px 0 rgba(255, 192, 203, 0.3);
}

h3, .h3 {
  font-size: 2vw;
}

h4, .h4 {}
h5, .h5 {}
h6, .h6 {}

/* preloader */
.no-js .preloader {
  display: none;
}

.preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: linear-gradient(145deg, #f0f8ff 50%, #ffedf2 50%);
  z-index: 99;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 0.5s ease-in;
}

.loaded .preloader {
  transform: translateY(-100%);
}

.preloader span {
  display: inline-block;
  width: 0;
  height: 0;
  padding: 40px 20px;
  background-image: linear-gradient(145deg, #d4e5f3, #ffedf2);
  transform: rotate(45deg);
  border: 1px solid #c4cfde;
  border-top-left-radius: 99px;
  border-bottom-right-radius: 99px;
  animation: flower 5s ease infinite alternate;
  position: absolute;
  left: 51%;
}

.loaded .preloader span {
  animation-play-state: paused;
}

@keyframes flower {
  0%, 10% {
    transform: rotate(56deg);
  }
  45%, 55% {
    transform: rotate(60deg);
  }
  90%, 100% {
    transform: rotate(64deg);
  }
}

/* header */
.main-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: auto;
  padding: 2vw;
  z-index: 11;
  pointer-events: none;
}

.main-nav {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
}

.main-logo {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 5.5vw;
  height: 5.5vw;
  pointer-events: auto;
  z-index: 1;
}

.main-logo img {
  filter: drop-shadow(4px 4px 0 rgba(255, 192, 203, 0.3));
}

.main-nav .icon-open {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  align-items: center;
  width: 3vw;
  height: 1.5vw;
  pointer-events: auto;
  transition-duration: 0.2s;
}

.main-nav .icon-open:hover,
.main-nav .icon-open:focus {
  padding-top: 0.3vw;
  padding-bottom: 0.3vw;
}

.goods-open .main-nav .icon-open,
.product-open .main-nav .icon-open {
  opacity: 0;
  pointer-events: none;
}

.main-nav .icon-open span {
  display: block;
  width: 3vw;
  height: 2px;
  flex-shrink: 0;
  background-color: #282828;
  box-shadow: 5px 5px 0 rgba(255, 192, 203, 0.3);
}

.main-nav .icon-open:hover span,
.main-nav .icon-open:focus span {
  box-shadow: 0 0 0 rgba(255, 192, 203, 0.3);
}

.main-menu-wrap {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-image: linear-gradient(145deg, #f0f8ff 50%, #ffedf2 50%);
  transition: 0.5s ease-in;
  transform: translateY(-100%);
  pointer-events: none;
  overflow: hidden;
}

.main-menu-wrap.open {
  transform: translateY(0);
  pointer-events: auto;
}

.main-menu-wrap::before,
.main-menu-wrap::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  transition: transform 0.7s ease-in;
}

.main-menu-wrap::before {
  background-color: #f0f8ff;
  z-index: 1;
  transform: translateY(0%);
  transition-delay: 0.5s;
  height: 200vh;
}

.main-menu-wrap::after {
  background-color: #ffedf2;
  z-index: 2;
  transform: translateY(-100%);
  transition-delay: 0.3s;
}

.main-menu-wrap.open::before,
.main-menu-wrap.open::after {
  transform: translateY(100%);
}

.main-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  cursor: url(../img/cross-out.png), auto;
}

.main-menu {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  margin-left: 10vw;
  transition: 0.5s ease-in;
  transform: translateY(40px);
  pointer-events: none;
  opacity: 0;
}

.main-menu-wrap.open .main-menu {
  transform: translateY(0);
  pointer-events: auto;
  opacity: 1;
  transition-delay: 1s;
}

.main-link {
  position: relative;
  display: inline-block;
  margin: 0.5vw 0;
  font-family: 'Grotesk', sans-serif;
  text-transform: capitalize;
  font-weight: 400;
  font-size: 3.5vw;
  color: #282828;
}

.main-link::before {
  content: attr(title);
  position: absolute;
  left: -10px;
  width: 0;
  padding-left: 10px;
  color: transparent;
  white-space: nowrap;
  transition: width 0.7s ease-in;
  overflow: hidden;
  z-index: -1;
}

.main-link:hover::before,
.main-link:focus::before {
  width: 110%;
  text-shadow: 5px 5px 0px rgba(255, 192, 203, 0.3);
}

/* nav */
.nav {
  position: fixed;
  top: 9vw;
  left: 2vw;
  bottom: 2vw;
  width: 5.5vw;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 1;
}

.nav a {
  position: relative;
  flex-shrink: 0;
  display: block;
  width: 1vw;
  height: 1vw;
  margin: 1vw;
  border: 2px solid rgba(255, 192, 203, 1);
  border-radius: 50%;
  background-color: #ffffff;
}

.nav a.active,
.nav a:hover {
  background-image: linear-gradient(-45deg, #f0f8ff 50%, rgba(255, 192, 203, 1) 50%);
  box-shadow: 0 0 0 2px #ffffff, 0 0 0 3px rgba(255, 192, 203, 1);
}

.nav a span {
  position: absolute;
  top: 50%;
  left: calc(100% + 1vw);
  transform: translateY(-50%) translateX(40px);
  padding: 0.3vw 0.7vw;
  border-left: 1px solid rgba(255, 192, 203, 1);
  border-radius: 0.2vw;
  opacity: 0;
  overflow: hidden;
  transition-duration: 0.3s;
  pointer-events: none;
}

.nav a:hover span {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}

/* banner */
.banner {
  position: relative;
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  align-items: center;
  height: 100vh;
  padding: 5vw;
  text-align: right;
}

.banner-title {
  z-index: 1;
}

.banner p {
  font-size: 1.5vw;
}

.banner img {
  width: 45vw;
  flex-shrink: 0;
}

/* advantage */
.advantage {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  align-self: center;
  flex-wrap: wrap;
  margin-bottom: 10vw;
  padding: 0 15vw;
  padding-top: 3vw;
}

.advantage .h2 {
  width: 100%;
  margin-bottom: 1vw;
  text-align: center;
}

.advantage-item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  width: 33.333%;
  text-align: center;
  font-size: 1.2vw;
  margin-top: 3vw;
}

.advantage-item:nth-child(1),
.advantage-item:nth-child(2) {
  width: 50%;
}

.advantage-item span {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: 'Znikomit', sans-serif;
  font-weight: 800;
  font-size: 4vw;
  text-shadow: 10px 10px 0 rgba(255, 192, 203, 0.3);
}

.advantage-item span::before {
  content: "";
  position: absolute;
  top: calc(50% - 2.5vw);
  left: calc(50% - 2.5vw);
  width: 5vw;
  height: 5vw;
  background-image: url(../img/rose.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  z-index: -6;
  transform: scale(0) rotate(40deg);
  transition: 0.5s ease-out;
  filter: invert(0.7) sepia(1) hue-rotate(-2deg);
  opacity: 0.5;
}

.advantage-item:hover span::before {
  transform: scale(1.2) rotate(0deg);
}

.advantage-item p {
  width: 12vw;
}

/* category */
.category-title {
  position: fixed;
  top: 50%;
  left: 17vw;
  z-index: 1;
  width: 20vw;
  text-align: center;
  pointer-events: none;
  opacity: 0;
  transform: translateY(-60%);
}

.category-title span {
  display: block;
  font-size: 1.5vw;
}

.category-list {
  position: relative;
}

.category-item {
  position: relative;
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  align-items: flex-start;
  margin-bottom: 3vw;
  padding: 0 11vw;
  /*overflow: hidden;*/
}

.category-content {
  position: relative;
  width: 65%;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  align-self: center;
  flex-shrink: 0;
  padding: 13vw 0;
  background-color: #ffffff;
  background-position: top left;
  background-size: contain;
}

.category-item-1 .category-content {
  background-image: url(../img/bg-1.png), linear-gradient(-260deg, #f0f8ff 50%, #ffedf2 50%);
}

.category-item-2 .category-content {
  background-image: url(../img/bg-2.png), linear-gradient(230deg, #ffedf2 50%, #f0f8ff 50%);
}

.category-item-3 .category-content {
  background-image: url(../img/bg-1.png), linear-gradient(-260deg, #f0f8ff 50%, #ffedf2 50%);
}

.category-item-4 .category-content {
  background-image: url(../img/bg-1.png), linear-gradient(230deg, #f0f8ff 50%, #ffedf2 50%);
}

/* product */
.product {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: auto;
  height: 13vw;
  z-index: 1;
}

.product.active {
  z-index: 10;
}

.product-1 {
  margin-left: 5vw;
}

.product-2 {
  margin-left: -25vw;
  margin-top: -3vw;
}

.product-3 {
  margin-left: 14vw;
  margin-top: 4vw;
}

.product-4 {
  margin-left: 30vw;
  margin-top: 2vw;
}

.product-5 {
  margin-left: -1vw;
}

.product-6 {
  margin-left: -37vw;
  margin-top: -5vw;
}

.product-7 {
  margin-left: 10vw;
}

.product-8 {
  margin-left: 33vw;
}

.product-9 {
  margin-left: 4vw;
}

.product-10 {
  margin-left: -20vw;
  margin-top: -3vw;
}

.product-11 {
  margin-left: 8vw;
}

.product-12 {
  margin-left: 30vw;
  margin-top: 2vw;
}

.product a {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
}

.product-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  opacity: 0;
}

.product-overlay.show {
  opacity: 1;
  z-index: 10;
  pointer-events: auto;
  cursor: url(../img/cross-out.png), auto;
}

.product-overlay.show * {
  cursor: url(../img/cross-out.png), auto;
}

.product-inner {
  position: fixed;
  background-color: #ffffff;
  width: 21vw;
  left: calc(50% - 10vw);
  z-index: 10;
  top: 50%;
  transform: translateY(-30%);
  padding: 2vw;
  padding-top: 6vw;
  transition: 0.5s ease;
  pointer-events: none;
  opacity: 0;
  border: 1px solid rgba(255, 192, 203, 0.3);
}

.product-overlay.show .product-inner {
  transform: translateY(-50%);
  pointer-events: auto;
  opacity: 1;
}

.product-inner .icon-close {
  position: absolute;
  width: 25px;
  height: 25px;
  right: 15px;
  top: 20px;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.product-inner .icon-close span {
  position: absolute;
  display: block;
  width: 100%;
  height: 1px;
  background-color: #000000;
}

.product-inner .icon-close span:first-of-type {
  transform: rotate(45deg);
}

.product-inner .icon-close span:last-of-type {
  transform: rotate(-45deg);
}

.product-inner h4,
.product-inner .h4 {
  font-family: 'Grotesk', sans-serif;
  font-weight: 400;
  font-size: 2vw;
  text-align: center;
  text-shadow: 10px 10px 0 rgba(255, 192, 203, 0.3);
}

.product-inner img {
  position: absolute;
  border-radius: 50%;
  left: calc(50% - 5vw);
  top: -5vw;
  width: 10vw;
  height: 10vw;
}

.product-info {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #dedede;
}

.product-info:last-of-type {
  border-bottom: none;
}

.product-info p:nth-of-type(1) {
  flex-shrink: 0;
  width: 40%;
  margin-right: 1vw;
}

.product-info p:nth-of-type(2) {
  text-align: right;
}

.img-wrap {
  width: 10vw;
  height: 10vw;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  z-index: 2;
  filter: drop-shadow(11px -5px 9px #919191);
  transform: rotate(30deg);
}

.product:nth-child(even) .img-wrap {
  transform: rotate(-30deg);
}

.img-wrap img {
  width: 100%;
  height: 100%;
  margin-bottom: 0.7vw;
  object-fit: contain;
  border-radius: 50%;
  transition: 0.5s ease;
}

.product a:hover .img-wrap img,
.product a:focus .img-wrap img {
  transform: rotate(-10deg) scale(1.2);
}

.product:nth-child(odd) a:hover .img-wrap img,
.product:nth-child(odd) a:focus .img-wrap img {
  transform: rotate(10deg) scale(1.2);
}

.product .img-wrap + h3 {
  position: relative;
  font-family: 'Grotesk', sans-serif;
  font-weight: 400;
  font-size: 1.5vw;
  color: rgba(0, 0, 0, 0.35);
  text-align: center;
  white-space: nowrap;
  line-height: 0;
  margin-top: 0.5vw;
  margin-bottom: 1.5vw;
  transition: 0.5s ease;
}

.product .img-wrap + h3 span {
  position: absolute;
  left: 0;
  right: 0;
  text-align: center;
  overflow: hidden;
  color: #282828;
  z-index: 5;
  height: 3vw;
  width: 0;
  top: calc(50% - 0.9vw);
  line-height: 1.2;
  transition: width 0.7s ease-in;
}

.product a:hover .img-wrap + h3 span,
.product a:focus .img-wrap + h3 span {
  width: 100%;
}

/* feedback */
.write-us {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 2vw 0 5vw;
  padding-top: 5vw;
}

.write-us .h2 {
  position: relative;
  flex-shrink: 0;
  width: 25vw;
  margin-right: 5vw;
  text-align: center;
  z-index: 1;
}

.feedback {
  width: 30vw;
  flex-shrink: 0;
}

.feedback-form {
  width: 100%;
}

.feedback-form p {
  position: relative;
  width: 100%;
}

.feedback input:not([type="submit"]),
.feedback textarea {
  width: 100%;
  font-family: "Grotesk", sans-serif;
  font-weight: 400;
  font-size: 1.2vw;
  padding-right: 6vw;
  padding-bottom: 0.5vw;
  cursor: url(../img/text.png), text;
  border: none;
  border-top: 2px solid rgba(255, 192, 203, 0.3);
  resize: none;
}

.feedback label {
  display: block;
  width: 100%;
  padding-bottom: 1vw;
  color: #282828;
}

.feedback input[type="submit"] {
  background-color: #fff;
  border: 1px solid #282828;
  padding: 1vw 1.5vw;
  font-family: "Grotesk", sans-serif;
  font-weight: 400;
  font-size: 0.95vw;
}

.feedback input[type="submit"]:hover,
.feedback input[type="submit"]:focus {
  background-color: rgba(255, 192, 203, 0.3);
}

/* location */
.location {
  padding-top: 3vw;
}

.location .h2 {
  position: relative;
  text-align: center;
  z-index: 2;
  margin-bottom: 4vw;
}

.location #map {
  height: 35vw;
}

.location #map,
.location #map *,
.location #map *::after,
.location #map *::before {
  transition: none;
}

.location #map > div {
  background-image: linear-gradient(-260deg, #f0f8ff 50%, #ffedf2 50%) !important;
}

.location #map .gm-style-pbc {
  display: none;
}

/* inner-page */
.inner-page .main-content {
  margin-top: 6vw;
}

.catalog {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  min-height: 20vw;
  margin: 5vw 10vw;
}

.filter {
  flex-shrink: 0;
  width: 20%;
}

.filter h4 {
  margin-bottom: 2vw;
}

.filter-item input[type="checkbox"] {
  display: none;
}

.filter-item label {
  position: relative;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  min-height: 2vw;
  margin: 1vw 0;
  padding-left: 3vw;
  cursor: url(../img/pointer.png), pointer;
}

.filter-item label::before {
  content: "";
  position: absolute;
  top: calc(50% - 1vw);
  left: 0;
  width: 2vw;
  height: 2vw;
  background-image: url(../img/checkbox.png);
  background-repeat: no-repeat;
  background-size: contain;
}

.filter-item label::after {
  content: "";
  position: absolute;
  top: calc(50% - 1vw);
  left: 0;
  width: 0;
  height: 2vw;
  background-image: url(../img/checked.png);
  background-repeat: no-repeat;
  background-size: 2vw;
}

.filter-item input:checked ~ label::after {
  width: 2.5vw;
}

.catalog-content {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  flex-shrink: 0;
  width: 67%;
  margin-left: auto;
}

.catalog-item {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: flex-start;
  align-self: flex-start;
  width: 100%;
  margin-bottom: 5vw;
  display: none;
}

.catalog-item.show {
  display: flex;
}

.catalog-item:last-of-type {
  margin-bottom: 0;
}

.catalog-item h2 {
  width: 100%;
  margin-bottom: 2vw;
}

.goods {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-shrink: 0;
  width: 25%;
  margin-bottom: 2vw;
}

.goods-link {
  color: #282828;
}

.goods .img-wrap {
  filter: none;
  transform: rotate(0deg);
  transition-duration: 0.3s;
  background-color: rgba(255, 192, 203, 0.3);
  margin-bottom: 1vw;
  border-radius: 50%;
}

.goods .img-wrap img {
  margin-bottom: -0.6vw;
}

.goods .h3 {
  font-size: 1.3vw;
  text-align: center;
}

.goods-inner {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-image: linear-gradient(145deg, #f0f8ff 50%, #ffedf2 50%);
  padding: 2vw;
  transform: translateY(-100%);
  pointer-events: none;
  overflow: hidden;
  z-index: 10;
}

.goods-inner.show,
.goods-inner.show * {
  transform: translateY(0);
  pointer-events: auto;
  cursor: url(../img/cross-out.png), auto;
}

.goods-inner::before,
.goods-inner::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  transition: transform 0.7s ease-in;
}

.goods-inner::before {
  background-color: #f0f8ff;
  z-index: 1;
  transform: translateY(0%);
  transition-delay: 0.5s;
  height: 200vh;
}

.goods-inner::after {
  background-color: #ffedf2;
  z-index: 2;
  transform: translateY(-100%);
  transition-delay: 0.3s;
}

.goods-inner.show::before,
.goods-inner.show::after {
  transform: translateY(100%);
}

.goods-inner h4 {
  font-size: 2.5vw;
  text-shadow: 10px 10px 0 rgba(255, 192, 203, 0.3);
  margin-top: 1vw;
  margin-bottom: 2vw;
}

.goods-inner img {
  margin-top: -5vw;
  margin-bottom: 1vw;
}

.goods-feature {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  width: 60%;
}

.goods-info {
  width: calc(33.333% - 2vw);
  margin: 1vw;
  text-align: center;
}

.goods-info p:first-of-type {
  font-weight: 800;
}

/* footer */
.main-footer {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 23vw;
  padding: 4vw;
  text-align: center;
}

.main-footer .main-logo img {
  filter: none;
}

.footer-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  margin-top: 2vw;
}

.footer-item {
  padding: 1vw;
}

.footer-link {
  font-size: 1.05vw;
  color: #282828;
  font-weight: 800;
}

.footer-link:hover,
.footer-link:focus {
  text-shadow: 2px 2px 0 rgba(255, 192, 203, 0.3);
}

.contact-list {
  margin: 1vw;
}

.contact-item {
  margin: 1vw;
  font-size: 1.05vw;
  color: #282828;
}

.contact-item:first-of-type {
  margin-bottom: 2vw;
}

.contact-list p {
  margin: 0;
}

.contact-item a {
  color: #282828;
}

.copyright-logo {
  position: relative;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  width: 6.428vw;
  height: 1.5vw;
  transition: .5s;
  transition-delay: .6s;
}

.copyright-logo span {
  font-weight: 400;
  font-size: 0.9vw;
  color: #282828;
  margin-right: 0.5vw;
}

.copyright-logo svg {
  width: 3.1vw;
  height: auto;
  opacity: 1;
  transform: none;
  top: auto;
  left: auto;
  flex-shrink: 0;
}

.copyright-logo .st0 {
  fill: #282828;
  stroke: #282828;
  stroke-width: 12;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-miterlimit: 10;
  margin-left: auto;
  -webkit-animation: st0 2s linear 0s infinite normal;
  -moz-animation: st0 2s linear 0s infinite normal;
    -o-animation: st0 2s linear 0s infinite normal;
       animation: st0 2s linear 0s infinite normal;
}

.copyright-logo .st1 {
  fill: #282828;
  stroke: #282828;
  stroke-width: 4;
  stroke-linecap: round;
  stroke-linejoin: bevel;
  opacity: 0 !important;
  -webkit-transition: .5s;
  -o-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}

.copyright-logo #st1 {
  -webkit-transition-delay: .1s;
  -o-transition-delay: .1s;
  -moz-transition-delay: .1s;
       transition-delay: .1s;
}

.copyright-logo #st2 {
  -webkit-transition-delay: .2s;
  -o-transition-delay: .2s;
  -moz-transition-delay: .2s;
       transition-delay: .2s;
}

.copyright-logo #st3 {
  -webkit-transition-delay: .3s;
  -o-transition-delay: .3s;
  -moz-transition-delay: .3s;
       transition-delay: .3s;
}

@media screen and (min-width:768px) {
  .copyright-logo:hover,
  .copyright-logo:focus {
      width: 8.428vw;
      -webkit-transition-delay: 0s;
      -o-transition-delay: 0s;
      -moz-transition-delay: 0s;
           transition-delay: 0s;
      overflow: visible;
  }
  .copyright-logo:hover span,
  .copyright-logo:focus span {
      width: auto;
      color: rgba(40, 40, 40, 1);
      -webkit-transition: .3s color;
      -o-transition: .3s color;
      -moz-transition: .3s color;
      transition: .3s color;
      -webkit-transition-delay: 1s;
      -o-transition-delay: 1s;
      -moz-transition-delay: 1s;
           transition-delay: 1s;
  }
  .copyright-logo:hover .st0,
  .copyright-logo:focus .st0 {
      -webkit-animation: none;
      -moz-animation: none;
        -o-animation: none;
           animation: none
  }
  .copyright-logo:hover .st1,
  .copyright-logo:focus .st1 {
      opacity: 1 !important;
  }
  .copyright-logo:hover #st1,
  .copyright-logo:focus #st1 {
      -webkit-transition-delay: .4s;
      -o-transition-delay: .4s;
      -moz-transition-delay: .4s;
           transition-delay: .4s;
  }
  .copyright-logo:hover #st2,
  .copyright-logo:focus #st2 {
      -webkit-transition-delay: .5s;
      -o-transition-delay: .5s;
      -moz-transition-delay: .5s;
           transition-delay: .5s;
  }
  .copyright-logo:hover #st3,
  .copyright-logo:focus #st3 {
      -webkit-transition-delay: .6s;
      -o-transition-delay: .6s;
      -moz-transition-delay: .6s;
           transition-delay: .6s;
  }
}

@-webkit-keyframes st0 {
  80% {
      stroke-width: 12;
  }
  95% {
      stroke-width: 24;
  }
  100% {
      stroke-width: 12;
  }
}

@-moz-keyframes st0 {
  80% {
      stroke-width: 12;
  }
  95% {
      stroke-width: 24;
  }
  100% {
      stroke-width: 12;
  }
}

@-o-keyframes st0 {
  80% {
      stroke-width: 12;
  }
  95% {
      stroke-width: 24;
  }
  100% {
      stroke-width: 12;
  }
}

@keyframes st0 {
  80% {
      stroke-width: 12;
  }
  95% {
      stroke-width: 24;
  }
  100% {
      stroke-width: 12;
  }
}

/* modal */
.modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 2vw;
  background-image: linear-gradient(145deg, #f0f8ff 50%, #ffedf2 50%);
  transition: 0.5s ease-in;
  transform: translateY(-100%);
  pointer-events: none;
  overflow: hidden;
  z-index: 10;
}

.modal.open {
  transform: translateY(0);
  pointer-events: auto;
  cursor: url(../img/cross-out.png), auto;
}

.modal::before,
.modal::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  transition: transform 0.7s ease-in;
}

.modal::before {
  background-color: #f0f8ff;
  z-index: 1;
  transform: translateY(0%);
  transition-delay: 0.5s;
  height: 200vh;
}

.modal::after {
  background-color: #ffedf2;
  z-index: 2;
  transform: translateY(-100%);
  transition-delay: 0.3s;
}

.modal.open::before,
.modal.open::after {
  transform: translateY(100%);
}

.modal-inner {
  max-height: 140px;
  margin: 10px 0;
  padding: 0 20px;
  overflow: auto;
}
.modal-inner::-webkit-scrollbar {
  width: 2px;
  height: 2px;
  border-radius: 5px;
}
.modal-inner::-webkit-scrollbar-track {
  background-color: rgba(255, 255, 255, 0.3);
}
.modal-inner::-webkit-scrollbar-thumb {
  background-color: #ffffff;
}

/* media */
@media screen and (min-width: 1200px) {
  .icon-close {
    display: none;
  }
  .goods-link:hover .img-wrap img,
  .goods-link:focus .img-wrap img {
    transform: translateY(-2.4vw) scale(1.5);
  }
  .product-inner .icon-close {
    display: none;
  }
}

@media screen and (min-width: 500px) {
  .icon-open-filter {
    display: none;
  }
}

@media screen and (max-width: 1199px) {
  body {
    font-size: 13px;
  }
  h1, .h1 {
    font-size: 90px;
  }
  h2, .h2 {
    font-size: 55px;
  }
  h3, .h3 {
    font-size: 25px;
  }
  .icon-close {
    position: fixed;
    display: flex;
    justify-content: center;
    align-items: center;
    right: 20px;
    top: 20px;
    width: 30px;
    height: 30px;
    padding: 0;
  }
  .icon-close span {
    position: absolute;
    display: block;
    width: 80%;
    height: 2px;
    background-color: #282828;
  }
  .icon-close span:first-of-type {
    transform: rotate(45deg);
  }
  .icon-close span:last-of-type {
    transform: rotate(-45deg);
  }
  .main-header {
    padding: 20px;
  }
  .main-logo {
    width: 70px;
    height: 70px;
  }
  .main-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }
  .main-nav .icon-open {
    width: 40px;
    height: 30px;
    padding: 7px 0;
  }
  .main-nav .icon-open:hover,
  .main-nav .icon-open:focus {
    padding-top: 10px;
    padding-bottom: 10px;
  }
  .main-nav .icon-open span {
    width: 30px;
    height: 2px;
  }
  .main-menu {
    margin-left: 100px;
  }
  .main-link {
    margin: 7px 0;
    font-size: 35px;
  }
  .nav {
    top: 100px;
    left: 20px;
    bottom: 20px;
    width: 60px;
  }
  .nav a {
    width: 17px;
    height: 17px;
    margin: 7px;
  }
  .nav a span {
    display: none;
  }
  .banner {
    padding: 20px 100px;
  }
  .banner p {
    font-size: 20px;
  }
  .banner img {
    width: 450px;
  }
  .advantage {
    margin-bottom: 100px;
    padding: 0 100px;
    padding-top: 30px;
  }
  .advantage .h2 {
    margin-bottom: 20px;
  }
  .advantage-item {
    margin-top: 30px;
    font-size: 14px;
  }
  .advantage-item span {
    font-size: 45px;
  }
  .advantage-item span::before {
    top: calc(50% - 30px);
    left: calc(50% - 30px);
    width: 60px;
    height: 60px;
  }
  .advantage-item p {
    width: 150px;
  }
  .category-item {
    padding: 0 100px;
    margin-bottom: 40px;
  }
  .category-title {
    top: 200px;
    left: 220px;
    width: 250px;
  }
  .category-title span {
    font-size: 19px;
  }
  .category-content {
    padding: 30px 0;
  }
  .category-item:nth-child(even) .category-content {
    background-image: linear-gradient(-260deg, #f0f8ff 50%, #ffedf2 50%);
  }
  .category-item:nth-child(odd) .category-content {
    background-image: linear-gradient(230deg, #ffedf2 50%, #e5f1fb 50%);
  }
  .product {
    height: 150px;
  }
  .product-1 {
    margin-left: 60px;
  }
  .product-2 {
    margin-top: -10px;
    margin-left: -300px;
  }
  .product-3 {
    margin-top: -30px;
    margin-left: 300px;
  }
  .product-4 {
    margin-top: -30px;
    margin-left: -140px;
  }
  .product-5 {
    margin-left: 190px;
  }
  .product-6 {
    margin-top: -30px;
    margin-left: -320px;
  }
  .product-7 {
    margin-left: 0;
  }
  .product-8 {
    margin-left: 400px;
  }
  .product-9 {
    margin-top: -60px;
    margin-left: -380px;
  }
  .product-10 {
    margin-top: -30px;
    margin-left: 100px;
  }
  .product-11 {
    margin-left: -240px;
  }
  .product-12 {
    margin-top: 0;
    margin-left: 400px;
    margin-bottom: 20px;
  }
  .img-wrap {
    width: 160px;
    height: 160px;
  }
  .img-wrap img {
    margin-bottom: 20px;
  }
  .product .img-wrap + h3 {
    font-size: 20px;
    margin-top: 20px;
    margin-bottom: 0;
  }
  .product .img-wrap + h3 span {
    height: 27px; 
    top: calc(50% - 12px);
  }
  .category-content {
    width: 695px;
    padding: 80px 0 140px;
  }
  .product-inner {
    width: 300px;
    height: calc(100vh - 100px);
    left: calc(50% - 150px);
    padding: 20px;
    padding-top: 80px;
  }
  .product-inner h4,
  .product-inner .h4 {
    font-size: 25px;
  }
  .product-inner img {
    left: calc(50% - 60px);
    top: -60px;
    width: 120px;
    height: 120px;
  }
  .product-info p:nth-of-type(1) {
    margin-right: 15px;
  }
  .product-feature {
    height: calc(100% - 20px);
    margin: 0 -10px;
    padding: 0 10px;
    overflow: auto;
  }
  .product-feature::-webkit-scrollbar {
    width: 2px;
    height: 2px;
    border-radius: 5px;
  }
  .product-feature::-webkit-scrollbar-track {
    background-color: rgba(255, 255, 255, 0.3);
  }
  .product-feature::-webkit-scrollbar-thumb {
    background-color: rgba(255, 192, 203, 0.3);
  }
  .write-us {
    margin: 20px 0 40px;
    padding-top: 40px;
  }
  .write-us .h2 {
    width: 250px;
    margin-right: 50px;
  }
  .feedback {
    width: 300px;
  }
  .feedback label {
    padding-bottom: 15px;
  }
  .feedback input:not([type="submit"]),
  .feedback textarea {
    font-size: 14px;
    padding-right: 0;
    padding-bottom: 10px;
  }
  .feedback input[type="submit"] {
    padding: 10px 20px;
    font-size: 13px;
  }
  .inner-page .main-content {
    margin-top: 50px;
  }
  .catalog {
    min-height: 200px;
    margin: 40px 100px;
  }
  .filter {
    width: 250px;
  }
  .filter h4 {
    margin-bottom: 20px;
    font-size: 25px;
  }
  .filter-item label {
    min-height: 20px;
    margin: 10px 0;
    padding-left: 35px;
  }
  .filter-item label::before {
    top: calc(50% - 12.5px);
    left: 0;
    width: 25px;
    height: 25px;
    background-size: 25px;
  }
  .filter-item label::after {
    top: calc(50% - 12.5px);
    height: 25px;
    background-size: 25px;
  }
  .filter-item input:checked ~ label::after {
    width: 25px;
  }
  .catalog-content {
    width: 70%;
  }
  .catalog-item {
    margin-bottom: 30px;
  }
  .catalog-item h2 {
    margin-bottom: 30px;
  }
  .goods {
    width: 33.333%;
    margin-bottom: 40px;
  }
  .goods .img-wrap {
    margin-bottom: 15px;
  }
  .goods .img-wrap img {
    margin-bottom: -10px;
  }
  .goods .h3 {
    font-size: 16px;
  }
  .goods-inner {
    padding: 20px;
  }
  .goods-inner img {
    width: 150px;
    height: 150px;
    object-fit: contain;
    margin: 0;
  }
  .goods-inner h4 {
    font-size: 30px;
    margin-top: 10px;
    margin-bottom: 10px;
  }
  .goods-feature {
    height: 150px;
    margin: 10px;
    overflow: auto;
  }
  .goods-feature::-webkit-scrollbar {
    width: 2px;
    height: 2px;
    border-radius: 5px;
  }
  .goods-feature::-webkit-scrollbar-track {
    background-color: rgba(255, 255, 255, 0.3);
  }
  .goods-feature::-webkit-scrollbar-thumb {
    background-color: #ffffff;
  }
  .goods-info {
    width: calc(33.333% - 10px);
    margin: 5px;
  }

  .main-footer {
    min-height: 300px;
    padding: 40px 100px;
  }
  .footer-list {
    margin-top: 20px;
  }
  .footer-item {
    padding: 10px;
  }
  .footer-link {
    font-size: 15px;
  }
  .contact-list {
    margin: 10px;
  }
  .contact-item:first-of-type {
    margin-bottom: 30px;
  }
  .contact-item {
    margin: 10px;
    font-size: 14px;
  }
  .copyright-logo {
    width: 100px;
    height: 30px;
  }
  .copyright-logo span {
    font-size: 14px;
    margin-right: 5px;
  }
  .copyright-logo svg {
    width: 40px;
  }
  .copyright-logo .st1 {
    opacity: 1 !important;
  }
  .location {
    padding-top: 20px;
  }
  .location .h2 {
    margin-bottom: 30px;
  }
  .location #map {
    height: 400px;
  }
  .modal {
    padding: 20px;
  }
}

@media screen and (max-width: 1100px) {
  h2, .h2 {
    text-shadow: 5px 5px 0 rgba(255, 192, 203, 0.3);
  }
  .preloader span {
    left: 58%;
  }
  .inner-page .main-content .h2 {
    width: calc(100% - 300px);
    margin-left: auto;
    text-align: center;
  }
  .catalog {
    flex-direction: column;
    margin: 40px 20px;
  }
  .filter {
    width: 300px;
    margin-bottom: 30px;
    position: fixed !important;
    background-color: #ffffff;
    left: 0;
    top: 0;
    bottom: 0;
    height: calc(100vh);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 30px;
    padding-top: 90px;
    border-right: 2px solid #f9efe1;
    z-index: 1;
  }
  .inner-page .filter h4.h2 {
    width: auto;
    margin-left: 0;
    margin-bottom: 0;
    text-align: center;
  }
  .filter-item {
    margin: 20px 0;
  }
  .catalog-content {
    width: calc(100% - 300px);
    justify-content: center;
  }
  .catalog-item h2 {
    margin-bottom: 40px;
    text-align: center;
  }
  .category-item {
    padding: 0;
    margin-bottom: 0;
  }
  .category-content {
    width: 100%;
    padding-left: 30%;
  }
  .category-title {
    left: 13%;
  }
  .goods {
    justify-content: center;
    width: 25%;
    margin-bottom: 40px;
  }
  .goods-inner h4 {
    text-shadow: 5px 5px 0 rgba(255, 192, 203, 0.3);
  }
  .page-inner .main-footer {
    width: calc(100% - 300px);
    margin-left: auto;
  }
}

@media screen and (max-width: 1000px) {
  .banner img {
    width: 400px;
  }
  .goods {
    width: 175px;
    margin-bottom: 25px;
  }
  .catalog-item {
    justify-content: center;
  }
  .main-footer {
    padding: 40px 30px;
  }
  .footer-item {
    width: 33.333%;
    padding: 5px;
  }
  .contact-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    align-self: center;
    margin-top: 15px;
  }
  .contact-item {
    margin: 5px 10px;
  }
  .contact-item:first-of-type {
    width: 100%;
    margin-bottom: 5px;
  }
  .goods-feature {
    width: 90%;
  }
}

@media screen and (max-width: 900px) {
  h1, .h1 {
    font-size: 70px;
  }
  .main-wrap {
    overflow: hidden;
  }
  .banner {
    padding-right: 10px;
  }
  .banner-title {
    margin-right: -50px;
  }
  .banner p {
    font-size: 16px;
  }
  .advantage .h2 {
    font-size: 40px;
  }
  .advantage-item {
    padding: 0 15px;
  }
  .advantage-item:nth-child(1),
  .advantage-item:nth-child(2) {
    width: 33.333%;
  }
}

@media screen and (max-width: 860px) {
  .contact-list {
    margin-left: 0;
    margin-right: 0;
  }
  .contact-item:first-of-type {
    margin-left: 0;
    margin-right: 0;
  }
  .write-us {
    flex-direction: column;
  }
  .write-us .h2 {
    width: auto;
    margin-right: 0;
    margin-bottom: 20px;
  }
  .feedback {
    width: 100%;
    max-width: 300px;
    text-align: center;
  }
  .feedback input:not([type="submit"]),
  .feedback textarea {
    text-align: center;
  }
}

@media screen and (max-width: 800px) {
  .product-1 {
    margin-left: 10%;
  }
  .product-2 {
    margin-top: 0;
    margin-left: -50%;
  }
  .product-3 {
    margin-top: 0;
    margin-left: 40%;
  }
  .product-4 {
    margin-top: 0;
    margin-left: -20%;
  }
  .product-5 {
    margin-left: 60%;
  }
  .product-6 {
    margin-top: 0;
    margin-left: -60%;
  }
  .product-8 {
    margin-left: 55%;
  }
  .product-9 {
    margin-top: 0;
    margin-left: -50%;
  }
  .product-10 {
    margin-top: 0;
    margin-left: 20%;
  }
  .product-11 {
    margin-left: -40%;
  }
  .product-12 {
    margin-top: 0;
    margin-left: 50%;
    margin-bottom: 70px;
  }
}

@media screen and (max-width: 724px) {
  .banner {
    flex-direction: column;
    padding-right: 100px;
  }
  .banner-title {
    margin-right: 0;
  }
  .footer-item {
    width: auto;
  }
  .contact-list {
    max-width: 300px;
    line-height: 1.4;
  }
}

@media screen and (max-width: 700px) {
  .advantage-item,
  .advantage-item:nth-child(1),
  .advantage-item:nth-child(2) {
    width: 50%;
  }
  .filter {
    width: 220px;
  }
  .catalog-content {
    width: calc(100% - 220px);
  }
  .page-inner .main-footer {
    width: calc(100% - 220px);
  }
  .inner-page .main-content .h2 {
    width: calc(100% - 220px);
  }
}

@media screen and (max-width: 609px) {
  .category-content {
    padding-left: 0;
    padding-bottom: 120px;
  }
  .category-item {
    flex-direction: column;
    margin-bottom: 40px;
  }
  .category-title {
    position: relative !important;
    top: auto;
    left: auto;
    width: 100%;
    padding: 50px;
    padding-top: 0;
    opacity: 1;
    transform: translateY(0);
  }
  .product {
    margin-bottom: -30px;
  }
  .product .img-wrap,
  .product:nth-child(even) .img-wrap {
    transform: none;
  }
  .inner-page .main-content .h2 {
    font-size: 40px;
  }
  .inner-page .filter h4.h2 {
    font-size: 20px;
  }
  .catalog {
    margin: 30px 20px;
  }
  .catalog-item h2 {
    margin-bottom: 25px;
  }
  .goods {
    margin-bottom: 25px;
  }
  .goods-info {
    width: calc(50% - 10px);
  }
  .home-page .main-footer {
    padding: 40px 65px;
  }
}

@media screen and (max-width: 499px) {
  .main-menu {
    margin: 0 auto;
    align-items: center;
  }
  .main-link {
    font-size: 30px;
  }
  .main-nav .icon-open span {
    box-shadow: none;
  }
  .nav {
    display: none;
  }
  .banner {
    justify-content: flex-start;
    padding-top: 110px;
    text-align: center;
  }
  .advantage {
    padding: 0;
    padding-top: 30px;
    margin-top: 50px;
  }
  .advantage-item p {
    width: auto;
  }
  .catalog-content {
    width: 100%;
  }
  .category-content {
    flex-wrap: nowrap;
    flex-direction: row;
    justify-content: flex-start;
    min-height: auto;
    padding-top: 30px;
    padding-left: 70px;
    padding-right: 70px;
    padding-bottom: 60px;
    overflow: auto;
  }
  .category-content::-webkit-scrollbar {
    width: 5px;
    height: 5px;
    border-radius: 5px;
  }
  .category-content::-webkit-scrollbar-track {
    background-color: rgba(255, 255, 255, 0.3);
  }
  .category-content::-webkit-scrollbar-thumb {
    background-color: rgba(255, 192, 203, 0.9);
  }
  .product {
    height: auto;
    margin: 0;
    /*margin-bottom: -50px;*/
  }
  .product:nth-child(odd) {
    margin-right: auto;
  }
  .product:nth-child(even) {
    margin-left: auto;
  }
  .filter {
    transform: translateX(-218px);
  }
  .filter.open {
    transform: translateY(0);
  }
  .icon-open-filter {
    position: fixed;
    left: 20px;
    bottom: 20px;
    width: 40px;
    height: 40px;
    z-index: 2;
  }
  .icon-open-filter svg {
    width: 100%;
    height: 100%;
  }
  .inner-page .main-content .h2 {
    width: 100%;
  }
  .main-footer {
    width: 100%;
  }
  .inner-page .main-content {
    margin-top: 110px;
  }
  .goods-info {
    width: calc(100% - 10px);
  }
}

@media screen and (max-width: 400px) {
  h2, .h2 {
    font-size: 40px;
  }
  .advantage {
    margin-top: 0;
    margin-bottom: 0;
    padding-top: 0;
    padding-left: 20px;
    padding-right: 20px;
  }
  .advantage-item {
    width: 100%;
  }
}
