@import url("https://fonts.googleapis.com/css2?family=Inter+Tight:ital,wght@0,100..900;1,100..900&display=swap");

:root {
  --black: #1c1d1d;
  --black-active: #373838;
  --gray-text: #8c8d8d;
  --gray-stroke: #d5d5d5;
  --gray-container: #ebebeb;
  --gray-fill: #fafafa;
  --white: #ffffff;
  --orange: #fd6220;
  --orange-active: #ee5513;
  --orange-active-2: #ff8450;
  --red: #fd2020;
  --red-active: #e31111;
  --blue: #206dfd;
  --headings-h1: 64px;
  --headings-h2: 48px;
  --headings-h3: 40px;
  --headings-h4: 32px;
  --headings-h5: 26px;
  --headings-h6: 22px;
  --headings-h7: 18px;
  --text-30: 30px;
  --text-28: 28px;
  --text-24: 24px;
  --text-20: 20px;
  --text-18: 18px;
  --text-16: 16px;
  --text-14: 14px;
  --text-12: 12px;
  --additional-22: 22px;
  --additional-20: 20px;
  --additional-18: 18px;
  --additional-16: 16px;
  --font: "Gibra";
}

@media screen and (max-width: 1600px) {
  :root {
    --headings-h1: 55px;
    --headings-h2: 40px;
    --headings-h3: 35px;
    --headings-h4: 26px;
    --headings-h5: 23px;
    --headings-h6: 18px;
    --headings-h7: 15px;
    --text-30: 26px;
    --text-28: 24px;
    --text-24: 20px;
    --text-20: 18px;
    --text-18: 16px;
    --text-16: 14px;
    --additional-22: 18px;
    --additional-20: 16px;
    --additional-18: 14px;
    --additional-16: 12px;
  }
}

@media screen and (max-width: 1200px) {
  :root {
    --headings-h1: 45px;
    --headings-h2: 30px;
    --headings-h3: 25px;
    --headings-h5: 18px;
    --text-30: 22px;
    --text-24: 18px;
  }
}

@media screen and (max-width: 768px) {
  :root {
    --headings-h1: 35px;
    --headings-h2: 25px;
    --headings-h3: 22px;
    --headings-h5: 18px;
    --text-30: 16px;
  }
}

@media screen and (max-width: 575px) {
  :root {
    --headings-h1: 25px;
    --headings-h2: 20px;
    --headings-h3: 18px;
    --headings-h4: 17px;
    --headings-h5: 15px;
    --headings-h6: 15px;
    --text-24: 15px;
    --text-20: 14px;
    --text-18: 15px;
    --additional-22: 14px;
  }
}

button, input, textarea, select, body {
  font-family: "Inter Tight", sans-serif;
}

body {
  font-size: var(--text-16);
  line-height: 1.3;
  font-family: "Inter Tight", sans-serif;
  color: var(--black);
  background: var(--gray-fill);
  font-weight: 300;
  z-index: 1;
  position: relative;
}

body::before {
  z-index: -1;
  content: "";
  inset: 0;
  width: 100%;
  position: absolute;
  height: 100%;
  background-image: url("../img/bg.png");
  background-size: 110%;
  background-position: top center;
}

button {
  border: none;
  background: none;
  padding: 0;
  margin: 0;
  transition: 0.4s;
}

button svg {
  transition: 0.4s;
}

button:disabled {
  opacity: 0.5;
}

a {
  color: var(--black);
  outline: none;
  text-decoration: none;
  transition: 0.4s;
}

a:hover {
  color: var(--orange);
}

a:focus {
  outline: none;
}

a.text-orange {
  color: var(--orange);
}

a.text-orange:hover {
  color: var(--orange-active);
}

input, textarea, select {
  padding: 21px;
  border-radius: 8px;
  color: var(--black);
  border: 1px solid var(--gray-stroke);
  font-size: var(--text-20);
  font-weight: 300;
  transition: 0.4s;
}

@media screen and (max-width: 1200px) {
  input, textarea, select {
    padding: 15px;
    font-size: 16px;
  }
}

::placeholder {
  transition: .4s;
  color: var(--gray-text);
}

::selection {
  background: var(--orange);
  color: var(--white);
}

textarea {
  resize: none;
  min-height: 95px;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
}

input[type=number] {
  -moz-appearance: textfield;
}

section {
  padding-top: 100px;
}

@media screen and (max-width: 768px) {
  section {
    padding-top: 50px;
  }
}

section:first-child {
  padding-top: 140px;
}

@media screen and (max-width: 768px) {
  section:first-child {
    padding-top: 120px;
  }
}

section:last-child {
  padding-bottom: 100px;
}

@media screen and (max-width: 768px) {
  section:last-child {
    padding-bottom: 50px;
  }
}

svg {
  max-width: 100%;
  max-height: 100%;
}

img {
  max-width: 100%;
  height: auto;
}

em {
  color: var(--orange);
}

strong {
  font-weight: 500;
}

