@import url("https://fonts.googleapis.com/css2?family=Geologica:wght@300;400;500;600;700&display=swap");

*,
html {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
}

*::before,
*::after {
  -webkit-box-sizing: inherit;
  box-sizing: inherit;
}

html,
body {
  height: 100%;
}

body.noscroll {
  position: fixed;
  left: 0;
  right: 0;
}

body {
  min-height: 100%;
  display: flex;
  flex-direction: column;

  scroll-behavior: smooth;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  min-width: 320px;
  height: auto;
  margin: 0;
  padding: 0;
  font-family: "Geologica", sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: normal;
  text-rendering: optimizespeed;
}

body.dark-bg {
  background-image: url('../images/order/decor.png');
  background-position: 155% center;
  background-repeat: no-repeat;
  background-size: 60%;
}

body.scroll {
  height: 100vh;
  overflow: hidden;
}

main {
  position: relative;
  flex: 1 1 auto;
}

ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

a {
  display: inline-block;
  text-decoration: none;
  color: inherit;
}

button {
  cursor: pointer;
  display: inline-block;
  padding: 0;
  background-color: transparent;
  border: none;
}

img,
iframe {
  display: block;
  max-width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

section {
  display: block;
}

input,
button,
textarea,
select {
  font: inherit;
}

.link {
  position: relative;
  white-space: nowrap;
}

.link::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  background: currentColor;
  top: 100%;
  left: 0;
  pointer-events: none;
  -webkit-transform-origin: 100% 50%;
  transform-origin: 100% 50%;
  -webkit-transform: scale3d(0, 1, 1);
  transform: scale3d(0, 1, 1);
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}

.link:hover:before {
  -webkit-transform-origin: 0% 50%;
  transform-origin: 0% 50%;
  -webkit-transform: scale3d(1, 1, 1);
  transform: scale3d(1, 1, 1);
}

.container {
  max-width: 1690px;
  padding: 0 20px;
  width: 100%;
  margin: 0 auto;
}

h1,
h2,
h3,
p {
  margin: 0;
}

h1,
h2,
h3 {
  line-height: 1.25;
}

.z1 {
  font-size: 64px;
  font-weight: 400;
}

h3 {
  font-size: 32px;
  margin-bottom: 21px;
}

ul li {
  padding-left: 37px;
  font-size: 16px;
  line-height: 1.6;
  position: relative;
}

ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 17px;
  height: 2px;
  background-color: #DC3A57;
}

ul li+li {
  margin-top: 10px;
}

ol {
  counter-reset: name;
}

ol li {
  padding-left: 37px;
  font-size: 16px;
  line-height: 1.6;
  position: relative;
  counter-increment: name;
}

ol li::before {
  content: counter(name) ".";
  position: absolute;
  left: 0;
  top: 0;
  font-size: 16px;
  line-height: 1.6;
}

ol li+li {
  margin-top: 10px;
}

.form-item {
  position: relative;
  width: 100%;
}

.form-item.col-6 {
  width: calc(50% - 10px);
}

.form-item.col-3 {
  width: calc(25% - 10px);
}

.form__input {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: 100%;
  border: none;
  border-bottom: 1px solid var(--color-dark);
  padding: 16.5px 16px;
  outline: none;
  background-color: #f4f4f4;
  border-radius: 10px;
}

.form__label {
  display: block;
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 11px;
}

.form__label span {
  color: #dc3a57;
}

.form__btn {
  margin-top: 32px;
}

.form-select {
  display: block;
  max-width: 436px;
  width: 100%;
  height: 56px;
  border-radius: 10px;
  background: #f4f4f4;
  margin: 0 auto;
  border: none;
  outline: none;
  padding: 16px;
}

.btn {
  display: inline-block;
  width: auto;
  outline: none;
  border: none;
  padding: 10px 18px;
  background: var(--color-dark);
  color: var(--color-white);
  border: 1px solid var(--color-dark);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.btn:hover {
  background: var(--color-white);
  color: var(--color-dark);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.catalog-list {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  margin: -14px;
}

.banners-slider__wrapper {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 24px;
}

.catalog-section {
  margin: 70px 0;
}

.catalog-section__title {
  text-align: center;
  font-size: 44px;
  font-weight: 700;
  margin-bottom: 30px;
}



/* hero */
.hero {
  margin-bottom: 70px;
  padding: 30px 0;
  background: #ECECEC;
}

.hero__slider-wrapper {
  position: relative;
}

.hero__slide:nth-child(1) .hero__banner-price {
  color: #FFF;
  font-family: Geologica;
  font-size: 44px;
  font-style: normal;
  font-weight: 800;
  line-height: 107.5%;
  /* 47.3px */

  z-index: 2;

  padding: 10px 28px;
  background: #4EB0E4;

  position: absolute;
  bottom: 100px;
  left: 510px;
}

.hero__slide:nth-child(2) .hero__banner-price {
  color: #FFF;
  font-family: Geologica;
  font-size: 21px;
  font-style: normal;
  font-weight: 400;
  line-height: 107.5%;
  /* 22.575px */

  z-index: 2;

  padding: 5px 15px;
  background: #4EB0E4;

  position: absolute;
  bottom: 55px;
  left: 60%;
}

.hero__banner:nth-child(2) .hero__banner-price span {
  font-weight: 800;
}

.hero-categories {
  position: relative;
  padding: 0 43px;
}

.categories-slider__prev,
.categories-slider__next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

.categories-slider__prev {
  left: 0;
}

.categories-slider__next {
  right: 0;
}

/* .hero__wrapper{
  display: grid;
  grid-template-columns: 6fr 3fr;
  grid-gap: 30px;

  height: 520px;

  margin-bottom: 30px;
} */

.hero__slider {
  margin-bottom: 30px;
  height: 520px;
}

.hero__slides {
  display: grid;
  grid-template-columns: 6fr 3fr;
  grid-gap: 30px;
  height: 100%;
}

.hero__slide,
.hero__slide-inner {
  height: 100%;
}

.hero__slide:nth-child(1) {
  grid-row: span 2;
}

.hero__banner h6 {
  color: #4EB0E4;
  font-family: Geologica;
  font-size: 30px;
  font-style: normal;
  font-weight: 400;
  line-height: 107.5%;
  /* 32.25px */
  text-transform: uppercase;

  margin-bottom: 5px;
}


.hero__banner h1 {
  font-size: 60px;
  line-height: 1;
  max-width: 520px;

  color: #323232;
  font-family: Geologica;
  font-style: normal;
  font-weight: 800;
  text-transform: uppercase;

  margin-bottom: 20px;
}

.hero__banner h2 {
  font-size: 34px;
  line-height: 1.1;

  max-width: 300px;

  color: #323232;
  font-family: Geologica;
  font-style: normal;
  font-weight: 800;
  text-transform: uppercase;

  margin-bottom: 20px;
}

.hero__banner p {
  color: #FFF;
  font-family: Geologica;
  font-size: 18px;
  font-style: normal;
  font-weight: 300;
  line-height: 24px;
  /* 133.333% */
}

.hero__banner h3 {
  font-size: 24px;
  line-height: 1.2;

  color: #323232;
  font-family: Geologica;
  font-style: normal;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 12px;
  padding-bottom: 15px;
  position: relative;
}

.hero__banner h3::after {
  content: '';
  position: absolute;

  left: 0;
  bottom: 0;

  width: 66px;
  height: 3px;

  background: #fff;
}

.hero__slide:nth-child(3) .hero__banner h3 {
  color: #fff;
}

.hero__banner ul li {
  color: #323232;
  font-family: Geologica;
  font-size: 18px;
  font-style: normal;
  font-weight: 250;
  line-height: 107.5%;
  /* 19.35px */

  margin-bottom: 5px;

  position: relative;
  padding-left: 25px;
}

.hero__banner ul li:last-child {
  margin-bottom: 0;
}

.hero__banner ul li::before {
  content: '';
  position: absolute;

  top: 3px;
  left: 0;

  width: 14px;
  height: 14px;

  border-radius: 50%;
  border: 1px solid #4EB0E4;
  background: #fff;
}

.hero__banner {
  position: relative;
  background: #fff;

  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;

  overflow: hidden;

  height: 100%;
}

/* .hero__banner::after{
  content: '';
  position: absolute;

  top: 50%;
  transform: translateY(-50%);
} */

.hero__slide:nth-child(1) .hero__banner {
  background-image: url('../images/banners/banner1.png');
  background-position: right center;
  background-size: cover;
  background-repeat: no-repeat;
  padding-left: 60px;
}

/* .hero__slide:nth-child(1) .hero__banner::after{
  content: url('../images/banners/product1.png');
  left: 50%;
  top: 58%;
} */

.hero__slide:nth-child(2) .hero__banner {
  background-image: url('../images/banners/banner2.png');
  background-position: right center;
  background-size: cover;
  background-repeat: no-repeat;
  padding-left: 30px;
}

/* .hero__slide:nth-child(2) .hero__banner::after{
  content: url('../images/banners/product2.png');
  left: 70%;
  top: 55%;
} */

.hero__slide:nth-child(3) .hero__banner {
  background-image: url('../images/banners/banner3.png');
  background-position: left center;
  background-size: cover;
  background-repeat: no-repeat;

  align-items: flex-end;
  padding-right: 20px;
}

.hero__banner-wrapper {
  max-width: 300px;
}

.hero__banner-image {
  position: absolute;
}

.hero__slide:nth-child(1) .hero__banner-image {
  right: 25px;
  bottom: 20px;
}


.hero__slide:nth-child(2) .hero__banner-image {
  right: 45px;
  top: 50%;
  transform: translateY(-50%);
}

.hero__banner-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media(max-width: 1620px) {

  .hero__slide:nth-child(1) .hero__banner {
    background-position: -40px center;
  }

  .hero__slide:nth-child(1) .hero__banner-image {
    right: -100px;
  }

  .hero__slide:nth-child(2) .hero__banner-image {
    right: 30px;
  }

}

@media(max-width: 1440px) {

  .hero {
    padding: 20px 0;
  }

  .hero__slide:nth-child(1) .hero__banner {
    padding-left: 30px;
  }

  .hero__slide:nth-child(2) .hero__banner {
    padding-left: 15px;
  }

  .hero__slide:nth-child(1) .hero__banner-price {
    font-size: 36px;
    bottom: 90px;
  }

  .hero__slide:nth-child(1) .hero__banner-price {
    left: 480px;
  }

  .hero__slide:nth-child(1) .hero__banner {
    background-position: -150px center;
    background-size: 130%;
  }

  .hero__slide:nth-child(2) .hero__banner-price {
    bottom: 40px;
    left: 65%;
  }

  .hero__banner h1 {
    font-size: 50px;
  }

  .hero__banner h2 {
    font-size: 26px;
    margin-bottom: 10px;
  }

  .hero__slider {
    height: 460px;
    margin-bottom: 20px;
  }

  .hero__slides {
    grid-gap: 20px;
  }

  .hero__banner ul li {
    font-size: 16px;
  }

  .hero__slide:nth-child(1) .hero__banner-image {
    bottom: 20px;
    right: -130px;
    width: 440px;
  }

  .hero__slide:nth-child(2) .hero__banner-image {
    width: 100px;
    top: 55%;
  }

  .hero__banner ul li::before {
    top: 2px;
  }
}

@media(max-width: 1200px) {
  .hero__slides {
    display: flex;
    grid-gap: 0;
  }

  .hero__banner h2 {
    font-size: 50px;
    max-width: 520px;
  }

  .hero__slide:nth-child(1) .hero__banner-price {
    left: auto;
    right: 25%;
    bottom: 50px;
  }

  .hero__slide:nth-child(1) .hero__banner {
    background-size: cover;
    background-position: right center;
  }

  .hero__slide:nth-child(2) .hero__banner-price {
    font-size: 36px;
    left: auto;
    right: 25%;
    bottom: 50px;
  }

  .hero__slide:nth-child(2) .hero__banner {
    background-image: url('../images/banners/banner1.png');
    background-position: 128px center;
    padding-left: 30px;
  }

  .hero__banner-wrapper {
    max-width: 100%;
    width: 100%;
  }

  .hero__banner h3 {
    font-size: 50px;
  }

  .hero__banner p {
    font-size: 22px;
  }

  .hero__slide:nth-child(3) .hero__banner {
    padding: 0 30px;
    align-items: flex-start;
  }

  .hero__banner h3::after {
    width: 120px;
  }

  .hero__slide:nth-child(3) .hero__banner h3 {
    max-width: 540px;
  }

  .hero__slider {
    height: 420px;
  }

  .hero__slide:nth-child(1) .hero__banner-price,
  .hero__slide:nth-child(2) .hero__banner-price {
    font-size: 30px;
  }

  .hero__slide:nth-child(2) .hero__banner {
    background-position: right center;
  }

  .hero__banner h6 {
    font-size: 26px;
  }


  .hero__slide:nth-child(1) .hero__banner-image {
    right: 10px;
    bottom: -20px;
    width: auto;
  }

  .hero__slide:nth-child(2) .hero__banner-image {
    width: 180px;
    top: 50%;
    right: 90px;
  }
}

@media(max-width: 1024px) {

  .hero__banner h1,
  .hero__banner h2,
  .hero__banner h3 {
    font-size: 44px;
  }

  .hero__slide:nth-child(3) .hero__banner h3 {
    max-width: 500px;
  }

  .hero__slide:nth-child(1) .hero__banner,
  .hero__slide:nth-child(2) .hero__banner,
  .hero__slide:nth-child(3) .hero__banner {
    padding-left: 20px;
  }

  .hero__banner p {
    font-size: 20px;
  }

  .hero__slide:nth-child(1) .hero__banner-image {
    width: 420px;
    bottom: 20px;
  }

  .hero__slide:nth-child(1) .hero__banner-price {
    bottom: 50px;
  }

  .hero__slide:nth-child(1) .hero__banner-price,
  .hero__slide:nth-child(2) .hero__banner-price {
    font-size: 26px;
  }

  .hero__slide:nth-child(2) .hero__banner-image {
    right: 65px;
  }

  .hero__banner h6 {
    font-size: 24px;
  }
}

@media(max-width: 992px) {
  .hero__slide:nth-child(1) .hero__banner-image {
    right: -50px;
  }
}

@media(max-width: 768px) {
  .hero__slider {
    height: 460px;
  }

  .hero__banner {
    justify-content: flex-start;
    padding: 30px 0 45px 30px;
  }

  .hero__slide:nth-child(1) .hero__banner,
  .hero__slide:nth-child(2) .hero__banner,
  .hero__slide:nth-child(3) .hero__banner {
    padding-left: 30px;
  }

  .hero__slide:nth-child(3) .hero__banner {
    justify-content: center;
    background-image: url('../images/banners/banner3-mobile.png');
  }

  .hero__slide:nth-child(1) .hero__banner-price,
  .hero__slide:nth-child(2) .hero__banner-price {
    position: static;
    margin-top: auto;
  }

  .hero__slide:nth-child(1) .hero__banner {
    background-position: -180px center;
  }

  .hero__slide:nth-child(2) .hero__banner {
    background-position: -180px center;
  }

  .hero__banner h6 {
    font-size: 20px;
  }

  .hero__banner h1,
  .hero__banner h2 {
    font-size: 36px;
    max-width: 400px;
    margin-bottom: 15px;
  }

  .hero__banner ul {
    max-width: 200px;
  }

  .hero__banner ul li {
    font-size: 14px;
  }

  .hero__slide:nth-child(1) .hero__banner-image {
    right: 0;
    bottom: 0px;
    width: 340px;
  }

  .hero__slide:nth-child(2) .hero__banner-image {
    right: 70px;
    top: 60%;
    width: 170px;
  }

  .hero__slide:nth-child(3) .hero__banner h3 {
    font-size: 38px;
    max-width: 440px;
  }

  .hero__slide:nth-child(1) .hero__banner,
  .hero__slide:nth-child(2) .hero__banner {
    background-image: url('../images/banners/mobile-banner.png');
    background-position: right center;
  }

  .hero__banner p {
    font-size: 18px;
  }

  .hero__slide:nth-child(1) .hero__banner-price {
    padding: 5px 15px;
  }

  .hero__slide:nth-child(3) .hero__banner {
    padding: 0 20px;
  }
}

@media(max-width: 580px) {
  .hero__slide:nth-child(1) .hero__banner-image {
    width: 280px;
  }

  .hero__slide:nth-child(2) .hero__banner-image {
    width: 130px;
    top: 72%;
    right: 58px;
  }
}

@media(max-width: 475px) {

  .hero__banner h1,
  .hero__banner h2 {
    font-size: 30px;
  }

  .hero__slide:nth-child(3) .hero__banner h3 {
    font-size: 30px;
    max-width: 340px;
  }

  .hero__banner p {
    font-size: 16px;
  }

  .hero__banner {
    padding: 20px 0 35px 20px;
  }

  .hero__slide:nth-child(1) .hero__banner,
  .hero__slide:nth-child(2) .hero__banner,
  .hero__slide:nth-child(3) .hero__banner {
    padding-left: 20px;
  }
}

/*  */



.categories-slider {
  overflow: hidden;
}

.categories-slide {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  background-color: #ffffff;
  padding: 8px 9px 17px;
  gap: 13px;
  height: auto;
}

.categories-slide h3 {
  font-size: 16px;
  line-height: 1.07;
  font-weight: 300;
  text-align: center;
  margin-bottom: 0;
}


/* about company */
.about-company {
  margin: 100px 0 275px;
}

.about-company__title {
  color: #121212;
  text-align: center;
  font-family: Geologica;
  font-size: 64px;
  font-style: normal;
  font-weight: 400;
  line-height: 40px;
  /* 62.5% */

  margin-bottom: 70px;
}

.about-company__wrapper {
  display: flex;
  align-items: flex-start;
  gap: 105px;
}

.about-company__content {
  max-width: 1120px;
  width: 100%;

  flex-shrink: 1;
}

.about-company__slider-wrapper {
  width: 100%;
}

.about-company__slider {
  width: 100%;
}

.about-company__slider .about-company__slide {
  width: 100% !important;
}

.about-company__aside {
  max-width: 370px;
  width: 100%;

  flex-shrink: 0;

  position: sticky;
  top: 20px;
}

.about-company__slide-image {
  width: 100%;
  height: 550px;
}

.about-company__slide-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 30px;
}

.about-company__slide,
.about-company__slider {
  border-radius: 30px;
}

.about-company__slider {
  margin-bottom: 30px;
}

.about-company__slider-pagination.swiper-pagination.swiper-pagination-bullets.swiper-pagination-horizontal {
  bottom: 40px;
  left: 40px;

  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.about-company__slider-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
}

.about-company__slider-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: #fff;
}

