@font-face {
  font-family: 'NEXA Light';
  src: url("../fonts/Nexa-Light.woff2") format("opentype");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'NEXA Bold';
  src: url("../fonts/Nexa-Bold.woff2") format("opentype");
  font-weight: bold;
  font-style: normal;
}
@font-face {
  font-family: 'NEXA Bold cyr';
  src: url("../fonts/Nexa-Bold5.otf") format("opentype");
  font-weight: bold;
  font-style: normal;
}
@font-face {
  font-family: 'Noah Regular Italic';
  src: url("../fonts/Noah-RegularItalic.otf") format("opentype"), url("../fonts/Noah-RegularItalic.ttf") format("truetype");
  font-weight: normal;
  font-style: italic;
}
@font-face {
  font-family: 'Noah Bold Italic';
  src: url("../fonts/Noah-BoldItalic.otf") format("opentype"), url("../fonts/Noah-BoldItalic.ttf") format("truetype");
  font-weight: bold;
  font-style: italic;
}
@font-face {
  font-family: 'Noah Regular';
  src: url("../fonts/Noah-Regular.otf") format("opentype"), url("../fonts/Noah-Regular.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'Noah Bold';
  src: url("../fonts/Noah-Bold.otf") format("opentype"), url("../fonts/Noah-Bold.ttf") format("truetype");
  font-weight: bold;
  font-style: normal;
}
/* line 3, ../sass/collection-catagory.scss */
.ColCatTop {
  position: relative;
}
/* line 6, ../sass/collection-catagory.scss */
.ColCatTop .bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
/* line 13, ../sass/collection-catagory.scss */
.ColCatTop .bg img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.7);
}
/* line 22, ../sass/collection-catagory.scss */
.ColCatTop .container {
  height: calc(60vw * 9 /16);
}
/* line 26, ../sass/collection-catagory.scss */
.ColCatTop .site-title {
  color: #fff;
}

/* line 31, ../sass/collection-catagory.scss */
.ColCatTopIntro {
  position: relative;
}
/* line 34, ../sass/collection-catagory.scss */
.ColCatTopIntro .site-text {
  width: 1260px;
  margin: 0 auto;
  max-width: 100%;
  line-height: 1.55;
}

