:root {
  --main-bg-color: #fff;
  --primary-color: #252525;
  --black: #252525;
  --white: #fff;
  --gray-element: #9f9d9d;
  --gray-text: #737373;
  --gray-light-bg: #f5f5f5;
  --blue-brand: #08a2b0;
  --green-brand: #07b05f;
  --dark: #006d77;
  --stroke: #dadada;
  --body-font-size: 17px;
  --font-family: "Golos Text", sans-serif;
  --second-family: "Exo 2", sans-serif;
}

html {
  height: 100%;
  margin: 0;
  padding: 0;
}

article, aside, details, figcaption, figure, footer, header, hgroup, main, nav, section, summary, address {
  display: block;
}

audio, canvas {
  display: inline-block;
}

video {
  display: block;
}

audio:not([controls]) {
  display: none;
  height: 0;
}

address {
  font-style: normal;
}

ul, ol, li, form, fieldset, a, img, div, figure, address {
  margin: 0;
  padding: 0;
  border: 0;
}

ul {
  list-style: inside;
}

ol {
  list-style: inside;
}

ul li {
  list-style: none;
}

ol li {
  list-style: decimal inside;
}

ol {
  padding: 10px 0;
}

ol li {
  margin: 0 0 20px 0;
}

body {
  height: 100%;
  position: relative;
  background: var(--main-bg-color);
}

body, td, input, textarea, button {
  margin: 0px;
  padding: 0px;
}

body * {
  box-sizing: border-box;
}

a {
  text-decoration: none;
  color: inherit;
  transition: 0.15s;
}

a:hover {
  text-decoration: none;
}

a, a:active, a:focus {
  outline: none;
}

b,
strong {
  font-weight: 700;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

.main {
  position: relative;
}

.cbc {
  overflow: hidden;
  margin: 0 auto;
  position: relative;
}

input::-moz-placeholder {
  opacity: 0.7;
  color: var(--primary-color);
}

input::placeholder {
  opacity: 0.7;
  color: var(--primary-color);
}

textarea::-moz-placeholder {
  opacity: 0.7;
  color: var(--primary-color);
}

textarea::placeholder {
  opacity: 0.7;
  color: var(--primary-color);
}

input[type=submit] {
  cursor: pointer;
}

textarea,
button,
input[type=text],
input[type=password] {
  -webkit-appearance: none;
  outline: none;
}

body, td, input, textarea, button {
  color: var(--primary-color);
  font-family: var(--font-family);
}

h1, h2, h3, h4 {
  font-weight: normal;
}

.row {
  display: flex;
  flex-wrap: wrap;
  margin: -10px;
}
@media (max-width: 767px) {
  .row {
    margin: -7.5px;
  }
}

.col-1, .col-2, .col-3, .col-4, .col-5, .col-6, .col-7, .col-8, .col-9, .col-10, .col-11, .col-12, .col,
.col-auto, .col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12, .col-sm,
.col-sm-auto, .col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12, .col-md,
.col-md-auto, .col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12, .col-lg,
.col-lg-auto, .col-xl-1, .col-xl-2, .col-xl-3, .col-xl-4, .col-xl-5, .col-xl-6, .col-xl-7, .col-xl-8, .col-xl-9, .col-xl-10, .col-xl-11, .col-xl-12, .col-xl,
.col-xl-auto {
  position: relative;
  width: 100%;
  padding: 10px;
}
@media (max-width: 767px) {
  .col-1, .col-2, .col-3, .col-4, .col-5, .col-6, .col-7, .col-8, .col-9, .col-10, .col-11, .col-12, .col,
  .col-auto, .col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12, .col-sm,
  .col-sm-auto, .col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12, .col-md,
  .col-md-auto, .col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12, .col-lg,
  .col-lg-auto, .col-xl-1, .col-xl-2, .col-xl-3, .col-xl-4, .col-xl-5, .col-xl-6, .col-xl-7, .col-xl-8, .col-xl-9, .col-xl-10, .col-xl-11, .col-xl-12, .col-xl,
  .col-xl-auto {
    padding: 7.5px;
  }
}

.col {
  flex-basis: 0;
  flex-grow: 1;
  max-width: 100%;
}

.col-auto {
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}

.col-1 {
  flex: 0 0 8.333333%;
  max-width: 8.333333%;
}

.col-2 {
  flex: 0 0 16.666667%;
  max-width: 16.666667%;
}

.col-3 {
  flex: 0 0 25%;
  max-width: 25%;
}

.col-4 {
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}

.col-5 {
  flex: 0 0 41.666667%;
  max-width: 41.666667%;
}

.col-6 {
  flex: 0 0 50%;
  max-width: 50%;
}

.col-7 {
  flex: 0 0 58.333333%;
  max-width: 58.333333%;
}

.col-8 {
  flex: 0 0 66.666667%;
  max-width: 66.666667%;
}

.col-9 {
  flex: 0 0 75%;
  max-width: 75%;
}

.col-10 {
  flex: 0 0 83.333333%;
  max-width: 83.333333%;
}

.col-11 {
  flex: 0 0 91.666667%;
  max-width: 91.666667%;
}

.col-12 {
  flex: 0 0 100%;
  max-width: 100%;
}

.order-0 {
  order: 0;
}

.order-1 {
  order: 1;
}

.order-2 {
  order: 2;
}

.order-3 {
  order: 3;
}

.order-4 {
  order: 4;
}

.order-5 {
  order: 5;
}

.order-6 {
  order: 6;
}

.order-7 {
  order: 7;
}

.order-8 {
  order: 8;
}

.order-9 {
  order: 9;
}

.order-10 {
  order: 10;
}

.order-11 {
  order: 11;
}

.order-12 {
  order: 12;
}

@media (min-width: 576px) {
  .col-sm {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%;
  }
  .col-sm-auto {
    flex: 0 0 auto;
    width: auto;
    max-width: 100%;
  }
  .col-sm-1 {
    flex: 0 0 8.333333%;
    max-width: 8.333333%;
  }
  .col-sm-2 {
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
  }
  .col-sm-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .col-sm-4 {
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
  .col-sm-5 {
    flex: 0 0 41.666667%;
    max-width: 41.666667%;
  }
  .col-sm-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .col-sm-7 {
    flex: 0 0 58.333333%;
    max-width: 58.333333%;
  }
  .col-sm-8 {
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
  }
  .col-sm-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }
  .col-sm-10 {
    flex: 0 0 83.333333%;
    max-width: 83.333333%;
  }
  .col-sm-11 {
    flex: 0 0 91.666667%;
    max-width: 91.666667%;
  }
  .col-sm-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .order-sm-0 {
    order: 0;
  }
  .order-sm-1 {
    order: 1;
  }
  .order-sm-2 {
    order: 2;
  }
  .order-sm-3 {
    order: 3;
  }
  .order-sm-4 {
    order: 4;
  }
  .order-sm-5 {
    order: 5;
  }
  .order-sm-6 {
    order: 6;
  }
  .order-sm-7 {
    order: 7;
  }
  .order-sm-8 {
    order: 8;
  }
  .order-sm-9 {
    order: 9;
  }
  .order-sm-10 {
    order: 10;
  }
  .order-sm-11 {
    order: 11;
  }
  .order-sm-12 {
    order: 12;
  }
}
@media (min-width: 768px) {
  .col-md {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%;
  }
  .col-md-auto {
    flex: 0 0 auto;
    width: auto;
    max-width: 100%;
  }
  .col-md-1 {
    flex: 0 0 8.333333%;
    max-width: 8.333333%;
  }
  .col-md-2 {
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
  }
  .col-md-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .col-md-4 {
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
  .col-md-5 {
    flex: 0 0 41.666667%;
    max-width: 41.666667%;
  }
  .col-md-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .col-md-7 {
    flex: 0 0 58.333333%;
    max-width: 58.333333%;
  }
  .col-md-8 {
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
  }
  .col-md-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }
  .col-md-10 {
    flex: 0 0 83.333333%;
    max-width: 83.333333%;
  }
  .col-md-11 {
    flex: 0 0 91.666667%;
    max-width: 91.666667%;
  }
  .col-md-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .order-md-0 {
    order: 0;
  }
  .order-md-1 {
    order: 1;
  }
  .order-md-2 {
    order: 2;
  }
  .order-md-3 {
    order: 3;
  }
  .order-md-4 {
    order: 4;
  }
  .order-md-5 {
    order: 5;
  }
  .order-md-6 {
    order: 6;
  }
  .order-md-7 {
    order: 7;
  }
  .order-md-8 {
    order: 8;
  }
  .order-md-9 {
    order: 9;
  }
  .order-md-10 {
    order: 10;
  }
  .order-md-11 {
    order: 11;
  }
  .order-md-12 {
    order: 12;
  }
}
@media (min-width: 992px) {
  .col-lg {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%;
  }
  .col-lg-auto {
    flex: 0 0 auto;
    width: auto;
    max-width: 100%;
  }
  .col-lg-1 {
    flex: 0 0 8.333333%;
    max-width: 8.333333%;
  }
  .col-lg-2 {
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
  }
  .col-lg-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .col-lg-4 {
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
  .col-lg-5 {
    flex: 0 0 41.666667%;
    max-width: 41.666667%;
  }
  .col-lg-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .col-lg-7 {
    flex: 0 0 58.333333%;
    max-width: 58.333333%;
  }
  .col-lg-8 {
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
  }
  .col-lg-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }
  .col-lg-10 {
    flex: 0 0 83.333333%;
    max-width: 83.333333%;
  }
  .col-lg-11 {
    flex: 0 0 91.666667%;
    max-width: 91.666667%;
  }
  .col-lg-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .order-lg-0 {
    order: 0;
  }
  .order-lg-1 {
    order: 1;
  }
  .order-lg-2 {
    order: 2;
  }
  .order-lg-3 {
    order: 3;
  }
  .order-lg-4 {
    order: 4;
  }
  .order-lg-5 {
    order: 5;
  }
  .order-lg-6 {
    order: 6;
  }
  .order-lg-7 {
    order: 7;
  }
  .order-lg-8 {
    order: 8;
  }
  .order-lg-9 {
    order: 9;
  }
  .order-lg-10 {
    order: 10;
  }
  .order-lg-11 {
    order: 11;
  }
  .order-lg-12 {
    order: 12;
  }
}
@media (min-width: 1200px) {
  .col-xl {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%;
  }
  .col-xl-auto {
    flex: 0 0 auto;
    width: auto;
    max-width: 100%;
  }
  .col-xl-1 {
    flex: 0 0 8.333333%;
    max-width: 8.333333%;
  }
  .col-xl-2 {
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
  }
  .col-xl-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .col-xl-4 {
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
  .col-xl-5 {
    flex: 0 0 41.666667%;
    max-width: 41.666667%;
  }
  .col-xl-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .col-xl-7 {
    flex: 0 0 58.333333%;
    max-width: 58.333333%;
  }
  .col-xl-8 {
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
  }
  .col-xl-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }
  .col-xl-10 {
    flex: 0 0 83.333333%;
    max-width: 83.333333%;
  }
  .col-xl-11 {
    flex: 0 0 91.666667%;
    max-width: 91.666667%;
  }
  .col-xl-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .order-xl-0 {
    order: 0;
  }
  .order-xl-1 {
    order: 1;
  }
  .order-xl-2 {
    order: 2;
  }
  .order-xl-3 {
    order: 3;
  }
  .order-xl-4 {
    order: 4;
  }
  .order-xl-5 {
    order: 5;
  }
  .order-xl-6 {
    order: 6;
  }
  .order-xl-7 {
    order: 7;
  }
  .order-xl-8 {
    order: 8;
  }
  .order-xl-9 {
    order: 9;
  }
  .order-xl-10 {
    order: 10;
  }
  .order-xl-11 {
    order: 11;
  }
  .order-xl-12 {
    order: 12;
  }
}
/* elements */
.title-h1,
.title-h2,
.title-h3 {
  padding: 0;
  margin: 0;
  font-family: var(--second-family);
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 40px;
}

.title-h1 {
  font-weight: 500;
  font-size: 68px;
  line-height: 140%;
  margin-bottom: 30px;
}
@media (max-width: 1200px) {
  .title-h1 {
    font-size: 46px;
  }
}
@media (max-width: 568px) {
  .title-h1 {
    font-size: 34px;
    margin: 0 0 30px;
  }
}
.title-h1 strong {
  font-weight: 600;
  font-size: 86px;
  line-height: 105%;
  text-transform: uppercase;
  color: var(--blue-brand);
  display: block;
  margin-top: 15px;
}
@media (max-width: 1200px) {
  .title-h1 strong {
    font-size: 72px;
  }
}
@media (max-width: 992px) {
  .title-h1 strong {
    font-size: 68px;
  }
}
@media (max-width: 568px) {
  .title-h1 strong {
    font-size: 42px;
  }
}

.title-h2 {
  font-weight: 500;
  font-size: 42px;
  line-height: 140%;
}
@media (max-width: 568px) {
  .title-h2 {
    font-size: 32px;
    margin: 0 0 30px;
  }
}
@media (max-width: 390px) {
  .title-h2 {
    font-size: 32px;
  }
}
.title-h2 span {
  background: linear-gradient(114deg, #08a2b0 0%, #08b060 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.title-h3 {
  font-weight: 500;
  font-size: 32px;
  line-height: 120%;
}
@media (max-width: 568px) {
  .title-h3 {
    font-size: 30px;
  }
}

.cms_submit,
.button {
  cursor: pointer;
  transition: 0.15s;
  border: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
  padding: 0 36px;
  height: 64px;
  border-radius: 40px;
  text-decoration: none;
  min-width: 160px;
  font-weight: 500;
  font-size: 17px;
  color: var(--black);
  background: transparent;
  border: 1px solid #08a2b0;
}
@media (max-width: 1200px) {
  .cms_submit,
  .button {
    padding: 0 20px;
    height: 54px;
    min-width: 120px;
    font-size: 16px;
  }
}
.cms_submit:hover,
.button:hover {
  color: var(--white);
  background: linear-gradient(114deg, #08a2b0 0%, #08b060 100%);
}
.cms_submit._md,
.button._md {
  height: 52px;
  font-size: 17px;
  padding: 0 26px;
}
.cms_submit._sm,
.button._sm {
  height: 49px;
  font-size: 15px;
  padding: 0 28px;
}
.cms_submit._white,
.button._white {
  color: var(--white);
  border-color: var(--white);
}
.cms_submit._white:hover,
.button._white:hover {
  color: var(--black);
  background: var(--white);
}
.cms_submit._fill-white,
.button._fill-white {
  color: var(--black);
  border-color: var(--white);
  background: var(--white);
}
.cms_submit._fill-white:hover,
.button._fill-white:hover {
  color: var(--white);
  background: transparent;
}
.cms_submit._green,
.button._green {
  color: var(--white);
  border: none;
  background: linear-gradient(114deg, #08a2b0 0%, #08b060 100%);
  transition: none;
}
.cms_submit._green:hover,
.button._green:hover {
  background: var(--blue-brand);
}

.typography {
  font-weight: 300;
  font-size: 18px;
  line-height: 140%;
  color: var(--gray-text);
}
@media (max-width: 1200px) {
  .typography {
    font-size: 16px;
  }
}
.typography h1, .typography h2, .typography h3, .typography h4 {
  font-family: var(--second-family);
  font-weight: 500;
  color: var(--black);
  line-height: 140%;
}
.typography h2 {
  font-size: 42px;
  margin: 36px 0;
}
.typography h2:first-child {
  margin-top: 0;
}
.typography h2:last-child {
  margin-bottom: 0;
}
.typography h3 {
  font-size: 22px;
  margin: 24px 0;
}
.typography h3:first-child {
  margin-top: 0;
}
.typography h3:last-child {
  margin-bottom: 0;
}
.typography p {
  font-size: 18px;
  line-height: 160%;
  margin: 0 0 15px;
}
@media (max-width: 1200px) {
  .typography p {
    font-size: 16px;
  }
}
.typography p:last-child {
  margin-bottom: 0;
}
.typography ul {
  margin-bottom: 20px;
  padding-left: 10px;
}
.typography ul li {
  font-size: 18px;
  line-height: 160%;
  padding-left: 15px;
  margin-bottom: 10px;
  position: relative;
}
@media (max-width: 568px) {
  .typography ul li {
    font-size: 16px;
  }
}
.typography ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 12px;
  width: 4px;
  height: 4px;
  background-color: var(--black);
  border-radius: 50%;
}
.typography ol {
  margin-bottom: 20px;
  padding-left: 20px;
  counter-reset: custom-counter;
  list-style: none;
}
.typography ol:last-child {
  margin-bottom: 0;
}
.typography ol li {
  font-size: 18px;
  line-height: 160%;
  padding-left: 15px;
  margin-bottom: 10px;
  position: relative;
  list-style: none;
}
@media (max-width: 568px) {
  .typography ol li {
    font-size: 16px;
    line-height: 1.5;
  }
}
.typography ol li::before {
  content: counter(custom-counter) ".";
  counter-increment: custom-counter;
  position: absolute;
  left: 0;
  top: 0;
}
.typography a {
  color: var(--red-new);
  text-decoration: underline;
}
.typography a:hover {
  text-decoration: none;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 14px;
  margin-bottom: 20px;
  font-size: 15px;
  line-height: 140%;
  color: var(--gray-element);
  scrollbar-width: none;
}
@media (max-width: 568px) {
  .breadcrumb {
    overflow: auto;
    margin: 14px -15px 20px;
    padding: 0 15px;
    font-size: 14px;
  }
}
.breadcrumb::-webkit-scrollbar {
  display: none;
}
.breadcrumb a {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--gray-element);
  white-space: nowrap;
}
.breadcrumb a::after {
  content: "";
  width: 4px;
  height: 4px;
  background: var(--gray-element);
  border-radius: 50%;
}
@media (min-width: 992px) {
  .breadcrumb a:hover {
    color: var(--green-brand);
  }
}
.breadcrumb span {
  color: var(--green-brand);
  white-space: nowrap;
}

.forms label:not([class]) {
  display: block;
  margin-bottom: 10px;
  font-size: 16px;
}
.forms__label {
  margin-bottom: 8px;
}
@media (max-width: 767px) {
  .forms__label {
    margin-bottom: 5px;
  }
}
.forms__label span {
  color: var(--blue-brand);
}
.forms__row {
  display: flex;
  margin: 0 -4px 15px;
}
.forms__row:last-child {
  margin-bottom: 0;
}
.forms__field {
  padding: 0 4px;
  width: 100%;
}
.forms__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
}
@media (max-width: 767px) {
  .forms__footer {
    flex-direction: column;
  }
}
.forms select,
.forms textarea,
.forms input[type=text],
.forms input[type=password],
.forms input[type=email],
.forms input[type=tel] {
  width: 100%;
  height: 61px;
  padding: 0 18px;
  font-size: 16px;
  text-align: left;
  background: var(--white);
  border: none;
  border-radius: 2px;
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.02);
  background: var(--white);
}
.forms textarea {
  padding: 18px;
  resize: none;
  height: 260px;
}
@media (max-width: 568px) {
  .forms textarea {
    height: 200px;
  }
}
.forms select {
  width: 100%;
  -webkit-appearance: none;
  outline: none;
  background: url(../images/select-arrow.svg) var(--white) right 18px center no-repeat;
}
.forms select option:disabled {
  display: none;
}
.forms .jq-selectbox {
  width: 100%;
}