.about-company__content-wrapper {
  padding: 60px 0;
  border-bottom: 1px dashed rgba(18, 18, 18, 0.1);
}

.about-company__content-wrapper:nth-child(1) {
  padding: 0 0 25px 0;
}

.about-company__content-wrapper:nth-child(4) {
  border: none;
  padding: 60px 0 0 0;
  margin-bottom: 60px;
}

.about-company__content-wrapper:nth-child(5) {
  padding: 0;
  border: none;
  margin-bottom: 80px;
}

.about-company__content-wrapper:nth-child(6) {
  padding: 0 0 60px 0;
  margin-bottom: 80px;
}

.about-company__content-wrapper:nth-child(7) {
  padding: 0;
  border: none;
}

.about-company__content p {
  color: #323232;
  font-family: Geologica;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 27px;
  /* 168.75% */
}

.about-company__slider-wrapper p {
  color: rgba(50, 50, 50, 0.6);
  font-family: Geologica;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 26px;
  /* 192.857% */
}



.about-company__content h2 {
  color: #323232;
  font-family: Geologica;
  font-size: 32px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;

  margin-bottom: 20px;
}

.about-company__content blockquote {
  position: relative;
  padding: 60px;
  background: #121212;

  color: #4EB0E4;
  font-family: Geologica;
  font-size: 28px;
  font-style: normal;
  font-weight: 400;
  line-height: 38px;
}

.about-company__content blockquote::before {
  content: url('../images/blockquote-icon.svg');
  position: absolute;
  top: -1px;
  left: 15px;
}

.about-company__content table {
  width: 100%;
  border-collapse: collapse;
}

.about-company__content table tr {
  height: 70px;
}

.about-company__content table tr:nth-child(1) {
  background: #323232;
}

.about-company__content table tr:not(:first-child) {
  border-bottom: 1px solid #323232;
}

.about-company__content table tr:nth-child(1) td {
  color: #fff;
}

.about-company__content table td {
  color: #323232;
  font-family: Geologica;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 27px;
}

.about-company__content table td:nth-child(1) {
  padding: 0 15px 0 30px;
}

.about-company__content table td:nth-child(2) {
  padding: 0 52px 0 15px;

}

.about-company__gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 20px;
}

.about-company__gallery-item {
  position: relative;
  height: 260px;
}

.about-company__gallery-pointer {
  position: absolute;
  top: 0;
  left: 0;

  width: 100%;
  height: 100%;

  background: rgba(78, 176, 228, 0.6);
  border-radius: 30px;

  display: flex;
  align-items: center;
  justify-content: center;

  cursor: pointer;

  opacity: 0;
  visibility: hidden;
  transition: all .4s ease;
}

.about-company__gallery-item:hover .about-company__gallery-pointer {
  opacity: 1;
  visibility: visible;
  transition: opacity .4s ease;
}

.about-company__gallery-image {
  width: 100%;
  height: 100%;
}

.about-company__gallery-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 30px;
}

.about-company__nav-item {
  padding: 36px 25px;
  margin: 0;
  border-bottom: 1px dashed rgba(50, 50, 50, 0.2);
}

.about-company__nav-item::before {
  display: none;
}

.about-company__nav-item:nth-child(1) {
  border-top: 1px dashed rgba(50, 50, 50, 0.2);
}

.about-company__nav-link {
  color: #323232;
  font-family: Geologica;
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  transition: color .4s ease;
}

.about-company__nav-link:hover {
  color: #4EB0E4;
  transition: color .4s ease;
}


.about-company__content li {
  color: #323232;
  font-family: Geologica;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 27px;
  /* 168.75% */
}

@media(max-width: 1440px) {
  .about-company__wrapper {
    gap: 30px;
  }

  .about-company__slide-image {
    height: 450px;
  }

  .about-company__content-wrapper {
    padding: 50px 0;
  }

  .about-company__content-wrapper:nth-child(4) {
    padding-top: 50px;
  }

  .about-company__content-wrapper:nth-child(5) {
    margin-bottom: 50px;
  }

  .about-company__content-wrapper:nth-child(6) {
    margin-bottom: 50px;
    padding-bottom: 50px;
  }

  .about-company__gallery {
    grid-gap: 15px;
  }

  .about-company__content table td:nth-child(2),
  .about-company__content table td:nth-child(1) {
    padding: 0 15px;
  }

  .about-company__content table td:nth-child(2) {
    width: 20%;
  }

  .about-company__content table td {
    font-size: 16px;
    line-height: 24px;
  }

  .about-company__title {
    margin-bottom: 60px;
    font-size: 56px;
  }

  .about-company__nav-item {
    padding: 25px 15px;
  }

  .about-company__nav-link {
    font-size: 20px;
  }

  .about-company__slider {
    margin-bottom: 20px;
  }

  .about-company__aside {
    max-width: 300px;
  }

  .about-company {
    margin: 80px 0 120px;
  }
}

@media(max-width: 1024px) {

  .about-company__aside {
    display: none;
  }

  .about-company__wrapper {
    display: block;
    gap: 0;
  }

  .about-company__title {
    font-size: 52px;
    margin-bottom: 50px;
  }

  .about-company__slide-image {
    height: 420px;
  }

  .about-company__content h2 {
    font-size: 28px;
    margin-bottom: 15px;
  }

  .about-company__content blockquote {
    font-size: 22px;
  }

  .about-company__gallery-item {
    height: 240px;
  }

  .about-company__content table td:nth-child(2) {
    padding: 0 10px;
  }

  .about-company__content-wrapper {
    padding: 40px 0;
  }

  .about-company__content-wrapper:nth-child(4) {
    padding-top: 40px;
    margin-bottom: 50px;
  }

  .about-company__content-wrapper:nth-child(5) {
    margin-bottom: 40px;
  }

  .about-company__content-wrapper:nth-child(6) {
    margin-bottom: 40px;
    padding-bottom: 40px;
  }

  .about-company__content table td {
    font-size: 14px;
    line-height: 22px;
  }

  .about-company__content li {
    padding-left: 30px;
  }

  .about-company {
    margin: 80px 0;
  }
}

@media(max-width: 992px) {
  .about-company__gallery {
    grid-gap: 10px;
  }

  .about-company__gallery-item {
    height: 210px;
  }
}