/* line 42, ../sass/collection-catagory.scss */
.collection-tpl {
  position: relative;
  contain: layout;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  -o-flex-wrap: wrap;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 32px;
}
/* line 58, ../sass/collection-catagory.scss */
.collection-tpl:nth-last-child(1) {
  margin-bottom: 0;
}
/* line 62, ../sass/collection-catagory.scss */
.collection-tpl[idx="2"], .collection-tpl[idx="4"], .collection-tpl[idx="6"], .collection-tpl[idx="8"], .collection-tpl[idx="10"] {
  -webkit-flex-direction: row-reverse;
  -moz-flex-direction: row-reverse;
  -ms-flex-direction: row-reverse;
  -o-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
/* line 70, ../sass/collection-catagory.scss */
.collection-tpl > .left {
  position: relative;
  width: calc(37% - 64px);
  padding-top: 70px;
}
/* line 75, ../sass/collection-catagory.scss */
.collection-tpl > .left .site-title {
  margin-bottom: 25px;
}
/* line 79, ../sass/collection-catagory.scss */
.collection-tpl > .left .logo {
  display: block;
  margin: 0 auto;
  height: 100px;
  width: auto;
  margin-top: 25px;
}
/* line 88, ../sass/collection-catagory.scss */
.collection-tpl .right {
  position: relative;
  width: 63%;
}
/* line 92, ../sass/collection-catagory.scss */
.collection-tpl .right .right-img {
  position: relative;
  display: block;
}
/* line 96, ../sass/collection-catagory.scss */
.collection-tpl .right .right-img img {
  display: block;
  width: 100%;
}
/* line 102, ../sass/collection-catagory.scss */
.collection-tpl .right .btn-wr {
  display: none;
}

/* Keyframes for the pulse animation */
@keyframes pulse2 {
  0% {
    transform: scale(1);
    background: rgba(255, 255, 255, 0.2);
  }
  50% {
    transform: scale(1.1);
    /* Scale up by 20% */
    background: rgba(255, 255, 255, 0.5);
  }
  100% {
    transform: scale(1);
    background: rgba(255, 255, 255, 0.2);
  }
}
/* line 124, ../sass/collection-catagory.scss */
.collection-pluses-tpl {
  position: absolute;
  z-index: 2;
}
/* line 128, ../sass/collection-catagory.scss */
.collection-pluses-tpl .open-plus {
  position: relative;
  cursor: pointer;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  animation: pulse2 1.5s ease-in-out infinite;
  /* Added animation */
}
/* line 137, ../sass/collection-catagory.scss */
.collection-pluses-tpl .open-plus:after {
  content: '';
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #fff;
  border-radius: 50%;
  width: 23px;
  height: 23px;
}
@media (hover: hover) {
  /* line 151, ../sass/collection-catagory.scss */
  .collection-pluses-tpl .open-plus:hover {
    background: #fff !important;
  }
  /* line 154, ../sass/collection-catagory.scss */
  .collection-pluses-tpl .open-plus:hover:after {
    background: #263247;
  }
}
/* line 161, ../sass/collection-catagory.scss */
.collection-pluses-tpl .prod-wr {
  position: absolute;
  top: 50%;
  left: calc(100% + 15px);
  transform: translateY(-50%);
  opacity: 0;
  visibility: hidden;
  transition: 0.7s ease all;
}
/* line 170, ../sass/collection-catagory.scss */
.collection-pluses-tpl .prod-wr.top-left {
  left: initial;
  right: 100%;
  top: initial;
  bottom: 100%;
  transform: none;
}
/* line 178, ../sass/collection-catagory.scss */
.collection-pluses-tpl .prod-wr.top-center {
  left: 50%;
  top: initial;
  bottom: calc(100% + 15px);
  transform: translate(-50%, 0);
}
/* line 185, ../sass/collection-catagory.scss */
.collection-pluses-tpl .prod-wr.top-right {
  top: initial;
  bottom: 100%;
  left: 100%;
  transform: none;
}
/* line 192, ../sass/collection-catagory.scss */
.collection-pluses-tpl .prod-wr.bottom-right {
  top: 100%;
  left: 100%;
  transform: none;
}
/* line 198, ../sass/collection-catagory.scss */
.collection-pluses-tpl .prod-wr.bottom-center {
  left: 50%;
  top: calc(100% + 15px);
  transform: translate(-50%, 0);
}
/* line 204, ../sass/collection-catagory.scss */
.collection-pluses-tpl .prod-wr.bottom-left {
  left: initial;
  right: 100%;
  top: 100%;
  transform: none;
}
/* line 211, ../sass/collection-catagory.scss */
.collection-pluses-tpl .prod-wr.left {
  left: initial;
  right: calc(100% + 15px);
}
/* line 217, ../sass/collection-catagory.scss */
.collection-pluses-tpl.show {
  z-index: 3;
}
/* line 220, ../sass/collection-catagory.scss */
.collection-pluses-tpl.show .prod-wr {
  opacity: 1;
  visibility: visible;
}

/* line 227, ../sass/collection-catagory.scss */
.collection-prod-tpl {
  position: relative;
  width: 368px;
  padding: 15px;
  background: #fff;
  -webkit-box-shadow: 0 0 1pc rgba(0, 0, 0, 0.15);
  box-shadow: 0 0 1pc rgba(0, 0, 0, 0.15);
}
/* line 235, ../sass/collection-catagory.scss */
.collection-prod-tpl .collection-prod-img {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  -ms-align-items: center;
  align-items: center;
  justify-content: center;
  height: 207px;
}
/* line 246, ../sass/collection-catagory.scss */
.collection-prod-tpl .collection-prod-img img {
  display: block;
  width: 100%;
  height: calc(100% - 30px);
  object-fit: contain;
}
/* line 254, ../sass/collection-catagory.scss */
.collection-prod-tpl .bot {
  position: relative;
  text-align: center;
  padding: 15px;
  margin: -15px;
  background: rgba(38, 50, 71, 0.1);
}
/* line 262, ../sass/collection-catagory.scss */
.collection-prod-tpl .site-btn {
  width: 100%;
}

/* line 267, ../sass/collection-catagory.scss */
.collection-tpl-popup {
  display: none;
}

@media only screen and (min-width: 1680px) and (max-width: 1879px) {
  /* line 273, ../sass/collection-catagory.scss */
  .collection-tpl {
    margin-bottom: 30px;
  }
  /* line 276, ../sass/collection-catagory.scss */
  .collection-tpl > .left {
    width: calc(37% - 60px);
    padding-top: 62px;
  }
  /* line 280, ../sass/collection-catagory.scss */
  .collection-tpl > .left .site-title {
    margin-bottom: 22px;
  }
  /* line 284, ../sass/collection-catagory.scss */
  .collection-tpl > .left .logo {
    height: 90px;
    margin-top: 22px;
  }

  /* line 292, ../sass/collection-catagory.scss */
  .collection-pluses-tpl .open-plus {
    width: 40px;
    height: 40px;
  }
  /* line 296, ../sass/collection-catagory.scss */
  .collection-pluses-tpl .open-plus:after {
    width: 20px;
    height: 20px;
  }
  /* line 302, ../sass/collection-catagory.scss */
  .collection-pluses-tpl .prod-wr {
    left: calc(100% + 13px);
  }
  /* line 305, ../sass/collection-catagory.scss */
  .collection-pluses-tpl .prod-wr.top-center {
    bottom: calc(100% + 13px);
  }
  /* line 309, ../sass/collection-catagory.scss */
  .collection-pluses-tpl .prod-wr.bottom-center {
    top: calc(100% + 13px);
  }
  /* line 313, ../sass/collection-catagory.scss */
  .collection-pluses-tpl .prod-wr.left {
    right: calc(100% + 13px);
  }

  /* line 319, ../sass/collection-catagory.scss */
  .collection-prod-tpl {
    width: 328px;
    padding: 13px;
  }
  /* line 323, ../sass/collection-catagory.scss */
  .collection-prod-tpl .collection-prod-img {
    height: 184px;
  }
  /* line 326, ../sass/collection-catagory.scss */
  .collection-prod-tpl .collection-prod-img img {
    height: calc(100% - 27px);
  }
  /* line 331, ../sass/collection-catagory.scss */
  .collection-prod-tpl .bot {
    padding: 13px;
    margin: -13px;
  }
}
@media only screen and (min-width: 1480px) and (max-width: 1679px) {
  /* line 341, ../sass/collection-catagory.scss */
  .collection-tpl {
    margin-bottom: 25px;
  }
  /* line 344, ../sass/collection-catagory.scss */
  .collection-tpl > .left {
    width: calc(37% - 50px);
    padding-top: 54px;
  }
  /* line 348, ../sass/collection-catagory.scss */
  .collection-tpl > .left .site-title {
    margin-bottom: 20px;
  }
  /* line 352, ../sass/collection-catagory.scss */
  .collection-tpl > .left .logo {
    height: 80px;
    margin-top: 20px;
  }

  /* line 360, ../sass/collection-catagory.scss */
  .collection-pluses-tpl .open-plus {
    width: 35px;
    height: 35px;
  }
  /* line 364, ../sass/collection-catagory.scss */
  .collection-pluses-tpl .open-plus:after {
    width: 18px;
    height: 18px;
  }
  /* line 370, ../sass/collection-catagory.scss */
  .collection-pluses-tpl .prod-wr {
    left: calc(100% + 11px);
  }
  /* line 373, ../sass/collection-catagory.scss */
  .collection-pluses-tpl .prod-wr.top-center {
    bottom: calc(100% + 11px);
  }
  /* line 377, ../sass/collection-catagory.scss */
  .collection-pluses-tpl .prod-wr.bottom-center {
    top: calc(100% + 11px);
  }
  /* line 381, ../sass/collection-catagory.scss */
  .collection-pluses-tpl .prod-wr.left {
    right: calc(100% + 11px);
  }

  /* line 387, ../sass/collection-catagory.scss */
  .collection-prod-tpl {
    width: 287px;
    padding: 11px;
  }
  /* line 391, ../sass/collection-catagory.scss */
  .collection-prod-tpl .collection-prod-img {
    height: 161px;
  }
  /* line 394, ../sass/collection-catagory.scss */
  .collection-prod-tpl .collection-prod-img img {
    height: calc(100% - 24px);
  }
  /* line 399, ../sass/collection-catagory.scss */
  .collection-prod-tpl .bot {
    padding: 11px;
    margin: -11px;
  }
}
@media only screen and (min-width: 1300px) and (max-width: 1479px) {
  /* line 409, ../sass/collection-catagory.scss */
  .collection-tpl {
    margin-bottom: 20px;
  }
  /* line 412, ../sass/collection-catagory.scss */
  .collection-tpl > .left {
    width: calc(37% - 40px);
    padding-top: 46px;
  }
  /* line 416, ../sass/collection-catagory.scss */
  .collection-tpl > .left .site-title {
    margin-bottom: 17px;
  }
  /* line 420, ../sass/collection-catagory.scss */
  .collection-tpl > .left .logo {
    height: 70px;
    margin-top: 17px;
  }

  /* line 428, ../sass/collection-catagory.scss */
  .collection-pluses-tpl .open-plus {
    width: 30px;
    height: 30px;
  }
  /* line 432, ../sass/collection-catagory.scss */
  .collection-pluses-tpl .open-plus:after {
    width: 16px;
    height: 16px;
  }
  /* line 438, ../sass/collection-catagory.scss */
  .collection-pluses-tpl .prod-wr {
    left: calc(100% + 10px);
  }
  /* line 441, ../sass/collection-catagory.scss */
  .collection-pluses-tpl .prod-wr.top-center {
    bottom: calc(100% + 10px);
  }
  /* line 445, ../sass/collection-catagory.scss */
  .collection-pluses-tpl .prod-wr.bottom-center {
    top: calc(100% + 10px);
  }
  /* line 449, ../sass/collection-catagory.scss */
  .collection-pluses-tpl .prod-wr.left {
    right: calc(100% + 10px);
  }

  /* line 455, ../sass/collection-catagory.scss */
  .collection-prod-tpl {
    width: 246px;
    padding: 10px;
  }
  /* line 459, ../sass/collection-catagory.scss */
  .collection-prod-tpl .collection-prod-img {
    height: 138px;
  }
  /* line 462, ../sass/collection-catagory.scss */
  .collection-prod-tpl .collection-prod-img img {
    height: calc(100% - 20px);
  }
  /* line 467, ../sass/collection-catagory.scss */
  .collection-prod-tpl .bot {
    padding: 10px;
    margin: -10px;
  }
}
@media only screen and (min-width: 1024px) and (max-width: 1299px) {
  /* line 477, ../sass/collection-catagory.scss */
  .collection-tpl {
    margin-bottom: 15px;
  }
  /* line 480, ../sass/collection-catagory.scss */
  .collection-tpl > .left {
    width: calc(37% - 30px);
    padding-top: 37px;
  }
  /* line 484, ../sass/collection-catagory.scss */
  .collection-tpl > .left .site-title {
    margin-bottom: 14px;
  }
  /* line 488, ../sass/collection-catagory.scss */
  .collection-tpl > .left .logo {
    height: 60px;
    margin-top: 14px;
  }

  /* line 496, ../sass/collection-catagory.scss */
  .collection-pluses-tpl .open-plus {
    width: 28px;
    height: 28px;
  }
  /* line 500, ../sass/collection-catagory.scss */
  .collection-pluses-tpl .open-plus:after {
    width: 15px;
    height: 15px;
  }
  /* line 506, ../sass/collection-catagory.scss */
  .collection-pluses-tpl .prod-wr {
    left: calc(100% + 8px);
  }
  /* line 509, ../sass/collection-catagory.scss */
  .collection-pluses-tpl .prod-wr.top-center {
    bottom: calc(100% + 8px);
  }
  /* line 513, ../sass/collection-catagory.scss */
  .collection-pluses-tpl .prod-wr.bottom-center {
    top: calc(100% + 8px);
  }
  /* line 517, ../sass/collection-catagory.scss */
  .collection-pluses-tpl .prod-wr.left {
    right: calc(100% + 8px);
  }

  /* line 523, ../sass/collection-catagory.scss */
  .collection-prod-tpl {
    width: 205px;
    padding: 8px;
  }
  /* line 527, ../sass/collection-catagory.scss */
  .collection-prod-tpl .collection-prod-img {
    height: 110px;
  }
  /* line 530, ../sass/collection-catagory.scss */
  .collection-prod-tpl .collection-prod-img img {
    height: calc(100% - 16px);
  }
  /* line 535, ../sass/collection-catagory.scss */
  .collection-prod-tpl .bot {
    padding: 8px;
    margin: -8px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1023px) {
  /* line 545, ../sass/collection-catagory.scss */
  .collection-tpl {
    margin-bottom: 20px;
  }
  /* line 548, ../sass/collection-catagory.scss */
  .collection-tpl > .left {
    width: 100%;
    padding-top: 0;
    padding-bottom: 28px;
  }
  /* line 553, ../sass/collection-catagory.scss */
  .collection-tpl > .left .site-title {
    margin-bottom: 15px;
  }
  /* line 557, ../sass/collection-catagory.scss */
  .collection-tpl > .left .logo {
    height: 50px;
    margin-top: 15px;
  }
  /* line 563, ../sass/collection-catagory.scss */
  .collection-tpl .right {
    width: 100%;
  }

  /* line 569, ../sass/collection-catagory.scss */
  .collection-pluses-tpl .open-plus {
    width: 30px;
    height: 30px;
  }
  /* line 573, ../sass/collection-catagory.scss */
  .collection-pluses-tpl .open-plus:after {
    width: 16px;
    height: 16px;
  }
  /* line 579, ../sass/collection-catagory.scss */
  .collection-pluses-tpl .prod-wr {
    left: calc(100% + 10px);
  }
  /* line 582, ../sass/collection-catagory.scss */
  .collection-pluses-tpl .prod-wr.top-center {
    bottom: calc(100% + 10px);
  }
  /* line 586, ../sass/collection-catagory.scss */
  .collection-pluses-tpl .prod-wr.bottom-center {
    top: calc(100% + 10px);
  }
  /* line 590, ../sass/collection-catagory.scss */
  .collection-pluses-tpl .prod-wr.left {
    right: calc(100% + 10px);
  }

  /* line 596, ../sass/collection-catagory.scss */
  .collection-prod-tpl {
    width: 246px;
    padding: 10px;
  }
  /* line 600, ../sass/collection-catagory.scss */
  .collection-prod-tpl .collection-prod-img {
    height: 138px;
  }
  /* line 603, ../sass/collection-catagory.scss */
  .collection-prod-tpl .collection-prod-img img {
    height: calc(100% - 20px);
  }
  /* line 608, ../sass/collection-catagory.scss */
  .collection-prod-tpl .bot {
    padding: 10px;
    margin: -10px;
  }
}
@media only screen and (min-width: 0px) and (max-width: 767px) {
  /* line 619, ../sass/collection-catagory.scss */
  .ColCatTop .container {
    height: 200px;
  }

  /* line 624, ../sass/collection-catagory.scss */
  .collection-tpl {
    margin-bottom: 20px;
  }
  /* line 627, ../sass/collection-catagory.scss */
  .collection-tpl > .left {
    width: 100%;
    padding-top: 0;
    padding-bottom: 20px;
  }
  /* line 632, ../sass/collection-catagory.scss */
  .collection-tpl > .left .site-title {
    margin-bottom: 15px;
  }
  /* line 636, ../sass/collection-catagory.scss */
  .collection-tpl > .left .logo {
    height: 50px;
    margin-top: 15px;
  }
  /* line 642, ../sass/collection-catagory.scss */
  .collection-tpl .right {
    width: 100%;
  }
  /* line 645, ../sass/collection-catagory.scss */
  .collection-tpl .right .btn-wr {
    display: block;
    margin-top: 15px;
  }

  /* line 653, ../sass/collection-catagory.scss */
  .collection-pluses-tpl .open-plus {
    pointer-events: none;
    animation: none;
    width: 18px;
    height: 18px;
  }
  /* line 659, ../sass/collection-catagory.scss */
  .collection-pluses-tpl .open-plus:after {
    width: 8px;
    height: 8px;
  }
  /* line 665, ../sass/collection-catagory.scss */
  .collection-pluses-tpl .prod-wr {
    left: calc(100% + 8px);
  }
  /* line 668, ../sass/collection-catagory.scss */
  .collection-pluses-tpl .prod-wr.top-center {
    bottom: calc(100% + 8px);
  }
  /* line 672, ../sass/collection-catagory.scss */
  .collection-pluses-tpl .prod-wr.bottom-center {
    top: calc(100% + 8px);
  }
  /* line 676, ../sass/collection-catagory.scss */
  .collection-pluses-tpl .prod-wr.left {
    right: calc(100% + 8px);
  }

  /* line 682, ../sass/collection-catagory.scss */
  .collection-prod-tpl {
    width: 300px;
    padding: 12px;
  }
  /* line 686, ../sass/collection-catagory.scss */
  .collection-prod-tpl .collection-prod-img {
    height: 180px;
  }
  /* line 689, ../sass/collection-catagory.scss */
  .collection-prod-tpl .collection-prod-img img {
    height: calc(100% - 24px);
  }
  /* line 694, ../sass/collection-catagory.scss */
  .collection-prod-tpl .bot {
    padding: 12px;
    margin: -12px;
  }

  /* line 700, ../sass/collection-catagory.scss */
  .collection-tpl-popup {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(38, 50, 71, 0.7);
    opacity: 0;
    visibility: hidden;
    z-index: 100004;
    transition: 0.3s ease all;
  }
  /* line 713, ../sass/collection-catagory.scss */
  .collection-tpl-popup.active {
    opacity: 1;
    visibility: visible;
    backdrop-filter: blur(10px);
  }
  /* line 719, ../sass/collection-catagory.scss */
  .collection-tpl-popup .slider {
    overflow: hidden;
    padding: 15px;
    margin-top: 120px;
  }
  /* line 725, ../sass/collection-catagory.scss */
  .collection-tpl-popup .swiper {
    overflow: visible;
  }
  /* line 729, ../sass/collection-catagory.scss */
  .collection-tpl-popup .swiper-slide {
    width: 300px;
  }
  /* line 733, ../sass/collection-catagory.scss */
  .collection-tpl-popup .swiper-pagination {
    position: relative;
    bottom: initial;
    margin-top: 15px;
  }
  /* line 738, ../sass/collection-catagory.scss */
  .collection-tpl-popup .swiper-pagination .swiper-pagination-bullet {
    background: #fff;
    opacity: 1;
  }
  /* line 742, ../sass/collection-catagory.scss */
  .collection-tpl-popup .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background: #007aff;
  }

  /* line 749, ../sass/collection-catagory.scss */
  .collection-tpl-popup-close {
    position: absolute;
    top: 0;
    right: 0;
    font-size: 18px;
    color: #fff;
    padding: 15px;
  }
}
