@charset "UTF-8";
:root {
  --font-family: "HelveticaNeueCyr", sans-serif;
  --second-family: "Formular", sans-serif;
}

@font-face {
  font-display: swap;
  font-family: "HelveticaNeueCyr";
  font-style: normal;
  font-weight: 900;
  src: url("../fonts/HelveticaNeueCyr Black.ttf");
}
@font-face {
  font-display: swap;
  font-family: "HelveticaNeueCyr";
  font-style: normal;
  font-weight: 300;
  src: url("../fonts/HelveticaNeueCyr Light.ttf");
}
/* noto-sans-500 - cyrillic */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "HelveticaNeueCyr";
  font-style: normal;
  font-weight: 500;
  src: url("../fonts/HelveticaNeueCyr Medium.ttf"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* noto-sans-600 - cyrillic */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "HelveticaNeueCyr";
  font-style: normal;
  font-weight: 400;
  src: url("../fonts/HelveticaNeueCyr Roman.ttf"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* noto-sans-700 - cyrillic */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Formular";
  font-style: normal;
  font-weight: 400;
  src: url("../fonts/formular-regular-trial.otf"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* Reset and base styles  */
* {
  padding: 0px;
  margin: 0px;
  border: none;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Links */
html {
  scroll-behavior: smooth;
}

html,
body {
  scrollbar-gutter: stable;
}

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;
}

body {
  font-family: var(--font-family);
  max-width: 1920px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: auto;
}

.btn {
  cursor: pointer;
}
.btn-header {
  border: 1px solid #7aa1ff;
  border-radius: 12px;
  padding: 9px 16px 7px 16px;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  color: #7aa1ff;
}
.btn-hero {
  border-radius: 12px;
  background: #1486C9;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  color: #fff;
  padding: 15px 130px;
  display: inline-flex;
  gap: 10px;
  align-items: center;
}
@media screen and (max-width: 600px) {
  .btn-hero {
    padding-left: 0;
    padding-right: 0;
    width: 100%;
    justify-content: center;
  }
}
.btn-product {
  border: 1px solid #7aa1ff;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  padding-top: 15px;
  padding-bottom: 15px;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  color: #7aa1ff;
}
.btn-transparent {
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  background-color: #fff;
  padding: 15px 120px;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  color: #212121;
}
@media screen and (max-width: 600px) {
  .btn-transparent {
    padding-left: 0 !important;
    padding-right: 0 !important;
    width: 100%;
  }
}
.btn-footer {
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  background-color: #fff;
  padding: 15px 0;
  width: 100%;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  color: #212121;
}

@media screen and (max-width: 1600px) {
  .btn-transparent {
    padding-left: 80px;
    padding-right: 80px;
  }
}
@media screen and (max-width: 355px) {
  .btn-header {
    padding-left: 6px;
    padding-right: 6px;
    font-size: 14px;
  }
}
section {
  padding: 0 30px;
}
@media screen and (max-width: 480px) {
  section {
    padding: 0 15px;
  }
}

p.title {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 24px;
  text-transform: uppercase;
  color: #212121;
}

.pagination-show-more {
  display: inline-flex;
  gap: 15px;
  align-items: center;
  justify-content: center;
  border: 1px solid #7aa1ff;
  border-radius: 12px;
  padding: 15px 20px;
}
.pagination-show-more span {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  color: #7aa1ff;
}
.pagination-show-more.hidden {
  display: none;
}

.no-scroll {
  overflow: hidden;
}


.hero {
  display: flex;
  width: 100%;
  flex-direction: column;
  height: 1000px;
  overflow: hidden;
}
@media screen and (max-width: 1540px) {
  .hero {
    height: 700px;
  }
}
@media screen and (max-width: 768px) {
  .hero {
    height: 500px;
  }
}
.hero__top {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: flex-start;
}
@media screen and (max-width: 1200px) {
  .hero__top img {
    display: none;
  }
}
.hero__top-subtitle {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 24px;
  color: #212121;
  max-width: 450px;
  width: 100%;
  margin-left: 18%;
}
@media screen and (max-width: 1400px) {
  .hero__top-subtitle {
    font-size: 22px;
  }
}
@media screen and (max-width: 1200px) {
  .hero__top-subtitle {
    margin-left: 0;
    max-width: unset;
    text-align: center;
    margin: 20px auto;
  }
}
.hero__banner {
  display: flex;
  width: 100%;
  height: 100%;
  position: relative;
}
.hero__banner-bg {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: -1;
  overflow: hidden;
  border-radius: 22px;
}
.hero__banner-bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: right bottom;
     object-position: right bottom;
}
.hero__banner-offer {
  display: flex;
  flex-direction: column;
  gap: 45px;
  max-width: 935px;
  align-items: flex-start;
  padding: 60px;
}
@media screen and (max-width: 600px) {
  .hero__banner-offer {
    padding: 20px;
  }
}
.hero__banner-offer h1.title {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 80px;
  text-transform: uppercase;
  color: #fff;
}
@media screen and (max-width: 1400px) {
  .hero__banner-offer h1.title {
    font-size: clamp(1.875rem, 1.3194rem + 2.7778vw, 3.75rem);
  }
}

.introduction {
  display: flex;
  width: 100%;
  width: 100%;
  margin-top: 30px;
}
.introduction__wrapper {
  width: 100%;
  background: #f5f7f8;
  padding: 120px 0;
  border-radius: 24px;
}
@media screen and (max-width: 1100px) {
    .introduction__wrapper{
        padding: 30px 20px;
    }
}
@media screen and (max-width: 1540px) and (min-width:1101px) {
  .introduction__wrapper {
    padding: 120px 20px;
  }
}
.introduction__top {
    width: auto;
 
}

@media screen and (min-width:768px){
   .introduction__top {
    width: auto;
    margin-left: 50px;
    margin-right: 50px;
    } 
}
.introduction__top-desktop {
  display: inline-flex;
  width: 100%;
  justify-content: space-between;
  align-items: flex-end;
}
@media screen and (max-width: 1200px) and (min-width:769px) {
  .introduction__top-desktop {
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
  }
}

@media screen and (max-width: 768px) {
    .introduction__top-desktop {
        gap: 0px;
    }
}
.introduction__top p.title {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 24px;
  text-transform: uppercase;
  color: #212121;
}
.introduction__top p {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 60px;
  text-transform: uppercase;
  color: #212121;
}
@media screen and (max-width: 1400px) {
  .introduction__top p {
    font-size: clamp(1.375rem, 0.8565rem + 2.5926vw, 3.125rem);
  }
}
.introduction__bottom {
  display: grid;
  
  width: 100%;
  justify-content: start;
  width: auto;
  
  gap:20px;
}

@media screen and (min-width:320px) and (max-width:768px){
    .introduction__bottom {
        margin-top: 20px;
    }
}
@media screen and (min-width:769px) and (max-width:1550px){
    .introduction__bottom {
        margin-left: 50px;
        margin-right: 50px;
        margin-top: 60px;
    }
}
@media screen and (min-width:1551px){
    .introduction__bottom{
        grid-template-columns: repeat(4,1fr);
        margin-top: 60px;
        margin-left: 50px;
        margin-right: 50px;
    }    
}
@media screen and (min-width:915px) and (max-width:1550px) {
    .introduction__bottom{
        grid-template-columns: repeat(2,1fr);
    }    
}
@media screen and (min-width:320px) and (max-width:914px){
    .introduction__bottom{
        grid-template-columns: repeat(1,1fr);
    }    
}

/* .introduction__bottom p {
  max-width: 640px;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 18px;
  line-height: 120%;
  color: #212121;
} */
.introduction__bottom .benefits_hero_top {
    padding: 20px 30px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    background-color: #FFFFFF;
    border-radius: 24px;
    width: 100%;
    gap:20px;
}
.introduction__bottom .benefits_hero_top img{
    width: 44px;
    height: 44px;
}
.introduction__bottom .benefits_hero_top p{
    font-family: var(--font-family);
    font-weight: 500;
    
     color: #212121;
     text-transform: uppercase;
}

@media screen and (min-width:768px){
    .introduction__bottom .benefits_hero_top p{
       font-size: 20px;
        line-height: 22px; 
    }
}
@media screen and (min-width:320px){
    .introduction__bottom .benefits_hero_top p{
       font-size: 14px;
       line-height: 15.4px; 
    }
}
.raiting {
  margin: 30px auto;
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: center;
}
.raiting__wrapper {
  width: 100%;
  display: flex;
  gap: 30px;
}
@media screen and (max-width: 1400px) {
  .raiting__wrapper {
    flex-direction: column;
  }
}
.raiting-yandex {
  background: #212121;
  padding: 52px 50px;
  display: flex;
  width: 100%;
  max-width: 915px;
  border-radius: 24px;
}
@media screen and (max-width: 1400px) {
  .raiting-yandex {
    max-width: unset;
  }
}
@media screen and (max-width: 768px) {
  .raiting-yandex {
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
  }
}
.raiting-yandex p {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 40px;
  line-height: 120%;
  text-transform: uppercase;
  color: #fff;
  max-width: 410px;
}
@media screen and (max-width: 1400px) {
  .raiting-yandex p {
    font-size: clamp(1.375rem, 1.0417rem + 1.6667vw, 2.5rem);
  }
}
.raiting-yandex span {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 100px;
  text-transform: uppercase;
  text-align: right;
  color: #fff;
  flex-grow: 1;
}
@media screen and (max-width: 600px) {
  .raiting-yandex span {
    font-size: 60px;
  }
}
.raiting-products {
  background: #1486C9;
  padding: 52px 50px;
  display: flex;
  width: 100%;
  max-width: 915px;
  border-radius: 24px;
}
@media screen and (max-width: 768px) {
  .raiting-products {
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
  }
}
@media screen and (max-width: 1400px) {
  .raiting-products {
    max-width: unset;
  }
}
.raiting-products p {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 40px;
  line-height: 120%;
  text-transform: uppercase;
  color: #fff;
  max-width: 370px;
}
@media screen and (max-width: 1400px) {
  .raiting-products p {
    font-size: clamp(1.375rem, 1.0417rem + 1.6667vw, 2.5rem);
  }
}
.raiting-products span {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 100px;
  text-transform: uppercase;
  text-align: right;
  color: #fff;
  flex-grow: 1;
}
@media screen and (max-width: 600px) {
  .raiting-products span {
    font-size: 60px;
  }
}

.partners {
  margin-bottom: 30px;
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: center;
}
.partners__wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 30px;
  background: #f5f7f8;
  border-radius: 24px;
  padding: 30px;
}
@media screen and (max-width: 768px) {
  .partners__wrapper img {
    max-width: 120px;
    max-height: 50px;
  }
}
.partners__wrapper-top {
  display: flex;
  width: 100%;
  justify-content: space-between;
  border-bottom: 1px solid;
  padding-bottom: 66px;
}
@media screen and (max-width: 1200px) {
  .partners__wrapper-top {
    flex-direction: column;
    gap: 20px;
  }
}
.partners__wrapper-top .title {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 24px;
  text-transform: uppercase;
  color: #212121;
}
.partners__wrapper-top .subtitle {
  max-width: 850px;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 18px;
  line-height: 120%;
  color: #212121;
}
@media screen and (max-width: 1400px) {
  .partners__wrapper-top .subtitle {
    font-size: 16px;
  }
}
.partners__wrapper-bottom {
  display: flex;
  width: 100%;
  justify-content: space-between;
  border-bottom: 1px solid;
  padding-top: 37px;
  padding-bottom: 66px;
  margin-bottom: 33px;
}


.partners__wrapper-bottom-image{
    display: flex;
    padding: 24px 70px;
    background: #fff;
    border-radius:24px;
}

@media screen and (max-width: 1400px) {
  .partners__wrapper-bottom {
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
  }
}


/* @media screen and (max-width: 480px) {
  .partners__wrapper-bottom {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
  }
} */
.partners__wrapper-bottom img {
  -o-object-fit: contain;
     object-fit: contain;
}

.catalog {
  margin-top: 30px;
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: center;
  margin-bottom: 30px;
}
.catalog__wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: start;
  gap: 30px;
  background: #d9dde8;
  border-radius: 24px;
  padding: 30px 30px 0;
}
@media screen and (max-width: 480px) {
  .catalog__wrapper {
    padding: 15px;
  }
}
/* grid-template-columns: 335px 1fr; */