.link-card::before {
  content: "";
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.link-orange {
  color: var(--orange);
}

.link-orange:hover {
  color: var(--orange-active);
}

.h1, h1 {
  font-size: var(--headings-h1);
  hyphens: auto;
}

.h2, h2 {
  font-size: var(--headings-h2);
}

.h3, h3 {
  font-size: var(--headings-h3);
}

.h4, h4 {
  font-size: var(--headings-h4);
}

.h5, h5 {
  font-size: var(--headings-h5);
}

.h6, h6 {
  font-size: var(--headings-h6);
}

.h7 {
  font-size: 18px;
  font-weight: 700;
  font-family: var(--font);
  line-height: 1.35;
  text-transform: uppercase;
}

@media screen and (max-width: 1200px) {
  .h7 {
    font-size: 15px;
  }
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  font-family: var(--font);
  line-height: 1.35;
  text-transform: uppercase;
}

.h1, .h2, .h3, .h4, .h5, .h6 {
  font-family: var(--font);
  text-transform: uppercase;
  letter-spacing: -0.03em;
}

.text-30 {
  font-size: var(--text-30);
}

.text-28 {
  font-size: var(--text-28);
}

.text-24 {
  font-size: var(--text-24);
}

.text-22 {
  font-size: 22px;
}

.text-20 {
  font-size: var(--text-20);
}

.text-18 {
  font-size: var(--text-18);
}

.text-16 {
  font-size: var(--text-16);
}

.text-14 {
  font-size: var(--text-14);
}

.text-12 {
  font-size: var(--text-12);
}

.text-center {
  text-align: center;
}

.text-right {
  text-align: right;
}

.text-left {
  text-align: left;
}

.uppercase {
  text-transform: uppercase;
}

.text-sb {
  font-weight: 500;
}

.color-gray {
  color: var(--gray-text);
}

.color-orange {
  color: var(--orange);
}

.row {
  display: flex;
  flex-flow: wrap;
  row-gap: 4px;
  margin: 0 -2px;
}

@media screen and (max-width: 1200px) {
  .row.row-small {
    row-gap: 4px;
  }
}

.align-center {
  align-items: center;
}

.align-start {
  align-items: flex-start;
}

.align-end {
  align-items: flex-end;
}

[class^=col-] {
  padding: 0 2px;
}

.col-3 {
  width: 25%;
}

@media screen and (max-width: 1200px) {
  .col-3 {
    width: 50%;
  }
}

@media screen and (max-width: 768px) {
  .col-3 {
    width: 100%;
  }
}

.col-4 {
  width: 33.3333333333%;
}

@media screen and (max-width: 991px) {
  .col-4 {
    width: 100%;
  }
}

.col-6 {
  width: 50%;
}

@media screen and (max-width: 991px) {
  .col-6 {
    width: 100%;
  }
}

.col-5 {
  width: 41.6666666667%;
}

@media screen and (max-width: 991px) {
  .col-5 {
    width: 100%;
  }
}

.col-7 {
  width: 58.3333333333%;
}

.col-8 {
  width: 66.6666666667%;
}

@media screen and (max-width: 991px) {
  .col-8 {
    width: 100%;
  }
}

.col-9 {
  width: 75%;
}

@media screen and (max-width: 991px) {
  .col-9 {
    width: 100%;
  }
}

.col-3-8 {
  width: 37.5%;
}

.col-5-8 {
  width: 62.5%;
}

.col-6-8 {
  width: 75%;
}

.col-2-8 {
  width: 25%;
}

@media screen and (max-width: 768px) {
  .col-6-sm {
    width: 50%;
  }
}

.cols-auto>div {
  flex: 1 1 0;
}

.margin-bottom-auto {
  margin-bottom: auto;
}

.margin-bottom-5 {
  margin-bottom: 5px;
}

.margin-bottom-10 {
  margin-bottom: 10px;
}

.margin-bottom-15 {
  margin-bottom: 15px;
}

.margin-bottom-20 {
  margin-bottom: 20px;
}

@media screen and (max-width: 991px) {
  .margin-bottom-20 {
    margin-bottom: 10px;
  }
}

.margin-bottom-25 {
  margin-bottom: 25px;
}

@media screen and (max-width: 991px) {
  .margin-bottom-25 {
    margin-bottom: 10px;
  }
}

.margin-bottom-30 {
  margin-bottom: 30px;
}

.margin-bottom-35 {
  margin-bottom: 35px;
}

.margin-bottom-40 {
  margin-bottom: 40px;
}

.margin-bottom-50 {
  margin-bottom: 50px;
}

@media screen and (max-width: 991px) {
  .margin-bottom-50 {
    margin-bottom: 30px;
  }
}

.margin-bottom-60 {
  margin-bottom: 60px;
}

.margin-bottom-70 {
  margin-bottom: 70px;
}

@media screen and (max-width: 991px) {
  .margin-bottom-70 {
    margin-bottom: 30px;
  }
}

.text-sb {
  font-weight: 500;
}

.text-font {
  font-family: var(--font);
}

.btn-icon {
  width: 48px;
  height: 48px;
  border-radius: 8px;
  background: var(--gray-fill);
  padding: 13px;
  color: var(--black);
  display: inline-flex;
  border: none;
  transition: .4s;
}

.btn-icon svg {
  width: 100%;
  height: 100%;
}

.btn-icon:hover {
  background: var(--orange);
  color: var(--white);
}

.btn-icon:focus {
  background: var(--orange-active);
  color: var(--white);
}

.btn-badge {
  position: relative;
}

.btn-badge span {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  color: var(--white);
  font-size: var(--text-12);
  position: absolute;
  background: var(--orange);
  top: 2px;
  right: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  transition: 0.4s;
}

.btn-badge:hover span, .btn-badge:focus span {
  background: var(--white);
  color: var(--orange);
}

.btn {
  padding: 20px 30px;
  background: var(--orange);
  border-radius: 8px;
  color: var(--white);
  font-size: var(--text-24);
  font-weight: 400;
  line-height: 1.16;
  display: inline-flex;
  text-align: center;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

@media screen and (max-width: 1200px) {
  .btn {
    padding: 15px 20px;
  }
}

@media screen and (max-width: 575px) {
  .btn {
    border-radius: 5px;
  }
}

.btn:hover {
  background: var(--orange-active);
  color: var(--white);
}

.btn:focus {
  background: var(--orange-active-2);
  color: var(--white);
}

.btn-small {
  font-size: var(--text-20);
  padding: 18px 26px;
}

@media screen and (max-width: 1200px) {
  .btn-small {
    padding: 13px 15px;
  }
}

.btn-white {
  background: var(--white);
  color: var(--black);
}

.btn-white:hover {
  background: var(--orange);
  color: var(--white);
}

.btn-white:focus {
  background: var(--orange-active);
  color: var(--white);
}

.btn-border {
  border: 1px solid;
  color: var(--black);
  background: rgba(255, 255, 255, 0);
}

.btn-border-orange {
  border-color: var(--orange);
}

.btn-full {
  width: 100%;
}

.btn-catalog {
  display: inline-flex;
  gap: 12px;
  align-items: center;
  padding: 14px 20px;
  border-radius: 8px;
  background: var(--black);
  color: var(--white);
  font-size: var(--text-20);
}

@media screen and (max-width: 1200px) {
  .btn-catalog {
    font-size: 16px;
    padding: 15px;
  }
}

.btn-catalog svg {
  width: 28px;
  height: 28px;
}

@media screen and (max-width: 1200px) {
  .btn-catalog svg {
    width: 22px;
    height: 22px;
  }
}

.btn-catalog:hover {
  background: var(--orange);
  color: var(--white);
}

.btn-catalog:focus {
  background: var(--orange-active);
  color: var(--white);
}

.btn-arrow {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  border: 1px solid;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px;
}

@media screen and (max-width: 1200px) {
  .btn-arrow {
    width: 53px;
    height: 53px;
    padding: 10px;
  }
}

.btn-arrow:disabled {
  opacity: 0.5;
}

.btn-arrow:hover {
  color: var(--orange);
}

.btn-arrow-small {
  width: 48px;
  height: 48px;
  padding: 12px;
}

.btn-arrow-dark {
  color: var(--black);
}

.arrow-btns {
  display: flex;
  align-items: center;
  gap: 12px;
}

.head-block {
  margin-bottom: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-flow: wrap;
  gap: 20px;
}

@media screen and (max-width: 768px) {
  .head-block {
    margin-bottom: 20px;
    gap: 10px;
    flex-flow: nowrap;
  }

  .head-block br {
    display: none;
  }

  .head-block .link-icon {
    white-space: nowrap;
  }

  .head-block .arrow-btns {
    display: none;
  }
}

.link-icon {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: var(--additional-22);
  font-weight: 400;
}

.link-icon svg {
  width: 26px;
  height: 26px;
}

@media screen and (max-width: 575px) {
  .link-icon svg {
    height: 16px;
    width: 16px;
    min-width: 16px;
  }
}

.link-icon-orange {
  color: var(--orange);
}

.link-icon-orange:hover {
  color: var(--orange-active);
}

.card-icon {
  width: 72px;
  height: 72px;
  border-radius: 8px;
  border: 1px solid var(--gray-stroke);
  padding: 18px;
  color: var(--orange);
  transition: 0.4s;
}

@media screen and (max-width: 575px) {
  .card-icon {
    width: 60px;
    height: 60px;
    padding: 14px;
    border-radius: 6px;
  }
}

.card-icon svg {
  width: 100%;
  height: 100%;
}

.card-icon-black {
  color: var(--black);
}

.card-item {
  padding: 28px;
  border-radius: 12px;
  background: var(--white);
  height: 100%;
  display: flex;
  flex-flow: column;
  position: relative;
}

@media screen and (max-width: 575px) {
  .card-item {
    padding: 15px;
    border-radius: 8px;
  }
}

.card-item .card-icon {
  margin-bottom: 65px;
}

@media screen and (max-width: 575px) {
  .card-item .card-icon {
    margin-bottom: 30px;
  }
}

.card-item .card-title {
  margin-bottom: 12px;
  transition: 0.4s;
}

.card-item .btn {
  margin-top: auto;
}

.card-item .btn::before {
  content: "";
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.card-item .card-desc {
  margin-bottom: 34px;
}

@media screen and (max-width: 768px) {
  .card-item .card-desc br {
    display: none;
  }
}

.card-item .card-desc:last-child {
  margin-bottom: 0;
}

.card-item:hover .card-title {
  color: var(--orange);
}

.card-item:hover .card-icon {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
}

.card-item-4 {
  flex-flow: wrap;
  gap: 24px;
}

.card-item-4 .card-icon {
  margin-bottom: 0;
}

.card-item-4__content {
  width: calc(100% - 96px);
}

.card-item-auto {
  display: flex;
  flex-flow: column;
  justify-content: space-between;
  min-height: 200px;
}

@media screen and (max-width: 768px) {
  .card-item-auto {
    min-height: auto;
  }
}

.card-item-auto .card-icon {
  width: 56px;
  height: 56px;
  padding: 12px;
  margin-bottom: 20px;
}

.white-block {
  padding: 48px;
  border-radius: 12px;
  background: var(--white);
  overflow: hidden;
  position: relative;
}

@media screen and (max-width: 1200px) {
  .white-block {
    padding: 30px;
  }
}

@media screen and (max-width: 768px) {
  .white-block {
    padding: 20px;
  }
}

.white-block-middle {
  padding: 40px;
}

@media screen and (max-width: 1200px) {
  .white-block-middle {
    padding: 20px;
  }
}

@media screen and (max-width: 768px) {
  .white-block-middle {
    padding: 15px;
  }
}

.white-block-small {
  padding: 32px;
}

@media screen and (max-width: 1200px) {
  .white-block-small {
    padding: 15px;
  }
}

@media screen and (max-width: 768px) {
  .white-block-small {
    padding: 10px;
  }
}

.white-block .title-lines .lines span:nth-child(2) {
  width: calc(100% + 50px);
}

.white-block__head {
  display: flex;
  gap: 20px;
  width: 100%;
  align-items: center;
  justify-content: space-between;
}

.white-block__head.head-alert {
  color: var(--red);
}

.white-block__head.head-alert .btn-icon {
  background: var(--red);
  color: var(--white);
}

.form-row {
  display: flex;
  flex-flow: wrap;
  gap: 12px;
  row-gap: 24px;
}

@media screen and (max-width: 575px) {
  .form-row {
    row-gap: 12px;
  }
}

.form-row .label-middle {
  width: calc(50% - 6px);
}

@media screen and (max-width: 575px) {
  .form-row .label-middle {
    width: 100%;
  }
}

.form-row label {
  width: 100%;
}

label {
  display: flex;
  flex-flow: column;
  gap: 8px;
}

label input, label textarea {
  display: block;
  width: 100%;
}

label em {
  color: var(--red);
}

.wpcf7-acceptance {
  display: flex;
}

.wpcf7-acceptance label {
  display: flex;
  gap: 12px;
  cursor: pointer;
  font-size: var(--text-12);
  flex-flow: row;
  align-items: center;
}

@media screen and (max-width: 575px) {
  .wpcf7-acceptance label {
    align-items: flex-start;
  }
}

.wpcf7-acceptance label a {
  text-decoration: underline;
}

.wpcf7-acceptance label input {
  width: 24px;
  min-width: 24px;
  height: 24px;
  appearance: none;
  border: 1px solid var(--gray-stroke);
  border-radius: 4px;
  position: relative;
  background: var(--white);
}

.wpcf7-acceptance label input::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  background-image: url("../img/icons/check.svg");
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  background-size: 16px;
  opacity: 0;
  transition: 0.4s;
}

.wpcf7-acceptance label input:checked {
  border-color: var(--orange);
  background: var(--orange);
}

.wpcf7-acceptance label input:checked::before {
  opacity: 1;
}

.input-check {
  display: flex;
  gap: 12px;
  cursor: pointer;
  font-size: var(--text-18);
  flex-flow: row;
  align-items: center;
}

.input-check a {
  text-decoration: underline;
}

.input-check input {
  width: 24px;
  min-width: 24px;
  height: 24px;
  appearance: none;
  border: 1px solid var(--gray-stroke);
  border-radius: 4px;
  position: relative;
  background: var(--white);
}

.input-check input::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  background-image: url("../img/icons/check.svg");
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  background-size: 16px;
  opacity: 0;
  transition: 0.4s;
}

.input-check input:checked {
  border-color: var(--orange);
  background: var(--orange);
}

.input-check input:checked::before {
  opacity: 1;
}

.form-send {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 36px;
}

@media screen and (max-width: 1200px) {
  .form-send {
    flex-flow: wrap-reverse;
  }
}

@media screen and (max-width: 575px) {
  .form-send {
    margin-top: 20px;
  }
}

.form-send .btn {
  width: 100%;
  max-width: 395px;
}

.title-lines {
  display: flex;
  flex-flow: wrap;
  gap: 20px;
  row-gap: 0;
  align-items: center;
}

@media screen and (max-width: 575px) {
  .title-lines {
    gap: 10px;
    row-gap: 0;
  }
}

.title-lines .lines {
  flex-grow: 1;
  display: flex;
  flex-flow: column;
  gap: 7px;
}

@media screen and (max-width: 575px) {
  .title-lines .lines {
    gap: 4px;
  }
}

.title-lines .lines span {
  width: 50px;
  height: 7px;
  background: var(--orange);
  display: block;
}

@media screen and (max-width: 575px) {
  .title-lines .lines span {
    height: 4px;
    width: 35px;
  }
}

.title-lines .lines span:nth-child(2) {
  width: 100%;
}

.breadcrumbs {
  display: flex;
  margin-bottom: 55px;
  flex-flow: wrap;
  row-gap: 4px;
}

@media screen and (max-width: 575px) {
  .breadcrumbs {
    margin-bottom: 30px;
  }
}

.breadcrumbs a, .breadcrumbs span {
  padding: 4px 8px;
  border-radius: 4px;
  font-size: var(--text-14);
  background: var(--white);
  position: relative;
}

.breadcrumbs a {
  margin-right: 35px;
}

.breadcrumbs a::after {
  content: "";
  background: var(--white);
  background-image: url("../img/icons/chevron-right.svg");
  background-position: center;
  background-repeat: no-repeat;
  position: absolute;
  height: 100%;
  aspect-ratio: 1;
  border-radius: 4px;
  left: calc(100% + 4px);
  top: 0;
}

.breadcrumbs span {
  background: var(--orange);
  color: var(--white);
}

.image-radius {
  border-radius: 12px;
  overflow: hidden;
}

.image-radius img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.white-row {
  background: var(--white);
  border-radius: 12px;
}

.white-row__col {
  padding: 50px;
  overflow: hidden;
}

@media screen and (max-width: 991px) {
  .white-row__col {
    padding: 30px;
  }
}

@media screen and (max-width: 575px) {
  .white-row__col {
    padding: 20px;
  }
}

.white-row__col .title-lines .lines span:nth-child(2) {
  width: calc(100% + 50px);
}

.flex-justify {
  display: flex;
  justify-content: space-between;
}

.flex-column {
  display: flex;
  flex-flow: column;
}

.title-lines-bottom {
  position: relative;
  padding-bottom: 55px;
}

@media screen and (max-width: 991px) {
  .title-lines-bottom {
    padding-bottom: 30px;
    margin-bottom: 20px;
  }
}

.title-lines-bottom::before, .title-lines-bottom::after {
  content: "";
  width: 90px;
  height: 7px;
  background: var(--orange);
  position: absolute;
  left: 0;
  bottom: 28px;
}

@media screen and (max-width: 991px) {
  .title-lines-bottom::before, .title-lines-bottom::after {
    height: 3px;
    bottom: 20px;
    width: 60px;
  }
}

.title-lines-bottom::after {
  width: 40px;
  bottom: 0;
}

@media screen and (max-width: 991px) {
  .title-lines-bottom::after {
    bottom: 4px;
    width: 30px;
  }
}

.title-lines-bottom__line {
  position: absolute;
  bottom: 14px;
  left: 0;
  width: 65px;
  height: 7px;
  background: var(--orange);
}

@media screen and (max-width: 991px) {
  .title-lines-bottom__line {
    height: 3px;
    width: 45px;
    bottom: 12px;
  }
}

.flex-start {
  align-items: flex-start;
}

.gap-40 {
  gap: 40px;
}

@media screen and (max-width: 768px) {
  .gap-40 {
    gap: 20px;
  }
}

.gap-40 .col-4 {
  width: calc(33.3333333333% - 26.6666666667px);
}

@media screen and (max-width: 768px) {
  .gap-40 .col-4 {
    width: calc(50% - 10px);
  }
}

@media screen and (max-width: 768px) {
  .gap-40 .col-12-sm {
    width: 100%;
  }
}

.one-height-row>* {
  height: inherit;
}

.height-full {
  height: 100%;
}

.pagination {
  display: flex;
  flex-flow: wrap;
  gap: 8px;
  justify-content: center;
  margin-top: 50px;
}

.pagination a, .pagination span {
  width: 68px;
  height: 68px;
  border: 1px solid rgba(28, 29, 29, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  padding: 18px;
  justify-content: center;
  font-size: 20px;
  font-weight: 500;
}

@media screen and (max-width: 1200px) {
  .pagination a, .pagination span {
    width: 50px;
    height: 50px;
    font-size: 16px;
    padding: 12px;
  }
}

@media screen and (max-width: 575px) {
  .pagination a, .pagination span {
    width: 30px;
    height: 30px;
    font-size: 13px;
    padding: 8px;
  }
}

.pagination a:hover {
  border-color: var(--orange);
}

.pagination a.active,
.pagination .page-numbers.current {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
}

.pagination .pag-arrow {
  border-color: var(--black);
}

blockquote {
  font-size: var(--text-30);
  font-weight: 400;
  line-height: 1.13;
  position: relative;
  padding-top: 58px;
}

blockquote::before {
  content: "";
  width: 36px;
  height: 36px;
  background-image: url("../img/icons/quote.svg");
  position: absolute;
  top: 0;
  left: 0;
}

.list-circles {
  padding-left: 0;
  margin-left: 0;
}

.list-circles li {
  position: relative;
  padding-left: 20px;
  display: flex;
  align-items: center;
  margin-bottom: 12px;
}

.list-circles li:last-child {
  margin-bottom: 0;
}

.list-circles li::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--orange);
  position: absolute;
  left: 0;
}

.tabs-wrapper__head {
  display: flex;
  flex-flow: wrap;
  gap: 8px;
  margin-bottom: 8px;
}

.tabs-wrapper__body {
  padding: 40px;
  background: var(--white);
  border-radius: 12px;
}

@media screen and (max-width: 1200px) {
  .tabs-wrapper__body {
    padding: 20px;
  }
}

.tabs-wrapper .tab-item {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: 0.4s;
}