.checkbox {
  display: inline-flex;
  cursor: pointer;
  font-size: 18px;
  line-height: 1.6;
  color: var(--gray-dark);
  transition: 0.3s;
  position: relative;
}
.checkbox input[type=checkbox] {
  width: 24px;
  height: 24px;
  background: var(--white);
  border: 1px solid var(--green-brand);
}
.checkbox.stylization input {
  position: absolute;
  opacity: 0;
  z-index: -1;
}
.checkbox sup {
  position: relative;
  top: 2px;
  display: block;
  border-radius: 3px;
  width: 24px;
  min-width: 24px;
  height: 24px;
  background: url(../images/checkbox.svg) center no-repeat;
  margin-right: 8px;
}
.checkbox input:checked ~ sup {
  background: url(../images/checkbox-active.svg) center no-repeat;
}

.form-field__note {
  font-size: 16px;
  line-height: 140%;
  color: var(--gray-dark);
  margin-top: 10px;
}

.burger-btn {
  width: 30px;
  height: 21px;
  cursor: pointer;
  transition: 0.3s;
  overflow: hidden;
  background: none;
  border: none;
  position: relative;
  outline: none;
}
.burger-btn span {
  position: absolute;
  left: 0;
  top: 9px;
  width: 30px;
  height: 3px;
  background-color: var(--blue-brand);
  transition: 0.3s;
}
.burger-btn::before, .burger-btn::after {
  content: "";
  position: absolute;
  left: 0;
  width: 30px;
  height: 3px;
  background-color: var(--blue-brand);
  transition: 0.3s;
}
.burger-btn::before {
  top: 0;
}
.burger-btn::after {
  bottom: 0;
}
.burger-btn.open {
  height: 30px;
}
.burger-btn.open span {
  opacity: 0;
}
.burger-btn.open::before, .burger-btn.open::after {
  width: 28px;
  background: var(--blue-brand);
}
.burger-btn.open::before {
  top: 50%;
  margin-top: -1px;
  transform: rotate(-45deg);
}
.burger-btn.open::after {
  bottom: 50%;
  margin-bottom: -2px;
  transform: rotate(45deg);
}

.more-link {
  display: inline-flex;
  align-items: center;
  font-weight: 500;
  font-size: 14px;
  line-height: 24px;
  text-transform: uppercase;
  font-family: var(--second-family);
  transition: 0.3s;
}
.more-link::after {
  content: "";
  width: 41px;
  height: 12px;
  background: url(../images/more-arrow.svg) right center no-repeat;
  margin-left: 40px;
  transition: 0.3s;
}
@media (max-width: 767px) {
  .more-link::after {
    margin-left: 20px;
  }
}
.more-link:hover {
  color: var(--blue-brand);
}

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

.tabs__item {
  cursor: pointer;
}

.tabs__item:first-child {
  margin-left: 0;
}

.tabs__item:hover,
.tabs__item.active {
  opacity: 1;
}

.tabs__box {
  display: none;
}

