/* Reset and base styles  */
* {
  padding: 0px;
  margin: 0px;
  border: none;
}
 
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Links */
a, a:link, a:visited {
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

/* Common */
aside, nav, footer, header, section, main {
  display: block;
}

h1, h2, h3, h4, h5, h6, p {
  font-size: inherit;
  font-weight: inherit;
}

ul, ul li {
  list-style: none;
}

img {
  vertical-align: top;
}

img, svg {
  max-width: 100%;
  height: auto;
}

address {
  font-style: normal;
}

/* Form */
input, textarea, button, select {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  background-color: transparent;
}

input::-ms-clear {
  display: none;
}

button, input[type=submit] {
  display: inline-block;
  box-shadow: none;
  background-color: transparent;
  background: none;
  cursor: pointer;
}

input:focus, input:active,
button:focus, button:active {
  outline: none;
}

button::-moz-focus-inner {
  padding: 0;
  border: 0;
}

label {
  cursor: pointer;
}

legend {
  display: block;
}

html {
  position: relative;
  min-height: 100vh;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

body {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  min-width: 375px;
  min-height: 100vh;
  font-family: "MazzardH", arial, sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.2;
  color: #000;
  background: #FFF;
}

.main {
  flex: 1 1 auto;
  width: 100%;
  overflow: hidden;
  /* padding-top: 5rem; */
}
@media (min-width: 991px) {
  .main {
    padding-top: 130px;
  }
  .main.win{padding-top: 0px;}
}
@media (min-width: 1200px) {
  .main {
    padding-top: 130px;
  }
  .main.win{padding-top: 0px;}
}

.main.maininside {
  padding-top: 5rem;
}
@media (min-width: 991px) {
  .main.maininside {
    padding-top: 8.625rem;
  }
}
@media (min-width: 1280px) {
  .main.maininside {
    padding-top: 8.625rem;
  }
}
@media (min-width: 1480px) {
  .main.maininside {
    padding-top: 10.625rem;
  }
}

a {
  outline: none;
  text-decoration: underline;
  color: currentColor;
  cursor: pointer;
  transition: all 0.3s;
}
a:hover, a:focus {
  text-decoration: none;
}

svg {
  display: block;
  flex: 0 0 auto;
  /* stroke: currentColor; */
  transition: all 0.3s;
}

img {
  vertical-align: top;
  max-width: 100%;
  user-select: none;
}

button {
  background-color: transparent;
  outline: none;
  border: none;
}
button:not([disabled]):hover, button:not([disabled]):focus, button:not([disabled]):active {
  box-shadow: none;
}

.h2 {
  padding: 0;
  margin: 0 0 1rem 0;
  font-size: 1.375rem;
  line-height: 1.2;
  text-transform: uppercase;
  font-weight: 500;
}
@media (min-width: 991px) {
  .h2 {
    font-size: 1.625rem;
    margin: 0 0 1.875rem 0;
  }
}
@media (min-width: 1280px) {
  .h2 {
    font-size: 1.875rem;
    margin: 0 0 1.875rem 0;
  }
}
.h2 + .nblock__text {
  margin-top: -0.375rem;
}
@media (min-width: 991px) {
  .h2 + .nblock__text {
    margin-top: -0.625rem;
  }
}
@media (min-width: 1280px) {
  .h2 + .nblock__text {
    margin-top: -1.25rem;
  }
}

.nblock__padd {
  padding: 1.25rem 0;
}
@media (min-width: 991px) {
  .nblock__padd {
    padding: 1.875rem 0;
  }
}
.nblock__padd:first-child {
  padding-top: 2.5rem;
}
@media (min-width: 991px) {
  .nblock__padd:first-child {
    padding-top: 3.75rem;
  }
}
.nblock__padd:last-child {
  padding-bottom: 2.5rem;
}
@media (min-width: 991px) {
  .nblock__padd:last-child {
    padding-bottom: 3.75rem;
  }
}

.nblock__text {
  font-size: 1rem;
  line-height: 1.2;
  margin: 0 0 1.25rem 0;
  color: #707378;
}
@media (min-width: 991px) {
  .nblock__text {
    font-size: 1.125rem;
  }
}
.nblock__text p {
  margin: 0 0 1.25rem 0;
}
@media (min-width: 1280px) {
  .nblock__text p {
    margin-bottom: 1.875rem;
  }
}
.nblock__text p:last-child {
  margin-bottom: 0;
}

.text__color_grey {
  color: #90949A;
}

.nlink {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  font-size: 1rem;
  color: #3A3A3A;
  font-weight: 500;
}
.nlink:hover, .nlink:focus {
  color: #707378;
}
.nlink span {
  display: block;
}
.nlink i {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
  margin-left: 0.375rem;
}
.nlink i svg {
  display: block;
  max-width: 100%;
  max-height: 100%;
}

.window {
  min-height: 520px;
  height: calc(100vh - 30px - 50px);
  max-height: 1000px;
  display: grid;
  gap: 20px;
  grid-template-columns: 100%;
  grid-template-rows: auto 117px;
  overflow: hidden;
  margin-bottom: 30px;
}
@media (min-width: 991px) {
  .window {
    gap: 30px;
    min-height: 300px;
    height: calc(100vh - 10px);
    max-height: 1000px;
    grid-template-rows: auto 280px;
  }
}
@media (min-width: 1280px) {
  .window {
    grid-template-rows: auto 260px;
  }
}
@media (min-width: 991px) {
  .window__bottom {
    display: flex;
    flex-direction: column;
  }
}

.ncontainer {
  margin: 0 auto;
  width: 100%;
  min-width: 320px;
  padding: 0 16px;
}
@media (min-width: 991px) {
  .ncontainer {
    max-width: 1900px;
    padding-left: 20px;
    padding-right: 20px;
  }
}

.ncontainer__center {
  margin: 0 auto;
  width: 100%;
  min-width: 320px;
  padding: 0 16px;
}
@media (min-width: 991px) {
  .ncontainer__center {
    max-width: 1900px;
    padding-left: 20px;
    padding-right: 20px;
  }
}

.assortment {
  position: relative;
  display: flex;
  margin: 0 -0.3125rem;
  padding-left: 1rem;
  padding-right: 1rem;
  overflow-x: auto;
  scroll-behavior: smooth;
  overflow: -moz-scrollbars-none;
}
.assortment::-webkit-scrollbar {
  display: none;
}
@media (min-width: 991px) {
  .assortment {
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (min-width: 1280px) {
  .assortment {
    margin: 0 -0.625rem;
  }
}
.assortment__item {
  flex: 0 0 auto;
  width: 255px;
  padding: 0 0.3125rem;
}
@media (min-width: 768px) {
  .assortment__item {
    width: 33.33333333%;
  }
}
@media (min-width: 1280px) {
  .assortment__item {
    padding: 0 0.625rem;
  }
}
.assortment__wrapper {
  position: relative;
  margin-left: -1rem;
  margin-right: -1rem;
}
@media (min-width: 991px) {
  .assortment__wrapper {
    margin-left: -2.5rem;
    margin-right: -2.5rem;
  }
}
.assortment__card {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 342px;
  text-transform: uppercase;
  color: #FFF;
  font-size: 1.25rem;
  line-height: 1.2;
  font-weight: 500;
  overflow: hidden;
  border-radius: 12px;
}
@media (min-width: 768px) {
  .assortment__card {
    height: 440px;
  }
}
@media (min-width: 991px) {
  .assortment__card {
    height: calc(100vh - 240px);
    min-height: 500px;
    max-height: 800px;
    font-size: 2rem;
    border-radius: 24px;
  }
}
@media (min-width: 1280px) {
  .assortment__card {
    font-size: 28px;
  }
}
@media (min-width: 1480px) {
  .assortment__card {
    font-size: 32px;
  }
}
.assortment__card:hover i, .assortment__card:focus i {
  transform: scale(1.1, 1.1);
}
.assortment__card span {
  position: relative;
  z-index: 2;
}
.assortment__card i {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  align-items: center;
  display: flex;
  justify-content: center;
  z-index: 1;
  transition: all 0.5s;
}
.assortment__card i img {
  display: block;
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.nbanner {
  position: relative;
  padding: 2.625rem 1.5rem 10.5625rem 1.5rem;
  border-radius: 12px;
  background: linear-gradient(288.71deg, #F3F3F3 17.36%, #E5E5E5 83.97%);
  overflow: hidden;
}
@media (min-width: 991px) {
  .nbanner {
    padding: 2.5rem 2.5rem;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    min-height: 320px;
    height: 50vh;
    border-radius: 24px;
  }
}
@media (min-width: 1280px) {
  .nbanner {
    padding: 6.25rem 6.6875rem;
  }
}
@media (min-width: 1480px) {
  .nbanner {
    padding: 6.25rem 6.6875rem;
  }
}
.nbanner__img_mobile {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 202px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  z-index: 1;
}
@media (min-width: 991px) {
  .nbanner__img_mobile {
    display: none;
  }
}
.nbanner__img_mobile img {
  height: 100%;
  width: 100%;
  object-fit: contain;
}
.nbanner__img_desktop {
  position: absolute;
  left: 0;
  bottom: 0;
  top: 0;
  width: 50%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  display: none;
  z-index: 1;
}
@media (min-width: 991px) {
  .nbanner__img_desktop {
    display: flex;
  }
}
.nbanner__img_desktop img {
  height: auto;
  width: 100%;
}
.nbanner__content {
  position: relative;
  z-index: 2;
}
@media (min-width: 991px) {
  .nbanner__content {
    padding-left: 60%;
  }
}
@media (min-width: 1480px) {
  .nbanner__content {
    padding-left: 60%;
  }
}
.nbanner__body {
  max-width: 450px;
}
.nbanner__title {
  font-size: 24px;
  line-height: 1.2;
  font-weight: 500;
  text-transform: uppercase;
  color: #545454;
  margin: 0 0 0.625rem 0;
  padding: 0;
}
@media (min-width: 991px) {
  .nbanner__title {
    font-size: 1.75rem;
    margin-bottom: 0.9375rem;
  }
}
@media (min-width: 1280px) {
  .nbanner__title {
    font-size: 2.25rem;
  }
}
.nbanner__text {
  font-size: 1rem;
  line-height: 1.2;
  color: #707378;
  margin-bottom: 1.5rem;
}
@media (min-width: 991px) {
  .nbanner__text {
    font-size: 0.875rem;
    margin-bottom: 1.25rem;
  }
}
@media (min-width: 1280px) {
  .nbanner__text {
    font-size: 1rem;
    margin-bottom: 2.5rem;
  }
}
.nbanner__text p {
  margin: 0 0 0.3125rem 0;
}
@media (min-width: 991px) {
  .nbanner__text p {
    margin-bottom: 0.3125rem;
  }
}
.nbanner__text p:last-child {
  margin-bottom: 0;
}

:root {
  --size: clamp(10rem, 1rem + 40vmin, 30rem);
  --gap: calc(var(--size) / 10);
  --duration: 50s;
  --scroll-start: 0;
  --scroll-end: calc(-100% - var(--gap));
}

.nrunningline {
  position: relative;
  width: 100vw;
  transform: translateX(-50%);
  left: 50%;
  background-color: #F9F9F9;
  color: #545454;
  overflow: hidden;
}
@media (min-width: 991px) {
  .nrunningline {
    padding: 0;
  }
}
@media (min-width: 1280px) {
  .nrunningline {
    padding: 0;
  }
}
.nrunningline:hover {
  color: #707378;
}
.nrunningline__marquee {
  display: flex;
  overflow: hidden;
  user-select: none;
  gap: var(--gap);
  height: 50px;
}
@media (min-width: 1280px) {
  .nrunningline__marquee {
    height: 60px;
  }
}
.nrunningline__row {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: var(--gap);
  min-width: 100%;
  animation: scroll-x var(--duration) linear infinite;
  height: 50px;
}
@media (min-width: 1280px) {
  .nrunningline__row {
    height: 60px;
  }
}
.nrunningline__link {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
}
.nrunningline__item {
  padding: 0 0.3125rem;
  float: left;
  display: flex;
  align-items: center;
  font-size: 0.875rem;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
  transition: all 0.3s;
}
@media (min-width: 1280px) {
  .nrunningline__item {
    padding: 0 0.875rem;
    font-size: 1.25rem;
  }
}
.nrunningline__item i {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
  margin-right: 5px;
}
@media (min-width: 1280px) {
  .nrunningline__item i {
    width: 20px;
    height: 20px;
  }
}
.nrunningline__item i svg {
  display: block;
  max-width: 100%;
  max-height: 100%;
  stroke: none;
  fill: currentColor !important;
  transition: all 0.3s;
}
.nrunningline__item span {
  display: block;
}

@keyframes scroll-x {
  from {
    transform: translateX(var(--scroll-start));
  }
  to {
    transform: translateX(var(--scroll-end));
  }
}
.nwelcome {
  position: relative;
  width: 100%;
  padding-left: 16px;
  padding-right: 16px;
  height: 100%;
}
@media (min-width: 991px) {
  .nwelcome {
    padding-left: 0;
    padding-right: 0;
  }
}
@media (min-width: 2720px) {
  .nwelcome {
    max-width: 1960px;
    margin-left: auto;
    margin-right: auto;
  }
}
.nwelcome__btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.5);
  align-items: center;
  justify-content: center;
  z-index: 3;
  color: #3A3A3A;
  transition: all 0.3s;
  cursor: pointer;
  display: none;
}
@media (min-width: 991px) {
  .nwelcome__btn {
    display: flex;
  }
}
.nwelcome__btn:hover {
  background-color: #fff;
}
.nwelcome__btn.nwelcome__btn_prev {
  left: 2.5rem;
}
.nwelcome__btn.nwelcome__btn_next {
  right: 2.5rem;
}
.nwelcome__btn img, .nwelcome__btn svg {
  display: block;
  max-width: 24px;
  max-height: 24px;
}
.nwelcome__slider {
  position: relative;
  width: 100%;
  min-height: 313px;
  /* height: calc(100vh - 30px - 80px - 20px - 77px); */
  max-height: 793px;
}
@media (min-width: 1280px) {
  .nwelcome__slider {
    min-height: 470px;
    height: calc(100vh - 200px - 120px);
    max-height: 770px;
  }
}
.nwelcome__slider__link {
  width: 100%;
  display: block;
  overflow: hidden;
  position: relative;
  min-height: 313px;
  height: calc(100vh - 30px - 80px - 20px - 77px);
  max-height: 793px;
}
@media (max-width: 990px) {
  .nwelcome__slider__link {
    border-radius: 12px;
    height: calc(100vh - 30px - 80px - 20px - 77px - 50px);
  }
}
@media (min-width: 991px) {
  .nwelcome__slider__link {
    min-height: 420px;
    height: calc(100vh - 150px - 180px);
    max-height: 820px;
  }
}
@media (min-width: 1280px) {
  .nwelcome__slider__link {
    border-radius: 0;
    min-height: 470px;
    height: calc(100vh - 200px - 100px);
    max-height: 770px;
  }
}
.nwelcome__slider__link picture {
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  height: 100%;
  /* width: 100%; */
}
.nwelcome__slider__link picture img {
  height: 100%;
  width: auto;
  max-width: none;
}
.nwelcome__slider__item {
  position: relative;
  /* background-color: antiquewhite; */
}
.nwelcome__slider__item img {
  display: block;
}
.nwelcome__nav {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding-bottom: 15px;
  margin: -0.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}
.nwelcome__nav__bullet {
  display: block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #90949A;
  margin: 0.25rem;
  transition: all 0.3s;
}
.nwelcome__nav__bullet:hover {
  background-color: #FFF;
}
.nwelcome__nav__bullet.nwelcome__nav__bullet__active {
  background-color: #FFF;
}

.hotlinks {
  position: relative;
  display: flex;
  flex-wrap: nowrap;
  justify-content: flex-start;
  height: 77px;
}
@media (min-width: 991px) {
  .hotlinks {
    flex-wrap: wrap;
    align-items: stretch;
    margin: -0.5rem;
    height: calc(100% + 16px);
  }
}
.hotlinks__wrapper {
  position: relative;
  padding: 0 0.6875rem;
}
@media (max-width: 990px) {
  .hotlinks__wrapper {
    width: 100vw;
    transform: translateX(-50%);
    left: 50%;
    overflow-y: hidden;
    overflow-x: auto;
    overflow: -moz-scrollbars-none;
  }
  .hotlinks__wrapper::-webkit-scrollbar {
    display: none;
  }
}
@media (min-width: 991px) {
  .hotlinks__wrapper {
    min-width: 320px;
    margin-left: auto;
    margin-right: auto;
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media (min-width: 991px) {
  .hotlinks__wrapper {
    max-width: 1900px;
    padding-left: 20px;
    padding-right: 20px;
  }
}
.hotlinks__item {
  flex: 0 0 auto;
  max-width: 100%;
  padding: 0 0.3125rem;
  width: 101px;
}
@media (min-width: 991px) {
  .hotlinks__item {
    flex: 0 0 auto;
    padding: 0.5rem;
    height: 50%;
    display: flex;
    flex-direction: column;
  }
}
@media (min-width: 991px) {
  .hotlinks__item.hotlinks__item__sizex6 {
    width: 16.66666667%;
  }
}
@media (min-width: 991px) {
  .hotlinks__item.hotlinks__item__sizex4 {
    flex: 1 0 0%;
    width: 100%;
  }
}
.hotlinks__item.hotlinks__item__sizeprofile {
  display: none;
}
@media (min-width: 991px) {
  .hotlinks__item.hotlinks__item__sizeprofile {
    display: block;
    width: 253px;
  }
}
@media (min-width: 1280px) {
  .hotlinks__item.hotlinks__item__sizeprofile {
    width: 356px;
  }
}
@media (min-width: 1480px) {
  .hotlinks__item.hotlinks__item__sizeprofile {
    width: 438px;
  }
}
.hotlinks__item.hotlinks__item__break {
  display: none;
}
@media (min-width: 991px) {
  .hotlinks__item.hotlinks__item__break {
    display: block;
    flex-basis: 100%;
    height: 0;
    padding-top: 0;
    padding-bottom: 0;
  }
}
.hotlinks__toprofile {
  padding: 0.9375rem;
  color: #FFF;
  background: url("../img/hotlinks/bg-toprofile.jpg") 50% 50% no-repeat;
  background-size: cover;
  border-radius: 15px;
  line-height: 1.2;
  height: 100%;
  overflow: hidden;
}
@media (min-width: 1280px) {
  .hotlinks__toprofile {
    padding: 0.9375rem 1.25rem;
  }
}
@media (min-width: 2000px) {
  .hotlinks__toprofile {
    padding: 0.9375rem 1.875rem;
  }
}
.hotlinks__toprofile__title {
  font-weight: 500;
  font-size: 0.8125rem;
  margin-bottom: 0.125rem;
}
@media (min-width: 1280px) {
  .hotlinks__toprofile__title {
    font-size: 1rem;
    margin-bottom: 0.3125rem;
  }
}
@media (min-width: 2000px) {
  .hotlinks__toprofile__title {
    font-size: 1.125rem;
  }
}
.hotlinks__toprofile__text {
  font-size: 0.625rem;
  max-width: 250px;
  display: none;
}
@media (min-width: 1280px) {
  .hotlinks__toprofile__text {
    font-size: 0.6875rem;
    display: block;
  }
}
@media (min-width: 1480px) {
  .hotlinks__toprofile__text {
    font-size: 0.75rem;
  }
}
@media (min-width: 2000px) {
  .hotlinks__toprofile__text {
    font-size: 0.75rem;
  }
}
.hotlinks__toprofile__more {
  display: inline-block;
  font-size: 0.6875rem;
  line-height: 1;
  text-align: center;
  padding: 0.4375rem 0.75rem;
  border: 1px solid #FFF;
  border-radius: 10px;
  color: #FFF;
}
@media (min-width: 1280px) {
  .hotlinks__toprofile__more {
    font-size: 0.875rem;
    padding: 0.5625rem 1.25rem;
  }
}
@media (min-width: 2000px) {
  .hotlinks__toprofile__more {
    font-size: 1.25rem;
    padding: 0.8125rem 1.5rem;
  }
}
.hotlinks__toprofile__more:hover, .hotlinks__toprofile__more:focus {
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(3px);
}
.hotlinks__toprofile__row {
  display: flex;
  align-items: center;
  height: 100%;
}
.hotlinks__toprofile__item:nth-child(1) {
  flex: 1 0 0%;
  width: 100%;
  max-width: 100%;
}
.hotlinks__toprofile__item:nth-child(2) {
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
  padding-left: 1.25rem;
}
@media (min-width: 2000px) {
  .hotlinks__toprofile__item:nth-child(2) {
    padding-left: 1.875rem;
  }
}
.hotlinks__card {
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
  color: #3A3A3A;
  text-align: center;
  cursor: pointer;
}
@media (min-width: 991px) {
  .hotlinks__card {
    padding: 0.8125rem 3.125rem 0.8125rem 0.9375rem;
    background-color: #F9F9F9;
    border-radius: 15px;
    overflow: hidden;
    text-align: left;
  }
}
@media (min-width: 1280px) {
  .hotlinks__card {
    padding: 0.9375rem 4.375rem 0.9375rem 1.25rem;
  }
}
@media (min-width: 2000px) {
  .hotlinks__card {
    padding: 1.25rem 4.375rem 1.25rem 1.875rem;
  }
}
.hotlinks__card:hover, .hotlinks__card:focus {
  color: #65676E;
}
.hotlinks__card__title {
  font-weight: 500;
  font-size: 0.8125rem;
  line-height: 1;
  z-index: 2;
  position: relative;
}
@media (min-width: 991px) {
  .hotlinks__card__title {
    font-size: 0.75rem;
    line-height: 1.2;
    font-weight: 400;
    max-width: 120px;
  }
}
@media (min-width: 1280px) {
  .hotlinks__card__title {
    font-size: 0.875rem;
    max-width: 120px;
  }
}
@media (min-width: 2000px) {
  .hotlinks__card__title {
    font-size: 0.875rem;
  }
}
.hotlinks__card__img {
  width: 39px;
  height: 42px;
  overflow: hidden;
  border-radius: 5px;
  margin: 0 auto 0.5625rem auto;
  align-items: center;
  display: flex;
  justify-content: center;
}
@media (min-width: 991px) {
  .hotlinks__card__img {
    position: absolute;
    right: 0;
    top: 0;
    width: 35%;
    height: 100%;
    margin-bottom: 0;
    justify-content: flex-end;
    z-index: 1;
  }
}
@media (min-width: 1280px) {
  .hotlinks__card__img {
    width: 40%;
  }
}
@media (min-width: 1480px) {
  .hotlinks__card__img {
    width: 80px;
  }
}
.hotlinks__card__img img {
  flex-grow: 0;
  object-fit: cover;
}
@media (min-width: 991px) {
  .hotlinks__card__img img.hotlinks__card__img__mobile {
    display: none;
  }
}
.hotlinks__card__img img.hotlinks__card__img__desktop {
  display: none;
}
@media (min-width: 991px) {
  .hotlinks__card__img img.hotlinks__card__img__desktop {
    display: block;
  }
}

.infoapp {
  position: relative;
  display: flex;
  align-items: stretch;
  flex-wrap: wrap;
  margin: -10px;
}
.infoapp__item {
  flex: 0 0 auto;
  width: 100%;
  max-width: 100%;
  padding: 10px;
}
@media (min-width: 768px) {
  .infoapp__item {
    width: 50%;
  }
}
@media (min-width: 991px) {
  .infoapp__item.infoapp__item__sizebig {
    width: 58.33333333%;
  }
}
@media (min-width: 991px) {
  .infoapp__item.infoapp__item__sizesmall {
    width: 41.66666667%;
  }
}
.infoapp__card {
  background-color: #F9F9F9;
  border-radius: 24px;
  position: relative;
  overflow: hidden;
  height: 100%;
}
@media (min-width: 991px) {
  .infoapp__card {
    min-height: 300px;
  }
}
@media (min-width: 1280px) {
  .infoapp__card {
    min-height: 320px;
  }
}
.infoapp__card.infoapp__card__big {
  padding: 2rem 2rem 17.5rem 2rem;
}
@media (min-width: 991px) {
  .infoapp__card.infoapp__card__big {
    padding: 2.5rem 2.5rem 2.5rem 47%;
  }
}
@media (min-width: 1280px) {
  .infoapp__card.infoapp__card__big {
    padding: 3.5rem 3.5rem 3.5rem 47%;
  }
}
.infoapp__card.infoapp__card__big .infoapp__card__img {
  left: 0;
  right: 0;
  bottom: 0;
  height: 252px;
}
@media (min-width: 991px) {
  .infoapp__card.infoapp__card__big .infoapp__card__img {
    right: auto;
    width: 45%;
  }
}
.infoapp__card.infoapp__card__small {
  padding: 2rem 2rem 6.875rem 2rem;
}
@media (min-width: 768px) {
  .infoapp__card.infoapp__card__small {
    padding-bottom: 17.5rem;
  }
}
@media (min-width: 991px) {
  .infoapp__card.infoapp__card__small {
    padding: 2.5rem;
  }
}
@media (min-width: 1280px) {
  .infoapp__card.infoapp__card__small {
    padding: 3.5rem;
  }
}
@media (min-width: 1280px) {
  .infoapp__card.infoapp__card__small .infoapp__card__text {
    width: 80%;
  }
}
.infoapp__card.infoapp__card__small .infoapp__card__img {
  width: 160px;
  height: 160px;
  right: 0;
  bottom: 0;
}
@media (min-width: 1280px) {
  .infoapp__card.infoapp__card__small .infoapp__card__img {
    width: 204px;
    height: 209px;
    right: 0;
    bottom: 0;
  }
}
@media (min-width: 1480px) {
  .infoapp__card.infoapp__card__small .infoapp__card__img {
    width: 204px;
    height: 209px;
  }
}
.infoapp__card__content {
  display: flex;
  flex-direction: column;
  position: relative;
  height: 100%;
  z-index: 2;
}
.infoapp__card__body {
  flex: 1 0 0%;
  width: 100%;
  max-width: 100%;
}
.infoapp__card__more {
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.infoapp__card__title {
  font-size: 1.25rem;
  margin-bottom: 10px;
  color: #3A3A3A;
}
@media (min-width: 2000px) {
  .infoapp__card__title {
    font-size: 1.875rem;
    margin-bottom: 1rem;
  }
}
.infoapp__card__text {
  font-size: 1rem;
  margin-bottom: 1.25rem;
  color: #707378;
}
@media (min-width: 2000px) {
  .infoapp__card__text {
    font-size: 1.125rem;
  }
}
.infoapp__card__img {
  align-items: center;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  position: absolute;
  z-index: 1;
}
.infoapp__card__img img {
  flex-grow: 0;
  object-fit: contain;
  max-height: 100%;
  max-width: 100%;
}

.ncatalog {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  margin: -0.3125rem;
}
@media (min-width: 991px) {
  .ncatalog {
    margin: 0;
    height: 460px;
    background-color: #F9F9F9;
    border-radius: 24px;
    overflow: hidden;
  }
}
@media (min-width: 1280px) {
  .ncatalog {
    height: 512px;
  }
}
@media (min-width: 1480px) {
  .ncatalog {
    height: 600px;
  }
}
.ncatalog__item {
  padding: 0.3125rem;
  flex: 0 0 auto;
  width: 50%;
  transition: all 0.3s;
}
@media (min-width: 768px) {
  .ncatalog__item {
    width: 33.33333333%;
  }
}
@media (min-width: 991px) {
  .ncatalog__item {
    width: auto;
    padding: 0;
    transform: scale(0.7, 0.7);
    position: absolute;
  }
}
@media (min-width: 1280px) {
  .ncatalog__item {
    transform: scale(0.8, 0.8);
  }
}
@media (min-width: 1480px) {
  .ncatalog__item {
    transform: scale(0.9, 0.9);
  }
}
@media (min-width: 991px) {
  .ncatalog__item.ncatalog__category_0 {
    width: 290px;
    height: 322px;
    right: 50%;
    margin-right: 21%;
    bottom: -25px;
  }
}
@media (min-width: 1280px) {
  .ncatalog__item.ncatalog__category_0 {
    width: 260px;
    height: 289px;
    right: 50%;
    margin-right: 28%;
    bottom: -20px;
  }
}
@media (min-width: 991px) {
  .ncatalog__item.ncatalog__category_1 {
    left: 50%;
    top: -20px;
    margin-left: -10%;
    width: 316px;
    height: 323px;
  }
}
@media (min-width: 1280px) {
  .ncatalog__item.ncatalog__category_1 {
    left: 50%;
    top: 15px;
    margin-left: -5%;
    width: 280px;
    height: 273px;
  }
}
@media (min-width: 991px) {
  .ncatalog__item.ncatalog__category_2 {
    left: 50%;
    margin-left: -9%;
    bottom: -40px;
    width: 290px;
    height: 316px;
  }
}
@media (min-width: 1280px) {
  .ncatalog__item.ncatalog__category_2 {
    left: 50%;
    margin-left: -15%;
    bottom: -13px;
    width: 300px;
    height: 326px;
  }
}
@media (min-width: 991px) {
  .ncatalog__item.ncatalog__category_3 {
    right: 50%;
    margin-right: 22%;
    top: 10px;
    width: 312px;
    height: 230px;
  }
}
@media (min-width: 1280px) {
  .ncatalog__item.ncatalog__category_3 {
    right: 50%;
    margin-right: 24%;
    top: 56px;
    width: 351px;
    height: 217px;
  }
}
@media (min-width: 991px) {
  .ncatalog__item.ncatalog__category_4 {
    left: 50%;
    margin-left: 13%;
    top: -4.375rem;
    width: 366px;
    height: 428px;
  }
}
@media (min-width: 1280px) {
  .ncatalog__item.ncatalog__category_4 {
    left: 50%;
    margin-left: 20%;
    top: -37px;
    width: 400px;
    height: 453px;
  }
}
@media (min-width: 991px) {
  .ncatalog__item.ncatalog__category_5 {
    top: 56px;
    right: 50%;
    margin-right: 6%;
    width: 237px;
    height: 600px;
  }
}
@media (min-width: 1280px) {
  .ncatalog__item.ncatalog__category_5 {
    top: -25px;
    right: 50%;
    margin-right: 12%;
    width: 200px;
    height: 509px;
  }
}
.ncatalog__item.ncatalog__category_6 {
  display: none;
}
@media (min-width: 991px) {
  .ncatalog__item.ncatalog__category_6 {
    left: 50%;
    bottom: -3.75rem;
    margin-left: 15%;
    display: block;
    width: 306px;
    height: 300px;
  }
}
@media (min-width: 1280px) {
  .ncatalog__item.ncatalog__category_6 {
    left: 50%;
    bottom: 0px;
    margin-left: 5%;
    display: block;
    width: 306px;
    height: 300px;
  }
}
.ncatalog__card {
  display: block;
  background-color: #F9F9F9;
  border-radius: 12px;
  padding: 0.75rem;
  text-align: center;
}
@media (min-width: 768px) {
  .ncatalog__card {
    padding: 1.5rem;
  }
}
@media (min-width: 991px) {
  .ncatalog__card {
    height: 100%;
    padding: 0;
  }
  .ncatalog__card:hover .ncatalog__card__img i {
    opacity: 1;
  }
}
.ncatalog__card__imgmobile {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 58px;
  margin: 0 auto 0.5rem auto;
}
@media (min-width: 991px) {
  .ncatalog__card__imgmobile {
    display: none;
  }
}
.ncatalog__card__imgmobile img, .ncatalog__card__imgmobile svg {
  display: block;
  max-width: 100%;
  max-height: 100%;
}
.ncatalog__card__title {
  font-size: 0.875rem;
  line-height: 1;
}
@media (min-width: 768px) {
  .ncatalog__card__title {
    font-size: 16px;
  }
}
@media (min-width: 991px) {
  .ncatalog__card__title {
    display: none;
  }
}
.ncatalog__card__img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: none;
  align-items: center;
  justify-content: center;
}
@media (min-width: 991px) {
  .ncatalog__card__img {
    display: flex;
  }
}
.ncatalog__card__img i {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #F9F9F9;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all 0.3s;
  z-index: 2;
}
.ncatalog__card__img img {
  width: 100%;
  height: 100%;
  transition: all 0.3s;
  object-fit: contain;
}

.nfavorites {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, 50%);
  justify-items: stretch;
  grid-auto-flow: dense;
  gap: 0.625rem;
}
@media (min-width: 991px) {
  .nfavorites {
    gap: 1rem;
    grid-template-columns: repeat(12, [col] 12fr);
  }
}
@media (min-width: 1280px) {
  .nfavorites {
    gap: 1.25rem;
  }
}
.nfavorites__item {
  position: relative;
}
@media (min-width: 991px) {
  .nfavorites__item.nfavorites__item__hidedesktop {
    display: none !important;
  }
}
.nfavorites__item.nfavorites__item__hidemobile {
  display: none !important;
}
@media (min-width: 991px) {
  .nfavorites__item.nfavorites__item__hidemobile {
    display: flex !important;
  }
}
.nfavorites__item.nfavorites__item__size-0 {
  grid-column: 1;
  grid-row: 2/3;
}
@media (min-width: 991px) {
  .nfavorites__item.nfavorites__item__size-0 {
    grid-column: 1/3;
    grid-row: 1/3;
  }
}
.nfavorites__item.nfavorites__item__size-0 .nfavorites__card {
  height: 238px;
}
@media (min-width: 991px) {
  .nfavorites__item.nfavorites__item__size-0 .nfavorites__card {
    height: 256px;
  }
}
.nfavorites__item.nfavorites__item__size-0 .nfavorites__card__img {
  width: 100%;
  height: 170px;
  right: 0;
  bottom: 0;
  display: flex;
  justify-content: flex-end;
}
@media (min-width: 991px) {
  .nfavorites__item.nfavorites__item__size-0 .nfavorites__card__img {
    width: 100%;
    height: 162px;
    bottom: 0;
    right: 0;
    justify-content: center;
  }
}
.nfavorites__item.nfavorites__item__size-1 {
  grid-column: 1;
  grid-row: 3;
}
@media (min-width: 991px) {
  .nfavorites__item.nfavorites__item__size-1 {
    grid-column: 3/6;
    grid-row: 1;
  }
}
.nfavorites__item.nfavorites__item__size-1 .nfavorites__card {
  height: 202px;
}
@media (min-width: 991px) {
  .nfavorites__item.nfavorites__item__size-1 .nfavorites__card {
    height: 120px;
    padding-right: 45%;
  }
}
.nfavorites__item.nfavorites__item__size-1 .nfavorites__card__img {
  width: 166px;
  height: 148px;
  right: 0;
  bottom: 0;
  overflow: hidden;
  border-radius: 0 0 12px 0;
}
@media (min-width: 991px) {
  .nfavorites__item.nfavorites__item__size-1 .nfavorites__card__img {
    width: 100%;
    height: 85%;
    bottom: 0;
    right: 0;
    justify-content: flex-end;
    border-radius: 0 0 24px 0;
  }
}
@media (min-width: 2000px) {
  .nfavorites__item.nfavorites__item__size-1 .nfavorites__card__img {
    height: 280px;
  }
}
.nfavorites__item.nfavorites__item__size-2 {
  grid-column: 2;
  grid-row: 2;
}
@media (min-width: 991px) {
  .nfavorites__item.nfavorites__item__size-2 {
    grid-column: 6/9;
    grid-row: 1;
  }
}
.nfavorites__item.nfavorites__item__size-2 .nfavorites__card {
  height: 162px;
}
@media (min-width: 991px) {
  .nfavorites__item.nfavorites__item__size-2 .nfavorites__card {
    height: 120px;
    padding-right: 45%;
  }
}
.nfavorites__item.nfavorites__item__size-2 .nfavorites__card__img {
  width: 135px;
  height: 107px;
  right: 1.0625rem;
  bottom: 0;
  justify-content: flex-end;
}
@media (min-width: 991px) {
  .nfavorites__item.nfavorites__item__size-2 .nfavorites__card__img {
    width: 100%;
    height: 111%;
    bottom: 0;
    right: 1.5rem;
  }
}
@media (min-width: 2000px) {
  .nfavorites__item.nfavorites__item__size-2 .nfavorites__card__img {
    height: 273px;
    right: 2.1875rem;
  }
}
.nfavorites__item.nfavorites__item__size-3 {
  grid-column: 1/3;
  grid-row: 1;
}
@media (min-width: 991px) {
  .nfavorites__item.nfavorites__item__size-3 {
    grid-column: 9/13;
    grid-row: 1;
  }
}
.nfavorites__item.nfavorites__item__size-3 .nfavorites__card {
  height: 130px;
  padding-right: 45%;
}
@media (min-width: 991px) {
  .nfavorites__item.nfavorites__item__size-3 .nfavorites__card {
    height: 120px;
  }
}
.nfavorites__item.nfavorites__item__size-3 .nfavorites__card__img {
  width: 208px;
  height: 111%;
  right: -1.75rem;
  bottom: 0;
}
@media (min-width: 991px) {
  .nfavorites__item.nfavorites__item__size-3 .nfavorites__card__img {
    width: 100%;
    height: 111%;
    bottom: 0;
    justify-content: flex-end;
    right: 1.5rem;
  }
}
@media (min-width: 2000px) {
  .nfavorites__item.nfavorites__item__size-3 .nfavorites__card__img {
    width: 365px;
    right: 2.1875rem;
  }
}
.nfavorites__item.nfavorites__item__size-4 {
  grid-column: 2;
  grid-row: 3;
  margin-top: -76px;
}
@media (min-width: 991px) {
  .nfavorites__item.nfavorites__item__size-4 {
    grid-column: 3/5;
    grid-row: 2;
    margin-top: 0;
  }
}
.nfavorites__item.nfavorites__item__size-4 .nfavorites__card {
  height: 130px;
}
@media (min-width: 991px) {
  .nfavorites__item.nfavorites__item__size-4 .nfavorites__card {
    height: 120px;
  }
}
.nfavorites__item.nfavorites__item__size-4 .nfavorites__card__img {
  width: 157px;
  height: 87px;
  right: 0;
  bottom: 0;
  justify-content: flex-end;
}
@media (min-width: 991px) {
  .nfavorites__item.nfavorites__item__size-4 .nfavorites__card__img {
    width: 90%;
    height: 60%;
    bottom: 0;
    right: 0;
  }
}
@media (min-width: 2000px) {
  .nfavorites__item.nfavorites__item__size-4 .nfavorites__card__img {
    width: 100%;
  }
}
.nfavorites__item.nfavorites__item__size-5 {
  grid-column: 2;
  grid-row: 5;
}
@media (min-width: 991px) {
  .nfavorites__item.nfavorites__item__size-5 {
    grid-column: 5/8;
    grid-row: 2;
  }
}
.nfavorites__item.nfavorites__item__size-5 .nfavorites__card {
  height: 146px;
}
@media (min-width: 991px) {
  .nfavorites__item.nfavorites__item__size-5 .nfavorites__card {
    height: 120px;
  }
}
.nfavorites__item.nfavorites__item__size-5 .nfavorites__card__img {
  width: 114px;
  height: 109px;
  right: 0;
  bottom: 0;
  justify-content: flex-end;
}
@media (min-width: 991px) {
  .nfavorites__item.nfavorites__item__size-5 .nfavorites__card__img {
    width: 55%;
    height: 100%;
    right: 0;
    bottom: 0;
  }
}
@media (min-width: 2000px) {
  .nfavorites__item.nfavorites__item__size-5 .nfavorites__card__img {
    width: 100%;
  }
}
.nfavorites__item.nfavorites__item__size-6 {
  grid-column: 1;
  grid-row: 5;
  margin-top: -1.375rem;
}
@media (min-width: 991px) {
  .nfavorites__item.nfavorites__item__size-6 {
    grid-column: 8/11;
    grid-row: 2;
    margin-top: 0;
  }
}
.nfavorites__item.nfavorites__item__size-6 .nfavorites__card {
  height: 168px;
}
@media (min-width: 991px) {
  .nfavorites__item.nfavorites__item__size-6 .nfavorites__card {
    height: 120px;
  }
}
.nfavorites__item.nfavorites__item__size-6 .nfavorites__card__img {
  width: 155px;
  height: 109px;
  right: 0;
  bottom: 0;
  justify-content: flex-end;
}
@media (min-width: 991px) {
  .nfavorites__item.nfavorites__item__size-6 .nfavorites__card__img {
    width: 65%;
    height: 100%;
    right: 0;
    bottom: 0;
  }
}
@media (min-width: 2000px) {
  .nfavorites__item.nfavorites__item__size-6 .nfavorites__card__img {
    width: 100%;
  }
}
.nfavorites__item.nfavorites__item__size-7 {
  grid-column: 2;
  grid-row: 4;
  margin-top: -148px;
}
@media (min-width: 991px) {
  .nfavorites__item.nfavorites__item__size-7 {
    grid-column: 11/13;
    grid-row: 2;
    margin-top: 0;
  }
}
.nfavorites__item.nfavorites__item__size-7 .nfavorites__card {
  height: 160px;
}
@media (min-width: 991px) {
  .nfavorites__item.nfavorites__item__size-7 .nfavorites__card {
    height: 120px;
  }
}
.nfavorites__item.nfavorites__item__size-7 .nfavorites__card__img {
  width: 135px;
  height: 80px;
  right: 16px;
  bottom: 12px;
  justify-content: flex-end;
}
@media (min-width: 991px) {
  .nfavorites__item.nfavorites__item__size-7 .nfavorites__card__img {
    width: 80%;
    height: 60%;
    right: 0;
    bottom: 0;
  }
}
@media (min-width: 2000px) {
  .nfavorites__item.nfavorites__item__size-7 .nfavorites__card__img {
    width: 100%;
    right: 0;
    bottom: 0;
  }
}
.nfavorites__card {
  display: block;
  position: relative;
  border-radius: 12px;
  padding: 1rem;
  background-color: #F9F9F9;
  min-height: 130px;
  color: #3A3A3A;
}
@media (min-width: 991px) {
  .nfavorites__card {
    min-height: 120px;
    border-radius: 12px;
    padding: 1.5rem;
  }
}
@media (min-width: 1280px) {
  .nfavorites__card {
    border-radius: 24px;
    padding: 1.75rem;
  }
}
.nfavorites__card:hover, .nfavorites__card:focus {
  color: #65676E;
}
.nfavorites__card__title {
  display: inline-block;
  font-size: 1rem;
  line-height: 1.2;
  position: relative;
  z-index: 2;
  max-width: 135px;
}
@media (min-width: 991px) {
  .nfavorites__card__title {
    font-size: 0.875rem;
  }
}
.nfavorites__card__img {
  position: absolute;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  overflow: hidden;
  z-index: 1;
}
.nfavorites__card__img img {
  display: block;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}
.nfavorites .nfavorites__hidemobile {
  display: none;
}
@media (min-width: 991px) {
  .nfavorites .nfavorites__hidemobile {
    display: block;
  }
}
@media (min-width: 991px) {
  .nfavorites .nfavorites__hidedesktop {
    display: none;
  }
}

.nheader {
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  padding: 1.25rem 0;
  box-shadow: 0px 6px 8.4px 0px rgba(0, 0, 0, 0.03);
  transition: all 0.3s;
  z-index: 100;
}
.nheader__linea {
  display: none;
  align-items: center;
  justify-content: space-between;
  transition: all 0.3s;
}
@media (min-width: 991px) {
  .nheader__linea {
    padding-bottom: 1.25rem;
    display: flex;
  }
}
@media (min-width: 1480px) {
  .nheader__linea {
    display: flex;
  }
}
.nheader__logo {
  position: relative;
}
.nheader__logo a {
  display: block;
  width: 240px;
  color: #1F1A17;
}
.nheader__logo a svg {
  display: block;
  max-width: 100%;
}
.nheader__logo_mobile {
  position: relative;
}
@media (min-width: 991px) {
  .nheader__logo_mobile {
    display: none;
  }
}
.nheader__logo_mobile a {
  display: block;
  width: 160px;
  color: #1F1A17;
}
.nheader__logo_mobile a svg {
  display: block;
  max-width: 100%;
}
.nheader__info {
  list-style: none;
  margin: 0 -0.9375rem;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  font-weight: 500;
  font-size: 14px;
  line-height: 1.2;
}
@media (min-width: 1280px) {
  .nheader__info {
    font-size: 16px;
  }
}
.nheader__info li {
  padding: 0 0.9375rem;
}
.nheader__info a {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  color: #3A3A3A;
}
.nheader__info a:hover, .nheader__info a:focus {
  color: #707378;
}
.nheader__info a i {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  margin-right: 0.375rem;
}
.nheader__info a i svg {
  display: block;
  max-width: 100%;
  max-height: 100%;
  transition: all 0.3s;
}
.nheader__lineb {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (min-width: 991px) {
  .nheader__controls {
    margin-left: 0.625rem;
    border: 1px solid rgba(0, 0, 0, 0.3);
    border-radius: 10px;
  }
}
@media (min-width: 1480px) {
  .nheader__controls {
    margin-left: 1.875rem;
  }
}
.nheader__controls__list {
  list-style: none;
  margin: 0 -0.25rem;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}
@media (min-width: 576px) {
  .nheader__controls__list {
    margin: 0 -0.5rem;
  }
}
@media (min-width: 991px) {
  .nheader__controls__list {
    margin: 0;
    height: 38px;
    padding: 0 0.3125rem;
  }
}
@media (min-width: 1280px) {
  .nheader__controls__list {
    margin: 0;
    height: 38px;
    padding: 0 0.8125rem;
  }
}
.nheader__controls__list li {
  padding: 0 0.25rem;
}
@media (min-width: 576px) {
  .nheader__controls__list li {
    padding: 0 0.5rem;
  }
}
@media (min-width: 991px) {
  .nheader__controls__list li {
    padding: 0 0.5rem;
  }
}
@media (min-width: 1280px) {
  .nheader__controls__list li {
    padding: 0 0.8125rem;
  }
}
.nheader__controls__link {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  color: #3A3A3A;
  cursor: pointer;
}
@media (min-width: 991px) {
  .nheader__controls__link {
    width: 22px;
    height: 22px;
  }
}
.nheader__controls__link:hover, .nheader__controls__link:focus {
  color: #65676E;
}
.nheader__controls__link svg {
  display: block;
  max-width: 100%;
  max-height: 100%;
  transition: all 0.3s;
}
.nheader__controls__numbers {
  position: absolute;
  left: 0.5rem;
  top: -0.125rem;
  line-height: 1;
  color: #FFF;
  font-size: 0.625rem;
  font-weight: 500;
  /* padding: 0.0625rem 0.1875rem; */
  margin: 0.0625rem 0.1875rem;
  background-color: #F06431;
  border-radius: 7px;
  max-width: 26px;
  overflow: hidden;
  z-index: 2;
}
@media (min-width: 1280px) {
  .nheader__controls__numbers {
    font-size: 0.75rem;
  }
}
@media (min-width: 1480px) {
  .nheader__controls__numbers {
    left: 0.9375rem;
  }
}
.nheader__menu {
  list-style: none;
  margin: 0 -0.3125rem;
  padding: 0;
  display: none;
  align-items: center;
}
@media (min-width: 991px) {
  .nheader__menu {
    display: flex;
  }
}
.nheader__menu__item {
  padding: 0 0.3125rem;
  position: relative;
}
.nheader__menu__item:hover .nheader__menu__submenu {
  display: block;
}
.nheader__menu__item:hover .nheader__menu__catalog {
  background-color: #E34C15;
  color: #FFF;
}
.nheader__menu__link {
  text-transform: uppercase;
  color: #3A3A3A;
  border: 1px solid transparent;
  display: flex;
  align-items: center;
  white-space: nowrap;
  padding: 0 0.625rem;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.1;
}
@media (min-width: 991px) {
  .nheader__menu__link {
    padding: 0 0.3125rem;
  }
}
@media (min-width: 1280px) {
  .nheader__menu__link {
    padding: 0 0.625rem;
    font-size: 16px;
  }
}
@media (min-width: 1480px) {
  .nheader__menu__link {
    padding: 0 0.9375rem;
  }
}
.nheader__menu__link:hover, .nheader__menu__link:focus {
  color: #707378;
}
.nheader__menu__category {
  display: flex;
  align-items: center;
  border: 1px solid rgba(0, 0, 0, 0.3);
  border-radius: 10px;
  white-space: nowrap;
  color: #3A3A3A;
  text-transform: uppercase;
  position: relative;
  overflow: hidden;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.1;
}
@media (min-width: 991px) {
  .nheader__menu__category {
    padding: 0 0.9375rem;
    min-width: 180px;
    height: 38px;
  }
}
@media (min-width: 1280px) {
  .nheader__menu__category {
    font-size:  16px;
    min-width: 190px;
  }
}
.nheader__menu__category:hover, .nheader__menu__category:focus {
  color: #333;
  border-color: rgba(0, 0, 0, 0.6);
}
.nheader__menu__category span {
  position: relative;
  z-index: 2;
}
.nheader__menu__category i {
  position: absolute;
  right: 0;
  bottom: 1px;
  top: 1px;
  width: 50px;
  display: flex;
  align-items: center;
  z-index: 1;
}
@media (min-width: 1280px) {
  .nheader__menu__category i {
    width: 60px;
  }
}
.nheader__menu__category i img {
  display: block;
  height: 100%;
  max-width: none;
  width: auto;
}
.nheader__menu__catalog {
  display: flex;
  align-items: center;
  border-radius: 10px;
  white-space: nowrap;
  color: #FFF;
  text-transform: uppercase;
  background-color: #F06431;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.1;
}
@media (min-width: 991px) {
  .nheader__menu__catalog {
    padding: 0 0.9375rem;
    height: 38px;
  }
}
@media (min-width: 1280px) {
  .nheader__menu__catalog {
    font-size: 16px;
    height: 38px;
  }
}
.nheader__menu__catalog i {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
}
@media (min-width: 991px) {
  .nheader__menu__catalog i {
    margin-right: 0;
  }
}
@media (min-width: 1280px) {
  .nheader__menu__catalog i {
    margin-right: 0.375rem;
  }
}
.nheader__menu__catalog i svg, .nheader__menu__catalog i img {
  display: block;
  max-width: 100%;
  max-height: 100%;
}
@media (min-width: 991px) {
  .nheader__menu__catalog span {
    display: none;
  }
}
@media (min-width: 1280px) {
  .nheader__menu__catalog span {
    display: block;
  }
}
.nheader__menu__submenu {
  position: absolute;
  left: 0.3125rem;
  top: 100%;
  padding-top: 1.1875rem;
  z-index: 101;
  width: 250px;
  display: none;
}
.nheader__menu__submenu.nheader__menu__submenu__sizexl {
  width: 762px;
}
.nheader__menu__submenu__content {
  background-color: #F6F6F8;
  border-radius: 20px;
  padding: 1.875rem;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.4;
}
.nheader__menu__submenu__rows {
  display: flex;
  flex-wrap: nowrap;
  margin: 0 -1.875rem;
}
.nheader__menu__submenu__item {
  padding: 0 1.875rem;
  max-width: 100%;
  flex: 0 0 auto;
}
.nheader__menu__submenu__item.nheader__menu__submenu__item__aside {
  width: 284px;
}
.nheader__menu__submenu__item.nheader__menu__submenu__item__catalog {
  width: 174px;
}
.nheader__menu__submenu__item.nheader__menu__submenu__item__sub {
  flex: 1 0 0%;
  width: 100%;
}
.nheader__menu__submenu__item.nheader__menu__submenu__item__sub .nheader__menu__submenu__list {
  display: none;
}
.nheader__menu__submenu__item.nheader__menu__submenu__item__sub .nheader__menu__submenu__list.sub--active {
  display: block;
}
.nheader__menu__submenu__list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.nheader__menu__submenu__list li {
  margin-bottom: 0.625rem;
}
.nheader__menu__submenu__list li.link--active a {
  color: #F06431;
}
.nheader__menu__submenu__list a {
  display: inline-block;
  color: #545454;
}
.nheader__menu__submenu__list a:hover, .nheader__menu__submenu__list a:focus {
  color: #F06431;
}
.nheader .nheader__visibledesktop {
  display: none;
}
@media (min-width: 991px) {
  .nheader .nheader__visibledesktop {
    display: block;
  }
}
.nheader .nheader__visiblemobile {
  display: block;
}
@media (min-width: 991px) {
  .nheader .nheader__visiblemobile {
    display: none;
  }
}
.nheader.header__fixed {
  background-color: #FFF;
}
@media (min-width: 991px) {
  .nheader.header__fixed {
    transform: translateY(-56px);
  }
}
.nheader.header__fixed .nheader__linea {
  opacity: 0;
  transform: translateY(-100%);
}
.nheader:not(.header__fixed).nheader__white .nheader__logo a {
  color: #FFF;
}
@media (min-width: 991px) {
  .nheader:not(.header__fixed).nheader__white {
    box-shadow: none;
  }
  .nheader:not(.header__fixed).nheader__white .nheader__info a,
.nheader:not(.header__fixed).nheader__white .nheader__menu__category,
.nheader:not(.header__fixed).nheader__white .nheader__menu__link,
.nheader:not(.header__fixed).nheader__white .nheader__controls__link {
    color: #FFF;
  }
  .nheader:not(.header__fixed).nheader__white .nheader__info a:hover, .nheader:not(.header__fixed).nheader__white .nheader__info a:focus,
.nheader:not(.header__fixed).nheader__white .nheader__menu__category:hover,
.nheader:not(.header__fixed).nheader__white .nheader__menu__category:focus,
.nheader:not(.header__fixed).nheader__white .nheader__menu__link:hover,
.nheader:not(.header__fixed).nheader__white .nheader__menu__link:focus,
.nheader:not(.header__fixed).nheader__white .nheader__controls__link:hover,
.nheader:not(.header__fixed).nheader__white .nheader__controls__link:focus {
    color: #CDD1D8;
  }
  .nheader:not(.header__fixed).nheader__white .nheader__menu__category {
    outline: 1px solid rgba(255, 255, 255, 0.3);
    outline-offset: -2px;
  }
  .nheader:not(.header__fixed).nheader__white .nheader__menu__category,
.nheader:not(.header__fixed).nheader__white .nheader__controls {
    border-color: rgba(255, 255, 255, 0.3);
  }
  .nheader:not(.header__fixed).nheader__white .nheader__logo {
    color: #FFF;
  }
}
.nheader__search {
  position: absolute;
  right: 0;
  top: 12px;
  width: 0;
  transition: all ease 0.5s;
  overflow: hidden;
  z-index: 10;
}
@media (min-width: 991px) {
  .nheader__search {
    top: -1px;
    right: -1px;
  }
}
.nheader__search.nheader__search__opened {
  display: block;
  width: calc(100vw - 32px);
  right: 50%;
  transform: translateX(50%);
}
@media (min-width: 991px) {
  .nheader__search.nheader__search__opened {
    top: 70px;
    width: calc(100vw - 40px);
  }
}
.nheader__search__body {
  background-color: #fff;
  border: 1px solid rgba(0, 0, 0, 0.3);
  border-radius: 10px;
}
.nheader__search__row {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
}
.nheader__search__col {
  flex: 1 0 0%;
  width: 100%;
  max-width: 100%;
  height: 100%;
}
.nheader__search__colauto {
  flex: 0 0 auto;
  width: 48px;
  max-width: 100%;
}
.nheader__search__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 33px;
  color: #3A3A3A;
}
@media (min-width: 991px) {
  .nheader__search__btn {
    height: 40px;
  }
}
.nheader__search__btn:hover, .nheader__search__btn:focus {
  color: #F06431;
}
.nheader__search__btn svg {
  display: block;
  max-width: 100%;
  max-height: 100%;
}
.nheader__search__input {
  display: block;
  width: 100%;
  padding: 0.4375rem 0 0.4375rem 3.125rem;
  background: url("../img/icons/ic-search.svg") 15px 50% no-repeat;
  background-size: 20px 20px;
  font-size: 1rem;
  line-height: 1;
}
@media (min-width: 991px) {
  .nheader__search__input {
    height: 40px;
    padding: 0.4375rem 0 0.4375rem 3.125rem;
  }
}
.nheader__search__result {
  display: none;
  width: 100%;
  z-index: 10;
}
.nheader__search__result__wrapper {
  margin-top: 1.125rem;
  background-color: #FFF;
  padding: 1.875rem;
  color: #3A3A3A;
  font-size: 1rem;
  line-height: 1.2;
  box-shadow: 0px 4px 13px rgba(150, 195, 255, 0.07);
  border-radius: 10px;
}
@media (min-width: 1480px) {
  .nheader__search__result__wrapper {
    font-size: 1.125rem;
  }
}
@media (min-width: 2000px) {
  .nheader__search__result__wrapper {
    font-size: 1.25rem;
  }
}
.nheader__search__result__item {
  margin-top: 1.875rem;
}
.nheader__search__result__item:first-child {
  margin-top: 0;
}

.nfooter {
  background-color: #F9F9F9;
  width: 100%;
}
.nfooter__menu {
  padding-top: 2.5rem;
  font-size: 16px;
  line-height: 1.4;
}
@media (min-width: 991px) {
  .nfooter__menu {
    padding-top: 1.875rem;
    font-size: 14px;
  }
}
.nfooter__menu ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  margin: -0.3125rem;
}
@media (min-width: 991px) {
  .nfooter__menu ul {
    margin: 0 -0.5rem;
  }
}
.nfooter__menu ul li {
  flex: 0 0 auto;
  max-width: 100%;
  padding: 0.3125rem;
  width: 100%;
}
@media (min-width: 991px) {
  .nfooter__menu ul li {
    padding: 0 0.5rem;
    width: 20%;
  }
}
.nfooter__menu ul a {
  display: flex;
  align-items: stretch;
  justify-content: flex-start;
  background-color: #FFF;
  min-height: 50px;
  border-radius: 10px;
  overflow: hidden;
  padding: 0 0 0 1.25rem;
}
@media (min-width: 991px) {
  .nfooter__menu ul a {
    min-height: 92px;
    border-radius: 24px;
    padding: 0 2.5rem 0 0;
  }
}
.nfooter__menu ul a:hover, .nfooter__menu ul a:focus {
  color: #707378;
}
.nfooter__menu ul a i {
  flex: 0 0 auto;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  margin-left: 1.25rem;
  width: 89px;
  order: 2;
}
@media (min-width: 991px) {
  .nfooter__menu ul a i {
    order: 1;
    margin-left: 0;
    margin-right: 0.625rem;
    width: 50%;
  }
}
@media (min-width: 1480px) {
  .nfooter__menu ul a i {
    margin-right: 1.25rem;
  }
}
.nfooter__menu ul a i.nfooter__menu_desktop {
  display: none;
}
@media (min-width: 991px) {
  .nfooter__menu ul a i.nfooter__menu_desktop {
    display: flex;
  }
}
@media (min-width: 991px) {
  .nfooter__menu ul a i.nfooter__menu_mobile {
    display: none;
  }
}
.nfooter__menu ul a i img, .nfooter__menu ul a i svg {
  display: block;
  max-width: 100%;
  max-height: 100%;
}
.nfooter__menu ul a span {
  order: 1;
  flex: 1 0 0%;
  align-self: center;
}
@media (min-width: 1280px) {
  .nfooter__menu ul a span {
    order: 2;
  }
}
.nfooter__lineb {
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
  display: flex;
  flex-wrap: wrap;
  margin: -1.25rem;
  line-height: 1.2;
}
@media (min-width: 991px) {
  .nfooter__lineb {
    padding-top: 3.125rem;
    padding-bottom: 2.5rem;
    justify-content: space-between;
  }
}
.nfooter__lineb__item {
  padding: 1.25rem;
  width: 100%;
}
@media (min-width: 991px) {
  .nfooter__lineb__item {
    flex: 0 0 auto;
    width: auto;
  }
}
.nfooter__label {
  font-size: 14px;
  margin-bottom: 0.375rem;
}
.nfooter__phone {
  position: relative;
}
.nfooter__tel {
  display: inline-block;
  white-space: nowrap;
  font-size: 1.5rem;
}
@media (min-width: 1280px) {
  .nfooter__tel {
    font-size: 1.75rem;
  }
}
@media (min-width: 1480px) {
  .nfooter__tel {
    font-size: 2rem;
  }
}
.nfooter__tel:hover, .nfooter__tel:focus {
  color: #3A3A3A;
}
.nfooter__logo {
  position: relative;
}
.nfooter__logo a {
  display: block;
  width: 200px;
}
@media (min-width: 1280px) {
  .nfooter__logo a {
    width: 235px;
  }
}
@media (min-width: 2000px) {
  .nfooter__logo a {
    width: 322px;
  }
}
.nfooter__logo a img, .nfooter__logo a svg {
  display: block;
  width: 100%;
}
.nfooter__logo + .nfooter__menuinfo {
  display: none;
}
@media (min-width: 991px) {
  .nfooter__logo + .nfooter__menuinfo {
    display: flex;
  }
}
.nfooter__socio {
  list-style: none;
  margin: -0.625rem;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
}
@media (min-width: 991px) {
  .nfooter__socio {
    margin: -0.3125rem;
  }
}
.nfooter__socio li {
  padding: 0.625rem;
  flex: 0 0 auto;
  width: auto;
}
@media (min-width: 991px) {
  .nfooter__socio li {
    padding: 0.3125rem;
  }
}
.nfooter__socio a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  color: #FFF;
  background-color: #3A3A3A;
}
@media (min-width: 991px) {
  .nfooter__socio a {
    width: 40px;
    height: 40px;
  }
}
.nfooter__socio a:hover, .nfooter__socio a:focus {
  background-color: #F06431;
}
.nfooter__socio a img, .nfooter__socio a svg {
  display: block;
  max-width: 100%;
  max-height: 100%;
}
@media (min-width: 991px) {
  .nfooter__socio a img, .nfooter__socio a svg {
    max-width: 20px;
    max-height: 20px;
  }
}
.nfooter__socio__info {
  padding-top: 0.9375rem;
  font-size: 14px;
  line-height: 1.15;
  color: #545454;
}
@media (min-width: 991px) {
  .nfooter__socio__info {
    font-size: 0.75rem;
  }
}
@media (min-width: 1480px) {
  .nfooter__socio__info {
    font-size: 14px;
  }
}
.nfooter__socio__info sup {
  top: 0;
}
.nfooter__chats {
  list-style: none;
  margin: -0.3125rem;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
}
@media (min-width: 1280px) {
  .nfooter__chats {
    flex-direction: row;
  }
}
.nfooter__chats li {
  padding: 5px;
  flex: 0 0 auto;
  width: auto;
}
@media (min-width: 1280px) {
  .nfooter__chats li {
    flex: 0 0 auto;
    width: auto;
  }
}
.nfooter__chats a {
  display: flex;
  align-items: center;
  min-height: 60px;
  background: linear-gradient(257.72deg, #F3F3F3 24.08%, #E5E5E5 109.49%);
  border-radius: 24px;
  padding: 0 1.5625rem;
  color: #545454;
  font-size: 16px;
}
@media (min-width: 991px) {
  .nfooter__chats a {
    min-height: 50px;
    width: 50px;
    padding: 0;
  }
}
@media (min-width: 1280px) {
  .nfooter__chats a {
    min-height: 60px;
    width: 200px;
    padding: 0 1.5625rem;
  }
}
.nfooter__chats a:hover, .nfooter__chats a:focus {
  color: #707378;
}
.nfooter__chats a span {
  display: block;
}
@media (min-width: 991px) {
  .nfooter__chats a span {
    display: none;
  }
}
@media (min-width: 1280px) {
  .nfooter__chats a span {
    display: block;
  }
}
.nfooter__chats a i {
  width: 20px;
  height: 20px;
  margin-right: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (min-width: 991px) {
  .nfooter__chats a i {
    margin-right: auto;
    margin-left: auto;
  }
}
@media (min-width: 1280px) {
  .nfooter__chats a i {
    margin-right: 1rem;
    margin-left: 0;
  }
}
.nfooter__chats a i img, .nfooter__chats a i svg {
  display: block;
  max-width: 100%;
  max-height: 100%;
}
.nfooter__menuinfo {
  list-style: none;
  margin: -0.3125rem;
  padding: 1.875rem 0 0 0;
  display: flex;
  flex-wrap: wrap;
  font-size: 14px;
}
@media (min-width: 991px) {
  .nfooter__menuinfo {
    margin: -0.625rem;
  }
}
.nfooter__menuinfo.nfooter__menuinfo__indesktop {
  display: none;
}
@media (min-width: 991px) {
  .nfooter__menuinfo.nfooter__menuinfo__indesktop {
    display: flex;
  }
}
@media (min-width: 991px) {
  .nfooter__menuinfo.nfooter__menuinfo__inmobile {
    display: none;
  }
}
.nfooter__menuinfo li {
  padding: 0.3125rem;
  flex: 0 0 auto;
  max-width: 100%;
  width: 100%;
}
@media (min-width: 991px) {
  .nfooter__menuinfo li {
    flex: 0 0 auto;
    padding: 10px;
    width: auto;
  }
}
.nfooter__menuinfo a {
  display: inline-block;
  color: #3A3A3A;
}
.nfooter__menuinfo a:hover, .nfooter__menuinfo a:focus {
  color: #707378;
}
.nfooter__linec {
  border-top: 1px solid #ddd;
  padding-top: 2rem;
  padding-bottom: 2rem;
  color: #4F4F4F;
  font-size: 14px;
  line-height: 1.2;
}
@media (min-width: 991px) {
  .nfooter__linec {
    font-size:14px;
  }
}
.nfooter__linec a {
  color: #545454;
}
.nfooter__linec a:hover, .nfooter__linec a:focus {
  color: #3A3A3A;
}
.nfooter__linec__rows {
  display: flex;
  flex-wrap: wrap;
  margin: -0.3125rem;
}
@media (min-width: 991px) {
  .nfooter__linec__rows {
    margin: -0.3125rem -0.9375rem;
  }
}
.nfooter__linec__rows > div {
  width: 100%;
  padding: 0.5rem;
}
@media (min-width: 991px) {
  .nfooter__linec__rows > div {
    flex: 0 0 auto;
    width: auto;
    padding: 0.5rem 0.9375rem;
  }
}
.nfooter__linec__rows > div.nfooter__linec__about {
  width: 100%;
}
@media (min-width: 1280px) {
  .nfooter__linec__rows > div.nfooter__linec__about {
    width: auto;
  }
}
.nfooter__studio {
  display: flex;
  align-items: center;
}
@media (min-width: 991px) {
  .nfooter__studio {
    margin-left: auto;
  }
}
.nfooter__studio a {
  display: flex;
  align-items: center;
}
.nfooter__studio a i {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  margin-left: 0.375rem;
}
.nfooter__studio a i svg {
  max-width: 100%;
  max-height: 100%;
}
/* @media (min-width: 1280px) {
  .nwelcome{
    height: 100vh;
  }} */
/* @media (max-width: 1280px) {
  .nwelcome{
    height: calc(100vh - 80px);
  }} */
/* .nwelcome__slider, .nwelcome__slider div :not(.nwelcome__btn ), .nwelcome__slider div a{
  height: 100%!important;
} 
.nwelcome__slider .swiper-wrapper{
  height: 100%!important;
} */
.nheader.out {
	transform: translateY(-100%);
}
@media (min-width: 1040px) {
  .nwelcome .ncontainer {
      padding-left: 0px;
      padding-right: 0px;
  }
}
input[type="search"]::-webkit-search-decoration,
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-results-button,
input[type="search"]::-webkit-search-results-decoration {
	-webkit-appearance:none;
}
.op{
  display: block;
}
.news-list__card{
  border-radius: 20px;
}
.news-list__card-info-wrapper{
  border-radius: 0 0 20px 20px;
}
.btn._black2{
  position: relative;
  height: 35px;
  padding: 0 55px 0 35px;
  text-transform: uppercase;
  font: 14px / 35px 'Montserrat-Regular', -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen-Sans, Ubuntu, Cantarell, Helvetica Neue, sans-serif;
  color: #fff;
  background: #000;
  border: 1px solid #000;
    width: 345px;
    border-radius: 10px;
    height: 40px;
}
._black2::before {
  content: '';
    position: absolute;
    right: 100px;
    top: 0;
    bottom: 0;
    margin: auto 0;
    width: 6px;
    height: 6px;
  border-radius: 100%;
    background: #f06431;
}
.luf-black-btn.js-luf-submit-order::before {
  content: '';
    position: absolute;
    right: 60px;
    top: 0;
    bottom: 0;
    margin: auto 0;
    width: 6px;
    height: 6px;
  border-radius: 100%;
    background: #f06431;
}
._black2{
  position: relative;
}
.news-list__card-info-wrapper{
  justify-content: center;
}
.cart__checkout input,.cart__checkout  label.checkout__radio, .cart__checkout .field-group-comment textarea, .cart__aside{
  border-radius: 10px;
  border: 1px solid #CDD1D8!important;
}
.info__features .img__wrapper {
  border: none!important;
}
.checkbox-group label ._box{
  border-radius: 5px;
  border: 1px solid #CDD1D8!important;
}
.cart__checkout legend span{
  border: 1px solid #CDD1D8!important;
  border-radius: 100%;
  background-color: #F9F9F9;
}

@media (max-width: 767px) {
  .btn._black2{
    width: 100%;
  }
}
.article__content > img {
  border-radius: 20px;
}
.article__content h1 {
  font-size: 32px;
}
.about-categories2 .about-categories__item-wrap2{
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  width: 100%;
  font-size: 0;
  text-align: right;
  padding: 5px;
}
.about-cat .cat{
  background-color: #f8f8f8;
  border-radius: 20px;
  margin: 20px 0;
  display: flex;
  justify-content: space-between;
}
.btn._gold{
  color: #FFF!important;
  background-color: #000!important;
  border-color: #000!important;
  width: 100%;
}
.about-cat img{
  max-height: 245px;
}
.about-cat .title span{
  font-size: 30px;
  /* margin: 30px; */
}
.about-cat .title{
  margin: 30px;
}
.about-cat .img{
  height: 245px;
}
@media (max-width: 767px) {
  .about-cat .cat{
    display: block;
  }
  .about-cat .img{
    display: flex;
    flex-direction: row-reverse;
  }
  .about-cat .title{
    position: absolute;
  }
  .about-cat .title span{
    font-size: 30px;
    /* margin: 30px 15px; */
  }
  /* .about-cat .title{
    margin: 30px 15px;
  } */
}
.badge__comments{
  display: flex;
}
.brands-list__item{
  border-radius: 10px;
}
.brands-list__item-logo{
  border-radius: 10px;
}
.shops_main .banner{
  background-color: #f3f3f3; 
  border-radius:20px; 
  height: 270px;    
  position: relative;
  margin: 30px 0;
}
.shops_main .banner .shops__title2{
  position: absolute; 
  top: 40%;
  z-index: 9;
  font-size: 26px;
  max-width: 40%;
}
.shops_main .banner img{
  position: absolute;    
}
.shops_main .banner img.vector{
  right: 0;
}
.shops_main .banner img.img{
  right: 8%;
  bottom: 0;
  max-width: 60%;
}
@media (max-width: 1000px){
  .shops_main .banner .shops__title2{
    top: 80px;
    font-size: 24px;
  }
  .shops_main .banner img.img{
    max-width: 50%;
  }
}
@media (max-width: 767px){
  .shops_main .banner img.vector{
    height: 100%;
    object-fit: cover;
    left: 0;
    right: auto;
    border-radius: 20px;
  }
  .shops_main .banner .shops__title2{
    top: 70px;
    /* top: 10px; */
    max-width: 60%;
    font-size: 24px;
  }

}
.shops .breadcrumbs {
  position: absolute;
  z-index: 9;
}
@media (min-width: 1280px) {
  .shops .breadcrumbs {
    display: block;
  }
}
.shops .breadcrumbs .container{
  padding: 0px;
}
@media (max-width: 1279px) {
.header__mobile-menu {
  margin-right: 0px;
  display: block;
}
}
.shops .shops__control .shops__buttons{
  border-radius: 10px;
}
.shops__buttons button.but_l._js-active{
  border-radius: 8px 0 0 8px;
}
.shops__buttons button.but_r._js-active{
  border-radius: 0px 8px 8px 0px;
}
.assurance__image img{
  border-radius: 20px;
}
.assurance__wrapper h2{
  font-size: 25px;
}
.bonus-program__item h2{
  font-size: 25px;
}
.get-touch__text{
  text-align: center;
}
.nfooter__chats a {
  background: #3a3a3a;
  color: #fff;
}
@media (max-width: 767px) {
  .get-touch {
    display: none;
  }
  .faq h1{
    font-size: 24px;
  }
}
.faq h1{
  font-size: 26px;
}

.faq__aside .faq__tab {
  border-radius: 10px;
}
.faq__banner {
  border-radius: 20px;
  margin: 30px auto 45px;
}
.catalog__promo{
  border-radius: 20px;
  height: 200px;
  background:linear-gradient(94deg, rgba(229,229,229,1) 0%, rgba(243,243,243,1) 100%);
}
.catalog__promo .img{
  position: relative;
}
.catalog__promo .img img{
  right: 5%;
  padding: 0;
  max-height: 265px;
  position: absolute;
}
.catalog__promo .mob_a{
  display: none;
}
.catalog__wrapper.container{
  padding-top: 10px;
}
.catalog__promo .h1.catalog__title{
  margin-top: 40px;
}
/* .catalog-filter__list ._chips{
  border-top:initial;
  border-bottom:inherit;
} */
.dropdown-filter__btn-name{
  background: #f9f9f9;
  border-radius: 10px;
  padding: 0 10px;
  z-index: 1;
}
.dropdown-filter__btn-toggle{
  z-index: 2;
}
.catalog-filter__list:first-child .dropdown-filter__btn{
  padding-left: 0px;
}
.card__link .card__luf-label{
  display: block;
  position: absolute;
  background: #F8F8F8;
  padding: 5px 10px;
  border-radius: 5px!important;
  top: -10px!important;
}
.characteristic, .information__image{
  border-radius: 20px;
}
#addToCart._black2{
  width: 180px;
}
#addToCart._black2::before{
  right: 30px;
}
.product__price-sticker{
  border-radius: 10px;
  background-color: #F06431;
}
@media (min-width: 767px) {
  .catalog-list__item.card.test-section-zoloto{
    border: 1px solid #E7E7E7;
    border-radius: 20px;
    margin-right: 20px;
    width: 23%;
    padding: 30px 15px 40px;
  }
  .card__preview{
    height: 250px;
    flex-direction: column-reverse;
  }
  .card__title{
    align-content: center;
  }
  .card__old-price{
    color: rgb(180, 180, 180);
    text-decoration-color:rgb(180, 180, 180);
    text-decoration-thickness: 1px;
  }
  .card__add{
    opacity: 1;
    visibility: visible;
  }
  .card_icon{
    background: #EC3B00;
    border-radius: 20px;
  }
  .card_icons {
    position: absolute;
    top: 265px;
    right: 10px;
    left: auto;
    z-index: 1;
    width: min-content;
  }
 
}
@media (max-width: 767px) {
  .faq .faq__banner {
      padding-top: 0px;

  }
  .faq h1{
    text-align: left;
  }
  .catalog__promo  .breadcrumbs__list{
    display:none;
  }
  .catalog-page .main.catalog{
    background:linear-gradient(94deg, rgba(229,229,229,1) 0%, rgba(243,243,243,1) 100%);
    padding-top: 30px;
  }
  .catalog__promo{
    background: unset;
    height: 70px;
  }
  .catalog__wrapper {
    background-color: #fff;
  }
  .catalog__promo .img img{
    right: -10%;
    bottom: -290px;
    padding: 0;
    max-height: 255px;
  }
  .luf-catalog-buttons {
    padding: 40px 7px 0;
    display: flex;
    background: #fff;
    border-radius: 20px 20px 0 0;
    position: relative;
  }
  .catalog__promo .mob_a{
    display: block;
  }
  .catalog__promo .mob_a span{
    font-size: 16px;
    font-family: 'Montserrat-Medium';
    display: flex;
  }
  .catalog__promo .catalog__title{
    font-size: 18px;
  }
  .catalog__promo .h1.catalog__title{
    margin-top: 0px;
  }
  .card__link .card__luf-label{
    left:10px!important;
  }
  .luf-catalog .show-more .btn{
    color:#FFF;
  }
  .luf-catalog .catalog-list .card__preview-image img{
    min-height: 155px;
  }
}
.stok{
  height:140px
}
@media (max-width: 767px) {
  .stok{
    height:80px
  }
}