.tabs-wrapper .tab-item.active {
  position: relative;
  opacity: 1;
  visibility: visible;
  pointer-events: initial;
}

.btn-tab {
  padding: 16px 20px;
  border-radius: 8px;
  background: var(--white);
  color: var(--black);
  transition: 0.4s;
}

@media screen and (max-width: 575px) {
  .btn-tab {
    padding: 12px 14px;
    font-size: 14px;
    flex-grow: 1;
  }
}

.btn-tab.active {
  background: var(--orange);
  color: var(--white);
}

.link-chevron {
  font-size: var(--additional-22);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 500;
  color: var(--orange);
}

.link-chevron:hover {
  color: var(--orange-active);
}

.link-chevron svg {
  width: 26px;
  height: 26px;
}

.address {
  padding: 8px;
  padding-right: 20px;
  border-radius: 12px;
  background: var(--gray-fill);
  display: inline-flex;
  align-items: center;
  gap: 20px;
  font-weight: 500;
  font-size: var(--text-18);
}

.address__icon {
  width: 48px;
  height: 48px;
  border-radius: 8px;
  color: var(--white);
  padding: 12px;
  background: var(--orange);
}

.modal-wrapper {
  position: fixed;
  inset: 0;
  width: 100%;
  height: var(--app-height);
  background: rgba(28, 29, 29, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 40;
  pointer-events: none;
  visibility: hidden;
  opacity: 0;
  transition: 0.4s;
}

.modal-wrapper.open {
  opacity: 1;
  visibility: visible;
  pointer-events: initial;
}

.modal-wrapper.open .modal-wrapper__inner {
  transform: translateY(0);
}

.modal-wrapper__inner {
  padding: 32px;
  background: var(--white);
  border-radius: 12px;
  width: calc(100% - 30px);
  max-width: 550px;
  position: relative;
  transform: translateY(-50px);
  transition: 0.4s;
}

@media screen and (max-width: 575px) {
  .modal-wrapper__inner {
    padding: 20px;
  }
}

.modal-wrapper__inner.modal-middle {
  max-width: 716px;
}

.modal-wrapper .modal-body__desc {
  margin: 20px 0 28px;
}

@media screen and (max-width: 575px) {
  .modal-wrapper .modal-body__desc {
    margin: 10px 0 14px;
    font-size: 13px;
  }
}

.modal-wrapper .modal__close {
  position: absolute;
  top: 32px;
  right: 32px;
}

@media screen and (max-width: 575px) {
  .modal-wrapper .modal__close {
    top: 5px;
    right: 5px;
    width: 35px;
    padding: 8px;
    height: 35px;
  }
}

.modal-wrapper .form-send {
  flex-flow: column;
  align-items: flex-start;
  margin-top: 28px;
}

.modal-wrapper .form-send .btn {
  max-width: none;
}

.modal-wrapper .contacts-row {
  margin-top: 20px;
}

.modal-wrapper .contacts-row__item {
  padding: 12px;
}

.modal-wrapper .contacts-row__item span {
  margin-bottom: 10px;
  font-size: 14px;
}

[data-modal] {
  cursor: pointer;
}

@media screen and (min-width: 992px) {
  .hidden-desc {
    display: none !important;
  }
}

.header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 15;
}

.header::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background-image: linear-gradient(180deg, #fff, #fff0);
  opacity: 0;
  transition: 0.4s;
}

.header.fixed::after {
  opacity: 1;
}

@media screen and (max-width: 991px) {
  .header.fixed .header-row {
    background: #fff;
    padding: 0;
    margin-top: 15px;
    border-radius: 12px;
    border: 1px solid #f2ebeb;
  }
}

@media screen and (max-width: 575px) {
  .header.fixed .header-cart {
    top: calc(100% + 4px);
  }
}

.header-row {
  display: flex;
  flex-flow: wrap;
  gap: 4px;
  padding: 24px 0;
  position: relative;
  transition: 0.4s;
}

@media screen and (max-width: 991px) {
  .header-row {
    padding: 0px 0;
    background: #fff;
    margin-top: 15px;
    border-radius: 12px;
    border: 1px solid #f2ebeb;
  }
}

.header-row__logo {
  display: flex;
  align-items: center;
  justify-content: center;
}

@media screen and (max-width: 1200px) {
  .header-row__logo img {
    max-width: 120px;
  }
}

@media screen and (max-width: 991px) {
  .header-row__logo img {
    margin-left: 5px;
  }
}

@media screen and (max-width: 360px) {
  .header-row__logo img {
    max-width: 100px;
  }
}

.header-row__nav {
  flex-grow: 1;
  display: flex;
  gap: 48px;
  align-items: center;
  position: relative;
}

.header-row__nav a {
  font-weight: 400;
}

@media screen and (max-width: 1200px) {
  .header-row__nav {
    gap: 25px;
  }
}

@media screen and (max-width: 991px) {
  .header-row__nav {
    display: none;
  }
}

.header-row__nav .btns-row {
  margin-left: auto;
}

.header-row__nav .childs-item>a {
  display: flex;
  align-items: center;
  gap: 4px;
}

.header-row__nav .childs-item>a svg {
  width: 24px;
  height: 24px;
  background-image: url("../img/icons/childs-chevron.svg");
}

.header-row__nav .childs-item__list {
  position: absolute;
  padding-top: 34px;
  pointer-events: none;
}

.header-row__nav .childs-item:hover .childs-item__list {
  pointer-events: initial;
}

.header-row__nav .childs-item:hover ul {
  opacity: 1;
  visibility: visible;
}

.header-row__nav ul {
  display: flex;
  gap: 32px;
  position: relative;
}

@media screen and (max-width: 1200px) {
  .header-row__nav ul {
    gap: 15px;
  }
}

.header-row__nav ul ul {
  padding: 12px;
  border-radius: 12px;
  background: var(--white);
  display: block;
  top: 0;
  opacity: 0;
  visibility: hidden;
  transition: 0.4s;
}

@media screen and (max-width: 1600px) {
  .header-row__nav ul ul {
    padding: 8px;
  }
}

.header-row__nav ul ul li {
  margin-bottom: 4px;
}

.header-row__nav ul ul a {
  display: block;
  padding: 16px;
  border-radius: 8px;
  background: var(--white);
  font-size: 18px;
  white-space: nowrap;
}

@media screen and (max-width: 1600px) {
  .header-row__nav ul ul a {
    padding: 10px 14px;
    font-size: 14px;
  }
}

.header-row__nav ul ul a.active, .header-row__nav ul ul a:hover {
  background: var(--orange);
  color: var(--white);
}

.header-col {
  padding: 12px;
  background: var(--white);
  border-radius: 12px;
  align-items: center;
}

@media screen and (max-width: 1200px) {
  .header-col {
    padding: 9px;
  }
}

.header-row__right {
  padding: 16px;
}

@media screen and (max-width: 1200px) {
  .header-row__right {
    padding: 9px;
  }
}

@media screen and (max-width: 991px) {
  .header-row__right {
    flex-grow: 1;
  }

  .header-row__right .btns-row {
    justify-content: flex-end;
  }
}

.header-nav__inner {
  display: flex;
  align-items: center;
  position: relative;
}

.header .search-form {
  position: absolute;
  left: 0;
  width: 100%;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: 0.4s;
}

.header .search-form input {
  padding: 0;
  border: none;
  flex-grow: 1;
  font-size: var(--text-20);
  font-weight: 400;
  border-radius: 0;
}

.header.open-search .search-form {
  opacity: 1;
  visibility: visible;
  pointer-events: initial;
}

.header-cart {
  position: absolute;
  padding: 20px;
  background: var(--white);
  border-radius: 12px;
  right: 0;
  top: calc(100% - 20px);
  max-width: 535px;
  width: 100%;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-50px);
  transition: 0.4s;
}

@media screen and (max-width: 575px) {
  .header-cart {
    top: calc(100% + 4px);
    padding: 10px;
    border-radius: 12px;
    border: 1px solid #f2ebeb;
  }
}

.header-cart.open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: initial;
}

.header-cart-item {
  display: flex;
  flex-flow: wrap;
  gap: 12px;
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: 1px solid var(--gray-stroke);
}

@media screen and (max-width: 575px) {
  .header-cart-item {
    padding-bottom: 10px;
    margin-bottom: 10px;
  }
}

.header-cart-item:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border: none;
}

.header-cart-item__image {
  width: 56px;
  height: 56px;
}

.header-cart-item__image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.header-cart-item__price {
  color: var(--black);
  width: 30%;
}

@media screen and (max-width: 575px) {
  .header-cart-item__price {
    width: 100%;
  }
}

.header-cart-item__price .price__unit {
  padding-top: 5px;
}

.header-cart-item__info {
  width: calc(70% - 80px);
  display: flex;
  flex-flow: column;
  gap: 7px;
}

@media screen and (max-width: 575px) {
  .header-cart-item__info {
    width: calc(100% - 80px);
  }
}

.header-cart .selection-variations span {
  padding: 4px 8px;
  font-size: 12px;
}

.header-cart__buttons {
  display: flex;
  flex-flow: wrap;
  gap: 12px;
  margin-top: 24px;
}

.header-cart__buttons .btn {
  width: calc(50% - 6px);
}

.header-catalog {
  position: absolute;
  width: 100%;
  top: calc(100% + 4px);
  padding: 16px;
  left: 0;
  border-radius: 12px;
  background: var(--white);
  display: flex;
  flex-flow: wrap;
  gap: 32px;
  padding-bottom: 80px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: 0.4s;
}

.header-catalog.open {
  opacity: 1;
  visibility: visible;
  pointer-events: initial;
  transform: translateY(0);
}

.header-catalog.open .category-inner.active {
  pointer-events: initial;
}

.header-catalog__nav {
  width: 33.3333333333%;
}

.header-catalog__body {
  width: calc(66.6666666667% - 32px);
  position: relative;
}

.header-catalog .breadcrumbs {
  /* pointer-events: none; */
  margin-bottom: 0;
}

.header-catalog .breadcrumbs a, .header-catalog .breadcrumbs span {
  border: 1px solid var(--gray-stroke);
  color: var(--gray-text);
  background: var(--white);
}

.header-catalog .breadcrumbs a::after, .header-catalog .breadcrumbs span::after {
  border: 1px solid var(--gray-stroke);
}

.header-catalog .breadcrumbs a:last-child::after {
  display: none;
}

.header-catalog .breadcrumbs a:hover {
  color: var(--orange);
  border-color: var(--orange);
}

.category-inner {
  position: relative;
  position: absolute;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  inset: 0;
  transition: 0.4s;
}

.category-inner.active {
  opacity: 1;
  visibility: visible;
  position: relative;
}

.category-inner__breadcrumbs {
  margin-bottom: 30px;
}

.category-inner__childs {
  display: flex;
  flex-flow: wrap;
  gap: 30px;
}

.category-inner__childs .child-link {
  width: calc(33.3333333333% - 20px);
}

@media screen and (max-width: 1600px) {
  .category-inner__childs .child-link {
    width: calc(50% - 15px);
  }
}

.category-inner .child-link ul {
  display: block;
}

@media screen and (max-width: 1600px) {
  .category-inner .child-link ul {
    display: none;
  }
}

.category-inner .child-link ul li {
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 12px;
}

.category-inner .child-link ul li::before {
  width: 24px;
  min-width: 24px;
  height: 24px;
}

.catalog-btn {
  width: 100%;
  padding: 4px 8px;
  border-radius: 8px;
  background: var(--white);
  font-weight: 500;
  font-size: var(--additional-16);
  display: flex;
  align-items: center;
  gap: 8px;
  text-align: left;
}

.catalog-btn img {
  width: 68px;
  height: 68px;
}

@media screen and (max-width: 1600px) {
  .catalog-btn img {
    width: 40px;
    height: 40px;
  }
}

.catalog-btn.active {
  background: var(--orange);
  color: var(--white);
}

.catalog-btn.active img {
  /* filter: grayscale(100) brightness(100); */
}

.child-link {
  position: relative;
  display: flex;
  flex-flow: column;
  gap: 12px;
}

.child-link__image {
  width: 100%;
  max-width: 120px;
}

.child-link__title {
  font-weight: 500;
}

.menu-wrapper {
  position: fixed;
  width: 100%;
  height: var(--app-height);
  top: 0;
  background: var(--white);
  z-index: 10;
  padding-top: 105px;
  padding-bottom: 15px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: 0.4s;
}

.menu-wrapper__inner {
  height: 100%;
}

.menu-wrapper__inner .container {
  display: flex;
  flex-flow: column;
  height: 100%;
  gap: 10px;
}

.menu-wrapper li {
  padding-bottom: 10px;
  margin-bottom: 10px;
  border-bottom: 1px solid #f2ebeb;
}

.menu-wrapper li:last-child {
  border: none;
}

.menu-wrapper a {
  font-size: 16px;
  font-weight: 500;
}