.tabs__box.visible {
  display: block;
}

/* plugins */
.swiper-button {
  top: 50%;
  margin-top: -31px;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  border: none;
  background: var(--white);
  box-shadow: 0 4px 20px 0 rgba(0, 0, 0, 0.08);
  transform: scale(1.0000001);
  transition: 0.5s;
}
.swiper-button:hover {
  transform: scale(1.1);
}
.swiper-button:after {
  content: "";
  width: 34px;
  height: 34px;
  background-position: center;
  background-repeat: no-repeat;
}
.swiper-button-prev::after {
  background-image: url(../images/arrow-prev.svg);
}
.swiper-button-next::after {
  background-image: url(../images/arrow-next.svg);
}
.swiper-button-disabled {
  opacity: 1 !important;
}
.swiper-button-disabled::after {
  filter: brightness(0) invert(0.6);
}
.swiper-pagination-bullet {
  width: 60px;
  height: 3px;
  background-color: var(--white);
  opacity: 0.3;
  border-radius: 5px;
  transition: 0.5s;
}
@media (max-width: 767px) {
  .swiper-pagination-bullet {
    width: 25px;
  }
}
.swiper-pagination-bullet-active {
  width: 100px;
  background-color: var(--white);
  opacity: 1;
}
@media (max-width: 767px) {
  .swiper-pagination-bullet-active {
    width: 50px;
  }
}
.swiper-pagination-bullet:not(.swiper-pagination-bullet-active):hover {
  opacity: 0.7;
}

.swiper-horizontal > .swiper-scrollbar {
  width: 100%;
  left: 0;
  bottom: 0;
}
.swiper-horizontal > .swiper-scrollbar .swiper-scrollbar-drag {
  background: var(--blue-brand);
}

.fancybox__content > .carousel__button.is-close {
  width: 30px;
  height: 30px;
  right: 30px;
  top: 30px;
  opacity: 0.5;
  background: url(../images/close-button-white.svg) center no-repeat;
}
.fancybox__content > .carousel__button.is-close:hover {
  opacity: 1;
}
.fancybox__content > .carousel__button.is-close > * {
  display: none;
}

/* support class style */
.full-bg {
  margin-left: calc((100vw - 1300px) / -2);
  margin-right: calc((100vw - 1300px) / -2);
  padding-left: calc((100vw - 1300px) / 2);
  padding-right: calc((100vw - 1300px) / 2);
}
@media (max-width: 1380px) {
  .full-bg {
    margin-left: -40px;
    margin-right: -40px;
    padding-left: 40px;
    padding-right: 40px;
  }
}
@media (max-width: 1200px) {
  .full-bg {
    margin-left: -20px;
    margin-right: -20px;
    padding-left: 20px;
    padding-right: 20px;
  }
}

.light-bg {
  background: var(--gray-light-bg);
}

.cbc {
  overflow: hidden;
}

body.open-nav {
  overflow: hidden;
}
body.open-nav .cbc {
  overflow: hidden;
}
@media (max-width: 767px) {
  body.open-nav .header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9999;
  }
  body.open-nav .header__top {
    z-index: 999;
  }
  body.open-nav .header__action {
    z-index: 999;
  }
}

.container {
  margin: 0 auto;
  position: relative;
  padding-left: 40px;
  padding-right: 40px;
  max-width: 1380px;
  width: 100%;
}
@media (max-width: 1200px) {
  .container {
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media (max-width: 568px) {
  .container {
    padding-left: 15px;
    padding-right: 15px;
  }
}

@media (max-width: 992px) {
  .header {
    padding-top: 80px;
  }
}
@media (max-width: 568px) {
  .header {
    padding-top: 70px;
  }
}
.header .container {
  display: flex;
  align-items: center;
  height: 100%;
  gap: 60px;
}
@media (max-width: 1380px) {
  .header .container {
    gap: 30px;
  }
}
@media (max-width: 1200px) {
  .header .container {
    gap: 50px;
  }
}
@media (max-width: 992px) {
  .header .container {
    gap: 24px;
  }
}
.header__wrap {
  height: 84px;
}
@media (max-width: 992px) {
  .header__wrap {
    height: 64px;
    position: fixed;
    box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.1);
    left: 0;
    right: 0;
    top: 0;
    z-index: 999;
    background: var(--white);
  }
}
.header__logo {
  display: flex;
  align-items: center;
  gap: 30px;
}
@media (max-width: 992px) {
  .header__logo {
    flex: 1;
  }
}
.header__contacts {
  display: flex;
  align-items: center;
  gap: 28px;
}
@media (max-width: 992px) {
  .header__contacts {
    gap: 20px;
  }
}
.header__contacts .button {
  white-space: nowrap;
}
@media (max-width: 1200px) {
  .header__contacts .button {
    display: none;
  }
}
.header__mobile {
  display: none;
}
@media (max-width: 992px) {
  .header__mobile {
    display: flex;
    align-items: center;
    gap: 20px;
  }
}
.header__controls {
  display: flex;
  align-items: center;
  gap: 28px;
}
@media (max-width: 992px) {
  .header__controls {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
    background: var(--white);
    box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.1);
    z-index: 999;
    padding: 4px 20px 0 20px;
  }
}
@media (min-width: 992px) {
  .header__controls .catalog-button {
    display: none;
  }
}
.header__nav {
  flex: 1;
}
@media (max-width: 992px) {
  .header__nav {
    display: none;
    position: fixed;
    background: var(--white);
    top: 80px;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: auto;
    padding-top: 20px;
    padding-left: 20px;
    padding-right: 20px;
    padding-bottom: 100px;
  }
}
@media (max-width: 568px) {
  .header__nav {
    top: 64px;
    padding-top: 15px;
    padding-left: 15px;
    padding-right: 15px;
  }
}

.header-logo {
  display: block;
}
.header-logo img {
  display: block;
}

.header-compare {
  display: flex;
  align-items: center;
  gap: 20px;
  min-width: 24px;
}
@media (max-width: 992px) {
  .header-compare {
    justify-content: center;
    flex-direction: column;
    gap: 4px;
  }
}
.header-compare__icon {
  position: relative;
  width: 24px;
  height: 24px;
}
.header-compare__icon img {
  display: block;
}
@media (max-width: 992px) {
  .header-compare__icon img {
    width: 24px;
    height: 24px;
  }
}
.header-compare__icon span {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  bottom: 10px;
  left: 13px;
  background: linear-gradient(114deg, #08a2b0 0%, #08b060 100%);
  border-radius: 20px;
  padding: 0 5px;
  min-width: 24px;
  height: 24px;
  color: var(--white);
  font-weight: 500;
  font-size: 16px;
}
@media (max-width: 992px) {
  .header-compare__icon span {
    top: -5px;
    font-size: 10px;
    min-width: 16px;
    height: 16px;
  }
}
.header-compare__count {
  font-size: 14px;
  line-height: 120%;
  color: var(--gray-text);
}
.header-compare .header-button-label {
  display: none;
}
@media (max-width: 992px) {
  .header-compare .header-button-label {
    display: block;
  }
}

.fav-button {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 4px;
  min-width: 24px;
}
.fav-button::before {
  content: "";
  display: block;
  width: 24px;
  height: 24px;
  background: url(../images/icon-fav.svg) center no-repeat;
  filter: brightness(0) invert(0.5);
}
@media (max-width: 992px) {
  .fav-button::before {
    filter: brightness(0);
  }
}
.fav-button.active::before, .fav-button:hover::before {
  filter: none;
}
.fav-button .header-button-label {
  display: none;
}
@media (max-width: 992px) {
  .fav-button .header-button-label {
    display: block;
  }
}

.search-button {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 4px;
  min-width: 24px;
  cursor: pointer;
}
.search-button::before {
  content: "";
  display: block;
  width: 24px;
  height: 24px;
  background: url(../images/icon-search.svg) center no-repeat;
  filter: brightness(0) invert(0.5);
}
@media (max-width: 992px) {
  .search-button::before {
    filter: brightness(0);
  }
}
.search-button.active::before, .search-button:hover::before {
  filter: none;
}
.search-button .header-button-label {
  display: none;
}
@media (max-width: 992px) {
  .search-button .header-button-label {
    display: block;
  }
}

.header-button-label {
  font-size: 11px;
}

@media (max-width: 992px) {
  .header-catalog-button {
    display: none;
  }
}

.catalog-button {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 4px;
}
.catalog-button::before {
  content: "";
  display: block;
  width: 24px;
  height: 24px;
  background: url(../images/icon-catalog.svg) center no-repeat;
  background-size: 32px;
}

.header-phone {
  font-weight: 500;
  font-size: 17px;
  line-height: 140%;
  color: var(--black);
  white-space: nowrap;
}
@media (max-width: 1200px) {
  .header-phone {
    font-size: 16px;
  }
}
@media (max-width: 568px) {
  .header-phone {
    display: block;
    width: 30px;
    height: 30px;
    background: url(../images/icon-phone.svg) center/contain no-repeat;
    margin-left: 2px;
    font-size: 0;
    text-indent: -1000px;
    overflow: hidden;
  }
}

.main-nav {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 1360px) {
  .main-nav {
    gap: 30px;
  }
}
@media (max-width: 992px) {
  .main-nav {
    display: block;
  }
}
.main-nav__item {
  position: relative;
}
.main-nav__item:first-child {
  position: static;
}
@media (max-width: 992px) {
  .main-nav__item {
    margin-bottom: 15px;
    padding: 0;
  }
}
@media (min-width: 992px) {
  .main-nav__item:hover .drop-nav-box,
  .main-nav__item:hover .drop-nav {
    visibility: visible;
    opacity: 1;
  }
  .main-nav__item:hover .main-nav__link {
    color: var(--blue-brand);
  }
  .main-nav__item:hover .main-nav__link::after {
    transform: rotate(180deg);
  }
}
.main-nav__item._catalog {
  display: none;
}
@media (max-width: 992px) {
  .main-nav__item._catalog {
    display: block;
  }
}
.main-nav__link {
  display: flex;
  align-items: center;
  gap: 6px;
  height: 84px;
  font-weight: 300;
  font-size: 18px;
  line-height: 140%;
  padding: 0 10px;
  margin: 0 -10px;
  color: var(--black);
}
@media (max-width: 1380px) {
  .main-nav__link {
    font-size: 17px;
  }
}
@media (max-width: 1200px) {
  .main-nav__link {
    font-size: 16px;
  }
}
@media (max-width: 992px) {
  .main-nav__link {
    font-weight: 500;
    font-size: 24px;
    width: 100%;
    height: auto;
    margin: 0;
    padding: 0;
    justify-content: space-between;
  }
}
.main-nav__link._drop::after {
  content: "";
  width: 16px;
  height: 16px;
  background: url(../images/chevron-down.svg) center no-repeat;
  transition: 0.15s;
}
@media (min-width: 992px) {
  .main-nav__link:hover {
    color: var(--blue-brand);
  }
  .main-nav__link:hover::after {
    transform: rotate(180deg);
  }
}
@media (max-width: 992px) {
  .main-nav__link.open, .main-nav__link.active {
    color: var(--green-brand);
  }
  .main-nav__link._drop.open::after {
    filter: none;
    transform: rotate(180deg);
  }
}

@media (min-width: 992px) {
  .drop-nav {
    position: absolute;
    top: 100%;
    left: -20px;
    background: var(--white);
    border-top: 1px solid var(--blue-brand);
    padding: 24px;
    border-radius: 0 0 10px 10px;
    box-shadow: 0 30px 40px 0 rgba(0, 0, 0, 0.14);
    display: flex;
    flex-direction: column;
    gap: 14px;
    visibility: hidden;
    opacity: 0;
    min-width: 200px;
    z-index: 999;
  }
  .drop-nav__link {
    font-size: 17px;
    line-height: 140%;
    white-space: nowrap;
  }
  .drop-nav__link:hover {
    color: var(--green-brand);
  }
}
@media (max-width: 992px) {
  .drop-nav {
    display: none;
    padding: 10px 20px 0 20px;
    font-size: 18px;
  }
  .drop-nav__item {
    margin-bottom: 10px;
  }
  .drop-nav__item:last-child {
    margin-bottom: 0;
  }
  .drop-nav__link {
    font-weight: 500;
    font-size: 16px;
    line-height: 140%;
  }
  .drop-nav__link:hover {
    color: var(--green-brand);
  }
}

.drop-nav-box {
  margin-left: calc((100vw - 1380px) / -2);
  margin-right: calc((100vw - 1380px) / -2);
  padding-top: 50px;
  padding-bottom: 50px;
  border-radius: 0 0 30px 30px;
}
.drop-nav-box .container {
  align-items: flex-start;
}
@media (max-width: 992px) {
  .drop-nav-box .container {
    padding: 4px 0 0 20px;
    display: block;
  }
}
@media (max-width: 1380px) {
  .drop-nav-box {
    margin-left: -40px;
    margin-right: -40px;
    padding-left: 40px;
    padding-right: 40px;
  }
}
@media (max-width: 1200px) {
  .drop-nav-box {
    padding-top: 24px;
    padding-bottom: 24px;
    margin-left: -20px;
    margin-right: -20px;
    padding-left: 20px;
    padding-right: 20px;
    border-radius: 0;
  }
}
@media (min-width: 992px) {
  .drop-nav-box {
    position: absolute;
    left: 0;
    right: 0;
    z-index: 99;
    box-shadow: 0 30px 40px 0 rgba(0, 0, 0, 0.14);
    background: var(--white);
    visibility: hidden;
    opacity: 0;
  }
  .drop-nav-box__list {
    flex: 1;
  }
}
@media (max-width: 992px) {
  .drop-nav-box {
    padding: 5px 20px 0 20px;
    display: none;
  }
}
@media (max-width: 992px) {
  .drop-nav-box__promo {
    display: none;
  }
}

.promo-card {
  display: block;
  border-radius: 10px;
  padding: 24px;
  width: 570px;
  height: 246px;
  background: var(--green-brand);
  color: var(--white);
  position: relative;
  z-index: 1;
}
@media (max-width: 1380px) {
  .promo-card {
    width: 480px;
  }
}
@media (max-width: 1200px) {
  .promo-card {
    width: 360px;
  }
}
.promo-card::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background: url(../images/promo-card-decor.png) right bottom no-repeat;
  z-index: -1;
}
.promo-card__thumb {
  position: absolute;
  right: 0;
  bottom: 0;
}
.promo-card__thumb img {
  display: block;
  max-width: 240px;
}
@media (max-width: 1200px) {
  .promo-card__thumb img {
    max-width: 150px;
  }
}
.promo-card__wrap {
  display: flex;
  flex-direction: column;
  gap: 8px;
  max-width: 300px;
}
@media (max-width: 1200px) {
  .promo-card__wrap {
    max-width: 240px;
  }
}
.promo-card__label {
  position: absolute;
  right: 10px;
  top: 10px;
}
.promo-card__label .card-label {
  background: rgba(255, 255, 255, 0.2);
}
.promo-card__title {
  font-size: 26px;
  line-height: 140%;
  color: var(--white);
}
@media (max-width: 1200px) {
  .promo-card__title {
    font-size: 20px;
  }
}
.promo-card__descr {
  font-weight: 400;
  font-size: 17px;
  line-height: 140%;
  color: var(--white);
}
@media (max-width: 1200px) {
  .promo-card__descr {
    font-size: 15px;
  }
}
.promo-card__price {
  font-family: var(--second-family);
  font-weight: 500;
  font-size: 22px;
  line-height: 140%;
  color: var(--white);
}
@media (max-width: 1200px) {
  .promo-card__price {
    font-size: 18px;
  }
}
.promo-card__price span {
  font-family: var(--font-family);
  font-size: 14px;
  line-height: 160%;
  text-decoration: line-through;
  color: var(--white);
}
.promo-card__more {
  margin-top: 15px;
}