@media screen and (min-width: 1650px) {
    .catalog__wrapper-page {
        grid-template-columns: 400px 1fr; 
        
    }
}
@media screen and (max-width: 1649px) and (min-width: 900px) {
    .catalog__wrapper-page {
        grid-template-columns: 300px 1fr;  
     
    }
}
@media screen and (min-width: 1380px) {
    .catalog__products {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
      gap: 15px;
    }
    
    .catalog__pagination {
     display: grid;
        justify-content: flex-end;
        align-items: center;
        grid-column: 1 / 4;
        margin-top: 10px;
    }
}
@media screen and (max-width: 1379px) and (min-width:971px) {
    .catalog__products {
      display: grid;
      grid-template-columns: repeat(2, minmax(300px, 1fr));
      gap: 15px;
    }
    
    .catalog__pagination {
     display: grid;
        justify-content: flex-end;
        align-items: center;
        grid-column: 1 / 3;
        margin-top: 10px;
    }
}
@media screen and (max-width:970px) {
    .catalog__products {
      display: grid;
      grid-template-columns: repeat(1, minmax(300px, 1fr));
      gap: 15px;
    }
    
    .catalog__pagination {
     display: grid;
        justify-content: flex-end;
        align-items: center;
        grid-column: 1 / 2;
        margin-top: 10px;
    }
}
@media screen and (min-width: 1350px) {
    .catalog__wrapper-page.catalog__wrapper-page-home .catalog__products {
        grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
    }
}
@media screen and (max-width: 1400px) and (min-width:481px) {
  .catalog__products {
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  }
}
@media screen and (max-width: 480px) {
  .catalog__products {
    grid-template-columns: repeat(1, minmax(200px, 1fr));
    
  }
  
  .catalog.main-page-catalog{
      display: none;
  }
}
.catalog__products-item {
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: 16px;
  padding: 15px;
  max-height: fit-content;
  gap: 15px;
}
.catalog__products-item.hidden {
  display: none;
}
.catalog__products-item .product-image {
  background-color: #f5f7f8;
  border-radius: 10px;
  overflow: hidden;
}
.catalog__products-item .product-image img {
  mix-blend-mode: multiply;
  width: 100%;
  height: 400px;
  object-fit: contain;
}
.catalog__products-item .product-type {
  border-radius: 6px;
  padding: 6px 8px 4px 8px;
  width: -moz-fit-content;
  width: fit-content;
  background: #eff3fe;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 12px;
  line-height: 120%;
  text-transform: uppercase;
  color: #7aa1ff;
}
.catalog__products-item .product-title {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 18px;
  line-height: 120%;
  text-transform: uppercase;
  color: #212121;
  height: 50px;
  /* max-width: 240px; */
}
.link-on-page {
    text-decoration: none;
    color: inherit;
}
.catalog__products-item .product-info {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 14px;
  line-height: 120%;
  color: rgba(33, 33, 33, 0.5);
  /* max-width: 240px; */
  height: 50px;
  overflow:hidden;
}