.menu-wrapper .childs-item ul {
  padding-left: 5px;
}

.menu-wrapper .childs-item li {
  margin-bottom: 10px;
  padding-bottom: 0;
  border: none;
}

.menu-wrapper .childs-item li a {
  font-size: 14px;
  font-weight: 400;
  opacity: 0.5;
}

.menu-wrapper .childs-item>a {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-bottom: 10px;
}

.menu-wrapper .childs-item>a svg {
  width: 24px;
  height: 24px;
  background-image: url("../img/icons/childs-chevron.svg");
}

.menu-wrapper .footer-contacts {
  margin-top: auto;
}

.active-menu .menu-wrapper {
  opacity: 1;
  visibility: visible;
  pointer-events: initial;
}

.active-menu .btn-burger svg:first-child {
  opacity: 0;
}

.active-menu .btn-burger svg:last-child {
  opacity: 1;
}

.btn-burger {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn-burger svg {
  position: absolute;
  width: 25px;
  height: 25px;
  transition: 0.4s;
}

.btn-burger svg:last-child {
  opacity: 0;
}

.footer {
  padding: 60px 0 40px;
  background: var(--white);
}

@media screen and (max-width: 768px) {
  .footer {
    padding: 45px 0 30px;
  }
}

.footer-row {
  display: flex;
  flex-flow: wrap;
  row-gap: 30px;
}

.footer-row__logo {
  width: 36.8421052632%;
}

@media screen and (max-width: 1200px) {
  .footer-row__logo {
    width: 100%;
  }
}

.footer-row__logo .logo {
  display: inline-block;
}

.footer-row__logo img {
  height: 70px;
}

.footer-row__logo .btn {
  width: 100%;
  max-width: 290px;
}

.footer-row__nav {
  width: 63.1578947368%;
  display: flex;
  flex-flow: wrap;
  justify-content: space-between;
}

@media screen and (max-width: 1200px) {
  .footer-row__nav {
    width: 100%;
  }
}

@media screen and (max-width: 1200px) {
  .footer-col {
    width: 33.3333333333%;
  }
}

@media screen and (max-width: 768px) {
  .footer-col {
    width: 100%;
    margin-top: 20px;
  }

  .footer-col:first-child {
    margin-top: 0;
  }
}

.footer-col__title {
  font-size: var(--additional-22);
  font-weight: 500;
  margin-bottom: 16px;
}

.footer-col ul {
  max-width: 270px;
}

@media screen and (max-width: 1200px) {
  .footer-col ul {
    padding-right: 30px;
  }
}

.footer-col ul li {
  margin-bottom: 12px;
}

.footer-col ul li:last-child {
  margin-bottom: 0;
}

.footer-contacts {
  width: 100%;
  display: flex;
  gap: 4px;
  margin-top: 40px;
}

@media screen and (max-width: 1600px) {
  .footer-contacts {
    flex-flow: wrap;
  }
}

@media screen and (max-width: 768px) {
  .footer-contacts {
    margin-top: 15px;
  }
}

.footer-contacts__item {
  flex-grow: 1;
  padding: 20px;
  background: var(--gray-fill);
  border-radius: 12px;
  font-size: var(--text-18);
  font-weight: 500;
  color: var(--black);
  line-height: 1.3;
}

@media screen and (max-width: 1600px) {
  .footer-contacts__item {
    min-width: 30%;
  }
}

@media screen and (max-width: 768px) {
  .footer-contacts__item {
    padding: 10px;
    border-radius: 8px;
    font-size: 15px;
  }
}

.footer-contacts__item span {
  color: var(--gray-text);
  font-size: var(--text-14);
  display: block;
  margin-bottom: 24px;
  font-weight: 300;
}

@media screen and (max-width: 768px) {
  .footer-contacts__item span {
    margin-bottom: 15px;
    font-size: 12px;
  }
}

.footer-details {
  display: flex;
  flex-flow: wrap;
  gap: 12px;
  max-width: 290px;
  color: var(--gray-text);
  margin: 16px 0 40px;
}

@media screen and (max-width: 768px) {
  .footer-details {
    margin: 15px 0;
  }
}

.footer-copyright {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 60px;
  gap: 30px;
}

@media screen and (max-width: 768px) {
  .footer-copyright {
    flex-flow: wrap;
    margin-top: 30px;
  }
}

.footer-copyright__left {
  font-weight: 500;
}

.footer-copyright__left a {
  font-size: var(--text-12);
  color: var(--gray-text);
  text-decoration: underline;
  font-weight: 400;
}

.footer-copyright__left a:hover {
  color: var(--orange);
}

.footer .privacy-links {
  display: flex;
  gap: 16px;
  flex-flow: wrap;
  row-gap: 8px;
  margin-top: 10px;
}

.footer .develop {
  display: flex;
  align-items: center;
  gap: 10px;
}

.hero-wrapper {
  position: relative;
  overflow: hidden;
  padding-top: 0;
}

.hero-wrapper:first-child {
  padding-top: 0;
}

.hero-wrapper:last-child {
  padding-bottom: 0;
}

.hero-wrapper__inner {
  min-height: 800px;
  position: relative;
  z-index: 1;
  color: var(--white);
  display: flex;
  padding: 140px 0 65px;
  background-position: center;
  background-size: cover;
}

@media screen and (max-width: 575px) {
  .hero-wrapper__inner {
    min-height: 500px;
    padding-bottom: 40px;
  }
}

.hero-wrapper__inner::before {
  content: "";
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 39.84%, rgba(0, 0, 0, 0.75) 100%);
  position: absolute;
  width: 100%;
  height: 100%;
  inset: 0;
  z-index: -1;
}

@media screen and (max-width: 575px) {
  .hero-wrapper__inner::before {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.75) 100%);
  }
}

.hero-wrapper .btn {
  min-width: 200px;
}

@media screen and (max-width: 1200px) {
  .hero-wrapper .btn {
    min-width: 150px;
  }
}

.hero-wrapper .hero-btns {
  display: flex;
  align-items: center;
  gap: 24px;
}

.hero-wrapper .breadcrumbs {
  margin-bottom: auto;
}

.hero-wrapper .container {
  display: flex;
  flex-flow: column;
}

.hero-wrapper-home .container {
  justify-content: flex-end;
}

@media screen and (max-width: 991px) {
  .hero-wrapper .h1 {
    margin-top: 30px;
  }
}

@media screen and (max-width: 575px) {
  .hero-wrapper .h1 br {
    display: none;
  }
}

.categories-list {
  display: flex;
  flex-flow: wrap;
  gap: 4px;
}

.categories-list__item {
  width: calc(33.3333333333% - 2.6666666667px);
  background: var(--white);
  border-radius: 12px;
  padding: 32px;
  display: flex;
  flex-flow: column;
  gap: 12px;
  min-height: 440px;
}

@media screen and (max-width: 1600px) {
  .categories-list__item {
    min-height: 400px;
    padding: 25px;
  }
}

@media screen and (max-width: 991px) {
  .categories-list__item {
    width: calc(50% - 2px);
  }
}

@media screen and (max-width: 768px) {
  .categories-list__item {
    width: 100%;
    min-height: auto;
    padding: 20px;
  }

  .categories-list__item .category-title br {
    display: none;
  }
}

.categories-list .category-image {
  margin-top: auto;
}

.areas-row {
  display: flex;
  flex-flow: wrap;
  gap: 4px;
}

.areas-row__list {
  width: calc(66.6666666667% - 2px);
  display: flex;
  flex-flow: wrap;
  gap: 4px;
}

@media screen and (max-width: 991px) {
  .areas-row__list {
    width: 100%;
  }
}

.areas-row__list .card-item {
  width: calc(50% - 2px);
  height: 330px;
}

@media screen and (max-width: 991px) {
  .areas-row__list .card-item {
    height: auto;
  }
}

@media screen and (max-width: 768px) {
  .areas-row__list .card-item {
    width: 100%;
  }
}

.areas-row__list .card-item .card-icon {
  width: 64px;
  height: 64px;
  margin-bottom: 48px;
  color: var(--black);
  background: rgba(28, 29, 29, 0.1);
  border: none;
}

@media screen and (max-width: 575px) {
  .areas-row__list .card-item .card-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
  }
}

.areas-row__list .card-item .card-title {
  color: var(--title);
}

.areas-row__list .card-item:nth-child(1) {
  background: var(--orange);
  color: var(--white);
}

.areas-row__list .card-item:nth-child(1) .card-icon {
  color: var(--white);
}

.areas-row__list .card-item:nth-child(1) .card-title {
  color: var(--white);
}

.areas-row__list .card-item:nth-child(3) {
  background: var(--orange);
  background: linear-gradient(244deg, #BABABA 0%, #E4E4E4 25%, #D8D8D8 50%, #C7C7C7 75%, #9D9D9D 100%);
}

.areas-row__list .card-item:nth-child(3) .card-icon {
  color: var(--white);
}

.areas-row__list .card-item:nth-child(3) .card-title {
  color: var(--black);
}

.areas-row__list .card-item:nth-child(4) {
  color: var(--white);
  background: var(--black);
}

.areas-row__list .card-item:nth-child(4) .card-icon {
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
}

.areas-row__list .card-item:nth-child(4) .card-title {
  color: var(--white);
}

.areas-row__image {
  width: calc(33.3333333333% - 2px);
}

@media screen and (max-width: 991px) {
  .areas-row__image {
    display: none;
  }
}

.areas-row__image img {
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 12px;
  width: 100%;
}

.card-info {
  color: var(--black);
  transition: 0.4s;
}

.card-info p {
  color: var(--black);
}

.card-info__icon {
  width: 140px;
  height: 140px;
  border-radius: 12px;
  padding: 34px;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
  margin-bottom: 28px;
  transition: 0.4s;
}

@media screen and (max-width: 1200px) {
  .card-info__icon {
    width: 80px;
    height: 80px;
    padding: 20px;
  }
}

@media screen and (max-width: 575px) {
  .card-info__icon {
    width: 60px;
    height: 60px;
    padding: 15px;
    border-radius: 6px;
  }
}

.card-info__icon svg {
  width: 100%;
  height: 100%;
}

.card-info:hover {
  color: var(--orange);
}

.card-info:hover .card-info__icon {
  background: var(--orange);
  color: var(--white);
}

.partners-slider {
  overflow: hidden;
}

.partners-slider .swiper-slide {
  width: calc(20% - 3.2px);
  margin-right: 4px;
}

@media screen and (max-width: 1200px) {
  .partners-slider .swiper-slide {
    width: calc(33.3333333333% - 2.6666666667px);
  }
}

@media screen and (max-width: 991px) {
  .partners-slider .swiper-slide {
    width: calc(50% - 2px);
  }
}

.partners-slider .swiper-slide:last-child {
  margin-right: 0;
}

.partner-logo {
  padding: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: var(--white);
  height: 160px;
}

@media screen and (max-width: 575px) {
  .partner-logo {
    height: 80px;
  }
}

.partner-logo img {
  max-height: 100%;
}

.callback-row__image {
  position: relative;
  overflow: hidden;
}

@media screen and (max-width: 991px) {
  .callback-row__image {
    display: none;
  }
}

.callback-row__image img {
  width: 100%;
  border-radius: 12px;
  height: 100%;
  object-fit: cover;
  object-position: center;
  position: absolute;
}

@media screen and (max-width: 991px) {
  .callback-row__form {
    width: 100%;
  }
}

@media screen and (max-width: 768px) {
  .advantage-row {
    row-gap: 20px;
  }

  .advantage-row .col-3 {
    width: 50%;
  }
}

.products-list {
  display: flex;
  flex-flow: wrap;
  gap: 4px;
}

.products-list .product-item {
  width: calc(25% - 3px);
}

@media screen and (max-width: 1200px) {
  .products-list .product-item {
    width: calc(33.3333333333% - 2.6666666667px);
  }
}

@media screen and (max-width: 991px) {
  .products-list .product-item {
    width: calc(50% - 2px);
  }
}

.catalog-wrapper .products-list .product-item {
  width: calc(33.3333333333% - 2.6666666667px);
}

@media screen and (max-width: 991px) {
  .catalog-wrapper .products-list .product-item {
    width: calc(50% - 2px);
  }
}

.catalog-wrapper__sidebar {
  position: sticky;
  top: 108px;
}

@media screen and (max-width: 1200px) {
  .catalog-wrapper__sidebar {
    width: 25%;
  }
}

@media screen and (max-width: 991px) {
  .catalog-wrapper__sidebar {
    width: 100%;
    position: relative;
    top: 0;
  }
}

.product-item {
  background: var(--white);
  padding: 28px;
  border-radius: 12px;
  font-weight: 400;
  color: var(--gray-text);
  position: relative;
}

@media screen and (max-width: 1200px) {
  .product-item {
    padding: 15px;
  }
}

.product-item__title {
  color: var(--black);
  transition: 0.4s;
  margin: 24px 0 12px;
}

@media screen and (max-width: 575px) {
  .product-item__title {
    margin: 15px 0 5px;
  }
}

.product-item__price {
  margin-bottom: 28px;
}

@media screen and (max-width: 575px) {
  .product-item__price {
    margin-bottom: 15px;
  }
}

.product-item .btn::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
}