.second-nav {
  position: relative;
  width: 330px;
}
@media (max-width: 1200px) {
  .second-nav {
    width: 300px;
  }
}
@media (max-width: 992px) {
  .second-nav {
    width: auto;
  }
}
@media (min-width: 992px) {
  .second-nav a:hover {
    background: linear-gradient(114deg, #08a2b0 0%, #08b060 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }
  .second-nav__item:hover .second-nav__link {
    background: linear-gradient(114deg, #08a2b0 0%, #08b060 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }
  .second-nav__item:hover .second-nav__link::after {
    opacity: 1;
  }
  .second-nav__item:hover .second-nav__drop {
    display: block;
  }
}
.second-nav__link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 9px 24px 9px 0;
  font-weight: 500;
  font-size: 17px;
  line-height: 140%;
  position: relative;
  top: -9px;
}
@media (max-width: 1200px) {
  .second-nav__link {
    padding: 6px 0;
    font-size: 16px;
  }
}
@media (max-width: 992px) {
  .second-nav__link {
    position: static;
  }
}
.second-nav__link::after {
  content: "";
  width: 24px;
  height: 24px;
  background: url(../images/chevron-right.svg) center no-repeat;
  opacity: 0;
}
.second-nav__link.open {
  background: linear-gradient(114deg, #08a2b0 0%, #08b060 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media (max-width: 992px) {
  .second-nav__link._drop {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 8px;
  }
  .second-nav__link._drop::after {
    content: "";
    width: 16px;
    height: 16px;
    display: block;
    opacity: 1;
    background: url(../images/icon-plus.svg) center/10px no-repeat;
  }
  .second-nav__link._drop.open::after {
    background-image: url(../images/icon-minus.svg);
  }
}
.second-nav__drop {
  display: none;
}
@media (min-width: 1380px) {
  .second-nav__drop {
    width: 320px;
    padding-left: 60px;
  }
}
@media (min-width: 992px) {
  .second-nav__drop {
    position: absolute;
    left: 100%;
    top: 0;
    padding-left: 20px;
    width: 280px;
  }
}
@media (max-width: 992px) {
  .second-nav__drop {
    padding: 5px 0 10px;
    width: auto;
  }
}

.second-nav-drop__link {
  display: block;
  padding: 7px 0;
  font-size: 17px;
  line-height: 140%;
  color: var(--black);
  position: relative;
  top: -7px;
}
@media (max-width: 1200px) {
  .second-nav-drop__link {
    padding: 5px 0;
    font-size: 14px;
  }
}
@media (max-width: 992px) {
  .second-nav-drop__link {
    position: static;
  }
}

.section {
  padding-top: 80px;
  padding-bottom: 100px;
}
@media (max-width: 1200px) {
  .section {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}

.section-header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 50px;
}
@media (max-width: 1200px) {
  .section-header {
    margin-bottom: 30px;
  }
}
@media (max-width: 992px) {
  .section-header {
    flex-direction: column;
    justify-content: flex-start;
    gap: 20px;
  }
}
.section-header .title-h2 {
  margin: 0;
}
.section-header .subtitle {
  margin-top: 24px;
}
@media (max-width: 568px) {
  .section-header .tabs__header {
    margin-bottom: -20px;
  }
}

.section-more {
  display: flex;
  justify-content: center;
  margin-top: 50px;
}

.subtitle {
  font-weight: 300;
  font-size: 22px;
  line-height: 130%;
  color: var(--gray-dark);
}
@media (max-width: 1200px) {
  .subtitle {
    font-size: 18px;
    margin-top: 16px;
  }
}

/* search box */
.search-box {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 99999;
  background: linear-gradient(120deg, #08a2b0 20%, #08b060 100%);
  opacity: 0;
  visibility: hidden;
  transition: 0.5s;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
}
.search-box.open {
  opacity: 1;
  visibility: visible;
}
.search-box::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background: url(../images/search-shape.svg) right bottom no-repeat;
  background-size: contain;
}
.search-box__wrap {
  max-width: 1180px;
  width: 100%;
  height: 200px;
  position: relative;
}
@media (max-width: 1180px) {
  .search-box__wrap {
    padding: 0 30px;
  }
}
.search-box__close {
  position: fixed;
  right: calc((100vw - 1180px) / 2);
  top: 15vh;
}
@media (max-width: 1200px) {
  .search-box__close {
    top: 80px;
    right: 30px;
  }
}
@media (max-width: 992px) {
  .search-box__close {
    top: 30px;
    right: 30px;
  }
}

.close-button {
  border: none;
  width: 24px;
  height: 24px;
  background: url(../images/icon-cross.svg) center no-repeat;
  background-size: contain;
  cursor: pointer;
}

.search-form__field {
  position: relative;
}
.search-form__field input[type=text] {
  width: 100%;
  height: 100px;
  font-size: 56px;
  text-transform: uppercase;
  border: none;
  background: none;
  border-bottom: 2px solid var(--white);
  color: var(--white);
}
.search-form__field input[type=text]::-webkit-input-placeholder {
  opacity: 0.8;
  color: var(--white);
}
.search-form__field input[type=text]::-moz-placeholder {
  opacity: 0.8;
  color: var(--white);
}
.search-form__field input[type=text]:-ms-input-placeholder {
  opacity: 0.8;
  color: var(--white);
}
@media (max-width: 992px) {
  .search-form__field input[type=text]::-webkit-input-placeholder {
    opacity: 1;
  }
  .search-form__field input[type=text]::-moz-placeholder {
    opacity: 1;
  }
  .search-form__field input[type=text]:-ms-input-placeholder {
    opacity: 1;
  }
}
@media (max-width: 767px) {
  .search-form__field input[type=text] {
    height: 60px;
    font-size: 28px;
  }
}
.search-form__field input[type=submit] {
  border: none;
  display: none;
  width: 40px;
  height: 40px;
  background: url(../images/button-search.svg) right bottom no-repeat;
  background-size: contain;
  position: absolute;
  right: 0;
  top: 50%;
  margin-top: -20px;
  filter: brightness(0) invert(1);
}
@media (max-width: 992px) {
  .search-form__field input[type=submit] {
    display: block;
  }
}
@media (max-width: 767px) {
  .search-form__field input[type=submit] {
    width: 26px;
    height: 26px;
    margin-top: -13px;
  }
}
.search-form__note {
  text-align: right;
  font-size: 18px;
  margin-top: 15px;
  padding-right: 35px;
}
@media (max-width: 992px) {
  .search-form__note {
    display: none;
  }
}

.promo-box {
  padding: 84px 0 50px;
  margin-top: -84px;
  background: var(--gray-light-bg);
}
@media (max-width: 1200px) {
  .promo-box {
    padding: 100px 0 50px;
    margin-top: -84px;
  }
}

.promo-slider-box {
  position: relative;
  margin-bottom: 40px;
}

.promo-slider {
  position: relative;
}
.promo-slider .swiper-pagination {
  bottom: 62px;
  left: 62px;
  width: auto;
}
@media (max-width: 1200px) {
  .promo-slider .swiper-pagination {
    bottom: 40px;
    left: 40px;
  }
}
@media (max-width: 767px) {
  .promo-slider .swiper-pagination {
    bottom: 20px;
    left: 20px;
  }
}

.promo-slide {
  position: relative;
  z-index: 1;
  height: 587px;
  padding: 62px;
  border-radius: 30px;
  color: var(--white);
  background: url(../images/promo-bg.png) center no-repeat;
}
@media (max-width: 1200px) {
  .promo-slide {
    height: 500px;
    padding: 40px;
  }
}
@media (max-width: 767px) {
  .promo-slide {
    padding: 20px;
    border-radius: 10px;
  }
}
@media (max-width: 1200px) {
  .promo-slide__wrap {
    max-width: 600px;
  }
}
.promo-slide__header {
  margin-bottom: 30px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.promo-slide__title {
  font-family: var(--second-family);
  font-weight: 500;
  font-size: 68px;
  line-height: 140%;
}
@media (max-width: 1200px) {
  .promo-slide__title {
    font-size: 54px;
    line-height: 1;
  }
}
@media (max-width: 767px) {
  .promo-slide__title {
    font-size: 34px;
  }
}
.promo-slide__subtitle {
  font-family: var(--second-family);
  font-weight: 500;
  font-size: 32px;
  line-height: 120%;
}
@media (max-width: 767px) {
  .promo-slide__subtitle {
    font-size: 20px;
  }
}
.promo-slide__list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
@media (max-width: 767px) {
  .promo-slide__list {
    gap: 10px;
  }
}
.promo-slide__list div {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 30px;
  padding-left: 44px;
  font-weight: 500;
  font-size: 17px;
  line-height: 1.5;
}
@media (max-width: 767px) {
  .promo-slide__list div {
    font-size: 14px;
  }
}
.promo-slide__list div::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translate(0, -50%);
  width: 30px;
  height: 30px;
  background: url(../images/list-check-white.svg) center no-repeat;
}
.promo-slide__control {
  margin-top: 50px;
}
@media (max-width: 767px) {
  .promo-slide__control {
    margin-top: 40px;
  }
}
.promo-slide__control .button {
  width: 160px;
}
.promo-slide__cover {
  position: absolute;
  right: 48px;
  bottom: 0;
  z-index: -1;
}
.promo-slide__cover img {
  display: block;
}
@media (max-width: 1200px) {
  .promo-slide__cover {
    width: 320px;
    right: 30px;
  }
  .promo-slide__cover img {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .promo-slide__cover {
    width: 200px;
    right: 10px;
  }
}

@media (max-width: 992px) {
  .advantages-slider {
    position: relative;
    padding-bottom: 30px;
  }
}

@media (min-width: 992px) {
  .advantages {
    display: flex;
    margin: -10px;
    flex-wrap: wrap;
  }
}
.advantages__item {
  padding: 10px;
  width: 25%;
}
@media (max-width: 992px) {
  .advantages__item {
    width: 50%;
    height: auto;
    padding: 0;
  }
}

.advantages-card {
  position: relative;
  border-radius: 10px;
  padding: 24px 24px 76px 24px;
  min-height: 225px;
  background: var(--white);
}
@media (max-width: 992px) {
  .advantages-card {
    height: 100%;
  }
}
@media (max-width: 568px) {
  .advantages-card {
    min-height: 0;
    padding: 12px 12px 50px 12px;
  }
}
.advantages-card__title {
  font-family: var(--second-family);
  font-weight: 500;
  font-size: 22px;
  line-height: 140%;
  color: var(--black);
  margin-bottom: 10px;
}
@media (max-width: 568px) {
  .advantages-card__title {
    font-size: 18px;
    line-height: 120%;
  }
}
.advantages-card__descr {
  font-size: 17px;
  line-height: 140%;
  color: var(--gray-text);
}
@media (max-width: 568px) {
  .advantages-card__descr {
    font-size: 14px;
  }
}
.advantages-card__icon {
  position: absolute;
  bottom: 24px;
  right: 24px;
  width: 40px;
  height: 40px;
}
@media (max-width: 992px) {
  .advantages-card__icon {
    bottom: 12px;
    right: 12px;
    width: 30px;
    height: 30px;
  }
}
.advantages-card__icon img {
  width: 100%;
}

.sale-label {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  height: 32px;
  font-size: 14px;
  border-radius: 40px;
  padding: 0 15px;
  color: var(--blue-brand);
  background: var(--white);
  white-space: nowrap;
}
.sale-label._blue {
  color: var(--white);
  background: var(--blue-brand);
}

.check-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 18px;
  line-height: 140%;
}
@media (max-width: 992px) {
  .check-item {
    font-size: 16px;
  }
}
@media (max-width: 568px) {
  .check-item {
    font-size: 14px;
  }
}
.check-item::before {
  content: "";
  display: block;
  width: 12px;
  height: 18px;
  position: relative;
  top: -2px;
  background: url(../images/check-marker.svg) center no-repeat;
}

.service-card {
  display: block;
  border-radius: 10px;
  padding: 24px;
  height: 100%;
  min-height: 420px;
  background: var(--gray-light-bg);
  position: relative;
  z-index: 1;
  transition: 0.15s;
}
.service-card__title {
  margin-bottom: 14px;
  min-height: 120px;
}
@media (max-width: 1200px) {
  .service-card__title {
    font-size: 26px;
    min-height: 96px;
  }
}
.service-card__info {
  font-size: 17px;
  line-height: 140%;
}
.service-card__more {
  position: absolute;
  left: 24px;
  bottom: 24px;
  opacity: 0;
  visibility: hidden;
  margin-top: 24px;
  transition: 0.15s;
}
@media (max-width: 1200px) {
  .service-card__more {
    opacity: 1;
    position: absolute;
    bottom: 24px;
    left: 24px;
  }
  .service-card__more .button {
    color: var(--white);
    background: var(--blue-brand);
  }
}
.service-card__icon {
  position: absolute;
  left: 24px;
  bottom: 24px;
  transition: 0.15s;
}
.service-card__cover {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: -1;
  transition: 0.15s;
}
.service-card__cover img {
  display: block;
  position: relative;
  z-index: 1;
}
.service-card__cover::before {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 420px;
  height: 420px;
  background: url(../images/service-cover-decor.png) right bottom no-repeat;
  opacity: 0;
  transition: 0.15s;
}
@media (min-width: 1200px) {
  .service-card:hover {
    background: var(--dark);
    color: var(--white);
  }
  .service-card:hover .service-card__more {
    opacity: 1;
    visibility: visible;
  }
  .service-card:hover .service-card__icon {
    opacity: 0;
    visibility: hidden;
  }
  .service-card:hover .service-card__cover::before {
    opacity: 1;
  }
}

.info-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  font-size: 18px;
  line-height: 140%;
  color: var(--gray-dark);
}
@media (max-width: 1200px) {
  .info-list {
    gap: 10px;
    font-size: 16px;
    color: var(--black);
  }
}
.info-list__item {
  position: relative;
  padding-left: 22px;
  transition: 0.5s;
}
.info-list__item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 12px;
  height: 18px;
  background: url(../images/check-marker.svg) center no-repeat;
  transition: 0.5s;
}

.brand-slider-box {
  position: relative;
}
@media (max-width: 992px) {
  .brand-slider-box .swiper-button {
    display: none;
  }
}
.brand-slider-box .swiper-button-prev {
  left: -30px;
}
.brand-slider-box .swiper-button-next {
  right: -30px;
}

@media (max-width: 992px) {
  .brand-slider {
    padding-bottom: 30px;
  }
}
.brand-slider .swiper-scrollbar {
  display: none;
}
@media (max-width: 992px) {
  .brand-slider .swiper-scrollbar {
    display: block;
  }
}
.brand-slider .swiper-slide {
  height: auto;
}

.brand-card {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--stroke);
  border-radius: 10px;
  padding: 14px 24px 24px 24px;
  min-height: 360px;
  background: var(--white);
  transition: 0.15s;
}
.brand-card:hover {
  border-color: var(--gray-light-bg);
  background: var(--gray-light-bg);
}
.brand-card:hover .tag-link:not(:hover) {
  background: var(--white);
  color: var(--black);
}
.brand-card__thumb {
  height: 150px;
  margin-bottom: 15px;
}
.brand-card__thumb img {
  height: 100%;
  max-width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
  mix-blend-mode: darken;
}
.brand-card__parts {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tag-link {
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
  border-radius: 4px;
  padding: 0 10px;
  height: 34px;
  background: var(--gray-light-bg);
}
.tag-link:hover {
  color: var(--white);
  background: linear-gradient(114deg, #08a2b0 0%, #08b060 100%);
}

.about {
  display: flex;
  gap: 90px;
}
@media (max-width: 992px) {
  .about {
    flex-wrap: wrap;
    gap: 40px;
  }
}
.about__text {
  width: 50%;
}
@media (max-width: 992px) {
  .about__text {
    order: 3;
    width: 100%;
  }
}
.about__photo {
  width: 50%;
}
@media (max-width: 992px) {
  .about__photo {
    order: 2;
    width: 100%;
  }
}
.about__photo img {
  display: block;
  width: 100%;
  border-radius: 10px;
}
.about__title {
  margin-bottom: 14px;
}
.about__more {
  margin-top: 24px;
}

.catalog-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 30px;
  gap: 30px;
}
.catalog-header .title-h1 {
  margin-bottom: 0;
}
@media (max-width: 568px) {
  .catalog-header {
    margin-bottom: 10px;
  }
}

.catalog-counter {
  font-weight: 500;
  font-size: 17px;
  line-height: 140%;
  color: var(--black);
}

.catalog {
  display: flex;
  gap: 30px;
  margin-bottom: 100px;
}
@media (max-width: 1600px) {
  .catalog {
    gap: 40px;
  }
}
@media (max-width: 992px) {
  .catalog {
    display: block;
    margin-bottom: 80px;
  }
}
@media (max-width: 568px) {
  .catalog {
    margin-bottom: 60px;
  }
}
.catalog__sort {
  margin-bottom: 20px;
}
@media (max-width: 992px) {
  .catalog__sort {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
}
@media (max-width: 568px) {
  .catalog__sort {
    margin-bottom: 10px;
  }
}
.catalog__sort .filter-button {
  display: none;
}
@media (max-width: 992px) {
  .catalog__sort .filter-button {
    display: block;
  }
}
.catalog__filter {
  width: 300px;
}
@media (max-width: 1600px) {
  .catalog__filter {
    width: 255px;
  }
}
@media (max-width: 992px) {
  .catalog__filter {
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: auto;
    z-index: 999;
    padding: 24px 24px 48px 24px;
    background: var(--white);
    display: none;
  }
}
@media (min-width: 992px) {
  .catalog__filter .filter-title {
    display: none;
  }
}
.catalog__main {
  flex: 1;
}
.catalog__more {
  margin-top: 30px;
}
.catalog__more .button {
  width: 100%;
}
.catalog__pagination {
  margin-top: 30px;
}
.catalog .filter-close {
  display: none;
}
@media (max-width: 992px) {
  .catalog .filter-close {
    display: block;
    position: absolute;
    top: 34px;
    right: 24px;
  }
}

.sort-list {
  position: relative;
  display: flex;
  align-items: center;
  gap: 20px;
}
@media (max-width: 568px) {
  .sort-list {
    gap: 10px;
  }
}
.sort-list::before {
  content: "";
  width: 24px;
  height: 24px;
  background: url(../images/icon-sorting.svg) center no-repeat;
}
.sort-list__title {
  display: flex;
  align-items: center;
  gap: 5px;
  height: 30px;
  white-space: nowrap;
  font-size: 18px;
  line-height: 160%;
  cursor: pointer;
}
@media (max-width: 568px) {
  .sort-list__title {
    gap: 5px;
    font-size: 14px;
    padding: 0;
    height: 34px;
    border: none;
  }
}
.sort-list__title::after {
  content: "";
  width: 20px;
  min-width: 20px;
  height: 20px;
  position: relative;
  top: 1px;
  background: url(../images/drop-arrow.svg) center no-repeat;
}
.sort-list__title.open::after {
  transform: rotate(180deg);
}
.sort-list__dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 100%;
  display: none;
  min-width: 310px;
  background: var(--white);
  box-shadow: 0 4px 20px 0 rgba(0, 0, 0, 0.08);
  margin-top: 14px;
  border-radius: 10px;
  z-index: 99;
  border: 1px solid var(--stroke);
  overflow: hidden;
  font-size: 18px;
  line-height: 160%;
  color: var(--black);
}
@media (max-width: 992px) {
  .sort-list__dropdown {
    left: auto;
    right: 0;
    margin-top: 5px;
  }
}
@media (max-width: 568px) {
  .sort-list__dropdown {
    font-size: 14px;
  }
}
.sort-list__item {
  display: block;
  width: 100%;
}
.sort-list__item a {
  display: flex;
  align-items: center;
  height: 50px;
  padding: 0 15px;
}
.sort-list__item a.active, .sort-list__item a:hover {
  background: var(--gray-light-bg);
}

.filter-button {
  width: 24px;
  height: 24px;
  background: url(../images/icon-filter.svg) center no-repeat;
}

.tag-list {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .tag-list {
    margin-bottom: 30px;
  }
}
@media (max-width: 568px) {
  .tag-list {
    overflow: auto;
    flex-wrap: nowrap;
    gap: 5px;
    margin: 0 -15px 20px;
    padding: 0 15px;
    scrollbar-width: none;
  }
  .tag-list::-webkit-scrollbar {
    display: none;
  }
}

.tag {
  display: inline-flex;
  align-items: center;
  padding: 10px;
  height: 34px;
  background: var(--gray-light-bg);
  border-radius: 4px;
  font-size: 17px;
  color: var(--gray-text);
  white-space: nowrap;
}
@media (max-width: 568px) {
  .tag {
    font-size: 12px;
    padding: 0 8px;
    height: 26px;
  }
}
.tag:hover {
  color: var(--blue-brand);
}

.filter-close {
  width: 16px;
  height: 16px;
  background: url(../images/icon-cross.svg) center no-repeat;
  filter: brightness(0) invert(0.2);
}

.filter-title {
  font-size: 22px;
  line-height: 130%;
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .filter-title {
    font-size: 26px;
  }
}

.filter-footer .button {
  width: 100%;
}

.filter-group {
  margin-bottom: 40px;
}
.filter-group:last-child {
  margin-bottom: 0;
}
.filter-group__title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: var(--second-family);
  font-weight: 600;
  font-size: 22px;
  line-height: 140%;
  color: var(--black);
}
.filter-group__title._toggle {
  cursor: pointer;
}
.filter-group__title._toggle::after {
  content: "";
  width: 24px;
  height: 24px;
  position: relative;
  top: 1px;
  background: url(../images/chevron-down.svg) center no-repeat;
  filter: brightness(0) invert(0.4);
}
.filter-group__title._toggle.open::after {
  transform: rotate(180deg);
  filter: none;
}

.filter-parts {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 18px;
  line-height: 160%;
  padding-top: 12px;
}
.filter-parts a {
  display: block;
  padding: 0 15px;
  border-radius: 4px;
}
.filter-parts a:not(.active):hover {
  color: var(--blue-brand);
}
.filter-parts a.active {
  padding: 6px 15px;
  background: var(--gray-light-bg);
}
.filter-parts__item {
  display: none;
}
.filter-parts__item:nth-child(-n+5) {
  display: block;
}
.filter-parts__more {
  margin-top: 2px;
  display: none;
}
.filter-parts.open .filter-parts__item {
  display: block;
}

.checked-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-top: 12px;
}
.checked-list__item {
  display: none;
}
.checked-list__item:nth-child(-n+5) {
  display: block;
}
.checked-list__more {
  margin-top: 2px;
  display: none;
}
.checked-list.open .checked-list__item {
  display: block;
}