.catalog__pagination .ajax-filter-count a {
    font-family: var(--font-family);
  font-weight: 300;
  font-size: 16px;
  line-height: 110%;
  text-align: center;
  color: #7aa1ff;
  border: 1px solid #7aa1ff;
  border-radius: 12px;
  padding: 18px 22px;
}

.catalog__pagination .ajax-filter-count {
   
    display: flex;
    gap:5px;
;
}

.catalog__pagination .ajax-filter-count a.active {
  background: #7aa1ff;
  color: #fff;
}
@media screen and (max-width: 600px) {
  .catalog__pagination {
    flex-direction: column;
    gap: 20px;
  }
}
/* @media screen and (max-width: 1200px) {
  .catalog__pagination {
    justify-content: space-between;
  }
} */
.catalog__pagination-pages {
  display: flex;
  gap: 15px;
  align-items: center;
  justify-content: center;
}
.catalog__pagination-pages a {
  font-family: var(--font-family);
  font-weight: 300;
  font-size: 16px;
  line-height: 110%;
  text-align: center;
  color: #7aa1ff;
  border: 1px solid #7aa1ff;
  border-radius: 12px;
  padding: 18px 22px;
}
.catalog__pagination-pages a.active {
  background: #7aa1ff;
  color: #fff;
}





