@font-face {
  font-family: "Nunito";
  src: url("../fonts/static/Nunito-Light.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Nunito";
  src: url("../fonts/static/Nunito-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Nunito";
  src: url("../fonts/static/Nunito-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Nunito";
  src: url("../fonts/static/Nunito-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Nunito";
  src: url("../fonts/static/Nunito-Black.ttf") format("truetype");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Lato";
  src: url("../fonts/Lato-Black.ttf") format("truetype");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

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

::selection {
  text-shadow: none;
  background: color-mix(in srgb, var(--main-col) 10%, transparent) !important;
}

html {
  font-size: 10px;
  scroll-behavior: smooth;
}

:root {
  --lightgray: #f5f5f5;
  --darkgray: #808080;
  --black: #3f3f3f;
  --white: #fff;
  --main-col: #ce0e2d;
  --pair-col: #40b3e0;
}

::-webkit-scrollbar {
  width: 6px;
  height: 4px;
  background-color: var(--lightgray);
}

::-webkit-scrollbar-thumb {
  border-radius: 16px;
  background-color: var(--main-col);
}

@property --deg {
  syntax: "<angle>";
  initial-value: 90deg;
  inherits: false;
}

@keyframes ani {
  0% {
    --deg: 90deg;
  }

  100% {
    --deg: 360deg;
  }
}

@keyframes pulse {
  0% {
    transform: scale(0.5);
    opacity: 0;
  }

  50% {
    opacity: 1;
  }

  100% {
    transform: scale(0.9);
    opacity: 0;
  }
}

body {
  margin: 0px;
  line-height: 1.2;
  font-family: "Nunito", sans-serif;
  text-size-adjust: 100%;
  -webkit-tap-highlight-color: transparent;
  font-size: 140%;
  color: var(--black);
  font-weight: 400;
  font-feature-settings: "lnum";
}

hr {
  margin: 1rem 0px;
  color: inherit;
  border: 0px;
  opacity: 0.25;
}

p {
  margin: 0px;
}

abbr[title] {
  text-decoration: underline dotted;
  cursor: help;
  text-decoration-skip-ink: none;
}

address {
  margin-bottom: 1rem;
  font-style: normal;
  line-height: inherit;
}

ol,
ul {
  padding-left: 0rem;
}

dl,
ol,
ul {
  margin: 0px;
}

ol ol,
ol ul,
ul ol,
ul ul {
  margin-bottom: 0px;
}

dt {
  font-weight: 700;
}

dd {
  margin-bottom: 0.5rem;
  margin-left: 0px;
}

blockquote {
  margin: 0px 0px 1rem;
}

b,
strong {
  font-weight: bolder;
}

.small,
small {
  font-size: 0.875em;
}

.mark,
mark {
  padding: 0.1875em;
}

sub,
sup {
  position: relative;
  font-size: 0.75em;
  line-height: 0;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

a:not([href]):not([class]),
a:not([href]):not([class]):hover {
  color: inherit;
  text-decoration: none;
}

code,
kbd,
pre,
samp {
  font-size: 1em;
}

pre {
  display: block;
  margin-top: 0px;
  margin-bottom: 1rem;
  overflow: auto;
  font-size: 0.875em;
}

pre code {
  font-size: inherit;
  color: inherit;
  word-break: normal;
}

code {
  font-size: 0.875em;
  overflow-wrap: break-word;
}

h1,
h2,
h3,
h4,
h5 {
  margin-block-start: 0em;
  margin-block-end: 0em;
}

a>code {
  color: inherit;
}

kbd {
  padding: 0.1875rem 0.375rem;
  font-size: 0.875em;
  border-radius: 0.25rem;
}

kbd kbd {
  padding: 0px;
  font-size: 1em;
}

figure {
  margin: 0px 0px 1rem;
}

img,
svg {
  vertical-align: middle;
}

table {
  caption-side: bottom;
  border-collapse: collapse;
}

caption {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  text-align: left;
}

th {
  text-align: -webkit-match-parent;
}

tbody,
td,
tfoot,
th,
thead,
tr {
  border-color: inherit;
  border-style: solid;
  border-width: 0px;
}

label {
  display: inline-block;
}

button {
  border-radius: 0px;
  line-height: 1;
}

:focus-visible {
  outline: 0px;
}

button,
input,
optgroup,
select,
textarea {
  margin: 0px;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
  box-shadow: 0px 4px 12px 0px #0000000f;
  border: 1px solid #00000033;
  border-radius: 100px;
  padding: 17px 32px;
}

button,
select {
  text-transform: none;
}

[role="button"] {
  cursor: pointer;
}

select {
  overflow-wrap: normal;
}

select:disabled {
  opacity: 1;
}

[list]:not([type="date"]):not([type="datetime-local"]):not([type="month"]):not([type="week"]):not([type="time"])::-webkit-calendar-picker-indicator {
  display: none !important;
}

[type="button"],
[type="reset"],
[type="submit"],
button {
  appearance: button;
}

[type="button"]:not(:disabled),
[type="reset"]:not(:disabled),
[type="submit"]:not(:disabled),
button:not(:disabled) {
  cursor: pointer;
}

textarea {
  resize: vertical;
}

fieldset {
  min-width: 0px;
  padding: 0px;
  margin: 0px;
  border: 0px;
}

::-webkit-datetime-edit-day-field,
::-webkit-datetime-edit-fields-wrapper,
::-webkit-datetime-edit-hour-field,
::-webkit-datetime-edit-minute,
::-webkit-datetime-edit-month-field,
::-webkit-datetime-edit-text,
::-webkit-datetime-edit-year-field {
  padding: 0px;
}

::-webkit-inner-spin-button {
  height: auto;
}

[type="search"] {
  appearance: textfield;
}

::-webkit-search-decoration {
  appearance: none;
}

::-webkit-color-swatch-wrapper {
  padding: 0px;
}

::-webkit-file-upload-button {
  font: inherit;
  appearance: button;
}

::file-selector-button {
  font: inherit;
  appearance: button;
}

output {
  display: inline-block;
}

iframe {
  border: 0px;
}

summary {
  display: list-item;
  cursor: pointer;
}

progress {
  vertical-align: baseline;
}

[hidden] {
  display: none !important;
}

section {
  scroll-margin-top: 80px;
}

.container {
  margin: 0px auto;
  max-width: 1316px;
  width: 100%;
  padding: 0px 1rem;
  position: relative;
  z-index: 1;
}

@media (max-width: 992px) {
  .container {
    padding: 0px 2rem;
  }
}

@media (max-width: 395px) {
  .container {
    padding: 0px 1rem;
  }
}

svg {
  max-width: 100%;
  display: block;
}

svg:not(:root) {
  overflow: hidden;
}

pre {
  overflow: auto;
}

img {
  max-width: 100%;
}

a,
a>* {
  text-decoration: none;
  cursor: pointer;
  transition: 0.25s ease-in-out;
}

.title-main {
  color: var(--black);
  font-size: clamp(24px, calc(4.63vw - 18.72px), 48px);
  font-style: normal;
  font-weight: 900;
  line-height: 1.3;
  font-family: "Lato", sans-serif;
  font-style: normal;
}

@media (max-width: 992px) {
  .title-main {
    font-size: 28px;
    line-height: 1.31;
  }
}

.title-main span {
  font-family: "Lato", sans-serif;
  font-style: normal;
}

.title-submain {
  color: var(--black);
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  line-height: 1.31;
  text-align: center;
  margin-bottom: 32px;
}

.title-submain span {
  color: var(--main-col);
}

@media (max-width: 992px) {
  .title-submain {
    /* text-align: left; */
    font-size: 22px;
    line-height: 1.2;
    margin-bottom: 24px;
  }
}

.title_center {
  margin: 0 auto;
  display: block;
  text-align: center;
  color: var(--blue);
}

.title_size_big {
  text-transform: uppercase;
  margin-block-start: 0;
  margin-block-end: 0;
  margin-bottom: 42px;
}

.left {
  text-align: left;
}

.text-32 {
  font-size: 32px;
}

.text-46 {
  font-size: 46px;
}

.text-24 {
  font-size: 24px;
}

.text-20 {
  font-size: 20px;
}

.text-18 {
  font-size: 18px;
}

.text-16 {
  font-size: 16px;
}

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

.text-10 {
  font-size: 10px;
}

.text-12 {
  font-size: 12px;
}

.w-900 {
  font-weight: 900;
}

.w-700 {
  font-weight: 700;
}

.w-400 {
  font-weight: 400;
}

.lightgray {
  color: var(--lightgray);
}

.darkgray {
  color: var(--darkgray);
}

.darkgray-lght {
  color: #40404080;
}

.white {
  color: var(--white);
}

.none {
  display: none !important;
}

.colored-text {
  color: var(--main-col);
}

.colBG {
  background-color: var(--main-col);
  border-radius: 15px;
  box-shadow: 0px 4px 12px 0px #0000000f;
}

.grayBG {
  background-color: var(--lightgray);
}

button {
  border: none;
  outline: none;
  padding: 0;
  margin: 0;
  width: fit-content;
  color: var(--white);
  font-size: 16px;
  line-height: 1;
  cursor: pointer;
  font-weight: 500;
  display: flex;
  align-items: center;
  text-align: center;
  justify-content: center;
  box-shadow: 0px 4px 12px 0px #80808033;
  overflow: hidden;
}

button a {
  color: white;
}

.main-btn {
  max-width: fit-content;
  background-color: var(--main-col);
  border: 1px solid transparent;
  color: white;
  cursor: pointer;
  position: relative;
  gap: 10px;
  width: fit-content;
  padding: 17px 24px;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  transition: all 0.5s ease;
}

.main-btn svg {
  width: 20px;
  height: 20px;
  min-width: 20px;
}

.main-btn svg path {
  transition: all 0.3s ease;
}

.main-btn:hover {
  background-color: white;
  border: 1px solid var(--main-col);
  color: var(--main-col);
}

.main-btn:hover svg path {
  stroke: var(--main-col);
}

.pair-btn {
  background-color: var(--pair-col);
  color: white;
  border: 1px solid transparent;
  height: auto;
  position: relative;
  max-width: fit-content;
  display: flex;
  align-items: center;
  font-size: 16px;
  justify-content: center;
  border-radius: 16px;
  padding: 17px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  gap: 10px;
}

.pair-btn svg {
  width: 20px;
  height: 20px;
  min-width: fit-content;
  transition: all 0.3s ease;
}

.pair-btn svg path {
  transition: all 0.3s ease;
}

.pair-btn:hover {
  background-color: white;
  border: 1px solid var(--pair-col);
  color: var(--pair-col);
}

.pair-btn:hover svg {
  transform: translate(2px, -2px);
}

.pair-btn:hover svg path {
  stroke: var(--pair-col);
  fill: var(--pair-col);
}

.catalog-btn {
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  color: var(--black);
  background-color: white;
  border: 2px solid var(--main-col);
  position: relative;
  height: 54px;
  min-width: 241px;
  text-align: right;
  justify-content: flex-end;
  padding: 16px 24px;
  transition: all 0.3s ease;
  overflow: hidden;
}

.catalog-btn .icon {
  position: absolute;
  left: -1px;
  top: -1px;
  bottom: -1px;
  height: 54px;
  border-radius: 14px;
  background-color: var(--main-col);
  width: 65px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.5s ease;
}

.catalog-btn .icon svg {
  transition: all 0.4s ease;
}

.catalog-btn .text {
  text-align: right;
  font-size: 16px;
  font-weight: 500;
  transform: translateX(0);
  transition: all 0.6s ease;
  white-space: nowrap;
  position: relative;
  z-index: 3;
}

.catalog-btn .close-svg {
  position: absolute;
  opacity: 0;
  transform: rotate(0deg);
}

.catalog-btn .text-active {
  position: absolute;
  transform: translateX(-360%);
  top: 18px;
  left: 65px;
  color: white;
  font-size: 16px;
  font-weight: 500;
  transition: transform 0.6s ease;
  opacity: 0;
}

.catalog-btn:hover {
  gap: 0;
  background-color: var(--main-col);
}

.catalog-btn:hover .icon {
  width: 100%;
  padding-left: 20px;
  justify-content: flex-start;
}

.catalog-btn:hover .text {
  color: white;
}

.catalog-btn.active {
  gap: 0;
  background-color: var(--main-col);
}

.catalog-btn.active .icon {
  width: 100%;
  padding-right: 70px;
  justify-content: flex-end;
}

.catalog-btn.active .icon svg {
  opacity: 0;
}

.catalog-btn.active .icon svg.close-svg {
  position: relative;
  transform: rotate(360deg);
  opacity: 1;
}

.catalog-btn.active .text {
  transform: translateX(150%);
}

.catalog-btn.active .text-active {
  transform: translateX(0);
  opacity: 1;
}

.button_center {
  color: var(--white);
  padding: 16px 24px;
  max-width: fit-content;
  display: flex;
  align-items: center;
  margin: 0 auto;
  margin-top: 8px;
  justify-content: center;
  border-radius: 16px;
  background-color: var(--main-col);
  transition: all 0.5s ease;
  cursor: pointer;
  border: 1px solid transparent;
}

.button_center:hover {
  border: 1px solid var(--main-col);
  background-color: white;
  color: var(--main-col);
}

.underline-button {
  text-decoration: underline;
  color: var(--darkgray);
  max-width: fit-content;
  background-color: transparent;
}

.underline-button.blue {
  color: var(--blue);
}

.underline-button:hover {
  background: linear-gradient(var(--deg), #49bdff 0%, #fc44d4 100%);
  animation: ani 30s ease infinite;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-feature-settings: "clig" off, "liga";
}

@media (max-width: 1300px) {
  .main-btn {
    gap: 6px;
    padding: 16px 12px;
  }

  .main-btn svg {
    width: 16px;
    height: 16px;
    min-width: 16px;
  }

  .pair-btn {
    gap: 6px;
    padding: 16px 12px;
  }

  .pair-btn svg {
    width: 16px;
    height: 16px;
    min-width: 16px;
  }
}

form {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 20px;
  max-width: 624px;
}

form .text-politic {
  font-size: 16px;
  color: var(--darkgray);
}

form .main-btn {
  max-width: 302px;
  height: 56px;
  padding: 17px 32px;
  position: relative;
  box-shadow: 0px 4px 12px 0px #80808033;
}

form .main-btn::after {
  position: absolute;
  width: 212px;
  height: 212px;
  left: -6px;
  top: -136px;
  background: linear-gradient(127.48deg, rgba(255, 255, 255, 0) 43.39%, #ffffff 128.12%);
  mix-blend-mode: soft-light;
  opacity: 0.9;
  content: "";
  border-radius: 100%;
}

.input-block-phone {
  position: relative;
  width: fit-content;
  max-width: 269px;
  height: 56px;
}

.input-block-phone .input-wrapper-text {
  position: absolute;
  top: 10px;
  left: 88px;
  font-size: 10px;
  color: var(--darkgray);
  opacity: 0;
  font-weight: 500;
  pointer-events: none;
  transition: all 0.3s ease;
  z-index: 2;
}

.input-block-phone .grad-border {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 16px;
  background: var(--main-col);
  z-index: 0;
  pointer-events: none;
  height: 56px;
}

.input-block-phone .white-inp {
  border: none;
  max-width: fit-content;
  width: 100%;
  height: 56px;
  border-radius: 16px;
  outline: none;
  position: relative;
  z-index: 1;
}

.input-block-phone .white-inp::focus {
  color: var(--main-col);
  padding-bottom: 8px;
}

.input-block-phone .white-inp::focus~.grad-border {
  opacity: 1;
}

.input-block-phone .white-inp::focus~.input-wrapper-text {
  opacity: 0.5;
}

.input-block-phone .white-inp::focus::placeholder {
  color: var(--main-col);
  opacity: 1;
}

.input-block-phone .white-inp:focus-visible {
  color: var(--main-col);
  padding-bottom: 8px;
}

.input-block-phone .white-inp:focus-visible~.grad-border {
  opacity: 1;
}

.input-block-phone .white-inp:focus-visible~.input-wrapper-text {
  opacity: 0.5;
}

.input-block-phone .white-inp:focus-visible::placeholder {
  color: var(--main-col);
  opacity: 1;
}

.input-block-phone .white-inp:not(:placeholder-shown) {
  color: var(--main-col);
  padding-bottom: 8px;
}

.input-block-phone .white-inp:not(:placeholder-shown)~.grad-border {
  opacity: 1;
}

.input-block-phone .white-inp:not(:placeholder-shown)~.input-wrapper-text {
  opacity: 0.5;
}

.input-block-phone .white-inp:not(:placeholder-shown)::placeholder {
  color: var(--main-col);
  opacity: 1;
}

.input-block-phone svg {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 24px;
  z-index: 2;
}

.white-inp {
  transition: all 0.3s ease;
  width: fit-content;
  padding: 16px 55px 16px 75px;
  text-align: center;
  box-shadow: none;
}

.button-block {
  display: flex;
  gap: 24px;
  flex: 1 0 100%;
  align-items: center;
  line-height: 1.42;
}

.button-block .form-btn {
  flex: 0 0 40%;
  max-width: 164px;
  transition: 0.5s ease;
}

.button-block .form-btn:hover {
  background: var(--white);
  border: 1px solid var(--base);
  color: var(--base);
}

.button-block .form-btn:focus {
  box-shadow: 0 0 0 6px var(--base);
  background: var(--white);
  color: var(--base);
}

.error-message {
  height: 20px;
  color: var(--red);
}

.error-message.success {
  color: var(--base);
}

.questions_inner .error-message.success {
  color: var(--white);
}

@media (max-width: 1130px) {
  form {
    max-width: 100%;
    gap: 8px;
  }

  form .main-btn {
    max-width: 100%;
    width: 100%;
    margin-top: 4px;
  }

  form .text-politic {
    font-size: 12px;
    text-align: center;
    max-width: 320px;
    margin: 0 auto;
  }

  .input-block-phone {
    max-width: 100%;
    width: 100%;
  }

  .input-block-phone .input-wrapper-text {
    left: 50%;
    transform: translateX(-50%);
  }

  .input-block-phone .white-inp {
    max-width: 100%;
    width: 100%;
  }
}

.modal .form {
  display: flex;
  flex-wrap: wrap;
  border-radius: 0;
  max-width: 368px;
  gap: 12px;
  padding: 0;
  align-items: center;
  text-align: center;
  justify-content: center;
  box-shadow: none;
}

.modal .form .button-block-text {
  width: 100%;
}

.modal .form .main-btn {
  max-width: 100%;
  width: 100%;
}

.breadcrumbs {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px;
  background: var(--lightgray);
  border-radius: 16px;
  width: 100%;
  overflow: auto;
}

.breadcrumbs::-webkit-scrollbar {
  display: none;
}

.breadcrumbs svg {
  min-width: fit-content;
  max-width: fit-content;
}

.breadcrumbs div {
  min-width: fit-content;
  max-width: fit-content;
}

.breadcrumbs a {
  text-decoration: underline;
  cursor: pointer;
  min-width: fit-content;
  display: flex;
  align-items: center;
  gap: 7px;
  color: var(--darkgray);
  font-size: 16px;
}

.breadcrumbs a:hover {
  text-decoration: none;
}

.breadcrumbs span {
  color: var(--main-col);
  min-width: fit-content;

  font-size: 16px;
}

@media (max-width:992px) {
  .breadcrumbs a {
    gap: 6px;
    font-size: 12px;
  }

  .breadcrumbs svg:nth-child(1) {
    width: 16px;
    height: 16px;
    min-width: 16px;
  }

  .breadcrumbs svg:nth-child(n + 2) {
    width: 6px;
    height: 6px;
    min-width: 6px;
  }

  .breadcrumbs span {
    font-size: 12px;
    white-space: nowrap;
  }
}

.with-svg {
  display: flex;
  align-items: center;
  gap: 14px;
}

.with-svg svg {
  min-width: fit-content;
}

.mx-right {
  margin: 0px 0px 0px auto;
}

.mx-auto {
  margin: 0 auto;
}

.mx-left {
  margin: 0px auto 0px 0px;
}

.pb-78 {
  padding: 0 0 78px 0;
}

.p-56 {
  padding: 56px;
}

.p-36 {
  padding: 36px 0;
}

.p-32 {
  padding: 32px;
}

.p-40 {
  padding: 40px;
}

.p-54 {
  padding: 54px;
}

.pt-46 {
  padding-top: 46px;
}

.block {
  padding: 60px 0;
}

@media (max-width: 1050px) {
  .block {
    padding: 50px 0;
  }
}

.mt-28 {
  margin-top: 28px;
}

.mt-32 {
  margin-top: 32px;
}

.mb-54 {
  margin-bottom: 54px;
}

.mb-16 {
  margin-bottom: 16px;
}

.mb-8 {
  margin-bottom: 8px;
}

.mt-8 {
  margin-top: 8px;
}

.mb-24 {
  margin-bottom: 24px;
}

.mb-28 {
  margin-bottom: 28px;
}

.mb-20 {
  margin-bottom: 20px;
}

.mb-42 {
  margin-bottom: 42px;
}

.mb-32 {
  margin-bottom: 32px;
}

.mb-56 {
  margin-bottom: 56px;
}

.mb-12 {
  margin-bottom: 12px;
}

.mb-48 {
  margin-bottom: 48px;
}

.mb-40 {
  margin-bottom: 40px;
}

.mb-60 {
  margin-bottom: 60px;
}

.mb-62 {
  margin-bottom: 62px;
}

.with-svg {
  display: flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
}

.underline {
  text-decoration: underline;
}

.underline:hover {
  text-decoration: none;
}

.header.scrolled .header_top {
  width: 100%;
  position: fixed;
  z-index: 25;
  top: 0;
}

.header.scrolled .header_bottom {
  transform: translateY(-1000%);
}

.modal-close {
  cursor: pointer;
}

.header {
  position: sticky;
  top: 0;
  z-index: 5;
  background-color: white;
  overflow: hidden;
}

.header_top {
  padding: 16px 0 14px 0;
  border-bottom: 1px solid #3f3f3f50;
  transition: all 0.05s ease;
}

.header_top-inner {
  display: flex;
  align-items: center;
  gap: 24px;
}

.header-nav ul {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.header-nav ul a {
  color: var(--black);
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
}

.header-nav ul a:hover {
  color: var(--main-col);
}

.logo-block {
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 12px;
  font-weight: 500;
  color: var(--black);
  max-width: 196px;
  width: 100%;
  position: relative;
}

.logo-block img {
  max-width: 145px;
}

.header_bot {
  padding: 16px 0;
}

.header_bot .header_bot-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header_bot-address {
  display: flex;
  align-items: flex-end;
  position: relative;
  gap: 4px;
  min-width: fit-content;
}

.header_bot-address .city {
  font-size: clamp(14px, calc(0.65vw + 10.61px), 16px);
  font-weight: 600;
  text-decoration: underline;
  color: var(--main-col);
  display: flex;
  align-items: flex-end;
  gap: 4px;
}

.header_bot-address .city:hover {
  text-decoration: none;
}

.header_bot-address .street {
  transform: translateY(-2px);
  padding-left: 4px;
  font-size: clamp(10px, calc(0.43vw + 7.74px), 12px);
  color: var(--darkgray);
  min-width: fit-content;
  word-break: break-all;
}

.num-box {
  display: flex;
  flex-direction: column;
  gap: 2px;
  position: relative;
  margin-left: auto;
}

.num-box a {
  font-size: 16px;
  font-weight: 700;
  color: var(--main-col);
  transition: all 0.3s ease;
}

.num-box a:hover {
  text-decoration: underline;
  color: var(--main-col);
}

.num-box span {
  font-size: 12px;
  font-weight: 400;
  color: var(--darkgray);
}

.num-box span b {
  font-weight: 700;
}

@media (max-width: 1300px) {
  .header_top-inner {
    gap: 12px;
  }

  .header_top-inner .main-btn {
    font-size: 14px;
  }

  .header_top-inner .pair-btn {
    font-size: 14px;
  }
}

@media (max-width: 1200px) {
  .header_top-inner .pair-btn {
    display: none;
  }
}

@media (max-width: 992px) {
  .mobile-menu {
    width: 50px;
    height: 50px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #3F3F3F;
    position: relative;
    order: 3;
  }

  .mobile-menu svg {
    transition: all 0.3s ease;
    pointer-events: none;
    top: 50%;
    left: 50%;
  }

  .mobile-menu svg.active {
    position: absolute;
    opacity: 0;
  }

  .mobile-menu.active svg {
    opacity: 0;
    transform: translate(-50%, -50%) rotate(90deg);
  }

  .mobile-menu.active svg.active {
    opacity: 1;
    /* position: relative; */
    transform: translate(-50%, -50%) rotate(360deg);
  }

  .catalog-btn {
    display: none;
  }

  .header_bot {
    display: none;
  }

  .header_top {
    padding: 12px 0 15px 0;
    border: none;
  }

  .header_top-inner {
    flex-wrap: wrap;
    border: none;
  }

  .header_top-inner::after {
    position: absolute;
    bottom: 30px;
    left: 0;
    width: 100%;
    height: 1px;
    content: '';
    border: 1px solid #3F3F3F;
    opacity: 0.5;
  }

  .header_top-inner .logo-block {
    order: 1;
  }

  .header_top-inner .num-box {
    order: 4;
    flex: 1 0 100%;
    margin-top: 13px;
    flex-direction: row-reverse;
    justify-content: space-between;
    align-items: center;
  }

  .header_top-inner .main-btn {
    order: 2;
    flex: 1;
    margin-left: auto;
  }

  .logo-block {
    font-size: 10px;
    gap: 4px;
    width: fit-content;
  }
}

.banner_inner {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  padding: 28px 0;
}

.banner_inner .banner-item {
  padding: 46px 56px;
  background-color: var(--lightgray);
  border-radius: 16px;
  max-width: 746px;
  flex: 1 0 45%;
  display: flex;
  flex-direction: column;
}

.banner_inner .utp-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 24px;
  width: 100%;
}

.banner_inner .utp-cards .utp-cards-item {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 16px;
  font-weight: 400;
  color: var(--darkgray);
  background-color: var(--lightgray);
  border-radius: 16px;
  padding: 28px 23px;
}

.banner_inner .utp-cards .utp-cards-item .item-img {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 20px;
  font-weight: 500;
  color: var(--black);
  letter-spacing: -0.04rem;
}

.banner_inner.singlePage {
  padding: 24px 0 60px 0;
}

.banner_inner.singlePage .banner-item {
  max-width: 100%;
  width: 100%;
  padding: 46px 56px;
}

.banner_inner.singlePage .banner-item h1 {
  margin-bottom: 24px;
}

.banner_inner.singlePage .singlePage-seo {
  color: var(--darkgray);
  display: flex;
  flex-direction: column;
  gap: 20px;
  font-size: 16px;
}

.banner_inner.singlePage .singlePage-seo ul {
  padding-left: 2rem;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.banner_inner.singlePage .singlePage-seo h3 {
  font-size: 20px;
  font-weight: 700;
}

.banner.inside .banner_inner {
  padding: 24px 0;
}

.banner.inside .banner-rght {
  display: flex;
  flex-direction: column;
  padding: 28px;
  justify-content: space-between;
}

.banner.inside .banner-rght .ban-text {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  position: relative;
  z-index: 5;
  width: 100%;
  background-color: white;
  box-shadow: 0px 4px 12px 0px #8080800F;
  gap: 12px;
  font-size: 16px;
  font-weight: 700;
  border-radius: 16px;
}

.banner.inside .banner-rght .ban-text svg path {
  fill: var(--main-col);
}

.banner.inside .banner-rght .ban-text span b {
  color: var(--main-col);
}

.banner.inside .banner-rght img {
  max-height: 281px;
  max-width: 340px;
}

.banner-rght {
  flex: 1 0 45%;
  max-width: 526px;
  background-color: var(--main-col);
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  border-radius: 16px;
  position: relative;
}

.banner-rght img {
  max-width: 420px;
  max-height: 340px;
  width: 100%;
  object-fit: contain;
  position: relative;
  z-index: 5;
}

.banner-rght .circle {
  position: absolute;
  border-radius: 100%;
}

.banner-rght .circle.one {
  position: absolute;
  width: 1490.33px;
  height: 1490.33px;
  left: -965px;
  top: -1245px;
  background: linear-gradient(326.45deg, rgba(255, 255, 255, 0.272) 14.31%, rgba(255, 255, 255, 0) 31.41%);
  mix-blend-mode: normal;
  z-index: 2;
}

.banner-rght .circle.two {
  position: absolute;
  width: 371px;
  height: 371px;
  left: -125px;
  top: 56px;
  background: linear-gradient(0deg, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.3)), var(--main-col);
  mix-blend-mode: normal;
  filter: blur(75px);
  transform: matrix(1, 0, 0, -1, 0, 0);
}

.banner-rght .circle.three {
  position: absolute;
  width: 1765.59px;
  height: 1765.59px;
  left: -55px;
  top: -1323px;
  background: linear-gradient(326.45deg, rgba(255, 255, 255, 0.48) 14.31%, rgba(255, 255, 255, 0) 31.41%);
  mix-blend-mode: soft-light;
  transform: rotate(63deg);
  z-index: 4;
}

.banner-rght .circle.four {
  position: absolute;
  width: 478px;
  height: 478px;
  left: 220px;
  top: 158px;
  background: linear-gradient(0deg, var(--main-col) 0%, #ffffff 100%);
  mix-blend-mode: normal;
  filter: blur(75px);
  transform: matrix(1, 0, 0, -1, 0, 0);
  backdrop-filter: blur(150px);
}

.title-main {
  margin-bottom: 56px;
  letter-spacing: 0;
}

.banner-text {
  font-size: clamp(14px, calc(1.16vw + 3.32px), 20px);
  color: var(--black);
  margin-bottom: 16px;
  margin-top: auto;
}

.banner-text span {
  color: var(--main-col);
  font-weight: 700;
}

@media (max-width: 1200px) {
  .banner_inner {
    gap: 16px;
  }

  .banner_inner .banner-item {
    padding: 18px;
  }

  .banner_inner .banner-item .title-main {
    margin-bottom: 24px;
  }

  .banner_inner .utp-cards {
    gap: 16px;
  }

  .banner-text {
    margin-bottom: 12px;
  }
}

@media (max-width: 992px) {
  .banner-rght {
    display: none;
  }

  .banner.inside .banner-rght {
    display: none;
  }

  .banner_inner {
    padding: 20px 0;
    justify-content: center;
  }

  .banner_inner .banner-item {
    padding: 18px;
  }

  .banner_inner .utp-cards {
    gap: 16px;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  }

  .banner_inner .utp-cards .utp-cards-item {
    gap: 6px;
    font-size: 14px;
    padding: 16px;
  }

  .banner_inner .utp-cards .utp-cards-item .item-img {
    gap: 12px;
    font-size: 16px;
  }

  .banner_inner .utp-cards .utp-cards-item .item-img svg {
    width: 28px;
    height: 28px;
    min-width: 28px;
  }

  .banner_inner.singlePage {
    padding: 16px 0 20px 0;
  }

  .banner_inner.singlePage .banner-item {
    padding: 18px;
  }

  .banner_inner.singlePage .singlePage-seo {
    gap: 12px;
    font-size: 14px;
  }

  .banner_inner.singlePage .singlePage-seo ul {
    gap: 0px;
  }

  .banner_inner.singlePage .singlePage-seo h3 {
    font-size: 14px;
  }
}

.service_inner {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.service_inner .service-item {
  padding: 20px;
  border-radius: 16px;
  background-color: var(--lightgray);
  display: flex;
  flex-direction: column;
  gap: 20px;
  justify-content: center;
  align-items: center;
  font-size: 16px;
  font-weight: 700;
  transition: all 0.3s ease;
  cursor: pointer;
  color: var(--black);
}

.service_inner .service-item:hover {
  background-color: color-mix(in srgb, var(--main-col) 20%, transparent);
}

.service_inner .service-item .service-item-img {
  max-height: 156px;
  max-width: 266px;
}

.service_inner .service-item .service-item-img img {
  max-height: 156px;
  width: 100%;
  object-fit: contain;
}

.service_inner .service-item.big {
  grid-column: 1 / -1;
  padding: 32px 32px 40px 32px;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  gap: 32px;
  position: relative;
  overflow: hidden;
}

.service_inner .service-item.big .service-item-more {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  bottom: 0;
  right: 0;
  width: 172px;
  height: 46px;
  color: white;
  background: var(--main-col);
  border-radius: 16px 0px 0px 0px;
  transition: all 0.3s ease;
  box-shadow: none;
  border-left: 1px solid transparent;
  border-top: 1px solid transparent;
}

.service_inner .service-item.big .service-item-more:hover {
  background-color: transparent;
  color: var(--main-col);
  border-left: 1px solid var(--main-col);
  border-top: 1px solid var(--main-col);
}

.service_inner .service-item.big .service-item-img {
  max-width: 268px;
  max-height: 301px;
}

.service_inner .service-item.big .service-item-img img {
  max-height: 301px;
  width: 100%;
  object-fit: contain;
}

.service_inner .service-item.big ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.service_inner .service-item.big ul li {
  list-style: none;
  display: flex;
  justify-content: space-between;
  font-size: 16px;
  font-weight: 500;
  color: var(--black);
}

.service_inner .service-item.big .service-item-price ul li:hover {
  color: var(--main-col);
}

.service_inner .service-item.big ul li span:nth-child(2) {
  flex: 1;
  border-bottom: 1px solid var(--black);
  opacity: 0.5;
  margin-bottom: 2px;
  display: block;
}

.service_inner .service-item.big .service-item-text {
  display: flex;
  flex-direction: column;
  max-width: 300px;
}

.service_inner .service-item.big .service-item-text ul li a {
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  display: block;
  transition: all 0.3s ease-in-out;
  color: var(--black);
}

.service_inner .service-item.big .service-item-text ul li a:hover {
  color: var(--main-col);
}

.service_inner .service-item.big .service-item-text button {
  background: transparent;
  font-size: 16px;
  font-weight: 500;
  color: var(--darkgray);
  box-shadow: none;
  border-radius: 0;
  margin-top: 12px;
}

.service_inner .service-item.big .service-item-text button:hover {
  cursor: pointer;
  color: var(--main-col);
}

.service_inner .service-item.big .service-item-text ul li:nth-child(n + 7) {
  display: none;
}

.service_inner .service-item.big .service-item-text ul.open li:nth-child(n + 7) {
  display: block;
}

.service_inner .service-item.big .service-title {
  font-size: 20px;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 9px;
}

.service_inner .service-item.big .service-price-min {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 23px;
  color: var(--main-col);
}

.service_inner .service-item.big .service-item-price {
  margin-left: auto;
  max-width: 580px;
  width: 100%;
  padding-top: 17px;
}

.service_inner .service-item.big .service-item-price button {
  background: transparent;
  font-size: 16px;
  font-weight: 500;
  color: var(--darkgray);
  box-shadow: none;
  border-radius: 0;
  margin-top: 12px;
}

.service_inner .service-item.big .service-item-price button:hover {
  cursor: pointer;
  color: var(--main-col);
}

.service_inner .service-item.big .service-item-price ul a:nth-child(n + 9) {
  display: none;
}

.service_inner .service-item.big .service-item-price ul.open a:nth-child(n + 9) {
  display: flex;
}

.service_inner .service-item.big .service-item-price ul.open a:nth-child(n + 9) li {
  width: 100%;
  display: flex;
}

.service_inner .service_inner-other {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(auto-fit, minmax(306px, 1fr));
}

.service_inner .service_inner-other .service-item:nth-child(n + 6) {
  display: none;
}

.service_inner .service_inner-other.open .service-item:nth-child(n + 6) {
  display: flex;
}

@media (max-width: 1300px) {
  .service_inner .service-item.big {
    padding: 20px 20px 40px 20px;
    gap: 12px;
  }

  .service_inner .service-item.big .service-item-img {
    max-width: 220px;
  }

  .service_inner .service-item.big .service-item-price {
    max-width: 470px;
  }
}

@media (max-width: 992px) {
  .service_inner {
    gap: 11px;
  }

  .service_inner .service-item {
    padding: 12px;
    gap: 12px;
    font-size: 12px;
  }

  .service_inner .service-item .service-item-img {
    max-width: 148px;
    max-height: 86px;
  }

  .service_inner .service-item .service-item-img img {
    max-height: 86px;
  }

  .service_inner .service-item.big {
    grid-column: 1 / 1;
    padding: 12px;
    display: flex;
    flex-direction: column;
  }

  .service_inner .service-item.big .service-item-img {
    max-width: 148px;
    max-height: 86px;
  }

  .service_inner .service-item.big .service-item-img img {
    max-height: 86px;
  }

  .service_inner .service-item.big .service-title {
    margin: 0;
    font-size: 12px;
  }

  .service_inner .service-item.big .service-item-price {
    display: none;
  }

  .service_inner .service-item.big .service-item-text .service-price-min {
    display: none;
  }

  .service_inner .service-item.big .service-item-text ul {
    display: none;
  }

  .service_inner .service-item.big .service-item-text button {
    display: none;
  }

  .service_inner .service-item.big .service-item-more {
    display: none;
  }

  .service_inner .service_inner-other {
    gap: 11px;
    grid-template-columns: repeat(auto-fit, minmax(172px, 1fr));
  }

  .service_inner .service_inner-other .service-item:nth-child(n + 5) {
    display: none;
  }

  .service_inner .service_inner-other.open .service-item:nth-child(n + 5) {
    display: flex;
  }
}

.mainUtp_inner {
  display: flex;
  flex-wrap: wrap;
  padding: 32px 0;
  gap: 32px 48px;
  justify-content: space-between;
  align-items: start;
}

.mainUtp_inner .mainUtp-item {
  flex: 1 0 24%;
  display: flex;
  flex-direction: column;
  gap: 13px;
  justify-content: center;
  align-items: center;
  max-width: 248px;
}

.mainUtp_inner .mainUtp-item:nth-child(1) {
  max-width: 311px;
}

.mainUtp_inner .mainUtp-item:nth-child(1) .mainUtp-title {
  max-width: 247px;
}

.mainUtp_inner .mainUtp-item:nth-child(1) .mainUtp-text {
  max-width: 247px;
}

.mainUtp_inner .mainUtp-item:nth-child(3) {
  max-width: 311px;
}

.mainUtp_inner .mainUtp-item:nth-child(4) {
  max-width: 263px;
}

.mainUtp_inner .mainUtp-icon {
  margin-bottom: 7px;
}

.mainUtp_inner .mainUtp-title {
  font-size: 20px;
  font-weight: 600;
  color: var(--black);
  text-align: center;
}

.mainUtp_inner .mainUtp-text {
  text-align: center;
  font-size: 16px;
  font-weight: 400;
  color: var(--darkgray);
}

@media (max-width: 1300px) {
  .mainUtp_inner {
    display: flex;
    flex-wrap: wrap;
    padding: 50px 0;
    gap: 32px;
    justify-content: space-between;
    align-items: start;
  }

  .mainUtp_inner .mainUtp-item {
    flex: 1 0 45%;
    display: flex;
    flex-direction: column;
    gap: 6px;
    justify-content: center;
    align-items: center;
    max-width: 100%;
  }

  .mainUtp_inner .mainUtp-item:nth-child(1) {
    max-width: 100%;
  }

  .mainUtp_inner .mainUtp-item:nth-child(1) .mainUtp-title {
    max-width: 100%;
  }

  .mainUtp_inner .mainUtp-item:nth-child(1) .mainUtp-text {
    max-width: 100%;
  }

  .mainUtp_inner .mainUtp-item:nth-child(3) {
    max-width: 100%;
  }

  .mainUtp_inner .mainUtp-item:nth-child(4) {
    max-width: 100%;
  }

  .mainUtp_inner .mainUtp-icon {
    margin-bottom: 0px;
  }

  .mainUtp_inner .mainUtp-title {
    font-size: 18px;
  }

  .mainUtp_inner .mainUtp-text {
    font-size: 14px;
  }
}

@media (max-width: 992px) {
  .mainUtp_inner {
    justify-content: center;
  }

  .mainUtp_inner .mainUtp-item {
    flex: 1 0 100%;
    align-items: center;
    max-width: 100%;
  }

  .mainUtp_inner .mainUtp-item:nth-child(2) {
    max-width: 100%;
  }

  .mainUtp_inner .mainUtp-item:nth-child(2) .mainUtp-title {
    max-width: 100%;
  }

  .mainUtp_inner .mainUtp-item:nth-child(2) .mainUtp-text {
    max-width: 247px;
  }

  .mainUtp_inner .mainUtp-item:nth-child(3) {
    max-width: 311px;
  }

  .mainUtp_inner .mainUtp-item:nth-child(4) {
    max-width: 283px;
  }

  .mainUtp_inner .mainUtp-icon {
    margin-bottom: 0px;
  }

  .mainUtp_inner .mainUtp-title {
    font-size: 18px;
  }

  .mainUtp_inner .mainUtp-text {
    font-size: 14px;
  }
}

.price_inner {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.price_inner .price_body-tabs-info {
  display: none;
}

.price_inner .price_body-switchers {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.price_inner .price_body-switchers .price-tab {
  padding: 12px 20px;
  font-size: 16px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 12px;
  width: fit-content;
  min-width: fit-content;
  border-radius: 16px;
  border: 1px solid #3b3b3b80;
  cursor: pointer;
  transition: all 0.3s ease;
}

.price_inner .price_body-switchers .price-tab:hover {
  border: 1px solid var(--main-col);
  color: white;
  background-color: var(--main-col);
}

.price_inner .price_body-switchers .price-tab.active {
  border: 1px solid var(--main-col);
  color: white;
  background-color: var(--main-col);
}

.price_inner .price_body-switchers .price-tab img {
  max-width: 38px;
  max-height: 38px;
  width: 38px;
  height: 38px;
  object-fit: contain;
}

.price_inner .price_body {
  display: none;
  flex-direction: column;
  margin-top: 8px;
}

.price_inner .price_body.show {
  display: flex;
}

.price_inner .price_body-head {
  margin: 0px 12px -29px 12px;
  background: #f5f5f5;
  padding: 18px 20px;
  display: flex;
  align-items: center;
  z-index: 2;
  border-radius: 16px;
  font-size: 16px;
  font-weight: 700;
}

.price_inner .price_body-head span:nth-child(1) {
  max-width: 825px;
  width: 100%;
}

.price_inner .price_body-head span:nth-child(2) {
  max-width: 190px;
  width: 100%;
}

.price_inner .price_body-head span:nth-child(3) {
  max-width: 178px;
  width: 100%;
}

.price_inner .price_body-head span:nth-child(4) {
  width: 36px;
  min-width: 36px;
  height: 1px;
}

.price_inner .price_body-box {
  border: 2px solid #3b3b3b80;
  box-shadow: 0px 4px 12px 0px #8080800f;
  border-radius: 16px;
  padding: 39px 32px;
  max-height: 650px;
  overflow-y: auto;
}

.price_inner .price_body-box::-webkit-scrollbar {
  display: none;
}

.price_inner .price_body-box-item {
  padding: 12px 0;
  border-bottom: 1px solid #3b3b3b80;
  display: flex;
  align-items: center;
  cursor: pointer;
}

.price_inner .price_body-box-item:nth-child(1) {
  padding: 8px 0 12px 0;
}

.price_inner .price_body-box-item span {
  font-size: 16px;
  font-weight: 400;
  color: var(--black);
}

.price_inner .price_body-box-item span:nth-child(1) {
  max-width: 825px;
  width: 100%;
}

.price_inner .price_body-box-item span:nth-child(2) {
  max-width: 190px;
  width: 100%;
}

.price_inner .price_body-box-item span:nth-child(3) {
  max-width: 178px;
  width: 100%;
}

.price_inner .price_body-box-item span:nth-child(4) {
  width: 36px;
  min-width: 36px;
  height: 36px;
  border-radius: 100%;
  background-color: var(--main-col);
  display: flex;
  align-items: center;
  justify-content: center;
}

.price_inner .price_body-box-item:hover span {
  color: var(--main-col);
}

.price_inner .price_bot {
  padding: 32px 40px;
  border-radius: 16px;
  background: var(--lightgray);
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.price_inner .price_bot .price_bot-item {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding-right: 47px;
  position: relative;
  width: 614px;
}

.price_inner .price_bot .price_bot-item::after {
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  width: 1px;
  background-color: #3b3b3b80;
  content: "";
}

.price_inner .price_bot .price_bot-item span {
  font-size: 32px;
  font-weight: 700;
}

.price_inner .price_bot .price_bot-item span.text {
  font-size: 16px;
  font-weight: 400;
  color: var(--darkgray);
}

.price_inner .price_bot .price_bot-item span.text b {
  font-weight: 700;
  color: var(--main-col);
}

.price_inner .price_bot form {
  flex: 1 0 20%;
  padding-left: 46px;
  max-width: 602px;
}

@media (max-width: 1050px) {
  .price_tabs {
    gap: 12px;
    display: flex;
    flex-direction: column;
  }

  .price_inner {
    gap: 12px;
  }

  .price_inner .price_body-head {
    margin: 0px 0px -22px 0px;
    padding: 16px 12px;
    font-size: 14px;
  }

  .price_inner .price_body-head span:nth-child(1) {
    max-width: 825px;
    width: 100%;
  }

  .price_inner .price_body-head span:nth-child(2) {
    display: none;
  }

  .price_inner .price_body-head span:nth-child(3) {
    max-width: 83px;
    width: 100%;
  }

  .price_inner .price_body-head span:nth-child(4) {
    width: 24px;
    min-width: 24px;
    height: 1px;
  }

  .price_inner .price_body-box-item {
    padding: 8px 0;
    border-bottom: 1px solid #3b3b3b80;
    display: flex;
    align-items: center;
    cursor: pointer;
  }

  .price_inner .price_body-box-item:nth-child(1) {
    padding: 12px 0 8px 0;
  }

  .price_inner .price_body-box-item span {
    font-size: 12px;
    font-weight: 400;
    color: var(--black);
  }

  .price_inner .price_body-box-item span:nth-child(1) {
    max-width: 825px;
    width: 100%;
    font-weight: 700;
  }

  .price_inner .price_body-box-item span:nth-child(2) {
    display: none;
  }

  .price_inner .price_body-box-item span:nth-child(3) {
    max-width: 83px;
    width: 100%;
  }

  .price_inner .price_body-box-item span:nth-child(4) {
    width: 24px;
    min-width: 24px;
    height: 24px;
  }

  .price_inner .price_body-box-item span:nth-child(4) svg {
    width: 10px;
    height: 10px;
  }

  .price_inner .price_body-box-item:hover span {
    color: var(--main-col);
  }

  .price_inner .price_body-box {
    border: 2px solid #3b3b3b80;
    box-shadow: 0px 4px 12px 0px #8080800f;
    border-radius: 16px;
    padding: 12px;
    max-height: 320px;
    overflow-y: auto;
  }

  .price_inner .price_body-box::-webkit-scrollbar {
    display: none;
  }

  .price_inner .price_bot {
    padding: 24px 27px;
    flex-direction: column;
  }

  .price_inner .price_bot .price_bot-item {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding-right: 0px;
    padding-bottom: 20px;
    position: relative;
    max-width: 100%;
    width: 100%;
    margin-bottom: 20px;
  }

  .price_inner .price_bot .price_bot-item::after {
    position: absolute;
    right: initial;
    top: initial;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: #3b3b3b80;
    content: "";
  }

  .price_inner .price_bot .price_bot-item span {
    font-size: 22px;
    letter-spacing: -0.04rem;
    font-weight: 700;
    text-align: center;
  }

  .price_inner .price_bot .price_bot-item span.text {
    font-size: 14px;
    font-weight: 400;
    max-width: 301px;
    margin: 0 auto;
    color: var(--darkgray);
  }

  .price_inner .price_bot .price_bot-item span.text b {
    font-weight: 700;
    color: var(--main-col);
  }

  .price_inner .price_bot form {
    flex: 1 0 100%;
    padding-left: 0px;
    max-width: 100%;
  }

  .price_inner .price_body-tabs-info {
    display: flex;
    gap: 4px;
    align-items: center;
    justify-content: center;
    background-color: var(--lightgray);
    border-radius: 16px;
    font-size: 16px;
    font-weight: 500;
    padding: 12px;
  }

  .price_inner .price_body-tabs-info svg {
    transition: all 0.3s ease-in-out;
  }

  .price_inner .price_body-switchers {
    display: none;
    max-height: 575px;
    overflow: auto;
    gap: 2px;
    border-radius: 16px;
    padding: 0;
    background-color: var(--lightgray);
  }

  .price_inner .price_body-switchers.active{
    display: flex;
  }

  .price_inner .price_body-switchers .price-tab {
    background: none;
    border: none;
    padding: 12px 0;
    text-align: center;
    width: 100%;
    justify-content: center;
  }

  .price_inner .price_body-switchers .price-tab img {
    display: none;
  }

  .price_inner .price_body-switchers .price-tab.active {
    background: none;
    color: var(--black);
    border: none;
  }

  .price_inner .price_body-tabs-info.active svg {
    transform: rotate(180deg);
  }
}

.sale_inner {
  display: flex;
  align-items: center;
  gap: 24px;
}

.sale_inner .sale_inner-form {
  max-width: 746px;
  width: 100%;
  background-color: var(--lightgray);
  padding: 46px 0 46px 56px;
  border-radius: 16px;
  position: relative;
}

.sale_inner .sale_inner-form .title-main {
  width: clamp(299px, calc(67.76vw - 324.75px), 651px);
}

.sale_inner .sale_inner-form .sale-lft {
  position: absolute;
  transform: rotate(180deg);
  left: 20px;
  top: 20px;
  height: clamp(111px, calc(46.53vw - 317.96px), 352px);
}

.sale_inner .sale_inner-form .sale-rght {
  position: absolute;
  right: 20px;
  top: 20px;
  height: clamp(111px, calc(46.53vw - 317.96px), 352px);
}

.sale_inner .sale_inner-form svg.sale-rght path,
.sale_inner .sale_inner-form svg.sale-lft path {
  fill: var(--main-col);
}

.sale_inner .banner-rght {
  width: clamp(355px, calc(33.01vw + 50.63px), 526px);
  height: clamp(264px, calc(24.71vw + 36.17px), 392px);
}

.sale_inner .banner-rght .text {
  background-color: white;
  z-index: 6;
  position: absolute;
  top: clamp(20px, calc(2.32vw - 1.36px), 32px);
  right: clamp(20px, calc(2.32vw - 1.36px), 32px);
  padding: 20px 16px 20px 20px;
  font-size: clamp(10px, calc(1.16vw - 0.68px), 16px);
  border-radius: 16px;
  box-shadow: 0px 4px 12px 0px #80808033;
}

.sale_inner .banner-rght .text::after {
  position: absolute;
  width: 44px;
  height: 19px;
  left: 8px;
  bottom: -14px;
  content: "";
  background-image: url("data:image/svg+xml,%3Csvg width='45' height='20' viewBox='0 0 45 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 19.5L10 3.5L44.5 0.5L0 19.5Z' fill='white'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
}

.sale_inner .banner-rght .text b {
  font-weight: 700;
}

.sale_inner .banner-rght .banner-rght-img {
  position: absolute;
  width: clamp(429px, calc(39.96vw + 60.56px), 636px);
  height: clamp(283px, calc(26.45vw + 39.15px), 420px);
  max-width: 636px;
  max-height: 420px;
  top: 50%;
  transform: translateY(-50%);
  left: clamp(-164px, calc(-10.23vw - 16.66px), -111px);
}

@media (max-width: 1130px) {
  .sale_inner {
    flex-direction: column;
  }

  .sale_inner .sale_inner-form {
    padding: 30px 18px 18px 18px;
  }

  .sale_inner .sale_inner-form .title-main {
    padding-left: 12px;
  }

  .sale_inner .sale_inner-form .sale-rght {
    right: 18px;
    top: 18px;
  }

  .sale_inner .sale_inner-form .sale-lft {
    left: 18px;
    top: 18px;
  }
}

@media (max-width: 992px) {
  .sale_inner .banner-rght {
    display: flex;
  }

  .sale_inner .sale_inner-form .title-main {
    font-size: 24px;
    padding-left: 0;
    margin-bottom: 24px;
  }

  .sale_inner .banner-rght .text {
    padding: 13px;
  }

  .sale_inner {
    flex-direction: column;
  }

  .sale_inner .sale-rght {
    display: none;
  }

  .sale_inner .sale-lft {
    display: none;
  }
}

.how-work_inner {
  border-radius: 16px;
  background-color: var(--main-col);
  padding: 32px;
  position: relative;
}

.how-work_inner .title-submain {
  text-align: left;
  color: white;
  position: relative;
  z-index: 2;
}

.how-work_inner .how-work_boxs {
  background-color: white;
  border-radius: 16px;
  display: flex;
  padding: 24px;
  flex-wrap: wrap;
  position: relative;
  justify-content: center;
  z-index: 2;
}

.how-work_inner .how-work_box {
  display: flex;
  flex-direction: column;
  gap: 20px;
  flex: 0 0 27%;
  max-width: fit-content;
  padding-left: 34px;
  margin-left: 34px;
  position: relative;
}

.how-work_inner .how-work_box::after {
  position: absolute;
  left: 0;
  top: 0;
  background-color: #3b3b3b80;
  width: 1px;
  height: 100%;
  opacity: 0.5;
  content: "";
}

.how-work_inner .how-work_box:nth-child(1) {
  padding: 0;
  margin: 0;
  border: none;
}

.how-work_inner .how-work_box:nth-child(1)::after {
  display: none;
}

.how-work_inner .how-box-title {
  display: flex;
  gap: 14px;
  align-items: center;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.04rem;
}

.how-work_inner .how-box-title-icon {
  width: 54px;
  height: 54px;
  min-width: 54px;
  background-color: var(--lightgray);
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.how-work_inner .how-box-title-icon svg path {
  fill: var(--main-col);
  stroke: var(--main-col);
}

.how-work_inner .how-work_box:nth-child(3) .how-box-title-icon svg path {
  fill: transparent;
}

.how-work_inner .how-box-text {
  font-size: 16px;
  font-weight: 400;
  color: var(--darkgray);
}

.how-work_inner .back {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  border-radius: 16px;
  z-index: 0;
  mix-blend-mode: lighten;
}

@media (max-width: 1400px) {
  .how-work_inner {
    padding: 20px;
  }

  .how-work_inner .title-submain {
    margin-bottom: 24px;
  }

  .how-work_inner .how-work_boxs {
    padding: 20px;
  }

  .how-work_inner .how-work_box {
    display: flex;
    flex-direction: column;
    gap: 20px;
    flex: 0 0 27%;
    max-width: fit-content;
    padding-left: 12px;
    margin-left: 12px;
    position: relative;
  }

  .how-work_inner .how-work_box::after {
    position: absolute;
    left: 0;
    top: 0;
    background-color: #3b3b3b80;
    width: 1px;
    height: 100%;
    opacity: 0.5;
    content: "";
  }

  .how-work_inner .how-work_box:nth-child(1) {
    padding: 0;
    margin: 0;
    border: none;
  }

  .how-work_inner .how-work_box:nth-child(1)::after {
    display: none;
  }

  .how-work_inner .how-box-title {
    display: flex;
    gap: 12px;
    align-items: center;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: -0.04rem;
  }

  .how-work_inner .how-box-title-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
  }

  .how-work_inner .how-box-title-icon svg {
    width: 20px;
    height: 20px;
  }

  .how-work_inner .how-box-text {
    font-size: 14px;
  }
}

@media (max-width: 1050px) {
  .how-work_inner .how-work_boxs {
    flex-direction: column;
  }

  .how-work_inner .how-work_box {
    gap: 12px;
    flex: 1 0 100%;
    width: 100%;
    max-width: 100%;
    padding-left: 0px;
    margin-left: 0px;
    margin-top: 20px;
    padding-top: 20px;
    position: relative;
  }

  .how-work_inner .how-work_box::after {
    position: absolute;
    left: 0;
    top: 0;
    background-color: #3b3b3b80;
    width: 100%;
    height: 1px;
    opacity: 0.5;
    content: "";
  }

  .how-work_inner .how-box-text br {
    display: none;
  }

  .how-work_inner .back {
    width: 764px;
    height: auto;
  }
}

.versus_inner {
  display: flex;
  flex-direction: row;
  gap: 40px;
}

.versus_inner .versus_top {
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
  flex-direction: column;
  gap: 44px;
  flex: 1 0 27%;
}

.versus_inner .versus_top .title-submain {
  width: clamp(234px, calc(20.85vw + 41.77px), 342px);
  text-align: left;
  margin: 0;
}

.versus_inner .versus_top img {
  width: clamp(48px, calc(56.95vw - 477.08px), 343px);
  height: clamp(48px, calc(59.27vw - 498.44px), 355px);
}

.versus_inner .versus_bot {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.versus_inner .versus_bot p {
  flex: 1 0 100%;
  display: flex;
  align-items: center;
  max-width: 914px;
  background-color: var(--lightgray);
  font-size: clamp(16px, calc(0.77vw + 8.88px), 20px);
  font-weight: 400;
  padding: 20px 32px;
  border-radius: 16px;
}

.versus_inner .versus_bot .versus_bot-item {
  flex: 1 0 45%;
  padding: 28px;
  border-radius: 16px;
  box-shadow: 0px 4px 12px 0px #8080800f;
  border: 1px solid #3b3b3b80;
  display: flex;
  flex-direction: column;
}

.versus_inner .versus_bot .versus-item-title {
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 20px;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 24px;
}

.versus_inner .versus_bot .versus-item-title .versus-title-icon {
  width: 64px;
  height: 64px;
  min-width: 64px;
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--lightgray);
}

.versus_inner .versus_bot .versus-item-title .versus-title-name {
  display: flex;
  flex-direction: column;
}

.versus_inner .versus_bot .versus-item-title .versus-title-name span {
  margin-top: 6px;
  font-size: 16px;
  font-weight: 700;
  color: var(--main-col);
}

.versus_inner .versus_bot .versus-item-text {
  font-size: 16px;
  font-weight: 400;
  margin-bottom: 24px;
}

.versus_inner .versus_bot .versus-item-btn {
  margin-top: auto;
  max-width: 100%;
  width: 100%;
  position: relative;
}

.versus_inner .versus_bot .versus-item-btn::after {
  position: absolute;
  width: 212px;
  height: 212px;
  left: -6px;
  top: -136px;
  border-radius: 100%;
  background: linear-gradient(127.48deg, rgba(255, 255, 255, 0) 43.39%, #ffffff 128.12%);
  mix-blend-mode: soft-light;
  opacity: 0.9;
  content: "";
}

@media (max-width: 1050px) {
  .versus_inner {
    flex-direction: column;
    gap: 24px;
  }

  .versus_inner .versus_top {
    flex-direction: row;
    gap: 24px;
    flex-wrap: nowrap;
    justify-content: center;
  }

  .versus_inner .versus_bot {
    gap: 12px;
  }

  .versus_inner .versus_bot p {
    padding: 20px 27px 20px 20px;
    margin-bottom: 8px;
  }

  .versus_inner .versus_bot .versus_bot-item {
    padding: 20px;
  }

  .versus_inner .versus_bot .versus_bot-item .versus-item-title {
    gap: 16px;
    font-size: 16px;
    margin-bottom: 12px;
  }

  .versus_inner .versus_bot .versus_bot-item .versus-item-title .versus-title-name span {
    font-size: 14px;
  }

  .versus_inner .versus_bot .versus_bot-item .versus-item-text {
    font-size: 14px;
    margin-bottom: 20px;
  }
}

.sert .title-submain {
  margin-bottom: 20px;
}

.sert .sert-underTit {
  margin-bottom: 56px;
  text-align: center;
  font-size: 20px;
  font-weight: 400;
}

.sert .sert_inner {
  display: flex;
  align-items: stretch;
  gap: 40px;
  justify-content: center;
}

.sert .sert_inner .sert_inner-img {
  width: clamp(208px, calc(40.35vw - 164px), 417px);
  height: clamp(295px, calc(56.95vw - 230.08px), 590px);
  border-radius: 16px;
  object-fit: contain;
}

.sert .sert_inner .sert-textBox {
  max-width: 619px;
}

.sert .sert_inner .sert-textBox .sert-seo {
  box-shadow: 0px 4px 12px 0px #8080800f;
  position: relative;
  margin-top: 56px;
  padding: 96px 32px 32px 32px;
  border-radius: 16px;
  background-color: white;
  font-size: 20px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.sert .sert_inner .sert-textBox .sert-seo ul {
  padding-left: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0px;
}

.sert .sert_inner .sert-textBox .sert-seo-img {
  position: absolute;
  left: 50%;
  top: -56px;
  transform: translateX(-50%);
}

.sert .sert_inner .sert-textBox form {
  margin-top: 30px;
}

.sert .sert_inner .sert-textBox .input-block-phone {
  max-width: 300px;
  width: 100%;
}

.sert .sert_inner .sert-textBox .input-block-phone .white-inp {
  max-width: 100%;
  width: 100%;
}

.sert .sert_inner .sert-textBox .main-btn {
  max-width: 298px;
  width: 100%;
}

@media (max-width: 1200px) {
  .sert .title-submain {
    margin: 0 auto;
    margin-bottom: 24px;
    text-align: center;
    width: 80%;
  }

  .sert .sert-underTit {
    margin: 0 auto;
    margin-bottom: 24px;
    font-size: 16px;
    width: 90%;
  }
}

@media (max-width: 992px) {
  .sert .sert_inner {
    flex-direction: column;
    gap: 20px;
    justify-content: center;
    align-items: center;
  }

  .sert .sert_inner .sert-textBox .sert-seo {
    margin-top: 36px;
    padding: 56px 20px 20px 20px;
    font-size: 16px;
    gap: 20px;
  }

  .sert .sert_inner .sert-textBox .sert-seo-img {
    width: 71px;
    height: 71px;
    top: -36px;
  }

  .sert .sert_inner .sert-textBox form {
    margin-top: 24px;
  }

  .sert .sert_inner .sert-textBox form .input-block-phone {
    max-width: 100%;
  }

  .sert .sert_inner .sert-textBox form .main-btn {
    max-width: 100%;
  }
}

.faq_box {
  position: relative;
}

.faq_box .faq_inner {
  gap: 12px 24px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(604px, 1fr));
}

.faq_box .faq_cards {
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1 0 45%;
}

.faq_box .faq_cards-item {
  position: relative;
  background: var(--lightgray);
  border-radius: 16px;
  padding: 24px;
  list-style: none;
}

.faq_box .faq_cards-item .faq-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.faq_box .faq_cards-item summary {
  font-size: clamp(16px, calc(0.77vw + 8.88px), 20px);
  font-weight: 600;
  pointer-events: none;
  width: clamp(255px, calc(42.86vw - 140.14px), 477px);
}

.faq_box .faq_cards-item p {
  margin-top: 20px;
  font-size: 16px;
  font-weight: 500;
  display: none;
  pointer-events: none;
}

.faq_box .faq_cards-item svg {
  transition: all 0.4s ease;
  pointer-events: none;
}

.faq_box .faq_cards-item.active {
  pointer-events: none;
}

.faq_box .faq_cards-item.active summary {
  color: var(--main-col);
}

.faq_box .faq_cards-item.active .icon {
  transform: rotate(180deg);
}

.faq_box .faq_cards-item.active .icon path {
  stroke: var(--main-col);
  fill: var(--main-col);
}

@media (max-width: 992px) {
  .faq_box .faq_inner {
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  }

  .faq_box .faq_cards-item {
    padding: 18px;
  }

  .faq_box .faq_cards-item p {
    font-size: 14px;
    margin-top: 20px;
  }
}

.map {
  padding: 40px 0 0 0;
  position: relative;
}

.map #map {
  width: 100%;
  height: 888px;
}



.map_inner {
  position: absolute;
  max-width: 1296px;
  top: 32px;
  padding: 16px;
  background-color: white;
  border-radius: 16px;
  box-shadow: 7px 7px 18px 0px #e8e8e8e5;
  max-width: 420px;
}

.map_inner .map-text {
  display: flex;
  flex-direction: column;
}

.map_inner .map-text .map-text-search {
  background: #F4F4F4;
  border-radius: 16px;
  padding: 12px;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.map_inner .map-text .map-search-rght {
  margin-left: auto;
  display: flex;
  gap: 24px;
  position: relative;
  font-size: 14px;
  color: var(--black);
}

.map_inner .map-text .map-search-rght::after {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #CCCCCC;
  opacity: 0.5;
  position: absolute;
  height: 32px;
  width: 1px;
  content: '';
}

.map_inner .map-text .map-text-img {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  width: clamp(328px, calc(11.58vw + 221.2px), 388px);
  height: clamp(143px, calc(5.21vw + 94.94px), 170px);
  margin-bottom: 20px;
}

.map_inner .map-text .map-text-img .map-text-img-logo {
  position: absolute;
  width: 72px;
  height: 72px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: white;
  border-radius: 16px;
  bottom: 12px;
  left: 12px;
}

.map_inner .map-text .map-text-img .map-text-img-logo img {
  width: 56px;
  height: auto;
  max-height: 56px;
  object-fit: contain;
}

.map_inner .map-text .map-text-img .map-text-img-close {
  position: absolute;
  top: 12px;
  right: 12px;
}

.map_inner .map-text .mid-title {
  display: flex;
  align-items: center;
  font-size: 20px;
  color: #196DFF;
  height: 24px;
  gap: 8px;
  margin-bottom: 12px;
}

.map_inner .map-text .mid-title img {
  height: 24px;
}

.map_inner .map-text .mid-undTitle {
  margin-bottom: 8px;
  color: #878787;
  font-size: 14px;
}

.map_inner .map-text .mid-rev {
  display: flex;
  align-items: center;
  font-size: 14px;
  color: var(--darkgray);
  gap: 6px;
  margin-bottom: 12px;
}

.map_inner .map-text .mid-rev span {
  padding-left: 2px;
  color: black;
  font-size: 14px;
  font-weight: 400;
}

.map_inner .map-text .mid-time {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--darkgray);
  font-size: 14px;
  margin-bottom: 20px;
}

.map_inner .map-text .mid-btns {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 32px;
}

.map_inner .map-text .mid-btns .open-popup {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background-color: #196DFF;
  border: 1px solid transparent;
  transition: all 0.3s ease;
  color: white;
  height: 40px;
  padding: 0 8px;
  border-radius: 12px;
  width: 115px;
}

.map_inner .map-text .mid-btns .open-popup:hover {
  background-color: white;
  border: 1px solid #196DFF;
  color: #196DFF;
}

.map_inner .map-text .mid-btns .open-popup:hover svg path {
  fill: #196DFF;
}

.map_inner .map-text .mid-btns span {
  border-radius: 12px;
  background-color: #F3F6FC;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 48px;
  height: 40px;
}

.map_inner .map-text .map-text-bot-tabs {
  display: flex;
  gap: 25px;
  padding-bottom: 9px;
  position: relative;
  margin-bottom: 20px;
}

.map_inner .map-text .map-text-bot-tabs::after {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #F4F4F4;
  content: '';
}

.map_inner .map-text .map-text-bot-tab {
  padding-bottom: 7px;
  position: relative;
  cursor: pointer;
  width: fit-content;
  display: flex;
  align-items: center;
  gap: 3px;
}

.map_inner .map-text .map-text-bot-tab span {
  padding: 3px 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  color: #878787;
  background-color: #F4F4F4;
  border-radius: 6px;
  display: block;
}

.map_inner .map-text .map-text-bot-tab::after {
  position: absolute;
  width: 0;
  bottom: 0;
  left: 0;
  height: 4px;
  background-color: #196DFF;
  content: '';
  transition: all 0.3s ease;
  border-radius: 2px;
}

.map_inner .map-text .map-text-bot-tab.active::after {
  width: 100%;
}

.map_inner .map-text .map-text-bot-tab:hover::after {
  width: 100%;
}

.map_inner .map-text .map-text-bot-content {
  display: none;
}

.map_inner .map-text .map-text-bot-content.show {
  display: flex;
}

.map_inner .map-text .address-map {
  flex-direction: column;
  gap: 22px;
}

.map_inner .map-text .address-map .address-map-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.map_inner .map-text .address-map .address-map-title {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  font-weight: 700;
  color: black;
}

.map_inner .map-text .address-map .address-map-title svg {
  width: 24px;
  height: 24px;
}

.map_inner .map-text .address-map .address-map-title svg path {
  fill: #ccc;
}

.map_inner .map-text .address-map .address-map-text {
  font-size: 14px;
  font-weight: 400;
  color: black;
  padding-left: 36px;
}

.map_inner .map-text .address-map .address-map-text a {
  cursor: pointer;
  font-size: 14px;
  font-weight: 400;
  color: black;
}

.map_inner .map-text .address-map .address-map-text a:hover {
  color: #196DFF;
}

.map_inner .map-text .rev-map {
  flex-direction: column;
  gap: 32px;
  max-height: 285px;
  overflow: auto;
}

.map_inner .map-text .rev-map-item {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.map_inner .map-text .rev-map-title {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  font-weight: 700;
  color: black;
}

.map_inner .map-text .rev-map-title img {
  width: 44px;
  height: 44px;
  object-fit: contain;
  border-radius: 100%;
}

.map_inner .map-text .rev-map-btns {
  display: flex;
  align-items: center;
  gap: 12px;
}

.ymaps_https___api_maps_yandex_ru_2_1_79_1583337922755islands_dotIcon___1E98FF__1E98FF_34x41_1754753111149 {
  background-image: url(/public/images/map-icon.png) !important;
}

@media (max-width: 992px) {
  .map #map {
    height: 326px;
  }

  .map {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 40px 0;
  }

  .map_inner {
    position: relative;
    top: 0;
    padding: 14px;
  }

  .map_inner .map-text {
    gap: 0px;
  }

  .map_inner .map-text .with-svg {
    gap: 8px 6px;
  }

  .map_inner .map-text .with-svg svg {
    min-width: 24px;
    width: 24px;
    max-width: 24px;
  }

  .map_inner .map-text .with-svg:nth-child(1) {
    max-width: 275px;
  }

  .map_inner .map-text .with-svg:nth-child(1) p {
    padding-left: 4px;
    font-size: 14px;
  }

  .map_inner .map-text .with-svg:nth-child(1) span {
    font-size: 16px;
  }

  .map_inner .map-text .with-svg:nth-child(3) {
    font-size: 16px;
  }
}

.models .models_top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.models .models_tabs {
  display: flex;
  align-items: center;
  max-width: 90%;
  overflow-x: auto;
  padding-bottom: 5px;
  gap: 12px;
}

.models .models-tab {
  min-width: fit-content;
  padding: 20px;
  border: 1px solid var(--darkgray);
  color: var(--black);
  background-color: transparent;
  font-size: 16px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  cursor: pointer;
  border-radius: 16px;
}

.models .models-tab.active {
  background-color: var(--main-col);
  color: white;
  border: 1px solid var(--main-col);
}

.models .models-tab:hover {
  background-color: var(--main-col);
  color: white;
  border: 1px solid var(--main-col);
}

.models .modals-search {
  width: 62px;
  height: 62px;
  padding: 20px;
  border: 1px solid #3B3B3B80;
  border-radius: 16px;
  display: flex;
  gap: 12px;
  transition: all 0.3s ease;
  overflow: hidden;
  cursor: pointer;
  justify-content: center;
  align-items: center;
}

.models .modals-search input {
  display: none;
  padding: 0;
  font-size: 16px;
  font-weight: 700;
  border: none;
  border-radius: 0;
  box-shadow: none;
  background-color: transparent;
  width: 136px;

}

.models .modals-search.active input {
  display: block;
}

.models .modals-search.active {
  width: fit-content;
  color: #3F3F3F;
}

.models .modals-search.active svg path {
  fill: #3F3F3F;
  stroke: #3F3F3F;
  fill-opacity: 1;
}

.models .models_inner {
  display: none;
  grid-template-columns: repeat(auto-fit, minmax(244px, 1fr));
  gap: 19px;
  margin-top: 20px;
  margin-bottom: 32px;
}

.models .models_inner.show {
  display: grid;
}

.models .models_inner .models-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  border-radius: 16px;
  gap: 20px;
  padding: 20px;
  background-color: var(--lightgray);
  font-size: 16px;
  font-weight: 700;
  color: var(--black);
  text-align: center;
}

.models .models_inner .models-item:nth-child(n + 11) {
  display: none;
}

.models .models_inner .models-item img {
  max-width: 204px;
  max-height: 130px;
  width: 100%;
  height: auto;
  object-fit: contain;
}

.models .models_inner.open .models-item:nth-child(n+11) {
  display: flex;
}

@media (max-width: 992px) {
  .models .models_tabs {
    flex-wrap: wrap;
    max-width: 100%;
    gap: 8px;
  }

  .models .models-tab {
    padding: 12px;
    font-size: 12px;
    min-width: fit-content;
  }

  .models .modals-search {
    display: none;
  }

  .models .models_inner {
    grid-template-columns: repeat(auto-fit, minmax(172px, 1fr));
    gap: 11px;
    margin-bottom: 24px;
  }

  .models .models_inner .models-item {
    gap: 12px;
    padding: 12px;
    background-color: var(--lightgray);
    font-size: 12px;
  }

  .models .models_inner .models-item:nth-child(n + 7) {
    display: none;
  }

  .models .models_inner .models-item img {
    max-width: 148px;
    max-height: 86px;
  }

  .models .models_inner.open .models-item:nth-child(n+7) {
    display: flex;
  }
}

.repairs_inner {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.repairs_inner .repairs-tabs-box {
  max-width: 636px;
  flex: 1 0 45%;
  padding: 32px;
  box-shadow: 0px 4px 12px 0px #8080800F;
  background: var(--lightgray);
  border-radius: 16px;
  color: var(--black);
  position: relative;
  overflow: hidden;
}

.repairs_inner .repairs-tabs-box .repairs-tab-title {
  text-align: left;
  font-weight: 600;
  font-size: 20px;
  margin-bottom: 24px;
  position: relative;
  z-index: 2;
}

.repairs_inner .repairs-tabs-box .repairs-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  position: relative;
  z-index: 2;
  list-style: none;
}

.repairs_inner .repairs-tabs-box .repairs-tab {
  padding: 19px 20px;
  font-size: clamp(12px, calc(0.77vw + 4.88px), 16px);
  font-weight: 700;
  background: transparent;
  border: 1px solid #3B3B3B80;
  border-radius: 16px;
  transition: all 0.3s ease;
  min-width: fit-content;
  width: fit-content;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
}

.repairs_inner .repairs-tabs-box .repairs-tab:hover {
  background: var(--main-col);
  color: white;
  border-radius: 16px;
}

.repairs_inner .repairs-tabs-box .repairs-tab:hover svg path {
  fill: white;
}

.repairs_inner .repairs-tabs-box .repairs-tab.active {
  background: var(--main-col);
  color: white;
  border-radius: 16px;
}

.repairs_inner .repairs-tabs-box .repairs-tab.active svg path {
  fill: white;
}

.repairs_inner .repairs-bodies {
  flex: 1 0 45%;
}

.repairs_inner .repairs-body {
  flex-direction: column;
  gap: 20px;
  display: none;
}

.repairs_inner .repairs-body.show {
  display: flex;
  height: 100%;
}

.repairs_inner .repairs-body-title {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 20px;
  font-weight: 600;
}

.repairs_inner .repairs-body-title img {
  width: 32px;
  height: 32px;
  min-width: 32px;
}

.repairs_inner .repairs-body-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.repairs_inner .repair-list-item {
  width: fit-content;
  padding: 12px 24px;
  font-size: 16px;
  font-weight: 500;
  background-color: var(--lightgray);
  border-radius: 16px;
  color: var(--darkgray);
  cursor: pointer;
  text-decoration: underline;
}

.repairs_inner .repair-list-item:hover {
  text-decoration: none;
}

.repairs_inner .repairs-body-btns {
  display: flex;
  margin-top: auto;
  flex-wrap: wrap;
  gap: 20px;
}

.repairs_inner .repairs-body-btns button {
  flex: 1 0 45%;
  width: 100%;
  max-width: 100%;
}

.repairs_inner .repairs-body-btns button::after {
  position: absolute;
  width: 212px;
  height: 212px;
  left: -6px;
  top: -136px;
  background: linear-gradient(127.48deg, rgba(255, 255, 255, 0) 43.39%, #ffffff 128.12%);
  mix-blend-mode: soft-light;
  opacity: 0.9;
  content: "";
  border-radius: 100%;
}

.repairs_inner .repairs-body-btns a {
  flex: 1 0 45%;
  width: 100%;
  max-width: 100%;
}

.repairs_inner .main-btn {
  padding: 16px;
  height: 56px;
}

@media (max-width: 992px) {
  .repairs_inner {
    gap: 24px;
  }

  .repairs_inner .repairs-tabs-box {
    max-width: 100%;
    flex: 1 0 100%;
    padding: 20px;
  }

  .repairs_inner .repairs-tabs-box .repairs-tab-title {
    margin-bottom: 24px;
  }

  .repairs_inner .repairs-tabs-box .repairs-tabs {
    gap: 8px;
  }

  .repairs_inner .repairs-tabs-box .repairs-tab {
    padding: 12px;
    border-radius: 12px;
  }

  .repairs_inner .repairs-tabs-box .repairs-tab.active {
    border-radius: 12px;
  }

  .repairs_inner .repairs-bodies {
    flex: 1 0 100%;
  }

  .repairs_inner .repairs-body {
    gap: 16px;
  }

  .repairs_inner .repairs-body-title {
    font-size: 16px;
  }

  .repairs_inner .repairs-body-title img {
    width: 32px;
    height: 32px;
    min-width: 32px;
  }

  .repairs_inner .repairs-body-list {
    gap: 8px;
  }

  .repairs_inner .repair-list-item {
    padding: 12px;
    border-radius: 12px;
    font-size: 12px;
  }

  .repairs_inner .repairs-body-btns {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 8px;
  }

  .repairs_inner .repairs-body-btns a {
    flex: 1 0 100%;
  }

  .repairs_inner .repairs-body-btns button {
    flex: 1 0 100%;

  }

  .repairs_inner .main-btn {
    max-width: 100%;
    width: 100%;
    padding: 16px;
    height: 56px;
  }
}

.seo h2 {
  font-size: clamp(20px, calc(2.32vw - 1.36px), 32px);
  margin-bottom: 32px;
}

.seo .seo_inner {
  padding-left: clamp(14px, calc(1.16vw + 3.32px), 20px);
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: clamp(14px, calc(0.39vw + 10.44px), 16px);
  position: relative;
  color: var(--darkgray);
}

.seo .seo_inner h3 {
  font-size: clamp(16px, calc(1.54vw + 1.76px), 24px);
}

.seo .seo_inner p {
  font-size: clamp(14px, calc(0.39vw + 10.44px), 16px);
}

.seo .seo_inner ul {
  padding-left: 2rem;
}

.seo .seo_inner ul li {
  font-size: clamp(14px, calc(0.39vw + 10.44px), 16px);
}

.seo .seo_inner ul p {
  transform: translateX(-2rem);
}

.seo .seo_inner b {
  font-size: clamp(14px, calc(0.39vw + 10.44px), 16px);
}

.reviews_inner {
  overflow: hidden;
}

.brandsSwiper .brand-case {
  box-shadow: 0px 4px 12px 0px #0000000f;
  background-color: white;
  border-radius: 16px;
  padding: 20px;
}

.brandsSwiper .slide-text {
  font-size: 16px;
  font-weight: 400;
  margin-bottom: 20px;
  line-height: 1.5;
}

.brandsSwiper .slide-author {
  font-weight: 700;
  font-size: 16px;
  font-style: italic;
  color: var(--colgray);
}

.faq_cards .faq_cards-item .item-footnote {
  line-height: 1.4;
}

.swiper-pagination {
  position: relative !important;
  margin-top: 42px;
}

.swiper-pagination-bullet-active {
  background: var(--main-col) !important;
}

.swiper-pagination-bullet {
  width: 48px !important;
  height: 4px !important;
  border-radius: 10px !important;
}

.swiper-button-next svg,
.swiper-button-prev svg {
  max-height: 35px;
}

.swiper-button-next,
.swiper-button-prev {
  width: 60px !important;
  height: 60px !important;
  border-radius: 100%;
  cursor: pointer !important;
  transition: all 0.2s ease;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
  background-color: var(--main-col);
}

.swiper-button-next:hover svg path,
.swiper-button-prev:hover svg path {
  fill: white;
}

.swiper-button-next::after,
.swiper-button-prev::after {
  display: none;
}

.swiper-button-next {
  transform: rotate(180deg);
}

.seo_form .reviews_inner {
  height: 619px;
}

.seo_form .reviews_inner .slider-case .slide-text {
  max-width: 650px;
  z-index: 10;
  padding-left: 56px;
  font-size: 20px;
}

.seo_form .reviews_inner .slider-case::after {
  left: 120px;
}

.brandsSwiper {
  position: relative;
}

.brandsSwiper .swiper-slide {
  justify-content: center;
  display: flex;
  align-items: center;
}

.overlay {
  z-index: 0;
  pointer-events: none;
  top: 0;
  left: 0;
  opacity: 0;
  width: 100%;
  height: 100%;
  position: fixed;
  background-color: #1f201f;
  transition: all 0.5s ease;
  backdrop-filter: blur(2px);
  background-color: rgba(0, 0, 0, 0.6);
}

.overlay.active {
  pointer-events: all;
  opacity: 1;
  z-index: 100;
}

.modal {
  transform: translate(-50%, -1000%);
  overflow: hidden;
  background-color: white;
  border-radius: 16px;
  z-index: 0;
  position: fixed;
  top: 20%;
  left: 50%;
  transition: all 0.5s ease;
  padding: 32px 42px;
  max-width: 375px;
  width: 100%;
  background: #FFFFFF;
  box-shadow: -7px 7px 14px rgba(232, 232, 232, 0.2);
  border-radius: 16px;
}

.modal .modal__container {
  justify-content: space-between;
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 42px;
  position: relative;
}

.modal .modal__title {
  padding-left: 40px;
  margin: 0 auto;
}

.modal .form-text {
  margin-bottom: 16px;
}

.modal .form {
  position: relative;
  background: transparent;
  z-index: 2;
  padding: 0;
  justify-content: center;
}

.modal .form .input-block-phone {
  max-width: 100%;
  width: 100%;
  border-radius: 16px;
}

.modal .form .input-block-phone .white-inp {
  background-color: var(--lightgray);
  max-width: 100%;
  width: 100%;
}

.modal .form .main-btn {
  max-width: 100%;
  width: 100%;
  padding: 16px 45px;
}

.modal .form .agree {
  font-size: 10px;
  text-align: center;
}

.modal .modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 3;
}

.modal.active {
  z-index: 101;
  transform: translate(-50%, 0);
}

.modal.question {
  padding: 18px;
  max-width: 461px;
}

.modal.question .modalQue-title {
  display: flex;
  gap: 18px;
  font-size: 20px;
  font-weight: 600;
  max-width: 354px;
  margin-bottom: 24px;
}

.modal.question .modalQue-title img {
  width: 48px;
  height: 48px;
  min-width: 48px;
}

.modal.question .modalQue-steps {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 12px;
  font-size: 14px;
}

.modal.question .modalQue-steps .modalQue-steps-point {
  position: relative;
  width: 100%;
  border-radius: 90px;
  background-color: #EFF0F6;
  height: 8px;
}

.modal.question .modalQue-steps .modalQue-steps-point span {
  border-radius: 90px;
  background-color: var(--main-col);
  height: 8px;
  width: 141px;
  position: absolute;
  top: 0;
  left: 0;
}

.modal.question .modalQue-list span {
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 12px;
  display: block;
}

.modal.question .modalQue-list ul {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.modal.question .modalQue-list ul li {
  border-radius: 16px;
  background-color: #EFF0F6;
  padding: 10px;
  font-size: 16px;
  font-weight: 500;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.modal.question .modalQue-list ul li a {
  color: var(--darkgray);
}

.modal.question .modalQue-list ul li:hover {
  background-color: var(--main-col);
}

.modal.question .modalQue-list ul li:hover a {
  color: white;
}

.modal.question .modalQue-consult {
  margin: 20px 0;
  display: flex;
  gap: 16px;
  align-items: center;
}

.modal.question .modalQue-consult .modalQue-consult-text {
  display: flex;
  flex-direction: column;
}

.modal.question .modalQue-consult .modalQue-consult-text span:nth-child(1) {
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 6px;
}

.modal.question .modalQue-consult .modalQue-consult-text span:nth-child(2) {
  font-size: 14px;
  margin-bottom: 10px;
}

.modal.question .modalQue-consult .modalQue-consult-text span:nth-child(3) {
  font-size: 14px;
  font-weight: 600;
}

.modal.question .main-btn {
  width: 100%;
  max-width: 100%;
}

.m-none {
  display: block;
}

.m-flex-none {
  display: flex;
}

.pc-none {
  display: none;
}

.pc-flex-none {
  display: none;
}

.menu {
  padding: 0px 2rem 12px 2rem;
  position: fixed;
  bottom: 0;
  right: -1000%;
  height: calc(100% - 116px);
  width: 100%;
  z-index: 99;
  background-color: white;
  transition: all 0.7s ease-in-out;
  overflow: scroll;
}

.menu.active {
  right: 0;
}

.menu .header-search {
  width: 100%;
  max-width: 100%;
  margin-bottom: 16px;
}

.menu .header_top-utps {
  gap: 8px;
  flex-direction: column-reverse;
  align-items: start;
  margin-bottom: 16px;
}

.menu .header_top-utps .header_top-utp {
  max-width: 355px;
}

.menu .header_top-utps .header_top-utp:nth-child(1) {
  display: flex;
}

.menu .header_top-utps .header_top-utp:nth-child(1) br {
  display: none;
}

.menu .header_top-utps .header_top-utp:nth-child(1) span {
  max-width: 100%;
}

.menu .header_bot-address {
  font-size: 10px;
  margin: 0 auto;
  justify-content: center;
  margin-bottom: 20px;
}

.menu .header_bot-address .city {
  font-size: 14px;
  gap: 8px;
}

.menu .pair-btn {
  width: 100%;
  max-width: 100%;
  margin-bottom: 20px;
}

.menu .menu-cat {
  position: relative;
}

.menu .menu-cat::after {
  position: absolute;
  width: 100%;
  height: 138px;
  left: 0;
  bottom: -1px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, #FFFFFF 59.62%);
  content: '';
}

.menu ul {
  display: grid;
  list-style: none;
  padding: 0;
  gap: 11px;
  grid-template-columns: repeat(auto-fit, minmax(165px, 1fr));
  max-height: 427px;
  overflow: auto;
  padding-bottom: 138px;
}

.menu ul li {
  padding: 12px;
  border-radius: 16px;
  background-color: var(--lightgray);
}

.menu ul li img {
  max-width: 148px;
  width: 100%;
  height: auto;
  max-height: 86px;
  object-fit: contain;
}

.menu ul li a {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
  font-size: 12px;
  color: var(--black);
  font-weight: 700;
}

.menu nav {
  display: flex;
  flex-wrap: wrap;
  gap: 11px;
}

.menu nav a {
  background-color: var(--lightgray);
  border-radius: 16px;
  flex: 1 0 45%;
  padding: 16px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 14px;
  font-weight: 500;
  color: var(--darkgray);
}

.menu .header_bot-menu {
  flex-direction: column;
  gap: 8px;
  margin-bottom: 16px;
  padding: 0;
}

.menu .header_bot-menu .dropdown {
  max-width: 100%;
  width: 100%;
}

.menu .header_bot-menu .dropdown .dropdown-content {
  position: relative;
}

.menu .header_bot-menu .dropdown-btn {
  padding: 8px;
  max-width: 100%;
  width: 100%;
  font-size: 16px;
}

.menu .header_bot-menu .dropdown-btn svg {
  width: 24px;
  height: 24px;
  min-width: 24px;
}

.menu .header-nav ul {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.menu .header-nav ul li {
  flex: 1 0 45%;
  padding: 12px;
  background-color: var(--main-col);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  border-radius: 16px;
}

.menu .header-nav ul li a {
  color: white;
  font-size: 16px;
  font-weight: 500;
}

.menu .header-nav ul li:last-child {
  background: linear-gradient(115.05deg, #4177F5 -7.64%, #2CB3F0 49.65%, #19EEEB 106.94%);
}

.footer {
  background: var(--lightgray);
  padding: 28px 0;
}

.footer_inner {
  display: grid;
  grid-template-areas: "logo nav" "logo req";
  gap: 32px;
  align-items: start;
}

.footer_inner ul {
  list-style: none;
}

.header-firts {
  flex: 1 0 27%;
  max-width: 285px;
  grid-area: logo;
}

.header-firts .logo-block {
  margin-bottom: 32px;
}

.header-firts .num-box {
  margin-bottom: 20px;
}

.header-firts .header_bot-address {
  flex-direction: column;
  align-items: start;
  padding: 0;
  margin-bottom: 20px;
}

.header-firts .header_bot-address .street {
  font-size: 16px;
  font-weight: 700;
  color: var(--black);
  padding: 0;
}

.header-firts .header_bot-address span {
  font-size: 12px;
  color: var(--darkgray);
}

.header-firts .header-nav ul {
  gap: 16px;
  flex-direction: column;
  align-items: start;
}

.header-firts .header-nav ul a {
  font-size: 16px;
  font-weight: 500;
  color: var(--black);
}

.footer-nav {
  flex: 1 0 50%;
  grid-area: nav;
  max-width: 985px;
  gap: 24px;
  display: flex;
  justify-content: space-between;
}

.footer-nav ul {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-height: 315px;
  overflow-y: auto;
  padding-right: 5px;
}

.footer-nav ul:nth-child(3) a {
  font-weight: 700;
  color: var(--main-col);
  text-decoration: underline;
}

.footer-nav ul:nth-child(3) a:hover {
  text-decoration: none;
}

.footer-nav ul li {
  font-size: 16px;
  font-weight: 500;
  color: var(--black);
}

.footer-nav ul a {
  font-size: 16px;
  font-weight: 500;
  color: var(--black);
}

.foot-menu-tit {
  font-size: 16px;
  font-weight: 700;
  display: block;
}

.footer-contacts {
  flex: 1 0 100%;
  max-width: 100%;
  grid-area: req;
  display: flex;
  align-items: flex-end;
  gap: 32px;
  height: 100%;
}

.footer-contacts .with-svg {
  font-size: 16px;
  font-weight: 400;
  color: var(--main-col);
  flex-direction: column;
  gap: 6px;
  text-align: left;
  align-items: start;
  margin-bottom: 20px;
}

.footer-contacts .with-svg span {
  font-weight: 400;
  font-size: 12px;
  color: var(--black);
}

.footer-contacts .footer-req-item {
  font-size: 14px;
  font-weight: 400;
  color: var(--black);
}

.footer-contacts .footer-req-item.last {
  position: relative;
}

.footer-contacts ul li a {
  font-size: 12px;
  font-weight: 500;
  text-decoration: underline;
  margin-bottom: 8px;
  display: block;
  color: var(--darkgray);
  opacity: 0.7;
}

.footer-contacts ul li a:hover {
  text-decoration: none;
}

.footer-par {
  flex: 1 0 100%;
  padding-top: 32px;
  font-size: 16px;
  font-weight: 400;
  position: relative;
}

.footer-par::after {
  position: absolute;
  width: 100%;
  content: '';
  top: 0;
  left: 0;
  height: 1px;
  background-color: white;
}

.footer-par p {
  color: #808080;
  opacity: 0.5;
}

.footer-par ul {
  padding-left: 2rem;
  display: flex;
  flex-direction: column;
  gap: 2px;
  color: #808080;
  opacity: 0.5;
}

.footer-par ul li {
  list-style: disc;
}

@media (max-width: 1050px) {
  .footer-nav {
    flex-direction: column;
  }

  .footer_inner {
    flex-direction: column;
    grid-template-areas: "logo " "nav " "req";
    gap: 0;
  }

  .footer_inner .header-firts {
    flex: 1 0 100%;
    width: 100%;
    max-width: 100%;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
  }

  .footer_inner .header-firts .num-box {
    margin: 0;
    margin-bottom: 16px;
    gap: 6px;
  }

  .footer_inner .header-firts .logo-block {
    margin-bottom: 16px;
  }

  .footer_inner .header-firts .header-nav ul {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 16px 32px;
    position: relative;
    padding-bottom: 0px;
    margin-bottom: 32px;
  }

  .footer_inner .header-firts .header_bot-address {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: start;
    flex: 1 0 100%;
    margin-bottom: 32px;
  }

  .footer-nav {
    margin-bottom: 0px;
    gap: 32px;
  }

  .footer-nav ul {
    max-height: 277px;
  }

  .footer-nav ul .foot-menu-tit {
    margin-bottom: 4px;
  }

  .footer-contacts {
    width: 100%;
    max-width: 100%;
    flex: 1 0 100%;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top: 32px;
  }

  .footer-contacts ul {
    margin-bottom: 32px;
  }

  .footer-par {
    font-size: 12px;
  }
}

@media (max-width: 922px) {
  .footer {
    padding: 20px 0;
  }

  .footer .footer_inner {
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 0;
    align-items: start;
  }
}

.cat-menu {
  position: fixed;
  box-shadow: 0px 4px 12px 0px #80808033;
  background-color: white;
  padding: 20px;
  top: 140px;
  border-radius: 16px;
  max-width: 940px;
  width: 100%;
  transform: translateY(-150%);
  transition: all 0.5s ease-in-out;
}

.cat-menu .cat-menu-list {
  grid-template-columns: repeat(auto-fit, minmax(275px, 1fr));
  gap: 12px;
  overflow-Y: auto;
  max-height: 270px;
  display: grid;
  padding-right: 5px;
}

.cat-menu .cat-menu-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  border-radius: 16px;
  font-size: 16px;
  font-weight: 700;
  color: var(--black);
  background-color: var(--lightgray);
  transition: all 0.3s ease;
}

.cat-menu .cat-menu-item:hover {
  background-color: color-mix(in srgb, var(--main-col) 20%, transparent);
}

.cat-menu .cat-menu-item img {
  width: 58px;
  height: 58px;
  object-fit: contain;
}

.cat-menu.active {
  transform: translateY(0);
}

@media (max-width: 1400px) {
  .phone_block {
    z-index: 1;
    width: inherit;
    right: 54px;
  }

  .phone_block .overlay_phone {
    right: 0px;
    transform: translate(0);
  }
}

@media (max-width: 1050px) {
  .bread {
    padding-top: 12px;
    margin-bottom: 20px;
    padding-bottom: 0;
    gap: 7px;
    overflow: auto;
  }

  .bread svg {
    min-width: fit-content;
  }

  .bread a {
    min-width: fit-content;
  }
}

@media (max-width: 992px) {
  .swiper-pagination-bullet {
    width: 6px !important;
    height: 6px !important;
  }

  .reviews_inner {
    overflow: hidden;
  }

  .reviews_inner.grayBG {
    background-color: transparent;
    padding: 0;
  }

  .swiper-button-next,
  .swiper-button-prev {
    top: 94% !important;
  }

  .swiper-button-next:hover,
  .swiper-button-prev:hover {
    background-color: var(--green);
  }

  .swiper-button-next:hover svg path,
  .swiper-button-prev:hover svg path {
    fill: white;
  }

  .swiper-button-next::after,
  .swiper-button-prev::after {
    display: none;
  }

  .swiper-button-next {
    transform: rotate(180deg);
  }

  .swiper-button-next {
    right: var(--swiper-navigation-sides-offset, 25.5%) !important;
  }

  .swiper-button-prev {
    left: var(--swiper-navigation-sides-offset, 25.5%) !important;
  }

  .modal__form .agree__text {
    text-align: center;
  }

  .grayBG {
    padding: 20px 0;
  }

  .m-none {
    display: none;
  }

  .m-flex-none {
    display: none;
  }

  .pc-none {
    display: block;
  }

  .pc-flex-none {
    display: flex;
    align-items: center;
  }
}


.modal_question {
  padding: 18px;
  max-width: 355px;
  transform: translate(-10px, 1000%);
  overflow: hidden;
  background-color: white;
  z-index: 0;
  position: fixed;
  bottom: 10px;
  right: 10px;
  transition: all 0.75s ease;
  width: 100%;
  background: #FFFFFF;
  box-shadow: -7px 7px 14px rgba(232, 232, 232, 0.2);
  border-radius: 12px;
}

.modal_question.active {
  z-index: 101;
  transform: translate(-10px, -10px);
}

.modal_question .modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 3;
}

.modal_question .modalQue-title {
  display: flex;
  gap: 18px;
  font-size: 20px;
  font-weight: 600;
  max-width: 270px;
  margin-bottom: 20px;
}

.modal_question .modalQue-title img {
  width: 48px;
  height: 48px;
  min-width: 48px;
}

.modal_question .modalQue-steps {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 12px;
  font-size: 14px;
}

.modal_question .modalQue-steps .modalQue-steps-point {
  position: relative;
  width: 100%;
  border-radius: 90px;
  background-color: #EFF0F6;
  height: 8px;
}

.modal_question .modalQue-steps .modalQue-steps-point span {
  border-radius: 90px;
  background-color: var(--main-col);
  height: 8px;
  width: 141px;
  position: absolute;
  top: 0;
  left: 0;
}

.modal_question .modalQue-list span {
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 12px;
  display: block;
}

.modal_question .modalQue-list ul {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.modal_question .modalQue-list ul li {
  border-radius: 12px;
  background-color: #EFF0F6;
  padding: 10px;
  font-size: 16px;
  font-weight: 500;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.modal_question .modalQue-list ul li a {
  color: var(--darkgray);
}

.modal_question .modalQue-list ul li:hover {
  background-color: var(--main-col);
}

.modal_question .modalQue-list ul li:hover a {
  color: white;
}

.modal_question .modalQue-consult {
  margin: 20px 0;
  display: flex;
  gap: 16px;
  align-items: center;
}

.modal_question .modalQue-consult .modalQue-consult-text {
  display: flex;
  flex-direction: column;
}

.modal_question .modalQue-consult .modalQue-consult-text span:nth-child(1) {
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 6px;
}

.modal_question .modalQue-consult .modalQue-consult-text span:nth-child(2) {
  font-size: 14px;
  margin-bottom: 10px;
}

.modal_question .modalQue-consult .modalQue-consult-text span:nth-child(3) {
  font-size: 14px;
  font-weight: 600;
}

.modal_question .main-btn {
  width: 100%;
  background: #40B3E0;
  max-width: 100%;
}

.modal_question .main-btn:hover {
  background-color: white;
}

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

.color-text {
  color: var(--main-color) !important;
}