@charset "UTF-8";

body {
  font-size: 16px;
}

.lock body {
  touch-action: none;
}

h1 {
  font-size: 2rem;
}

h2 {
  font-size: 1.5rem;
}

h3 {
  font-size: 1.1875rem;
}

h4 {
  font-size: 1rem;
}

h5 {
  font-size: 0.875rem;
}

h6 {
  font-size: 0.75rem;
}

.wrapper {
  min-height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
}

.wrapper > main {
  flex: 1 1 auto;
}

.wrapper > * {
  min-width: 0;
}

/*
(i) Стили будут применяться ко 
всем классам содержащим *__container
Например header__container, main__container и т.д.
Снипет (HTML): cnt
*/

[class*=__container] {
  max-width: 1360px;
  box-sizing: content-box;
  margin: 0 auto;
  padding: 0 15px;
}

/*
    Подключение базовых стилей
*/

* {
  padding: 0px;
  margin: 0px;
  border: 0px;
  font-family: "Montserrat", sans-serif;
}

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

html,
body {
  height: 100%;
  min-width: 320px;
  font-size: 10px;
}

body {
  color: #3a434b;
  line-height: 1;
  font-family: "Montserrat", sans-serif;
  -ms-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background-color: #ffffff;
}

input,
button,
textarea {
  font-size: inherit;
}

button {
  cursor: pointer;
  color: inherit;
  background-color: inherit;
}

a {
  color: inherit;
}

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

a:hover {
  text-decoration: none;
}

ul li {
  list-style: none;
}

img {
  vertical-align: top;
}

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

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  /* display: none; <- Crashes Chrome on hover */
  -webkit-appearance: none;
  margin: 0;
  /* <-- Apparently some margin are still there even though it's hidden */
}

p,
span,
div {
  font-size: 16px;
}

html.lock body {
  overflow: hidden;
  position: relative;
}

html.lock body::before {
  content: "";
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  background-color: rgba(58, 67, 75, 0.2);
  backdrop-filter: blur(4px);
  z-index: 100;
}

/*
    Подключение стилей отдельных страниц
*/

.stock-page__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 15px 90px;
}

.stock-page__title {
  text-align: center;
  margin-bottom: 50px;
}

.stock-page__list {
  display: grid;
  gap: 40px;
}

.stock-page__validity {
  font-size: 14px;
  opacity: 0.75;
  margin-bottom: 16px;
}

.stock-page__detail {
  max-width: 920px;
  margin: 0 auto 30px;
}

.stock-page__detail-image {
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 30px;
}

.stock-page__detail-image img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.stock-page__detail-text {
  font-size: 16px;
  line-height: 160%;
}

.stock-page__back {
  display: inline-block;
  color: #41a2d0;
  font-weight: 500;
  text-decoration: underline;
}

.stock {
  padding: 0;
}

.stock__title {
  margin-bottom: 40px;
}

.stock__inner {
  display: grid;
  gap: 40px;
}

.stock__row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  box-shadow: 0px 0px 4px rgba(58, 67, 75, 0.1);
  border: 1px solid rgba(58, 67, 75, 0.05);
  border-radius: 8px;
  overflow: hidden;
}

.stock__row:nth-child(odd) .stock__col:nth-child(1) {
  order: 0;
}

.stock__row:nth-child(odd) .stock__col:nth-child(2) {
  order: 1;
  background-color: white;
  padding: clamp(15px, 2.5vw, 50px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.stock__row:nth-child(even) .stock__col:nth-child(2) {
  order: 0;
  background-color: white;
  padding: clamp(15px, 2.5vw, 50px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.stock__row:nth-child(even) .stock__col:nth-child(1) {
  order: 1;
}

.stock__image {
  position: relative;
  height: 100%;
}

.stock__image img {
  max-width: 100%;
}

.stock__col-title {
  font-size: 22px;
  font-weight: 600;
  line-height: 120%;
  margin-bottom: 15px;
}

.stock__col-text {
  font-size: 18px;
  line-height: 140%;
  margin-bottom: 20px;
}

.stock__col-link {
  position: relative;
  display: inline-grid;
  line-height: 150%;
  font-weight: 900;
  font-size: 18px;
  transition: 0.5s;
}

.stock__col-link::before {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 2px;
  margin-top: 5px;
  transition: 0.5s;
  z-index: 0;
}

.main {
  position: relative;
  padding: 149px 0px 146px;
}

.main__container {
  position: relative;
}

.main__bg {
  position: absolute;
  top: 0;
  left: 0%;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  z-index: -1;
}

.top-main {
  display: grid;
  grid-template-columns: 1fr 20% 1fr;
  gap: 20px;
  color: #ffffff;
  margin-bottom: 50px;
}

.top-main__left {
  display: flex;
  align-items: center;
  gap: 52px;
}

.top-main__item {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.top-main__address {
  white-space: nowrap;
}

.top-main__phone {
  display: flex;
  align-items: center;
  gap: 5px;
  white-space: nowrap;
}

.top-main__middle {
  display: flex;
  justify-content: center;
}

.top-main__logo {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.top-main__logo span {
  color: #23bdf2;
  font-weight: 600;
  white-space: nowrap;
}

.top-main__right {
  display: flex;
  flex-direction: column;
  gap: 29px;
}

.top-main__right-row {
  display: flex;
  justify-content: flex-end;
  gap: 20px;
}

.top-main__callback {
  display: flex;
  align-items: center;
  gap: 5px;
  font-family: "Montserrat", sans-serif;
}

.content-main__title {
  font-size: clamp(26px, 4vw, 60px);
  max-width: 800px;
  line-height: 120%;
  text-transform: uppercase;
  color: #ffffff;
}

.content-main__title span {
  font-weight: 600;
  font-size: inherit;
}

.content-main__subtitle {
  font-size: 25px;
  color: #ffffff;
  margin-top: 40px;
  font-weight: 600;
}

.content-main__link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 260px;
  height: 59px;
  color: white;
  background-color: #41a2d0;
  border-radius: 5px;
  margin-top: 70px;
}

.index-stock {
  padding: 40px 0px 80px;
}

.index-stock__grid {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.index-stock__item {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 25px 30px;
  border-radius: 10px;
  overflow: hidden;
  color: white;
}

.index-stock__item--first {
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  justify-content: center;
}

.index-stock__item-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}

.index-stock__item-title {
  font-size: 32px;
  font-weight: 700;
  line-height: 150%;
}

.index-stock__item-title span {
  font-size: 32px;
  font-weight: 700;
  line-height: 150%;
  color: #41a2d0;
}

.index-stock__item-discount {
  font-size: 72px;
  line-height: 140%;
  font-weight: 700;
  color: #41a2d0;
}

.index-catalog {
  padding: 90px 0px;
}

.index-catalog__title {
  font-size: 48px;
  font-weight: 500;
  line-height: 120%;
  color: #41a2d0;
  text-align: center;
  margin-bottom: 50px;
}

.index-catalog__inner {
  display: flex;
  gap: 58px;
}

.index-catalog__category {
  min-width: 225px;
  flex: 1 1 24%;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-start;
}

.index-catalog__btn {
  width: 100%;
  display: flex;
  gap: 30px;
  align-items: center;
  justify-content: space-between;
  font-weight: 500;
  line-height: 150%;
}

.index-catalog__content {
  width: 100%;
}

.index-catalog__filter {
  margin-bottom: 40px;
}

.index-catalog__cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  gap: 40px;
  width: 100%;
}

.product-thumb__slider {
  flex: 1 1 15%;
}

.product-thumb__slide {
  width: 100%;
  height: 160px !important;
  position: relative;
}

.product .product-thumb__slide img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card {
  display: flex;
  flex-direction: column;
}

.card__image {
  width: 100%;
  height: 230px;
}

.card__image img {
  max-width: 100%;
}

.card__content {
  padding: 15px;
  flex: 1 1 auto;
}

.card__content-title {
  line-height: 150%;
  margin-bottom: 23px;
}

.card__content-char {
  font-weight: 500;
  font-size: 10px;
  line-height: 140%;
}

.card__content-char + .card__content-char {
  margin-top: 10px;
}

.card__content-price {
  margin-top: 18px;
  font-weight: 500;
  line-height: 160%;
}

.card__content-link {
  background-color: #41a2d0;
  font-weight: 600;
  width: 100%;
  height: 40px;
  font-size: 13px;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}

.filter-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.filter {
  display: flex;
  align-items: center;
  gap: 35px;
}

.filter__inner {
  overflow-y: auto;
  max-height: 450px;
  height: 100%;
  padding: 10px 0px;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.filter__inner::-webkit-scrollbar {
  width: 2px;
  /* ширина всей полосы прокрутки */
}

.filter__inner::-webkit-scrollbar-track {
  background: rgba(65, 162, 208, 0.05);
}

.filter__inner::-webkit-scrollbar-thumb {
  background-color: rgba(58, 67, 75, 0.05);
  /* отступ вокруг бегунка */
}

.filter__item {
  position: relative;
}

.filter__item-text {
  cursor: pointer;
}

.filter__sublist {
  display: none;
  position: absolute;
  top: 100%;
  left: 0px;
  min-width: 200px;
  flex-direction: column;
  gap: 10px;
  padding-top: 20px;
  background-color: white;
  border-radius: 0px 0px 10px 10px;
  box-shadow: 0px 4px 7px 0px rgba(65, 162, 208, 0.1), 0px 30px 30px 0px rgba(65, 162, 208, 0.09), 0px 68px 41px 0px rgba(65, 162, 208, 0.05), 0px 121px 48px 0px rgba(65, 162, 208, 0.01), 0px 188px 53px 0px rgba(65, 162, 208, 0);
}

.filter__sublist-link {
  display: block;
  padding: 5px 10px;
}

.index-work {
  padding: 90px 0px;
}

.index-work__title {
  color: rgb(31, 31, 31);
  font-size: clamp(35px, 4vw, 56px);
  font-weight: 400;
  line-height: 121%;
  margin-bottom: 20px;
}

.index-work__inner {
  display: flex;
  align-items: center;
  gap: 30px;
}

.index-work .reviews-gis iframe {
  width: 500px;
}

.index-work__links {
  display: flex;
  align-items: center;
  gap: 50px;
  margin-bottom: 50px;
}

.index-work__links a {
  color: #949494;
  font-size: 24px;
  font-weight: 300;
  line-height: 121%;
}

.index-work__links a._active {
  color: #3a434b;
}

.index-work__grid {
  display: none;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 245px);
  gap: 10px;
}

.index-work__grid._active {
  display: grid;
}

.index-work__item {
  overflow: hidden;
  border-radius: 16px;
  box-shadow: 0px 8px 17px 0px rgba(65, 162, 208, 0.1), 0px 30px 30px 0px rgba(65, 162, 208, 0.09), 0px 68px 41px 0px rgba(65, 162, 208, 0.05), 0px 121px 48px 0px rgba(65, 162, 208, 0.01), 0px 188px 53px 0px rgba(65, 162, 208, 0);
}

.index-work__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.index-work__slider {
  position: relative;
  max-width: 100%;
}

.index-work__slide {
  display: flex;
  align-items: center;
  justify-content: center;
  max-height: 400px;
  overflow: hidden;
  border-radius: 10px;
}

.index-work__next,
.index-work__prev {
  border-radius: 50%;
  width: 40px;
  height: 40px;
  background-color: #41a2d0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.index-work__next::after,
.index-work__prev::after {
  font-size: 14px;
  color: white;
}

.index-reviews {
  padding: 90px 0px;
}

.index-reviews__inner {
  display: grid;
  grid-template-columns: 290px 1fr;
  align-items: center;
  gap: 58px;
}

.index-reviews__text {
  font-weight: 700;
  font-size: 20px;
  line-height: 150%;
  color: #41a2d0;
}

.index-reviews__reviews {
  min-width: 0;
}

.reviews__text {
  font-size: 16px;
  line-height: 150%;
  flex: 1 1 auto;
  margin-bottom: 90px;
}

.reviews__btn {
  width: 100%;
}

.reviews__slider {
  height: 100% !important;
  padding: 25px 10px;
}

.reviews__slide {
  padding: 35px 50px;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  box-shadow: 0px 0px 5px rgba(65, 162, 208, 0.35);
}

.reviews__name {
  font-weight: 700;
  line-height: 150%;
  color: #41a2d0;
}

.index-contact {
  padding: 90px 0px;
}

.index-contact__grid {
  padding: 50px 60px 0px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 48px;
  border-radius: 10px;
  box-shadow: 0px 11px 24px 0px rgba(65, 162, 208, 0.15), 0px 43px 43px 0px rgba(65, 162, 208, 0.13), 0px 97px 58px 0px rgba(65, 162, 208, 0.08), 0px 173px 69px 0px rgba(65, 162, 208, 0.02), 0px 270px 76px 0px rgba(65, 162, 208, 0);
  background: rgb(255, 255, 255);
}

.index-contact__item:nth-child(2) {
  min-width: 291px;
  align-content: flex-end;
}

.index-contact__title {
  font-size: 40px;
  font-weight: 600;
  line-height: 130%;
  letter-spacing: -3%;
  text-align: left;
  margin-bottom: 50px;
}

.index-contact__title span {
  color: #41a2d0;
  font-size: inherit;
  font-weight: inherit;
}

.index-contact__list li {
  display: flex;
  align-items: center;
  gap: 10px;
}

.index-contact__list li:not(:last-child) {
  margin-bottom: 18px;
}

.index-contact__list-text {
  font-size: 24px;
  font-weight: 500;
  line-height: 130%;
  letter-spacing: -3%;
  text-align: left;
}

.index-contact__list-text span {
  font-size: inherit;
  line-height: inherit;
  font-weight: inherit;
  color: #41a2d0;
}

.index-contact__mobile {
  align-content: flex-end;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 60px 0px 30px;
  background-size: cover;
  background-repeat: no-repeat;
}

.index-contact__logo {
  width: 130px;
  height: 130px;
  margin-bottom: 20px;
  display: flex;
  justify-content: center;
}

.index-contact__logo img {
  object-fit: cover;
}

.index-contact__mobile-text {
  max-width: 173px;
  color: rgb(70, 70, 70);
  font-size: 16px;
  font-weight: 300;
  line-height: 20px;
  margin-bottom: 20px;
}

.index-contact__mobile-phones {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 20px;
}

.index-contact__mobile-phones a {
  display: flex;
  align-items: center;
  gap: 5px;
}

.index-contact__call {
  padding: 20px;
}

.index-contact__form {
  overflow: hidden;
  border-radius: 10px 10px 0px 0px;
  box-shadow: 0px 2px 4px 0px rgba(114, 176, 218, 0.2), 0px 7px 7px 0px rgba(114, 176, 218, 0.17), 0px 17px 10px 0px rgba(114, 176, 218, 0.1), 0px 29px 12px 0px rgba(114, 176, 218, 0.03), 0px 46px 13px 0px rgba(114, 176, 218, 0);
  background: rgb(255, 255, 255);
}

.index-map {
  padding: 90px 0px;
}

.index-map__inner {
  overflow: hidden;
  border-radius: 30px;
  box-shadow: 0px 11px 24px 0px rgba(65, 162, 208, 0.15), 0px 44px 44px 0px rgba(65, 162, 208, 0.13), 0px 99px 60px 0px rgba(65, 162, 208, 0.08), 0px 177px 71px 0px rgba(65, 162, 208, 0.02), 0px 276px 77px 0px rgba(65, 162, 208, 0);
}

/*
  Страница услуги
*/

._aBg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero {
  position: relative;
  background: rgb(65, 162, 208);
  background: linear-gradient(0deg, rgba(65, 162, 208, 0.09) 50%, rgb(255, 255, 255) 100%);
}

.hero__image {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 550px;
  height: 80%;
}

.hero__image-grav {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  height: 80%;
}

.hero .breadcrumbs {
  margin: 0px 0px 20px;
}

.hero__container {
  position: relative;
  z-index: 2;
}

.hero__inner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 100px 0px;
}

.hero__title {
  font-size: 45px;
  text-wrap: balance;
  line-height: 120%;
  text-transform: uppercase;
  margin-bottom: 20px;
  color: #3a434b;
}

.hero__title span {
  font-size: inherit;
  line-height: inherit;
  font-weight: 600;
}

.hero__subtitle {
  max-width: 800px;
  text-wrap: balance;
  line-height: 160%;
  margin-bottom: 60px;
}

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

.hero__button {
  width: 260px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  border-radius: 5px 5px 5px 5px;
  color: white;
  background-color: #41a2d0;
}

.hero__button--small {
  width: 50px;
  background-color: transparent;
  border: 2px solid #41a2d0;
  color: #41a2d0;
  position: relative;
}

.hero__button--small::before {
  content: "Заказать консультацию";
  position: absolute;
  left: 100%;
  top: -2px;
  width: 200px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #41a2d0;
  border-radius: 0px 5px 5px 0px;
  font-size: 14px;
  transform: translateX(30px);
  opacity: 0;
  pointer-events: none;
  transition: 0.3s;
}

.hero__button--border {
  background-color: transparent;
  border: 2px solid #41a2d0;
  color: #41a2d0;
  position: relative;
  transition: 0.25s;
}

.service-page .hero__button--small {
  width: 260px;
}

.service-page .hero__button--small:before {
  display: none;
}

.service-page .hero__button--small:hover {
  border-radius: 5px;
}

.service__text {
  border-radius: 10px;
  box-shadow: 0px 11px 24px 0px rgba(65, 162, 208, 0.15), 0px 43px 43px 0px rgba(65, 162, 208, 0.13), 0px 97px 58px 0px rgba(65, 162, 208, 0.08), 0px 173px 69px 0px rgba(65, 162, 208, 0.02), 0px 270px 76px 0px rgba(65, 162, 208, 0);
  background: rgb(255, 255, 255);
  padding: 35px;
  margin: 50px 0px;
}

.service__text h2 {
  font-size: 25px;
  margin-bottom: 20px;
}

.service__text p {
  margin-bottom: 20px;
  line-height: 150%;
}

.service__text ol {
  margin-left: 40px;
  margin-bottom: 20px;
}

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

.service-advantge {
  background: linear-gradient(0deg, rgba(65, 162, 208, 0.09) 50%, rgb(255, 255, 255) 100%);
}

.service-advantge__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
  gap: 20px;
}

.service-advantge__item {
  box-shadow: 0px 0px 15px rgba(65, 162, 208, 0.1);
  padding: 30px 25px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  border-radius: 10px;
  border: 1px solid rgba(65, 162, 208, 0.3);
}

.service-advantge__item-icon {
  width: 40px;
  height: 40px;
}

.service-advantge__item-icon img {
  width: 100%;
  height: 100%;
}

.service-advantge__item-text {
  flex: 1 1 auto;
  align-self: flex-start;
  line-height: 140%;
}

.swiper-pagination-bullet {
  background-color: #41a2d0;
}

.index-service__cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
}

.index-service__card {
  position: relative;
  height: clamp(300px, 90vh, 500px);
  display: flex;
  align-items: flex-end;
  padding: 40px;
  overflow: hidden;
}

.index-service__card p {
  position: relative;
  z-index: 2;
  color: white;
  font-size: 25px;
  line-height: 130%;
  text-transform: uppercase;
  max-width: 250px;
}

.index-service__card img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  transition: 0.5s;
}

.index-service__card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(58, 67, 75, 0.2);
  z-index: 1;
}