.advantages {
  display: flex;
  width: 100%;
  width: 100%;
  margin-bottom: 30px;
}
.advantages__wrapper {
  width: 100%;
  background: #f5f7f8;
  padding: 30px;
  border-radius: 24px;
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 1540px) {
  .advantages__wrapper {
    align-items: center;
  }
}
.advantages__info {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 1540px) {
  .advantages__info {
    flex-direction: column;
    align-items: flex-start;
    gap: 30px;
  }
}
.advantages__info-title {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 60px;
  text-transform: uppercase;
  color: #212121;
  max-width: 750px;
  padding-top: 60px;
}
@media screen and (max-width: 1400px) {
  .advantages__info-title {
    font-size: clamp(1.375rem, 0.6713rem + 3.5185vw, 3.75rem);
  }
}
.advantages__info-items {
  display: flex;
  flex-direction: column;
  max-width: 890px;
  width: 100%;
  gap: 30px;
  align-self: start;
}
.advantages__info-items-item {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 30px 0 0;
  gap: 40px;
  border-top: 1px solid #212121;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .advantages__info-items-item {
    flex-wrap: wrap;
  }
}
.advantages__info-items-item:last-child {
  border-bottom: 1px solid #212121;
  padding-bottom: 30px;
}
.advantages__info-items-item .number,
.advantages__info-items-item .title {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 32px;
  line-height: 120%;
  text-transform: uppercase;
  color: #212121;
}
@media screen and (max-width: 1400px) {
  .advantages__info-items-item .number,
  .advantages__info-items-item .title {
    font-size: clamp(1.375rem, 1.1898rem + 0.9259vw, 2rem);
  }
}
.advantages__info-items-item .title {
  flex-grow: 1;
}
.advantages__info-items-item .subtitle {
  font-family: var(--font-family);
  font-weight: 300;
  font-size: 18px;
  line-height: 120%;
  color: #212121;
  max-width: 400px;
  flex-shrink: 1;
}
@media screen and (max-width: 1400px) {
  .advantages__info-items-item .subtitle {
    font-size: 16px;
  }
}
@media screen and (max-width: 768px) {
  .advantages__info-items-item .subtitle {
    width: 100%;
  }
}
.advantages__images {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 30px;
  margin-top: 60px;
}
@media screen and (max-width: 768px) {
  .advantages__images {
    flex-direction: column;
  }
}