.product-item:hover .product-item__title {
  color: var(--orange);
}

/* .product-item:hover .btn {
  background: var(--white);
  color: var(--black);
} */

.category-big {
  display: flex;
  flex-flow: column;
  gap: 20px;
}

.list-arrow li {
  position: relative;
  color: var(--black);
  display: flex;
  gap: 12px;
  font-size: var(--text-18);
  margin-bottom: 16px;
}

.list-arrow li:last-child {
  margin-bottom: 0;
}

.list-arrow li::before {
  content: "";
  width: 28px;
  min-width: 28px;
  height: 28px;
  border-radius: 4px;
  background: var(--black);
  background-image: url("../img/icons/chevron-right-white.svg");
  display: block;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 20px;
}

.label-text {
  position: relative;
  color: var(--gray-text);
  padding: 16px 18px;
  border: 1px solid var(--gray-stroke);
  border-radius: 8px;
  display: flex;
  font-size: var(--text-16);
  align-items: flex-end;
  gap: 5px;
}

.label-text input {
  font-size: var(--text-16);
  padding: 0;
  border: none;
  max-width: calc(100% - 30px);
  flex-grow: 1;
  border-radius: 0;
}

.price-range {
  display: flex;
  flex-flow: wrap;
  gap: 8px;
  row-gap: 24px;
}

.price-range .label-text {
  width: calc(50% - 4px);
}

.price-range .input-range {
  width: 100%;
}

.filter-item {
  margin-bottom: 30px;
}

.filter-item:last-child {
  margin-bottom: 0;
}

.filter-item__title {
  margin-bottom: 24px;
}

@media screen and (max-width: 575px) {
  .filter-item__title {
    margin-bottom: 15px;
  }
}

.filter-item label {
  margin-bottom: 16px;
}

@media screen and (max-width: 575px) {
  .filter-item label {
    margin-bottom: 10px;
  }
}

.filter-item label:last-child {
  margin-bottom: 0;
}

.filter-item .input-check {
  align-items: flex-start;
}

.filter-accepted {
  width: 100%;
  margin-top: 75px;
}

@media screen and (max-width: 991px) {
  .filter-accepted {
    margin-top: 20px;
  }
}

.filter-accepted .btn {
  width: 100%;
  margin-bottom: 8px;
}

.filter-accepted .btn:last-child {
  margin-bottom: 0;
}

.gallery-wrapper {
  padding: 30px 90px;
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
}

@media screen and (max-width: 1600px) {
  .gallery-wrapper {
    padding: 20px 50px;
  }
}

@media screen and (max-width: 1200px) {
  .gallery-wrapper {
    padding: 20px;
  }
}

@media screen and (max-width: 1200px) {
  .gallery-wrapper__single {
    overflow: hidden;
  }
}

.gallery-wrapper .gallery-slide img {
  max-height: 560px;
}

.gallery-wrapper__thumbs {
  display: flex;
  align-items: center;
  gap: 16px;
  justify-content: center;
}

.gallery-wrapper__thumbs .gallery-thumbs {
  max-width: 290px;
  overflow: hidden;
}

.gallery-wrapper__thumbs .swiper-slide {
  width: 72px;
  height: 72px;
  padding: 1px;
}

.gallery-wrapper__thumbs .swiper-slide .thumb-slide {
  padding: 4px 6px;
  border-radius: 8px;
  width: 100%;
  height: 100%;
  border: 1px solid var(--white);
  transition: 0.4s;
}

@media screen and (max-width: 575px) {
  .gallery-wrapper__thumbs .swiper-slide {
    width: calc(33.3333333333% - 0px);
  }
}

.gallery-wrapper__thumbs .swiper-slide-thumb-active .thumb-slide {
  border-color: var(--orange);
}

.gallery-wrapper .btn-chevron {
  width: 40px;
  min-width: 40px;
  height: 40px;
  padding: 8px;
  border-radius: 8px;
  border: 1px solid var(--black);
}

.gallery-wrapper .btn-chevron svg {
  width: 100%;
  height: 100%;
}

.variation-item {
  margin-bottom: 28px;
}

@media screen and (max-width: 575px) {
  .variation-item {
    margin-bottom: 15px;
  }
}

.variation-item:last-child {
  margin-bottom: 0;
}

.variation-item__title {
  margin-bottom: 16px;
}

.variation-item_list {
  display: flex;
  flex-flow: wrap;
  gap: 12px;
}

.variation-check {
  position: relative;
  display: inline-flex;
  cursor: pointer;
}

.variation-check input {
  position: absolute;
  opacity: 0;
  visibility: hidden;
}

.variation-check input:checked+span {
  background: var(--orange);
  color: var(--white);
  gap: 8px;
}

.variation-check input:checked+span::before {
  width: 24px;
}

.variation-check span {
  padding: 12px 16px;
  border-radius: 8px;
  background: var(--white);
  font-size: var(--text-18);
  color: var(--black);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: 0.4s;
  gap: 0;
}

.variation-check span::before {
  content: "";
  width: 24px;
  background-image: url("../img/icons/check-white.svg");
  height: 24px;
  display: inline-block;
  background-size: 24px;
  width: 0;
  transition: 0.4s;
}

.variation-check:hover span {
  color: var(--orange);
}

.btn-quantity {
  width: 68px;
  height: 68px;
  border: 1px solid var(--gray-stroke);
  border-radius: 8px;
  padding: 18px;
  color: var(--black);
}

@media screen and (max-width: 1200px) {
  .btn-quantity {
    width: 52px;
    height: 52px;
  }
}

.btn-quantity:hover {
  border-color: var(--orange);
  color: var(--orange);
}

.add-cart {
  display: flex;
  gap: 16px;
  margin-top: 40px;
}

@media screen and (max-width: 1200px) {
  .add-cart {
    margin-top: 20px;
  }
}

.add-cart .btn {
  flex-grow: 1;
}

.add-cart__quantity {
  display: flex;
  align-items: center;
  gap: 4px;
}

.add-cart input {
  width: 132px;
  text-align: center;
  background: none;
}

.product-wrapper-row {
  margin-bottom: 40px;
}

.list-chart {
  font-size: var(--text-20);
}

@media screen and (max-width: 1200px) {
  .list-chart {
    font-size: 15px;
  }
}

.list-chart li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  border-bottom: 1px solid var(--gray-stroke);
}

@media screen and (max-width: 1200px) {
  .list-chart li {
    padding: 15px 0;
  }
}

@media screen and (max-width: 575px) {
  .list-chart li {
    flex-flow: column;
    justify-content: flex-start;
    padding: 10px 0;
    align-items: flex-start;
  }
}

.list-chart li:last-child {
  padding-bottom: 0;
  border: none;
}

.list-chart li span {
  flex-grow: 1;
  width: 70%;
}

@media screen and (max-width: 575px) {
  .list-chart li span {
    color: var(--gray-text);
    font-size: 12px;
    width: 100%;
  }
}

.list-chart li span:last-child {
  width: 30%;
  text-align: left;
}

@media screen and (max-width: 575px) {
  .list-chart li span:last-child {
    color: var(--black);
    font-size: 14px;
    padding-top: 5px;
    font-weight: 500;
    width: 100%;
  }
}

.list-chart li:first-child {
  font-size: var(--text-24);
  font-weight: 500;
}

@media screen and (max-width: 575px) {
  .list-chart li:first-child {
    display: none;
  }
}

.docs-row {
  display: flex;
  flex-flow: wrap;
  gap: 12px;
}

.docs-row__item {
  width: calc(25% - 9px);
  padding: 24px;
  border: 1px solid var(--gray-stroke);
  border-radius: 12px;
  min-height: 300px;
  display: flex;
  flex-flow: column;
  gap: 8px;
}

@media screen and (max-width: 1200px) {
  .docs-row__item {
    width: calc(33.3333333333% - 8px);
  }
}

@media screen and (max-width: 991px) {
  .docs-row__item {
    width: calc(50% - 6px);
  }
}

@media screen and (max-width: 575px) {
  .docs-row__item {
    width: 100%;
    min-height: auto;
    padding: 15px;
  }
}

.docs-row__item .btn {
  margin-top: auto;
}

@media screen and (max-width: 575px) {
  .docs-row__item .btn {
    margin-top: 20px;
  }
}

@media screen and (max-width: 575px) {
  .product-summary .price {
    font-size: 22px;
  }
}

.news-list {
  display: flex;
  flex-flow: wrap;
  gap: 4px;
}

.news-list .news-item {
  width: calc(33.3333333333% - 2.6666666667px);
}

@media screen and (max-width: 768px) {
  .news-list .news-item {
    width: calc(50% - 2px);
    width: 100%;
  }
}

.news-item {
  border-radius: 12px;
  overflow: hidden;
  background: var(--white);
  position: relative;
}

@media screen and (max-width: 575px) {
  .news-item {
    border-radius: 8px;
  }
}

.news-item__image {
  width: 100%;
  aspect-ratio: 476/400;
}

@media screen and (max-width: 768px) {
  .news-item__image {
    max-height: 250px;
  }
}

.news-item__image img {
  width: 100%;
  object-fit: cover;
  object-position: center;
  height: 100%;
}

.news-item__content {
  padding: 24px 32px 32px;
  display: flex;
  flex-flow: column;
  gap: 16px;
}

@media screen and (max-width: 1200px) {
  .news-item__content {
    gap: 10px;
    padding: 18px;
  }
}

.news-item__content .btn {
  margin-top: 16px;
}

@media screen and (max-width: 1200px) {
  .news-item__content .btn {
    margin-top: 10px;
  }
}

.news-item__content .btn::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
}

.news-item__title {
  font-weight: 400;
  transition: 0.4s;
  color: var(--black);
  line-height: 1.3;
}

@media screen and (max-width: 1200px) {
  .news-item__title {
    font-size: 20px;
  }
}

@media screen and (max-width: 768px) {
  .news-item__title {
    font-size: 15px;
  }
}

.news-item__date {
  color: var(--gray-text);
  font-size: var(--text-18);
}

@media screen and (max-width: 768px) {
  .news-item__date {
    font-size: 12px;
  }
}

.news-item:hover .news-item__title {
  color: var(--orange);
}

.news-list-archive {
  row-gap: 32px;
}

.filter-list {
  display: flex;
  flex-flow: wrap;
  gap: 8px;
}

.filter-list__item {
  position: relative;
}

.filter-list input {
  position: absolute;
  opacity: 0;
  visibility: hidden;
}

.filter-list input:checked+span,
.link-category.active,
.link-category.active:hover {
  background: var(--orange);
  border-color: var(--orange);
  color: var(--white);
}

.filter-list span,
.link-category {
  display: block;
  padding: 8px 12px;
  border-radius: 4px;
  background: var(--white);
  color: var(--black);
  border: 1px solid var(--gray-stroke);
  font-weight: 500;
  transition: 0.4s;
  cursor: pointer;
}

.filter-list span:hover,
.link-category:hover {
  color: var(--orange);
  border-color: var(--orange-active-2);
}

.last-articles__item {
  padding: 20px 24px;
  background: var(--white);
  border-radius: 12px;
  display: flex;
  flex-flow: column;
  gap: 12px;
  margin-bottom: 12px;
}

.last-articles__item:last-child {
  margin-bottom: 0;
}

.last-articles-col {
  padding-left: 32px;
}

.post-meta {
  display: flex;
  flex-flow: wrap;
  gap: 16px;
  margin: 24px 0 32px;
}

.post-content h1, .post-content h2, .post-content h3, .post-content h4, .post-content h5, .post-content h6 {
  margin: 24px 0;
}

@media screen and (max-width: 575px) {
  .post-content h1, .post-content h2, .post-content h3, .post-content h4, .post-content h5, .post-content h6 {
    margin: 15px 0;
  }
}

.post-content h1:first-child, .post-content h2:first-child, .post-content h3:first-child, .post-content h4:first-child, .post-content h5:first-child, .post-content h6:first-child {
  margin-top: 0;
}

.post-content h1:last-child, .post-content h2:last-child, .post-content h3:last-child, .post-content h4:last-child, .post-content h5:last-child, .post-content h6:last-child {
  margin-bottom: 0;
}

.post-content p, .post-content blockquote, .post-content table, .post-content ul, .post-content ol, .post-content .address {
  margin-bottom: 20px;
}

@media screen and (max-width: 575px) {
  .post-content p, .post-content blockquote, .post-content table, .post-content ul, .post-content ol, .post-content .address {
    margin-bottom: 10px;
  }
}