.index-service__card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 50%;
  background-color: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(1px);
}

.index-service__count {
  position: absolute;
  top: 20px;
  right: 20px;
  color: white;
  z-index: 1;
  width: 30px;
  height: 30px;
  background-color: #41a2d0;
  display: flex;
  font-size: 14px;
  border-radius: 5px;
  align-items: center;
  justify-content: center;
}

.login {
  height: 100vh;
  background-color: white;
}

.login__container {
  height: 100vh;
}

.login__inner {
  display: flex;
}

.login__sidebar {
  width: 580px;
  padding: 0px 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.login__sidebar ._title-h2 {
  font-size: 35px;
  font-weight: 600;
  margin-bottom: 40px;
  text-align: center;
}

.login__images {
  height: 100vh;
  width: 100%;
}

.login__images img {
  width: 100%;
  height: 100%;
}

.login .form {
  display: grid;
  gap: 20px;
}

.login .form__group {
  display: grid;
  gap: 10px;
}

.login .form__controls {
  box-shadow: none;
  width: 100%;
  height: 50px;
}

.login .form__submit {
  background-color: #41a2d0;
  width: 100%;
  height: 50px;
  color: white;
  border-radius: 5px;
  padding: 0px;
}

.form__controls-textarea {
  padding: 15px 20px;
  border: 0.2px solid rgb(130, 130, 130);
  border-radius: 4px;
  font-size: 14px;
  color: rgba(58, 67, 75, 0.9);
  resize: none;
}

.form__controls-textarea:focus,
.form__controls-textarea:focus-visible,
.form__controls-textarea:focus-within {
  outline: none;
  border-color: rgba(58, 67, 75, 0.4);
}

table,
th,
td {
  border: 1px solid black;
  border-collapse: collapse;
}

th,
td {
  padding: 8px;
}

.cookie-notice {
  display: none;
  width: 60%;
  position: fixed;
  bottom: 10px;
  left: 10px;
  background-color: #384b5a;
  color: #ffffff;
  padding: 15px;
  border-radius: 5px;
  line-height: 150%;
  z-index: 1000;
}

.cookie-notice a {
  color: #b25f68;
  text-decoration: underline;
}

.accept-cookies {
  margin-left: 10px;
  padding: 5px 10px;
  background-color: #41a2d0;
  color: white;
  border: none;
  border-radius: 5px;
}

.about__grid {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 70px;
  width: 100%;
}

.about__grid-item p {
  line-height: 140%;
}

.about__grid-item p + p {
  margin-top: 15px;
}

.about__grid-item img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  object-position: top;
  border-radius: 8px;
  margin-top: 30px;
}

.about__grid-image {
  width: 100%;
  height: 100% !important;
  object-fit: cover;
}

.about__grid-image img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  margin-top: 0px;
}

.service-page__items {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(clamp(200px, 80vw, 350px), 1fr));
  gap: 50px 30px;
}

.service-page__item {
  position: relative;
  background-color: #41a2d0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  border-radius: 10px;
}

.service-page__item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(65, 162, 208, 0.1);
  border-radius: 10px;
  z-index: 0;
  display: none;
}

.service-page__item:hover::before {
  display: block;
}

.service-page__icon {
  position: absolute;
  bottom: -30px;
  right: 0px;
  z-index: 1;
}