.modalBackground {
  display: none;
  background: #212121;
  position: fixed;
  width: 100vw;
  height: 100vh;
  cursor: pointer;
  /* указываем z-индекс для корректного наслаивания */
  z-index: 1000;
}

.modalBackground.active {
  display: block;
}

.modalClose {
  display: flex;
  width: 100%;
  justify-content: flex-end;
}

.modalActive {
  position: absolute;
  width: 500px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 24px;
  background-color: rgb(255, 255, 255);
  cursor: default;
  padding: 20px 20px;
}
@media screen and (max-width: 600px) {
  .modalActive {
    width: 345px;
  }
}

.modalWindow {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding-bottom: 63px;
  padding-top: 63px;
  gap: 30px;
  height: 100%;
  width: 100%;
  max-width: 380px;
  margin: auto;
}
@media screen and (max-width: 600px) {
  .modalWindow {
    max-width: 100%;
    padding-bottom: 20px;
    padding-top: 43px;
  }
}
.modalWindow .form-title {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 40px;
  text-transform: uppercase;
  color: #212121;
  text-align: center;
}
@media screen and (max-width: 600px) {
  .modalWindow .form-title {
    font-size: 30px;
  }
}
.modalWindow .form-subtitle {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 18px;
  line-height: 120%;
  color: #212121;
  text-align: center;
}
@media screen and (max-width: 600px) {
  .modalWindow .form-subtitle {
    font-size: 16px;
  }
}
.modalWindow form {
  display: flex;
  flex-direction: column;
  width: 100%;
}
.modalWindow form input:not([type=submit]) {
  border: 1px solid #d9dde8;
  border-radius: 12px;
  padding: 20px 22px;
  width: 100%;
}
.modalWindow .small {
  font-family: var(--second-family);
  font-weight: 400;
  font-size: 12px;
  text-align: center;
  color: #7a7a7a;
}