@media(max-width: 768px) {

  .about-company {
    margin: 70px 0;
  }

  .about-company__title {
    font-size: 46px;
    margin-bottom: 40px;
  }

  .about-company__slide-image {
    height: 380px;
  }

  .about-company__content h2 {
    font-size: 24px;
  }

  .about-company__content blockquote {
    padding: 60px 25px 30px 25px;
    font-size: 20px;
    line-height: 34px;
  }

  .about-company__gallery-item {
    height: 180px;
  }

  .about-company__gallery-pointer-icon {
    width: 60px;
    height: 60px;
  }

  .about-company__gallery-pointer-icon svg {
    width: 100%;
    height: 100%;
  }

  .about-company__content li {
    font-size: 14px;
    line-height: 28px;
  }

  .about-company__content p {
    font-size: 14px;
    line-height: 28px;
  }

  .about-company__slider-wrapper p {
    line-height: 22px;
  }

  .about-company__gallery {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-company__content table td:nth-child(2) {
    width: 23%;
  }

  .about-company__gallery-image img {
    border-radius: 10px;
  }

  .about-company__gallery-pointer {
    border-radius: 10px;
  }
}

@media(max-width: 475px) {
  .about-company__content table td {
    font-size: 12px;
    line-height: 20px;
  }

  .about-company__gallery-item {
    height: 130px;
  }

  .about-company__gallery-pointer-icon {
    width: 50px;
    height: 50px;
  }

  .about-company__content blockquote {
    font-size: 18px;
    line-height: 30px;
  }

  .about-company__title {
    font-size: 38px;
    margin-bottom: 30px;
    text-align: left;
  }

  .about-company__slide-image {
    height: 350px;
  }

  .about-company__slider-pagination.swiper-pagination.swiper-pagination-bullets.swiper-pagination-horizontal {
    bottom: 22px;
    left: 22px;
  }

  .about-company__slide-image img {
    border-radius: 15px;
  }

  .about-company__content table td:nth-child(2) {
    width: 26%;
  }

}

@media(max-width: 375px) {

  .about-company__content table td:nth-child(1) {
    padding: 0 10px;
  }

  .about-company__content table td:nth-child(2) {
    width: 30%;
  }

}

/*  */

/* header */
.header {
  background: #fff;
  
  transition: all .4s ease;
  top: -100px;
}

.header.fixed {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    
    z-index: 999;
    
    transition: all .4s ease;
}

.header.fixed .header__top{
    display: none;
}

.header__top {
  padding: 20px 0;
  border-bottom: 1px solid #E0E0E0;
}

.header__top-inner {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}

.header__menu {
  display: flex;
  align-items: center;
  gap: 42px;
}

.header__menu-item {
  padding: 0;
  list-style: none;
  margin: 0;
}

.header__menu-item::before {
  display: none;
}

.header__menu-link {
  color: #4F4F4F;
  font-family: Geologica;
  font-size: 14px;
  font-style: normal;
  font-weight: 300;
  line-height: 107.5%;
  /* 15.05px */
}

.header__top-aside {
  display: flex;
  align-items: center;
  gap: 18px;
}

.header__lang {
  display: flex;
  align-items: center;
  gap: 8px;

  position: relative;
  padding-right: 18px;
}

.header__lang::after {
  content: '';
  position: absolute;

  right: 0;
  top: 50%;
  transform: translateY(-50%);
  height: 32px;
  width: 1px;
  background: #E0E0E0;
}

.header__lang-button {
  color: #4F4F4F;
  font-family: Geologica;
  font-size: 14px;
  font-style: normal;
  font-weight: 300;
  line-height: 107.5%;

  padding: 0 2px;
  cursor: pointer;
  border-bottom: 3px solid transparent;
}

.header__lang-button.active {
  border-color: #4EB0E4;
}

.header__contact-phone {
  color: #4F4F4F;
  font-family: Geologica;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 107.5%;
  /* 19.35px */
}


.header__content {
  padding: 24px 0;
  border-bottom: 1px solid #E0E0E0;
}

.header__content-inner {
  display: flex;
  align-items: center;
}

.header__top-item {
  position: relative;
  margin: 0 60px;
}

.header__top-item-link {
  color: #020202;
  font-family: Geologica;
  font-size: 18px;
  font-style: normal;
  font-weight: 300;
  line-height: 107.5%;
}

.header__top-item-label {
  color: #FFF;
  text-align: center;
  font-family: Geologica;
  font-size: 10px;
  font-style: normal;
  font-weight: 400;
  line-height: 107.5%;
  /* 10.75px */
  padding: 3px 5px;

  background: #4EB0E4;

  position: absolute;
  top: -12px;
  right: -15px;
}

.header__cataloge {
  display: flex;
  align-items: center;
  gap: 20px;
  max-width: 770px;
  width: 100%;

  height: 55px;

  background: #F7F7F7;
  padding: 0 10px 0 35px;
  margin-right: 50px;
}

.header__select {
  max-width: 160px;
  width: 100%;
  height: 100%;
}

.header__select-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 11px;

  max-width: 120px;
  height: 100%;

  cursor: pointer;
}

.header__select-trigger-icon {
  display: flex;
  align-items: center;
  justify-content: center;
}

.header__select-trigger-text {
  color: #4F4F4F;
  font-family: Geologica;
  font-size: 14px;
  font-style: normal;
  font-weight: 300;
  line-height: 107.5%;
  /* 15.05px */
}

.header__form,
.header__form-inner {
  width: 100%;
}

.header__form-inner {
  display: flex;
  align-items: center;
  gap: 20px;
}

.header__form-input {
  width: 100%;
}

.header__form-input input {
  width: 100%;
  height: 100%;

  border: none;
  outline: none;
  padding: 0;
  margin: 0;
  cursor: pointer;
  background: transparent;

  color: #4F4F4F;
  font-family: Geologica;
  font-size: 14px;
  font-style: normal;
  font-weight: 300;
  line-height: 1
    /* 15.05px */
}

.header__form-input input::placeholder {
  color: #4F4F4F;
  font-family: Geologica;
  font-size: 14px;
  font-style: normal;
  font-weight: 300;
  line-height: 107.5%;
  /* 15.05px */
}

.header__form-button {
  width: 55px;
  height: 55px;

  display: flex;
  align-items: center;
  justify-content: center;
}

.header__sections-list {
  display: flex;
  align-items: center;
  gap: 30px;
}

.header__section-item {
  padding: 0;
  margin: 0;
}

.header__section-item::before {
  display: none;
}

.header__section {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  position: relative;
}

.header__section-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 20px;
  width: 20px;
}

.header__section-icon svg {
  width: 100%;
  height: 100%;
}

.header__section-text {
  color: #323232;
  text-align: center;
  font-family: Geologica;
  font-size: 13px;
  font-style: normal;
  font-weight: 400;
  line-height: 107.5%;
  /* 13.975px */
}

.header__section-num {
  position: absolute;
  color: #FFF;
  text-align: center;
  font-family: Geologica;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 107.5%;
  /* 12.9px */

  width: 16px;
  height: 16px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 50%;

  top: -12px;
  right: 6px;
  background: #4EB0E4;
}

.header__top-inner .header__logo,
.header__burger-menu {
  display: none;
}

.header__burger-menu {
  align-items: center;
  justify-content: center;

  width: 37px;
  height: 37px;

  background: #4EB0E4;

  cursor: pointer;
}

.header__logo {
  flex-shrink: 0;
}

.header__section-item:nth-child(1) {
  display: none;
}

@media(max-width: 1440px) {
  .header__menu {
    gap: 20px;
  }

  .header__top-item {
    margin: 0 40px;
  }

  .header__cataloge {
    padding: 0 10px 0 15px;
    margin-right: 30px;
  }

  .header__sections-list {
    gap: 20px;
  }
}

@media(max-width: 1290px) {

  .header__nav,
  .header__top-aside,
  .header__content .header__logo,
  .header__select {
    display: none;
  }

  .header__top-inner .header__logo,
  .header__top-inner .header__burger-menu {
    display: block;
  }

  .header__logo {
    max-width: 170px;
  }
  
  .header.fixed .header__top{
      display: block;
      padding: 10px 0;
  }
  
  .header.fixed .header__content{
      display: block;
      padding: 14px 0;
  }

  .header__top-inner {
    align-items: center;
  }

  .header__top-item {
    margin-left: 0;
  }
}

@media(max-width: 1024px) {
  .header__top-item-link {
    font-size: 16px;
  }
}

@media(max-width: 768px) {
  .header__sections-list {
    gap: 15px;
  }

  .header__cataloge {
    margin-right: 20px;
    padding: 0 10px;
  }

  .header__top-item {
    display: none;
  }
}

@media(max-width: 570px) {
  .header__cataloge {
    display: none;
  }

  .header__cataloge {
    max-width: fit-content;
    background: transparent;
    padding: 0;
    margin: 0;
  }

  .header__content-inner {
    justify-content: space-between;
  }

  .header__section-item:nth-child(2) {
    display: none;
  }

  .header__section-item:nth-child(1) {
    display: block;
  }

  .header__sections {
    width: 100%;
  }

  .header__sections-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 20px;
  }

  .header__section-num {
    left: 58px;
    top: -10px;
    right: auto;
  }



  .header__content {
    padding: 18px 0;
  }

  .header__form-button {
    width: 40px;
    height: 40px;
  }

  .header__sections-list {
    gap: 30px;
  }

  .header__section-text {
    display: none;
  }
}

@media(max-width: 475px) {
  .header__section-num {
    left: 53px;
  }
}

@media(max-width: 425px) {

  .header__section-num {
    left: 47px;
  }



  .header__sections {
    width: 100%;
  }

  .header__sections-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 20px;
  }
}

@media(max-width: 375px) {
  .header__section-num {
    left: 43px;
  }
}

/*  */

.footer-main {
  padding: 40px 0 32px;
  background-color: #323232;
}

.footer-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 32px;
}

.footer-socials {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 6px;
  margin-bottom: 40px;
}

.footer-socials__link {
  width: 35px;
  height: 35px;
  -webkit-transform: scale(1);
  transform: scale(1);
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.footer-socials__link:hover {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
  -webkit-transition: 0.25s;
  transition: 0.25s;
}

.footer-payments {
  display: flex;
  align-items: center;
  gap: 6px;
}

.footer-payment img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.footer-section__title {
  font-size: 16px;
  line-height: 1.2;
  padding-bottom: 10px;
  text-transform: uppercase;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 12px;
  position: relative;
}

.footer-section__title::before {
  position: absolute;
  content: "";
  width: 22px;
  height: 1px;
  background-color: #4EB0E4;
  bottom: 0;
  left: 0;
}

.footer__link {
  display: block;
  color: #ffffff;
  font-size: 13px;
  line-height: 1;
  font-weight: 300;
}

.footer__link+.footer__link {
  margin-top: 10px;
}

.footer-bottom {
  padding: 23px 0;
  background-color: #272727;
}

.footer-bottom .container {
  text-align: center;
  color: #ffffff;
  font-size: 13px;
  font-weight: 300;
}

a.footer__link:hover {
  color: #4EB0E4;
}

.catalog-item {
  padding: 14px;
  width: 100%;
  transition: all .3s ease;
}

.catalog-item:hover {
  background: #F7F7F7;
  box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.25);
  transition: all .3s ease;
}

.catalog-item__fav {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  width: 18px;
  height: 18px;
}

.catalog-item__img {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  background-color: #F7F7F7;
  padding: 22px;
}

.catalog-item__img img,
.catalog-item__img picture {
  display: block;
}

.catalog-item__info {
  margin-top: 16px;
}

.catalog-item__articul {
  font-size: 14px;
  font-weight: 300;
  color: #828282;
  margin-bottom: 10px;
}

.catalog-item__name {
  font-size: 16px;
  line-height: 1.3;
  font-weight: 700;
  color: #020202;
  margin-bottom: 10px;
}

.catalog-item__name:hover {
  color: #4EB0E4;
}

.catalog-item__desc {
  font-size: 14px;
  font-weight: 300;
  color: #828282;
  line-height: 1.28;
}