.post-content p:last-child, .post-content blockquote:last-child, .post-content table:last-child, .post-content ul:last-child, .post-content ol:last-child, .post-content .address:last-child {
  margin-bottom: 0;
}

.post-content figure {
  margin: 32px 0;
}

@media screen and (max-width: 575px) {
  .post-content figure {
    margin: 20px 0;
  }
}

.post-content img {
  border-radius: 12px;
  width: 100%;
  height: auto;
}

@media screen and (max-width: 575px) {
  .post-content img {
    border-radius: 8px;
  }
}

.post-content figcaption {
  margin-top: 12px;
  color: var(--gray-text);
  font-size: var(--text-14);
}

@media screen and (max-width: 575px) {
  .post-content figcaption {
    font-size: 12px;
  }
}

@media screen and (max-width: 1200px) {
  .news-row__list {
    width: 100%;
  }
}

@media screen and (max-width: 1200px) {
  .news-row .last-articles-col {
    display: none;
  }
}

.about-desc {
  display: flex;
  flex-flow: wrap;
  gap: 4px;
  row-gap: 50px;
  justify-content: center;
}

@media screen and (max-width: 768px) {
  .about-desc {
    row-gap: 10px;
  }
}

.about-desc__top {
  width: 100%;
  padding-left: calc(25% - 2.6666666667px);
}

@media screen and (max-width: 768px) {
  .about-desc__top {
    width: 100%;
    padding-left: 0;
  }
}

.about-desc__image img {
  border-radius: 12px;
}

@media screen and (max-width: 768px) {
  .about-desc__image img {
    border-radius: 4px;
  }
}

.about-desc__image:nth-child(2) {
  width: calc(25% - 2.6666666667px);
}

.about-desc__image:nth-child(3) {
  width: calc(62.5% - 2.6666666667px);
}

.about-desc__image:nth-child(4) {
  width: calc(12.5% - 2.6666666667px);
}

.card-ceo {
  height: auto;
  display: inline-flex;
  gap: 70px;
}

.pl50 {
  padding-left: 50px;
}

@media screen and (max-width: 991px) {
  .pl50 {
    padding: 0;
    padding-top: 15px;
  }
}

.pr50 {
  padding-right: 50px;
}

@media screen and (max-width: 991px) {
  .pr50 {
    padding: 0;
    padding-bottom: 15px;
  }
}

.key-products-row img {
  max-height: 200px;
}

.contacts-row {
  display: flex;
  flex-flow: wrap;
  gap: 12px;
  margin-top: 40px;
}

.contacts-row__item {
  width: calc(50% - 6px);
  padding: 20px;
  background: var(--gray-fill);
  border-radius: 12px;
  font-size: var(--text-18);
  font-weight: 500;
  color: var(--black);
  line-height: 1.3;
}

.contacts-row__item span {
  color: var(--gray-text);
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
  font-weight: 300;
}

.contacts-row__item span img {
  width: 22px;
  height: 22px;
  object-fit: cover;
  object-position: center;
}

.map-wrapper {
  height: 720px;
  border-radius: 12px;
  overflow: hidden;
}

.vacancies-list__item {
  display: flex;
  flex-flow: wrap;
  gap: 20px;
  padding: 32px;
  border-radius: 12px;
  background: var(--white);
  min-height: 240px;
  margin-bottom: 12px;
}

@media screen and (max-width: 991px) {
  .vacancies-list__item {
    padding: 25px;
  }
}

@media screen and (max-width: 575px) {
  .vacancies-list__item {
    row-gap: 10px;
  }
}

@media screen and (max-width: 575px) {
  .vacancies-list__item {
    padding: 15px;
  }
}

.vacancies-list__item:last-child {
  margin-bottom: 0;
}

.vacancies-list .vacancy-left {
  width: calc(35.7142857143% - 13.3333333333px);
  display: flex;
  flex-flow: column;
  justify-content: space-between;
}

@media screen and (max-width: 991px) {
  .vacancies-list .vacancy-left {
    width: calc(50% - 10px);
  }
}

@media screen and (max-width: 768px) {
  .vacancies-list .vacancy-left {
    width: 100%;
    gap: 10px;
  }
}

.vacancies-list .vacancy-center {
  width: calc(42.8571428571% - 13.3333333333px);
  display: flex;
  flex-flow: column;
  gap: 16px;
}

@media screen and (max-width: 991px) {
  .vacancies-list .vacancy-center {
    width: calc(50% - 10px);
  }
}

@media screen and (max-width: 768px) {
  .vacancies-list .vacancy-center {
    width: 100%;
  }
}

.vacancies-list .vacancy-right {
  width: calc(21.4285714286% - 13.3333333333px);
  display: flex;
  flex-flow: column;
  gap: 8px;
  align-items: flex-end;
  justify-content: center;
}

@media screen and (max-width: 991px) {
  .vacancies-list .vacancy-right {
    width: 100%;
    flex-flow: row;
  }

  .vacancies-list .vacancy-right .btn {
    width: calc(50% - 4px);
    max-width: none;
  }
}

.vacancies-list .btn {
  width: 100%;
  max-width: 200px;
}

.cart-item {
  display: flex;
  flex-flow: wrap;
  gap: 30px;
  padding: 24px;
  background: var(--white);
  border-radius: 12px;
  margin-bottom: 4px;
  position: relative;
}

@media screen and (max-width: 768px) {
  .cart-item {
    padding: 20px;
    border-radius: 8px;
  }
}

.cart-item:last-child {
  margin-bottom: 0;
}

.cart-item__image {
  width: 170px;
  height: auto;
}

@media screen and (max-width: 768px) {
  .cart-item__image {
    position: absolute;
    top: 20px;
    left: 20px;
    width: 80px;
    height: 80px;
  }
}

.cart-item__content {
  flex-grow: 1;
  width: calc(100% - 200px);
  display: flex;
  flex-flow: column;
  justify-content: space-between;
}

@media screen and (max-width: 768px) {
  .cart-item__content {
    width: 100%;
  }
}

.cart-item__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
}

@media screen and (max-width: 768px) {
  .cart-item__head {
    padding-left: 90px;
    margin-bottom: 20px;
  }
}

.cart-item__info {
  display: flex;
  flex-flow: column;
  gap: 10px;
}

.cart-item__price {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}

@media screen and (max-width: 768px) {
  .cart-item__price {
    flex-flow: wrap;
    row-gap: 10px;
  }

  .cart-item__price .price {
    width: 100%;
  }

  .cart-item__price .price .h6 {
    font-size: 23px;
  }
}

@media screen and (max-width: 768px) {
  .cart-item .add-cart__quantity {
    width: 100%;
    justify-content: flex-end;
  }
}

.cart-item .add-cart__quantity input {
  text-align: center;
  background: none;
  padding: 12px;
  font-size: var(--text-18);
  width: 90px;
}

@media screen and (max-width: 768px) {
  .cart-item .add-cart__quantity input {
    flex-grow: 1;
  }
}

.cart-item .btn-quantity {
  width: 49px;
  height: 49px;
  padding: 12px;
}

@media screen and (max-width: 768px) {
  .cart-item .btn-quantity {
    width: 45px;
    height: 45px;
  }
}

.btn-remove {
  min-width: 36px;
  height: 36px;
  background: var(--white);
  border: 1px solid var(--gray-stroke);
  padding: 10px;
}

.btn-remove:hover {
  background: var(--white);
  color: var(--orange);
  border-color: var(--orange);
}

.selection-variations {
  display: flex;
  flex-flow: wrap;
  gap: 4px;
}

.selection-variations span {
  padding: 6px 8px;
  background: var(--gray-fill);
  border-radius: 4px;
  font-size: var(--text-14);
  color: var(--black);
}

.checkout-wrapper {
  align-items: flex-start;
}

@media screen and (max-width: 991px) {
  .checkout-wrapper .margin-bottom-30 {
    margin-bottom: 15px;
  }
}

.checkout-wrapper__total {
  position: sticky;
  top: 108px;
}

@media screen and (max-width: 1600px) {
  .checkout-wrapper__total {
    width: 30%;
  }
}

@media screen and (max-width: 991px) {
  .checkout-wrapper__total {
    width: 100%;
  }
}

.checkout-wrapper__total .white-block {
  padding: 24px;
  margin-bottom: 4px;
}

@media screen and (max-width: 1200px) {
  .checkout-wrapper__total .white-block {
    padding: 15px;
  }
}

.checkout-wrapper__total .white-block:last-child {
  margin-bottom: 0;
}

.checkout-wrapper__total .list-num {
  margin-bottom: 28px;
}

.checkout-wrapper__total .list-num li {
  margin-bottom: 4px;
}

.checkout-wrapper__total .list-num li:last-child {
  margin-bottom: 0;
}

@media screen and (max-width: 1600px) {
  .checkout-wrapper__items {
    width: 70%;
  }
}

@media screen and (max-width: 991px) {
  .checkout-wrapper__items {
    width: 100%;
  }
}

.checkout-wrapper__items .white-block {
  padding: 40px;
  margin-bottom: 4px;
}

@media screen and (max-width: 991px) {
  .checkout-wrapper__items .white-block {
    padding: 25px;
  }
}

@media screen and (max-width: 575px) {
  .checkout-wrapper__items .white-block {
    padding: 15px;
    border-radius: 8px;
  }
}

.checkout-wrapper__items .white-block:last-child {
  margin-bottom: 0;
}

.checkout-wrapper__items textarea {
  min-height: 120px;
}

.checkout-wrapper .input-check {
  align-items: flex-start;
}

.checkout-wrapper .input-check a {
  text-decoration: none;
  font-weight: 500;
}

.delivery-desc {
  padding: 16px;
  background: var(--gray-fill);
  border-radius: 8px;
  display: flex;
  flex-flow: column;
  gap: 12px;
  font-size: var(--text-14);
}

.delivery-desc .list-check li::before {
  width: 16px;
  height: 16px;
  min-width: 16px;
}