.accordion__wrapper {
  max-width: 1200px;
  width: 100%;
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.accordion {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.accordion__title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  cursor: pointer;
  color: #212121;
  background-color: #fff;
  border-radius: 16px;
  position: relative;
  transition: 0.5s linear;
}
.accordion__title h3 {
  font-family: var(--font-family);
  font-size: 18px;
  font-weight: 400;
  text-transform: uppercase;
}
.accordion__title::after {
  position: absolute;
  content: "";
  background-image: url("data:image/svg+xml,%0A%3Csvg width='18' height='10' viewBox='0 0 18 10' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1.5 1.25L8.29289 8.04289C8.62623 8.37623 8.79289 8.54289 9 8.54289C9.20711 8.54289 9.37377 8.37623 9.70711 8.04289L16.5 1.25' stroke='%23141B34' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E%0A");
  width: 18px;
  height: 10px;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  transition: 0.3s linear;
}

.accordion:first-child {
  border: 1px solid var(--color-border-gray);
}

.accordion__title.active {
  border-bottom-left-radius: 0px;
  border-bottom-right-radius: 0px;
}
.accordion__title.active::after {
  transform: rotate(180deg) translateY(50%);
}

.accordion__title.active span {
  transform: rotate(45deg);
}

.accordion__title span {
  display: inline-flex;
  position: relative;
  width: 40px;
  height: 40px;
  background-color: transparent;
  transform: rotate(0);
  transition: transform 0.5s ease-out;
}

.accordion__title span::before {
  content: "";
  position: absolute;
  width: 50%;
  height: 2px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background-color: var(--color-plus-gray);
}

.accordion__title span::after {
  content: "";
  position: absolute;
  width: 2px;
  height: 50%;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background-color: var(--color-plus-gray);
}

.accordion__content {
  overflow: hidden;
  padding: 0 20px;
  box-sizing: content-box;
  background-color: #fff;
  border-top: none;
  max-height: 0;
  opacity: 0;
  visibility: hidden;
  transition: max-height 0.5s ease-out, padding 0.5s ease-out, opacity 0.1s ease-out 0.5s, visibility 0.1s ease-out 0.5s;
}
.accordion__content p {
  font-family: var(--font-family);
  font-size: 16px;
  font-weight: 300;
}
.accordion__content p:not(:first-child) {
  margin-top: 20px;
}
.accordion__content .text-bold {
  font-family: var(--font-family);
  font-size: 18px;
  font-weight: 400;
  margin: 20px 0;
}
.accordion__content ul li {
  font-family: var(--font-family);
  font-size: 16px;
  font-weight: 300;
  list-style-type: disc;
  margin-left: 20px;
}
.accordion__content ul li:not(:first-child) {
  margin-top: 10px;
}
.accordion__content table {
  width: 100%;
}
@media screen and (max-width: 350px) {
  .accordion__content table tr {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 100px;
    text-align: center;
    margin: auto;
  }
}
.accordion__content table tr td {
  padding: 10px 0;
  font-family: var(--font-family);
  font-size: 16px;
  font-weight: 300;
}
.accordion__content table tr td:last-child {
  text-align: right;
  font-weight: 500;
}
@media screen and (max-width: 350px) {
  .accordion__content table tr td:last-child {
    text-align: center;
  }
}

.accordion__content.active {
  visibility: visible;
  opacity: 1;
  padding: 20px;
  max-height: -moz-fit-content;
  max-height: fit-content;
  border-bottom-right-radius: 16px;
  border-bottom-left-radius: 16px;
  transition: max-height 0.5s ease-out, padding 0.5s ease-out, opacity 0.1s ease-out 0.5s, visibility 0.1s ease-out 0.5s;
}

.product__single {
  margin-top: 30px;
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: center;
  margin-bottom: 30px;
}
.product__single__wrapper {
  width: 100%;
  display: flex;
  justify-content: start;
  gap: 30px;
  background: #d9dde8;
  border-radius: 24px;
  padding: 30px;
}
@media screen and (max-width: 1280px) {
  .product__single__wrapper {
    flex-direction: column;
    align-items: center;
  }
}
@media screen and (max-width: 480px) {
  .product__single__wrapper {
    padding: 15px;
  }
}
.product__single-image {
  max-width: 900px;
  width: 100%;
  height: 100%;
  background: #fff;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow:hidden;
}
@media screen and (min-width: 1280px) {
  .product__single-image {
    /* height: auto; */
    height: 652px;
  }
  .product__single-image img {
    -o-object-fit: contain;
       object-fit: contain;
       max-height: 652px;
  }
}
.product__single-info {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 30px;
}
@media screen and (max-width: 1280px) {
  .product__single-info {
    max-width: 900px;
  }
}
.product__single-info-top {
  display: flex;
  width: 100%;
  justify-content: space-between;
  align-items: center;
}
.product__single-info-top .product-type {
  border-radius: 6px;
  padding: 6px 8px 4px 8px;
  width: -moz-fit-content;
  width: fit-content;
  background: #eff3fe;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 12px;
  line-height: 120%;
  text-transform: uppercase;
  color: #7aa1ff;
}
.product__single-info-top .product-aviabillity {
  border-radius: 6px;
  padding: 6px 8px 4px 8px;
  width: -moz-fit-content;
  width: fit-content;
  background: #7AA1FF;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 12px;
  line-height: 120%;
  text-transform: uppercase;
  color: #fff;
}
.product__single-info .product-title {
  color: #212121;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 60px;
  text-transform: uppercase;
}
@media screen and (max-width: 800px) {
  .product__single-info .product-title {
    font-size: clamp(1.375rem, -0.7206rem + 8.9412vw, 3.75rem);
  }
}
.product__single-info .price-per {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 30px;
  margin-bottom: 30px;
}
@media screen and (max-width: 800px) {
  .product__single-info .price-per {
    margin-top: 10px;
    margin-bottom: 10px;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-end;
  }
}
.product__single-info .product-price-per {
  font-family: var(--font-family);
  font-size: 60px;
  font-weight: 300;
  color: #212121;
}
@media screen and (max-width: 800px) {
  .product__single-info .product-price-per {
    font-size: 40px;
  }
}
.product__single-info .product-price-per-unit {
  font-family: var(--font-family);
  font-size: 24px;
  font-weight: 300;
}
@media screen and (max-width: 800px) {
  .product__single-info .product-price-per-unit {
    font-size: 20px;
  }
}
.product__single-info .btn-hero.product-single-btn {
  max-width: 200px;
  padding: 15px;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  .product__single-info .btn-hero.product-single-btn {
    max-width: unset;
  }
}

.catalog__wrapper-page {
  display: grid;

  gap: 15px;
  width: 100%;
}

.catalog__wrapper-page.catalog__wrapper-page-home{
    grid-template-columns: unset;
}

.catalog__wrapper-page.catalog__wrapper-page-home .catalog__pagination {
    
    display: grid;
}

@media screen and (min-width: 1765px) {
    .catalog__wrapper-page.catalog__wrapper-page-home .catalog__pagination {
        grid-column: 1 / 5;
    }
}
@media screen and (max-width: 1765px) and (min-width:1051px) {
    .catalog__wrapper-page.catalog__wrapper-page-home .catalog__pagination {
        grid-column: 1 / 4;
    }
}
@media screen and (max-width: 1050px) and (min-width:735px) {
    .catalog__wrapper-page.catalog__wrapper-page-home .catalog__pagination {
        grid-column: 1 / 3;
    }
}
@media screen and (max-width:734px) {
    .catalog__wrapper-page.catalog__wrapper-page-home .catalog__pagination {
        grid-column: 1 / 2;
    }
}

@media screen and (max-width: 1000px) {
  .catalog__wrapper-page {
    grid-template-columns: auto;
  }
}
.catalog__wrapper-page-sorting {
  background: #fff;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  padding: 20px 15px;
  height: -moz-fit-content;
  height: fit-content;
}
@media screen and (max-width: 1000px) {
  .catalog__wrapper-page-sorting {
    display: none;
  }
  .catalog__wrapper-page-sorting.active {
    display: flex;
    position: fixed;
    width: 100%;
    padding: 0 20px 100px;
    top: 110px;
    left: 0;
    z-index: 20;
    height: 100vh;
    overflow-y: scroll;
  }
}
.catalog__wrapper-page-sorting .block-title {
  font-family: var(--font-family);
  font-size: 18px;
  font-weight: 500;
  line-height: 17.78px;
  text-transform: uppercase;
}

.form__input-dropdown {
  width: 100%;
  position: relative;
  cursor: pointer;
}

.form__input-single {
  width: 100%;
  position: relative;
  cursor: pointer;
}

.form__input-single input {
  width: 100%;
  border: 1px solid transparent;
  outline: none;
  font-family: var(--font-family);
  font-size: 15px;
  line-height: 1.2;
  color: #88979e;
  padding: 15px 15px 15px 20px;
  border-radius: 12px;
  cursor: pointer;
}

.form__input-dropdown input {
  width: 100%;
  border: 1px solid transparent;
  outline: none;
  font-family: var(--font-family);
  font-size: 15px;
  line-height: 1.2;
  color: #88979e;
  padding: 15px 15px 15px 20px;
  border-radius: 12px;
  cursor: pointer;
  margin: 20px 0;
  border: 1px solid;
  border-radius: 16px;
}

.form__input-dropdown::after {
  content: "";
  position: absolute;
  right: 30px;
  top: 50%;
  transform: translateY(-50%);
  width: 12px;
  height: 6px;
  background-image: url(../images-catalog/arrow.svg);
  background-repeat: no-repeat;
  background-size: contain;
}

.form__input-dropdown-items {
  position: absolute;
  top: 52px;
  left: 0;
  width: 100%;
  height: 150px;
  background: var(--belyy);
  margin: 0;
  list-style-type: none;
  padding: 15px 15px 15px 20px;
  border-radius: 12px;
  overflow-y: scroll;
  z-index: 4;
  margin-top: 20px;
  background-color: #fff;
}

.none {
  display: none !important;
}

.form__input-dropdown-items li:not(:first-child) {
  padding-top: 15px;
}

.form__input-dropdown-items::-webkit-scrollbar {
  width: 20px;
  height: 0;
  /* background-color: #F5F5F5; */
}

.form__input-dropdown-items::-webkit-scrollbar-thumb {
  height: 1em;
  border: 0.5em solid rgba(0, 0, 0, 0); /* Transparent border together with `background-clip: padding-box` does the trick */
  background-clip: padding-box;
  -webkit-border-radius: 1em;
  background-color: #7AA1FF;
  -webkit-box-shadow: inset 0 0 0 1px rgba(213, 20, 20, 0.025);
}

.form__input-dropdown-items::-webkit-scrollbar-button {
  width: 0;
  height: 0;
  display: none;
}

.form__input-dropdown-items::-webkit-scrollbar-corner {
  background-color: transparent;
}

.form__input-dropdown-items li {
  font-family: var(--font-family);
  color: #2C2C2C;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.2;
}

.form__item-input-checkbox {
  display: flex;
  gap: 10px;
  align-items: start;
}

.form__item-input-checkbox [for=agreements-checkbox] {
  max-width: 100%;
  font-family: var(--font-family);
  font-size: 12px;
  line-height: 1.2;
  font-weight: 400;
}

.price-filter {
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
  border-top: 1px solid rgba(0, 0, 0, 0.2);
  padding: 30px 0;
}

.maker {
  margin: 30px 0;
}
.maker + .maker {
  border-top: 1px solid rgba(0, 0, 0, 0.2);
  padding-top: 30px;
}
.maker + .maker + .maker {
  border-top: 1px solid rgba(0, 0, 0, 0.2);
  padding-top: 30px;
}

.group-products {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.group-products:first-child {
  margin-top: 20px;
}
.group-products label {
  font-family: var(--font-family);
  text-transform: uppercase;
  font-size: 18px;
  font-weight: 400;
  line-height: 17.91px;
}

@media screen and (min-width: 1000px) {
  .filter-btn {
    display: none;
  }
  .sorting-mobile-controls {
    display: none;
  }
}
@media screen and (max-width: 1000px) {
  .filter-btn {
    max-width: 305px;
    padding: 15px 20px;
    width: 100%;
    background: #7AA1FF;
    display: inline-flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 12px;
  }
  .filter-btn span {
    color: #fff;
    font-size: 16px;
    font-weight: 400;
    font-family: var(--font-family);
  }
  .sorting-mobile-controls {
    display: inline-flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
  }
  .sorting-mobile-controls span {
    font-family: var(--font-family);
    font-size: 22px;
    font-weight: 400;
    line-height: 21.89px;
  }
}
.slider-area {
  display: flex;
  align-items: center;
  width: 100%;
  -moz-column-gap: 20px;
       column-gap: 20px;
  background: inherit;
  padding: 50px 0 0px;
  position: relative;
}
.slider-area .slider-title {
  font-size: 16px;
  font-weight: bold;
}
.slider-area-wrapper {
  display: flex;
  align-items: center;
  width: 100%;
  -moz-column-gap: 20px;
       column-gap: 20px;
}
.slider-area #skip-value-lower,
.slider-area #skip-value-upper {
  font-size: 16px;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
}
.slider-area .noUi-target {
  flex: 1;
  position: relative;
}
.slider-area .noUi-target.noUi-horizontal {
  height: 3px;
}
.slider-area .noUi-target .noUi-base,
.slider-area .noUi-target .noUi-connects {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 1;
}
.slider-area .noUi-target .noUi-connects {
  border-radius: 3px;
  overflow: hidden;
  z-index: 0;
}
.slider-area .noUi-target .noUi-connects .noUi-connect {
  height: 3px;
  width: 100%;
  transform-style: preserve-3d;
  transform-origin: 0 0;
  transform-style: flat;
  background-color: #7AA1FF;
}
.slider-area .noUi-target .noUi-origin {
  will-change: transform;
  position: absolute;
  z-index: 1;
  top: 0;
  right: 0;
  height: 0;
  width: 100%;
}
.slider-area .noUi-target .noUi-origin .noUi-handle {
  border-radius: 50px;
  background: #fff;
  cursor: default;
  background-color: #fff;
  border: 1px solid #7AA1FF;
  backface-visibility: hidden;
  position: absolute;
  width: 21px;
  height: 21px;
  right: -10px;
  top: -10px;
}
.slider-area .noUi-target .noUi-origin .noUi-handle .noUi-touch-area {
  height: 100%;
  width: 100%;
}
.slider-area .noUi-target .noUi-origin .noUi-handle::after {
  display: none;
}
.slider-area .noUi-target .noUi-origin .noUi-handle::before {
  display: none;
}
.slider-area .noUi-draggable {
  cursor: ew-resize;
}

.noUi-tooltip {
  background: #7AA1FF;
  border-radius: 16px;
  color: #fff;
  font-family: var(--font-family);
  padding: 5px 10px;
}

.noUi-handle-upper .noUi-tooltip {
  left: -100%;
}

.noUi-handle-lower .noUi-tooltip {
  left: 100%;
}

#price__inputs, #price__comparison {
    display: none;
}










/*# sourceMappingURL=main.css.map */