.catalog-item__bottom {
  margin-top: 14px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.catalog-item__price {
  font-size: 21px;
  line-height: 1;
  font-weight: 700;
  color: #4EB0E4;
}

.catalog-item__add {
  width: 42px;
  height: 38px;
  background-color: transparent;
  border: 1px solid #4EB0E4;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-radius: 5px;
  cursor: pointer;
}

.catalog-item__add:hover {
  background-color: #4EB0E4;
  color: #ffffff;
}

.catalog-item__action {
  visibility: hidden;
  opacity: 0;
  transition: opacity .3s;
  margin-top: 20px;
}

.catalog-item:hover .catalog-item__action {
  visibility: visible;
  opacity: 1;
  transition: .3s;
}

.catalog-item__preview {
  background: #4EB0E4;

  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;

  cursor: pointer;

  color: #FFF;
  font-family: Geologica;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 104.5%;
  /* 14.63px */
}

.catalog-banner {
  padding: 30px 45px;
  border: 1px solid var(--4-eb-0-e-4, #4EB0E4);
  background: linear-gradient(125deg, #F4F9FD 0%, #FCFEFD 100%);
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.catalog-banner::before {
  position: absolute;
  content: "";
  right: 0;
  top: 0;
  bottom: 0;
  width: 30%;
  background-color: #2E82CF;
}

.catalog-banner__img {
  position: absolute;
  top: -80px;
  right: 0;
}

.catalog-banner__title {
  font-size: 34px;
  color: #323232;
  font-weight: 800;
  line-height: 1.17;
  margin-bottom: 15px;
  text-transform: uppercase;
}

.catalog-banner__list-item {
  margin-top: 5px;
  padding-left: 25px;
  position: relative;
  color: #323232;
  font-weight: 300;
}

.catalog-banner__list-item::before {
  position: absolute;
  content: "";
  left: 0;
  top: 7px;
  border-radius: 50%;
  width: 14px;
  height: 14px;
  border: 1px solid #4EB0E4;
  background: #fff;
}

.catalog-banner__left {
  width: 60%;
}

.catalog-banner__right {
  width: 40%;
}

.catalog-banner__price {
  display: inline-block;
  width: auto;
  padding: 6px 12px;
  background-color: #4EB0E4;
  color: #ffffff;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 32px;
  margin-top: 12px;
  position: relative;
  z-index: 2;
}

.banners-swiper {
  position: relative;
}

@media (max-width: 1600px) {
  .hero-banners .swiper-wrapper {
    gap: 24px;
  }

  .hero-banner {
    padding: 24px;
    padding-right: 150px;
  }

  .hero-banner__name {
    font-size: 30px;
  }

  .hero-banner-main {
    padding: 32px;
    padding-right: 40%;
  }

  .hero-banner-main .hero-banner__name {
    font-size: 48px;
  }

  .contacts-content {
    width: 50%;
  }


  .catalog-banner {
    padding: 24px 32px;
  }

  .catalog-banner__img {
    width: 50%;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
  }
}

@media (max-width: 1280px) {
  .z1 {
    font-size: 56px;
  }

  .catalog-list {
    grid-template-columns: repeat(4, 1fr);
  }

  .footer-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px 24px;
  }

  .catalog-banner__title {
    font-size: 24px;
  }

  .catalog-banner__list-item {
    font-size: 14px;
  }

  .catalog-banner__price {
    padding: 4px 10px;
    font-size: 24px;
  }
}

@media (max-width: 1024px) {
  .catalog-item:hover {
    box-shadow: none;
  }
}

@media (max-width: 992px) {
  .z1 {
    font-size: 40px;
  }

  h3 {
    font-size: 24px;
    margin-bottom: 23px;
  }

  .catalog-list {
    margin: -8px;
  }

  .banners-slider__wrapper {
    display: flex;
    grid-gap: 0;
  }

  .catalog-banner__img {
    width: 40%;
  }

  .catalog-section {
    margin: 50px 0;
  }

  .catalog-section__title {
    font-size: 32px;
  }



  .hero-banner__price {
    font-size: 26px;
  }

  .hero-banner-main .hero-banner__price {
    font-size: 26px;
    padding: 5px 10px;
  }



  .catalog-item__img {
    padding: 16px 10px;
  }

  .catalog-item__info {
    margin-top: 10px;
  }

  .catalog-item__name {
    font-size: 12px;
  }

  .catalog-item__desc {
    font-size: 12px;
  }

  .catalog-item__price {
    font-size: 16px;
  }

  .catalog-item__action {
    display: none !important;
  }

  .catalog-banner {
    padding: 16px 22px;
  }

  .catalog-banner::before {
    width: 80px;
  }



  .catalog-banner__title {
    font-size: 18px;
  }

  .catalog-banner__price {
    position: absolute;
    right: 32px;
    bottom: 36px;
    padding: 5px 15px;
    font-size: 18px;
  }
}

@media (max-width: 767px) {
  .container {
    padding: 0 15px;
  }

  .form-item.col-6 {
    width: 100%;
  }

  .form-item.col-3 {
    width: calc(50% - 10px);
  }

  .catalog-list {
    grid-template-columns: repeat(3, 1fr);
  }

  .catalog-section__title {
    font-size: 24px;
  }



  .footer-main {
    padding: 25px 0 44px;
  }

  .footer-content {
    grid-template-columns: repeat(2, 1fr);
    gap: 44px 30px;
  }

  .catalog-banner__img {
    width: 45%;
  }
}

@media (max-width: 560px) {
  .catalog-list {
    grid-template-columns: repeat(2, 1fr);
  }
}

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




/* product page */
.product {
  margin: 60px 0;
}

.product__wrapper {
  display: flex;
  align-items: flex-start;
  gap: 30px;
  margin-bottom: 85px;
}

.product__details {
  max-width: 670px;
  width: 100%;
  flex-shrink: 0;
}

.product__details h1 {
  color: #121212;
  font-family: Geologica;
  font-size: 42px;
  font-style: normal;
  font-weight: 400;
  line-height: 100%;
  /* 42px */
  margin-bottom: 40px;
}

.product__details-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;

  padding: 25px 20px;
  background: #F7F7F7;
}

.product__details-items {
  display: flex;
  align-items: center;
  gap: 64px;
}

.product__details-item-label {
  color: #828282;
  font-family: Geologica;
  font-size: 18px;
  font-style: normal;
  font-weight: 300;
  line-height: 18px;
  /* 100% */
  margin-bottom: 10px;
}

.product__details-item-value {
  color: #020202;
  font-family: Geologica;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 21px;
  /* 131.25% */
}

.product__fav-button {

  display: flex;
  align-items: center;
  justify-content: center;

  width: 58px;
  height: 58px;

  border: 1px solid #E0E0E0;

}

.product__desc p {
  margin: 16px 0;

  color: #828282;
  font-family: Geologica;
  font-size: 14px;
  font-style: normal;
  font-weight: 300;
  line-height: 18px;
  /* 128.571% */
}

.product__price {
  color: #4EB0E4;
  font-family: Geologica;
  font-size: 30px;
  font-style: normal;
  font-weight: 700;
  line-height: 21px;
  /* 70% */
}

.product__counter {
  display: flex;
  align-items: center;
  gap: 11px;
  margin: 0 0 0 auto;
}

.product__counter-button {

  display: flex;
  align-items: center;
  justify-content: center;

  width: 24px;
  height: 24px;
}

.product__counter-button:disabled svg rect {
  fill: #D9D9D9;
}

.product__counter-value {

  width: 80px;
  height: 60px;

  border-radius: 5px;
  border: 1px solid var(--4-eb-0-e-4, #4EB0E4);
  background: var(--ffffff, #FFF);
  outline: none;

  color: #020202;
  font-family: Geologica;
  font-size: 30px;
  font-style: normal;
  font-weight: 400;
  line-height: 21px;
  /* 70% */
  text-align: center;
}

.product__add-button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;

  max-width: 260px;
  width: 100%;
  height: 60px;

  padding: 0 15px;

  border-radius: 10px;
  background: #4EB0E4;

}

.product__add-button-icon {
  display: flex;
  align-items: center;
  justify-content: center;
}

.product__add-button-text {
  color: #FFF;
  text-align: center;
  text-overflow: ellipsis;
  font-family: Geologica;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 21px;
  /* 131.25% */
}

.product__details-triggers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: flex-start;

  margin-top: 34px;

  padding: 35px 60px;
  background: #F7F7F7;
}

.product__details-trigger {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 17px;
}

.product__details-trigger-icon {
  display: flex;
  align-items: center;
  justify-content: center;

  width: 60px;
  height: 60px;
}

.product__details-trigger-icon svg {
  width: 100%;
  height: 100%;
}


.product__details-trigger h3 {
  color: #020202;
  text-align: center;
  font-family: Geologica;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 21px;
  /* 131.25% */

  max-width: 200px;
}

.product__details-trigger h3 span {
  font-weight: 700;
}

.product__tabs-buttons {
  display: flex;
  align-items: center;
  gap: 36px;

  margin-bottom: 28px;
}

.product__tabs-button {
  color: #828282;
  font-family: Geologica;
  font-size: 30px;
  font-style: normal;
  font-weight: 800;
  line-height: 107.5%;
  /* 32.25px */
  padding: 0 18px;

  position: relative;
}

.product__tabs-button::after {
  content: '';
  position: absolute;

  left: 50%;
  transform: translateX(-50%);
  bottom: 0;

  width: 100%;
  height: 6px;

  background: #4EB0E4;

  display: none;
}

.product__tabs-button.active {
  color: #323232;
}

.product__tabs-button.active::after {
  display: block;
}

.product__tabs-section {
  display: none;
}

.product__tabs-section.active {
  display: block;
}

.product__tabs-section-content p {
  color: #828282;
  font-family: Geologica;
  font-size: 21px;
  font-style: normal;
  font-weight: 300;
  line-height: 30px;
  /* 142.857% */
}

.product__tabs-section-content ul {
  margin-top: 37px;
}

.product__tabs-section-content ul li {
  color: #828282;
  font-family: Geologica;
  font-size: 21px;
  font-style: normal;
  font-weight: 300;
  line-height: 30px;
  /* 142.857% */

  padding-left: 25px;
}

.product__tabs-section-content ul li::before {
  width: 14px;
  height: 14px;

  border-radius: 50%;
  background: #fff;
  border: 2px solid #4EB0E4;

  top: 8px;
}

.product__top-slide-image {
  max-width: 555px;
  width: 100%;
  margin: 0 auto;
}

.product__top-slide-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product__slider {
  max-width: 950px;
  width: 100%;
}



.product__top-slider {
  width: 100%;
  margin-bottom: 15px;
}

.product__top-slider .swiper-slide {
  width: 100% !important;
}



.product__top-slide-inner,
.product__thumbs-slide-inner {
  background: #F7F7F7;
}

.product__thumbs-slider {
  max-width: 410px;
  width: 100%;
  margin-left: 0;
}

.product__thumbs-slide-inner {
  padding: 18px 14px;
}

.product__thumbs-slide-image {
  width: 100px;
  height: 100px;
  margin: 0 auto;
}

.product__thumbs-slide-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.recommended-products {
  margin-bottom: 100px;
}

.product__top-slide-inner {
  padding: 30px;
}


@media(max-width: 1440px) {
  .product__details-triggers {
    padding: 35px 20px;
  }

  .product__details {
    max-width: 600px;
  }
}

@media(max-width: 1200px) {
  .product__wrapper {
    flex-direction: column;
    align-items: center;
  }

  .product__details {
    max-width: 100%;
  }

  .product__slider {
    max-width: 100%;
  }

  .product__top-slide-image {
    max-width: 455px;
  }

  .product__thumbs-slide-image {
    width: 80px;
    height: 80px;
  }

  .product__thumbs-slider {
    max-width: 350px;
  }

  .product__details h1 {
    font-size: 38px;
    margin-bottom: 30px;
  }

  .product__top-slide-inner {
    padding: 0 20px;
  }
}

@media(max-width: 1024px) {

  .catalog-item__action {
    display: none;
  }

  .product__top-slide-image {
    max-width: 400px;
  }

  .product__thumbs-slide-inner {
    padding: 14px;
  }

  .product__details h1 {
    font-size: 34px;
    margin-bottom: 20px;
  }

  .product__price {
    font-size: 28px;
  }

  .product__counter-value {
    width: 60px;
    height: 50px;
    font-size: 26px;
  }

  .product__add-button {
    height: 50px;
  }

  .product__details-trigger-icon {
    width: 50px;
    height: 50px;
  }

  .product__details-triggers {
    padding: 25px 20px;
  }

  .product__wrapper {
    margin-bottom: 60px;
  }

  .product__tabs-button {
    font-size: 28px;
    padding: 0 14px;
  }

  .product__tabs-section-content p,
  .product__tabs-section-content ul li {
    font-size: 20px;
  }

  .product__thumbs-slide-image {
    width: 70px;
    height: 70px;
  }
}

@media(max-width: 768px) {
  .product__top-slide-image {
    max-width: 340px;
  }

  .product__details h1 {
    font-size: 28px;
  }

  .product__thumbs-slide-image {
    width: 60px;
    height: 60px;
  }

  .product__tabs-section-content p,
  .product__tabs-section-content ul li {
    font-size: 16px;
    line-height: 26px;
  }

  .product__tabs-buttons {
    margin-bottom: 20px;
    gap: 20px;
  }

  .product__tabs-button {
    font-size: 24px;
    padding: 0 10px;
  }

  .product__tabs-button::after {
    height: 4px;
    bottom: 1px;
  }

  .product__counter-value {
    font-size: 20px;
  }

  .product__thumbs-slide-inner {
    padding: 10px;
  }

  .product__details-trigger-icon {
    width: 40px;
    height: 40px;
  }

  .product__details-triggers {
    padding: 20px;
  }

  .product__wrapper {
    margin-bottom: 50px;
  }

  .product__tabs-section-content ul {
    margin-top: 20px;
  }

  .product__details-wrapper {
    padding: 20px 10px;
    gap: 20px;
  }

  .product__add-button-text {
    font-size: 14px;
  }

  .product__add-button {
    padding: 0 10px;
    max-width: 180px;
  }

  .product__price {
    font-size: 24px;
  }

  .product__add-button-icon {
    display: none;
  }

  .product__counter-button {
    width: 20px;
    height: 20px;
  }

  .product__details-trigger {
    max-width: 180px;
  }

  .product__details-trigger h3 {
    font-size: 14px;
  }
}

@media(max-width: 495px) {
  .product__cost-block {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 20px;
  }

  .product__add-button {
    grid-column: span 2;
    max-width: 100%;
  }

  .product__details-triggers {
    grid-template-columns: repeat(1, 1fr);
    grid-gap: 20px;
    align-items: center;
  }

  .product__details-trigger {
    max-width: 100%;
  }

  .product__top-slide-image {
    max-width: 300px;
  }

  .product__thumbs-slide-image {
    width: 50px;
    height: 50px;
  }

  .product__details-items {
    gap: 40px;
  }

  .product__details-item-label {
    font-size: 16px;
    margin-bottom: 5px;
  }

  .product__details-item-value {
    font-size: 14px;
  }

  .product__thumbs-slider {
    max-width: 280px;
  }

  .footer-socials {
    margin-bottom: 20px;
  }

  .footer-section:last-child {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-end;

    height: 100%;
  }
}

@media(max-width: 425px) {
  .product__details h1 {
    font-size: 26px;
  }

  .product__details-items {
    flex-direction: column;
    align-items: flex-start;
  }

  .product__details-items {
    gap: 25px;
  }

}

/*  */


/* cart modal */
.cart-modal {
  position: fixed;
  top: 0;
  left: 0;

  z-index: 999;

  width: 100%;
  height: 100%;

  opacity: 0;
  visibility: hidden;
  transition: opacity .4s ease;
}

.cart-modal.visible {
  opacity: 1;
  visibility: visible;
  transition: opacity .4s ease;
}

.cart-modal.visible .cart-modal__inner {
  transform: translateX(0);
  transition: transform .4s ease;
}

.cart-modal__overlay {
  display: flex;
  justify-content: flex-end;

  width: 100%;
  height: 100%;

  background: rgba(18, 18, 18, 0.6);
}

.cart-modal__inner {
  max-width: 560px;
  width: 100%;

  padding: 60px 30px 40px;
  background: #fff;

  position: relative;
  transform: translateX(100%);
  transition: all .4s ease;
}

.cart-modal__close-button {
  position: absolute;
  top: 40px;
  left: -40px;

  z-index: 1000;

  width: 80px;
  height: 80px;
  background: #F2F2F2;
  border-radius: 50%;

  display: flex;
  align-items: center;
  justify-content: center;

  cursor: pointer;
}

.cart-modal__products {
  max-height: 100%;
  overflow: auto;
  margin-bottom: 20px;

  border-radius: 10px 0 0 10px;

  background: rgba(226, 226, 226, 0.4);
  padding: 20px 30px;
}

.cart-modal__products .simplebar-track.simplebar-vertical {
  width: 6px;
  border-radius: 30px;
  background: rgba(226, 226, 226, 0.4);
}

.cart-modal__products .simplebar-scrollbar::before {
  border-radius: 30px;
  background: #A8A8A8;

  height: 84px;
  width: 100%;

  top: auto;
  left: auto;
  right: auto;
  bottom: auto;
}

.cart-modal__product {
  display: flex;
  align-items: flex-start;
  gap: 30px;

  padding: 30px 0;

  border-top: 1px dashed rgba(18, 18, 18, 0.3);
}

.cart-modal__product-image {
  max-width: 110px;
  height: 110px;
  width: 100%;
  background: #fff;
  flex-shrink: 0;
}

.cart-modal__product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cart-modal__product-title {
  color: #323232;
  font-family: Geologica;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 21px;
  /* 131.25% */

  margin-bottom: 12px;
}

.cart-modal__counter {
  display: flex;
  align-items: center;
  gap: 10px;
}

.cart-modal__counter-button {
  display: flex;
  align-items: center;
  justify-content: center;

  padding: 0;
  margin: 0;
  cursor: pointer;
}

.cart-modal__counter-value {
  width: 30px;
  height: 25px;

  color: #323232;
  text-align: center;
  font-family: Geologica;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 22px;
  /* 110% */

  outline: none;
  background: transparent;
  border: none;
  padding: 0;
  margin: 0;
}

.cart-modal__product-delete {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;

  max-width: 90px;
  width: 100%;
  height: 26px;

  border-radius: 50px;
  background: #E2E2E2;
  padding: 0 10px;
  margin: 0 0 16px 0;
  cursor: pointer;
}

.cart-modal__product-delete-text {
  color: rgba(18, 18, 18, 0.4);
  font-family: Geologica;
  font-size: 11px;
  font-style: normal;
  font-weight: 400;
  line-height: 1;
  /* 218.182% */

  position: relative;
  top: 1px;
}

.cart-modal__product-delete-icon {
  display: flex;
  align-items: center;
  justify-content: center;
}

.cart-modal__product-prices {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.cart-modal__product-new-price {
  color: #323232;
  font-family: Geologica;
  font-size: 26px;
  font-style: normal;
  font-weight: 400;
  line-height: 34px;
}

.cart-modal__product-old-price {
  color: #121212;
  font-family: Geologica;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 34px;

  position: relative;
}

.cart-modal__product-old-price::after {
  content: '';
  position: absolute;

  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);

  width: 110%;
  height: 1px;

  background: #DC3A57;
}

.cart-modal__title {
  color: #323232;
  text-align: center;
  font-family: Geologica;
  font-size: 36px;
  font-style: normal;
  font-weight: 400;
  line-height: 40px;
  /* 111.111% */

  margin-bottom: 28px;
}

.cart-modal__total {
  margin-bottom: 30px;
}

.cart-modal__total-items {
  margin-bottom: 20px;
}

.cart-modal__total-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;

  margin-bottom: 10px;
}

.cart-modal__total-item:last-child {
  margin-bottom: 0;
}

.cart-modal__total-item-title {
  color: #121212;
  font-family: Geologica;
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: 30px;
  /* 125% */
}

.cart-modal__product-price,
.cart-modal__product-sale {
  color: #121212;
  font-family: Geologica;
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: 30px;
  /* 125% */
}

.cart-modal__product-sale {
  color: #378465;
}

.cart-modal__total-price {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.cart-modal__total-price-title,
.cart-modal__total-price-value {
  color: #121212;
  font-family: Geologica;
  font-size: 36px;
  font-style: normal;
  font-weight: 400;
  line-height: 30px;
  /* 83.333% */
}

.cart-modal__form-submit {
  display: block;

  flex-shrink: 0;

  width: 100%;
  height: 60px;
  text-align: center;

  border-radius: 10px;
  background: #4EB0E4;

  color: #FFF;
  font-family: Geologica;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 60px;
  /* 166.667% */

  outline: none;
  border: none;
  cursor: pointer;
  padding: 0;
  margin: 0;
}

.cart-modal__form-warning {
  color: #121212;
  text-align: center;
  font-family: Geologica;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 29px;
  /* 207.143% */

  margin-top: 20px;
}

.cart-modal__form,
.cart-modal__form-inner {
  height: 100%;
}

.cart-modal__form-inner {
  display: flex;
  flex-direction: column;
}

.cart-modal__form-submit {
  margin-top: auto;
}

@media(max-width: 1200px) {

  .cart-modal__total-price-title,
  .cart-modal__total-price-value {
    font-size: 30px;
  }

  .cart-modal__total-item-title {
    font-size: 22px;
  }

  .cart-modal__product-price,
  .cart-modal__product-sale {
    font-size: 22px;
  }

  .cart-modal__close-button {
    top: 20px;
  }

  .cart-modal__inner {
    padding: 40px 30px;
  }
}

@media(max-width: 1024px) {
  .cart-modal__products {
    padding: 20px;
  }

  .cart-modal__title {
    font-size: 32px;
  }

  .cart-modal__product-new-price {
    font-size: 24px;
    line-height: 30px;
  }

  .cart-modal__product {
    padding: 20px 0;
  }

  .cart-modal__close-button {
    left: -30px;
    width: 60px;
    height: 60px;
  }

  .cart-modal__product-image {
    max-width: 90px;
    height: 90px;
  }

  .cart-modal__inner {
    padding: 30px 20px;
  }

  .cart-modal__total-item-title {
    font-size: 20px;
  }

  .cart-modal__product-price,
  .cart-modal__product-sale {
    font-size: 20px;
  }

  .cart-modal__total-item {
    margin-bottom: 5px;
  }

  .cart-modal__total-price-title,
  .cart-modal__total-price-value {
    font-size: 28px;
  }
}

@media(max-width: 768px) {
  .cart-modal__title {
    font-size: 30px;
    margin-bottom: 20px;
  }

  .cart-modal__inner {
    max-width: 400px;
  }

  .cart-modal__form-submit {
    height: 50px;
    font-size: 16px;
  }

  .cart-modal__form-warning {
    margin-top: 10px;
  }

  .cart-modal__product-new-price {
    font-size: 22px;
    line-height: 28px;
  }

  .cart-modal__product-old-price {
    font-size: 18px;
    line-height: 28px;
  }

  .cart-modal__product-title {
    font-size: 14px;
  }

  .cart-modal__product-image {
    max-width: 70px;
    height: 70px;
  }

  .cart-modal__product {
    gap: 20px;
  }
}

@media(max-width: 475px) {
  .cart-modal__close-button {
    width: 50px;
    height: 50px;
    left: -25px;
  }

  .cart-modal__close-button svg {
    width: 20px;
    height: 20px;
  }

  .cart-modal__inner {
    padding: 25px 10px;
  }

  .cart-modal__products {
    padding: 15px;
  }

  .cart-modal__product {
    gap: 15px;
    padding: 15px 0;
  }

  .cart-modal__total-item-title {
    font-size: 18px;
  }

  .cart-modal__product-price,
  .cart-modal__product-sale {
    font-size: 18px;
  }

  .cart-modal__total-items {
    margin-bottom: 15px;
  }

  .cart-modal__total-price-title,
  .cart-modal__total-price-value {
    font-size: 26px;
  }

  .cart-modal__total {
    margin-bottom: 20px;
  }

  .cart-modal__title {
    font-size: 26px;
  }

  .cart-modal__inner {
    max-width: 320px;
  }

  .cart-modal__product-image {
    max-width: 60px;
    height: 60px;
  }

  .cart-modal__product-new-price {
    font-size: 20px;
    line-height: 26px;
  }

  .cart-modal__product-old-price {
    font-size: 16px;
    line-height: 26px;
  }

  .cart-modal__product-title {
    font-size: 12px;
    line-height: 18px;
  }

  .cart-modal__form-warning {
    font-size: 12px;
    line-height: 16px;
  }
}

/*  */


/* modal */
.modal {
  position: fixed;
  left: 0;
  top: 0;

  z-index: 999;

  width: 100%;
  height: 100%;

  opacity: 0;
  visibility: hidden;
  transition: opacity .4s ease;

}

.modal.visible {
  opacity: 1;
  visibility: visible;
  transition: opacity .4s ease;
}

.modal__overlay {
  width: 100%;
  height: 100%;

  background: rgba(18, 18, 18, 0.6);

  display: flex;
  align-items: center;
  justify-content: center;
}

.modal__inner {
  background: #fff;
  padding: 30px;

  position: relative;
}

.modal__close-button {
  position: absolute;
  right: 2px;
  top: 2px;
}

/*  */


/* product modal */
.product-modal__inner {
  max-width: 1280px;
  width: 100%;
  max-height: 700px;
  overflow: auto;
}

.product-modal__inner .product__wrapper {
  margin-bottom: 0;
}

.product-modal__inner .product__details h1 {
  font-size: 34px;
  margin-bottom: 20px;
}

.product-modal__inner .product__details-wrapper {
  padding: 10px;
}

.product-modal__inner .product__details-item-label {
  font-size: 16px;
  margin-bottom: 3px;
}

.product-modal__inner .product__price {
  font-size: 24px;
}

.product-modal__inner .product__details-item-value {
  font-size: 14px;
}

.product-modal__inner .product__counter-value {
  height: 50px;
  width: 60px;
  font-size: 22px;
}

.product-modal__inner .product__counter-button {
  width: 20px;
  height: 20px;
}

.product-modal__inner .product__counter-button svg {
  width: 100%;
  height: 100%;
}

.product-modal__inner .product__add-button-icon {
  display: none;
}

.product-modal__inner .product__add-button {
  max-width: 220px;
  height: 50px;
}

.product-modal__inner .product__details-trigger-icon {
  width: 40px;
  height: 40px;
}

.product-modal__inner .product__details-triggers {
  padding: 25px 20px;
  margin-top: 20px;
}

.product-modal__inner .product__details-trigger {
  gap: 13px;
}

.product-modal__inner .product__details-trigger h3 {
  line-height: 18px;
}

.product-modal__inner .product__top-slide-image {
  max-width: 360px;
}

.product-modal__inner .product__thumbs-slide-image {
  width: 70px;
  height: 70px;
}

.product-modal__inner .product__thumbs-slider {
  max-width: 320px;
}

.product-modal__inner .product__wrapper {
  gap: 20px;
}

@media(max-width: 1440px) {
  .product-modal__inner {
    max-width: 1140px;
  }
}

@media(max-width: 1200px) {
  .product-modal__inner {
    max-width: 980px;
  }

  .product-modal__inner .product__wrapper {
    flex-direction: unset;
    align-items: flex-start;
  }

  .product-modal__inner .product__details {
    max-width: 500px;
  }

  .product-modal__inner .product__details h1 {
    font-size: 28px;
    margin-bottom: 10px;
  }

  .product-modal__inner .product__desc p {
    margin: 12px 0;
  }

  .product-modal__inner .product__details-trigger-icon {
    width: 35px;
    height: 35px;
  }

  .product-modal__inner .product__details-trigger h3 {
    font-size: 14px;
  }

  .product-modal__inner .product__thumbs-slide-inner {
    padding: 14px;
  }

  .product-modal__inner .product__details-triggers {
    padding: 15px;
  }

  .product-modal__inner .product__cost-block {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }

  .product-modal__inner .product__counter {
    margin: 0;
  }

  .product-modal__inner .product__add-button {
    grid-column: span 2;
    max-width: 100%;
  }

  .product-modal__inner .product__counter-value {
    width: 100%;
  }

  .product-modal__inner .product__details-items {
    gap: 50px;
  }
}

@media(max-width: 1024px) {
  .product-modal__inner .product__details {
    max-width: 440px;
  }
}

/*  */



/* правки */
@media(max-width: 1024px) {
  .catalog-section__title {
    font-size: 34px;
  }
}

@media(max-width: 768px) {
  .catalog-section__title {
    font-size: 30px;
  }
}

@media(max-width: 475px) {
  .catalog-section__title {
    font-size: 26px;
  }
}

@media(max-width: 425px) {
  .catalog-section__title {
    font-size: 24px;
  }
}

/*  */


/* sliders */
.swiper-pagination.swiper-pagination-bullets.swiper-pagination-horizontal {
  top: auto;
  bottom: -20px;
}

.swiper-pagination-bullet {
  width: 25px;
  height: 5px;
  border-radius: 0;

  background: #D9D9D9;
  opacity: 1;
}

.swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: #2E82CF;
}

/*  */


/* advantages */
.advantages {
  margin: 25px 0 65px;
}

.advantages__wrapper {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 30px;

  height: 980px;
}

.advantages__block {
  position: relative;
  height: 100%;
  width: 100%;

  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.advantages__block:nth-child(1) {
  padding-bottom: 67px;
}

.advantages__block:nth-child(1) .advantages__block-image {
  width: 100%;
  max-height: 585px;
}

.advantages__block:nth-child(2) .advantages__block-image {
  width: 100%;
  max-height: 700px;
  margin-top: auto;
}

.advantages__block-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.advantages__block-label {
  padding: 10px 30px;

  color: #FFF;
  font-family: Geologica;
  font-size: 30px;
  font-style: normal;
  font-weight: 700;
  line-height: 36px;
  /* 120% */

  background: #4EB0E4;

  display: inline-block;
  margin-bottom: 20px;
}

.advantages__block-text {
  padding: 20px 30px;
  background: #fff;
  box-shadow: 0px 4px 25px 0px rgba(0, 0, 0, 0.25);
}

.advantage__block-wrapper {
  position: absolute;
  padding: 0 30px;
}

.advantages__block:nth-child(1) .advantage__block-wrapper {
  bottom: 30%;
}

.advantages__block:nth-child(2) .advantage__block-wrapper {
  top: 12%;
}

.advantages__block-text p {
  color: #4F4F4F;
  font-family: Geologica;
  font-size: 18px;
  font-style: normal;
  font-weight: 300;
  line-height: 30px;
  /* 166.667% */
}

.advantages__block-items {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 30px;
  margin-top: auto;
}

.advantages__block-item {
  display: flex;
  align-items: center;
  gap: 30px;
}

.advantages__block-item-image {
  display: flex;
  align-items: center;
  justify-content: center;
}

.advantages__block-item-content h4 {
  color: #020202;
  font-family: Geologica;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 21px;
  /* 131.25% */
}

.advantages__block-item-content p {
  color: #020202;
  font-family: Geologica;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 21px;
}

.advantages__video-button {
  display: flex;
  align-items: center;
  gap: 15px;

  max-width: 200px;
  width: 100%;

  padding-left: 30px;
}

.advantages__video-button-icon {
  display: flex;
  align-items: center;
  justify-content: center;
}

.advantages__video-button-text {
  color: #020202;
  font-family: Geologica;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 21px;
  /* 131.25% */
  text-align: left;
}

.advantages__block:nth-child(2) .advantages__block-items {
  display: none;
}

@media(max-width: 1440px) {
  .advantages__wrapper {
    grid-gap: 20px;
  }

  .advantages__block-items {
    grid-template-columns: repeat(1, 1fr);
    grid-gap: 20px;
  }

  .advantages__block:nth-child(1) {
    padding: 0;
  }

  .advantages__block-item-image {
    width: 100px;
    height: 100px;
  }

  .advantages__block-item-image svg {
    width: 100%;
    height: 100%;
  }

  .advantages__block-item {
    gap: 20px;
  }

  .advantages__block-label {
    font-size: 26px;
  }
}

@media(max-width: 1200px) {
  .advantages__wrapper {
    grid-template-columns: repeat(1, 1fr);
    height: auto;
    grid-gap: 30px;
  }

  .advantage__block-wrapper {
    position: static;
    padding: 0;
  }

  .advantages__block-label {
    position: absolute;
    bottom: auto;
    top: 330px;
    margin-bottom: 0;

    font-size: 22px;
  }

  .advantages__video-button {
    order: 0;
    padding: 0;
    margin-bottom: 30px;
    max-width: 100%;
  }

  .advantages__block:nth-child(2) .advantages__block-image {
    order: 1;
  }

  .advantages__block:nth-child(2) .advantage__block-wrapper {
    order: 2;
  }

  .advantages__block:nth-child(2) .advantages__block-label {
    bottom: auto;
    top: 425px;
  }

  .advantages__block:nth-child(2) .advantages__block-items {
    display: grid;
    order: 3;
    margin-top: 40px;
  }

  .advantages__block:nth-child(1) .advantages__block-items {
    display: none;
  }

  .advantages__block:nth-child(1) .advantages__block-image,
  .advantages__block:nth-child(2) .advantages__block-image {
    height: 400px;
  }
}

@media(max-width: 1024px) {

  .advantages__block:nth-child(1) .advantages__block-image,
  .advantages__block:nth-child(2) .advantages__block-image {
    height: 320px;
  }

  .advantages__block-label {
    top: 260px;
  }

  .advantages__block:nth-child(2) .advantages__block-label {
    top: 355px;
  }

  .advantages__block-label {
    padding: 10px 20px;
    font-size: 20px;
    line-height: 30px;
  }

  .advantages__block-text {
    padding: 20px;
  }
}

@media(max-width: 768px) {
  .advantages__block-text p {
    font-size: 16px;
  }

  .advantages__block-items {
    grid-column: 10px;
  }
}

@media(max-width: 475px) {

  .advantages__block:nth-child(1) .advantages__block-image,
  .advantages__block:nth-child(2) .advantages__block-image {
    height: 250px;
  }

  .advantages__block-label {
    top: 190px;
    font-size: 18px;
    line-height: 28px;
  }

  .advantages__block:nth-child(2) .advantages__block-label {
    top: 288px;
  }

  .advantages__block-text p {
    font-size: 14px;
  }

  .advantages__block-item-content h4 {
    font-size: 14px;
  }

  .advantages__block-item-content p {
    font-size: 14px;
  }

  .advantages__block-item-image {
    width: 80px;
    height: 80px;
  }
}

/*  */



/* breadcrumbs */
.breadcrumbs {
  margin-top: 10px;
}

.breadcrumbs__list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px 0;
}

.breadcrumbs__list-item {
  position: relative;
  margin: 0 20px 0 0;
  padding: 0 20px 0 0;
}

.breadcrumbs__list-item::before {
  display: none;
}

.breadcrumbs__list-item::after {
  content: '';
  position: absolute;

  top: 13px;
  right: -2px;

  width: 4px;
  height: 2px;

  background: #B0B0B0;

}

.breadcrumbs__list-item:last-child {
  margin: 0;
  padding: 0;
}

.breadcrumbs__list-item:last-child::after {
  display: none;
}

.breadcrumbs__list-item:last-child .breadcrumbs__list-link {
  color: #323232;
}

.breadcrumbs__list-link {
  color: #B0B0B0;
  font-family: Geologica;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
  /* 142.857% */
}

/*  */



/* contacts */
.contacts {
  height: 100vh;
}

.contacts .container {
  height: 100%;
}

.contacts__inner {
  height: 100%;
}

.contacts__wrapper {
  display: grid;
  grid-template-columns: 3fr 6fr;
  grid-gap: 50px;

  height: 100%;
}

.contacts__map {
  width: 100%;
  height: 100%;
}

.contacts__aside-wrapper {
  margin-top: 110px;
}

.contacts__title {
  color: #323232;
  text-align: center;
  font-family: Geologica;
  font-size: 64px;
  font-style: normal;
  font-weight: 400;
  line-height: 40px;
  /* 62.5% */

  margin-bottom: 70px;
}

.contacts__trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;

  gap: 30px;

  padding: 30px 0 30px 20px;
  border-bottom: 1px dashed rgba(18, 18, 18, 0.3);

  cursor: pointer;
}