.service-page__item-text {
  padding: 40px;
  min-height: 220px;
  position: relative;
  height: 100%;
  font-size: 20px;
  max-width: 235px;
  color: #41a2d0;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

/*
    Подключение стилей отдельных блоков
*/

.header {
  position: fixed;
  width: 100%;
  top: 30px;
  left: 0;
  z-index: 150;
  transition: 0.5s;
}

.header._active {
  top: calc(54% - 222px);
  opacity: 1;
  pointer-events: all;
}

.header__inner {
  display: flex;
  align-items: center;
  border: 1px solid rgba(65, 162, 208, 0.1);
  border-radius: 5px;
}

.header__callback {
  display: flex;
  align-items: center;
  gap: 5px;
  background-color: #ffffff;
  height: 100%;
  width: 210px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 5px 0px 0px 5px;
}

.nav {
  display: flex;
  align-items: center;
  background-color: #41a2d0;
  flex: 1 1 auto;
  height: 100%;
  padding: 0px 47px;
  border-radius: 0px 5px 5px 0px;
}

.nav__list {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav__item-inner {
  flex: 1 1 100%;
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav__item {
  display: flex;
  align-items: center;
  gap: 5px;
  position: relative;
}

.nav__item a {
  display: inline-flex;
  padding: 13px 0px;
  font-size: 16px;
  color: white;
  transition: all ease 0.5s;
}

.nav__item img {
  margin-top: 3px;
  width: 12px;
  height: 10px;
  transition: 0.3s;
}

.nav__item._active .submenu {
  display: block;
}

.submenu {
  background-color: white;
  border-radius: 0px 0px 5px 5px;
  min-width: 250px;
  box-shadow: 0px 4px 8px 0px rgba(65, 162, 208, 0.15), 0px 15px 15px 0px rgba(65, 162, 208, 0.13), 0px 33px 20px 0px rgba(65, 162, 208, 0.08), 0px 59px 24px 0px rgba(65, 162, 208, 0.02), 0px 93px 26px 0px rgba(65, 162, 208, 0);
  transition: 0.3s;
}

.submenu li {
  transition: 0.5s;
}

.submenu li a {
  display: block;
  padding: 10px 15px;
  color: #41a2d0;
  transition: 0.5s;
}

.header-under {
  padding: 30px 0px 45px;
}

.header-under__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.header-under__logo {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.header-under__logo img {
  width: 106px;
  height: 110px;
  object-fit: cover;
}

.header-under__logo span {
  font-weight: 600;
  white-space: nowrap;
  color: #23bdf2;
}

.header-under__address-title {
  color: #41a2d0;
  font-size: 16px;
  font-weight: 600;
  line-height: 20px;
  margin-bottom: 5px;
}

.header-under__address-row {
  display: flex;
  gap: 40px;
}

.header-under__address-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.header-under__address-col a,
.header-under__address-col p {
  color: rgb(0, 0, 0);
  font-size: 16px;
  font-weight: 300;
  line-height: 20px;
  font-family: "Montserrat", sans-serif;
}

.header-under__address-col a {
  display: flex;
  align-items: center;
  gap: 10px;
}

.header-under__action {
  display: flex;
  align-items: center;
  gap: 30px;
}

.header-under__action button {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: Montserrat;
}

.footer {
  background-color: #29779c;
  padding: 79px 0px 0px;
}

.footer__inner {
  display: flex;
  justify-content: space-between;
  gap: 127px;
}

.footer__menu {
  flex: 1 1 auto;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.footer__list {
  display: grid;
  gap: 15px;
  align-content: start;
}

.footer__item--first {
  color: white;
  font-size: 16px;
  font-weight: 600;
  line-height: 20px;
  margin-bottom: 5px;
}

.footer__item {
  color: #c5c5c5;
  font-size: 16px;
  font-weight: 400;
  line-height: 20px;
  transition: 0.5s;
}

.footer__title {
  color: white;
  font-size: 16px;
  font-weight: 600;
  line-height: 20px;
  margin-bottom: 20px;
}

.footer__contact-list {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}

.footer__contact-list + .footer__contact-list {
  margin-top: 20px;
}

.footer__contact-list a {
  color: white;
  font-size: 16px;
  font-weight: 500;
  line-height: 20px;
}

.footer__contact-list button {
  color: white;
  font-size: 16px;
  font-weight: 300;
  line-height: 20px;
  text-decoration-line: underline;
}

.footer__contact-city {
  color: white;
  font-size: 16px;
  font-weight: 500;
  line-height: 20px;
}

.footer__contact-address {
  color: white;
  font-size: 16px;
  font-weight: 300;
  line-height: 20px;
  text-decoration-line: underline;
}

.footer__author {
  text-align: center;
  color: white;
  padding: 60px 0px 60px;
}

._lock {
  overflow: hidden;
}

body {
  font-family: "Montserrat", sans-serif;
}

._btn {
  background-color: #41a2d0;
  font-weight: 600;
  height: 40px;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  transition: 0.5s;
}

.empty-info {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 400px;
}

.empty-info p {
  font-size: 40px;
  font-weight: 600;
  color: rgba(65, 162, 208, 0.5);
  width: 100%;
  text-align: center;
}

section {
  padding: 80px 0px;
}

._title {
  font-size: 45px;
  text-wrap: balance;
  line-height: 120%;
  text-transform: uppercase;
  margin-bottom: 20px;
  color: #3a434b;
}

._title span {
  font-size: inherit;
  line-height: inherit;
  font-weight: 600;
}

._title-h2 {
  font-size: 40px;
  text-wrap: balance;
  line-height: 120%;
  text-transform: uppercase;
  margin-bottom: 20px;
  color: #3a434b;
}

._title-h2 span {
  font-size: inherit;
  line-height: inherit;
  font-weight: 600;
}

.map-widget-layout-view__controls {
  display: none !important;
}

._overlay body::after {
  opacity: 1;
}

.text p {
  line-height: 150%;
}

.text ul li {
  line-height: 140%;
}

.text a {
  color: #41a2d0;
}

/*
    Подключение стилей отдельных компонентов
*/

.search {
  position: absolute;
  top: 0%;
  background-color: white;
  border-radius: 8px;
  left: 0;
  width: 0%;
  z-index: 10;
  transition: 0.5s;
  overflow: hidden;
  pointer-events: none;
}

.search._active {
  width: 100%;
  pointer-events: all;
}

.search form {
  display: flex;
}

.search form input {
  font-size: 18px;
  border-bottom: 1px solid rgba(58, 67, 75, 0.3);
}

.search form button {
  width: 150px;
  color: #ffffff;
  border-radius: 0px 8px 8px 0px;
}

.filter-sort {
  position: absolute;
  top: 180%;
  margin-top: 10px;
  right: 0;
  width: 290px;
  background-color: white;
  padding: 20px;
  border-radius: 8px;
  opacity: 0;
  pointer-events: none;
  transition: 0.5s;
  z-index: 19;
}

.filter-sort._active {
  top: 100%;
  pointer-events: all;
  opacity: 1;
}

.filter-sort__value {
  padding: 10px 20px;
  border-radius: 4px;
  cursor: pointer;
  transition: 0.5s;
}

.filter-sort__value._active {
  color: white;
}

.price-input__fields {
  display: flex;
  align-items: center;
  border: 1px solid rgba(58, 67, 75, 0.1);
  border-radius: 4px;
  overflow: hidden;
}

.price-input__field input[type=number] {
  width: 100%;
  height: 40px;
  text-align: center;
  border: 1px solid rgba(58, 67, 75, 0);
  color: #3a434b;
  background-color: transparent;
  appearance: none;
}

.price-input__field input[type=number]:focus {
  outline: none;
}

.price-input .separator {
  display: block;
  width: 1px;
  height: 40px;
  margin: 0px 1px;
  background-color: rgba(58, 67, 75, 0.1);
}

.price-input__slider {
  margin-top: 20px;
  height: 5px;
  border-radius: 5px;
  position: relative;
  background-color: rgba(58, 67, 75, 0.1);
}

.price-input__progress {
  height: 5px;
  position: absolute;
  left: 25%;
  right: 25%;
  border-radius: 5px;
}

.price-input__range {
  position: relative;
}

.price-input__range input {
  position: absolute;
  top: -5px;
  height: 5px;
  width: 100%;
  background: none;
  appearance: none;
  pointer-events: none;
}

.price-input__range input::-webkit-slider-thumb {
  height: 17px;
  width: 17px;
  border-radius: 50%;
  pointer-events: auto;
  appearance: none;
  border: none;
}

.form {
  display: flex;
  flex-direction: column;
}

.form__title {
  padding: 30px;
  color: rgb(255, 255, 255);
  font-size: 24px;
  font-weight: 700;
  line-height: 150%;
  text-align: center;
  background-color: #41a2d0;
  margin-bottom: 20px;
}

.form__text {
  color: rgb(84, 84, 84);
  font-size: 16px;
  font-weight: 400;
  line-height: 140%;
  text-align: left;
  max-width: 285px;
  margin: 0 auto;
  margin-bottom: 13px;
}

.form__inner {
  padding: 45px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.form__controls {
  padding: 25px 13px;
  border: 0.2px solid rgb(130, 130, 130);
  border-radius: 5px;
  box-shadow: inset 0px 3px 6px 0px rgba(0, 0, 0, 0.05), inset 0px 10px 10px 0px rgba(0, 0, 0, 0.04);
  background: rgb(239, 239, 239);
  color: rgb(84, 84, 84);
  font-size: 16px;
  font-weight: 300;
  line-height: 20px;
}

.form__social-inner {
  display: flex;
  align-items: center;
  gap: 10px;
}

.form__controls-label {
  position: relative;
  cursor: pointer;
  width: 25px;
  height: 25px;
}

.form__controls-label input {
  appearance: none;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -2;
}

.form__controls-label input:checked ~ img {
  border: 2px solid #41a2d0;
}

.form__controls-label img {
  width: 25px;
  height: 25px;
  object-fit: contain;
}

.form__bottom {
  display: flex;
  gap: 20px;
}

.form__submit {
  padding: 20px;
}

.form__agreement {
  font-size: 10px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 130%;
}

.form__agreement input {
  border: 1px solid #3a434b;
}

.form__group-boolean {
  display: flex;
  align-items: center;
  gap: 10px;
}

.form__group-boolean input[type=checkbox] {
  appearance: none;
  width: 12px;
  height: 12px;
  border: 1px solid #41a2d0;
  position: relative;
  cursor: pointer;
}

.form__group-boolean input[type=checkbox]::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 6px;
  height: 6px;
  margin-top: -3px;
  margin-left: -3px;
  background-color: #41a2d0;
  display: none;
}

.form__group-boolean input[type=checkbox]:checked::after {
  display: block;
}

.form__group-boolean label {
  cursor: pointer;
}

.form__label a {
  text-decoration: underline;
}

.breadcrumbs {
  display: flex;
  position: relative;
  z-index: 2;
  margin: 50px 0px 20px;
}

.breadcrumbs__item {
  display: flex;
  align-items: center;
  color: rgb(65, 162, 208);
  font-family: Montserrat;
  font-size: 16px;
  font-weight: 300;
  line-height: 20px;
  text-decoration-line: underline;
}

.breadcrumbs__item:not(:last-child)::after {
  content: "";
  display: block;
  width: 20px;
  height: 1px;
  margin: 0px 10px;
  background-color: #3a434b;
}

.breadcrumbs__item:last-child {
  color: rgb(103, 103, 103);
}

.callback {
  position: relative;
  width: 100%;
  height: 100%;
}

.callback__container {
  position: relative;
  z-index: 1;
}

.callback__row {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
}

.callback__title {
  text-wrap: balance;
  text-align: center;
}

.callback__subtitle {
  max-width: 700px;
  text-align: center;
  text-wrap: balance;
  line-height: 150%;
  font-size: 18px;
  margin-top: 20px;
}

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

.callback__btn {
  background-color: #41A2D0;
  padding: 20px 40px;
  border-radius: 6px;
  color: #ffffff;
  margin-top: 35px;
}

.pagging {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 80px;
}

.pagging__arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
}

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

.pagging__item {
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 13px;
  font-weight: 600;
  width: 30px;
  height: 30px;
  background-color: #41a2d0;
  border-radius: 5px;
}

body::after {
  content: "";
  background-color: rgba(0, 0, 0, 0.5);
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  opacity: 0;
  transition: opacity 0.8s ease 0s;
  pointer-events: none;
  z-index: 149;
}

.popup-show body::after {
  opacity: 1;
}

.popup {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  padding: 30px 10px;
  transition: visibility 0.8s ease 0s;
  visibility: hidden;
  pointer-events: none;
}

.popup__text h2 {
  font-size: 35px;
  line-height: 120%;
}

.popup__text a {
  color: #41a2d0;
  text-decoration: underline;
}

.popup__text p {
  line-height: 140%;
}

.popup__text p span {
  font-weight: 500;
}

.popup__text p + p {
  margin-top: 20px;
}

.popup__text ul,
.popup__text ol {
  padding-left: 35px;
}

.popup__text ul li,
.popup__text ol li {
  padding-left: 16px;
  position: relative;
  line-height: 150%;
}

.popup__text ul li + li,
.popup__text ol li + li {
  margin-top: 15px;
}

.popup__text ul li::before {
  content: "";
  position: absolute;
  top: 0%;
  margin-top: 10px;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: #41a2d0;
}

.popup_show {
  z-index: 9999;
  visibility: visible;
  overflow: auto;
  pointer-events: auto;
}

.popup_show .popup__content {
  visibility: visible;
  transform: translateY(0);
  position: relative;
}

.popup__wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 100%;
  flex: 1 1 auto;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.popup__content {
  visibility: hidden;
  transform: translateY(-120px);
  transition: transform 0.3s ease 0s;
  background-color: white;
  padding: 40px 40px 60px;
  width: 100%;
  max-width: 800px;
  border-radius: 20px;
}

.lock .popup__content {
  visibility: visible;
}

.popup__close {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 30px;
  height: 30px;
  z-index: 99;
}

.popup__close::before,
.popup__close::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 2px;
  margin-top: -1px;
  margin-left: -10px;
  background-color: red;
}

.popup__close::before {
  transform: rotate(-45deg);
}

.popup__close::after {
  transform: rotate(45deg);
}

.popup__title {
  text-align: center;
  font-size: 30px;
  line-height: 140%;
  margin-bottom: 30px;
}

.popup__form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.popup__form-controls {
  border: 1px solid rgba(65, 162, 208, 0.4);
  padding: 20px 10px;
  outline: none;
  border-radius: 6px;
}

.popup__form-controls:focus {
  border-color: rgba(65, 162, 208, 0.9);
}

.popup__form-submit {
  background-color: #41a2d0;
  padding: 20px 20px;
  width: 100%;
  color: white;
  border-radius: 6px;
}

.popup__subdomain-title {
  font-size: 21px;
  font-weight: 600;
  padding: 10px 0px 10px;
  border-bottom: 1px solid rgba(58, 67, 75, 0.1);
}

.popup__search-city {
  height: 40px;
  margin: 10px 0px;
  border: 1px solid rgba(58, 67, 75, 0.2);
  border-radius: 5px;
  padding: 0px 14px;
}

.popup__search-city::placeholder {
  font-size: 13px;
}

.popup__search-city:focus {
  outline: none;
  border-color: rgba(58, 67, 75, 0.4);
}

.popup__subdomain-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.popup__subdomain-link {
  padding: 15px 15px;
  display: flex;
  font-size: 18px;
  border: 1px solid rgba(65, 162, 208, 0.2);
  border-radius: 3px;
}

.popup__loading {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: none;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  background-color: rgba(255, 255, 255, 0.5);
}

.popup__loading._active {
  pointer-events: all;
  display: flex;
}

.popup__loading img {
  width: 40px;
  height: 40px;
}

.notice {
  position: fixed;
  bottom: 50px;
  right: 50px;
  overflow: hidden;
  z-index: 99;
}

.notice__content {
  display: grid;
  gap: 20px;
}

.notice__percent {
  font-size: 35px;
  font-weight: 800;
  color: #FFFFFF;
}

.notice__text {
  color: #41a2d0;
  font-size: 20px;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 30px;
  border-radius: 50%;
  background-color: white;
  border: 1px solid #41a2d0;
  cursor: pointer;
  overflow: hidden;
}
.product__description-col li {list-style: disc;}
.product__description-col ul {padding-left: 3%;}

@keyframes pulse {
  0% {
    box-shadow: 0 0 5px #41a2d0, 0 0 10px #41a2d0;
    border-radius: 50%;
  }

  50% {
    box-shadow: 0 0 15px #41a2d0, 0 0 30px #41a2d0;
  }

  100% {
    box-shadow: 0 0 5px #41a2d0, 0 0 10px #41a2d0;
    border-radius: 50%;
  }
}

.mobile-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 50px;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 80px;
  background-color: #eeeeee;
  z-index: 153;
}

.mobile-nav__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.mobile-nav__item span {
  color: #3a434b;
  font-size: 10px;
  font-weight: 500;
  line-height: 150%;
}

.mobile-nav__item img {
  height: 19px;
}

.mobile-nav__item._active .burger span {
  opacity: 0;
}

.mobile-nav__item._active .burger::before {
  transform: rotate(-45deg);
}

.mobile-nav__item._active .burger::after {
  transform: rotate(45deg);
}

.mobile-nav__item .count-product-cart {
  color: white;
  top: 54%;
  left: 50%;
  transform: translateX(-50%);
}

.burger {
  width: 20px;
  height: 19px;
  position: relative;
}

.burger span,
.burger::before,
.burger::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 18px;
  height: 2px;
  margin-top: -1px;
  margin-left: -9px;
  background-color: #3a434b;
  transition: 0.5s;
}

.burger::before {
  transform: translateY(-5px);
}

.burger::after {
  transform: translateY(5px);
}

/*
    Подключение стилей отдельных блоков страницы
*/

.index-slider {
  padding: 0px 60px;
}

.index-slider__slider {
  position: relative;
}

.index-slider__slide {
  border-radius: 46px;
  background-repeat: no-repeat;
  background-size: cover;
  overflow: hidden;
  padding: 50px;
  position: relative;
  display: flex;
  align-items: flex-end;
}

.index-slider__slide::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(2.2deg, rgba(0, 0, 0, 0.4) 1.69%, rgba(0, 0, 0, 0) 98.02%);
  z-index: -1;
}

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