.list-check li {
  margin-bottom: 12px;
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.list-check li:last-child {
  margin-bottom: 0;
}

.list-check li::before {
  content: "";
  width: 22px;
  height: 22px;
  min-width: 22px;
  background-image: url("../img/icons/check-orange.svg");
  display: block;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}

.checkout-block {
  position: relative;
}

@media screen and (max-width: 575px) {
  .checkout-block .h5 {
    padding-right: 50px;
  }
}

.checkout-block__lines {
  position: absolute;
  top: 10px;
  right: 0;
}

@media screen and (max-width: 768px) {
  .checkout-block__lines {
    top: 15px;
  }
}

.checkout-block__lines::before, .checkout-block__lines::after {
  content: "";
  width: 90px;
  height: 7px;
  position: absolute;
  background: var(--orange);
  right: 0;
  top: 0;
}

@media screen and (max-width: 768px) {
  .checkout-block__lines::before, .checkout-block__lines::after {
    height: 3px;
    width: 60px;
  }
}

.checkout-block__lines::after {
  content: "";
  width: 65px;
  top: 14px;
}

@media screen and (max-width: 768px) {
  .checkout-block__lines::after {
    width: 45px;
    top: 6px;
  }
}

.checkout-block__lines span {
  height: 7px;
  position: absolute;
  background: var(--orange);
  right: 0;
  width: 40px;
  top: 28px;
}

@media screen and (max-width: 768px) {
  .checkout-block__lines span {
    width: 30px;
    height: 3px;
    top: 12px;
  }
}

.checkout-products__item {
  margin-bottom: 20px;
  border-bottom: 1px solid var(--gray-stroke);
  padding-bottom: 20px;
  display: flex;
  gap: 12px;
  color: var(--black);
  position: relative;
  transition: 0.4s;
}

.checkout-products__item a::after {
  content: "";
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.checkout-products__item:hover {
  color: var(--orange);
}

.checkout-products__image {
  width: 56px;
  height: 56px;
}

.checkout-products__info {
  width: calc(100% - 68px);
  display: flex;
  flex-flow: column;
  gap: 4px;
}

.checkout-products .price {
  color: var(--black);
}

.total-price {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.total-price span:last-child {
  color: var(--orange);
}

.list-num {
  list-style: num;
  padding-left: 15px;
}

.btns-row {
  display: flex;
  flex-flow: wrap;
  gap: 8px;
}

.btns-row .btn {
  min-width: 180px;
}

.order-wrapper {
  min-height: calc(var(--app-height) - 608px);
}

@media screen and (max-width: 768px) {
  .btns-thanks .btn {
    width: 100%;
  }
}

.areas-list .white-block {
  min-height: 476px;
  display: flex;
  flex-flow: column;
  justify-content: space-between;
  gap: 20px;
  align-items: flex-start;
  color: var(--black);
  transition: 0.4s;
}

@media screen and (max-width: 1600px) and (min-width: 991px) {
  .areas-list .white-block .h4 {
    font-size: 22px;
  }
}

@media screen and (max-width: 1200px) {
  .areas-list .white-block {
    min-height: 240px;
  }
}

@media screen and (max-width: 575px) {
  .areas-list .white-block {
    min-height: 160px;
  }
}

.areas-list .white-block:hover {
  color: var(--orange);
}

.delivery-nav .white-block {
  min-height: 260px;
  display: flex;
  flex-flow: column;
  gap: 20px;
  justify-content: space-between;
  align-items: flex-start;
}

@media screen and (max-width: 1200px) {
  .delivery-nav .white-block {
    min-height: 100px;
    height: 100%;
  }
}

.sections-nav {
  flex-flow: nowrap;
  gap: 4px;
}

@media screen and (max-width: 1600px) {
  .sections-nav {
    flex-flow: wrap;
  }
}

.sections-nav__col {
  flex: 1 1 0;
}

.areas-list-items img {
  height: 230px;
}

@media screen and (max-width: 768px) {
  .areas-list-items img {
    height: 150px;
    margin-top: 10px;
  }
}

.garant-text {
  padding: 36px;
  border-radius: 12px;
  background: var(--orange);
  color: var(--white);
}

@media screen and (max-width: 768px) {
  .garant-text {
    padding: 15px;
    border-radius: 8px;
  }
}

.white-paragraphs p {
  background: var(--white);
  border-radius: 12px;
  padding: 40px;
  margin-bottom: 4px;
}

@media screen and (max-width: 1200px) {
  .white-paragraphs p {
    padding: 30px;
  }
}

@media screen and (max-width: 991px) {
  .white-paragraphs p {
    padding: 20px;
  }
}

@media screen and (max-width: 575px) {
  .white-paragraphs p {
    padding: 15px;
    border-radius: 8px;
  }
}

.white-paragraphs p:last-child {
  margin-bottom: 0;
}

.complect-row .white-block {
  display: flex;
  flex-flow: column;
  gap: 45px;
  height: 100%;
  position: relative;
}

@media screen and (max-width: 991px) {
  .complect-row .white-block {
    gap: 30px;
  }
}

@media screen and (max-width: 575px) {
  .complect-row .white-block {
    gap: 15px;
  }
}

.complect-row .complect-line {
  position: absolute;
  right: 0;
  width: 90px;
  top: 28px;
  height: 7px;
  background: var(--orange);
}

@media screen and (max-width: 768px) {
  .complect-row .complect-line {
    height: 3px;
    width: 60px;
    top: 15px;
  }
}

.complect-row .complect-line::before, .complect-row .complect-line::after {
  content: "";
  position: absolute;
  top: 14px;
  width: 65px;
  height: 7px;
  right: 0;
  background: var(--orange);
}

@media screen and (max-width: 768px) {
  .complect-row .complect-line::before, .complect-row .complect-line::after {
    height: 3px;
    width: 45px;
    top: 6px;
  }
}

.complect-row .complect-line::after {
  width: 40px;
  top: 28px;
}

@media screen and (max-width: 768px) {
  .complect-row .complect-line::after {
    width: 30px;
    top: 12px;
  }
}

/*# sourceMappingURL=main.css.map */


.card-icon path,
.card-info__icon path {
  transition: .4s;
}

.card-item:hover .card-icon path,
.card-info:hover .card-info__icon path {
  stroke: #fff;
}

textarea {
  height: 95px;
}

.wpcf7 form .wpcf7-response-output {
  margin: 20px 0 0 0;
  border-width: 1px;
  border-radius: 8px;
  padding: 10px 15px;
  font-size: var(--text-14);
}

.wpcf7-not-valid-tip {
  display: none;
}

.wpcf7-not-valid {
  border-color: var(--red);
}

@media screen and (max-width: 991px) {
  #wpadminbar {
    display: none;
  }

  html {
    margin-top: 0 !important;
  }
}

.header-cart__buttons .btn.btn-full {
  width: 100%;
}


.header-row__nav ul ul li:last-child {
  margin-bottom: 0;
}

.search-results {
  position: absolute;
  top: calc(100% + 32px);
  background: #fff;
  left: 0;
  padding: 20px;
  border-radius: 12px;
  width: 100%;
}

.search-result-item .header-cart-item__info {
  width: calc(100% - 80px);
}

.header-nav__inner {
  flex-grow: 1;
}

.thumb-slide img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.gallery-wrapper__single {
  overflow: hidden;
}

.gallery-wrapper__single .swiper-slide {
  height: initial;
}

.variation-item__list {
  display: flex;
  gap: 5px;
}

.product_meta, .woocommerce-variation-price {
  display: none;
}

.product-summary .variations {
  display: none;
}

.gallery-wrapper .gallery-slide img {
  border-radius: 12px;
}

.gallery-wrapper__thumbs .swiper-slide .thumb-slide {
  padding: 5px;
}

.thumb-slide img {
  object-fit: cover;
  border-radius: 6px;
}

.product-variations {
  margin-bottom: 28px;
}

.product-variable>.price {
  display: none;
}

.key-products-row img {
  width: auto;
}

.news-list .news-item.news-item-not-found {
  width: 100%;
}

.news-item-not-found .news-item__content {
  padding: 24px;
}

.news-list {
  transition: .4s;
}

.is-loading {
  opacity: 0.5;
}

@media screen and (min-width: 992px) {
  .contacts-wrapper-page .contacts-row__item {
    min-height: 180px;
  }
}

.news-item {
  display: flex;
  flex-flow: column;
}

.news-item__content {
  flex-grow: 1;
}

.news-item__content .news-item__title {
  margin-bottom: 16px;
}

.news-item__content .btn {
  margin-top: auto;
}

.not-wrap {
  hyphens: inherit;
}

.header-row__nav .childs-item__list {
  min-width: 305px;
}

.woocommerce a.remove.btn-remove {
  min-width: 36px;
  height: 36px;
  background: var(--white);
  border: 1px solid var(--gray-stroke);
  padding: 10px;
  border-radius: 8px;
  display: flex;
  color: var(--black) !important;
}

.woocommerce a.remove.btn-remove:hover {
  background: var(--white);
  color: var(--orange) !important;
  border-color: var(--orange);
}


.woocommerce-page form .form-row::before,
.woocommerce form .form-row::before {
  display: none;
}

.woocommerce form .form-row label, .woocommerce-page form .form-row label {
  display: flex;
}

.is-invalid input {
  border-color: #ff8585;
}

.is-invalid input::placeholder {
  /* color: #ff8585; */
}

.checkout-inline-error-message {
  display: none;
}

.woocommerce form .form-row label.input-check {
  line-height: 1.3;
}

.wc_payment_methods.payment_methods.methods {
  display: none;
}

.woocommerce-checkout #payment {
  background: none;
  border-radius: 0;
}

.woocommerce ul#shipping_method {
  display: inline-flex;
  padding: 4px;
  background: var(--gray-fill);
  border-radius: 10px;
  overflow: hidden;
  gap: 4px;
}

.woocommerce-shipping-methods svg {
  width: 24px;
  height: 24px;
}

.woocommerce ul#shipping_method li label {
  padding: 12px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-flow: row;
  font-size: var(--text-18);
  border-radius: 8px;
  position: relative;
  transition: .4s;
}

.woocommerce ul#shipping_method input {
  position: absolute;
  opacity: 0;
  visibility: hidden;
}


.checkout-shipping-methods {
  font-size: 0;
}

.woocommerce ul#shipping_method li input:checked+label {
  background: var(--orange);
  color: #fff;
}

.woocommerce form .form-row.checkout-delivery-item {
  margin-top: 30px;
}

#billing_country_field {
  display: none;
}

.hero-wrapper-page .h1 {
  hyphens: none;
}

.wpcf7-list-item {
  margin: 0;
}

.form-send .btn.btn-full {
  max-width: none;
}

.delivery-nav .col-4, .flex-auto {
  flex: 1 1 auto;
}

.file-select {
  padding: 7px;
  border-radius: 8px;
  border: 1px solid var(--gray-stroke);
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  position: relative;

}

.file-select__icon {
  width: 52px;
  height: 52px;
  padding: 14px;
  background: var(--gray-fill);
  border-radius: 4px;
  transition: .4s;
  min-width: 52px;
}

.file-select__title {
  flex-grow: 1;
  text-align: center;
  padding-right: 60px;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  color: var(--gray-text);
  font-size: var(--text-20);
}

.file-select input {
  position: absolute;
  opacity: 0;
  visibility: hidden;
}

.file-select:hover .file-select__icon {
  color: var(--white);
  background: var(--orange);
}

.file-select .wpcf7-form-control-wrap {
  opacity: 0;
  visibility: hidden;
  position: absolute;
}

@media screen and (max-width: 1200px) {
  .file-select {
    padding: 4px;
  }

  .file-select__icon {
    width: 42px;
    height: 42px;
    padding: 10px;
    min-width: 42px;
  }
}

.current_page_item a {
  /* color: var(--orange); */
}

.woocommerce .woocommerce-form-login .woocommerce-form-login__rememberme {
  display: flex;
}

.woocommerce form.checkout_coupon, .woocommerce form.login, .woocommerce form.register,
.woocommerce-ResetPassword.lost_reset_password {
  background: var(--white);
  border: 1px solid var(--gray-stroke);
  border-radius: 12px;
  max-width: 470px;
  padding: 30px;
  margin: auto;
}

.woocommerce .woocommerce-form-login .woocommerce-form-login__submit {
  margin-right: 0;
}

.woocommerce form .form-row {
  padding: 0;
  margin: 0;
  width: 100%;
  margin-bottom: 20px;
}


.woocommerce form .form-row::after, .woocommerce-page form .form-row::after {
  display: none;
}

.woocommerce form .form-row:last-child {
  margin-bottom: 0;
}

.woocommerce form .form-row .required {
  color: var(--red);
}

.search-result-item {
  padding-bottom: 10px;
  margin-bottom: 10px;
  border-bottom: 1px solid var(--gray-stroke);
}

.search-result-item:last-child {
  padding-bottom: 0px;
  margin-bottom: 0px;
  border-bottom: none;
}

main .wcapf-range-slider.style-1 .wcapf-noui-slider .wcapf-noui-handle {
  border: 4px solid var(--orange);
  box-shadow: none;
  border-radius: 4px;
  width: 20px;
  height: 20px;
  right: -10px;
  top: -7px;
}

main .wcapf-noui-connect {
  background: var(--orange);
}

.wcapf-range-end::before {
  content: 'До';
}

.wcapf-range-start::before {
  content: 'От';
}

.wcapf-range-end, .wcapf-range-start {
  position: relative;
  color: var(--gray-text);
  padding: 16px 18px;
  border: 1px solid var(--gray-stroke);
  border-radius: 8px;
  display: flex;
  font-size: var(--text-16);
  align-items: flex-end;
  gap: 5px;
}

main .range-values .wcapf-range-end input,
main .range-values .wcapf-range-start input {
  font-size: var(--text-16);
  padding: 0 !important;
  border: none !important;
  max-width: calc(100% - 30px);
  flex-grow: 1;
  border-radius: 0;
}

main .wcapf-range-wrapper.wcapf-range-spinbox .range-values .wcapf-range-separator {
  display: none;
}

main .wcapf-range-slider.style-1 {
  display: flex;
  flex-flow: column-reverse;
  gap: 24px;
}

.wcapf-filter .wcapf-list-wrapper ul.wcapf-filter-options li.wcapf-filter-option label {
  flex-flow: row;
  align-items: flex-start;
}

.wcapf-filter-item-label {
  font-size: var(--text-18);
  font-weight: 300;
}

main .wcapf-filter .wcapf-list-wrapper.list-type-native .wcapf-filter-item input[type="checkbox"], .wcapf-filter .wcapf-list-wrapper.list-type-native .wcapf-filter-item input[type="radio"] {
  width: 24px;
  height: 24px;
  border-radius: 4px;
  margin: 0 !important;
}

main .wcapf-btn.wcapf-btn-secondary {
  width: 100%;
  text-align: center;
  border: 1px solid;
  color: var(--black);
  background: rgba(255, 255, 255, 0);
  font-weight: 400;
  line-height: 1.16;
  display: inline-flex;
  text-align: center;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border-radius: 8px;
  padding: 18px 26px;
  font-size: var(--text-20);
  transition: .4s;
}

.wcapf-filter:last-child {
  margin-bottom: 0;
}

.woocommerce-account .woocommerce-MyAccount-navigation {
  width: calc(100% / 4 - 10px);
  float: none;
}

.woocommerce-account .woocommerce-MyAccount-content {
  float: none;
  width: calc(100% * 3 / 4 - 10px);
}

.account-page .woocommerce {
  display: flex;
  gap: 20px;
}

.account-page .woocommerce::before,
.account-page .woocommerce::after {
  display: none;
}

.woocommerce-account .woocommerce-MyAccount-navigation,
.woocommerce-account .woocommerce-MyAccount-content {
  padding: 20px;
  background: var(--white);
  border-radius: 12px;
}