.toggle-link {
  display: flex;
  align-items: center;
  gap: 5px;
  font-weight: 500;
  font-size: 15px;
  line-height: 140%;
  color: var(--gray-element);
  cursor: pointer;
}
.toggle-link::after {
  content: "";
  width: 20px;
  height: 20px;
  background: url(../images/toggle-arrow.svg) center no-repeat;
}
.toggle-link:hover {
  color: var(--gray-text);
}
.toggle-link.open::after {
  transform: rotate(180deg);
}

.runner-range {
  height: 3px;
  border: none;
  background: transparent;
  border-radius: 0;
  position: relative;
  margin: 0 20px 0 10px;
}
.runner-range::before {
  content: "";
  position: absolute;
  left: -10px;
  right: -20px;
  height: 5px;
  background: var(--gray-light-bg);
  border-radius: 3px;
}
.runner-range .ui-slider-range {
  height: 5px;
  border: none;
  background: linear-gradient(114deg, #08a2b0 0%, #08b060 100%);
  border-radius: 0;
}
.runner-range .ui-slider-handle {
  cursor: pointer;
  top: -14px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: none;
  background: var(--white);
  box-shadow: 0 4px 9px 0 rgba(0, 0, 0, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
}
.runner-range * {
  outline: none !important;
  color: transparent !important;
}

.range-box {
  padding-top: 27px;
}
.range-box__info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  margin-top: 26px;
}
.range-box__info-item {
  width: 50%;
}
.range-box__info input {
  background: var(--white);
  border: 1px solid var(--stroke);
  border-radius: 64px;
  padding: 10px 20px;
  width: 100%;
  height: 50px;
  font-weight: 400;
  font-size: 18px;
  line-height: 160%;
  color: var(--black);
}
.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
}
@media (max-width: 568px) {
  .pagination {
    gap: 10px;
    justify-content: space-between;
  }
}
.pagination__pages {
  display: flex;
  align-items: center;
  gap: 5px;
}
@media (max-width: 568px) {
  .pagination__pages {
    gap: 1px;
  }
}