.contacts__trigger:hover .contacts__trigger-title {
  color: #4EB0E4;
  transition: all .4s ease;
}

.contacts__trigger:hover .contacts__trigger-phone-num {
  color: #4EB0E4;
  transition: all .4s ease;
}

.contacts__trigger:hover .contacts__trigger-phone-icon svg path {
  stroke: #4EB0E4;
  transition: all .4s ease;
}

.contacts__trigger:hover .contacts__trigger-icon svg path {
  stroke: #4EB0E4;
  transition: all .4s ease;
}

.contacts__trigger:nth-child(1) {
  border-top: 1px dashed rgba(18, 18, 18, 0.3);
}

.contacts__trigger-title {
  color: #323232;
  font-family: Geologica;
  font-size: 32px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;

  margin-bottom: 20px;
  transition: all .4s ease;
}

.contacts__trigger-phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.contacts__trigger-phone-icon {
  display: flex;
  align-items: center;
  justify-content: center;
}


.contacts__trigger-phone-icon svg path {
  transition: all .4s ease;
}

.contacts__trigger-phone-num {
  color: #323232;
  font-family: Geologica;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
  /* 111.111% */
  transition: all .4s ease;
}

.contacts__trigger-icon {
  display: flex;
  align-items: center;
  justify-content: center;
}