.woocommerce-account .woocommerce-MyAccount-navigation ul {
  display: flex;
  flex-flow: column;
  gap: 10px;
}

.woocommerce-MyAccount-navigation-link.is-active a {
  color: var(--orange);
}

.woocommerce-Address-title.title h2,
.account-page section h2,
.woocommerce-MyAccount-content h2 {
  font-size: var(--headings-h5);
  margin: 20px 0;
}

.account-page section h2:first-child,
.woocommerce-MyAccount-content h2:first-child {
  margin-top: 0;
}

.woocommerce form .form-row label {
  line-height: 1.2;
}

:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce a.button,
:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce button.button,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) a.button {
  padding: 12px 20px;
  background: var(--orange);
  border-radius: 7px;
  color: var(--white);
  font-size: var(--text-16);
  font-weight: 400;
  line-height: 1.16;
  display: inline-flex;
  text-align: center;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce a.button:hover,
:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce button.button:hover,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) a.button:hover {
  background: var(--orange-active);
  color: var(--white);
}

.woocommerce table.my_account_orders .button {
  width: 100%;
}

.edit {
  font-weight: 500;
  margin-bottom: 20px;
  display: block;
}

.account-page section {
  padding-top: 30px;
}

.woocommerce form .form-row-first, .woocommerce form .form-row-last, .woocommerce-page form .form-row-first, .woocommerce-page form .form-row-last {
  width: calc(100% / 2 - 10px);
  overflow: visible;
  float: none;
}

.woocommerce-address-fields__field-wrapper,
.woocommerce-EditAccountForm.edit-account {
  display: flex;
  flex-flow: wrap;
  gap: 20px;
  row-gap: 10px;
  margin-bottom: 30px;
}

.required {
  color: var(--red);
}

.woocommerce form .form-row-wide, .woocommerce-page form .form-row-wide {
  width: 100%;
}



.u-column1.col-1.woocommerce-Address {
  margin-top: 20px;
}

.woocommerce-EditAccountForm.edit-account fieldset {
  width: 100%;
  margin-bottom: 20px;
}

.woocommerce-EditAccountForm.edit-account .clear {
  display: none;
}

.woocommerce-EditAccountForm.edit-account {
  margin-bottom: 0;
}

.btn-request {
  margin-top: 40px;
}

.gallery-slide {
  height: 100%;
  display: flex;
  align-items: center;
}

@media screen and (max-width: 1200px) {

  .btn-request {
    margin-top: 20px;
  }
}

.thumb-slide img {
  object-fit: contain;
  border-radius: 6px;
}

.glightbox-clean .gslide-media {
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
}

.product-summary * {
  hyphens: none;
}

.woocommerce-error, .woocommerce-info, .woocommerce-message {
  background: var(--white);
  border-radius: 0 0 12px 12px;
  border-top-width: 2px;
  display: flex;
  align-items: center;
  gap: 20px;
  flex-flow: wrap;
  padding-right: 1em;
  row-gap: 0;
}

.woocommerce-error::before,
.woocommerce-info::before,
.woocommerce-message::before {
  top: 15px;
}

.woocommerce-error::after,
.woocommerce-info::after,
.woocommerce-message::after {
  display: none;
}

.woocommerce-error li[data-id],
.woocommerce-info li[data-id],
.woocommerce-message li[data-id] {
  width: 100%;
}

.woocommerce-error li[data-id] a,
.woocommerce-info li[data-id] a,
.woocommerce-message li[data-id] a {
  pointer-events: none;
}



.woocommerce-error .button.wc-forward,
.woocommerce-info .button.wc-forward,
.woocommerce-message .button.wc-forward {
  margin-left: auto !important;
}

.woocommerce-info {
  border-top-color: var(--orange);
}

.woocommerce-info::before {
  color: var(--orange);
}

.page-title {
  hyphens: none;
}

.current-menu-item>a, .current-menu-parent>a {
  color: var(--orange);
}

.header-row__nav .childs-item .current-menu-item a {
  background: var(--orange);
  color: var(--white);
}

.modal-wrapper__inner .footer-contacts {
  margin-top: 20px;
}

.menu-wrapper svg {
  display: none;
}

.woocommerce-error {
  border-top-color: var(--red);
}

.woocommerce-error::before {
  color: var(--red);
}

@media screen and (min-width: 992px) {
  #menu-item-738 {
    display: none;
  }
}

@media screen and (max-width: 575px) {
  .wpcf7 form .wpcf7-response-output {
    font-size: 12px;
  }

  .woocommerce ul#shipping_method li {
    width: 100%;
  }

  .woocommerce ul#shipping_method {
    flex-flow: wrap;
  }
}

.tabs-content {
  position: relative;
}

.list-chart li:first-child {
  padding-top: 0;
}

.post-type {
  font-size: var(--headings-h6);
  margin-bottom: 10px;
}

.woocommerce-message::before {
  display: none;
}

.woocommerce-message {
  padding-left: 20px;
}

.woocommerce form.login, .woocommerce form.register {
  max-width: none;
}

.reg-text {
  margin-bottom: 20px;
}

.woocommerce-notices-wrapper {
  width: 100%;
}

.account-page .woocommerce {
  flex-flow: wrap;
}

.account-page .u-column1 {
  margin-bottom: 20px;
}

.areas-list-items .white-block {
  display: block;
}

@media screen and (max-width: 575px) {
  .woocommerce form.checkout_coupon, .woocommerce form.login, .woocommerce form.register, .woocommerce-ResetPassword.lost_reset_password {
    padding: 15px;
  }

  .account-page .margin-bottom-30 {
    margin-bottom: 15px;
  }
}
@media screen and (min-width: 992px) {
  .header::after {
    background: #fff;
    box-shadow: 0 0 30px -20px #000000c4;
  }

  .header.fixed .header-row {
    padding: 10px 0;
  }
}

.wpcf7-acceptance label input {
  cursor: pointer;
}

.breadcrumbs a::after {
  pointer-events: none;
}

.hero-wrapper .btn-arrow {
  border-radius: 8px;
}

@media screen and (max-width: 575px) {
  .hero-wrapper .btn-arrow {
    border-radius: 5px;
  }

  .btn-arrow {
    width: 48px;
    height: 48px;
    padding: 10px;
  }
}

.btn:hover {
	background: #db4200;
}

.areas-row__list .card-item {
  color: var(--black);
}

.page-template-delivery main section .btn-icon {
  pointer-events: none;
}

.modal-map .modal-wrapper__inner {
  padding: 0;
}

.modal-map .modal__close {
  top: -62px;
  right: 0;
}

.modal-map .modal-wrapper__inner {
  padding: 0;
  max-width: 1050px;
}

.modal-map .map-wrapper {
  height: 520px;
}


.address {
  transition: .4s;

}

.address:hover {
  color: var(--orange);
}

.page-template-delivery section:nth-last-child(2) {
  padding-bottom: 100px;
}

.white-block .title-lines .lines span:nth-child(2) {
	width: 100%;
}

@media screen and (max-width: 768px) {
  .page-template-delivery section:nth-last-child(2) {
    padding-bottom: 50px;
  }
}

@media screen and (max-width: 991px) {
  .footer-copyright {
    flex-flow: column;
  }
  .footer-copyright__developer {
    width: 100%;
  }
}

.to-top {
  position: fixed;
  bottom: 20px;
  /* right: 20px; */
  left: 20px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: .4s;
}
.to-top.btn {
	font-size: 1rem;
	padding: 12px 14px;
}

.to-top.fixed {
  opacity: 1;
  visibility: visible;
  pointer-events: initial;
}
.cf7-toast-container {
    position: fixed;
    left: 20px;
    bottom: 20px;
    transform: none;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 10px;
    pointer-events: none;
}
.cf7-toast {
    min-width: 260px;
    max-width: 360px;
    padding: 12px 16px;
    border-radius: 8px;
    font-size: 14px;
    line-height: 1.4;
    color: #fff;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    pointer-events: auto;
    opacity: 0;
    transform: translateY(20px);
    animation: cf7-toast-in 0.25s ease-out forwards;
}

.cf7-toast--success {
    background: #27ae60;
}

.cf7-toast--error {
    background: #e74c3c;
}

.cf7-toast__close {
    margin-left: auto;
    cursor: pointer;
    font-size: 16px;
    line-height: 1;
    opacity: 0.8;
    transition: opacity 0.2s;
}

.cf7-toast__close:hover {
    opacity: 1;
}

@keyframes cf7-toast-in {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes cf7-toast-out {
    from {
        opacity: 1;
        transform: translateY(0);
    }
    to {
        opacity: 0;
        transform: translateY(20px);
    }
}
.wpcf7 form .wpcf7-response-output {
    display: none !important;
}

.lang-switcher .btn-icon {
	font-weight: 500;
	text-transform: uppercase;
	font-size: 1rem;
}

.lang-switcher {
	position: relative;
}

.lang-switcher ul {
	position: absolute;
	top: 100%;
	padding: 12px;
	background: #fff;
	left: -12px;
	border-radius: 0 0 8px 8px;
	transform: translateY(-50px);
	z-index: -1;
	opacity: 0;
	pointer-events: none;
  transition: .4s;
}

.lang-switcher:hover ul {
  opacity: 1;
  transform: translateY(0);
  visibility: visible; 
  pointer-events: initial;
  z-index: 1;
}

.lang-switcher__current {
	position: relative;
	z-index: 2;
}

@media screen and (max-width: 575px) {
  .cf7-toast {
    max-width: calc(100% - 30PX);
  }
}

.white-paragraphs {
	display: flex;
	flex-flow: column;
}

.white-paragraphs p {
	flex-grow: 1;
}

main .wcapf-range-slider .display-values-as-input_field {
	margin-bottom: 0;
}

main .wcapf-range-slider.style-1 {
	padding-bottom: 0;
}

html[lang="en-US"] .wcapf-range-end::before {
	content: 'To';
}


html[lang="en-US"] .wcapf-range-start::before {
	content: 'From';
}

.news-item > a:last-child {
	display: none;
}

.woocommerce .lost_reset_password .form-row-first,
.woocommerce .lost_reset_password .form-row-last {
	width: 100%;
}

.to-top.btn {
	padding: 20px;
	aspect-ratio: 1;
}

.to-top.btn svg {
	width: 13px;
	height: 13px;
}

.account-switch  p {
  margin-bottom: 10px;
}
.woocommerce form .form-row.form-row-last {
  margin-bottom: 10px;
  width: 100%;
}

.account-switch a {
  color: var(--orange);
  text-decoration: underline;
}

/* .areas-row__list .card-item:hover,
.areas-row__list .card-item:nth-child(3):hover .card-title,
.areas-row__list .card-item:nth-child(4):hover .card-title
 {
  color: var(--orange);
}

.areas-row__list .card-item:nth-child(1):hover,
.areas-row__list .card-item:nth-child(1):hover .card-title {
  color: #ffffffb2;
} */

.areas-row__list .card-item {
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.areas-row__list .card-item:nth-child(1):hover {
  background: #d74708;
}
.areas-row__list .card-item:nth-child(4):hover {
  background: #000;
}

.areas-row__list .card-item:nth-child(3)::before {
	content: '';
	width: 100%;
	height: 100%;
	position: absolute;
	inset: 0;
	background: #8c8d8d75;
	z-index: -1;
  opacity: 0;
  transition: .4s;
}

.areas-row__list .card-item:nth-child(3):hover::before {
  opacity: 1;
}

.areas-row__list .card-item:nth-child(2):hover {
  background: #fb792c21;
}

.delivery-nav .white-block {
  transition: .4s;
}

.delivery-nav .white-block:hover {
	background: var(--orange);
	color: var(--white);
}

.delivery-nav .white-block:hover a {
  color: var(--white);
}

.reg-text .input-check {
	font-size: var(--text-16);
}

.product-item__image {
	border-radius: 8px;
	overflow: hidden;
}

.cart-item__image {
	border-radius: 8px;
	overflow: hidden;
}

.checkout-products__image {
	border-radius: 4px;
	overflow: hidden;
}

.checkout-products__image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

.categories-list__item .category-image img {
  transition: .4s;
}

.categories-list__item:hover .category-image img {
	filter: drop-shadow(0 10px 15px #00000054);
}

.post-content ul {
	list-style: disc;
	padding-left: 20px;
}

.product-summary .stock.out-of-stock {
	font-family: var(--font);
	text-transform: uppercase;
	letter-spacing: -0.03em;
	font-size: var(--headings-h3);
}

.product-item__image {
	aspect-ratio: 1;
}

.product-item__image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

.products-list .product-item {
	display: flex;
	flex-flow: column;
}

.product-item__price {
  margin-top: auto;
}

.gallery-wrapper__thumbs {
	margin-top: 16px;
}

.category-big__image img {
	width: 100%;
}

.category-big .h5 {
	padding-right: 30px;
}

@media screen and (min-width: 992px) {
  .category-big {
    padding-right: 50px;
  }
}