.index-slider__title {
  font-size: 50px;
  font-weight: 600;
  line-height: 120%;
  margin-bottom: 40px;
  text-wrap: balance;
  color: #ffffff;
  font-family: "Inter", sans-serif;
}

.index-slider__subtitle {
  font-size: 22px;
  font-weight: 300;
  line-height: 150%;
  text-wrap: balance;
  color: #ffffff;
}

.index-slider__link {
  display: inline-flex;
  padding: 15px 30px;
  border-radius: 8px;
  margin-top: 30px;
  box-shadow: 0px 0px 5px rgba(58, 67, 75, 0.3);
  background: white;
}

.index-slider__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.index-slider__prev {
  top: 50%;
  margin-top: -80px;
  left: 0%;
  margin-left: -61px;
  z-index: 99;
}

.index-slider__next {
  top: 50%;
  margin-top: -80px;
  right: 0% !important;
  margin-right: -61px;
  z-index: 99;
}

.index-slider .swiper-button-disabled {
  opacity: 1;
}

.index-slider__prev,
.index-slider__next {
  background-color: transparent;
  min-width: 108px;
  min-height: 176px;
  max-width: 108px;
  max-height: 176px;
  border-radius: 4px;
}

.index-slider__prev:hover::after,
.index-slider__prev:hover::before,
.index-slider__next:hover::after,
.index-slider__next:hover::before {
  background: #d71635;
  color: #ffffff;
}

.index-slider__prev svg,
.index-slider__next svg {
  height: 176px;
}

.index-slider__prev::after,
.index-slider__next::after {
  transition: 0.5s;
  background: transparent;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  position: absolute;
  font-size: 15px;
  font-weight: 600;
  color: #3a434b;
}

.index-slider__next {
  right: 5%;
}

.advantages {
  padding: 30px 60px;
}

.advantages__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  justify-items: center;
  padding: 30px 0px;
  gap: 30px;
}

.advantages__item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.advantages__item span {
  font-weight: 600;
  display: inline-flex;
  margin-top: 10px;
  text-align: center;
}

.advantages__icon img {
  width: 60px;
  height: 60px;
}

.faq {
  padding: 60px 60px;
}

.faq .index-catalog__head {
  margin-bottom: 0px;
  padding: 30px 0px;
}

.faq__title {
  margin-bottom: 30px;
}

.faq__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.faq__item {
  text-align: center;
  background-color: #ffffff;
  border-radius: 30px;
  min-height: 270px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: 500;
  line-height: 150%;
  text-wrap: balance;
  box-shadow: 0px 0px 4px rgba(58, 67, 75, 0.1);
  border: 1px solid rgba(58, 67, 75, 0.1);
  background-color: #ffffff;
  position: relative;
}

.faq__item:last-child {
  background-color: #d71635;
  color: #ffffff;
}

.faq__item:last-child span {
  display: none;
}

.faq__item span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 35px;
  height: 35px;
  background-color: #d71635;
  position: absolute;
  bottom: 20px;
  right: 20px;
  border-radius: 10px;
}

.faq__item span svg {
  width: 15px;
  height: 15px;
}

.index-about {
  padding: 60px 60px;
}

.index-about .index-catalog__head {
  margin-bottom: 0px;
  padding: 30px 0px;
}

.index-about__text {
  margin: 30px 0px 40px;
}

.index-about__text p {
  font-size: 16px;
  line-height: 150%;
}

.index-about__text p:not(:last-child) {
  margin-bottom: 20px;
}

.index-about__slider {
  max-height: 550px;
  border-radius: 46px;
}

.index-about__slide img {
  max-width: 100%;
}

.index-about .swiper-pagination-bullet {
  width: 30px;
  height: 6px;
  background: #ffffff;
  border-radius: 0px;
  opacity: 1;
}

.index-about .swiper-pagination-bullet-active {
  background: #d71635;
}

.index-category {
  padding: 60px 60px;
}

.index-category .index-catalog__head {
  margin-bottom: 0px;
  padding: 30px 0px;
}

.index-category__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  grid-gap: 32px;
  grid-auto-flow: dense;
  margin-top: 30px;
}

.index-category__item {
  display: flex;
  justify-content: space-between;
  background-size: cover;
  background-repeat: no-repeat;
  border-radius: 30px;
  overflow: hidden;
  width: 100%;
  padding: 45px;
  min-height: 450px;
  position: relative;
}

.index-category__item:hover .index-category__arrow {
  background: #d71635;
}

.index-category__item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(2.2deg, rgba(0, 0, 0, 0.8) 1.69%, rgba(0, 0, 0, 0) 98.02%);
  z-index: 0;
}

.index-category__item-col {
  position: relative;
  z-index: 1;
}

.index-category__item-col:first-child {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.index-category__item-col:last-child {
  display: flex;
  align-items: center;
  justify-content: center;
}

.index-category__arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 90px;
  height: 90px;
  border-radius: 50%;
  transition: 0.5s;
  position: relative;
}

.index-category__arrow img {
  width: 10px;
}

.index-category__arrow::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 3px dotted white;
  border-radius: 50%;
  animation: circle 30s linear infinite;
}

.index-category__item-top span {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.8);
  border-radius: 20px;
  font-weight: 700;
}

.index-category__title {
  font-size: 35px;
  font-weight: 700;
  color: #ffffff;
}

@keyframes circle {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.contact__title span {
  color: #41a2d0;
}

.contact__note {
  padding: 30px;
  border-radius: 10px;
  border: 1px solid rgba(65, 162, 208, 0.2);
  box-shadow: 0px 8px 7px rgba(65, 162, 208, 0.1);
  font-size: 18px;
  line-height: 150%;
}

.contact__note a {
  font-weight: 600;
  color: #41a2d0;
}

.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1fr 40%;
  gap: 20px;
  margin: 60px 0px;
}

.item-contact {
  box-shadow: 0px 8px 7px rgba(65, 162, 208, 0.1);
  border-radius: 10px;
  overflow: hidden;
}

.item-contact:not(:last-child) {
  padding: 40px;
}

.item-contact__title {
  font-size: 25px;
  font-weight: 600;
  margin-bottom: 30px;
}

.item-contact__row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 0px;
}

.item-contact__row-info {
  display: grid;
  gap: 10px;
}