.pagination-button {
  width: 25px;
  height: 25px;
  background-position: center;
  background-repeat: no-repeat;
}
.pagination-button._disable {
  filter: brightness(0) invert(0.6);
}
.pagination-button._prev {
  background-image: url(../images/pagination-arrow-prev.svg);
}
.pagination-button._next {
  background-image: url(../images/pagination-arrow-next.svg);
}

.pagination-link {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  width: 52px;
  height: 52px;
  font-size: 16px;
  text-align: center;
  color: var(--gray-dark);
}
.pagination-link.active {
  color: var(--black);
  background: var(--gray-light-bg);
}
.pagination-link:not(.active):hover {
  color: var(--blue-brand);
}

.product-card {
  border: 1px solid var(--stroke);
  border-radius: 10px;
  height: 100%;
  position: relative;
  background: var(--white);
  transition: 0.15s;
}
.product-card__thumb {
  padding: 10px;
  height: 260px;
  overflow: hidden;
  padding: 30px;
}
@media (min-width: 992px) {
  .product-card__thumb {
    position: relative;
    z-index: 2;
  }
}
.product-card__thumb > img:first-child {
  display: none;
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 992px) {
  .product-card__thumb > img:first-child {
    display: block;
  }
}
.product-card__thumb > img:last-child {
  display: block;
}
.product-card__fav {
  position: absolute;
  top: 18px;
  right: 18px;
  opacity: 0;
  transition: 0.3s;
  z-index: 9;
}
.product-card__fav.active {
  opacity: 1;
}
.product-card__compare {
  position: absolute;
  top: 52px;
  right: 18px;
  opacity: 0;
  transition: 0.3s;
  z-index: 9;
}
.product-card__compare.active {
  opacity: 1;
}
.product-card__label {
  position: absolute;
  top: 10px;
  left: 10px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 5px;
  z-index: 1;
}
@media (min-width: 992px) {
  .product-card__label {
    z-index: 2;
  }
}
.product-card__wrap {
  padding: 0 18px 24px 18px;
  margin: -1px;
  transition: 0.3s;
}
.product-card__status {
  font-weight: 500;
  font-size: 14px;
  line-height: 160%;
  color: var(--gray-element);
  margin-bottom: 14px;
}
.product-card__status._check {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--gray-text);
}
.product-card__status._check::before {
  content: "";
  width: 14px;
  height: 14px;
  background: url(../images/check-green.svg) center no-repeat;
}
.product-card__title {
  font-family: var(--second-family);
  font-weight: 500;
  font-size: 22px;
  line-height: 140%;
  color: var(--black);
  margin-bottom: 6px;
}
.product-card__descr {
  font-weight: 400;
  font-size: 14px;
  line-height: 160%;
  color: var(--gray-text);
  padding-right: 20px;
  height: 45px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.product-card__buy {
  margin-top: 20px;
}
@media (min-width: 1200px) {
  .product-card__buy {
    display: none;
    margin-top: 29px;
    margin-bottom: -9px;
  }
}
.product-card__buy .button {
  position: relative;
  z-index: 9;
  width: 100%;
}
.product-card__link {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.product-card__price {
  margin-top: 24px;
}
@media (min-width: 1200px) {
  .product-card:hover {
    box-shadow: 0 4px 40px 0 rgba(0, 0, 0, 0.14);
    /*
    img {
        transform: scale(1.05);
    }
    */
  }
  .product-card:hover .product-card__fav {
    opacity: 1;
  }
  .product-card:hover .product-card__compare {
    opacity: 1;
  }
  .product-card:hover .product-card__buy {
    display: block;
  }
  .product-card:hover .product-card__price {
    margin-top: 0;
  }
  .product-card:hover .product-card__descr {
    display: none;
  }
}

.card-gallery {
  display: flex;
  position: relative;
  height: 100%;
  padding: 0 10px;
}
@media (max-width: 992px) {
  .card-gallery {
    display: none;
  }
}
.card-gallery__item {
  width: 100%;
}
.card-gallery__item:hover .card-gallery__photo, .card-gallery__item:first-child .card-gallery__photo {
  display: block;
}
.card-gallery__item:first-child .item-line-decor::after {
  background: var(--blue-brand);
}
.card-gallery .card-gallery__photo {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  overflow: hidden;
  z-index: -1;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.card-gallery .card-gallery__photo img {
  width: 100%;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
}
.card-gallery:hover .item-line-decor {
  opacity: 1;
}
.card-gallery:hover .item-line-decor::after {
  background: var(--gray-light-bg);
}
.card-gallery:hover .item-line-decor:hover::after {
  background: var(--blue-brand);
}

.item-line-decor {
  width: 100%;
  height: 100%;
  position: relative;
  opacity: 0;
}
.item-line-decor::after {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 2px;
  right: 2px;
  height: 3px;
  border-radius: 2px;
  background: #999999;
}

.light-bg .product-card {
  border: none;
}

.card-price {
  display: flex;
  align-items: baseline;
  gap: 10px;
  font-family: var(--second-family);
  font-weight: 500;
  font-size: 22px;
  line-height: 140%;
}
.card-price__current {
  font-family: var(--second-family);
  font-weight: 500;
  font-size: 22px;
  line-height: 140%;
  color: var(--blue-brand);
}
.card-price__old {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 14px;
  line-height: 160%;
  text-decoration: line-through;
  color: var(--gray-element);
  text-decoration: line-through;
}
.card-price__info {
  font-weight: 300;
  font-size: 18px;
  line-height: 140%;
  color: var(--gray-dark);
}

.card-fav {
  display: block;
  width: 24px;
  height: 24px;
  background: url(../images/fav-button.svg) center/contain no-repeat;
}
.card-fav.active, .card-fav:hover {
  background-image: url(../images/fav-button-active.svg);
}

.card-compare {
  display: block;
  width: 24px;
  height: 24px;
  background: url(../images/compare-button.svg) center/contain no-repeat;
}
.card-compare.active, .card-compare:hover {
  background-image: url(../images/compare-button-active.svg);
}

.card-label {
  display: inline-flex;
  align-items: center;
  border-radius: 4px;
  padding: 0 10px;
  height: 29px;
  font-weight: 500;
  font-size: 14px;
  color: var(--white);
  background: var(--gray-dark);
}
.card-label._sale {
  background: var(--green-brand);
}
.card-label._hit {
  background: var(--blue-brand);
}
@media (min-width: 768px) {
  .card-label._lg {
    padding: 0 15px;
    height: 37px;
    font-weight: 500;
    font-size: 18px;
    border-radius: 8px;
  }
}

.card-param {
  display: flex;
  flex-direction: column;
  gap: 15px;
  font-size: 17px;
  line-height: 140%;
  color: var(--black);
}
@media (max-width: 992px) {
  .card-param {
    font-size: 14px;
  }
}
.card-param__item {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 10px;
}
.card-param__item::after {
  content: "";
  display: block;
  height: 10px;
  order: 2;
  flex: 1;
  border-bottom: 1px dashed var(--stroke);
}
.card-param span:first-child {
  color: var(--gray-text);
  order: 1;
}
.card-param span:last-child {
  order: 3;
}

.page-title {
  margin-bottom: 30px;
}
@media (max-width: 568px) {
  .page-title {
    margin-bottom: 20px;
  }
}

.product-info {
  padding: 80px 0;
}
@media (max-width: 1200px) {
  .product-info {
    padding: 60px 0;
  }
}
@media (max-width: 568px) {
  .product-info {
    padding: 40px 0;
  }
}
.product-info .tabs__header {
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .product-info .tabs__header {
    margin-bottom: 20px;
  }
}
.product-info p {
  color: var(--gray-dark);
}
.product-info li {
  color: var(--gray-dark);
}
.product-info-title {
  font-weight: 300;
  font-size: 22px;
  line-height: 130%;
  color: var(--black);
  margin-bottom: 15px;
}
@media (max-width: 767px) {
  .product-info-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-weight: 500;
    font-size: 20px;
    margin-bottom: 0;
  }
  .product-info-title::after {
    content: "";
    width: 24px;
    height: 24px;
    background: url(../images/chevron-down.svg) center no-repeat;
    transition: 0.2s;
  }
  .product-info-title.open::after {
    transform: rotate(180deg);
  }
}
.product-info .info-list {
  color: var(--black);
}
@media (min-width: 992px) {
  .product-info .card-param {
    font-size: 18px;
  }
}
@media (max-width: 992px) {
  .product-info .card-param {
    font-size: 16px;
  }
}
@media (max-width: 767px) {
  .product-info .tabs__box {
    display: block;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--stroke);
  }
  .product-info .tabs__box:last-child {
    padding-bottom: 0;
    border-bottom: none;
  }
  .product-info .tabs__box .product-info-wrap {
    display: none;
    padding: 15px 0;
  }
  .product-info .tabs__header {
    display: none;
  }
}

.product-info-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-weight: 500;
  font-size: 20px;
  margin-bottom: 0;
}
.product-info-title::after {
  content: "";
  width: 24px;
  height: 24px;
  background: url(../images/chevron-down.svg) center no-repeat;
  transition: 0.2s;
}
@media (min-width: 568px) {
  .product-info-title {
    display: none;
  }
}