.contacts__trigger-icon svg path {
  transition: all .4s ease;
}

@media(max-width: 1440px) {
  .contacts__title {
    font-size: 54px;
    margin-bottom: 50px;
  }

  .contacts__trigger-title {
    font-size: 28px;
    margin-bottom: 15px;
  }

  .contacts__aside-wrapper {
    margin-top: 80px;
  }

  .contacts__wrapper {
    grid-template-columns: 3fr 4fr;
  }
}

@media(max-width: 1200px) {
  .contacts {
    height: auto;
    position: relative;
    padding-bottom: 600px;
  }

  .contacts__wrapper {
    grid-template-columns: repeat(1, 1fr);
  }

  .contacts__map {
    height: 600px;

    position: absolute;
    bottom: 0;
    left: 0;

    width: 100%;
  }

  .contacts__title {
    font-size: 50px;
    margin-bottom: 40px;
  }

  .contacts__trigger-title {
    font-size: 26px;
    margin-bottom: 12px;
  }
}

@media(max-width: 1024px) {
  .contacts__title {
    font-size: 48px;
  }

  .contacts__trigger {
    padding-left: 10px;
  }

  .contacts__aside-wrapper {
    margin-top: 60px;
  }
}

@media(max-width: 768px) {
  .contacts__title {
    font-size: 44px;
    margin-bottom: 30px;
  }

  .contacts__trigger-title {
    font-size: 24px;
    margin-bottom: 10px;
  }
}

