@charset "UTF-8";

@font-face {
  font-family: "Montserrat";
  font-weight: 400;
  font-display: swap;
  src: url(./../fonts/Montserrat/Montserrat-Regular.ttf);
}

@font-face {
  font-family: "Montserrat";
  font-weight: 600;
  font-display: swap;
  src: url(./../fonts/Montserrat/Montserrat-SemiBold.ttf);
}

@font-face {
  font-family: "Montserrat";
  font-weight: 700;
  font-display: swap;
  src: url(./../fonts/Montserrat/Montserrat-Bold.ttf);
}

@font-face {
  font-family: "Montserrat";
  font-weight: 800;
  font-display: swap;
  src: url(./../fonts/Montserrat/Montserrat-ExtraBold.ttf);
}

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

::selection {
  text-shadow: none;
  background: #27a93630 !important;
}

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

:root {
  --lightgray: #f5f5f5;
  /* --darkgray: #080201; */
  --darkgray: #333333;
  --white: #fff;
  --main-col: #66b031;
  --lg-main-col: #88eb41;
  --pair-col: #b03166;
  --colgray: #3166b0;
}

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

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

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

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(1px) scale(0.95);
  }

  60% {
    opacity: 0.7;
    transform: translateY(-1px) scale(1.001);
  }

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

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

  50% {
    opacity: 1;
  }

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

@keyframes movePattern {
  0% {
    transform: translate(0, 0);
  }

  100% {
    transform: translate(-28.28px, -28.28px);
    /* Перемещаем точно на шаг паттерна */
  }
}

@keyframes shine {
  0% {
    left: -100%;
  }

  100% {
    left: 100%;
  }
}

body {
  margin: 0px;
  line-height: 1.2;
  font-family: Montserrat, Sans-Serif;
  text-size-adjust: 100%;
  -webkit-tap-highlight-color: transparent;
  font-size: 140%;
  color: var(--darkgray);
  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;
  border: 1px solid #00000033;
  border-radius: 12px;
  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;
  max-width: 1440px;
  width: 100%;
  margin: 0px auto;
}

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

svg {
  display: block;
  min-width: 16px;
  max-width: fit-content;
}

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(--white);
  font-size: 52px;
  font-style: normal;
  font-weight: 900;
  line-height: 1.3;
}

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

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

.title-submain span {
  font-weight: 700;
}

@media (max-width: 922px) {
  .title-submain {
    text-align: left;
    font-size: 22px;
    line-height: 1.2;
  }
}

.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;
}

.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;
  position: relative;
  overflow: hidden;
  padding: 0;
  margin: 0;
  color: var(--white);
  font-size: 14px;
  line-height: 1;
  cursor: pointer;
  border-radius: 12px;
  font-weight: 600;
  display: flex;
  align-items: center;
  text-align: center;
  justify-content: center;
  box-shadow: 0px 4px 12px 0px #0000000f;
}

button a {
  color: white;
}

.main-btn {
  border-radius: 12px;
  max-width: 247px;
  background: linear-gradient(135deg, #85D74A 0%, #5E9239 100%);
  color: white;
  cursor: pointer;
  position: relative;
  gap: 4px;
  width: fit-content;
  padding: 20px;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.5s ease;
}

.main-btn:hover {
  background: linear-gradient(135deg, #5E9239 0%, #85D74A 100%);
}

.main-btn-red {
  background-color: #b03166;
  box-shadow: 0px 4px 10px 0px #b0316633;
  padding: 30px 32px;
  max-width: 400px;
  font-size: 14px;
  text-transform: uppercase;
  border-radius: 24px;
  font-weight: 600;
  text-align: left;
  gap: 20px;
  line-height: 1.5;
  letter-spacing: 0.5px;
}

.main-btn-red::after {
  pointer-events: none;
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.4) 50%, rgba(255, 255, 255, 0) 100%);
  transform: skewX(-25deg);
  animation: shine 2s infinite linear;
}

.border-btn {
  background-color: white;
  border: 2px solid var(--pair-col);
  color: var(--pair-col);
  height: auto;
  border-radius: 100px;
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px 0;
}

.button_center {
  padding: 14px 28px;
  display: flex;
  align-items: center;
  margin: 0 auto;
  justify-content: center;
}

.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";
}

.form {
  background-color: white;
  display: flex;
  flex-wrap: wrap;
  border-radius: 12px;
  max-width: 468px;
  gap: 12px;
  padding: 24px 50px;
  align-items: center;
  text-align: center;
  justify-content: center;
  box-shadow: 0px 4px 12px 0px #0000001f;
}

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

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

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

.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);
}

.white-inp {
  transition: all 0.3s ease;
  width: 100%;
  box-shadow: none;
}

.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%;
  height: 54px;
}

.bread {
  padding-top: 12px;
  margin-bottom: 32px;
  display: flex;
  align-items: center;
  line-height: 1.5;
  gap: 8px;
}

.bread .bread-not-active {
  min-width: fit-content;
  font-size: 16px;
  font-weight: 400;
  color: var(--darkgray);
  cursor: default;
}

.bread .bread-active {
  cursor: pointer;
  min-width: fit-content;
  font-size: 16px;
  font-weight: 400;
  color: var(--darkgray);
  text-decoration: underline;
}

.bread .bread-active:hover {
  text-decoration: none;
  color: var(--pair-col);
}

.bread svg.arrow {
  transform: translateY(-5px);
}

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

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

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

.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 {
  margin-bottom: 84px;
}

.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;
}

.circle {
  position: relative;
  min-width: 10px;
  width: 10px;
  height: 10px;
  background: #66b031cc;
  border-radius: 100%;
  animation: pulse 1.5s linear infinite;
}

.circle::after {
  background: #66b0314d;
  position: absolute;
  content: "";
  height: 16px;
  width: 16px;
  border-radius: 100%;
  top: -3px;
  left: -3px;
}

.menu {
  display: none;
}

.header {
  position: sticky;
  top: 0;
  z-index: 5;
  background-color: var(--white);
}

.header .main-btn.open-popup {
  height: 60px;
}

.header .header_top {
  padding: 8px 0;
  /* border-bottom: 1px solid #0802014d; */
}

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

.header .header_top-inner .logo-block {
  display: flex;
  align-items: center;
}

.header .header_top-inner .logo-img {
  padding-right: 13px;
  margin-right: 20px;
  border-right: 1px solid #0802014d;
}

.header .header_top-inner .logo-img img {
  width: clamp(45px, calc(3.92vw + 29.5px), 86px);
  height: clamp(45px, calc(3.92vw + 29.5px), 86px);
}

.header .header_top-inner .logo-block-text {
  font-size: 14px;
  line-height: 1.4;
  color: var(--darkgray);
  max-width: 330px;
}

.header .header_top-inner .header-phone {
  display: flex;
  /* flex-direction: column; */
  gap: 28px;
  align-items: center;
}

.header .header_top-inner .header-phone a {
  font-size: clamp(14px, calc(0.96vw + 10.22px), 24px);
  font-weight: 700;
  text-decoration: underline;
  color: var(--pair-col);
}

.header .header_top-inner .header-phone .header-phone-text{
  display: flex;  
  flex-direction: column;
  gap: 6px;
}

.header .header_top-inner .header-phone .header-phone-time {
  font-size: 12px;
  color: var(--darkgray);
  display: flex;
  align-items: center;
  gap: 6px;
}

.header .header_top-inner .header-phone .header-phone-time span {
  font-weight: 700;
}

.header .header_bottom-inner {
  display: flex;
}

.header .header-nav {
  width: 100%;
  padding: 8px 0 16px 0;
}

.header .header-nav ul {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: 
  linear-gradient(0deg, rgba(8, 2, 1, 0.04), rgba(8, 2, 1, 0.04));
  border-radius: 12px;
  gap: 20px;
  list-style: none;
  padding-right: clamp(10px, calc(4.25vw - 29.16px), 32px);
}

.header .header-nav ul li a {
  font-size: clamp(10px,calc(1.16vw - 0.68px), 16px);
  font-weight: 600;
  color: var(--darkgray);
  text-decoration: underline;
  cursor: pointer;
  text-transform: uppercase;
}

.header .header-nav ul li a:hover {
  color: var(--pair-col);
  text-decoration: none;
}

.header-catalog {
  padding: 15px 20px;
  border: 3px solid var(--main-col);
  border-radius: 12px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: clamp(12px, calc(0.39vw + 8.44px), 14px);
  font-weight: 700;
  color: var(--darkgray);
  background: transparent;
  transition: all 0.3s ease;
}
.header-catalog:hover{
 background: white;
}

@media (max-width: 1200px) {
  .header-catalog{
    padding: 10px 12px;
    gap: 12px;
  }
  .header .header-nav ul{
    gap: 12px;
    justify-content: space-between;
  }
  .arsenal_inner .arsenal_inner-item:nth-child(3) .arsenal-item-img {
    display: none;
  }

  .header .header_top-inner .logo-block .logo-img {
    padding-left: 0;
    border: none;
    margin-right: 0;
  }

  .header .header_top-inner .logo-block img {
    width: 45px;
    height: 45px;
  }

  .header .header_top-inner .logo-block-text {
    display: none;
  }

  .header .header_top {
    padding: 12px 0;
  }
}

@media (max-width: 922px) {
  .header .header_top-inner .header-phone {
    gap: 6px;
    flex-direction: column;
  }
  .header .header_top-inner .header-phone .header-phone-text{
    align-items: center;
    gap: 3px;
  }
  .header .header_top-inner .header-phone .header-phone-time{
    font-size: 10px;
  }
  .header_top {
    margin-bottom: 16px;
  }
  .header .header_top {
    border-bottom: 1px solid #0802014d;
  }
  .header_bottom {
    display: none;
  }

  .menu {
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    position: fixed;
    bottom: -1000%;
    height: calc(100% - 71px);
    width: 100%;
    z-index: 99;
    background-color: var(--white);
    transition: all 1s ease-in-out;
  }

  .menu ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    text-align: center;
    gap: 32px;
  }

  .menu ul li {
    font-size: 16px;
    font-weight: 700;
  }

  .menu ul li a {
    font-size: 12px;
    font-weight: 600;
    text-decoration: underline;
    text-transform: uppercase;
    color: var(--darkgray);
    cursor: pointer;
  }

  .menu.active {
    bottom: 0;
  }

  .header .header_top-inner .header-catalog {
    display: none;
  }

  .header .header_top-inner .main-btn {
    display: none;
  }

  .header .mobile-menu {
    width: 46px;
    height: 46px;
    background: #ffffff;
    border: 3px solid #66b031;
    border-radius: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
  }

  .header .mobile-menu svg:nth-child(2) {
    display: none;
  }

  .header .mobile-menu svg:nth-child(1) {
    display: block;
  }

  .header .mobile-menu.active svg:nth-child(1) {
    display: none;
  }

  .header .mobile-menu.active svg:nth-child(2) {
    display: block;
  }
}

.bannner {
  background-color: #ecf4ff;
  padding: 42px 0;
  border-radius: 24px;
  position: relative;
  overflow: hidden;
  border: 1px solid #ecf4ff;
  margin-bottom: 28px;
}

.bannner::after {
  position: absolute;
  width: 1215.5px;
  height: 776.18px;
  background: #ffffff;
  border-radius: 100%;
  filter: blur(50px);
  content: "";
  top: -175px;
  left: 130px;
  transform: rotate(-43deg);
  z-index: 2;
  pointer-events: none;
}

.bannner.new-custom::after {
  display: none;
}

.bannner .container {
  z-index: 4;
  position: relative;
}

.bannner .bannner-item-que {
  background: #ffeb84;
  padding: 12px 24px;
  max-width: 350px;
  font-size: 16px;
  font-weight: 500;
  color: var(--darkgray);
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 12px 24px;
  border-radius: 0px 24px;
  margin-bottom: 42px;
}