.product-info-wrap._cols {
  display: flex;
  gap: 60px;
}
@media (max-width: 992px) {
  .product-info-wrap._cols {
    flex-direction: column;
    gap: 30px;
  }
}
.product-info-wrap__col {
  width: 50%;
}
@media (max-width: 992px) {
  .product-info-wrap__col {
    width: 100%;
  }
}
.product-info-wrap .text-block {
  margin-bottom: 30px;
}
.product-info-wrap .text-block:last-child {
  margin-bottom: 0;
}

.text-block__title {
  font-weight: 500;
  font-size: 17px;
  line-height: 140%;
  color: var(--black);
  margin-bottom: 15px;
}

.product-params {
  display: flex;
}
@media (min-width: 1200px) {
  .product-params {
    justify-content: space-between;
    gap: 80px;
  }
  .product-params__col {
    max-width: 676px;
    width: 100%;
  }
}
@media (max-width: 1200px) {
  .product-params {
    flex-direction: column;
    gap: 10px;
  }
}

.tabs__header {
  display: flex;
  align-items: center;
  gap: 40px;
}
.tabs__item {
  height: 39px;
  white-space: nowrap;
  font-family: var(--second-family);
  font-weight: 500;
  font-size: 22px;
  line-height: 140%;
  color: var(--gray-element);
  border-bottom: 1px solid transparent;
  transition: 0.15s;
}
@media (max-width: 992px) {
  .tabs__item {
    font-size: 16px;
  }
}
@media (max-width: 568px) {
  .tabs__item {
    height: 34px;
  }
}
.tabs__item:hover {
  color: var(--black);
}
.tabs__item.active {
  font-weight: 500;
  color: var(--black);
  border-bottom-color: var(--blue-brand);
}

.product-slider-box {
  position: relative;
}
@media (max-width: 992px) {
  .product-slider-box .swiper-button {
    display: none;
  }
}
.product-slider-box .swiper-button-prev {
  left: -30px;
}
.product-slider-box .swiper-button-next {
  right: -30px;
}

@media (max-width: 992px) {
  .product-slider {
    padding-bottom: 30px;
  }
}
.product-slider .swiper-scrollbar {
  display: none;
}
@media (max-width: 992px) {
  .product-slider .swiper-scrollbar {
    display: block;
  }
}
.product-slider .swiper-slide {
  height: auto;
}

.product-page-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 30px;
  gap: 20px;
}
@media (max-width: 1200px) {
  .product-page-header {
    flex-direction: column;
    align-items: flex-start;
  }
}
.product-page-header .title-h1 {
  margin-bottom: 0;
}

.product-page-actions {
  display: flex;
  align-items: center;
  gap: 30px;
}

.product-action-link {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  line-height: 140%;
  color: var(--black);
}
.product-action-link:hover {
  color: var(--green-brand);
}
.product-action-link::before {
  width: 24px;
  height: 24px;
  background-position: center;
  background-repeat: no-repeat;
}
.product-action-link._fav::before {
  content: "";
  background-image: url(../images/fav-button.svg);
}
.product-action-link._fav.active::before {
  background-image: url(../images/fav-button-active.svg);
}
.product-action-link._compare::before {
  content: "";
  background-image: url(../images/compare-button.svg);
}
.product-action-link._compare.active::before {
  background-image: url(../images/compare-button-active.svg);
}