@media(max-width: 475px) {
  .contacts__title {
    font-size: 40px;
    text-align: left;
  }

  .contacts__trigger {
    padding-top: 20px;
    padding-bottom: 20px;
  }
}

/*  */


/* order */

.order {
  /* background-image: url('../images/order/decor.png');
  background-position: right center;
  background-repeat: no-repeat;
  background-size: contain; */

  padding-top: 110px;
}


.order__wrapper {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
}

.order__content {
  padding-bottom: 50px;
}

.order__content-wrapper {
  max-width: 890px;
  width: 100%;
}

.order__title {
  color: #121212;
  text-align: center;
  font-family: Geologica;
  font-size: 64px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.2;
  /* 62.5% */
}

.order__title {
  margin-bottom: 60px;
}

.order__tabs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 30px;

  margin-bottom: 80px;
}

.order__tab {
  display: flex;
  align-items: center;
  justify-content: center;

  gap: 10px;

  width: 100%;
  height: 70px;

  border-radius: 10px;
  border: 2px solid #121212;
  background: transparent;
}

.order__tab.active {
  background: #4EB0E4;
  border-color: transparent;
}

.order__tab.active .order__tab-text {
  color: #fff;
}

.order__tab.active .order__tab-icon svg path {
  stroke: #fff;
}

.order__tab-icon {
  display: flex;
  align-items: center;
  justify-content: center;
}

.order__tab-text {
  color: #323232;
  text-align: center;
  font-family: Geologica;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 32px;
  /* 160% */
}

.order__form-title {
  color: #323232;
  font-family: Geologica;
  font-size: 32px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;

  position: relative;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;

  margin-bottom: 30px;

  padding: 0 40px;
  background: #fff;

  display: inline-block;
}

.order__form-title-decor {
  content: '';
  position: absolute;

  z-index: 1;

  width: 100%;
  height: 1px;

  top: 20px;
  left: 0;

  border: 1px dashed rgba(18, 18, 18, 0.3);
}

.order__form-block {
  position: relative;
}

.order__inputs {
  display: grid;
  grid-gap: 20px 30px;
}

.order__form-block:nth-child(1) .order__inputs {
  grid-template-columns: repeat(2, 1fr);
}

.order__form-block:nth-child(2) .order__inputs {
  grid-template-columns: repeat(4, 1fr);
}

.order__form-block:nth-child(2) .order__inputs .order__input:nth-child(1) {
  grid-column: span 4;
}

.order__form-block {
  margin-bottom: 80px;
}

.order__form-block:last-child {
  margin-bottom: 0;
}

.order__input-wrapper {
  width: 100%;
}

.order__input-wrapper input {
  display: block;

  width: 100%;
  height: 60px;

  border-radius: 10px;
  background: #F4F4F4;
  outline: none;
  border: none;
  padding: 0 20px;
  margin: 0;

  color: #121212;
  font-family: Geologica;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 30px;
  /* 166.667% */
}

.order__input-label {
  margin-bottom: 10px;

  color: #121212;
  font-family: Geologica;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 30px;
  /* 166.667% */
}

.order__input-label span {
  color: #DC3A57;
}

.order__form-addresses .order__select{
    margin-bottom: 20px;
}

.order__select {
  max-width: 435px;
  width: 100%;
  height: 60px;

  padding: 0 30px;
  margin: 0 auto;

  display: flex;
  align-items: center;
  justify-content: flex-start;

  float: none;
  border-radius: 10px;
  background: #F4F4F4;
  border: none;

  color: #323232;
  font-family: Geologica;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 30px;
  /* 166.667% */
}

.order__select::after {
  right: 30px;
  content: url('../images/select-icon.svg');

  top: 45%;

  border: none;
  margin: 0;

  height: 5px;
  width: 5px;

  transform: rotate(0) translateY(-50%);

  display: flex;
  align-items: center;
  justify-content: center;
}

.order__select.open:after {
  transform: rotate(180deg) translateY(-50%);
}

.order__select .list {
  width: 100%;
}

.order__select .list li {
  padding: 5px 20px;
}

.order__select .list li::before {
  display: none;
}

.order__radios {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 30px;
}

.order__radio input[type=radio] {
  display: none;
}

.order__radio input[type=radio]:checked+label {
  border-color: #4EB0E4;
}

.order__radio input[type=radio]:checked+label .order__radio-icon {
  background: #4EB0E4;
  border-color: transparent;
}

.order__radio input[type=radio]:checked+label .order__radio-icon::after {
  display: block;
}

.order__radio-label {
  cursor: pointer;
  height: 200px;

  display: flex;
  flex-direction: column;
  align-items: flex-start;

  border-radius: 10px;
  border: 2px solid #323232;

  padding: 30px 20px 0 30px;
}

.order__radio-icon {
  display: block;

  width: 34px;
  height: 34px;

  border: 2px solid #323232;
  border-radius: 50%;

  margin-bottom: 15px;

  position: relative;
}

.order__radio-icon::after {
  content: url('../images/tick.svg');
  position: absolute;

  top: 50%;
  left: 50%;

  transform: translate(-50%, -50%);

  display: none;
}

.order__radio-title {
  color: #323232;
  font-family: Geologica;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 22px;

  margin-bottom: 8px;
}

.order__radio-text {
  color: rgba(50, 50, 50, 0.6);
  font-family: Geologica;
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
  /* 133.333% */
}


.order__aside {
  max-width: 490px;
  width: 100%;
}

.order__title {
  margin-bottom: 60px;
}

.order__aside .cart-modal__products {
  max-height: 550px;
  background: transparent;
}

.-js-delivery-type {
  display: none;
}

.-js-delivery-type.visible {
  display: block;
}

.order__inputs.-js-delivery-type.visible {
  display: grid;
}

.order__inputs.-js-delivery-type .order__checkbox{
    grid-column: span 4;
}

.order__checkbox input[type=checkbox]{
    display: none;
}

.order__checkbox input[type=checkbox]:checked + label .order__checkbox-icon{
    background: #4EB0E4;
    border-color: transparent;
}

.order__checkbox input[type=checkbox]:checked + label .order__checkbox-icon::after{
    display: block;
}

.order__checkbox label{
    display: inline-flex;
    align-items: center;
    gap: 5px;
    cursor: pointer;
}

.order__checkbox-text{
    font-size: 16px;
    line-height: 1;
}

.order__checkbox-icon{
    display: block;
    
    width: 18px;
    height: 18px;

    border-radius: 6px;
    border: 1px solid #121212;
    
    position: relative;
    
}

.order__checkbox-icon::after{
    content: url('../images/tick.svg');
    position: absolute;
    
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    
    display: none;
}

#address-map {
  width: 100%;
  height: 600px;
}

/* balloon */

#address-map .balloon__address {
  color: #323232;
  font-family: Geologica;
  font-size: 32px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;

  margin-bottom: 20px;
}

#address-map .balloon__contact {
  display: flex;
  align-items: center;
  gap: 8px;

  margin-bottom: 15px;
}

#address-map .balloon__contact:last-child {
  margin-bottom: 0;
}

#address-map .balloon__contact-icon {
  display: flex;
  align-items: center;
  justify-content: center;
}

#address-map .balloon__contact-text {
  color: #323232;
  font-family: Geologica;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
  /* 111.111% */
}

#address-map .balloon__checkbox {
  margin-top: 30px;
}

#address-map .balloon__checkbox input[type=checkbox] {
  display: none;
}

#address-map .balloon__checkbox label {
  display: flex;
  align-items: center;
  justify-content: center;

  width: 250px;
  height: 60px;

  color: #FFF;
  text-align: center;
  font-family: Geologica;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 30px;
  /* 166.667% */

  border-radius: 10px;
  background: #4EB0E4;

  cursor: pointer;

  margin-top: auto;
}

#address-map .ymaps-2-1-79-balloon__close {
  display: none;
}

#address-map .ymaps-2-1-79-balloon__close+.ymaps-2-1-79-balloon__content {
  margin: 0;
  padding-right: 40px;
}

#address-map .ymaps-2-1-79-balloon__content {
  padding: 40px;
}

#address-map .ymaps-2-1-79-balloon__tail:after {
  display: none;
}

#address-map .balloon__form-inner {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

@media(max-width: 1920px) {
  body.dark-bg {
    background-position: 165% center;
  }
}

@media(max-width: 1600px) {
  body.dark-bg {
    background-position: 210% center;
    background-size: 70%;
  }
}

@media(max-width: 1440px) {
  body.dark-bg {
    background-position: 200% center;
  }

  .order {
    padding-top: 80px;
  }

  .order__title {
    font-size: 54px;
    margin-bottom: 50px;
  }

  .order__content-wrapper {
    max-width: 740px;
  }

  .order__radios {
    grid-gap: 15px;
  }

  .order__inputs {
    grid-gap: 20px 15px;
  }

  .order__tabs {
    grid-gap: 15px;
  }

  .order__radio-label {
    padding: 20px 20px 0 20px;
  }

  #address-map .balloon__address {
    font-size: 26px;
  }

  #address-map .ymaps-2-1-79-balloon__close+.ymaps-2-1-79-balloon__content {
    padding: 30px;
  }

  #address-map .balloon__checkbox label {
    height: 50px;
    font-size: 16px;
  }
}

@media(max-width: 1290px) {
  .order__content-wrapper {
    max-width: 700px;
  }

  body.dark-bg {
    background-position: 300% center;
    -webkit-background-size: 80%;
    background-size: 81%;
  }
}

@media(max-width: 1200px) {

  body.dark-bg {
    background-image: none;
  }

  .order__wrapper {
    flex-direction: column;
    align-items: flex-start;
    gap: 80px;
  }

  .order__aside {
    order: -1;
    max-width: 100%;
  }

  .order__content-wrapper {
    max-width: 100%;
  }

  .order__content {
    width: 100%;
  }

  .order__title {
    font-size: 48px;
    margin-bottom: 40px;
  }

  .order__tabs {
    margin-bottom: 60px;
  }

  .order__form-block {
    margin-bottom: 60px;
  }

  .order__radio-label {
    height: 180px;
  }

  .order__form-title {
    font-size: 30px;
  }

  .order__aside .cart-modal__product-aside {
    margin-left: auto;
  }

  .order__aside .cart-modal__products {
    padding: 0;
    width: 100%;
  }

  .cart-modal__product {
    padding: 30px 15px;
  }

}

@media(max-width: 1024px) {
  .order__title {
    font-size: 46px;
    margin-bottom: 30px;
  }

  .order__tab {
    height: 60px;
    font-size: 18px;
  }

  .order__form-title {
    font-size: 28px;
  }

  .order__form-title-decor {
    top: 17px;
  }

  .order__radio-label {
    padding: 15px 15px 0 15px;
  }

  .order__form-block {
    margin-bottom: 50px;
  }

  .order__tabs {
    margin-bottom: 50px;
  }

  .order {
    padding-top: 60px;
  }


  #address-map .ymaps-2-1-79-balloon__close+.ymaps-2-1-79-balloon__content {
    padding: 20px;
  }

  #address-map .balloon__address {
    font-size: 24px;
  }

  #address-map .balloon__checkbox label {
    height: 40px;
  }
}