.item-contact__row-big {
  font-weight: 500;
}

#time-work {
  position: relative;
}

#time-work .item-contact__hidden {
  display: none;
  grid-template-columns: 1fr;
  gap: 10px;
  position: absolute;
  top: 90%;
  left: 0%;
  height: auto;
  padding: 10px 6px;
  border-radius: 5px;
  box-shadow: 0px 0px 5px rgba(65, 162, 208, 0.1);
  background-color: white;
  border: 1px solid rgba(65, 162, 208, 0.3);
}

#time-work .item-contact__hidden p {
  font-size: 12px;
  line-height: 140%;
}

.register__inner {
  max-width: 800px;
  margin: 0 auto;
  background-color: white;
  box-shadow: 0 20px 60px 2px rgba(149, 144, 135, 0.15);
  padding: 30px;
  border-radius: 46px;
}

.register ._title-h2 {
  text-align: center;
  margin-bottom: 20px;
}

.profile__title {
  text-align: center;
  margin-bottom: 40px;
}

.profile__title-h2 {
  font-size: 25px;
  margin-bottom: 20px;
}

.profile__row {
  display: flex;
  align-items: flex-start;
  gap: 40px;
}

.profile__col {
  flex: 1 1 50%;
}

.profile__col:first-child {
  position: sticky;
  top: 100px;
  background-color: white;
  box-shadow: 0 20px 60px 2px rgba(149, 144, 135, 0.15);
  padding: 30px;
  border-radius: 46px;
}

.profile__avatar {
  width: 150px;
  height: 150px;
}

.profile__avatar img {
  max-width: 100%;
  object-fit: cover;
}

.profile__order {
  background-color: white;
  box-shadow: 0 20px 60px 2px rgba(149, 144, 135, 0.15);
  padding: 30px;
  border-radius: 26px;
}

.profile__item + .profile__item {
  margin-top: 30px;
}

.profile__item-header {
  font-size: 18px;
}

.profile__item-header span {
  color: #d71635;
}

.profile__item-header strong {
  margin-left: 5px;
}

.profile .process {
  color: orange;
}

.profile .success {
  color: green;
}

.profile .danger {
  color: red;
}

.profile__item-link {
  font-weight: 600;
}

.profile__total-sum {
  background-color: white;
  box-shadow: 0 20px 60px 2px rgba(149, 144, 135, 0.15);
  padding: 40px 30px;
  border-radius: 26px;
  margin-top: 40px;
}

.profile__total-sum p {
  font-size: 20px;
}

.profile__total-sum p span {
  font-size: 20px;
  font-weight: 800;
  color: #d71635;
}

.profile table {
  border-collapse: collapse;
  width: 100%;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  margin-top: 20px;
}

.profile td,
.profile th {
  border: 1px solid rgba(58, 67, 75, 0.2);
  padding: 15px 5px;
  text-align: left;
}

.order-create {
  padding: 80px 0px;
}

.order-create__title {
  color: rgb(65, 162, 208);
  font-size: 48px;
  font-weight: 500;
  line-height: 120%;
  text-align: center;
  margin-bottom: 30px;
}

.order-create__row {
  display: flex;
  align-items: flex-start;
  gap: 50px;
}

.order-create__col {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.order-create__col:last-child {
  border: 1px solid #41a2d0;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0px 11px 24px 0px rgba(0, 0, 0, 0.05), 0px 43px 43px 0px rgba(0, 0, 0, 0.04), 0px 97px 58px 0px rgba(0, 0, 0, 0.03), 0px 172px 69px 0px rgba(0, 0, 0, 0.01), 0px 269px 75px 0px rgba(0, 0, 0, 0);
  background: rgb(255, 255, 255);
}

.order-create__item {
  display: flex;
  gap: 20px;
}

.order-create__thumb {
  width: 50px;
  height: 50px;
}

.order-create__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.order-create__info {
  display: flex;
  flex-direction: column;
  height: 50px;
}

.order-create__name {
  flex: 1 1 auto;
}

.order-create__total {
  font-size: 20px;
  font-weight: 600;
  color: #41a2d0;
}

.order-create .form__item {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.order-create .form__item-title {
  font-size: 18px;
  font-weight: 600;
  line-height: 140%;
}

.order-create .form__group-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.order-create .form__group {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.order-create .form__controls {
  height: 40px;
  width: 100%;
  background-color: transparent;
  box-shadow: none;
}

.order-create .form__submit {
  padding: 30px;
}

.order-succes__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

.order-succes__image {
  max-width: 300px;
  width: 100%;
  height: 100%;
}

.order-succes__title {
  color: #41a2d0;
  font-weight: 600;
}

.reviews-page {
  padding: 60px 0 90px;
}

.service-reviews {
  padding: 60px 0 40px;
}

.service-reviews .reviews-page__head {
  margin-bottom: 40px;
}

.service-reviews .reviews-page__title {
  margin-bottom: 20px;
}

.form__checkbox-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 8px;
}

.form__checkbox-list .form__group-checkbox {
  display: flex;
  align-items: center;
  gap: 8px;
}

.reviews-page__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.reviews-page__head {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
  margin-bottom: 50px;
}

.reviews-page__title {
  margin-bottom: 0;
}

.reviews-page__lead {
  font-size: 18px;
  line-height: 150%;
  color: #41a2d0;
  font-weight: 600;
  max-width: 520px;
}

.reviews-page__btn {
  max-width: 320px;
  width: 100%;
}

.reviews-page__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 30px;
}

.reviews-page__card {
  padding: 30px 35px;
  border-radius: 10px;
  box-shadow: 0 0 5px rgba(65, 162, 208, 0.35);
  background: #fff;
  display: flex;
  flex-direction: column;
  gap: 20px;
  height: 100%;
}

.reviews-page__card--single {
  max-width: 800px;
  margin: 0 auto 30px;
}

.reviews-page__card-top {
  display: flex;
  align-items: center;
  gap: 16px;
}

.reviews-page__avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.reviews-page__avatar--placeholder {
  object-fit: contain;
  padding: 8px;
  background: #f5f5f5;
}

.reviews-page__name {
  font-weight: 700;
  line-height: 150%;
  color: #41a2d0;
  margin-bottom: 4px;
}

.reviews-page__date {
  font-size: 14px;
  opacity: 0.7;
  line-height: 150%;
}

.reviews-page__text {
  font-size: 16px;
  line-height: 160%;
  flex: 1 1 auto;
}

.reviews-page__text--full {
  font-size: 17px;
}

.reviews-page__back {
  display: inline-block;
  color: #41a2d0;
  font-weight: 500;
  text-decoration: underline;
}

.reviews-page--detail .reviews-page__title {
  font-size: 22px;
  text-align: left;
}

.blog__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
  gap: 30px;
  padding: 40px 0px;
}

.article {
  display: flex;
  flex-direction: column;
}

.article__image {
  width: 100%;
  height: 300px;
  display: flex;
  border-radius: 20px 20px 0px 0px;
  overflow: hidden;
}

.article__image img {
  max-width: 100%;
  object-fit: cover;
}

.article__content {
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
  background-color: #41a2d0;
  padding: 20px 20px;
  overflow: hidden;
  min-height: 150px;
  position: relative;
  border-radius: 0px 0px 20px 20px;
}

.article__content-title {
  line-height: 150%;
  font-size: 20px;
  font-weight: 500;
  position: relative;
  color: white;
  position: relative;
  z-index: 2;
}

.article__content-btn {
  margin-top: 20px;
  font-size: 18px;
  line-height: 150%;
  font-weight: 600;
  position: relative;
  color: white;
  text-decoration: underline !important;
}

.article__icon {
  position: absolute;
  top: 0;
  left: -10%;
  opacity: 0.3;
  height: 100%;
}

.blog-detail__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-bottom: 1px solid rgba(58, 67, 75, 0.2);
  padding: 0px 0px 30px;
  max-width: 1000px;
  margin: 0 auto;
}

.blog-detail__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 40px;
  flex: 1;
}

.blog-detail__meta-item {
  font-weight: 500;
  opacity: 0.8;
  margin: 0;
}

.blog-detail__author {
  font-weight: 500;
  opacity: 0.8;
  margin: 20px 0 0;
  padding: 0;
}

.blog-detail__eye {
  display: flex;
  align-items: center;
  gap: 5px;
}

.blog-detail__eye svg {
  width: 30px;
  height: 20px;
  opacity: 0.5;
}

.blog-detail__eye span {
  margin-top: 5px;
  font-weight: 500;
  opacity: 0.8;
}

.blog-detail__content {
  padding: 40px 0px;
  max-width: 998px;
  margin: 0 auto;
}

.blog-detail__content h1 {
  font-size: 45px;
}

.blog-detail__content h2 {
  font-size: 40px;
}

.blog-detail__content h3 {
  font-size: 35px;
}

.blog-detail__content h4 {
  font-size: 30px;
}

.blog-detail__content h1,
.blog-detail__content h2,
.blog-detail__content h3,
.blog-detail__content h4,
.blog-detail__content h5,
.blog-detail__content h6 {
  line-height: 150%;
  margin-bottom: 15px;
}

.blog-detail__content ul,
.blog-detail__content ol {
  margin-left: 15px;
  margin-bottom: 15px;
}

.blog-detail__content ol {
  counter-reset: custom-counter;
}

.blog-detail__content ol li {
  counter-increment: custom-counter;
  display: block;
  line-height: 150%;
  position: relative;
}

.blog-detail__content ol li:not(:last-child) {
  margin-bottom: 12px;
}

.blog-detail__content ol li::before {
  content: counter(custom-counter);
  color: #41a2d0;
  width: 8px;
  height: 8px;
  margin-right: 6px;
}

.blog-detail__content ul li {
  display: block;
  line-height: 150%;
  position: relative;
}

.blog-detail__content ul li:not(:last-child) {
  margin-bottom: 12px;
}

.blog-detail__content ul li::before {
  content: "○";
  color: #41a2d0;
  width: 8px;
  height: 8px;
  margin-right: 6px;
}

.blog-detail__content p {
  line-height: 150%;
  margin-bottom: 12px;
}

.blog-detail__content a {
  color: #41a2d0;
}

.banner {
  position: relative;
  margin: 20px 0px;
}

.banner__image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.banner__container {
  overflow: hidden;
  border-radius: 20px;
  position: relative;
}

.banner__container::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(58, 67, 75, 0.7);
  z-index: 1;
}

.banner__inner {
  position: relative;
  z-index: 2;
}

.banner__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 450px;
}

.banner__content h1 {
  color: white;
  line-height: 150%;
  text-align: center;
}

.banner__content p {
  color: white;
  line-height: 150%;
  max-width: 700px;
  text-align: center;
  margin: 0 auto;
}

.banner .breadcrumbs__item {
  color: white;
}

.banner .breadcrumbs__item::after {
  background-color: white;
}

.category-details {
  padding: 60px 0px;
}

.category-details__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: column-reverse;
  gap: 20px;
  margin-bottom: 40px;
}

.category-details .breadcrumbs {
  margin: 0px;
}

.category-details__title {
  font-size: 25px;
  font-weight: 700;
  font-family: "Inter", sans-serif;
  text-align: center;
  text-wrap: balance;
  line-height: 140%;
  margin-bottom: 0px;
}

.category-details__row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 30px;
}

.category-details__row-onecol {
  width: 100%;
  display: flex;
  align-items: flex-start;
  gap: 30px;
}