.product-page {
  display: flex;
  gap: 30px;
}
@media (max-width: 1200px) {
  .product-page {
    flex-direction: column;
  }
}
.product-page__gallery {
  width: 552px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
@media (max-width: 1200px) {
  .product-page__gallery {
    width: 100%;
    order: 1;
  }
}
.product-page__detail {
  display: flex;
  flex-direction: column;
  gap: 25px;
  width: 400px;
  padding-left: 10px;
}
@media (max-width: 1200px) {
  .product-page__detail {
    width: auto;
    gap: 30px;
    order: 3;
  }
}
.product-page__info {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.product-page__art {
  font-size: 15px;
  line-height: 140%;
  color: var(--black);
}
.product-page__buy {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 24px;
  height: 100%;
  text-align: center;
  border-radius: 10px;
  padding: 20px;
  width: 283px;
  box-shadow: 0 4px 20px 0 rgba(0, 0, 0, 0.08);
  background: var(--white);
}
@media (max-width: 1200px) {
  .product-page__buy {
    width: 100%;
    order: 2;
  }
}
.product-page__buy .button {
  white-space: nowrap;
}
.product-page__buy .product-controls:first-child {
  width: 100%;
}
.product-page__buy .product-controls:first-child .button {
  width: 100%;
}
@media (max-width: 568px) {
  .product-page__buy {
    gap: 15px;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    position: relative;
  }
  .product-page__buy .button {
    width: 100%;
    padding: 0 5px;
  }
  .product-page__buy .product-controls {
    width: 48%;
    padding-top: 25px;
  }
  .product-page__buy .product-controls .button {
    width: 100%;
    height: 38px;
    border-radius: 5px;
  }
  .product-page__buy .product-page-status {
    position: absolute;
    right: 20px;
    top: 20px;
    margin: 0;
  }
}
@media (max-width: 390px) {
  .product-page__buy .product-controls:first-child .button {
    min-width: 125px;
  }
}
.product-page__advantages {
  display: flex;
  gap: 10px;
}
.product-page__params .product-params {
  flex-direction: column;
  gap: 8px;
}
.product-page__params .card-param {
  font-size: 16px;
}

.buy-info-links {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
@media (max-width: 568px) {
  .buy-info-links {
    padding-top: 20px;
    border-top: 1px solid var(--stroke);
    margin-top: 10px;
  }
}

.info-link {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
  font-size: 15px;
  line-height: 140%;
  color: var(--gray-element);
}
.info-link:hover {
  color: var(--black);
}
.info-link:hover::before {
  opacity: 1;
}
.info-link::before {
  width: 24px;
  height: 24px;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.6;
}
.info-link._delivery::before {
  content: "";
  background-image: url(../images/icon-delivery.svg);
}
.info-link._payment::before {
  content: "";
  background-image: url(../images/icon-payment.svg);
}

.product-descr {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.product-descr__text {
  font-size: 15px;
  line-height: 140%;
  color: var(--black);
}
.product-descr__text p {
  font-size: 15px;
  line-height: 140%;
  color: var(--black);
  margin: 0 0 10px;
}
.product-descr__text p:last-child {
  margin-bottom: 0;
}
.product-descr__more a {
  color: var(--blue-brand);
}
.product-descr__more a:hover {
  color: var(--blue-brand-hover);
}

.product-price {
  display: flex;
  align-items: center;
  white-space: nowrap;
  gap: 10px;
  font-family: var(--second-family);
  font-weight: 500;
  font-size: 32px;
  line-height: 120%;
  color: var(--blue-brand);
}
@media (max-width: 568px) {
  .product-price {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding-top: 25px;
    position: relative;
  }
}
.product-price__current {
  font-family: var(--second-family);
  font-weight: 500;
  font-size: 32px;
  line-height: 120%;
  color: var(--blue-brand);
}
.product-price__old {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 14px;
  line-height: 160%;
  text-decoration: line-through;
  color: var(--gray-element);
}
@media (max-width: 568px) {
  .product-price__old {
    order: -1;
    position: absolute;
    top: 0;
    left: 0;
  }
}

.product-controls {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
}
.product-controls .button {
  width: 100%;
}

.product-page-status {
  font-weight: 500;
  font-size: 14px;
  line-height: 160%;
  color: var(--gray-element);
  margin-top: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}
@media (max-width: 568px) {
  .product-page-status {
    font-weight: 400;
  }
}
.product-page-status._instock {
  color: var(--gray-text);
}
.product-page-status._instock::before {
  content: "";
  width: 14px;
  height: 14px;
  background: url(../images/check-green.svg) center no-repeat;
}

.product-page-art {
  font-size: 18px;
  line-height: 140%;
  color: var(--gray-text);
}
.product-page-art span {
  color: var(--black);
}

.product-gallery {
  position: relative;
  overflow: hidden;
  background: var(--gray-light-bg);
  border-radius: 10px;
  overflow: hidden;
  height: 488px;
  width: 100%;
}
@media (max-width: 992px) {
  .product-gallery {
    width: 100%;
    height: 540px;
  }
}
@media (max-width: 767px) {
  .product-gallery {
    height: 360px;
  }
}
@media (max-width: 568px) {
  .product-gallery {
    height: 260px;
  }
}
.product-gallery img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  mix-blend-mode: darken;
  border-radius: 10px;
}
.product-gallery .card-label {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 99;
}
@media (max-width: 767px) {
  .product-gallery .card-label {
    top: 0;
    left: 0;
  }
}
.product-gallery .card-fav {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 99;
  opacity: 0;
  transition: 0.3s;
}
@media (max-width: 1200px) {
  .product-gallery .card-fav {
    opacity: 1;
  }
}
@media (max-width: 767px) {
  .product-gallery .card-fav {
    top: 5px;
    right: 0;
  }
}
.product-gallery .card-fav.active {
  opacity: 1;
}
.product-gallery .swiper-scrollbar {
  display: none;
}
@media (max-width: 992px) {
  .product-gallery .swiper-scrollbar {
    display: block;
    bottom: 20px;
    left: 20px;
    right: 20px;
    width: auto;
  }
}
.product-gallery:hover .card-fav,
.product-gallery:hover .swiper-button {
  opacity: 1;
}
.product-gallery:hover .swiper-button-next.swiper-button-disabled,
.product-gallery:hover .swiper-button-prev.swiper-button-disabled {
  opacity: 1 !important;
}

.product-thumb-box {
  position: relative;
  display: flex;
  justify-content: center;
}
@media (max-width: 992px) {
  .product-thumb-box {
    display: none;
  }
}
.product-thumb-box .swiper-button {
  left: 50%;
  margin: 0 0 0 -18px;
}
.product-thumb-box .swiper-button-prev {
  top: 0;
}
.product-thumb-box .swiper-button-prev::after {
  transform: rotate(90deg);
}
.product-thumb-box .swiper-button-next {
  top: auto;
  bottom: 0;
}
.product-thumb-box .swiper-button-next::after {
  transform: rotate(90deg);
}

.product-gallery-thumb {
  overflow: hidden;
  opacity: 0;
}
.product-gallery-thumb.swiper-initialized {
  opacity: 1;
}
.product-gallery-thumb__item {
  cursor: pointer;
  border-radius: 10px;
  width: 90px;
  height: 90px;
  overflow: hidden;
  position: relative;
}
.product-gallery-thumb__item:hover {
  transition: 0.3s;
}
.product-gallery-thumb .swiper-slide-thumb-active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  border: 1px solid var(--green-brand);
  border-radius: 10px;
}
.product-gallery-thumb img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 6px;
}

.gallery-photo {
  position: relative;
}
.gallery-photo::after {
  content: "";
  position: absolute;
  right: 20px;
  bottom: 20px;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: var(--light-bg);
  background-position: center;
  background-repeat: no-repeat;
  background-image: url(../images/icon-zoom-in.svg);
  opacity: 0;
  transition: 0.3s;
}
@media (min-width: 1200px) {
  .gallery-photo:hover::after {
    opacity: 1;
  }
}

.popup {
  display: none;
  border-radius: 30px;
  max-width: 690px;
  width: 100%;
  padding: 60px;
  background: url(../images/form-bg.png) center/cover no-repeat;
  color: var(--white);
  font-family: var(--font-family);
}
@media (max-width: 568px) {
  .popup {
    padding: 24px;
  }
}
.popup._sending {
  text-align: center;
}
.popup-title {
  margin-bottom: 14px;
  color: var(--white);
}
@media (max-width: 568px) {
  .popup-title {
    font-size: 32px;
  }
}
.popup-note {
  font-size: 17px;
  line-height: 140%;
  color: var(--white);
}
@media (max-width: 568px) {
  .popup-note {
    font-size: 16px;
  }
}
.popup-form {
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin-top: 30px;
}
.popup-form input[type=text],
.popup-form input[type=password],
.popup-form input[type=email],
.popup-form input[type=tel] {
  border-radius: 50px;
  padding: 0 30px;
  width: 100%;
  height: 60px;
  background: rgba(255, 255, 255, 0.2);
  color: var(--white);
  font-size: 17px;
  line-height: 140%;
  -webkit-appearance: none !important;
  outline: none !important;
}
.popup-form input[type=text]::-moz-placeholder, .popup-form input[type=password]::-moz-placeholder, .popup-form input[type=email]::-moz-placeholder, .popup-form input[type=tel]::-moz-placeholder {
  color: var(--gray-light-bg);
  opacity: 0.6;
}
.popup-form input[type=text]::placeholder,
.popup-form input[type=password]::placeholder,
.popup-form input[type=email]::placeholder,
.popup-form input[type=tel]::placeholder {
  color: var(--gray-light-bg);
  opacity: 0.6;
}
.popup-form .button {
  min-width: 210px;
}

.form-fields {
  display: flex;
  flex-wrap: wrap;
  margin: -5px;
}
.form-fields .form-field {
  width: 50%;
  padding: 5px;
}
@media (max-width: 568px) {
  .form-fields .form-field {
    width: 100%;
  }
}

.form-footer {
  display: flex;
  align-items: center;
  gap: 20px;
}
@media (max-width: 568px) {
  .form-footer {
    flex-wrap: wrap;
  }
}
.form-footer .button {
  min-width: 210px;
}
@media (max-width: 568px) {
  .form-footer .button {
    width: 100%;
  }
}
.form-footer__note {
  flex: 1;
  font-size: 14px;
  line-height: 160%;
  color: rgba(255, 255, 255, 0.6);
}
@media (max-width: 568px) {
  .form-footer__note {
    order: -1;
    width: 100%;
  }
}
.form-footer__note a {
  color: rgba(255, 255, 255, 0.8);
}
.form-footer__note a:hover {
  color: var(--white);
}

.footer {
  background: #07585e;
  color: var(--white);
}
@media (max-width: 992px) {
  .footer {
    padding-bottom: 100px;
  }
}
.footer a:hover {
  color: #91b0b2;
}
.footer__top {
  position: relative;
  padding: 40px 0px;
}
@media (max-width: 992px) {
  .footer__top {
    display: none;
  }
}
.footer__top::after {
  content: "";
  position: absolute;
  height: 1px;
  background: var(--white);
  opacity: 0.2;
  top: 100%;
  left: calc((100vw - 1300px) / -2);
  right: calc((100vw - 1300px) / -2);
}
@media (max-width: 1200px) {
  .footer__top::after {
    left: -20px;
    right: -20px;
  }
}
.footer__wrap {
  position: relative;
  display: flex;
  justify-content: space-between;
  padding: 60px 0;
}
.footer__wrap::after {
  content: "";
  position: absolute;
  height: 1px;
  background: var(--white);
  opacity: 0.2;
  top: 100%;
  left: calc((100vw - 1300px) / -2);
  right: calc((100vw - 1300px) / -2);
}
@media (max-width: 1200px) {
  .footer__wrap::after {
    left: -20px;
    right: -20px;
  }
}
@media (max-width: 992px) {
  .footer__wrap {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 24px;
    padding: 40px 0;
  }
}
.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 40px 0;
  position: relative;
  font-size: 14px;
  line-height: 160%;
  color: #91b0b2;
}
@media (max-width: 992px) {
  .footer__bottom {
    margin-top: 0;
    padding-bottom: 0;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    text-align: center;
  }
  .footer__bottom .footer-logo {
    display: none;
  }
}
.footer__bottom a:hover {
  color: var(--white);
}

.footer-main-nav {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  font-weight: 500;
  font-size: 17px;
  line-height: 140%;
  color: var(--white);
}
.footer-main-nav a:hover {
  color: #91b0b2;
}

.footer-logo img {
  display: block;
}

.footer-dev a {
  display: flex;
  align-items: center;
  gap: 10px;
}
.footer-dev img {
  display: block;
}

@media (max-width: 1200px) {
  .footer-nav {
    max-width: 250px;
  }
}
@media (max-width: 992px) {
  .footer-nav {
    display: none;
  }
}
.footer-nav__title {
  font-family: var(--second-family);
  font-weight: 500;
  font-size: 22px;
  line-height: 140%;
  color: #91b0b2;
  margin-bottom: 18px;
}
.footer-nav__item {
  font-weight: 500;
  font-size: 15px;
  line-height: 140%;
  margin-bottom: 14px;
}
.footer-nav__item:last-child {
  margin-bottom: 0;
}

.footer-contacts {
  display: flex;
  flex-direction: column;
  gap: 14px;
  width: 300px;
  font-weight: 400;
  font-size: 15px;
  line-height: 140%;
  color: var(--white);
}
@media (max-width: 992px) {
  .footer-contacts__item {
    display: flex;
    justify-content: center;
  }
}

.footer-phone {
  font-family: var(--second-family);
  font-weight: 500;
  font-size: 22px;
  line-height: 140%;
  color: var(--white);
}

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

.msgr-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  width: 52px;
  height: 52px;
  background: linear-gradient(114deg, #08a2b0 0%, #08b060 100%);
}
.msgr-button:hover {
  background: linear-gradient(114deg, #08b060 0%, #08a2b0 100%);
}
.msgr-button img {
  display: block;
}/*# sourceMappingURL=style.css.map */