@media(max-width: 768px) {

  .order__title {
    font-size: 42px;
  }

  .order__form-title {
    font-size: 24px;
    margin-bottom: 20px;
  }

  .order__select {
    font-size: 16px;
  }

  .order__radio-title {
    font-size: 16px;
    line-height: 20px;
  }

  .order__radio-text {
    font-size: 14px;
    line-height: 16px;
  }

  .order__radio-icon {
    width: 30px;
    height: 30px;
  }

  .order__tab-icon {
    display: none;
  }

  .order__tabs {
    grid-gap: 10px;
  }

  .order__tab {
    font-size: 16px;
  }

  .order__radios {
    grid-gap: 10px;
  }

  .order__inputs {
    grid-gap: 20px 10px;
  }

  .order__form-block {
    margin-bottom: 40px;
  }

  #address-map .ymaps-2-1-79-balloon__close+.ymaps-2-1-79-balloon__content {
    padding: 15px;
  }

  #address-map .balloon__contact-text {
    font-size: 16px;
  }
}

@media(max-width: 630px) {
  .order__radios {
    grid-template-columns: repeat(2, 1fr);
  }

.order__inputs.-js-delivery-type .order__checkbox{
    grid-column: span 2;
}

  .order__tabs {
    grid-template-columns: repeat(1, 1fr);
    grid-gap: 15px;
  }

  .order__form-block:nth-child(2) .order__inputs {
    grid-template-columns: repeat(2, 1fr);
  }

  .order__form-block:nth-child(2) .order__inputs .order__input:nth-child(1) {
    grid-column: span 2;
  }
}

@media(max-width: 475px) {
  .order__title {
    font-size: 40px;
    text-align: left;
  }

  .order__form-block:nth-child(1) .order__inputs {
    grid-template-columns: repeat(1, 1fr);
  }

  .order__form-block:nth-child(2) .order__inputs {
    grid-template-columns: repeat(1, 1fr);
  }
  
  .order__inputs.-js-delivery-type .order__checkbox{
    grid-column: span 1;
}

  .order__form-block:nth-child(2) .order__inputs .order__input:nth-child(1) {
    grid-column: span 1;
  }

  .order__form-title {
    font-size: 22px;
  }
}

/*  */
/*  */

/* cataloge */
.cataloge {
  margin: 50px 0 90px;
}

.cataloge__title {
  color: #121212;
  text-align: center;
  font-family: Geologica;
  font-size: 64px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.1;
  /* 62.5% */
  margin-bottom: 50px;
}

.cataloge__filters {
  margin-bottom: 30px;
}

.cataloge__filters-form-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.cataloge__filters-wrapper {
  display: flex;
  align-items: center;
  gap: 20px;
}

.cataloge__filters-selects{
  display: flex;
  align-items: center;
  gap: 20px;
}

.cataloge__filters-label {
  color: #121212;
  font-family: Geologica;
  font-size: 14px;
  font-style: normal;
  font-weight: 300;
  line-height: 1;
  /* 128.571% */
}

.cataloge__filters-buttons {
  display: flex;
  align-items: center;
  gap: 30px;
  max-width: 367px;
  width: 100%;
}

.cataloge__filters-button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;

  outline: none;
  cursor: pointer;
  padding: 0;
  margin: 0;

}

.cataloge__filters-button-icon {
  display: flex;
  align-items: center;
  justify-content: center;
}


.cataloge__filters-button:nth-child(1) .cataloge__filters-button-text {
  color: #121212;
  font-family: Geologica;
  font-size: 14px;
  font-style: normal;
  font-weight: 300;
  line-height: 18px;
  /* 128.571% */
  text-decoration-line: underline;
}

.cataloge__filters-button:nth-child(2) .cataloge__filters-button-text {
  color: #FFF;
  font-family: Geologica;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 104.5%;
  /* 14.63px */
}

.cataloge__filters-button:nth-child(2) {
  max-width: 250px;
  width: 100%;
  height: 42px;
  border-radius: 5px;
  background: #4EB0E4;
}

.cataloge__items {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  /* margin-bottom: 50px; */
  margin: -14px;
}

.cataloge__load-more {
  display: flex;
  align-items: center;
  justify-content: center;

  width: 100%;
  height: 60px;

  outline: none;
  cursor: pointer;
  padding: 0;
  margin: 0;

  color: #020202;
  text-align: center;
  text-overflow: ellipsis;
  font-family: Geologica;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 22px;
  /* 131.25% */

  background: #F7F7F7;

  margin-top: 24px;
}

.cataloge__inner .banners-swiper {
  margin: 40px 0;
}

.cataloge__filters-select {
  color: #121212;
  font-family: Geologica;
  font-size: 14px;
  font-style: normal;
  font-weight: 300;

  border: none;
  border-radius: 0;
  padding: 0 25px 0 0;

  min-width: 80px;
  height: auto;
  line-height: 1;
}

.cataloge__filters-select:nth-child(4){
  min-width: 120px;
}

.cataloge__filters-select ul {
  width: 100%;
}

.cataloge__filters-select::after {
  border-color: #4EB0E4;
}


.cataloge__filters-select.nice-select:active,
.cataloge__filters-select.nice-select.open,
.cataloge__filters-select.nice-select:focus {
  border-color: transparent;
}


.cataloge__filters-select li:first-child {
  display: none !important;
}

.cataloge__filters-select li::before {
  display: none;
}

.cataloge__filters-select li.option {
  color: #121212;
  font-family: Geologica;
  font-size: 14px;
  font-style: normal;
  font-weight: 300;
  padding: 0 10px;
  line-height: 1;
  height: auto;

  display: flex;
  align-items: center;
}

@media(max-width: 1440px) {
  .cataloge__title{
    font-size: 54px;
    margin-bottom: 40px;
  }

  .cataloge__items,
  .catalog-list{
    grid-template-columns: repeat(4, 1fr);
  }
}

@media(max-width: 1200px) {
  .cataloge__title{
    font-size: 50px;
    margin-bottom: 40px;
  }

  .cataloge__filters-buttons{
    max-width: 285px;
    gap: 20px;
  }

  .cataloge__filters-button:nth-child(2){
    max-width: 180px;
  }

  .catalog-item{
    padding: 8px;
  }

  .cataloge__items{
    margin: -8px;
  }
}

@media(max-width: 1024px) {
  .catalog-item{
    padding: 0;
  }

  .catalog-item:hover{
    background: transparent;
    box-shadow: none;
  }

  .cataloge__items,
  .catalog-list{
    margin: 0;
    grid-gap: 20px 15px;
    grid-template-columns: repeat(3, 1fr);
  }

  .cataloge__load-more{
    margin-top: 25px;
  }



  .cataloge__filters-button:nth-child(2){
    max-width: 200px;
    font-size: 16px;
  }

  .cataloge__title{
    font-size: 46px;
  }
}

@media(max-width: 992px) {
  .cataloge__filters-form-inner{
    flex-direction: column;
    align-items: flex-start;
  }

  .cataloge__filters-buttons{
    order: -1;
    max-width: 100%;
  }
}

@media(max-width: 768px) {
  .cataloge__items,
  .catalog-list{
    grid-template-columns: repeat(2, 1fr);
  }

  .cataloge__title{
    font-size: 44px;
  }

  .cataloge__filters-wrapper{
    flex-direction: column;
    align-items: flex-start;
  }
}

@media(max-width: 475px) {
  .cataloge__title{
    font-size: 40px;
  }
}

@media(max-width: 425px) {
  .cataloge__items,
  .catalog-list{
    grid-template-columns: repeat(1, 1fr);
  }
}
/*  */


.product__thumbs-slide-inner,
.order__tab {
    cursor: pointer;
}

.cart-modal__form-submit,
.product__add-button {
    transition: .3s ease;
}

.cart-modal__form-submit:hover,
.product__add-button:hover {
    opacity: 0.7;
}

@media (max-width: 768px) {
    .product-modal__inner .product__wrapper {
        flex-direction: column;
    }
    
    .product-modal__inner .product__details {
        max-width: 100%;
    }
}

.cart-modal__form-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.header__cataloge {
    gap: 69px;
    padding-left: 0;
}

.header__select {
    padding-top: 7px;
}

.header__select .nice-select {
    padding-left: 36px;
    font-family: "Geologica", sans-serif;
    font-size: 14px;
    font-weight: 300;
    color: #4F4F4F;
    border: none;
    background-color: transparent;
}

.header__select .nice-select .option {
    padding-left: 36px;
}

.header__select .nice-select ul li::before {
    content: none;
}

 .header__form:first-child {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    background-color: #ffffff;
    transition: .3s ease;
}

.header__form:first-child.is-active {
    opacity: 1;
    visibility: visible; 
}

.header__close-button {
    display: none;
    padding-left: 20px;
    font-size: 23px;
    border-left: 1px solid #000000;
}

.header__form:first-child.is-active .header__close-button {
    display:block;
}

.nav-close {
    display: none;
    align-self: end;
    margin-bottom: 20px;
    font-size: 23px;
}

@media (max-width: 1290px) {
    .header__form-inner {
        padding-left: 25px;
    }
    
    .header__nav {
        position: fixed;
        top: 0;
        right: -100%;
        z-index: 11;
        display: flex;
        flex-direction: column;
        height: 100vh;
        visibility: hidden;
        opacity: 0;
        padding: 10px;
        font-size: 18px;
        background-color: #ffffff;
        box-shadow: 0 2px 10px 2px rgba(0, 0, 0, 0.2);
        transition: .3s ease;
    }
    
    .header__menu {
        background-color: #ffffff;
    }
    
    .header__nav.is-active {
        right: 0;
        opacity: 1;
        visibility: visible;
    }
    
    .nav-close {
        display: block;
    }
    
    .header__menu {
        display: flex;
        flex-direction: column;
    }
}

@media (max-width: 570px) {
   .header__content {
    position: relative;
}


.header__form-inner {
    height: 100%;
    padding: 0 15px;
}

.header__nav {
    width: 100%;
}
}

.msfavorites svg.fill {
    display: none;
}

.msfavorites.voted svg.fill {
    display: block;
}

.msfavorites.voted svg.stroke {
    display: none;
}

/* Модальное окно успешного оформления заказа*/

.success {
    position: relative;
    max-width: 333px;
    max-height: 214px;
    box-sizing: border-box;
    padding: 23px 78px 25px;
    font-family: "Geologica", sans-serif;
    background-color: #4EB0E4;
}

.success__wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/*.success svg {
    margin-bottom: 15px;
}*/

.success__heading {
    font-size: 30px;
    font-weight: 800;
    line-height: 1.075;
    color: #ffffff;
    text-transform: uppercase;
}

.success__text {
    font-size: 21px;
    font-weight: 400;
    color: #ffffff;
    line-height: 1.075;
}

.success.fancybox__content>.f-button.is-close-btn {
    top: 9px;
    right: 9px;
}

.not-found {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "Geologica", sans-serif;
}

.not-found__title {
    margin-bottom: 29px;
    font-size: 40px;
    line-height: 1.25;
    font-weight: 400;
    color: #323232;  
}

.not-found__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    min-width: 430px;
    min-height: 70px;
    font-size: 20px;
    line-height: 1.6;
    color: #ffffff;
    background-color: #4eb0e4;
}

.not-found__img {
}

.not-found__img img {
    height: auto;
}

@media (max-width: 1200px) {
    .not-found__title {
        font-size: 28px;
    }
    
    .not-found__btn {
        min-width: 299px;
    }
}

@media (max-width: 768px) {
    .not-found {
        align-items: flex-start;
        flex-direction: column;
        gap: 15px;
        padding-top: 30px;
    }
}

#address-map .balloon__address {
    font-size: 22px;
    font-weight: 700;
}

#address-map .ymaps-2-1-79-balloon__content {
    padding: 25px;
}

#address-map .balloon__checkbox label {
    width: 200px;
    height: 50px;
}

.cataloge__filters {
    display: none;
}

.header__top-item {
    display: none;
}

.header__sections {
    margin-left: auto;
}

.catalog-item__price, 
.product__price,
.cart-modal__product-new-price,
.cart-modal__total,
.ms-footer,
.ms-price {
    display: none;
}

.msCart h4 {
    display: none;
}

.header__logo {
    margin-right: 30px;
}