.category-details__nav-list {
  display: grid;
  gap: 20px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.category-details__nav-link {
  color: #333;
  text-decoration: none;
  line-height: 140%;
}

.category-details__nav-link:hover {
  color: rgb(65, 162, 208);
}

.category-details__nav-link--active {
  color: rgb(65, 162, 208);
  font-weight: bold;
}

.category-details__col--nav {
  flex: 0 0 290px;
  min-width: 290px;
}

@media screen and (max-width: 1200px) {
  .category-details__row-onecol {
    flex-direction: column;
  }

  .category-details__col--nav {
    flex: 1 1 auto;
    width: 100%;
    min-width: 0;
  }
}

.category-details__col {
  position: relative;
}

.category-details__col:nth-child(1) {
  background-color: white;
  border-radius: 26px;
  overflow: hidden;
  padding: 30px 20px;
  min-width: 290px;
}

.category-details__col:nth-child(1) .form__submit {
  width: 100%;
  min-width: 100%;
}

.category-details__col:nth-child(1)._show {
  left: 0%;
}

.category-details__col:nth-child(2) {
  flex: 1 1 auto;
}

.category-details__col .close {
  position: absolute;
  top: 10px;
  right: 10px;
}

.category-details .cards-catalog {
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
}

.category-details .category-details__filter {
  align-self: flex-end;
  margin-bottom: 20px;
  padding: 15px 40px;
  border-radius: 5px;
  color: white;
  background-color: #41a2d0;
}

.category-detail__text {
  padding: 0px 0px 60px;
}

.category-detail__text .text p {
  margin-bottom: 40px;
}

.category-detail__text .text h1 {
  font-size: 32px;
  margin-bottom: 20px;
}

.category-detail__text .text h2 {
  font-size: 24px;
  margin-bottom: 20px;
}

.category-detail__text .text h3 {
  font-size: 19px;
  margin-bottom: 20px;
}

.category-detail__text .text h4 {
  margin-bottom: 16px;
  font-size: 1rem;
}

.category-detail__text .text h5 {
  font-size: 14px;
  margin-bottom: 20px;
}

.category-detail__text .text h6 {
  font-size: 12px;
  margin-bottom: 20px;
}

.category-detail__text .text ul,
.category-detail__text .text ol {
  margin-bottom: 40px;
  margin-left: 25px;
}

.category-detail__text .text ul li,
.category-detail__text .text ol li {
  line-height: 150%;
}

.category-detail__text .text ul li:not(:last-child),
.category-detail__text .text ol li:not(:last-child) {
  margin-bottom: 10px;
}

.filter {
  padding-right: 10px;
}

.filter::-webkit-scrollbar {
  width: 1px;
}

.filter::-webkit-scrollbar-track {
  background: transparent;
}

.filter::-webkit-scrollbar-thumb {
  background-color: #41a2d0;
  border-radius: 20px;
}

.filter__body {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(58, 67, 75, 0.1);
}

.filter__label {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 20px;
}

.filter__submit {
  width: 100%;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #41a2d0;
  color: white;
  border-radius: 5px;
}
.product__description-col p{
  margin-top: 19px;
  line-height: normal;
  font-weight: 400;
}
.product__description-col p strong{
 font-weight: 400;
}
.product__description {
  /* display: flex; */
  justify-content: space-between;
  gap: 40px;
  padding: 80px 0px 0px;
}

.product__description-col {
  flex: 1 1 auto;
}

.product__description-col:last-child {
  flex: 0 0 30%;
}

.product__description-title {
  color: rgb(65, 162, 208);
  font-size: 16px;
  font-weight: 500;
  line-height: 20px;
  margin-bottom: 10px;
}

.product__description-text {
  max-width: 780px;
  color: rgb(0, 0, 0);
  font-size: 16px;
  font-weight: 400;
  line-height: 20px;
}

.product__related {
  margin-top: 80px;
}

.product__related--top {
  margin-bottom: 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.product__related--link {
  display: flex;
  justify-content: center;
  font-size: 18px;
  color: #41a2d0;
  margin: 40px 0px 40px 0px;
}

.product__related-title {
  color: rgb(65, 162, 208);
  font-size: 32px;
  font-weight: 500;
  line-height: 39px;
}

.product__color {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.product__color-item {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-basis: 200;
  border: 1px solid rgba(65, 162, 208, 0.5);
  border-radius: 5px;
  padding: 15px 20px;
}

.product-card {
  border-radius: 20px;
  box-shadow: 0px 11px 24px 0px rgba(0, 0, 0, 0.05), 0px 43px 43px 0px rgba(0, 0, 0, 0.04), 0px 97px 58px 0px rgba(0, 0, 0, 0.03), 0px 172px 69px 0px rgba(0, 0, 0, 0.01), 0px 269px 75px 0px rgba(0, 0, 0, 0);
  background: white;
  padding: 40px 45px;
  display: flex;
  gap: 75px;
}

.product-card__noimage {
  width: 405px;
  height: 510px;
  object-fit: cover;
  border-radius: 10px;
}

.product-card__head {
  display: grid;
  gap: 10px;
  margin-bottom: 45px;
}

.product-card__title {
  color: rgb(35, 35, 35);
  font-size: 40px;
  font-weight: 400;
  line-height: 150%;
}

.product-card__inner {
  display: flex;
  flex-direction: column;
  gap: 30px;
  justify-content: space-between;
}

.product-card__info {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
  gap: 50px 110px;
}

.product-card__price {
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
  color: black;
  font-size: 32px;
  font-weight: 500;
  line-height: 150%;
}

.product-card__note {
  font-size: 13px;
  line-height: 150%;
  max-width: 650px;
  margin-top: 20px;
  color: #41a2d0;
}

.product-card__action {
  display: flex;
  align-items: center;
  gap: 25px;
}

.product-card__action button,
.product-card__action a {
  display: flex;
  padding: 20px;
  border-radius: 5px;
  box-shadow: 0px 5px 11px 0px rgba(65, 162, 208, 0.2), 0px 19px 19px 0px rgba(65, 162, 208, 0.17), 0px 44px 26px 0px rgba(65, 162, 208, 0.1), 0px 78px 31px 0px rgba(65, 162, 208, 0.03), 0px 122px 34px 0px rgba(65, 162, 208, 0);
}

.product-card__add {
  background: rgb(65, 162, 208);
  font-size: 16px;
  font-weight: 600;
  line-height: 20px;
  color: white;
}

.product-card__btn {
  color: rgb(0, 0, 0);
  font-size: 16px;
  font-weight: 600;
  line-height: 20px;
}

.product-thumb__wrapper {
  flex-direction: row !important;
  justify-content: space-between;
}

.product-thumb__slide {
  width: 160px !important;
}

.product__wrapper {
  display: flex;
  align-items: center;
}

.product__image {
  min-width: 0;
  max-width: 450px;
  width: 100%;
}

.product__slide-link {
  cursor: zoom-in;
}

.product__button-next,
.product__button-prev {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: #41a2d0;
  color: white;
}

.product__button-next::after,
.product__button-prev::after {
  font-size: 14px;
}

.info-card__item select {
  box-sizing: border-box;
  border: 1px solid rgb(116, 116, 116);
  border-radius: 5px;
  background: rgb(243, 243, 243);
  border: none;
  width: 100%;
  max-width: 160px;
  height: 35px;
  color: rgb(0, 0, 0);
  font-size: 16px;
  font-weight: 300;
  line-height: 20px;
}

.info-card__info-char {
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  border-radius: 5px;
  background: rgb(243, 243, 243);
  border: none;
  width: 100%;
  max-width: 160px;
  height: 35px;
  color: rgb(0, 0, 0);
  font-size: 16px;
  font-weight: 400;
  line-height: 20px;
}

.info-card__label {
  color: rgb(116, 116, 116);
  font-size: 10px;
  font-weight: 500;
  line-height: 12px;
  margin-bottom: 5px;
}

.info-card__item-inner {
  display: flex;
  align-items: center;
  gap: 5px;
}

.info-card__item-inner input {
  width: 50px;
  text-align: center;
  height: 35px;
  box-sizing: border-box;
  border-radius: 5px;
  background: rgb(243, 243, 243);
}

.product-calc {
  margin-top: 60px;
}

@media screen and (max-width: 768px) {
  .product-calc {
    margin-top: 40px;
  }
}

.product-calc__heading {
  font-family: "Montserrat", sans-serif;
  font-size: 28px;
  font-weight: 700;
  line-height: 140%;
  text-align: center;
  text-wrap: balance;
  margin-bottom: 24px;
  color: #3a434b;
}

@media screen and (max-width: 768px) {
  .product-calc__heading {
    font-size: 22px;
    margin-bottom: 16px;
  }
}

.product-calc__box {
  display: flex;
  align-items: flex-start;
  gap: 32px;
  padding: 32px 40px;
  border-radius: 20px;
  background-color: rgb(243, 243, 243);
}

@media screen and (max-width: 992px) {
  .product-calc__box {
    flex-direction: column;
    gap: 20px;
    padding: 24px;
  }
}

.product-calc__subtitle {
  flex: 0 0 360px;
  margin: 0;
  font-size: 18px;
  font-weight: 500;
  line-height: 160%;
  color: #3a434b;
}

@media screen and (max-width: 992px) {
  .product-calc__subtitle {
    flex: 1 1 auto;
    font-size: 16px;
  }
}

.product-calc__form {
  flex: 1 1 auto;
  min-width: 0;
}

.product-calc__fields-row {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  margin-bottom: 14px;
}

@media screen and (max-width: 768px) {
  .product-calc__fields-row {
    flex-direction: column;
    gap: 16px;
  }
}

.product-calc__fields {
  flex: 1 1 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  min-width: 0;
}

@media screen and (max-width: 600px) {
  .product-calc__fields {
    grid-template-columns: 1fr;
  }
}

.product-calc__field label {
  display: block;
  font-size: 12px;
  font-weight: 500;
  line-height: 140%;
  margin-bottom: 8px;
  color: #3a434b;
}

.product-calc__field label span {
  color: #e53935;
}

.product-calc__input {
  width: 100%;
  padding: 14px 16px;
  border: 0.2px solid rgb(130, 130, 130);
  border-radius: 5px;
  box-shadow: inset 0 3px 6px 0 rgba(0, 0, 0, 0.05), inset 0 10px 10px 0 rgba(0, 0, 0, 0.04);
  background: rgb(255, 255, 255);
  color: rgb(84, 84, 84);
  font-size: 16px;
  font-weight: 300;
  line-height: 20px;
}

.product-calc__action {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 28px;
}

@media screen and (max-width: 768px) {
  .product-calc__action {
    width: 100%;
    padding-top: 0;
  }
}

.product-calc__submit {
  padding: 18px 28px;
  border: none;
  border-radius: 5px;
  background-color: #41A2D0;
  color: #ffffff;
  font-size: 16px;
  font-weight: 600;
  line-height: 20px;
  white-space: nowrap;
  cursor: pointer;
}

@media screen and (max-width: 768px) {
  .product-calc__submit {
    width: 100%;
  }
}

.product-calc__note {
  margin: 10px 0 0;
  font-size: 12px;
  line-height: 140%;
  text-align: center;
  color: rgba(58, 67, 75, 0.7);
}

.product-calc__checks {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.product-calc__agreement {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 10px;
  line-height: 130%;
  color: #3a434b;
  cursor: pointer;
}

.product-calc__agreement input[type=checkbox] {
  appearance: none;
  -webkit-appearance: none;
  flex-shrink: 0;
  width: 14px;
  height: 14px;
  margin-top: 2px;
  border: 1px solid #41A2D0;
  border-radius: 2px;
  background: #ffffff;
  cursor: pointer;
}

.product-calc__agreement input[type=checkbox]:checked {
  border-color: #41A2D0;
  background-color: #41A2D0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 10'%3E%3Cpath fill='none' stroke='%23ffffff' stroke-width='2' d='M1 5l3 3 7-7'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 10px 8px;
}

.product-calc__agreement-text a,
.product-calc__agreement-text a:link,
.product-calc__agreement-text a:visited,
.product-calc__agreement-text a:hover {
  color: #41A2D0;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.product-reviews {
  margin-top: 60px;
}

@media screen and (max-width: 768px) {
  .product-reviews {
    margin-top: 40px;
  }
}

.product-reviews__title {
  margin-bottom: 30px;
}

.product-reviews__grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  align-items: stretch;
}

.product-reviews__card {
  flex: 1 1 calc(33.333% - 20px);
  min-width: 280px;
  max-width: calc(33.333% - 20px);
  padding: 30px 35px;
  border-radius: 10px;
  box-shadow: 0 0 5px rgba(65, 162, 208, 0.35);
  background: #fff;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

@media screen and (max-width: 992px) {
  .product-reviews__card {
    flex: 1 1 calc(50% - 15px);
    max-width: calc(50% - 15px);
  }
}

@media screen and (max-width: 600px) {
  .product-reviews__card {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.product-reviews__card-top {
  display: flex;
  align-items: center;
  gap: 16px;
}

.product-reviews__avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.product-reviews__avatar--placeholder {
  object-fit: contain;
  padding: 8px;
  background: #f5f5f5;
}

.product-reviews__name {
  margin: 0;
  font-size: 18px;
  font-weight: 600;
  line-height: 140%;
  color: #41A2D0;
}

.product-reviews__text {
  font-size: 16px;
  line-height: 150%;
  color: #3a434b;
}

.product-reviews__action {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  min-width: 200px;
}

.product-reviews__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 200px;
  padding: 18px 28px;
  text-align: center;
}

.service-content:nth-child(even) {
  box-shadow: 0px 0px 4px rgba(58, 67, 75, 0.1);
}

.service-content:nth-child(odd) {
  background: rgb(65, 162, 208);
  background: linear-gradient(0deg, rgba(65, 162, 208, 0.09) 50%, rgb(255, 255, 255) 100%);
}

.service-content:nth-child(odd) .service-content__row {
  flex-direction: row-reverse;
}

.service-content__title {
  font-weight: 600;
  text-align: center;
  margin-bottom: 40px;
}

.service-content__row {
  display: flex;
  align-items: center;
  gap: 60px;
}

.service-content__col {
  flex: 0 0 50%;
}

.service-content__col:nth-child(1) {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.service-content__col img {
  max-width: 100%;
  max-height: 700px;
}

.service-content__text h2 {
  font-size: 35px;
  line-height: 120%;
}

.service-content__text a {
  color: #41a2d0;
  text-decoration: underline;
}

.service-content__text p {
  line-height: 140%;
}

.service-content__text p span {
  font-weight: 500;
}

.service-content__text p + p {
  margin-top: 20px;
}

.service-content__text ul,
.service-content__text ol {
  padding-left: 35px;
}

.service-content__text ul li,
.service-content__text ol li {
  padding-left: 16px;
  position: relative;
  line-height: 150%;
}

.service-content__text ul li + li,
.service-content__text ol li + li {
  margin-top: 15px;
}

.service-content__text ul li::before {
  content: "";
  position: absolute;
  top: 0%;
  margin-top: 10px;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: #41a2d0;
}

.service-content .hidden_content {
  display: -webkit-box;
  -webkit-line-clamp: 20;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.service-content .hidden_content.active {
  height: 100% !important;
}

.service-content__buttons {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
  margin-top: 50px;
}

.service-content__hide-btn {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  text-align: right;
}

.service-content__btn {
  width: 290px;
  color: #ffffff;
  text-decoration: none;
}

.gallery__inner {
  display: flex;
  align-items: flex-start;
  gap: 50px;
}

.gallery__category {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  gap: 10px;
  padding: 30px 20px;
  border-radius: 15px;
  background-color: white;
  border: 1px solid rgba(58, 67, 75, 0.06);
  box-shadow: 0px 8px 17px 0px rgba(65, 162, 208, 0.1), 0px 30px 30px 0px rgba(65, 162, 208, 0.09), 0px 68px 41px 0px rgba(65, 162, 208, 0.05), 0px 121px 48px 0px rgba(65, 162, 208, 0.01), 0px 188px 53px 0px rgba(65, 162, 208, 0);
}

.gallery__category-link {
  font-size: 18px;
  font-weight: 400;
  line-height: 140%;
  padding: 5px 20px;
  text-align: left;
  color: #949494;
}

.gallery__category-link._active {
  color: #3a434b;
}

.gallery__content {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 80px;
}

.gallery__images {
  width: 100%;
}

.gallery__images-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 20px;
}

.gallery__image {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 290px;
  box-shadow: 0px 8px 17px 0px rgba(65, 162, 208, 0.1), 0px 30px 30px 0px rgba(65, 162, 208, 0.09), 0px 68px 41px 0px rgba(65, 162, 208, 0.05), 0px 121px 48px 0px rgba(65, 162, 208, 0.01), 0px 188px 53px 0px rgba(65, 162, 208, 0);
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid rgba(58, 67, 75, 0.1);
}

.gallery__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.5s;
}

.gallery__images-title {
  text-align: center;
  font-weight: 500;
  font-size: 30px;
  margin-bottom: 40px;
  text-wrap: balance;
  line-height: 120%;
}

.mini-cart {
  position: fixed;
  top: 0;
  right: -200%;
  height: 100vh;
  width: 450px;
  background-color: #ffffff;
  z-index: 201;
  box-shadow: 0px 0px 10px rgba(58, 67, 75, 0.1);
  border-radius: 10px 0px 0px 10px;
  padding: 70px 20px 50px;
  transition: 0.5s;
}

.mini-cart__close {
  position: absolute;
  top: 15px;
  left: 15px;
  width: 25px;
  height: 25px;
}

.mini-cart__close::before,
.mini-cart__close::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  margin-left: -50%;
  height: 2px;
  margin-top: -1px;
  background-color: #d71635;
}

.mini-cart__close::before {
  transform: rotate(-45deg);
}

.mini-cart__close::after {
  transform: rotate(45deg);
}

.mini-cart__title {
  font-size: 22px;
  line-height: 140%;
  padding: 20px 0px;
  border-top: 1px solid rgba(58, 67, 75, 0.1);
}

.mini-cart__title span {
  font-size: 22px;
  color: #41a2d0;
}

.mini-cart__inner {
  height: calc(100vh - 300px);
  overflow-y: auto;
  overflow-x: hidden;
  padding-right: 10px;
}

.mini-cart__inner::-webkit-scrollbar {
  width: 4px;
}

.mini-cart__inner::-webkit-scrollbar-track {
  background: rgba(58, 67, 75, 0.2);
}

.mini-cart__inner::-webkit-scrollbar-thumb {
  background-color: #41a2d0;
  border-radius: 20px;
}

.mini-cart__item {
  display: flex;
  gap: 15px;
  padding: 15px 10px;
  border-bottom: 1px solid rgba(58, 67, 75, 0.1);
}

.mini-cart__item + .mini-cart__item {
  margin-top: 20px;
}

.mini-cart__thumb img {
  width: 70px;
  height: 70px;
  border-radius: 10px;
  object-fit: cover;
}

.mini-cart__content {
  width: 100%;
  display: flex;
  justify-content: space-between;
}

.mini-cart__char-item {
  font-size: 12px;
  max-width: 200px;
  line-height: 150%;
  color: #3a434b;
}

.mini-cart__info {
  flex: 1 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 5px;
}

.mini-cart__action {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.mini-cart__delete {
  align-self: flex-end;
  display: block;
  position: relative;
  width: 15px;
  height: 15px;
  padding: 5px;
  margin-top: 3px;
}

.mini-cart__delete::before,
.mini-cart__delete::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  margin-left: -50%;
  height: 2px;
  margin-top: -1px;
  background-color: #d71635;
}

.mini-cart__delete::before {
  transform: rotate(-45deg);
}

.mini-cart__delete::after {
  transform: rotate(45deg);
}

.mini-cart__counter {
  display: flex;
  gap: 5px;
}

.mini-cart__counter input {
  width: 20px;
  font-size: 14px;
  text-align: center;
  outline: none;
}

.mini-cart__counter button {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  width: 25px;
  height: 25px;
}

.mini-cart__links {
  margin: 20px 10px 0px;
}

.mini-cart__link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 50px;
  color: white;
  background-color: #41a2d0;
  border-radius: 10px;
}

.mini-cart__empty {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.mini-cart__empty-text {
  text-transform: uppercase;
  font-size: 40px;
  text-wrap: balance;
  font-weight: 900;
  color: rgba(58, 67, 75, 0.3);
  margin-bottom: 30px;
}

.mini-cart__empty-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50%;
  height: 50px;
  color: white;
  background-color: #41a2d0;
  border-radius: 20px;
}

.mini-cart._show {
  right: 0%;
}

#show-cart {
  position: relative;
}

.count-product-cart {
  position: absolute;
  top: 0%;
  right: 0%;
  padding: 10px;
  max-width: 20px;
  max-height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  color: white;
  background-color: #41a2d0;
}

.show-cart {
  position: relative;
}

.success {
  position: fixed;
  top: 20px;
  right: -100%;
  padding: 15px 30px;
  background-color: #3c8100;
  min-width: 290px;
  border-radius: 10px;
  transition: 0.5s;
  z-index: 999;
}

.success__body {
  text-align: center;
  color: white;
}

.show {
  right: 0;
}

.notification {
  position: fixed;
  top: 20px;
  right: -100%;
  width: 100%;
  max-width: 250px;
  padding: 20px;
  border-radius: 10px;
  z-index: 999;
  background-color: green;
  transition: 0.5s;
}

.notification.notification_show {
  right: 0;
}

.notification__content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.notification__success-image {
  width: 20px;
  height: 20px;
}

.notification__success-image img {
  width: 100%;
}

.notification__success-text {
  font-size: 16px;
  color: white;
}

@media screen and (min-width: 611px) {
  .stock__image {
    padding: 0px 0px 50%;
  }

  .stock__image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}

@media screen and (min-width: 620px) {
  .order-create__col {
    flex: 1 1 50%;
  }

  .order-create__col:last-child {
    flex: 1 1 20%;
    position: sticky;
    top: 90px;
  }
}

@media screen and (min-width: 768px) {
  .callback__content {
    flex: 1 1 50%;
  }

  .callback__action {
    flex: 1 1 50%;
  }

  .index-slider__slide {
    min-height: 650px;
  }

  .index-category__item:nth-child(1) {
    grid-column: span 3;
  }

  .index-category__item:nth-child(2) {
    grid-column: span 2;
  }

  .index-category__item:nth-child(3) {
    grid-column: span 2;
  }

  .index-category__item:nth-child(4) {
    grid-column: span 3;
  }

  .index-category__item:nth-child(5) {
    grid-column: span 3;
  }

  .index-category__item:nth-child(6) {
    grid-column: span 2;
  }

  .index-category__item:nth-child(7) {
    grid-column: span 2;
  }

  .index-category__item:nth-child(8) {
    grid-column: span 3;
  }

  .index-category__item:nth-child(9) {
    grid-column: span 3;
  }

  .index-category__item:nth-child(10) {
    grid-column: span 2;
  }

  .index-category__item:nth-child(11) {
    grid-column: span 2;
  }

  .index-category__item:nth-child(12) {
    grid-column: span 3;
  }

  .index-category__item:nth-child(13) {
    grid-column: span 3;
  }

  .index-category__item:nth-child(14) {
    grid-column: span 3;
  }

  .index-category__item:nth-child(15) {
    grid-column: span 2;
  }

  .index-category__item:nth-child(16) {
    grid-column: span 2;
  }

  .index-category__item:nth-child(17) {
    grid-column: span 3;
  }
}

@media screen and (min-width: 920px) {
  .index-work__item:first-child {
    grid-column: span 1;
    grid-row: span 2;
  }

  .index-reviews__text {
    margin-bottom: 96px;
  }

  .header--single {
    position: sticky;
  }

  .header__inner {
    height: 46px;
  }

  .submenu {
    position: absolute;
    top: 170%;
    left: 0;
    pointer-events: none;
    opacity: 0;
  }

  .mobile-nav {
    display: none;
  }

  .gallery__category {
    min-width: 310px;
  }
}

@media screen and (min-width: 990px) {
  .index-stock__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
    grid-gap: 32px;
    grid-auto-flow: dense;
    grid-template-rows: repeat(2, 300px);
  }

  .index-stock__item {
    grid-column: 3/5;
  }

  .index-stock__item--first {
    grid-column: 1/3;
    grid-row: 1/3;
  }

  .index-stock__item--first .index-stock__item-title {
    font-size: 56px;
    line-height: 120%;
    font-weight: 700;
  }

  .index-stock__item--first .index-stock__item-img {
    object-fit: none;
  }
}

@media screen and (min-width: 1024px) {
  .gallery__category {
    position: sticky;
    top: 100px;
  }
}

@media screen and (min-width: 1200px) {
  .index-work__slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .category-details__col .close {
    display: none;
  }

  .category-details .category-details__filter {
    display: none;
  }
}

@media screen and (max-width: 1200px) {
  .filter {
    gap: 20px;
    flex-wrap: wrap;
  }

  .category-details__row {
    flex-direction: column;
  }

  .category-details__row-onecol .category-details__col:nth-child(1) {
    width: 100%;
  }

  .category-details__col {
    width: 100%;
  }

  .category-details__col:nth-child(1) {
    position: fixed;
    top: 0;
    left: -150%;
    width: 100%;
    height: calc(100vh - 80px);
    overflow-y: auto;
    background-color: white;
    padding: 30px;
    z-index: 101;
    transition: 0.5s;
  }

  .category-details__col:nth-child(2) {
    display: flex;
    flex-direction: column;
  }

  .category-details .cards-catalog {
    grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
  }

  .gallery__inner {
    gap: 20px;
  }
}

@media screen and (max-width: 1042px) {
  .nav {
    padding: 0px 15px;
  }

  .nav__item a {
    font-size: 14px;
  }
}

@media screen and (max-width: 1024px) {
  .index-work__links {
    gap: 20px;
  }

  .index-work__links a {
    font-size: 20px;
  }

  .hero__image {
    display: none;
  }

  .header-under__address {
    display: none;
  }

  .product-card__action button,
  .product-card__action a {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .product-card__action {
    flex-direction: column;
  }

  .service-content:nth-child(odd) .service-content__row {
    flex-direction: column-reverse;
  }

  .service-content__row {
    gap: 30px;
    flex-direction: column;
  }

  .gallery__inner {
    flex-direction: column;
  }

  .gallery__category {
    width: 100%;
    flex-direction: row;
    min-width: none;
  }
}

@media screen and (max-width: 992px) {
  .cookie-notice {
    bottom: 80px;
  }

  .notice {
    bottom: 100px;
    right: 20px;
  }

  .notice__text {
    width: 30px;
    height: 30px;
  }
}

@media screen and (max-width: 990px) {
  .index-stock__item {
    min-height: 250px;
  }
}

@media screen and (max-width: 960px) {
  .index-work__inner {
    flex-direction: column;
  }

  .index-work .reviews-gis iframe {
    width: 100%;
  }

  .index-work .reviews-gis {
    width: 100%;
  }
}

@media screen and (max-width: 920px) {
  .main {
    padding: 50px 0px;
  }

  .top-main {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .top-main__left {
    order: 1;
  }

  .top-main__right {
    display: none;
  }

  .index-work__grid {
    grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
    grid-template-rows: auto;
  }

  .index-reviews__inner {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .index-reviews__info {
    display: flex;
    justify-content: space-between;
    gap: 30px;
  }

  .about__grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

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

  .header {
    opacity: 0;
    position: fixed;
    pointer-events: none;
  }

  .header__container {
    display: contents;
  }

  .header__callback {
    display: none;
  }

  .nav {
    padding: 30px 15px;
  }

  .nav__list {
    flex-direction: column;
  }

  .nav__item {
    width: 100%;
  }

  .nav__item {
    flex-wrap: wrap;
  }

  .submenu {
    background-color: transparent;
    display: none;
  }

  .submenu li a {
    color: white;
  }

  .footer__inner {
    gap: 50px;
    flex-wrap: wrap;
  }

  .footer__contact {
    width: 100%;
  }

  .footer__contact-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
  }

  section {
    padding: 40px 0px;
  }

  .product-card {
    display: flex;
    flex-direction: column;
  }
}

@media screen and (max-width: 768px) {
  .index-catalog__inner {
    flex-direction: column;
  }

  .index-work__links {
    flex-wrap: wrap;
  }

  .hero__title {
    font-size: 35px;
  }

  .index-service__cards {
    gap: 20px;
  }

  .cookie-notice {
    width: 100%;
    left: 0;
  }

  .header-under {
    padding: 20px 0px;
  }

  ._title-h2 {
    font-size: 35px;
  }

  .index-slider {
    padding: 0px 20px 60px;
  }

  .index-slider__slide-inner {
    flex-direction: column;
  }

  .index-slider__title {
    font-size: 30px;
  }

  .index-slider__subtitle {
    font-size: 18px;
  }

  .index-slider__prev,
  .index-slider__next {
    display: none;
  }

  .advantages {
    padding: 30px 15px;
  }

  .faq {
    padding: 60px 20px;
  }

  .index-about {
    padding: 60px 20px;
  }

  .index-category {
    padding: 60px 20px;
  }

  .index-category__item-top span {
    display: none;
  }

  .index-category__title {
    font-size: 25px;
  }

  .contact__grid {
    grid-template-columns: 1fr;
  }

  .order-create {
    padding: 40px 0px;
  }

  .product__description {
    flex-direction: column;
    padding: 40px 0px;
  }
}

@media screen and (max-width: 650px) {
  .top-main__logo img {
    width: 86px;
    height: 86px;
  }

  .top-main__logo span {
    font-size: 14px;
  }
}

@media screen and (max-width: 620px) {
  .index-stock {
    padding: 40px 0px 40px;
  }

  .index-catalog {
    padding: 40px 0px 40px;
  }

  .index-work {
    padding: 40px 0px;
  }

  .index-reviews {
    padding: 40px 0px;
  }

  .index-contact {
    padding: 40px 0px;
  }

  ._title {
    font-size: 16px;
  }

  .breadcrumbs__item {
    font-size: 11px;
  }

  .breadcrumbs__item:not(:last-child)::after {
    width: 5px;
  }

  .order-create__row {
    flex-direction: column;
  }

  .order-create__col {
    width: 100%;
  }

  .product__related {
    margin-top: 40px;
  }

  .product-card__image img {
    height: 100%;
    width: 100%;
  }

  .product-card__title {
    font-size: 30px;
  }

  .product-card__article {
    font-size: 14px;
  }

  .product-card__info {
    gap: 30px 30px;
  }

  .product-card__price {
    font-size: 25px;
  }

  .product__slide-link img {
    width: 100% !important;
    height: 100% !important;
  }

  .mini-cart {
    width: 100%;
    height: 100vh;
    margin: 0px;
  }
}

@media screen and (max-width: 600px) {
  .category-details .category-details__filter {
    width: 100%;
  }

  .reviews-page__card {
    padding: 24px 20px;
  }

  .reviews-page__grid {
    grid-template-columns: 1fr;
  }
}

@media screen and (max-width: 578px) {
  .top-main {
    gap: 0px;
  }
}

@media screen and (max-width: 560px) {
  .top-main__cart {
    display: none !important;
  }

  .service-content__col img {
    width: 100%;
    max-width: 100%;
    height: 100%;
  }
}

@media screen and (max-width: 550px) {
  .top-main__logo img {
    width: 56px;
    height: 56px;
  }

  .top-main__logo span {
    font-size: 10px;
  }
}

@media screen and (max-width: 520px) {
  .top-main__left {
    gap: 15px;
  }

  .top-main__address {
    font-size: 12px;
  }

  .top-main__phone {
    font-size: 12px;
  }

  .content-main__link {
    width: 220px;
    margin-top: 40px;
    font-size: 14px;
  }

  .index-stock__item-discount {
    font-size: 40px;
  }

  .index-reviews__info {
    flex-wrap: wrap;
  }

  .index-reviews__text {
    text-align: center;
  }

  .index-contact__grid {
    grid-template-columns: 1fr;
    padding: 30px 0px 0px;
  }

  .index-contact__item:nth-child(2) {
    display: none;
  }

  .index-contact__item:nth-child(1) {
    padding: 0px 20px;
  }

  .index-contact__title {
    font-size: 30px;
  }

  .index-contact__list-text {
    font-size: 17px;
  }

  .form__inner {
    padding: 20px;
  }

  .form__bottom {
    flex-direction: column-reverse;
  }

  .product-card {
    padding: 10px;
    gap: 35px;
  }
}

@media screen and (max-width: 425px) {
  .product-thumb__slider {
    display: none;
  }

  .hero__title {
    font-size: 25px;
  }

  .hero__buttons {
    flex-direction: column;
    gap: 15px;
  }

  .hero__button {
    width: 100%;
  }

  .hero__button--small::before {
    position: relative;
    top: 0;
    left: 0;
    opacity: 1;
    pointer-events: all;
    transform: translateX(0);
    border: none;
  }

  .hero__button--border::before {
    position: relative;
    top: 0;
    left: 0;
    opacity: 1;
    pointer-events: all;
    transform: translateX(0);
    border: none;
  }

  .header-under__logo img {
    width: 80px;
    height: 80px;
  }

  .header-under__logo span {
    font-size: 10px;
  }

  .header-under__action {
    flex-direction: column;
    align-items: flex-end;
    gap: 15px;
  }

  .footer__inner {
    flex-direction: column;
  }

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

  .footer__menu {
    flex-direction: column;
  }

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

  ._title-h2 {
    font-size: 28px;
  }

  .popup__content {
    padding: 40px 20px 60px;
  }

  .item-contact:last-child {
    min-height: 350px;
  }

  .category-detail__text .text p {
    margin-bottom: 25px;
  }

  .category-detail__text .text ul,
  .category-detail__text .text ol {
    margin-bottom: 25px;
  }

  .service-content__buttons {
    gap: 10px;
  }

  .service-content__btn {
    width: 100%;
  }
}

@media screen and (max-width: 390px) {
  .top-main__address {
    font-size: 10px;
  }
}

@media screen and (max-width: 375px) {
  .top-main {
    flex-wrap: wrap;
  }
}

@media (max-width: 920px) and (min-width: 520px) {
  .reviews__btn {
    width: 290px;
  }
}

@media (hover: hover) {
  .stock__col-link:hover {
    opacity: 0.8;
  }

  .filter__item:hover .filter__item-text {
    color: #41a2d0;
  }

  .filter__item:hover .filter__sublist {
    display: flex;
  }

  .hero__button--small:hover {
    border-radius: 5px 0px 0px 5px;
  }

  .hero__button--small:hover::before {
    opacity: 1;
    transform: translateX(0);
    pointer-events: all;
  }

  .index-service__card:hover img {
    transform: scale(1.01);
  }

  .nav__item a:hover {
    color: rgba(255, 255, 255, 0.8);
  }

  .nav__item:hover .submenu {
    opacity: 1;
    pointer-events: all;
    top: 100%;
  }

  .nav__item:hover img {
    transform: rotate(180deg);
  }

  .submenu li a:hover {
    color: #29779c;
    background-color: rgba(58, 67, 75, 0.05);
  }

  .footer__item:hover {
    color: white;
  }

  ._btn:hover {
    background-color: #29779c;
  }

  #time-work:hover .item-contact__hidden {
    display: grid;
  }

  .gallery__category-link:hover {
    color: #3a434b;
  }

  .gallery__image:hover img {
    transform: scale(1.05);
  }
}

@media (hover: hover) and (hover: hover) {
  .filter__item:hover .filter__sublist-link:hover {
    color: #41a2d0;
  }
}
/*# sourceMappingURL=maps/main.css.map */