.bannner .title-main {
  font-weight: 900;
  font-size: clamp(26px, calc(1.53vw + 19.95px), 42px);
  line-height: 1.2;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  background: linear-gradient(90deg, #66b031 0%, #3166b0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
  margin-bottom: 12px;
}

.bannner .bannner-text {
  font-size: clamp(26px, calc(1.53vw + 19.95px), 42px);
  line-height: 1.3;
  color: var(--darkgray);
  font-weight: 700;
  /* max-width: 614px; */
  margin-bottom: 42px;
}

.bannner .bannner-btns {
  display: flex;
  flex-wrap: wrap;
  max-width: 830px;
  align-items: center;
  gap: 20px;
}

.bannner .bannner-btns ol {
  display: flex;
  flex-direction: column;
  gap: 12px;
  /* padding-left: 2rem; */
  list-style: none;
}

.bannner .bannner-btns ol li {
  font-size: 16px;
  font-weight: 700;
  color: var(--darkgray);
  display: flex;
  align-items: center;
  gap: 12px;
}

.bannner .bannner-btns ol li svg {
  min-width: 24px;
  width: fit-content;
  max-width: fit-content;
}

.bannner .bannner-btns .bannner-btns-text {
  display: flex;
  align-items: center;
  gap: 11px;
}

.bannner .bannner-btns .bannner-btns-text img {
  /* transform: translateY(15px); */
  width: 20px;
  height: 20px;
}

.bannner .bannner-btns .bannner-btns-text .text {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.4;
  /* max-width: 285px; */
}

.bannner .bannner-btns .bannner-btns-text .text span {
  font-weight: 700;
}

.bannner .bannner-rght {
  position: absolute;
  top: 0;
  right: 0;
  max-width: 740px;
  width: 100%;
}

.bannner .bannner-rght .bannner-rght-img {
  position: absolute;
  right: -15px;
  max-width: 570px;
  top: 30px;
  z-index: 2;
}

.bannner .bannner-rght-back {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  width: 100%;
  max-width: 738px;
}

.utp-block {
  margin-bottom: 50px;
}

.utp-block .utp-cards {
  display: flex;
  align-content: center;
  justify-content: center;
  gap: 24px;
}

.utp-block .utp-cards-item {
  max-width: 306px;
  flex: 1 0 24%;
  box-shadow: 0px 4px 10px 0px #6767671f;
  background: #ecf4ff;
  border-radius: 24px;
  display: flex;
  flex-direction: row;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  padding: 20px;
  font-size: 14px;
  font-weight: 600;
  color: var(--colgray);
  text-transform: uppercase;
  position: relative;
}

.utp-block .utp-cards-item::after {
  width: 99%;
  height: 66px;
  border-radius: 24px;
  background-color: var(--main-col);
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -8px;
  z-index: -1;
  content: "";
}

.utp-block .utp-cards-item .item-img {
  margin-bottom: 4px;
}

.utp-block .utp-cards-item .text {
  text-transform: none;
  font-size: 14px;
  font-weight: 400;
  color: var(--darkgray);
  line-height: 1.4;
  letter-spacing: 0.04em;
}

.utp-block .utp-cards-item .text span {
  font-weight: 700;
}

.utp-block .utp-cards-item:nth-child(1) .text {
  max-width: 180px;
}

.utp-block .utp-cards-item:nth-child(2) .text {
  max-width: 258px;
}

.utp-block .utp-cards-item:nth-child(3) .text {
  max-width: 267px;
}

.utp-block .utp-cards-item:nth-child(4) .text {
  max-width: 267px;
}

.calc-inner-info {
  max-width: 416px;
  width: 100%;
  background: var(--colgray);
  border-radius: 24px;
  padding: 28px;
}

.calc-inner-info .calc-info-box {
  background: white;
  border-radius: 24px;
  padding: 20px 32px;
  position: relative;
  overflow: hidden;
  display: flex;
  height: 120px;
  align-items: center;
}

.calc-inner-info .calc-info-box.one {
  margin-bottom: 12px;
  background: linear-gradient(0deg, rgba(102, 176, 49, 0.3), rgba(102, 176, 49, 0.3)), #ffffff;
}

.calc-inner-info .calc-info-box .calc-utp {
  position: absolute;
  max-width: 175px;
  max-height: 140px;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}

.calc-inner-info .calc-info-box .text {
  max-width: 218px;
  display: flex;
  font-size: 14px;
  flex-direction: column;
  line-height: 1.4;
}

.calc-inner-info .calc-info-box .text span {
  font-weight: 700;
}

.calc-inner-info .calc-info-box .text .calc-info-box-gift {
  display: flex;
  font-weight: 700;
  align-items: center;
  margin-top: 20px;
}

.calc-inner-info .calc-info-box .text .calc-info-box-gift img {
  width: 29px;
  height: 31px;
}

.calc-info-profile {
  margin-bottom: 14px;
  color: white;
  display: flex;
  gap: 20px;
  align-items: center;
}

.calc-info-profile .calc-profile-img {
  position: relative;
  width: 112px;
  height: 112px;
  padding-bottom: 16px;
  padding-right: 5px;
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
}

.calc-info-profile .calc-profile-img img {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 100px;
  height: 100px;
  z-index: 1;
}

.calc-info-profile .calc-profile-img .circle {
  z-index: 2;
  animation: none;
  width: 16px;
  height: 16px;
  background: #88eb41;
  border: 2px solid #ffffff;
}

.calc-info-profile .calc-profile-img .circle::after {
  display: none;
}

.calc-info-profile .text {
  color: var(--white);
  display: flex;
  flex-direction: column;
}

.calc-info-profile .text .name {
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 4px;
}

.calc-info-profile .text .prof {
  font-size: 16px;
  font-weight: 500;
  opacity: 0.6;
  margin-bottom: 12px;
}

.calc-info-profile .text .age {
  font-size: 16px;
  font-weight: 500;
}

.calc-info-par {
  background-color: var(--white);
  background: #ffffff;
  border-radius: 24px;
  padding: 20px 28px;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: 0.04em;
  margin-bottom: 50px;
  position: relative;
}

.calc-info-par::after {
  top: -12px;
  left: 36px;
  position: absolute;
  width: 28px;
  height: 28px;
  background: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' width='28' height='28' viewBox='0 0 28 28'><path d='M14 0L28 28H0L14 0Z' fill='white' stroke='white' stroke-width='2'/></svg>");
  content: "";
}

.calc-info-par span {
  font-weight: 700;
}

.calc-info-text {
  color: var(--white);
  font-size: 16px;
  font-weight: 500;
  text-align: center;
  margin-bottom: 24px;
}

.calc h2 {
  font-size: 32px;
  font-weight: 500;
  color: var(--darkgray);
  /* max-width: 507px; */
  text-align: center;
  margin: 0 auto;
  margin-bottom: 24px;
}

.calc p {
  text-align: center;
  margin: 0 auto;
  font-size: 20px;
  font-weight: 400;
  margin-bottom: 32px;
}

.calc p span {
  font-weight: 700;
}

.calc-inner {
  display: flex;
  gap: 24px;
  align-items: flex-start;
}

.calc-inner-boxs {
  max-width: 856px;
  width: 100%;
  flex: 1 0 50%;
}

.calc-inner-box {
  background: #ffffff;
  box-shadow: 0px 0px 10px rgba(103, 103, 103, 0.12);
  border-radius: 24px;
  padding: 42px;
  min-height: 625px;
  height: 100%;
  display: none;
}

.calc-inner-box.active {
  display: flex;
  flex-direction: column;
}

.calc-inner-box[data-slide="1"] .calc-box-selects .calc-box-select {
  flex: 1 0 45%;
  max-width: 263px;
}

.calc-inner-box[data-slide="2"] .calc-box-que {
  max-width: 638px;
}

.calc-inner-box[data-slide="2"] .calc-box-selects .calc-box-select {
  flex: 1 0 45%;
  max-width: 193px;
}

.calc-inner-box[data-slide="3"] .calc-box-que {
  max-width: 638px;
}

.calc-inner-box[data-slide="3"] .calc-box-selects .calc-box-select {
  flex: 1 0 45%;
  max-width: 441px;
}

.calc-inner-box[data-slide="4"] .calc-box-que {
  max-width: 460px;
}

.calc-inner-box[data-slide="4"] .calc-box-selects .calc-box-select {
  flex: 1 0 45%;
  max-width: 193px;
}

.calc-inner-box[data-slide="5"] .calc-box-que {
  max-width: 460px;
}

.calc-inner-box[data-slide="5"] {
  position: relative;
  overflow: hidden;
  flex-direction: column;
}

.calc-inner-box[data-slide="5"] .calc-form-back {
  bottom: 10px;
  right: 0;
  position: absolute;
}

.calc-inner-box[data-slide="5"] .calc-box-que {
  max-width: 460px;
  margin-bottom: 20px;
}

.calc-inner-box[data-slide="5"] .calc-obv {
  margin-bottom: 28px;
  font-size: 28px;
  font-weight: 400;
  max-width: 397px;
}

.calc-inner-box[data-slide="5"] p {
  margin: 0;
  margin-top: 12px;
  font-size: 14px;
  font-weight: 400;
  color: var(--darkgray);
  opacity: 0.6;
  text-align: left;
}

.calc-inner-box[data-slide="5"] .calc-box-form {
  display: flex;
  flex-direction: column;
}

.calc-inner-box[data-slide="5"] .form-input-wrapper {
  margin: 0;
  margin-bottom: 20px;
}

.calc-inner-box[data-slide="5"] .form-input-wrapper input {
  background: #0802010f;
  border-radius: 24px;
}

.calc-inner-box[data-slide="5"] .calc-box-btns {
  margin-top: 72px;
}

.calc-inner-box .calc-box-return {
  font-size: 14px;
  font-weight: 600;
  text-decoration: underline;
  text-transform: uppercase;
  cursor: pointer;
}

.calc-inner-box .calc-box-steps {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.calc-inner-box .calc-box-steps .calc-steps-text {
  font-size: 20px;
  font-weight: 700;
}

.calc-inner-box .calc-box-steps .calc-steps-text span {
  color: var(--main-col);
}

.calc-inner-box .calc-box-steps .calc-steps-all {
  background: #0802010f;
  width: 100%;
  border-radius: 470px;
  height: 26px;
  margin-bottom: 56px;
  position: relative;
  overflow: hidden;
}

.calc-inner-box .calc-box-steps .calc-steps-part {
  background-color: #66b031;
  position: relative;
  overflow: hidden;
  height: 26px;
  border-radius: 470px;
}

.calc-inner-box .calc-box-steps .calc-steps-part .calc-steps-animation {
  position: absolute;
  top: -50%;
  /* Компенсируем сдвиг */
  left: -50%;
  width: 300%;
  height: 300%;
  background: repeating-linear-gradient(135deg, transparent, transparent 10px, #ffffff47 10px, #ffffff47 20px);
  background-size: 28.28px 28.28px;
  /* sqrt(2) * 20 для точного шага под 45° */
  animation: movePattern 2s linear infinite;
}

.calc-inner-box .calc-box-que {
  font-size: 32px;
  font-weight: 500;
  color: var(--darkgray);
  margin-bottom: 32px;
}

.calc-inner-box .calc-box-selects {
  max-width: 583px;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.calc-inner-box .calc-box-select {
  text-transform: uppercase;
  padding: 26px;
  box-shadow: 0px 4px 10px 0px #6767671f;
  min-width: 193px;
  width: fit-content;
  border-radius: 24px;
  color: var(--darkgray);
  font-size: 14px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 20px;
  background: #0802010f;
  min-height: 88px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.calc-inner-box .calc-box-select.active {
  background: #ecf4ff;
  color: var(--colgray);
}

.calc-inner-box .calc-box-select.active svg path {
  fill: var(--lg-main-col);
  fill-opacity: 1;
}

.calc-inner-box .calc-box-select:hover {
  background: #ecf4ff;
  color: var(--colgray);
}

.calc-inner-box .calc-box-select:hover svg path {
  fill: var(--lg-main-col);
  fill-opacity: 1;
}

.calc-inner-box .calc-box-btns {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 50px;
}

.calc-inner-box .main-btn {
  border-radius: 24px;
  text-transform: uppercase;
  width: 100%;
  max-width: 274px;
  height: 72px;
}

.master .master-inner {
  position: relative;
  border-radius: 24px;
  margin-bottom: 42px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  overflow: hidden;
  padding: 62px;
  color: white;
}

.master .master-inner-lft {
  max-width: 695px;
  position: relative;
  z-index: 2;
}

.master .master-inner-lft h2 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 32px;
}

.master .master-inner-lft p {
  font-size: 14px;
  font-weight: 400;
  max-width: 429px;
  margin-bottom: 50px;
  line-height: 1.4;
}

.master .master-inner-lft p span {
  font-weight: 700;
}

.master .master-inner-lft .master-lft-second {
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 56px;
}

.master .master-inner-lft .master-lfr-utps {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-between;
}

.master .master-inner-lft .master-lfr-utp {
  display: flex;
  flex: 1 0 45%;
  align-items: center;
  gap: 20px;
  font-weight: 600;
  font-size: 14px;
  line-height: 1.7;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--white);
}

.master .master-inner-lft .master-lfr-utp:nth-child(7) .text {
  max-width: 235px;
}

.master .master-inner-lft .master-lfr-utp .text {
  max-width: 273px;
}

.master .master-inner-rght {
  position: relative;
  z-index: 2;
}

.master .master-inner-rght img {
  position: absolute;
  bottom: 90px;
  right: -100px;
  width: 876px;
  max-width: 876px;
  height: 660px;
  object-fit: contain;
}

.master .master-inner-rght .master-rght-name {
  display: flex;
  flex-direction: column;
  left: -100px;
  text-align: right;
  font-size: 20px;
  font-weight: 500;
  position: absolute;
  top: -236px;
}

.master .master-inner-rght .master-rght-name span {
  font-size: 16px;
  opacity: 0.6;
}

.master .master-back {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  right: 0;
  bottom: 0;
  z-index: 1;
}

.master-rght-form {
  color: white;
  position: relative;
  z-index: 3;
  background-color: var(--colgray);
  border-radius: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px;
  text-align: center;
}

.master-rght-form .master-form-title {
  font-size: 20px;
  font-weight: 500;
  max-width: 290px;
  margin-bottom: 20px;
}

.master-rght-form .master-form-text {
  font-size: 14px;
  line-height: 1.4;
  text-align: center;
  letter-spacing: 0.04em;
  max-width: 309px;
  margin-bottom: 31px;
}

.master-rght-form .master-form-text span {
  font-weight: 700;
}

.master-rght-form .master-form-btn {
  padding: 20px 30px;
}

.mainCatalog {
  background: linear-gradient(0deg, rgba(8, 2, 1, 0.04), rgba(8, 2, 1, 0.04));
  border-radius: 24px;
  padding: 42px 0;
  margin-bottom: 42px;
}

.mainCatalog .main-btn-red {
  overflow: hidden;
  justify-content: center;
  margin: 0 auto;
  display: block;
  position: relative;
  color: var(--white);
  padding: 20px 35px;
  border-radius: 24px;
  font-size: 14px;
  font-weight: 600;
  display: flex;
  align-items: center;
  line-height: 1.4;
  gap: 12px;
  max-width: 420px;
}

.partners_inner {
  margin-bottom: 40px;
}

.partners_inner .slide-img {
  background: var(--white);
  border-radius: 24px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 30px;
  position: relative;
  overflow: hidden;
}

.partners_inner .slide-img img {
  max-width: 223px;
  max-height: 60px;
  object-fit: contain;
}

.partners_inner .popular .swiper-slide .slider-case {
  border-radius: 24px;
  display: flex;
  flex-direction: column;
  min-height: 709px;
  background-color: var(--white);
  padding: 20px;
}

.partners_inner .popular .swiper-slide .slide-sale {
  /* margin-left: 20px; */
  justify-content: center;
  align-items: center;
  padding: 8px 18px;
  font-size: 14px;
  font-weight: 600;
  color: var(--white);
  max-width: fit-content;
  background: var(--pair-col);
  border-radius: 90px;
  text-transform: uppercase;
}

.partners_inner .popular .swiper-slide .slide-img {
  margin-top: 20px;
  margin-bottom: 32px;
}

.partners_inner .popular .swiper-slide .slide-price-sale {
  font-size: 32px;
  font-weight: 700;
  color: var(--pair-col);
  margin-bottom: 4px;
  margin-right: 20px;
  margin-left: 20px;
}

.partners_inner .popular .swiper-slide .slide-price {
  font-size: 32px;
  font-weight: 700;
  color: var(--darkgray);
  margin-bottom: 50px;
  margin-right: 20px;
  margin-left: 20px;
}

.partners_inner .popular .swiper-slide .slide-price-old {
  margin-left: 20px;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 24px;
  text-decoration-line: line-through;
  color: var(--darkgray);
  opacity: 0.3;
}

.partners_inner .popular .swiper-slide .slide-name {
  margin-left: 20px;
  margin-bottom: 20px;
  /* margin-right: 20px; */
  font-size: 20px;
  font-weight: 700;
}

.partners_inner .popular .swiper-slide .main-btn {
  margin: auto 0 8px 0;
  align-self: center;
  max-width: 266px;
  width: 100%;
  font-weight: 700;
}

.partners_inner .popular .swiper-slide .slide-order {
  max-width: 266px;
  width: 100%;
  margin: 0 auto;
  align-self: center;
  width: 100%;
  padding: 20px;
  font-size: 14px;
  font-weight: 700;
  color: var(--main-col);
  background-color: white;
  border: 2px solid var(--main-col);
  border-radius: 12px;
}

.partners_inner .popular .swiper-slide .slide-order:hover {
  background-color: var(--main-col);
  color: var(--white);
}

.partners_inner .popular .slide-img {
  background: transparent;
  border-radius: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0;
  position: relative;
  overflow: hidden;
}

.partners_inner .popular .slide-img img {
  max-width: 280px;
  max-height: 280px;
  height: 280px;
  object-fit: contain;
}

.arsenal_inner {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(420px, 1fr));
  gap: 24px;
}

.arsenal_inner .arsenal_inner-item {
  border-radius: 24px;
  position: relative;
  overflow: hidden;
  padding: 46px;
}

.arsenal_inner .arsenal_inner-item:nth-child(1) .arsenal-item-title {
  color: var(--darkgray);
}

.arsenal_inner .arsenal_inner-item:nth-child(1) .arsenal-item-text {
  color: var(--darkgray);
}

.arsenal_inner .arsenal_inner-item:nth-child(1) .arsenal-item-img {
  width: clamp(118px, calc(22.2vw + 30.31px), 369px);
}

.arsenal_inner .arsenal_inner-item:nth-child(2) {
  background-color: var(--pair-col);
}

.arsenal_inner .arsenal_inner-item:nth-child(2) .arsenal-item-img {
  position: absolute;
  right: -100px;
  bottom: 0;
  z-index: 2;
}

.arsenal_inner .arsenal_inner-item:nth-child(2) .arsenal-item-title {
  max-width: 220px;
}

.arsenal_inner .arsenal_inner-item:nth-child(2) .arsenal-item-text {
  max-width: 275px;
}

.arsenal_inner .arsenal_inner-item:nth-child(2) .arsenal-item-img {
  width: clamp(230px, calc(22.97vw + 139.28px), 470px);
  max-height: clamp(130px, calc(18.18vw + 58.18px), 320px);
  object-fit: contain;
  right: -140px;
}

.arsenal_inner .arsenal_inner-item:nth-child(3) {
  background-color: var(--main-col);
}

.arsenal_inner .arsenal_inner-item:nth-child(3) .arsenal-item-btn {
  background-color: var(--white);
  color: var(--main-col);
}

/*
        .arsenal_inner .arsenal_inner-item:nth-child(4) .glass{
          position: relative;
    z-index: 1;
    top: calc(-100% - 10px);
    left: -65px;
    width: 100%;
    border-radius: 20px;
    padding: 2rem;
    height: 100%;
        }
        .arsenal_inner .arsenal_inner-item:nth-child(4) .glass svg{
          position: absolute;
          top: 0;
          left: 0;
          width: 100%;
          height: 100%;
          z-index: 1;
        }
 
        .arsenal_inner .arsenal_inner-item:nth-child(4) .glass::before {
          content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    right: -20px;
    bottom: -20px;
    background: inherit;
    filter: blur(10px);
    z-index: -1;
    opacity: 0.5;
        } */
.arsenal_inner .arsenal_inner-item:nth-child(4)::after {
  z-index: 1;
  position: absolute;
  width: 493px;
  height: 225px;
  left: -23px;
  top: -12px;
  background: rgba(217, 217, 217, 0.1);
  filter: blur(12.05px);

  box-shadow: 0 0 20px rgba(217, 217, 217, 0.5);
  backdrop-filter: blur(20.6px);
  border-radius: 0px 0px 24px 0px;
  content: "";
}

.arsenal_inner .arsenal-item-title {
  font-size: clamp(20px, calc(1.15vw + 15.46px), 32px);
  font-weight: 700;
  color: var(--white);
  position: relative;
  z-index: 2;
  max-width: 424px;
  margin-bottom: 20px;
}

.arsenal_inner .arsenal-item-text {
  font-size: clamp(12px, calc(0.19vw + 11.24px), 14px);
  font-weight: 400;
  color: var(--white);
  position: relative;
  z-index: 2;
  max-width: 307px;
  margin-bottom: 32px;
}

.arsenal_inner .arsenal-item-btn {
  z-index: 5;
  position: relative;
  padding: 20px 60px;
}

.arsenal_inner .arsenal-item-back {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  right: 0;
  bottom: 0;
  z-index: 1;
}

.arsenal_inner .arsenal-item-img {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 2;
}

.arsenal_inner .arsenal-circle {
  position: absolute;
  width: 670px;
  height: 670px;
  border-radius: 100%;
  z-index: 1;
}

.arsenal_inner .arsenal-circle.one {
  left: -155px;
  bottom: -557px;
  background: linear-gradient(225.19deg, rgba(255, 255, 255, 0.47) 7.49%, rgba(255, 255, 255, 0) 35.76%);
}

.arsenal_inner .arsenal-circle.two {
  background: linear-gradient(52.19deg, rgba(255, 255, 255, 0.47) 7.49%, rgba(255, 255, 255, 0) 35.76%);
  top: -201px;
  right: -394px;
}

.steps .steps_inner {
  display: flex;
  flex-wrap: wrap;
  padding: 32px;
  overflow: hidden;
  border-radius: 24px;
  position: relative;
  gap: 20px;
}

.steps .steps-box {
  position: relative;
  z-index: 2;
  flex: 1 0 45%;
  overflow: hidden;
}

.steps .steps-box.text {
  grid-area: text;
}

.steps .steps-box.text h2 {
  font-size: clamp(20px, calc(0.77vw + 16.98px), 28px);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 20px;
}

.steps .steps-box.text p {
  font-size: clamp(12px, calc(0.57vw + 9.73px), 18px);
  font-weight: 400;
  line-height: 1.4;
  color: var(--white);
  max-width: 660px;
}

.steps .steps-box.step {
  background-color: var(--white);
  border-radius: 24px;
  padding: 24px;
  display: flex;
  flex-direction: column;
}

.steps .steps-box:nth-child(2) {
  grid-area: box-1;
  /* max-width: 504px; */
}

.steps .steps-box:nth-child(2) .steps-box-img img {
  max-width: 100px;
  max-height: 112px;
  top: 0px;
  right: 0;
}

.steps .steps-box:nth-child(3) {
  grid-area: box-2;
}

.steps .steps-box:nth-child(3) .steps-box-par {
  max-width: 298px;
}

.steps .steps-box:nth-child(3) .steps-box-title {
  max-width: 230px;
}

.steps .steps-box:nth-child(3) .steps-box-img img {
  max-width: 276px;
  height: 200px;
  bottom: -10px;
  right: 0;
}

.steps .steps-box:nth-child(4) {
  grid-area: box-3;
}

.steps .steps-box:nth-child(4) .steps-box-par {
  max-width: 395px;
}

.steps .steps-box:nth-child(4) .steps-box-title {
  max-width: 290px;
}

.steps .steps-box:nth-child(4) .steps-box-img img {
  width: 267px;
  height: 178px;
  top: 50%;
  transform: translateY(-50%);
  right: -80px;
}

.steps .steps-box-num {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 8px 18px;
  font-size: 14px;
  font-weight: 600;
  color: var(--white);
  max-width: fit-content;
  text-transform: uppercase;
  width: fit-content;
  height: 40px;
  background: linear-gradient(90deg, #66b031 0%, #3166b0 100%), linear-gradient(135deg, #88eb41 0%, #66b031 100%);
  border-radius: 90px;
  margin-bottom: 16px;
}

.steps .steps-box-title {
  margin-bottom: 12px;
  font-size: 20px;
  font-weight: 700;
  color: var(--darkgray);
}

.steps .steps-box-title a {
  color: var(--pair-col);
  text-decoration: underline;
}

.steps .steps-box-par {
  font-size: 14px;
  font-weight: 400;
  z-index: 5;
  line-height: 1.5;
  color: var(--darkgray);
}

.steps .steps-box-par span {
  font-weight: 700;
  text-decoration: underline;
}

.steps .steps-box-par span button {
  background-color: transparent;
  color: var(--darkgray);
  display: contents;
}

.steps .steps-box-img img {
  position: absolute;
  z-index: 2;
  object-fit: contain;
}

.steps .corner img {
  position: absolute;
}

.steps .corner.one img {
  bottom: 0;
  z-index: 1;
  right: 0;
}

.steps .corner.two img {
  right: 0;
  z-index: 1;
  bottom: 0;
}

.steps .steps-back {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
}

.dealers .dealers_inner {
  display: grid;
  grid-template-areas: "tit form" "bra bra";
  align-items: flex-end;
}

.dealers .dealers-brands_wrapper {
  width: 100%;
  grid-area: bra;
}

/* .dealers .dealers-brands_wrapper::-webkit-scrollbar {
    display: none; } */
.dealers .title-submain {
  max-width: 660px;
  grid-area: tit;
  text-align: left;
  font-size: clamp(24px, calc(2.11vw + 15.68px), 46px);
  font-weight: 700;
  margin-bottom: 0;
}

.dealers .title-submain span {
  font-weight: 700;
  font-size: clamp(24px, calc(2.11vw + 15.68px), 46px);
  line-height: 1.22;
  background: linear-gradient(90deg, #66b031 0%, #3166b0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}

.dealers .calc-inner-info {
  grid-area: form;
  background: var(--white);
  max-width: 580px;
  padding: 0;
}

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

.dealers .calc-info-par {
  margin-bottom: 0;
  background-color: var(--colgray);
  color: var(--white);
}

.dealers .calc-info-par::after {
  background: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' width='28' height='28' viewBox='0 0 28 28'><path d='M14 0L28 28H0L14 0Z' fill='%233166B0' stroke='%233166B0' stroke-width='2'/></svg>");
}

.dealers .dealers-brands {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 32px;
}

.dealers .dealers-brands-img {
  flex: 1 0 24%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(0deg, rgba(8, 2, 1, 0.04), rgba(8, 2, 1, 0.04));
  border-radius: 24px;
  max-width: 306px;
  min-width: 300px;
  padding: 30px;
}

.dealers .dealers-brands-img img {
  max-width: 222px;
  max-height: 60px;
  object-fit: contain;
}

.warranty_inner {
  display: flex;
  align-items: flex-end;
  padding: 58px;
  border-radius: 24px;
  overflow: hidden;
  color: var(--white);
  justify-content: space-between;
  overflow: hidden;
  position: relative;
}

.warranty_inner h2 {
  font-size: clamp(20px, calc(1.72vw + 17.2px), 42px);
  font-weight: 700;
  max-width: 432px;
  margin-bottom: 28px;
}

.warranty_inner .warranty_inner-box {
  position: relative;
  z-index: 2;
}

.warranty_inner .warranty_inner-box.num {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  max-width: 352px;
  position: relative;
}

.warranty_inner .warranty_inner-box.text {
  max-width: 720px;
}

.warranty_inner .warranty_inner-utps {
  display: flex;

  flex-wrap: wrap;
  gap: 24px 32px;
}

.warranty_inner .warranty_inner-utp {
  gap: 16px;
  display: flex;
  flex: 1 0 100%;
  align-items: center;
  max-width: 367px;
  font-size: 14px;
}

.warranty_inner .warranty_inner-utp:nth-child(3) {
  max-width: 303px;
}

.warranty_inner .warranty-box-img img {
  position: absolute;
  top: 0;
  right: -20px;
}

.warranty_inner .warranty-box-num {
  font-size: clamp(154px, calc(4.4vw + 136.61px), 200px);
  font-weight: 700;
  line-height: 0.8;
}

.warranty_inner .warranty-box-age {
  font-size: clamp(32px, calc(0.96vw + 28.22px), 42px);
  font-weight: 700;
}

.warranty_inner .warranty-box-text {
  margin-top: 15px;
  font-size: 20px;
  font-weight: 400;
  max-width: 352px;
}

.warranty_inner .warranty-back {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.warranty_inner::after {
  content: "";
  position: absolute;
  width: 1440px;
  height: 490px;
  left: -33px;
  top: 50%;
  transform: translateY(-50%);
  background: linear-gradient(91.64deg, rgba(217, 217, 217, 0.1) -0.56%, rgba(115, 115, 115, 0) 104.24%);
  backdrop-filter: blur(5.3px);
  /* Note: backdrop-filter has minimal browser support */
  border-radius: 0px 0px 24px 0px;
}

.faq_box {
  position: relative;
}

.faq_box .faq_inner {
  display: flex;
  gap: 24px;
}

.faq_box .title-submain {
  text-align: left;
  margin-bottom: 20px;
}

.faq_box .faq-second-box {
  margin-top: auto;
  display: flex;
}

.faq_box .faq-second-box .box-img {
  max-width: 400px;
  max-height: 400px;
}

.faq_box .faq-second-box .box-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  max-height: 400px;
}

.faq_box .faq-second-box .box-text {
  margin-top: 54px;
  font-size: 16px;
  font-style: italic;
  font-weight: 700;
  color: var(--colgray);
  max-width: 228px;
}

.faq_box .main-btn {
  max-width: 368px;
  width: 100%;
}

.faq_box .faq-item:nth-child(1) {
  padding-right: 25px;
}

.faq_box .faq-item:nth-child(2) {
  display: flex;
  flex-direction: column;
  padding-left: 20px;
}

.faq_box .faq-item .faq-second-title {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 7px;
}

.faq_box .faq-item .faq-second-title span {
  color: var(--main-col);
}

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

.faq_cards .faq_cards-item {
  padding: 32px;
  background: linear-gradient(0deg, rgba(8, 2, 1, 0.04), rgba(8, 2, 1, 0.04));
  border-radius: 12px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}

.faq_cards .faq_cards-item svg {
  pointer-events: none;
  transition: all 0.3s ease;
  transform: rotate(45deg);
}

.faq_cards .faq_cards-item svg path {
  fill: var(--main-col);
}

.faq_cards .faq_cards-item .item-text {
  font-size: 20px;
  line-height: 1.4;
  font-weight: 700;
  flex: 1 0 90%;
  max-width: 483px;
  pointer-events: none;
  list-style: none;
}

.faq_cards .faq_cards-item .item-footnote {
  max-width: 560px;
  font-size: 14px;
  pointer-events: none;
  display: none;
  line-height: 1.2;
}
.faq_cards .faq_cards-item .item-footnote a{
  pointer-events: all;
  color: var(--main-col);
  text-decoration: underline;
  cursor: pointer;
}

.faq_cards .faq_cards-item.active .item-footnote {
  margin-top: 24px;
  display: block;
}

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

.reviews_top {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 32px;
}

.reviews_top .reviews_top-logo {
  width: 267px;
  height: 293px;
  position: relative;
}

.reviews_top .reviews-logo-text {
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 50px 0px;
  position: absolute;
  font-size: 16px;
  font-weight: 500;
  gap: 4px;
}

.reviews_top .reviews-logo-text span {
  font-size: 32px;
  font-weight: 700;
  margin-top: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: #08020199;
}

.reviews_top .reviews_top-text {
  display: flex;
  flex-direction: column;
  gap: 28px;
  max-width: 801px;
  padding-top: 32px;
}

.reviews_top .reviews_top-text span {
  font-size: clamp(16px, calc(0.38vw + 14.49px), 20px);
}

.reviews_top .reviews_top-text h2 {
  font-weight: 700;
  font-size: clamp(24px, calc(2.11vw + 15.68px), 46px);
  line-height: 1.22;
}

.reviews_top .reviews_top-text h2 span {
  font-size: clamp(24px, calc(2.11vw + 15.68px), 46px);
  background: linear-gradient(90deg, #66b031 0%, #3166b0 100%), #080201;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}

.reviews_inner {
  padding: 36px;
  border-radius: 24px;
  background-color: #0802010a;
}

.reviews_inner .reviews_inner-top {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 40px;
}

.reviews_inner .reviews-top-title {
  flex: 1 0 100%;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
}

.reviews_inner .reviews-top-title img {
  width: 24px;
  height: 24px;
  object-fit: contain;
  min-width: 24px;
}

.reviews_inner .reviews-top-rat {
  display: flex;
  align-items: center;
  gap: 30px;
  font-size: 64px;
  font-weight: 700;
}

.reviews_inner .reviews-top-rat .reviews-rat-star {
  font-size: 14px;
  font-weight: 300;
  color: #3f3f3f;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.reviews_inner .reviews-top-utps {
  margin-left: auto;
  display: flex;
  padding: 10px 35px 12px 35px;
  background-color: var(--white);
  border-radius: 8px;
  gap: 30px;
  overflow: auto;
}

.reviews_inner .reviews-top-utps::-webkit-scrollbar {
  display: none;
}

.reviews_inner .reviews-top-utps .reviews-top-utp {
  display: flex;
  align-items: flex-end;
  gap: 8px;
  min-width: fit-content;
}

.reviews_inner .reviews-top-utps .text {
  font-size: 14px;
}

.reviews_inner .reviews-top-utps .text span {
  color: var(--main-col);
  font-weight: 700;
}

.reviews_inner .reviews_inner-body {
  display: flex;
  align-content: center;
  flex-wrap: wrap;
  gap: 28px;
  margin-bottom: 32px;
}

.reviews_inner .reviews-body-item {
  flex: 1 0 45%;
  min-width: 340px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.reviews_inner .reviews_inner-body .reviews-body-item:nth-child(n + 3) {
  display: none;
}

.reviews_inner .reviews_inner-body.show .reviews-body-item:nth-child(n + 3) {
  display: flex;
}

.reviews_inner .reviews-profile {
  display: flex;
  align-items: center;
  gap: 16px;
}

.reviews_inner .reviews-profile-img {
  max-width: 48px;
  width: 100%;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--pair-col);
  color: var(--white);
  font-weight: 16px;
  font-weight: 700;
  object-fit: contain;
  border-radius: 100%;
  overflow: hidden;
}

.reviews_inner .reviews-profile-img img {
  max-width: 48px;
  width: 100%;
  max-height: 48px;
  object-fit: contain;
  border-radius: 100%;
  overflow: hidden;
}

.reviews_inner .reviews-profile-name {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 16px;
  font-weight: 700;
  color: #3f3f3f;
}

.reviews_inner .reviews-text {
  color: #3f3f3f;
  font-size: 14px;
}

.reviews_inner .reviews-text .text {
  overflow: hidden;
  height: 32px;
}

.reviews_inner .reviews-text .text.open {
  overflow: hidden;
  height: auto;
}

.reviews_inner .open-more {
  color: var(--colgray);
  text-decoration: underline;
  cursor: pointer;
}

.reviews_inner .reviews_inner-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.reviews_inner .reviews_inner-bottom .reviews-bottom-like {
  padding: 6px;
  background-color: var(--white);
  display: flex;
  align-items: center;
  max-width: 404px;
  width: 100%;
  border-radius: 8px;
}

.reviews_inner .reviews_inner-bottom .reviews-bottom-like .text {
  font-size: 16px;
  font-weight: 700;
  color: #3b3b3b;
  margin: 0 auto;
}

.reviews_inner .reviews_inner-bottom .reviews-bottom-like .open-popup {
  height: 34px;
  font-size: 12px;
  font-weight: 700;
  padding: 7px 20px;
  background-color: #3a7ef7;
  color: var(--white);
  border-radius: 8px;
  transition: all 0.3s ease;
  border: 1px solid #3a7ef7;
}

.reviews_inner .reviews_inner-bottom .reviews-bottom-like .open-popup:hover {
  background-color: var(--white);
  color: #3a7ef7;
}

.reviews_inner .reviews_inner-bottom .reviews-bottom-more {
  background-color: var(--white);
  height: 46px;
  padding: 13px 17px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  color: #3a7ef7;
  border: 1px solid transparent;
  transition: all 0.3s ease;
}

.reviews_inner .reviews_inner-bottom .reviews-bottom-more:hover {
  border: 1px solid #3a7ef7;
}

.form-block .title-submain {
  font-size: 32px;
  font-weight: 500;
  max-width: 1063px;
  margin: 0 auto;
  margin-bottom: 66px;
}

.form-block .title-submain span {
  font-weight: 700;
}

.form-block .form-block_inner {
  display: flex;
  justify-content: space-between;
  gap: 32px;
  position: relative;
}

.form-block .form_inner-img img {
  width: clamp(470px, calc(38.85vw + 316.54px), 876px);
  height: auto;
  object-fit: contain;
  position: absolute;
  bottom: -85px;
  left: 181px;
}

.form-block .form_inner-text ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 44px;
}

.form-block .form_inner-text ul li {
  font-size: 20px;
  font-weight: 400;
  display: flex;
  gap: 12px;
  max-width: 361px;
}

.form-block .form_inner-text ul li span {
  font-weight: 700;
}

.form-block .form_inner-text ul li:nth-child(1) {
  max-width: 514px;
}

.form-block .form_inner-text ul li:nth-child(4) {
  max-width: 275px;
}

.form-block .form-text-title {
  font-weight: 700;
  font-size: 24px;
  line-height: 1.33;
  background: linear-gradient(90deg, #66b031 0%, #3166b0 100%), #080201;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
  max-width: 394px;
  margin-bottom: 52px;
}

.form-block .form_inner-inputs {
  max-width: 440px;
}

.form-block .master-rght-form {
  position: relative;
  height: 100%;
  overflow: hidden;
}

.form-block .master-rght-form .form-back {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: -1;
}

.form-block .master-form-text {
  max-width: 294px;
}

.form-block .master-form-btn {
  max-width: 333px;
  width: 100%;
  height: 88px;
  margin: 0 auto;
  border-radius: 24px;
  font-size: 14px;
  font-weight: 600;
  text-align: center;
  padding: 20px 10px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.form-block p {
  max-width: 310px;
  margin: 0 auto;
  width: 100%;
  font-size: 12px;
  font-weight: 700;
  text-align: center;
  color: var(--white);
  opacity: 0.5;
}

.form-input-wrapper {
  border-radius: 24px;
  background-color: var(--white);
  max-width: 333px;
  height: 88px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  margin-bottom: 20px;
  position: relative;
}

.form-input-wrapper svg {
  position: absolute;
  width: 28px;
  height: 28px;
  min-width: 28px;
  top: 50%;
  transform: translateY(-50%);
  left: 55px;
}

.form-input-wrapper input {
  width: 100%;
  height: 100%;
  padding: 36px 57px 36px 85px;
  font-size: 20px;
  color: var(--darkgray);
  box-shadow: none;
  border: none;
  outline: none;
}

.map .map_inner {
  box-shadow: 0px 0px 42px 0px #6767671f;
  background-color: var(--white);
  border-radius: 24px;
  display: flex;
  align-items: center;
  padding: 52px;
  margin-bottom: 42px;
  gap: 24px;
  justify-content: space-between;
  flex-wrap: wrap;
}

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

.map .title-submain {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 20px;
  color: var(--darkgray);
  opacity: 0.7;
  text-align: left;
  text-transform: uppercase;
}

.map .contact-phone {
  font-size: clamp(31px, calc(2.97vw + 19.28px), 62px);
  font-weight: 700;
  color: var(--pair-col);
  text-decoration: underline;
  margin-bottom: 50px;
}

.map .text {
  font-size: 16px;
  font-weight: 600;
  color: var(--darkgray);
  opacity: 0.7;
  text-align: left;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.map .city {
  margin-bottom: 16px;
  font-size: 20px;
  font-weight: 400;
  color: var(--darkgray);
}

.map .time {
  font-size: 20px;
  font-weight: 400;
  color: var(--darkgray);
}

.map .time span {
  font-weight: 700;
}

.map #map {
  width: 100%;
  max-width: 495px;
  height: 290px;
  border-radius: 12px;
  overflow: hidden;
}

.bigCatalog_inner {
  display: flex;
  gap: 24px;
  align-items: start;
}

.bigCatalog_inner .bigCatalog_inner-lft .filter-box {
  /* flex: 1 0 20%;
  max-width: 306px; */
  padding: 20px 12px;
  background-color: var(--white);
  border-radius: 24px;
  box-shadow: 0px 0px 42px 0px #6767671f;
}

.bigCatalog_inner .bigCatalog_inner-lft .bigCatalog-lft-title {
  font-size: 20px;
  padding-left: 24px;
  font-weight: 700;
  color: var(--main-col);
  margin-bottom: 24px;
}

.bigCatalog_inner .bigCatalog_inner-lft .bigCatalog-lft-list {
  display: flex;
  flex-direction: column;
  gap: 2px;
  list-style: none;
}

.bigCatalog_inner .bigCatalog_inner-lft .bigCatalog-lft-list .bigCatalog-list-img {
  width: 48px;
  height: 48px;
  border-radius: 100%;
  background-color: #ECF4FF;
  display: flex;
  justify-content: center;
  align-items: center;
}

.bigCatalog_inner .bigCatalog_inner-lft .bigCatalog-lft-list .bigCatalog-list-img img {
  width: 21px;
  height: 21px;
  object-fit: contain;
}

.bigCatalog_inner .bigCatalog_inner-lft .bigCatalog-lft-list li {
  border-radius: 120px;
  padding: 20px 18px;
  display: flex;
  align-items: center;
  gap: 16px;
  font-style: normal;
  font-weight: 600;
  font-size: 14px;
  line-height: 1.7;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--colgray);
  background-color: var(--white);
  cursor: pointer;
}

.bigCatalog_inner .bigCatalog_inner-lft .bigCatalog-lft-list li:nth-child(n+5) {
  display: none;
}

.bigCatalog_inner .bigCatalog_inner-lft .bigCatalog-lft-list.open li:nth-child(n+5) {
  display: flex;
}

.bigCatalog_inner .bigCatalog_inner-lft .bigCatalog-lft-list li.active {
  background-color: #ecf4ff;
}

.bigCatalog_inner .bigCatalog_inner-lft .bigCatalog-lft-list li.active .bigCatalog-list-img {
  background-color: white;
}

.bigCatalog_inner .bigCatalog_inner-lft .bigCatalog-lft-list li:hover {
  background-color: #ecf4ff;
}

.bigCatalog_inner .bigCatalog_inner-lft .bigCatalog-lft-list li:hover .bigCatalog-list-img {
  background-color: white;
}

.bigCatalog_inner .bigCatalog_inner-lft .open-lft-list {
  font-size: 14px;
  cursor: pointer;
  font-weight: 700;
  color: var(--pair-col);
  text-align: center;
  width: fit-content;
  /* display: block; */
  margin: 0 auto;
  margin-top: 12px;
}

.bigCatalog_inner .bigCatalog_inner-rght {
  flex: 1 0 70%;
}

.bigCatalog_inner .bigCatalog_inner-rght .bigCatalog-rght-filters {
  border-radius: 24px 24px 0 0;
  display: flex;
  align-items: center;
  gap: 12px;
  padding-bottom: 20px;
}

.bigCatalog_inner .bigCatalog_inner-rght .bigCatalog-rght-filters::-webkit-scrollbar {
  display: none;
}
@media (max-width:992px) {
  .bigCatalog_inner .bigCatalog_inner-rght .bigCatalog-rght-filters {
    overflow: auto;
  }
}

.bigCatalog_inner .bigCatalog_inner-rght .bigCatalog-rght-filter {
  min-width: fit-content;
  cursor: pointer;
  align-items: center;
  box-shadow: 0px 0px 42px 0px #6767671f;
  display: flex;
  gap: 12px;
  background: var(--white);
  padding: 10px 26px;
  border-radius: 24px;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 600;
}

.bigCatalog_inner .bigCatalog_inner-rght .bigCatalog-rght-filter:nth-child(4) {
  padding: 10px 20px;
}

.bigCatalog_inner .bigCatalog_inner-rght .bigCatalog-rght-filter svg {
  min-width: fit-content;
  width: fit-content;
}

.bigCatalog_inner .open-bigCatalog {
  height: 60px;
  width: 247px;
}

.bigCatalog-rght-body {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(306px, 1fr));
  gap: 24px;
  margin-bottom: 32px;
  animation: fadeInUp 0.7s ease forwards;
}

.bigCatalog-rght-body.hide {
  display: none;
}

.bigCatalog-rght-body .bigCatalog-body-item {
  display: flex;
  flex-direction: column;
  border-radius: 24px;
  background-color: var(--white);
  padding: 20px 0;
  box-shadow: 0px 0px 42px 0px #6767671f;
}

.bigCatalog-rght-body .bigCatalog-body-item:nth-child(n+10) {
  display: none;
}

.bigCatalog-rght-body.open .bigCatalog-body-item:nth-child(n+10) {
  display: flex;
}

.bigCatalog-rght-body p {
  margin: 0 auto;
  margin-top: 8px;
  text-align: center;
  font-size: 12px;
  font-weight: 500;
  color: var(--darkgray);
  opacity: 0.5;
}

.bigCatalog-rght-body ul {
  padding: 0 20px;
  margin-top: auto;
  list-style: none;
}

.bigCatalog-rght-body ul li {
  display: flex;
  flex-direction: column;
  gap: 5px;
  font-size: 14px;
  padding-bottom: 12px;
  padding-top: 12px;
  border-bottom: 1px solid #0802014d;
}

.bigCatalog-rght-body ul li:nth-child(3) {
  padding-bottom: 0;
  border: none;
}

.bigCatalog-rght-body ul li:nth-child(1) {
  padding-top: 0;
}

.bigCatalog-rght-body ul li span {
  font-weight: 700;
}

.bigCatalog-rght-body .bigCatalog-sale {
  margin-left: 20px;
  justify-content: center;
  align-items: center;
  padding: 8px 18px;
  font-size: 14px;
  font-weight: 600;
  color: var(--white);
  max-width: fit-content;
  background: var(--pair-col);
  border-radius: 90px;
  text-transform: uppercase;
}

.bigCatalog-rght-body .bigCatalog-img {
  margin: 0 auto;
  margin-top: 20px;
  margin-bottom: 32px;
  max-height: 306px;
  height: 306px;
  max-width: 306px;
  width: 100%;
}

.bigCatalog-rght-body .bigCatalog-img img {
  max-height: 306px;
  width: 100%;
  object-fit: contain;
}

.bigCatalog-rght-body .bigCatalog-price {
  font-size: 32px;
  font-weight: 700;
  color: var(--darkgray);
  margin-bottom: 48px;
  margin-left: 20px;
}

.bigCatalog-rght-body .bigCatalog-price-sale {
  font-size: 32px;
  font-weight: 700;
  color: var(--pair-col);
  margin-bottom: 4px;
  margin-left: 20px;
}

.bigCatalog-rght-body .bigCatalog-price-old {
  margin-left: 20px;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 24px;
  text-decoration-line: line-through;
  color: var(--darkgray);
  opacity: 0.3;
}

.bigCatalog-rght-body .bigCatalog-name {
  margin-left: 20px;
  margin-right: 20px;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 24px;
}

.bigCatalog-rght-body .main-btn {
  margin: 24px auto 16px;
  max-width: 222px;
  padding: 0;
  background: none;
  color: var(--pair-col);
  font-size: 14px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: underline;
  width: 100%;
}

.bigCatalog-rght-body .main-btn.open-bigCatalog {
  margin: 24px auto 16px;
  max-width: 250px;
  padding: 0;
  color: var(--white);
  background: linear-gradient(135deg, #88EB41 0%, #66B031 100%);
  font-size: 14px;
  font-weight: 700;
  display: flex;
  align-items: center;
  grid-column: span 3;
  gap: 8px;
  text-decoration: none;
  width: 100%;
}

.bigCatalog-rght-body .main-btn:hover {
  text-decoration: none;
}

.bigCatalog-rght-body .main-btn.open-bigCatalog:hover {
  background: linear-gradient(135deg, #66B031 0%, #88EB41 100%);
}

.bigCatalog-rght-body .bigCatalog-order {
  align-self: center;
  max-width: 266px;
  width: 100%;
  margin: 0 20px;
  width: 100%;
  padding: 20px;
  font-size: 14px;
  font-weight: 700;
  color: var(--main-col);
  background-color: white;
  border: 2px solid var(--main-col);
  border-radius: 12px;
}

.bigCatalog-rght-body .bigCatalog-order:hover {
  background-color: var(--main-col);
  color: var(--white);
}

.productBox_inner-top {
  display: grid;
  grid-template-areas: "img box-1" "img box-2";
  grid-template-columns: 463px 1fr;
  /* grid-template-rows: 416px 1fr; */
  gap: 20px;
  margin-bottom: 56px;
  justify-content: space-between;
  justify-items: end;
}

.productBox_inner-top .productBox-top-img {
  max-width: 463px;
  max-height: 787px;
  grid-area: img;
}

.productBox_inner-top .productBox-top-img img {
  width: clamp(233px, calc(22.01vw + 146.06px), 463px);
  height: 100%;
  max-height: 787px;
  object-fit: contain;
}

.productBox_inner-top .productBox-top-box {
  padding: 32px;
  width: 100%;
  max-width: 750px;
  box-shadow: 0px 0px 42px 0px #6767671F;
  background-color: var(--white);
  border-radius: 24px;
}

.productBox_inner-top .one {
  grid-area: box-1;
}

.productBox_inner-top .productBox-title {
  font-size: 24px;
  margin-bottom: 28px;
  font-weight: 700;
  color: var(--darkgray);
}

.productBox_inner-top .productBox-specs {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.productBox_inner-top .productBox-spec {
  flex: 1 0 45%;
  background: #0802010F;
  color: var(--darkgray);
  font-size: 14px;
  font-weight: 600;
  display: flex;
  align-items: center;
  padding: 16px;
  gap: 16px;
  border-radius: 24px;
}

.productBox_inner-top .productBox-spec span {
  font-weight: 700;
  font-size: 16px;
  text-transform: none;
}

.productBox_inner-top .productBox-spec-img {
  width: 56px;
  min-width: 56px;
  height: 56px;
  border-radius: 100%;
  background-color: var(--white);
  display: flex;
  justify-content: center;
  align-items: center;
}

.productBox_inner-top .productBox-spec-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
  text-transform: uppercase;
}

.productBox_inner-top .two {
  grid-area: box-2;
}

.productBox_inner-top .productBox-priceBox {
  display: flex;
  justify-content: space-between;
  padding-bottom: 20px;
  border-bottom: 1px solid #0802014D;
}

.productBox_inner-top p {
  margin-top: 20px;

  font-size: 14px;
  font-weight: 400;
  color: var(--darkgray);
}

.productBox_inner-top .productBox-price {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.productBox_inner-top .productBox-price .new {
  font-size: clamp(32px, calc(1.34vw + 26.71px), 46px);
  font-weight: 700;
  color: var(--pair-col);
}

.productBox_inner-top .productBox-price .base {
  font-size: clamp(32px, calc(1.34vw + 26.71px), 46px);
  font-weight: 700;
  color: var(--darkgray);
}

.productBox_inner-top .productBox-price .old {
  font-size: clamp(20px, calc(0.38vw + 18.49px), 24px);
  font-weight: 700;
  color: var(--darkgray);
  opacity: 0.3;
  text-decoration-line: line-through;
}

.productBox-price-sale {
  margin-top: 6px;
  width: 120px;
  height: 40px;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.2;
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--pair-col);
  color: var(--white);
  border-radius: 90px;
  text-transform: uppercase;
}

.productBox-btns {
  display: flex;
  gap: 32px;
  margin-top: 32px;
  flex-wrap: wrap;
}

.productBox-btns button {
  max-width: 325px;
  border-radius: 24px;
  width: 100%;
  height: 106px;
  text-transform: uppercase;
  padding: 32px 20px;
}

.productBox-btns button.main-btn-red {
  background-color: #3166B0;
}

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

.productBox_inner-bot .productBox-bot-tabs {
  display: flex;
  overflow: auto;
  gap: 12px;
}

.productBox_inner-bot .productBox-bot-tab {
  background-color: var(--white);
  box-shadow: 0px 0px 42px 0px #6767671F;
  border-radius: 24px;
  cursor: pointer;
  color: var(--darkgray);
  transition: all 0.3s ease;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  padding: 10px 24px;
  display: flex;
  align-items: center;
  text-align: center;
}

.productBox_inner-bot .productBox-bot-tab:hover {
  color: var(--white);
  background-color: #66B031;
}

.productBox_inner-bot .productBox-bot-tab.active {
  color: var(--white);
  background-color: #66B031;
}

.productBox_inner-bot .productBox-bot-info {
  display: block;
  animation: shine 1.5s forwards;
}

.productBox_inner-bot .productBox-bot-info.hide {
  display: none;
}

.productBox_inner-bot .productBox-bot-info img {
  display: none !important;
}

.productBox_inner-bot .productBox-bot-info h3 {
  font-size: 32px;
  font-weight: 700;
  margin-top: 32px;
  margin-bottom: 20px;
}

.productBox_inner-bot .productBox-bot-info h3:nth-child(1) {
  margin-top: 0;
}

.productBox_inner-bot .productBox-bot-info p {
  font-size: 20px;
  font-weight: 400;
}

.productBox_inner-bot .productBox-bot-info ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.productBox_inner-bot .productBox-bot-info ul li {
  font-size: 20px;
  font-weight: 400;
}

/* Основная обёртка */
.table-container {
  margin: 0 auto;
  padding: 20px 24px;
  background-color: var(--white);
  box-shadow: 0px 0px 42px 0px #6767671F;
  border-radius: 24px;
  overflow: auto;
}

/* Заголовки */
h2 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
}

h3 {
  font-size: 16px;
  font-weight: 700;
  margin-top: 20px;
  margin-bottom: 12px;
}

/* Стили для строк таблицы */
.table-row {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  margin-bottom: 12px;
}

.table-row:nth-child(1) .cell {
  background-color: var(--white);
  min-height: auto;
  padding: 0;
  font-size: 18px;
  font-weight: 600;
}

.table-row:nth-child(1) .cell.cell-right {
  padding-left: 42px;
}

.table-row:nth-child(1) .cell.cell-middle::after {
  display: none;
}

.table-row:nth-child(1) .cell.cell-middle::before {
  display: none;
}

.cell {
  background-color: #0802010F;
  min-height: 50px;
  font-size: 16px;
  line-height: 1.4;
}

.cell-left {
  flex: 1;
  overflow-wrap: break-word;
  padding: 20px;
  border-radius: 24px 0 0 24px;
  min-width: 450px;
}

.cell-left ul {
  list-style: none;
}

.cell-middle {
  max-width: 120px;
  min-width: 100px;
  width: 100%;
  text-align: center;
  border-radius: 0;
  align-content: center;
  padding: 20px 0;
  position: relative;
}

.cell-middle::after {
  content: '';
  position: absolute;
  display: block;
  height: 85%;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  background-color: #0802014D;
}

.cell-middle::before {
  content: '';
  position: absolute;
  display: block;
  height: 85%;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  background-color: #0802014D;
}

.cell-right {
  padding-left: 42px;
  padding-right: 20px;
  border-radius: 0px 24px 24px 0px;
  max-width: 257px;
  min-width: 240px;
  width: 100%;
  text-align: left;
  align-content: center;
}

.reviews_inner {
  overflow: hidden;
}

.brandsSwiper .brand-case {
  box-shadow: 0px 4px 12px 0px #0000000f;
  background-color: white;
  border-radius: 12px;
  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;
}

.partners-top-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 16px;
}

.swiper-btns {
  display: flex;
  gap: 6px;
  flex-direction: row-reverse;
}

.swiper-button-next,
.swiper-button-prev {
  margin: 0 !important;
  position: relative !important;
  right: inherit !important;
  top: inherit !important;
  left: inherit !important;
  width: 24px !important;
  height: 24px !important;
  border-radius: 12px !important;
  cursor: pointer !important;
  transition: all 0.2s ease;
}

.swiper-button-next:hover svg path,
.swiper-button-prev:hover svg path {
  fill: var(--pair-col);
}

.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;
  backdrop-filter: blur(2px);
  background-color: rgba(0, 0, 0, 0.6);
  transition: all 0.5s ease;
}

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

.modal {
  transform: translate(-50%, -1000%);
  overflow: hidden;
  background-color: white;
  border-radius: 12px;
  z-index: 0;
  position: fixed;
  top: 20%;
  left: 50%;
  transition: all 0.5s ease;
  padding: 36px 24px;
  max-width: 360px;
  width: 100%;
  box-shadow: 0px 4px 12px 0px #0000001f;
}

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

.modal .popup-rght {
  position: absolute;
  right: -100px;
  max-height: 372px;
  bottom: 0;
  z-index: 1;
}

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

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

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

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

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

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

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

.modal.calc {
  max-width: 1168px;
}

.modal.calc .modal-close {
  right: 32px;
  top: 32px;
  text-decoration: underline;
  font-size: 18px;
}

.modal.calc .calc-title {
  margin-bottom: 62px;
  justify-content: center;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 18px;
}

.modal.calc .calc-title span {
  font-size: 32px;
  color: var(--main-col);
  font-weight: 900;
}

.modal.calc .calc-box {
  display: flex;
  gap: 64px;
}

.modal.calc .calc-box-inputs {
  max-width: 710px;
  width: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
}

.modal.calc .calc-box-inputs::after {
  content: "";
  position: absolute;
  right: -32px;
  width: 1px;
  height: 100%;
  background-color: var(--darkgray);
  opacity: 0.3;
  top: 0;
}

.modal.calc .calc-box-inputs .calc-input {
  margin-bottom: 32px;
}

.modal.calc .calc-box-inputs .calc-par {
  margin-bottom: 12px;
}

.modal.calc .calc-box-inputs .calc-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.modal.calc .calc-box-inputs .calc-tabs .calc-tabs-item {
  box-shadow: 0px 4px 12px 0px #0000000f;
  border-radius: 100px;
  background-color: var(--lightgray);
  font-size: 20px;
  font-weight: 700;
  color: var(--darkgray);
  padding: 23px 34px;
  max-width: 132px;
  width: 100%;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal.calc .calc-box-inputs .calc-tabs .calc-tabs-item.active {
  color: var(--white);
  background-color: var(--main-col);
}

.modal.calc .calc-box-inputs .calc-tabs .calc-tabs-item:hover {
  color: var(--white);
  background-color: var(--main-col);
}

.modal.calc .calc-box-total {
  display: flex;
  flex-direction: column;
  gap: 32px;
  width: 100%;
  max-width: 320px;
  align-items: center;
}

.modal.calc .calc-box-total .total-item {
  display: flex;
  flex-direction: column;
  gap: 12px;
  justify-content: center;
  width: 100%;
  text-align: center;
}

.modal.calc .calc-box-total .percent span {
  font-size: 32px;
  font-weight: 700;
  color: var(--darkgray);
}

.modal.calc .calc-box-total .mounth span {
  font-size: 32px;
  font-weight: 700;
  color: var(--main-col);
}

.modal.calc .calc-box-total .main-btn {
  max-width: 100%;
  width: 100%;
  padding: 23px;
}

.modal.calc .calc-foot {
  opacity: 0.5;
  margin: 0 auto;
  margin-top: 42px;
  max-width: 800px;
  text-align: center;
}

.phone_block {
  z-index: 0;
  width: 100%;
  position: fixed;
  bottom: 54px;
}

.overlay_phone {
  transform: translateX(54px);
  position: relative;
  width: 69px;
  height: 69px;
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  right: -100%;
  background-color: var(--main-col);
}

.overlay_phone svg {
  width: 30px;
  height: 30px;
  min-width: 30px;
}

.overlay_phone::after,
.overlay_phone::before {
  content: "";
  position: absolute;
  border: 2px solid var(--main-col);
  left: -20px;
  opacity: 0;
  right: -20px;
  top: -20px;
  bottom: -20px;
  border-radius: 50%;
  animation: pulse 2.5s linear infinite;
}

.overlay_phone::after {
  animation-delay: 1.25s;
}

.m-none {
  display: block;
}

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

.pc-none {
  display: none;
}

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

.footer {
  padding: 34px 0;
  max-width: 1440px;
  margin: 0 auto;
  border-radius: 24px 24px 0px 0px;
}

.footer_inner {
  display: flex;
  align-items: center;
  gap: 26px;
  justify-content: space-between;
  flex-wrap: wrap;
}

.footer_inner .logo-block {
  display: flex;
  align-items: center;
  gap: 16px;
  max-width: 440px;
}

.footer_inner .logo-img {
  width: clamp(45px, calc(3.92vw + 29.5px), 86px);
  height: clamp(45px, calc(3.92vw + 29.5px), 86px);
  display: flex;
  align-items: center;
  object-fit: contain;
}

.footer_inner .footer-text {
  font-size: 14px;
  font-weight: 400;
  max-width: 337px;
  margin-left: auto;
}

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

.footer_inner ul li a {
  color: var(--darkgray);
  text-decoration: underline;
  text-transform: uppercase;
  font-size: clamp(12px, calc(0.38vw + 10.49px), 16px);
  font-weight: 600;
  transition: all 0.3s ease;
}

.footer_inner ul li a:hover {
  color: var(--pair-col);
  text-decoration: none;
}

@media (max-width: 1440px) {
  .footer_inner ul {
    gap: 16px;
    flex-wrap: wrap;
  }
}

@media (max-width: 1200px) {
  .footer_inner .logo-block-text {
    font-size: 10px;
    max-width: 250px;
  }

  .footer_inner .logo-img {
    max-width: 45px;
    height: 45px;
  }
}

@media (max-width: 922px) {
  .footer_inner ul {
    flex-direction: column;
    text-align: left;
    align-items: start;
  }
}

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

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

  .calc-inner-box[data-slide="5"] .calc-form-back {
    display: none;
  }

  .steps .container {
    padding: 0;
  }

  .steps .steps_inner {
    padding: 24px 20px;
  }

  .steps .steps-box:nth-child(3) .steps-box-img img {
    max-width: 210px;
    right: -125px;
    bottom: inherit;
    top: -40px;
    /* display: none;   */
  }

  .steps .steps-box:nth-child(4) .steps-box-img img {
    top: -40px;
    right: -145px;
    width: 258px;
    transform: none;
  }

  .steps .steps-back {
    object-fit: cover;
  }
}

@media (max-width: 1300px) {
  .productBox_inner-top {
    grid-template-areas: "img box-1" "box-2 box-2";
    grid-template-rows: auto;
  }

  .productBox_inner-top .productBox-top-box {
    max-width: 100%;
    padding: 24px 20px;
  }

  .productBox_inner-top .productBox-spec-text {
    font-size: 12px;
  }

  .productBox_inner-top .productBox-spec-text span {
    font-size: 14px;
  }

  .productBox_inner-top .productBox-top-img img {
    max-height: 397px;
  }

  .productBox_inner-top .productBox-spec {
    max-width: 49%;
  }

  .productBox-btns {
    gap: 12px;
  }

  .productBox-btns button {
    width: 315px;
    height: 82px;
  }

  .master .container {
    padding: 0;
  }

  .master .master-inner {
    position: relative;
    margin-bottom: 42px;
    display: flex;
    flex-wrap: wrap;
    gap: 37px;
    overflow: hidden;
    padding: 24px 20px;
  }

  .master .master-inner-lft {
    max-width: 695px;
    position: relative;
    z-index: 2;
  }

  .master .master-inner-lft h2 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
  }

  .master .master-inner-lft p {
    font-size: 12px;
    font-weight: 400;
    margin-bottom: 32px;
    line-height: 1.4;
  }

  .master .master-inner-lft p span {
    font-weight: 700;
  }

  .master .master-inner-lft .master-lft-second {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 24px;
  }

  .master .master-inner-lft .master-lfr-utps {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: space-between;
  }

  .master .master-inner-lft .master-lfr-utp {
    display: flex;
    flex: 1 0 45%;
    align-items: center;
    gap: 12px;
    font-size: 12px;
  }

  .master .master-inner-lft .master-lfr-utp:nth-child(7) .text {
    max-width: 100%;
  }

  .master .master-inner-lft .master-lfr-utp .text {
    max-width: 100%;
  }

  .master .master-inner-rght {
    position: relative;
    z-index: 2;
  }

  .master .master-inner-rght img {
    display: none;
  }

  .master .master-inner-rght .master-rght-name {
    display: none;
  }

  .master .master-back {
    object-fit: cover;
  }

  .master-rght-form .master-form-title {
    font-size: 18px;
  }

  .master-rght-form .master-form-text {
    font-size: 12px;
    margin-bottom: 20px;
  }

  .master-rght-form .master-form-text span {
    font-weight: 700;
  }

  .master-rght-form .master-form-btn {
    padding: 20px 23px;
    font-size: 12px;
  }
}

@media (max-width: 1200px) {
  .bannner {
    padding: 20px;
  }

  .bannner::after {
    display: none;
  }

  .bannner .bannner-rght-back {
    display: none;
  }

  .bannner .bannner-rght .bannner-rght-img {
    display: none;
  }

  .bannner .bannner-btns {
    flex-wrap: wrap;
  }

  .reviews .container {
    padding: 0;
  }

  .reviews_top .reviews_top-logo {
    display: none;
  }

  .reviews_inner .reviews-top-utps {
    padding: 10px 16px 12px 16px;
  }

  .faq_cards .faq_cards-item {
    padding: 20px;
  }

  .form-block .form-text-title {
    font-size: 20px;
    margin-bottom: 24px;
  }

  .form-block .form_inner-text ul {
    gap: 20px;
  }

  .form-block .form_inner-text ul li {
    font-size: 14px;
  }

  .form-block .form_inner-text ul li:nth-child(1) {
    max-width: 410px;
  }
}

@media (max-width: 1050px) {
  .calc-inner-box[data-slide="5"] .form-input-wrapper {
    margin: 0;
    max-width: 100%;
  }

  .productBox_inner-top {
    grid-template-areas: "img " "box-1 " "box-2 ";
    justify-items: center;
    grid-template-columns: 1fr;
  }

  .productBox_inner-top .productBox-top-box {
    padding: 24px 20px;
  }

  .productBox_inner-top .productBox-spec-text {
    font-size: 12px;
  }

  .productBox_inner-top .productBox-spec-text span {
    font-size: 14px;
  }

  .productBox_inner-top .productBox-top-img img {
    max-height: 397px;
  }

  .productBox_inner-top .productBox-spec {
    max-width: 49%;
  }

  .map .time {
    font-size: 16px;
  }

  .map .time span {
    font-size: 16px;
  }

  .map .city {
    font-size: 16px;
  }

  .bigCatalog-rght-body .bigCatalog-img {
    max-width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .bigCatalog_inner {
    flex-direction: column;
  }

  .bigCatalog_inner .bigCatalog_inner-lft {
    width: 100%;
    flex: 1 0 100%;
    max-width: 100%;
    padding: 0;
    box-shadow: none;
  }

  .bigCatalog_inner .bigCatalog_inner-lft ul li:nth-child(n+6) {
    display: none;
  }

  .bigCatalog_inner .bigCatalog_inner-rght {
    flex: 1 0 100%;
    width: 100%;
  }

  .bigCatalog_inner .bigCatalog_inner-rght .bigCatalog-rght-filter {
    order: 2;
  }

  .bigCatalog_inner .bigCatalog_inner-rght .bigCatalog-rght-filter:nth-child(4) {
    order: 1;
  }

  .map .map_inner {
    padding: 24px 20px;
  }

  .map .title-submain {
    margin-bottom: 12px;
  }

  .map .contact-phone {
    margin-bottom: 24px;
  }

  .form-block .title-submain {
    font-size: 22px;
    text-align: center;
    margin-bottom: 32px;
  }

  .form-input-wrapper {
    height: 82px;
    margin-bottom: 12px;
  }

  .master-rght-form .master-form-btn {
    height: 82px;
    font-size: 12px;
  }

  .form-block .form-block_inner {
    flex-direction: column;
    gap: 230px;
    overflow: hidden;
  }

  .form-block .form_inner-img img {
    bottom: 365px;
    min-width: 470px;
    left: -100px;
  }

  .faq_box .title-submain {
    text-align: center;
    max-width: 355px;
    margin: 0 auto;
    margin-bottom: 24px;
  }

  .faq_box .faq-item:nth-child(1) {
    padding: 0;
  }

  .faq_box .faq_inner {
    flex-direction: column;
    gap: 12px;
  }

  .faq_box .faq_inner .faq_cards {
    flex: 1 0 100%;
  }

  .faq_box .faq_inner .faq_cards .faq_cards-item svg {
    width: 24px;
    height: 24px;
    min-width: 24px;
  }

  .faq_box .faq_inner .faq_cards .faq_cards-item .item-text {
    font-size: 12px;
    padding-right: 20px;
  }

  .faq_box .faq_inner .faq_cards .faq_cards-item.active .item-footnote {
    margin-top: 20px;
    font-size: 12px;
  }

  .reviews .reviews_inner {
    padding: 24px 20px;
  }

  .reviews .reviews_inner .reviews_inner-top {
    flex-direction: column;
    justify-content: start;
    align-items: start;
  }

  .reviews .reviews_inner .reviews-top-utps {
    margin-left: 0;
    flex-direction: column;
    gap: 20px;
    max-width: 100%;
    width: 100%;
    margin-top: 24px;
  }

  .reviews .reviews_inner .reviews_inner-bottom {
    justify-content: center;
  }

  .reviews .reviews_inner .reviews_inner-bottom .reviews-bottom-like {
    display: none;
  }

  .reviews .reviews_top .reviews_top-text {
    padding: 0 20px;
    gap: 20px;
  }

  .warranty .container {
    padding: 0;
  }

  .warranty h2 {
    margin-bottom: 24px;
  }

  .warranty .warranty_inner {
    padding: 24px 20px 54px 20px;
    flex-wrap: wrap;
    gap: 60px;
  }

  .warranty .warranty_inner .warranty_inner-box.num {
    justify-content: center;
  }

  .warranty .warranty_inner .warranty-box-img img {
    width: 100px;
    height: 100px;
    right: 20px;
  }

  .warranty .warranty_inner .warranty-box-text {
    font-size: 16px;
    text-align: center;
    max-width: 292px;
    margin: 0 auto;
    margin-top: 12px;
  }

  .warranty .warranty_inner::after {
    top: 0;
    transform: translateY(0);
  }

  .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;
  }

  .utp-block .utp-cards {
    flex-wrap: wrap;
  }

  .utp-block .utp-cards .utp-cards-item {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
    padding: 20px;
    flex: 1 0 45%;
    max-width: 355px;
    min-width: 306px;
  }

  .utp-block .utp-cards .utp-cards-item .item-img {
    margin-bottom: 0;
  }

  .utp-block .utp-cards .utp-cards-item svg {
    width: 40px;
    height: 40px;
    min-width: 40px;
  }

  .utp-block .utp-cards .utp-cards-item .text {
    width: 100%;
    max-width: 100%;
    flex: 1 0 100%;
  }

  .calc .calc-inner-boxs {
    max-width: 100%;
  }

  .calc .calc-inner-info {
    display: none;
  }

  .dealers .title-submain {
    margin-bottom: 28px;
  }

  .dealers .dealers_inner {
    grid-template-areas: "tit" "form" "bra";
  }

  .dealers .dealers-brands-img {
    display: flex;
    justify-content: center;
    max-width: 100%;
    min-width: 230px;
  }

  .dealers .dealers-brands-img img {
    max-width: 178px;
  }

  .dealers .dealers-brands_wrapper {
    overflow-y: auto;
    padding-bottom: 10px;
  }

  .dealers .dealers-brands_wrapper::-webkit-scrollbar {
    width: 100%;
    height: 6px;
    background-color: #0802010f;
  }

  .dealers .dealers-brands_wrapper::-webkit-scrollbar-thumb {
    border-radius: 6px;
    background: var(--main-col);
  }

  .dealers .dealers-brands {
    margin-top: 20px;
    gap: 20px;
    display: grid;
    grid-template-columns: repeat(4, 225px);
    grid-auto-rows: 100px;
    min-width: max-content;
  }

  .dealers .calc-info-par {
    font-size: 12px;
  }

  .dealers .calc-info-profile {
    gap: 8px;
  }

  .dealers .calc-info-profile .calc-profile-img {
    width: 80px;
    height: 80px;
  }

  .dealers .calc-info-profile .calc-profile-img img {
    width: 69px;
    height: 69px;
  }

  .dealers .calc-info-profile .calc-profile-img .circle {
    width: 11px;
    height: 11px;
  }

  .dealers .calc-info-profile .text .name {
    font-size: 16px;
  }

  .dealers .calc-info-profile .text .prof {
    font-size: 12px;
  }

  .dealers .calc-info-profile .text .age {
    font-size: 12px;
  }

  /* .swiper-button-prev, */
  /* .swiper-button-next { */
  /* display: none !important; } */
}

.partners_btn-box {
  width: 100%;
}

@media (max-width: 922px) {
  .bigCatalog_inner .bigCatalog_inner-lft .bigCatalog-lft-title {
    padding-left: 0px;
  }

  .warranty_inner .warranty_inner-utp br {
    display: none;
  }

  .bigCatalog-rght-body .bigCatalog-order {
    max-width: 90%;
  }

  .productBox_inner-bot .productBox-bot-info h3 {
    font-size: 20px;
  }

  .productBox_inner-bot .productBox-bot-info h3:nth-child(1) {
    margin-top: 0;
  }

  .productBox_inner-bot .productBox-bot-info p {
    font-size: 14px;
  }

  .productBox_inner-bot .productBox-bot-info ul li {
    font-size: 14px;
  }

  .productBox_inner-top .productBox-spec {
    flex: 1 0 100%;
    max-width: 100%;
  }

  .productBox_inner-top p {
    max-width: 310px;
    margin: 20px 0;
  }

  .productBox_inner-top {
    margin-bottom: 40px;
  }

  .productBox-price-sale {
    font-size: 14px;
    width: 120px;
    height: 40px;
  }

  .productBox_inner-top .productBox-title {
    font-size: 20px;
    margin-bottom: 20px;
  }

  .productBox_inner-top .productBox-price .new {
    letter-spacing: -1px;
    font-size: 32px;
  }

  .bigCatalog-rght-body {
    flex-direction: column;
    display: flex;
    gap: 20px;
  }

  .steps .corner img {
    position: absolute;
  }

  .steps .corner.one img {
    bottom: 0px;
    z-index: 1;
    right: -180px;
  }

  .steps .corner.two img {
    right: -185px;
    z-index: 1;
    bottom: 70px;
  }

  .steps .steps_inner {
    flex-direction: column;
  }

  .steps .steps-box-num {
    font-size: 12px;
  }

  .steps .steps-box-title {
    font-size: 16px;
  }

  .steps .steps-box:nth-child(3) .steps-box-title {
    max-width: 100%;
  }

  .steps .steps-box:nth-child(4) .steps-box-title {
    max-width: 260px;
  }

  .steps .steps-box-par {
    font-size: 12px;
  }

  .steps .steps-box:nth-child(4) .steps-box-par {
    max-width: 260px;
  }

  .steps .steps-box.text p {
    margin-bottom: 4px;
  }

  .steps .steps-box.step {
    padding: 20px;
  }

  .steps .steps-box:nth-child(2) {
    max-width: 100%;
  }

  .mainCatalog .text-20.mb-40.text-center {

    padding-right: 2rem;
    margin-bottom: 32px;
  }

  .mainCatalog .title-submain {
    text-align: center;
    max-width: 308px;
    margin: 0 auto;
    padding-right: 2rem;
    margin-bottom: 16px;
  }

  .mainCatalog .container {
    padding: 0 0 0 2rem;
  }

  .mainCatalog .main-btn-red {
    font-size: 12px;
    max-width: 355px;
    /* width: 100%; */
    padding: 20px;
    justify-content: center;
  }

  .partners_btn-box {
    padding-right: 20px;
  }

  .partners_inner .slide-img {
    padding: 20px;
  }

  .partners_inner .slide-img img {
    max-width: 180px;
    max-height: 60px;
    object-fit: contain;
  }

  .partners_inner .popular .swiper-slide .slider-case {
    display: flex;
    flex-direction: column;
  }

  .partners_inner .swiper-slide.swiper-slide-active {
    min-width: 225px !important;
  }

  .partners_inner .swiper-slide.swiper-slide-next {
    min-width: 225px !important;
  }

  .partners_inner .popular .swiper-slide {
    max-height: 600px !important;
  }

  .partners_inner .popular .swiper-slide.swiper-slide-active {
    min-width: 306px !important;
  }

  .partners_inner .popular .swiper-slide.swiper-slide-next {
    min-width: 306px !important;
  }

  .partners_inner .popular .swiper-slide .slider-case .main-btn {
    align-self: center;
  }

  .partners_inner .popular .swiper-slide .slider-case .slide-order {
    align-self: center;
  }

  .master .master-inner-rght {
    margin: 0 auto;
  }

  .partners_inner .popular .swiper-slide .slider-case {
    min-height: 600px;
  }

  .partners_inner .popular .swiper-slide .slide-img {
    margin: 20px 0;
  }

  .partners_inner .popular .slide-img img {
    max-height: 170px;
    height: 170px;
  }

  .bannner .container {
    padding: 0;
  }

  .bannner .bannner-item-que {
    padding: 8px 16px;
    margin-bottom: 20px;
    font-size: 10px;
    width: fit-content;
  }

  .bannner .title-main {
    margin-bottom: 8px;
  }

  .bannner .bannner-text {
    margin-bottom: 32px;
  }

  .bannner .bannner-btn {
    font-size: 12px;
    max-width: 100%;
    width: 100%;
    order: 2;
  }

  .bannner::after {
    display: none;
  }

  .bannner .bannner-rght-back {
    display: none;
  }

  .bannner .bannner-rght .bannner-rght-img {
    display: none;
  }

  .bannner .bannner-btns {
    flex-wrap: wrap;
    align-items: start;
    flex-direction: column;
    gap: 20px;
  }

  .bannner .bannner-btns .main-btn {
    max-width: 100%;
    width: 100%;
    order: 3;
  }

  .bannner .bannner-btns ol {
    order: 1;
  }

  .bannner .bannner-btns .bannner-btns-text {
    display: none;
  }

  .bannner .bannner-btns .bannner-btns-text .text {
    font-size: 12px;
    max-width: 213px;
  }

  .bannner .bannner-btns .bannner-btns-text img {
    width: 55px;
    height: 59px;
    transform: translateY(5px);
  }

  .main-btn-red {
    gap: 12px;
  }

  .swiper-pagination-bullet {
    width: 6px !important;
    height: 6px !important;
  }

  .master .master-inner-lft .master-lfr-utps {
    flex-direction: column;
  }

  .calc .container {
    padding: 0;
  }

  .calc h2 {
    padding: 0 20px;
    font-size: 22px;
    margin-bottom: 16px;
  }

  .calc p {
    padding: 0 20px;
    font-size: 16px;
    margin-bottom: 20px;
  }

  .calc .calc-inner-box {
    padding: 20px;
    margin: 0 2rem;
    min-height: fit-content;
  }

  .calc .calc-inner-box .calc-box-select {
    max-width: 100% !important;
    min-height: 66px;
    font-size: 12px;
    padding: 20px;
  }

  .calc .calc-inner-box .calc-box-select svg {
    width: 24px;
    height: 24px;
    min-width: 24px;
  }

  .calc .calc-inner-box .calc-box-btns {
    margin-top: 24px;
    justify-content: center;
  }

  .calc .calc-inner-box .main-btn {
    max-width: 100%;
    width: 100%;
    font-size: 12px;
  }

  .calc .calc-inner-box .calc-box-steps {
    gap: 8px;
  }

  .calc .calc-inner-box .calc-box-steps .calc-steps-all {
    height: 20px;
    margin-bottom: 24px;
  }

  .calc .calc-inner-box .calc-box-steps .calc-steps-part {
    height: 20px;
  }

  .calc .calc-inner-box .calc-box-steps .calc-steps-text {
    font-size: 16px;
  }

  .calc .calc-inner-box .calc-box-que {
    font-size: 20px;
    margin-bottom: 20px;
  }

  .calc .calc-inner-box[data-slide="5"] p {
    text-align: center;
  }

  .calc .calc-inner-box[data-slide="5"] .calc-obv {
    font-size: 18px;
  }

  .arsenal .title-submain {
    max-width: 300px;
    text-align: center;
    margin: 0 auto;
    margin-bottom: 24px;
  }

  .arsenal .arsenal_inner {
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 16px;
  }

  .arsenal .arsenal_inner .arsenal_inner-item {
    padding: 24px;
  }

  .arsenal .arsenal_inner .arsenal_inner-item .arsenal-item-title {
    margin-bottom: 16px;
  }

  .arsenal .arsenal_inner .arsenal_inner-item .arsenal-item-text {
    margin-bottom: 24px;
  }

  .arsenal .arsenal_inner .arsenal_inner-item .arsenal-item-btn {
    max-width: 100%;
    width: 100%;
  }

  .arsenal .arsenal_inner .arsenal_inner-item:nth-child(1) .arsenal-item-text {
    position: relative;
    z-index: 5;
  }

  .arsenal .arsenal_inner .arsenal_inner-item:nth-child(1) .arsenal-item-img {
    width: 118px;
    bottom: 75px;
    right: 24px;
  }

  .arsenal .arsenal_inner .arsenal_inner-item:nth-child(2) .arsenal-item-title {
    max-width: 201px;
  }

  .arsenal .arsenal_inner .arsenal_inner-item:nth-child(2) .arsenal-item-text {
    max-width: 195px;
  }

  .arsenal .arsenal_inner .arsenal_inner-item:nth-child(2) .arsenal-item-img {
    height: 154px;
    right: -140px;
  }

  .arsenal .arsenal_inner .arsenal-circle {
    width: 390px;
    height: 390px;
    z-index: 1;
  }

  .arsenal .arsenal_inner .arsenal-circle.one {
    left: -94px;
    bottom: -305px;
  }

  .arsenal .arsenal_inner .arsenal-circle.two {
    top: -154px;
    right: -233px;
  }

  .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;
  }

  .block {
    margin-bottom: 64px;
  }

  .bannner {
    padding: 20px;
    margin-bottom: 20px;
  }

  .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;
  }
}

@media (max-width: 650px) {
  .form-block .form-block_inner {
    gap: 160px;
  }

  .arsenal .arsenal_inner .arsenal_inner-item:nth-child(2) .arsenal-item-img {
    right: -75px;
  }

  .arsenal_inner .arsenal_inner-item:nth-child(4) {
    min-height: 177px;
  }

  .arsenal_inner .arsenal_inner-item:nth-child(4) .arsenal-item-text {
    margin-bottom: 0;
  }

  .arsenal_inner .arsenal_inner-item:nth-child(4)::after {
    top: -20px;
    left: -20px;
    width: 355px;
    height: 180px;
  }
}

/* Основные стили модального окна */
.modal.thanks {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  border-radius: 0;
  max-width: 100%;
  left: 0;
  width: 100%;
  height: 100%;
  backdrop-filter: blur(2px);
  background-color: rgba(0, 0, 0, 0.6);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

/* Активное состояние — показываем окно */
.modal.thanks.active {
  display: flex;
  transform: translate(0%, 0);
}

/* Блок с контентом */
.modal.thanks .modal-content {
  background-color: #fff;
  padding: 30px;
  border-radius: 8px;
  max-width: 400px;
  width: 90%;
  text-align: center;
  position: relative;
  animation: fadeIn 0.3s ease-in-out;
}

/* Кнопка закрытия */
.modal.thanks .close-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 24px;
  background: none;
  border: none;
  cursor: pointer;
}

/* Анимация появления */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* new-custom-banner */

.new-custom-list {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  margin-bottom: 52px;
}

.new-custom-list .new-custom-item {
  display: flex;
  flex-direction: column;
}

.new-custom-list .new-custom-item-title {
  color: #3166B0;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.new-custom-list .new-custom-item-img {
  width: 52px;
  height: 52px;
  min-width: 52px;
  border-radius: 100%;
  background: linear-gradient(90deg, #66B031 0%, #3166B0 100%);
  display: flex;
  justify-content: center;
  align-items: center;
}

.new-custom-list .new-custom-item-text {
  max-width: 335px;
  font-size: 14px;
  line-height: 1.4;
}

.new-custom-list .new-custom-item:nth-child(1) .new-custom-item-text {
  max-width: 230px;
}

.new-custom-list .new-custom-item:nth-child(3) .new-custom-item-text {
  max-width: 270px;
}

.new-custom-list .new-custom-item-text span {
  font-weight: 700;
}

.main-btn-red.new-custom-btn {
  flex-direction: column;
  max-width: 376px;
  width: 100%;
  padding: 20px 0;
  gap: 12px;
  font-size: 20px;
  background: linear-gradient(135deg, #88EB41 0%, #66B031 100%), linear-gradient(0deg, #B03166, #B03166), linear-gradient(135deg, #88EB41 0%, #66B031 100%);
  box-shadow: 0px 4px 10px rgba(136, 235, 65, 0.2);
}



.main-btn-red.new-custom-btn span {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 14px;
  font-weight: 400;
  text-transform: none;
}

.blik {
  pointer-events: none;
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.4) 50%, rgba(255, 255, 255, 0) 100%);
  transform: skewX(-25deg);
  animation: shine 2s infinite linear;
}

.main-btn-red.new-custom-btn::after {
  border-radius: 100%;
  position: absolute;
  width: 167px;
  height: 167px;
  left: -83px;
  top: calc(50% - 167px/2 - 52.5px);
  content: '';
  background: rgba(255, 255, 255, 0.04);
  mix-blend-mode: plus-lighter;
  filter: blur(5.5px);
  transform: none;
  animation: none;
}

.main-btn-red.new-custom-btn::before {
  border-radius: 100%;
  position: absolute;
  width: 167px;
  height: 167px;
  right: -83px;
  bottom: -84px;
  content: '';
  background: rgba(255, 255, 255, 0.04);
  mix-blend-mode: plus-lighter;
  filter: blur(5.5px);
}

.new-custom .bannner-btns-text {
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 12px;

}



.new-custom .bannner-item-que {
  max-width: 457px;
  gap: 3px;
  width: 100%;
}

.new-custom .bannner-btns .bannner-btns-text img {
  width: 42px;
  height: 48px;
}

.bannner.new-custom .bannner-rght .bannner-rght-img {
  top: 0;
  right: 0;
  bottom: 0;
  max-width: 725px;
}

.plan h2 {
  font-size: clamp(24px, calc(2.11vw + 15.68px), 46px);
  background: linear-gradient(90deg, #66B031 0%, #3166B0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
  text-align: center;
  margin-bottom: 32px;
}

.plan_inner {
  display: flex;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}

.plan_inner-list {

  max-width: 670px;
}

.plan_inner-list .plan_inner-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
}

.plan_inner-list .plan_inner-item svg {
  min-width: 32px;
  width: 32px;
  height: 32px;
}

.plan-item {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.plan-item .plan-item-img {
  position: relative;
  max-width: 375px;
  height: 410px;
  /* overflow: hidden; */
}

.plan-item .plan-item-img img {
  max-width: 375px;
  object-fit: fill;
}

.plan-item span {
  font-size: 32px;
  font-weight: 500;
  margin-bottom: 6px;
}

.plan-item:nth-child(2) {
  /* flex: 1 0 40%; */
}

.plan-item:nth-child(2) span {
  /* padding-left: 120px; */
}

.plan-item:nth-child(2) .plan-item-img {
  align-self: center;
}

.zagluska {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #88EB41 0%, #66B031 100%),
    linear-gradient(0deg, #B03166, #B03166),
    linear-gradient(135deg, #88EB41 0%, #66B031 100%);
  color: white;
  font-size: 24px;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}

@media (max-width:1050px) {
  .new-custom-list {
    gap: 28px;
    margin-bottom: 32px;
  }

  .new-custom-list .new-custom-item-text {
    max-width: 335px;
    font-size: 12px;
  }

  .plan_inner-list .plan_inner-item svg {
    min-width: 20px;
    width: 20px;
    height: 20px;
  }

  .plan_inner-list .plan_inner-item {
    font-size: 12px;
  }

  .plan-item span {
    font-size: 22px;
    margin-bottom: 0;
  }

  .plan-item:nth-child(2) span {
    padding-left: 0;
  }

  .plan h2 {
    max-width: 260px;
    margin: 0 auto;
    margin-bottom: 24px;
  }

  .plan-item .plan-item-img img {
    width: 100%;
  }

  .map.new-custom {
    transform: translateY(-20px);
    position: relative;
    z-index: 2;
  }

  .plan-item .plan-item-img {
    height: 420px;
  }
}

@media (max-width: 922px) {
  .new-custom .bannner-item-que {
    max-width: 100%;
  }
  
  .bannner.new-custom .bannner-btns {
    flex-direction: column-reverse;
    align-items: center;
  }

  .bannner.new-custom .bannner-btns .bannner-btns-text {
    display: flex;
  }

  .bannner.new-custom .bannner-btns .bannner-btns-text img {
    transform: none;
  }
}

/* new-custom-banner */

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