@font-face {
  font-family: "SF Pro Display";
  font-weight: 400;
  src: url(/public/fonts/SFProDisplay-Regular.woff);
}

@font-face {
  font-family: "SF Pro Display";
  font-weight: 700;
  src: url(/public/fonts/SFProDisplay-Bold.woff);
}

@font-face {
  font-family: "SF Pro Display";
  font-weight: 900;
  src: url(/public/fonts/SFProDisplay-Black.woff);
}

* {
  margin: 0;
  border: 0;
  padding: 0;
  margin-block: 0;
}

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

:root {
  --base-0: #ffffff;
  --base-400: #fcb788;
  --base-500: #ea7e36;
  --base-700: #f9f9f9;
  --base-800: #727171;
  --base-900: #000000;
}

::-webkit-scrollbar {
  width: 6px;
  height: 4px;
  background-color: var(--base-0);
  border-radius: 10px;
}

::-webkit-scrollbar-thumb {
  border-radius: 10px;
  background-color: var(--base-500);
}

html,
body {
  background-color: var(--base-0);
  height: 100%;
  width: 100%;
  font-size: 10px;
  -ms-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  font-family: "SF Pro Display";
  font-style: normal;
  font-weight: 400;
  letter-spacing: 0em;
  line-height: 10px;
  cursor: default;
  position: relative;
  /* scroll-behavior: smooth;
  overflow-x: hidden; */
}

:focus,
:active {
  outline: none;
}

a,
a:focus,
a:active {
  outline: none;
  text-decoration: none;
}

nav,
footer,
header,
aside {
  display: block;
}

header {
  position: fixed;
  top: 0;
  z-index: 99;
  width: 100%;
}

input,
button,
textarea {
  font-family: inherit;
  line-height: inherit;
  font-size: 10px;
  background-color: inherit;
}

input::-ms-clear {
  display: none;
}

button {
  cursor: pointer;
}

button::-moz-focus-inner {
  padding: 0;
  border: 0;
}

ul li {
  list-style: none;
  text-decoration: none;
}

img {
  vertical-align: middle;
}

.d-none {
  display: none;
}

.title {
  margin-bottom: 42px;
  text-align: center;
  line-height: 1.2;
  font-weight: 700;
  font-size: 28px;
}

@media (max-width: 550px) {
  .title {
    font-size: 24px;
    /* padding: 0 15px; */
    margin-bottom: 24px;
  }
}

.center {
  text-align: center;
}

.left {
  text-align: left;
}

@media (max-width: 550px) {
  .left {
    text-align: center;
  }
}

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

@media (max-width: 550px) {
  .text-223 {
    font-size: 142px;
  }
}

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

@media (max-width: 830px) {
  .text-120 {
    font-size: 70px;
  }
}

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

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

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

@media (max-width: 550px) {
  .text-56 {
    font-size: 38px;
  }
}

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

@media (max-width: 550px) {
  .text-36 {
    font-size: 24px;
  }
}

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

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

@media (max-width: 550px) {
  .text-28 {
    font-size: 24px;
  }
}

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

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

@media (max-width: 550px) {
  .text-24 {
    font-size: 18px;
  }
}

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

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

@media (max-width: 550px) {
  .text-18 {
    font-size: 14px;
  }
}

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

@media (max-width: 550px) {
  .text-16 {
    font-size: 14px;
  }
}

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

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

.Gray {
  color: var(--base-800);
}

.Black {
  color: var(--base-900);
}

.White {
  color: var(--base-0);
}

.Orange {
  color: var(--base-500);
}

.GrayBG {
  background-color: #F9F9F9;
}

.GrayBG-dark {
  background-color: #D3D3D4;
}

.OrangeBG {
  background: linear-gradient(138.84deg, var(--base-500) -3.22%, var(--base-400) 63.78%, var(--base-500) 133.63%);
}

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

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

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

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

@media (max-width:1200px) {
  .pt-160 {
    padding-top: 220px;
  }
}

@media (max-width:992px) {
  .pt-160 {
    padding-top: 140px;
  }
}

.pb-50 {
  padding-bottom: 50px;
}


.colorBtn {
  color: var(--base-0);
  background-color: var(--base-500);
  border-radius: 10px;
  padding: 12px 28px 12px 28px;
  display: inline-block;
  transition: all ease 0.3s;
  line-height: 1.21;
  cursor: pointer;
  font-weight: 700;
}

.colorBtn:hover {
  opacity: 0.9;
  box-shadow: 0px 5px 4px 0px #72717126;
  transform: translateX(0.5px);
}

.defaultBtn {
  color: var(--base-800);
  background-color: var(--base-0);
  border-radius: 10px;
  padding: 10px 28px 10px 28px;
  display: inline-block;
  border: 1px solid var(--base-800);
  transition: all ease 0.3s;
  line-height: 1.42;
  cursor: pointer;
}

.defaultBtn:hover {
  box-shadow: 0px 5px 4px 0px #72717126;
  transform: translateX(0.5px);
}

.arrowBtn {
  background-color: var(--base-500);
  border-radius: 10px;
  padding: 12px 13px 11px 15px;
}

.base-svg path {
  fill: var(--base-500);
}

.logo-block {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 3px 10px;
  flex: 0 0 21%;
}

.logo.header__logo {
  max-height: 60px;
  display: flex;
}

.logo-block .logo-crop {
  max-width: 127px;
}

.logo-block .logo-crop img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}


.logo-block .city-changer {
  line-height: 1.21;
  flex: 1 0 100%;
  cursor: pointer;
  margin-bottom: 24px;
}

header .logo-block .city-changer {
  margin-bottom: 0;
}

.logo-block .city-changer svg {
  transition: all ease 0.3s;
}

.logo-block .city-changer span {
  text-decoration: underline;
}

.logo-block .city-changer:hover svg {
  transform: translateY(2px);
}

@media (max-width: 1200px) {
  .logo-block {
    flex: 1 0 30%;
  }
}

@media (max-width: 992px) {
  .logo-block {
    flex: 1 0 100%;
    justify-content: center;
    text-align: center;
  }
}

@media (max-width: 550px) {
  .logo-block {
    justify-content: center;
    text-align: center;
  }
}

.phone-links {
  transition: 300ms;
}

.phone-links svg {
  margin-right: 9px;
  /* transform: translateY(4px); */
}

.phone-links:hover {
  color: #000000;
}

.address-links :nth-child(1) svg {
  margin-right: 7px;
}

.address-links :nth-child(2) svg {
  margin-right: 5px;
}

.dropdown .dropdown-content {
  display: none;
  position: absolute;
  padding: 16px 24px 0 24px;
  background-color: var(--base-0);
  border-radius: 0px 0px 10px 10px;
  box-shadow: 0px 5px 4px 0px #72717126;
  z-index: 10;
  height: 114px;
  overflow: auto;
}

.dropdown .dropdown-content a {
  line-height: 1.18;
  padding: 0 0 16px 0;
  text-decoration: none;
  display: block;
}

.dropdown .dropdown-content a:last-child {
  padding: 0;
}

.dropdown .dropbtn img {
  margin-left: 4px;
  transition: all ease 0.3s;
}

.dropdown:hover img {
  transform: translateY(2px);
}

.dropdown:hover .dropdown-content {
  display: block;
}

.sale-form-block {
  max-width: 1168px;
  margin: 44px auto;
  display: flex;
  align-items: center;
  position: relative;
  height: 459px;
}


.sale-form-block .form-block-card {
  line-height: 1.2;
  padding: 32px;
  flex: 1 0 100%;
  box-shadow: 0px 0px 10px 0px #72717126;
  border-radius: 10px;
}

.sale-form-block .form-block-card .form-box {
  padding: 0;
  background-color: transparent;
  max-width: 509px;
}

.sale-form-block .form-block-card .form-box .form__input {
  background-color: var(--base-0);
}

.sale-form-block .form-block-card .card-title {
  margin-bottom: 28px;
  max-width: 414px;
}

.sale-form-block .form-block-card .card-text {
  margin-bottom: 32px;
  max-width: 536px;
}

.sale-form-block .form-block-img {
  position: absolute;
  right: 15px;
  max-width: 536px;
  max-height: 459px;
}

@media (max-width:1100px) {
  .sale-form-block .form-block-card .form-box {
    max-width: 325px;
  }

  .sale-form-block .form-block-card .card-title {
    max-width: 330px;
  }

  .sale-form-block .form-block-card .card-text {
    max-width: 340px;
  }

  .sale-form-block .form-block-img {
    max-width: 450px;
  }
}

@media (max-width:830px) {
  .sale-form-block {
    height: fit-content;
    justify-content: center;
    margin: 15px auto;
  }

  .sale-form-block .form-block-card {
    padding: 390px 24px 42px 24px;
    max-width: 95%;
  }

  .sale-form-block .form-block-card .form-box {
    max-width: 100%;
  }

  .sale-form-block .form-block-card .card-title {
    max-width: 100%;
  }

  .sale-form-block .form-block-card .card-text {
    max-width: 100%;
  }

  .sale-form-block .form-block-img {
    left: 50%;
    top: 0;
    transform: translate(-50%, 0);
    width: 100%;
  }
}

@media (max-width:520px) {

  .sale-form-block .form-block-card {
    padding: 90% 24px 42px 24px;
  }
}

.sale-form-block .form-block-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;

}

.certificate {
  padding: 42px 0;
  margin-bottom: 42px;
  line-height: 1.2;
}

.certificate .certificate-block {
  display: flex;
  gap: 56px;
  align-items: center;
}

.certificate .certificate-text {
  text-align: center;
  margin-bottom: 44px;
}

.certificate .certificate-block .certificate-block-card {
  padding: 40px;
  position: relative;
  border-radius: 10px;
  line-height: 1.4;
}

.certificate .certificate-block .certificate-block-card .card-title {
  margin-bottom: 18px;
}

.certificate .certificate-block .certificate-block-card .card-text {
  margin-bottom: 32px;
}

.certificate .certificate-block .certificate-block-card .card-text span {
  text-decoration: underline;
}

.certificate .certificate-block .certificate-block-card .card-paragraf {
  width: 65%;
}

.certificate .certificate-block .certificate-block-card .card-crop {
  max-width: 166px;
  max-height: 217px;
  position: absolute;
  top: 0;
  right: 5px;
}

.certificate .certificate-block .certificate-block-card .card-crop .card-crop-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

@media (max-width:1050px) {
  .certificate .certificate-block {
    flex-direction: column;
    gap: 42px;
    justify-content: center;
  }

  .certificate .certificate-text {
    text-align: center;
    margin-bottom: 44px;
  }

  .certificate .certificate-block .certificate-block-card {
    padding: 26px;
    overflow: hidden;
    min-height: 229px;
  }

  .certificate .certificate-block .certificate-block-card .card-title {}

  .certificate .certificate-block .certificate-block-card .card-text {}

  .certificate .certificate-block .certificate-block-card .card-text span {
    text-decoration: underline;
  }

  .certificate .certificate-block .certificate-block-card .card-paragraf {
    width: 65%;
  }

  .certificate .certificate-block .certificate-block-card .card-crop {
    max-width: 166px;
    max-height: 217px;
    position: absolute;
    top: 0;
    right: -70px;
  }

  .certificate .certificate-block .certificate-block-card .card-crop .card-crop-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }
}

.box1 {
  position: absolute;
  box-shadow: inset 0px 0px 15px rgba(0, 0, 0, 0.1);
  right: 0;
  top: 40%;
  width: 45px;
  height: 55px;
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
  transform: rotate(0deg);
  clip-path: polygon(0% 100%, 100% 100%, 100% 0%, 0% 0%);
}

.box2 {
  position: absolute;
  box-shadow: inset 0px 0px 15px rgba(0, 0, 0, 0.1);
  left: 0;
  top: 40%;
  width: 45px;
  height: 55px;
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
  transform: rotate(180deg);
  clip-path: polygon(0% 100%, 100% 100%, 100% 0%, 0% 0%);
}

.open .open-title {
  margin-bottom: 24px;
}

.open .open-text {
  margin-bottom: 40px;
  text-align: center;
  line-height: 1.2;
}

.open .open-block {
  display: flex;
  gap: 77px;
  align-items: center;
}

.open .open-block .open-block-crop {
  max-width: 414px;
  max-height: 579px;
}

.open .open-block .open-block-crop .open-block-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.open .open-block .open-block-card {
  display: flex;
  flex-direction: column;
  gap: 55px;
  align-items: center;
}

.open .open-block .open-block-card .card-form {
  max-width: 600px;
  max-height: inherit;
}

.swiper-button-next.swiper-button-disabled,
.swiper-button-prev.swiper-button-disabled {
  opacity: 1 !important;
  cursor: pointer !important;
  pointer-events: all !important;
}

.swiper-button-lock {
  display: Flex !important;
}

.open .open-block .open-block-card .mySwiper3 {
  max-width: 600px;
  border-radius: 10px;
  box-shadow: 0px 0px 5px 0px #72717180;
  margin-bottom: 0;
}

.open .open-block .open-block-card .swiper-slide .slide-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  align-content: center;
  text-align: center;
  padding: 0 0 59px 0;
  line-height: 1.2;
}

.open .open-block .open-block-card .swiper-slide .slide-box .box-img {
  transform: translateY(-15px);
}

.open .open-block .open-block-card .swiper-slide .slide-box .box-title {
  margin-bottom: 32px;
}

@media (max-width:1050px) {
  .open .open-text {
    margin-bottom: 42px;
  }

  .open .open-block {
    flex-direction: column;
    gap: 74px;
    align-items: center;
  }

  .open .open-block .open-block-card {
    gap: 32px;
  }

}

@media (max-width:620px) {

  .box1 {
    width: 25px;
  }

  .box2 {
    width: 25px;
  }

  .open .open-block .open-block-card {
    width: 100%;
  }

  .open .open-block .open-block-card .mySwiper3 {
    width: 100%;
  }

  .open .open-block .open-block-card .mySwiper3 .arrowBtn {
    border-radius: 5px;
    padding: 12px 10px 11px 10px;
    max-width: 20px;
  }
}

.form-box {
  padding: 32px;
  max-width: 530px;
  max-height: 228px;
  height: 100%;
  border-radius: 10px;
  box-shadow: 0px 0px 10px 0px #72717126;
  background-color: var(--base-0);
}

.form-text {
  line-height: 1.25;
  padding-bottom: 28px;
}

.form__input {
  border: 1px solid #d3d3d4;
  background-color: transparent;
  border-radius: 10px;
  padding: 3px;
  display: flex;
  margin-bottom: 8px;
}

.form__input-input {
  padding: 12px;
  width: 55%;
}

.form__input-btn {
  position: relative;
  float: right;
  margin-left: auto;
  padding: 12.5px 28px;
}

.form__input-btn.Mob {
  display: none;
}

.form-after-text {
  line-height: 1.28;
}

.form-after-text span {
  text-decoration: underline;
}

@media (max-width: 990px) {
  .form-box .form__input {
    margin-bottom: 12px;
  }

}

@media (max-width: 830px) {

  .form-box {
    padding: 24px 18px;
    max-height: inherit;
  }

  .form-box .form__input-input {
    width: 100%;
    padding: 15px;
  }

  .form-box .form__input-btn {
    display: none;
  }

  .form-box .form__input-btn.Mob {
    display: block;
    width: 100%;
    margin-bottom: 6px;
  }
}

.filter {
  background-color: var(--base-0);
  min-width: 231px;
  width: 100%;
  height: 50px;
  border-radius: 20%;
  opacity: 1;
  filter: blur(9px);
  position: absolute;
  z-index: 0;
  transform: translateY(-30%);
  left: 0;
}

@media (max-width: 550px) {
  .filter {
    display: none;
  }
}

.achievement-cards {
  flex: 1 0 100%;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.achievement-cards .title {
  flex: 1 0 100%;
}

.achievement-cards .achievement-card {
  display: flex;
  align-items: center;
  flex: 1 0 25%;
  justify-content: flex-start;
}

.achievement-cards .achievement-card svg {
  min-height: 58px;
  min-width: 58px;
  height: 100%;
  border: 5px solid #fbfbfb;
  border-radius: 100%;
  position: relative;
  z-index: 1;
}

.achievement-cards .achievement-card svg circle {
  fill: var(--base-500);
}

.achievement-cards .achievement-card .achievement-card-item {
  background-color: var(--base-0);
  box-shadow: 0px 0px 10px 0px #72717126;
  border-radius: 10px;
  padding: 25px 16px 25px 44px;
  flex: 1 0 85%;
  transform: translateX(-30px);
  display: flex;
  align-items: center;
  height: 90px;
}

.achievement-cards .achievement-card .achievement-card-item-text {
  line-height: 1.42;
  max-width: 169px;
}

@media (max-width: 990px) {
  .achievement-cards {
    gap: 20px;
  }

  .achievement-cards .achievement-card {
    display: flex;
    align-items: center;
    flex: 1 0 45%;
  }

  .achievement-cards .achievement-card img {
    max-height: 58px;
    height: 100%;
    border: 5px solid #fbfbfb;
    border-radius: 100%;
    position: relative;
    z-index: 1;
  }

  .achievement-cards .achievement-card .achievement-card-item {
    flex: 0 0 90%;
    display: flex;
  }
}

@media (max-width: 550px) {
  .achievement-cards .achievement-card {
    display: flex;
    align-items: center;
    flex: 1 0 100%;
  }

  .achievement-cards .achievement-card img {
    max-height: 58px;
    height: 100%;
    border: 5px solid #fbfbfb;
    border-radius: 100%;
    position: relative;
    z-index: 1;
  }

  .achievement-cards .achievement-card .achievement-card-item {
    flex: 0 0 90%;
    display: flex;
  }
}

.phone-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: stretch;
  justify-content: center;
}

/* .phone-cards .phone-card:nth-child(3) .phone-card-info {
    flex: 1 0 36%; }
  .phone-cards .phone-card:nth-child(3) img {
    flex: 1 0 65%; }
  .phone-cards .phone-card:nth-child(4) .phone-card-info {
    flex: 1 0 40%; } */
.phone-cards .phone-card .phone-card-link {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 6;
}

.phone-cards .phone-card .crop {
  max-width: 310px;
  position: relative;
  z-index: 5;
  overflow: hidden;
}

.phone-cards .phone-card .crop img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.phone-cards .phone-card {
  cursor: pointer;
  flex: 1 0 45%;
  max-width: 569px;
  box-shadow: 0px 0px 10px 0px #72717126;
  border-radius: 10px;
  padding: 24px 33px 24px 24px;
  display: flex;
  align-items: center;
  transition: all ease 1.5s;
  position: relative;
}

.phone-cards .phone-card::after {
  position: absolute;
  content: "";
  background: linear-gradient(138.84deg, var(--base-500) -3.22%, var(--base-400) 63.78%, var(--base-500) 133.63%);
  opacity: 0;
  width: 100%;
  height: 100%;
  left: 0;
  bottom: 0;
  border-radius: 10px;
  transition: all 0.3s ease-in-out;
}

.phone-cards .phone-card .phone-card-info {
  flex: 1 0 40%;
  position: relative;
  z-index: 10;
  height: 100%;
  display: flex;
  flex-direction: column;
  pointer-events: none;
}

.phone-cards .phone-card .phone-card-info .info-title {
  line-height: 1.2;
  margin-bottom: 8px;
}

.phone-cards .phone-card .phone-card-info a {
  margin-top: auto;
  max-width: 174px;
}

@media (max-width:830px) {
  .phone-cards .phone-card .phone-card-info a {
    text-align: center;
    padding: 12px 10px;
  }

  .phone-cards .phone-card .phone-card-info .info-list-item a {

    padding: 0;
  }
}

.phone-cards .phone-card .phone-card-info .info-text {
  line-height: 1.2;
  margin-bottom: 24px;

}

.phone-cards .phone-card .phone-card-info .info-list {
  padding-right: 24px;
  margin-bottom: 59px;
  width: fit-content;
  max-height: 225px;
  overflow: auto;
  position: relative;
  z-index: 10;
}

.phone-cards .phone-card .phone-card-info .info-list li {
  margin-bottom: 8px;
  position: relative;
  z-index: 10;
}

.phone-cards .phone-card .phone-card-info .info-list li .list-link {
  line-height: 1.2;
  text-decoration: underline;
}

.phone-cards .phone-card .info-img {
  flex: 1 0 40%;
  position: relative;
  z-index: 5;
}

.phone-cards .phone-card:hover {
  background-position: 0;
}

.phone-cards .phone-card:hover::after {
  opacity: 1;
}

.phone-cards .phone-card:hover .phone-card-info .info-title {
  color: var(--base-0);
}

.phone-cards .phone-card:hover .phone-card-info .info-text {
  color: var(--base-0);
}

.phone-cards .phone-card:hover .phone-card-info .info-list .list-link {
  color: var(--base-0);
}

@media (max-width: 990px) {
  .phone-cards .phone-card {
    flex: 1 0 50%;
  }

  .phone-cards .phone-card .info-img {
    text-align: end;
  }
}

@media (max-width: 830px) {
  .phone-cards .phone-card {
    padding: 24px 12px 24px 12px;
  }

  .phone-cards .phone-card .phone-card-info {
    flex: 1 0 50%;
  }

  .phone-cards .phone-card .info-img {
    overflow: hidden;
    flex: 0 0 42%;
  }

  .phone-cards .phone-card .crop {
    width: 100%;
    max-width: 230px;
  }
}

.advantages-cards {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 32px;
}

.advantages-cards .advantages-card {
  flex: 1 0 22%;
  align-self: stretch;
  border-radius: 10px;
  background-color: var(--base-0);
  box-shadow: 0px 0px 10px rgba(114, 113, 113, 0.15);
}

.advantages-cards .advantages-card .card-img {
  box-shadow: 0px 0px 10px 0px #72717126;
  padding: 0 0 14px 24px;
  position: relative;
  border-radius: 10px;
  min-height: 298px;
}

.advantages-cards .advantages-card .card-img .card__title-box {
  position: absolute;
  bottom: 14px;
}

.advantages-cards .advantages-card .card-img .card-title {
  opacity: 0.2;
  line-height: 1.19;
  font-weight: 900;
  transform: translate(-5%, -15%);
}

.advantages-cards .advantages-card .card-img img {
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 0;
  border-bottom-right-radius: 10px;
}

.advantages-cards .advantages-card .card-img .box-title {
  text-shadow: 5px 5px 10px black;
  line-height: 1.19;
  position: relative;
}

.advantages-cards .advantages-card-info {
  padding: 24px 26px 24px 24px;
}

.advantages-cards .advantages-card-info .card-info-text {
  line-height: 1.42;
}

.advantages-cards :nth-child(2) .advantages-card-info {
  padding: 24px 16px 24px 24px;
}

.advantages-cards :nth-child(5) {
  display: flex;
}

.advantages-cards :nth-child(5) .card-img {
  flex: 0 0 48%;
  min-height: 263px;
}

.advantages-cards :nth-child(5) .advantages-card-info {
  flex: 0 0 52%;
  padding: 95px 94px;
}

.advantages-cards :nth-child(5) .advantages-card-info .card-info-text {
  line-height: 1.33;
}

@media (max-width: 990px) {
  .advantages-cards .advantages-card {
    flex: 1 0 45%;
  }

  .advantages-cards .advantages-card .card-img {
    box-shadow: 0px 0px 10px 0px #72717126;
    padding: 0 0 14px 24px;
    position: relative;
    border-radius: 10px;
    min-height: 298px;
  }

  .advantages-cards .advantages-card-info {
    padding: 24px 26px 24px 24px;
  }

  .advantages-cards .advantages-card-info .card-info-text {
    line-height: 1.42;
  }
}

@media (max-width: 850px) {
  .advantages-cards .advantages-card {
    flex: 1 0 100%;
  }

  .advantages-cards .advantages-card .card-img {
    box-shadow: 0px 0px 10px 0px #72717126;
    padding: 0 0 14px 24px;
    position: relative;
    border-radius: 10px;
    min-height: 298px;
  }

  .advantages-cards .advantages-card-info {
    padding: 24px 26px 24px 24px;
  }

  .advantages-cards .advantages-card-info .card-info-text {
    line-height: 1.42;
  }

  .advantages-cards .advantages-card:nth-child(5) {
    flex-direction: column;
  }

  .advantages-cards .advantages-card:nth-child(5) .advantages-card-img {
    min-height: 298px;
  }

  .advantages-cards .advantages-card:nth-child(5) .advantages-card-info {
    padding: 24px 26px 24px 24px;
  }

  .advantages-cards .advantages-card:nth-child(5) .advantages-card-info .card-info-text {
    line-height: 1.42;
    font-size: 14px;
  }
}

@media (max-width: 550px) {
  .advantages-cards .advantages-card .card-img.crop img {
    width: 86%;
  }
}

.option__cards {
  display: flex;
  gap: 8px;
  flex-direction: column;
  max-height: 515px;
  overflow: auto;
  padding: 1px;
}

.option__cards.hide {
  display: none;
}

.option__cards.show {
  display: flex;
}

.option__cards .option__cards-item {
  display: flex;
  align-items: center;
  box-shadow: 0px 0px 2px 0px #00000040;
  border-radius: 10px;
  padding: 2px 2px 2px 28px;
  gap: 28px;
  line-height: 1.19;
}

.option__cards .option__cards-item .item-title {
  font-weight: 400;
  width: 23%;
}

.option__cards .option__cards-item .item-text {
  margin-left: auto;
}

.option__cards .option__cards-item .item-btn {
  padding: 12px 24px;
  border-radius: 10px;
  background-color: var(--base-500);
}

.option__cards .option__cards-item .item-btn img {
  transition: 0.3s ease;
}

.option__cards .option__cards-item .item-btn:hover img {
  transform: translateX(5px);
}

@media (max-width: 790px) {
  .option__cards .option__cards-item {
    padding: 2px 2px 2px 2px;
    gap: 0 15px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .option__cards .option__cards-item .item-title {
    text-align: center;
    width: 100%;
  }

  .option__cards .option__cards-item .item-text {
    text-align: center;
    flex: 0 0 30%;
    margin: 0;
  }

  .option__cards .option__cards-item .item-btn {
    padding: 6px 12px;
    border-radius: 10px;
  }

  .option__cards .option__cards-item .item-btn img {
    transition: 0.3s ease;
  }

  .option__cards .option__cards-item .item-btn:hover img {
    transform: translateX(5px);
  }
}

.plus-cards {
  display: flex;
  flex-wrap: wrap;
}

.plus-cards :nth-child(2) {
  flex: 1 0 50%;
  margin: auto;
}

.plus-cards :nth-child(5) {
  margin: auto;
}

@media (max-width: 1120px) {
  .plus-cards :nth-child(2) {
    flex: 1 0 30%;
    margin: auto;
  }

  .plus-cards :nth-child(5) {
    margin: 0;
  }
}

@media (max-width: 960px) {
  .plus-cards :nth-child(2) {
    flex: 1 0 50%;
    margin: 0;
  }
}

@media (max-width: 830px) {
  .plus-cards {
    flex-direction: column;
    justify-content: center;
    gap: 23px;
  }
}

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

.plus-card .card-title {
  line-height: 1.19;
  font-weight: 900;
  background: linear-gradient(138.84deg, var(--base-500) -3.22%, var(--base-400) 63.78%, var(--base-500) 133.63%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.plus-card .card-text {
  font-weight: 400;
  margin-top: 12px;
  line-height: 1.33;
}

@media (max-width: 1120px) {
  .plus-card {
    flex: 1 0 30%;
  }
}

@media (max-width: 830px) {
  .plus-card .card-text {
    margin-top: 0px;
  }
}

@media (max-width: 960px) {
  .plus-card {
    flex: 1 0 50%;
  }
}

.swiper-button-prev,
.swiper-button-next {
  width: inherit !important;
  height: inherit !important;
}

.swiper-button-prev:after,
.swiper-button-next:after {
  content: "";
}

.swiper-button-prev {
  transform: rotate(180deg);
  left: var(--swiper-navigation-sides-offset, 0px);
}

.swiper-button-next {
  right: var(--swiper-navigation-sides-offset, 0px);
}

.swiper {
  padding: 0 65px;
  max-width: 1170px;
  margin: 0 auto;
  margin-bottom: 42px;
}

@media (max-width: 920px) {
  .swiper {
    padding: 0 24px;
    margin-bottom: 0px;
  }
}

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

.swiper-wrapper {
  padding: 10px 0;
}

.swiper-wrapper .swiper-slide {
  opacity: 0;
  transition: 0.5s;
  cursor: grab;
}

.swiper-wrapper .swiper-slide .slider-item {
  flex: 0 0 50%;
  padding: 24px 24px 55px 24px;
  transform: translate3d(0px, 0px, 0px);
  transition: 200ms;
  border-radius: 10px;
  box-shadow: 0px 0px 10px rgba(114, 113, 113, 0.15);
  line-height: 1.25;
  min-height: 225px;
}

.swiper-wrapper .swiper-slide .slider-item-profile {
  display: flex;
}

.swiper-wrapper .swiper-slide .slider-item-profile .profile-name {
  display: flex;
  flex-wrap: wrap;
  flex: 1 0 60%;
}

.swiper-wrapper .swiper-slide .slider-item-profile .profile-name .profile-name-crop {
  margin-right: 11px;
  max-width: 62px;
  max-height: 62px;
}

.swiper-wrapper .swiper-slide .slider-item-profile .profile-name .profile-name-crop img {
  object-fit: contain;
  width: 100%;
  height: 100%;
  border-radius: 100%;
}

.swiper-wrapper .swiper-slide .slider-item-profile .profile-name-item .title {
  margin-bottom: 6px;
}

.swiper-wrapper .swiper-slide .slider-item-profile .profile-name-item .text {
  font-weight: 400;
}

.swiper-wrapper .swiper-slide .slider-item-profile .profile-star {
  margin-left: auto;
  text-align: end;
}

.swiper-wrapper .swiper-slide .slider-item-profile .profile-star .star-text {
  margin-bottom: 3px;
}

.swiper-wrapper .swiper-slide .slider-item-profile .profile-star ul {
  display: flex;
}

.swiper-wrapper .swiper-slide .slider-item-profile .profile-star ul li {
  flex: 1 0 20%;
}

.swiper-wrapper .swiper-slide .slider-item-profile .profile-star ul li svg path {
  fill: var(--base-500);
}

.swiper-wrapper .swiper-slide .slider-item-text {
  margin-top: 24px;
  font-weight: 400;
}

.swiper-wrapper .swiper-slide .slider-item.active {
  opacity: 1;
}

@media (max-width: 900px) {
  .swiper-wrapper .swiper-slide .slider-item {
    padding: 24px 24px 46px 24px;
  }

  .swiper-wrapper .swiper-slide .slider-item-profile {
    display: flex;
  }

  .swiper-wrapper .swiper-slide .slider-item-profile .profile-name {
    flex: 1 0 90%;
  }

  .swiper-wrapper .swiper-slide .slider-item-profile .profile-name img {
    margin-right: 10px;
    width: 46px;
  }

  .swiper-wrapper .swiper-slide .slider-item-profile .profile-star {
    transform: translateX(-55px);
  }
}

@media (max-width: 550px) {
  .swiper-wrapper .swiper-slide .slider-item {
    padding: 24px 24px 46px 24px;
  }

  .swiper-wrapper .swiper-slide .slider-item-profile {
    display: flex;
  }

  .swiper-wrapper .swiper-slide .slider-item-profile .profile-name {
    flex: 1 0 90%;
  }

  .swiper-wrapper .swiper-slide .slider-item-profile .profile-star {
    transform: translateX(-55px);
  }
}

.swiper-wrapper .swiper-slide-active,
.swiper-wrapper .swiper-slide-next {
  opacity: 1;
}

@media (max-width: 720px) {
  .swiper-wrapper .swiper-slide-active {
    opacity: 1;
  }

  .swiper-wrapper .swiper-slide-next {
    opacity: 0;
  }
}

.slider-wrapper {
  display: flex;
  width: 100%;
  height: 100%;
  transition-property: transform;
  box-sizing: content-box;
  gap: 35px;
  padding: 10px 65px;
  transition: 0.2s;
}

.slider-wrapper .active {
  transition-duration: 300ms;
}

@media (max-width: 1111px) {
  .slider-wrapper .slider-item {
    flex: 0 0 85%;
    max-width: inherit;
  }
}

.text-cards {
  /* max-width: 768px; */
  width: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(530px, 1fr));
  flex-direction: column;
  gap: 8px;
}

@media (max-width:992px) {
  .text-cards {
    /* max-width: 768px; */
    display: flex;
    flex-direction: column;
  }
}

.text-cards .text-cards-item {
  display: flex;
  align-items: center;
  border-radius: 10px;
  box-shadow: 0px 0px 10px 0px #72717126;
  background-color: var(--base-0);
  padding: 22px 23px 22px 27px;
  transition: 300ms;
  position: relative;
  flex-wrap: wrap;
  cursor: pointer;
}

.text-cards .text-cards-item .item-title {
  font-weight: 400;
  line-height: 1.33;
  max-width: 90%;
}

.text-cards .text-cards-item .item-btn {
  margin-left: auto;
  background-color: var(--base-500);
  border-radius: 100%;
  padding: 9px;
  transition: all 0.3s ease;
}

.text-cards .text-cards-item .item-block {
  flex: 0 0 100%;
  margin-top: 0px;
  height: 0;
  /* opacity: 0; */
  transition: all 0.5s ease;
}

.text-cards .text-cards-item .item-block-text {
  line-height: 1.25;
  opacity: 0;
  transition: all 0.3s linear(0 0%, 0.22 2.1%, 0.86 6.5%, 1.11 8.6%, 1.3 10.7%, 1.35 11.8%, 1.37 12.9%, 1.37 13.7%, 1.36 14.5%, 1.32 16.2%, 1.03 21.8%, 0.94 24%, 0.89 25.9%, 0.88 26.85%, 0.87 27.8%, 0.87 29.25%, 0.88 30.7%, 0.91 32.4%, 0.98 36.4%, 1.01 38.3%, 1.04 40.5%, 1.05 42.7%, 1.05 44.1%, 1.04 45.7%, 1 53.3%, 0.99 55.4%, 0.98 57.5%, 0.99 60.7%, 1 68.1%, 1.01 72.2%, 1 86.7%, 1 100%);
}

/* .text-cards .text-cards-item.active {
  flex-wrap: wrap;
} */
.text-cards .text-cards-item.active .item-block {
  height: auto;
  /* opacity: 1; */
  transition: all 0.5s ease;
  margin-top: 30px;
}

.text-cards .text-cards-item.active .item-block-text {
  opacity: 1;
}

.text-cards .text-cards-item.active .item-btn {
  transform: rotate(135deg);
}

@media (max-width: 550px) {
  .text-cards .text-cards-item .item-title {
    flex: 0 0 80%;
  }

  .text-cards .text-cards-item .item-btn {
    margin-left: auto;
    flex: 0 0 10%;
    max-width: 35px;
  }
}

.area-cards {
  display: grid;
  gap: 17px;
  grid-template:
    "hd hd hd hd   hd   hd   hd   hd   hd hd" minmax(43px, auto) "main main main main main main main main main main" minmax(43px, auto) "ft ft ft ft   ft   ft   ft   ft  ft ft" minmax(43px, auto) / 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
}

.area-cards .area-cards-items {
  padding: 12px 28px;
  box-shadow: 0px 0px 10px 0px #72717126;
  border-radius: 10px;
  text-align: center;
  transition: 300ms;
  cursor: pointer;
}

.area-cards .area-cards-items .items-text {
  line-height: 1.19;
}

.area-cards .area-cards-items:hover {
  box-shadow: 0px 2px 6px 0px #72717140;
  background-color: var(--base-500);
}

.area-cards .area-cards-items:hover .items-text {
  color: var(--base-0);
}

.area-cards .hd {
  grid-area: hd;
  display: flex;
  gap: 17px;
  flex-wrap: wrap;
  justify-content: center;
}

.area-cards .main {
  grid-area: main;
  display: flex;
  flex-wrap: wrap;
  gap: 17px;
  justify-content: center;
}

.area-cards .ft {
  grid-area: ft;
  display: flex;
  flex-wrap: wrap;
  gap: 17px;
  justify-content: center;
}

.area-cards :nth-child(n + 11):nth-child(-n + 18) {
  grid-area: main;
}

.area-cards :nth-child(n + 19):nth-child(-n + 21) {
  grid-area: ft;
}

.idea-list {
  display: flex;
  flex-wrap: wrap;
  gap: 100px;
  margin-bottom: 32px;
  justify-content: center;
}

.idea-list .list-item-img {
  flex: 1 0 43%;
  padding: 24px 24px 34px 24px;
  box-shadow: 0px 0px 10px rgba(114, 113, 113, 0.15);
  border-radius: 10px;
  display: flex;
  flex-wrap: wrap;
  line-height: 1.25;
  align-items: center;
}

.idea-list .list-item-img img {
  flex: 0 0 20%;
  transform: translate(-15px, -15px);
}

.idea-list .list-item-img :nth-child(2) {
  flex: 0 0 70%;
}

.idea-list .list-item-img :nth-child(3) {
  flex: 0 0 100%;
  margin-bottom: 25px;
}

.idea-list .list-item-img :nth-child(4) {
  flex: 0 0 100%;
}

.idea-list .list-item-text {
  flex: 0 0 45%;
  display: flex;
  flex-direction: column;
  gap: 25px;
  line-height: 1.25;
  justify-content: center;
}

@media (max-width: 930px) {
  .idea-list {
    gap: 24px;
  }

  .idea-list .list-item-img {
    flex: 1 0 100%;
    padding: 24px 10px 34px 24px;
    box-shadow: 0px 0px 10px rgba(114, 113, 113, 0.15);
    border-radius: 10px;
    display: flex;
    flex-wrap: wrap;
    line-height: 1.25;
    align-items: center;
  }

  .idea-list .list-item-img img {
    flex: 0 0 20%;
    transform: translate(-15px, -15px);
  }

  .idea-list .list-item-img :nth-child(2) {
    flex: 0 0 60%;
    margin-bottom: 29px;
  }

  .idea-list .list-item-img :nth-child(3) {
    flex: 0 0 100%;
    margin-bottom: 25px;
  }

  .idea-list .list-item-img :nth-child(4) {
    flex: 0 0 100%;
  }

  .idea-list .list-item-text {
    flex: 0 0 100%;
    display: flex;
    flex-direction: column;
    gap: 25px;
    line-height: 1.25;
    justify-content: center;
  }
}

.burger-menu {
  display: none;
  padding: 14px 10px;
  background-color: var(--base-500);
  border-radius: 10px;
  height: fit-content;
}

.burger-menu .line {
  width: 22px;
  height: 2px;
  background-color: var(--base-0);
  border-radius: 10px;
}

@media (max-width: 992px) {
  .burger-menu {
    display: flex;
    gap: 4px;
    flex-direction: column;
  }
}

.menu {
  display: none;
}

@media (max-width: 992px) {
  .menu {
    display: block;
    position: absolute;
    width: 100vw;
    z-index: 9999;
    visibility: hidden;
    height: 0;
    left: 0;
    background-color: var(--base-0);
    padding: 0;
    box-shadow: 0px 5px 4px 0px #72717126;
    border-radius: 0px 0px 10px 10px;
    transition: 750ms;
  }

  .menu .menu__inner {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .menu .menu__inner .menu__title {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
  }

  .menu .menu__inner .menu__title .menu__logo-block {
    justify-content: flex-start;
    flex: 1 0 85%;
  }

  .menu .menu__inner .menu__title .menu-close {
    width: 33px;
    height: 33px;
    background-color: var(--base-500);
    border-radius: 100%;
    position: relative;
  }

  .menu .menu__inner .menu__title .menu-close-line {
    left: 50%;
    top: 15px;
    position: absolute;
    width: 15px;
    height: 2px;
    background-color: var(--base-0);
    border-radius: 10px;
  }

  .menu .menu__inner .menu__title .menu-close-line:nth-child(1) {
    transform: translate(-50%, 0) rotate(45deg);
  }

  .menu .menu__inner .menu__title .menu-close-line:nth-child(2) {
    transform: translate(-50%, 0) rotate(-45deg);
  }

  .menu .menu__inner .menu-btn {
    margin: 0 0 20px 0;
  }

  .menu .menu__inner .header__top-colorBtn {
    margin: 0 0 20px 0;
  }

  .menu .menu__inner .menu__nav .menu__nav-list {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
    line-height: 1.2;
  }

  .menu .menu__inner .menu__nav .menu__nav-list .list-item {
    display: flex;
    flex-direction: column;
    text-align: center;
    align-items: center;
  }

  .menu .menu__inner .menu__nav .menu__nav-list .list-item-title {
    display: flex;
    align-items: center;
  }

  .menu .menu__inner .menu__nav .menu__nav-list .list-item svg {
    transition: 300ms;
    margin-left: 4px;
  }

  .menu .menu__inner .menu__nav .menu__nav-list .list-item .submenu {
    margin: 16px 0 35px 0;
    line-height: 1.18;
    display: flex;
    flex-direction: column;
    gap: 16px;
    opacity: 0;
    height: 0;
    position: absolute;
  }

  .menu .menu__inner .menu__nav .menu__nav-list .list-item .submenu-item {
    transition: 0.1s linear;
    transform-origin: 0 0;
    transform: rotateX(90deg);
  }

  .menu .menu__inner .menu__nav .menu__nav-list .list-item:hover .list-item-title {
    color: var(--base-500);
    font-weight: 700;
  }

  .menu .menu__inner .menu__nav .menu__nav-list .list-item:hover svg {
    transform: rotate(60deg);
  }

  .menu .menu__inner .menu__nav .menu__nav-list .list-item:hover svg path {
    fill: var(--base-500);
  }

  .menu .menu__inner .menu__nav .menu__nav-list .list-item:hover .submenu {
    opacity: 1;
    height: auto;
    position: relative;
  }

  .menu .menu__inner .menu__nav .menu__nav-list .list-item:hover .submenu-item {
    transform: rotateX(0deg);
  }

  .menu.active {
    height: 100vh;
    padding: 10px 0 65px 0;
    visibility: visible;
  }

  .menu.active .menu__inner {
    display: flex;
  }
}

.block-idea {
  margin: 24px 0;
  box-shadow: 0px 0px 10px 0px #72717126;
  padding: 20px 38px 20px 24px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  gap: 13px;
}

.block-idea .block-idea-text {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.container {
  max-width: 1170px;
  margin: 0 auto;
}

@media (max-width: 550px) {
  .container {
    padding: 0 15px;
  }
}

.header__inner {
  position: relative;
  z-index: 1;
  padding-top: 11px;
  background: var(--base-0);
  max-width: 1175px;
  width: 100vw;
  padding: 15px 1rem;
  box-shadow: 0px 5px 4px 0px #72717126;
  border-radius: 0 0 10px 10px;
  margin: 0 auto;
}

.header__inner .header__top {
  align-items: center;
  display: flex;
}

.header__inner .header__top .header__top-phone {
  margin-left: auto;
  text-decoration: none;
  align-items: center;
}

.header__inner .header__top .header__top-address {
  flex: 0 0 20%;
  margin-left: 45px;
}

.header__inner .header__top .header__top-address .address-btn {
  margin-bottom: 10px;
  line-height: 1.18;
}

.header__inner .header__top .header__top-address .city-changer {
  font-size: 15px;
}

.header__inner .header__top .header__top-colorBtn {
  margin-left: 24px;
  flex-shrink: 0;
}

.header__inner .header__bottom {
  margin-top: 12px;
}

.header__inner .header__bottom .header__bottom-menu {
  justify-content: center;
  display: flex;
  gap: 32px;
}

.header__inner .header__bottom .header__bottom-menu .menu-link {
  padding: 14px 0;
  display: inline-block;
}

@media (max-width: 1200px) {
  .header__inner {
    position: inherit;
  }

  .header__inner .header__top {
    gap: 12px 20px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .header__inner .header__top .header__top-phone {
    display: flex;
    justify-content: center;
    flex: 1 1 30%;
  }

  .header__inner .header__top .header__top-address {
    margin-left: 0;
    flex: 1 1 30%;
    justify-content: flex-end;
    text-align: left;
    display: flex;
  }

  .header__inner .header__top .header__top-address .address-btns {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }

  .header__inner .header__top .header__top-colorBtn {
    margin-left: 0;
    flex-shrink: 0;
  }
}

@media (max-width: 992px) {
  .header__inner .header__top .header__top-phone {
    flex: 1 1 45%;
    align-items: center;
  }

  .header__inner .header__top .header__top-address {
    flex: 1 0 19%;
    justify-content: flex-end;
    text-align: left;
  }

  .header__inner .header__top .header__top-address .address-btns {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    display: none;

  }

  .header__inner .header__top .header__top-colorBtn {
    margin-left: 0;
    flex-shrink: 0;
  }
}

@media (max-width: 992px) {
  .header__inner {
    position: inherit;
  }

  .header__inner .header__top {
    align-items: inherit;
    text-align: center;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 0px;
    gap: 0;
  }

  .header__inner .header__top .logo-block {
    order: 1;
    flex: 1 0 50%;
    max-width: 230px;
    text-align: left;
    justify-content: start;
  }

  .header__inner .header__top .header__top-phone {
    margin: 10px 0 0 0;
    flex: 1 0 100%;
    order: 3;
  }

  .header__inner .header__top .header__top-address {
    margin-left: 0;
    order: 2;
    text-align: left;
    display: flex;
    justify-content: flex-end;
  }

  .header__inner .header__top .header__top-address .address-btns {
    margin-bottom: 0px;
    line-height: 1.18;
  }

  .header__inner .header__top .header__top-defaultBtn {
    display: none;
  }

  .header__inner .header__top .header__top-colorBtn {
    margin-left: 0;
    flex-shrink: 0;
    display: none;
  }

  .header__inner .header__bottom {
    display: none;
  }
}

.bannner {
  background-image: url(/public/images/content/main/mainBg.png);
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  backdrop-filter: blur(5px);
  padding-top: 140px;
}

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

}

@media (max-width:992px) {
  .bannner {
    padding-top: 290px;
  }

}

@media (max-width:550px) {
  .bannner {
    padding-top: 235px;
  }

}

.bannner .bannner__inner {
  padding: 48px 0 64px;
  display: flex;
  flex-wrap: wrap;
  gap: 35px 32px;
}

.bannner .bannner__inner .bannner__info {
  display: flex;
  gap: 42px;
  flex-direction: row;
  flex-wrap: wrap;
  flex: 0 0 100%;
}

.bannner .bannner__inner .bannner__info .bannner__info-title {
  line-height: 1.196;
  flex: 0 1 57%;
}

.bannner .bannner__inner .bannner__info .bannner__info-form {
  flex: 1 0 70%;
  padding: 32px;
}

.bannner .bannner__inner .bannner__info .bannner__info-form .bannner__info-form-text {
  line-height: 1.25;
  padding-bottom: 28px;
}

.bannner .bannner__inner .bannner__info .bannner_img {
  flex: 1 0 45%;
  max-width: 468px;
  width: 100%;
  transform: translateY(-160px);
  margin-bottom: -170px;
  margin-left: auto;
}

.bannner .bannner__inner .bannner__info .bannner_img .bannner_img-item {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 10px;
}

@media (max-width: 1020px) {
  .bannner .bannner__inner {
    padding: 42px 0 24px;
  }

  .bannner .bannner__inner .bannner__info {
    flex: 1 0 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-wrap: nowrap;
  }

  .bannner .bannner__inner .bannner__info .bannner__info-title {
    text-align: center;
  }

  .bannner .bannner__inner .bannner__info .bannner__info-form {
    flex: 1 0 25%;
    order: 4;
  }

  .bannner .bannner__inner .bannner__info .bannner_img {
    flex: 1 0 25%;
    max-width: 468px;
    width: 100%;
    transform: none;
    margin-bottom: 0;
    margin-left: inherit;
  }

  .bannner .bannner__inner img.bannner_img {
    transform: none;
    margin: 0 auto;
  }
}

@media (max-width: 550px) {
  .bannner .bannner__inner {
    padding: 42px 0 24px;
  }
}

.model {
  box-shadow: 0px -5px 4px 0 #72717126;
  border-radius: 10px 10px 0 0;
}

.model .model-img {
  cursor: pointer;
  position: relative;
  left: 50%;
  transform: translate(-50%, -50%);
  display: inline-block;
  padding: 12.5px 15.5px;
  border-radius: 100%;
  background-color: var(--base-500);
  box-shadow: 0px 5px 4px 0px #72717126;
}

.model .model-img img {
  transition: all ease 0.3s;
}

.model .model-img:hover img {
  transform: translateY(3px);
}

.model .model__inner {
  padding: 35px 0 64px;
}

.model:nth-child(3) .phone-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: stretch;
}

.model:nth-child(3) .phone-cards .phone-card {
  cursor: pointer;
  flex: 1 0 22%;
  box-shadow: 0px 0px 10px 0px #72717126;
  border-radius: 10px;
  padding: 0 0 24px 0;
  display: flex;
  flex-direction: column-reverse;
  align-items: center;
  justify-content: space-between;
  transition: all ease 1.5s;
  height: 360px;
}

.model:nth-child(3) .phone-cards .phone-card .phone-card-info {
  flex: 0 0 30%;
  width: 100%;
  padding: 0 24px 24px 24px;
}

.model:nth-child(3) .phone-cards .phone-card .phone-card-info .info-title {
  line-height: 1.2;
  margin-bottom: 8px;
}

.model:nth-child(3) .phone-cards .phone-card .phone-card-info .info-text {
  line-height: 1.2;
  margin-bottom: 24px;
}

.model:nth-child(3) .phone-cards .phone-card .phone-card-info .info-btn {
  width: 100%;
}

.model:nth-child(3) .phone-cards .phone-card .phone-card-info .info-list {
  display: none;
}

.model:nth-child(3) .phone-cards .phone-card .phone-card-info .info-list li {
  margin-bottom: 8px;
}

.model:nth-child(3) .phone-cards .phone-card .phone-card-info .info-list li .list-link {
  line-height: 1.2;
  text-decoration: underline;
}

.model:nth-child(3) .phone-cards .phone-card img {
  flex: 0 0 45%;
  padding-top: 27px;
}

.model:nth-child(3) .phone-cards .phone-card:hover {
  background-position: 0;
}

.model:nth-child(3) .phone-cards .phone-card:hover .phone-card-info .info-title {
  color: var(--base-0);
}

.model:nth-child(3) .phone-cards .phone-card:hover .phone-card-info .info-text {
  color: var(--base-0);
}

.model:nth-child(3) .phone-cards .phone-card:hover .phone-card-info .info-list .list-link {
  color: var(--base-0);
}

/* @media (max-width: 1200px) {
    .model {
      display: none; }
      .model.mobile {
        display: block; }
        .model.mobile .phone-cards {
          display: flex;
          flex-wrap: wrap;
          gap: 32px;
          align-items: stretch; }
          .model.mobile .phone-cards .phone-card {
            cursor: pointer;
            flex: 1 0 45%; }
            .model.mobile .phone-cards .phone-card .phone-card-info {
              display: flex;
              flex-direction: column;
              justify-content: center;
              flex: 1 0 55%;
              width: 100%;
              padding: 0 20px 0px 0px; } } */
/* @media (max-width: 830px) {
    .model.mobile {
      box-shadow: none;
      border-radius: none; }
      .model.mobile .model-img {
        display: none; }
      .model.mobile .phone-cards .phone-card {
        flex: 1 0 100%; } } */


.work:nth-child(5) .advantages-cards {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 32px;
}

.work:nth-child(5) .advantages-cards .advantages-card {
  flex: 1 0 30%;
  align-self: stretch;
  border-radius: 10px;
  background-color: var(--base-0);
  box-shadow: 0px 0px 10px rgba(114, 113, 113, 0.15);
  height: 460px;
}

.work:nth-child(5) .advantages-cards .advantages-card .card-img {
  box-shadow: 0px 0px 10px 0px #72717126;
  padding: 0 0 14px 24px;
  position: relative;
  border-radius: 10px;
  min-height: 298px;
}

.work:nth-child(5) .advantages-cards .advantages-card .card-img .card__title-box {
  position: absolute;
  bottom: 14px;
}

.work:nth-child(5) .advantages-cards .advantages-card .card-img .card-title {
  opacity: 0.2;
  line-height: 1.19;
  font-weight: 900;
  transform: translate(-5%, -15%);
}

.work:nth-child(5) .advantages-cards .advantages-card .card-img img {
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 0;
  border-bottom-right-radius: 10px;
}

.work:nth-child(5) .advantages-cards .advantages-card .card-img .box-title {
  line-height: 1.19;
  position: relative;
}

.work:nth-child(5) .advantages-cards .advantages-card-info {
  padding: 24px 57px 24px 24px;
}

.work:nth-child(5) .advantages-cards .advantages-card-info .card-info-text {
  line-height: 1.42;
}

.work:nth-child(5) .advantages-cards :nth-child(2) .advantages-card-info {
  padding: 24px 57px 24px 24px;
}

.work:nth-child(5) .advantages-cards :nth-child(5) {
  display: block;
}

.work:nth-child(5) .advantages-cards :nth-child(5) .card-img {
  flex: 0 0 48%;
  min-height: 298px;
}

.work:nth-child(5) .advantages-cards :nth-child(5) .advantages-card-info {
  flex: 0 0 52%;
  padding: 24px 26px 24px 24px;
}

.work:nth-child(5) .advantages-cards :nth-child(5) .advantages-card-info .card-info-text {
  line-height: 1.42;
}

@media (max-width: 550px) {
  .work:nth-child(5) .advantages-cards :nth-child(5) {
    flex-direction: column;
  }

  .work:nth-child(5) .advantages-cards :nth-child(5) .advantages-card-img {
    min-height: 298px;
  }

  .work:nth-child(5) .advantages-cards :nth-child(5) .advantages-card-info {
    padding: 24px 26px 24px 24px;
  }
}

.consult__card {
  box-shadow: 0px 0px 10px 0px #72717126;
  border-radius: 10px;
  padding: 28px;
  display: flex;
  position: relative;
  gap: 50px;
}

.consult__card .consult__card-form {
  flex: 0 0 70%;
}

.consult__card .consult__card-text {
  line-height: 1.33;
  flex: 0 0 30%;
}

.consult__card .inside__consult-text {
  flex: 0 0 40%;
  line-height: 1.33;
}

.consult__card .consult__card-percent {
  position: absolute;
  bottom: 0;
  right: 0;
  line-height: 0.8;
  opacity: 0.2;
  font-weight: 900;
}

.consult__card img {
  position: absolute;
  right: 0;
  bottom: 8px;
}

@media (max-width: 950px) {
  .consult__card {
    flex-direction: column;
    padding: 24px 6px 6px 6px;
    align-items: center;
  }

  .consult__card .consult__card-form {
    flex: 0 0 100%;
    order: 3;
  }

  .consult__card .inside__consult-text {
    order: 1;
  }

  .consult__card .consult__card-text {
    justify-self: flex-start;
    flex: 0 0 100%;
    padding: 0 13px;
  }

  .consult__card .consult__card-percent {
    position: inherit;
    order: 2;
  }

  .consult__card img {
    position: inherit;
    margin: 0 auto;
    bottom: 0;
    width: 80%;
  }
}

@media (max-width: 550px) {
  .consult__card img {
    width: 100%;
  }
}

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

.type__inner .type__switcher {
  display: flex;
  flex-direction: column;
}

.type__inner .type__switcher-btns {
  display: flex;
  justify-content: space-between;
  box-shadow: 0px 5px 4px 0px #72717126;
  border-radius: 0 0 10px 10px;
  margin-bottom: 18px;
  overflow: auto;
}

.type__inner .type__switcher-btns .type__switcher-btn {
  cursor: pointer;
  display: flex;
  align-items: center;
  font-weight: 400;
  padding: 14px 34px;
  line-height: 1.19;
  flex: 1 0 14%;
  transition: 300ms;
  justify-content: center;
}

.type__inner .type__switcher-btns .type__switcher-btn.active {
  font-weight: 700;
  background-color: var(--base-500);
  color: var(--base-0);
}

.type__inner .type__switcher-btns .type__switcher-btn:last-child {
  border-bottom-right-radius: 10px;
}

.type__inner .type__switcher-btns .type__switcher-btn:first-child {
  border-bottom-left-radius: 10px;
}

.type__inner .type__switcher-option__cards {
  margin-bottom: 42px;
  min-height: 50px;
  max-height: 515px;
  padding: 1px 1px 0 1px;
  overflow: auto;
}

.type__inner .type__switcher-colorBtn {
  margin: 0 auto;
}

@media (max-width: 1200px) {
  .type__inner .type__switcher-btns {
    overflow: auto;
    direction: rtl;
    transform: rotate(180deg);
    box-shadow: 0px -10px 15px 0px #72717126;
    border-radius: 10px 10px 0px 0px;
    padding-bottom: 5px;
  }
}

@media (max-width: 1200px) {
  .type__inner .type__switcher-btns .type__switcher-btn {
    flex: 1 0 20%;
    padding: 14px 30px;
    transform: rotate(180deg);
    text-align: end;
  }

  .type__inner .type__switcher-option__cards {
    margin-bottom: 24px;
    max-height: 505px;
  }
}

.pcNone {
  display: none;
}

@media (max-width: 790px) {
  .type__inner .type__switcher-btns .type__switcher-btn {
    flex: 1 0 30%;
    min-width: fit-content;
  }

  .pcNone {
    display: block;
  }

  .type__switcher-svg {
    margin: 0 auto;
    margin-bottom: 15px;

  }

  .type__switcher-svg path {

    fill: var(--base-500);

  }
}

@media (max-width: 550px) {
  .type__inner .type__switcher-btns .type__switcher-btn {
    flex: 1 0 51%;
  }
}

.excellence {
  background-color: #F9F9F9;
  ;
}

.reviews__inner {
  padding: 42px 0 0 0;
}

@media (max-width: 790px) {
  .reviews__inner {
    padding: 0;
  }
}

.reviews__slider {
  display: flex;
  align-items: center;
  overflow: hidden;
  position: relative;
}

.reviews__slider .slider-prev-btn {
  transform: rotate(180deg);
  position: absolute;
  left: 0;
  z-index: 3;
}

.reviews__slider .slider-next-btn {
  position: absolute;
  right: 0;
  z-index: 3;
}



.map #map {
  width: 100%;
  height: 400px;
  padding: 0;
  margin: 0;
  border-radius: 10px;
  filter: grayscale(50%);
  transition: .5s;
  -ms-touch-action: auto !important;
  touch-action: auto !important;
}

.contact__block-item #map {
  filter: grayscale(50%);
}

.map .map-block {
  position: absolute;
  z-index: 90;
  margin: 45px;
}

.scrolloff {
  pointer-events: none;
}

.grascale {
  filter: grayscale(0%) !important;
}

.contact-block {
  box-shadow: 0px 1px 3px 1px #00000026;
  max-width: 396px;
  padding: 32px 24px;
  border-radius: 20px;
  background-color: var(--base-0);
}

.contact-block .contact-block-mail {
  margin: 32px 0;
  transition: all 0.3s ease;
}

.contact-block .contact-block-phone {
  margin-bottom: 12px;
  transition: all 0.3s ease;
}

.contact-block .contact-block-phone:hover {
  transform: translateX(5px);
}

.contact-block .contact-block-mail:hover {
  transform: translateX(5px);
}

.links-default {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  line-height: 1.2;
}

.map #map .ymaps-2-1-79-inner-panes {
  border-radius: 10px;
  filter: drop-shadow(0px 0px 10px rgba(114, 113, 113, 0.15));


}

@media (max-width: 1050px) {
  .contact-block {
    max-width: 396px;
    padding: 20px 34px 20px 16px;
  }

  .contact-block .contact-block-phone {
    margin-bottom: 12px;
  }

  .contact-block .contact-block-mail {
    margin: 20px 0;
  }
}

@media (max-width: 830px) {
  .map .map-block {
    position: relative;
    margin: 0 auto;
    margin-bottom: 32px;

  }

  .phone-links svg {
    transform: none;
  }

  .map #map {
    height: fit-content;
  }
}

/* @media (max-width: 550px) {
  .map #map {
    height: 510px;
  }
} */

footer {
  box-shadow: 0px -5px 6px 0px #72717126;
  position: relative;
}

footer .footer__inner {
  padding: 24px 0 59px 0;
  display: flex;
}

footer .footer__inner .footer__info .footer__info-text {
  margin: 14px 0 27px 0;
  line-height: 1.28;
}

footer .footer__inner .footer__nav {
  margin-left: auto;
  display: flex;
  gap: 32px;
}

footer .footer__inner .footer__nav .footer__nav-card .card-text {
  line-height: 1.19;
  margin-bottom: 12px;
}

footer .footer__inner .footer__nav .footer__nav-card ul {
  display: flex;
  flex-direction: column;
  gap: 4px;
  line-height: 1.21;
}

footer .footer__inner .footer__nav .footer__nav-card ul li a {
  transition: all 0.3s ease;
}

footer .footer__inner .footer__nav .footer__nav-card ul li a:hover {
  color: var(--base-500);
}

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

  footer .footer__inner .footer__info .footer__logo-block {
    text-align: center;
  }

  footer .footer__inner .footer__info .footer__info-text {
    display: none;
  }

  footer .footer__inner .footer__nav {
    margin-left: auto;
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
  }

  footer .footer__inner .footer__nav .footer__nav-card {
    flex: 1 0 45%;
  }

  footer .footer__inner .footer__nav .footer__nav-card p {
    line-height: 1.19;
    margin-bottom: 12px;
  }

  footer .footer__inner .footer__nav .footer__nav-card ul {
    display: flex;
    flex-direction: column;
    gap: 4px;
    line-height: 1.21;
  }

  footer .footer__inner .footer__nav .footer__nav-card:nth-child(2) {
    order: 2;
  }

  footer .footer__inner .footer__nav .footer__nav-card:nth-child(3) {
    order: 1;
  }
}

.footer__contacts {
  display: flex;
  flex-direction: column;
  gap: 24px;
  /* flex-wrap: wrap; */
  /* align-items: center; */
}

.footer__contacts .footer__contacts-link {
  display: flex;
  flex-direction: column;
  gap: 13px;
}

.footer__contacts .address-links-btns {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
}

.address-links-btns button {
  display: flex;
  align-items: center;
}

@media (max-width: 550px) {
  .footer__contacts {
    flex-direction: column;
    gap: 26px;
  }

  .footer__contacts .footer__contacts-link {
    display: flex;
    flex-direction: column;
    margin-top: 27px;
  }

  .footer__contacts .footer__contacts-link .contacts__phone {
    text-align: center;
  }

  .footer__contacts .footer__contacts-link :nth-child(2) {
    display: none;
  }

  .footer__contacts .footer__address-links {
    width: 100%;
    display: flex;
    gap: 16px;
    margin-bottom: 20px;
    justify-content: space-between;
    align-items: center;
    flex-direction: row;
  }

  .footer__contacts .footer__address-links .address-links-btns {
    display: flex;
    gap: 6px;
    flex-direction: column;
    align-items: center;
    flex: 1 0 80%;
  }
}

.popup__bg {
  position: fixed;
  z-index: 99;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.2);
  opacity: 0;
  pointer-events: none;
  transition: 0.5s all;
}

.popup__bg.active {
  opacity: 1;
  pointer-events: all;
  transition: 0.5s all;
}

.popup-city {
  height: 0;
}

.popup {
  transform: translate(-50%, -50%) scale(0);
  padding: 24px 48px;
  display: flex;
  flex-direction: column;
  text-align: center;
  max-width: 522px;
  width: 100%;
  box-shadow: 0px 0px 10px 0px #72717126;
  background-color: var(--base-0);
  border-radius: 10px;
  position: fixed;
  left: 50%;
}

.popup .popup-title {
  line-height: 1.2;
  margin-bottom: 18px;
}

.popup .popup-text {
  padding: 0 35px;
  line-height: 1.33;
  margin-bottom: 24px;
}

.popup form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.popup form input {
  padding: 15px;
  border-radius: 10px;
  border: 1px solid #d3d3d4;
  width: 100%;
}

.popup form textarea {
  padding: 15px;
  border-radius: 10px;
  border: 1px solid #d3d3d4;
  margin-bottom: 24px;
  resize: none;
}

.popup .popup-colorBtn {
  margin: 0 auto;
}

.popup-city,
.popup-form,
.popup-check,
.popup-thanks,
.popup-number {
  width: 100%;
  top: 60px;
  position: fixed;
  z-index: 999;
}

.popup.active {
  transform: translate(-50%, 0%) scale(1);
  transition: 0.5s all;
}

.popup__address {
  padding: 24px 93px;
  max-width: 468px;
  box-shadow: 0px 0px 10px 0px #72717126;
  background-color: var(--base-0);
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  text-align: center;
  transform: translate(-50%, -50%) scale(0);
  position: relative;
  left: 50%;
}

.popup__address .address-title {
  line-height: 1.17;
  margin-bottom: 42px;
}

.popup__address ul {
  display: flex;
  flex-direction: column;
  gap: 18px;
  line-height: 1.25;
  overflow-y: auto;
  height: 250px;
}

.popup__address.active {
  transform: translate(-50%, 20%) scale(1);
  transition: 0.5s all;
}

@media (max-width: 992px) {
  .popup__address.active {
    transform: translate(-50%, 0%) scale(1);
  }
}

.history {
  margin-top: 12px;
  /* padding-top: 140px; */
}

@media (max-width:1200px) {
  .history {
    /* padding-top: 190px; */
  }

}

@media (max-width:992px) {
  .history {
    /* padding-top: 100px; */
  }

}

/* @media (max-width:550px) {
  .history{
    padding-top: 235px;
  }
  
} */
.history .history__inner {
  margin-bottom: 24px;
  line-height: 1.3;
}

@media (max-width: 990px) {
  .history .history__inner {
    text-align: left;
  }
}

.inside__model {
  margin-bottom: 64px;
}

.inside__consult {
  margin-bottom: 31px;
}

.inside__type {
  margin-bottom: 42px;
}

.inside__contact {
  margin-bottom: 76px;
}

.inside__contact .contact__block {
  display: flex;
  gap: 76px;
}

.inside__contact .contact__block .contact__block-item:nth-child(1) {
  flex: 1 0 40%;
  display: flex;
  flex-direction: column;
  gap: 68px;
}

.inside__contact .contact__block .contact__block-item:nth-child(2) {
  flex: 1 0 50%;
  box-shadow: 0px 0px 10px 0px #72717126;
}

.inside__contact .contact__block .item-form {
  margin-top: 68px;
}

.inside__contact .contact__block #map {
  width: 100%;
  height: 348px;
  padding: 0;
  margin: 0;
}

@media (max-width: 1040px) {
  .inside__contact .contact__block {
    display: flex;
    gap: 42px;
  }

  .inside__contact .contact__block .contact__block-item:nth-child(1) {
    flex: 1 0 40%;
  }

  .inside__contact .contact__block .contact__block-item:nth-child(2) {
    flex: 1 0 50%;
  }

  .inside__contact .contact__block .item-form {
    margin-top: 68px;
  }

  .inside__contact .contact__block #map {
    width: 100%;
    height: 538px;
    padding: 0;
    margin: 0;
  }

  .inside__contact .contact__block #map .ymaps-2-1-79-inner-panes {
    border-radius: 10px;
    filter: drop-shadow(0px 0px 10px rgba(114, 113, 113, 0.15));
  }
}

@media (max-width: 800px) {
  .inside__contact .contact__block {
    flex-direction: column;
    align-items: center;
  }

  .inside__contact .contact__block .contact__block-item:nth-child(1) {
    display: flex;
    flex-direction: column-reverse;
    flex: 1 0 100%;
    gap: 45px;
  }

  .inside__contact .contact__block .contact__block-item .footer__contacts {
    display: flex;
    gap: 35px;
    flex-wrap: wrap;
    align-content: center;
  }

  .inside__contact .contact__block .contact__block-item .footer__contacts-link {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-top: 0;
  }

  .inside__contact .contact__block .contact__block-item .footer__contacts-link :nth-child(2) {
    display: block;
  }

  .inside__contact .contact__block .contact__block-item .footer__contacts .footer__address-links {
    margin-bottom: 0px;
  }

  .inside__contact .contact__block .contact__block-item:nth-child(2) {
    flex: 1 0 100%;
    width: 100%;
    box-shadow: 0px 0px 10px 0px #72717126;
  }

  .inside__contact .contact__block .contact__block-item:nth-child(2) #map {
    width: 100%;
    height: 440px;
    padding: 0;
    margin: 0;
  }
}

/* .inside .title {
  margin-bottom: 0;
} */
.inside .product__bannner-inner .inner__info-bannner {
  padding: 0 24px;
  transform: translateY(-66px);
  margin-bottom: -66px;
  height: 360px;
  background: transparent;
  box-shadow: 0px 0px 10px 0px var(--base-500);
}

@media (max-width: 1120px) {
  .inside .product__bannner-inner .inner__info-bannner {
    transform: none;
    margin-bottom: 0px;
  }
}

@media (max-width: 550px) {
  .inside .product__bannner-inner .inner__info-bannner {
    padding: 0 24px;
    display: flex;
    gap: 0px;
    flex: 0 0 100%;
    align-items: center;
  }
}

.inside .product__repair .title {
  margin-bottom: 0;
}

.inside .product-paragraf-text {
  margin-top: 0;
  margin-bottom: 42px;
}

.about__inner {
  display: flex;
  flex-wrap: wrap;
  gap: 161px;
  margin-bottom: 52px;
  align-items: center;
}

.about__inner .about__inner-block:nth-child(1) {
  line-height: 1.25;
  flex: 1 0 30%;
}

.about__inner .about__inner-block:nth-child(2) {
  line-height: 1.43;
  flex: 1 0 41%;
}

.about__inner .about__inner-block .block__list {
  gap: 42px 32px;
}

.about__inner .about__inner-block .block__list .block__list-item {
  flex: 1 0 35%;
}

.about__inner .about__inner-block .block__list .block__list-item .item {
  flex: 0 0 90%;
  padding: 15px 16px 15px 44px;
  display: flex;
  align-items: center;
}

@media (max-width: 550px) {
  .about__inner {
    gap: 52px;
    margin-bottom: 0;
  }
}

.info__inner {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

/* @media (max-width: 550px) {
  .info__inner {
    flex-direction: column;
  }
} */

.quantity__inner-list {
  display: flex;
  gap: 42px;
  align-items: flex-end;
  flex-wrap: wrap;
}

.quantity__inner-list .list-item {
  flex: 1 0 13%;
  line-height: 1.16;
}

.quantity__inner-list .list-item:nth-child(1) .item-block {
  height: calc(1 * 285px);
}

.quantity__inner-list .list-item:nth-child(2) .item-block {
  height: calc(0.42 * 285px);
}

.quantity__inner-list .list-item:nth-child(3) .item-block {
  height: calc(0.37 * 285px);
}

.quantity__inner-list .list-item:nth-child(4) .item-block {
  height: calc(0.57 * 285px);
}

.quantity__inner-list .list-item:nth-child(5) .item-block {
  height: calc(0.9 * 285px);
}

.quantity__inner-list .list-item:nth-child(6) .item-block {
  height: calc(1 * 285px);
}

.quantity__inner-list .list-item .item-block {
  background: linear-gradient(138.84deg, var(--base-500) -3.22%, var(--base-400) 63.78%, var(--base-500) 133.63%);
  padding-top: 25px;
  text-align: center;
}

.quantity__inner-list .list-item .item-text {
  margin-top: 20px;
  text-align: center;
}

@media (max-width: 990px) {
  .quantity__inner-list .list-item {
    flex: 1 0 25%;
    line-height: 1.16;
  }
}

@media (max-width: 550px) {
  .quantity__inner-list .list-item {
    flex: 1 0 25%;
    line-height: 1.16;
  }

  .quantity__inner-list .list-item:nth-child(1) .item-block {
    height: calc(1 * 170px);
  }

  .quantity__inner-list .list-item:nth-child(2) .item-block {
    height: calc(0.42 * 170px);
  }

  .quantity__inner-list .list-item:nth-child(3) .item-block {
    height: calc(0.37 * 170px);
  }

  .quantity__inner-list .list-item:nth-child(4) .item-block {
    height: calc(0.57 * 170px);
  }

  .quantity__inner-list .list-item:nth-child(5) .item-block {
    height: calc(0.9 * 170px);
  }

  .quantity__inner-list .list-item:nth-child(6) .item-block {
    height: calc(1 * 170px);
  }

  .quantity__inner-list .list-item .item-block {
    background: linear-gradient(138.84deg, var(--base-500) -3.22%, var(--base-400) 63.78%, var(--base-500) 133.63%);
    padding-top: 25px;
    text-align: center;
  }

  .quantity__inner-list .list-item .item-text {
    margin-top: 20px;
    text-align: center;
  }
}

.delivery__inner {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}

.delivery__inner .delivery__inner-block {
  flex: 1 0 48.5%;
}

.delivery__inner .delivery__inner-block .block__img {
  border-radius: 10px;
  background: linear-gradient(138.84deg, var(--base-500) -3.22%, var(--base-400) 63.78%, var(--base-500) 133.63%);
  line-height: 1.17;
  height: 100%;
  flex: 1 0 60%;
  position: relative;
}

.delivery__inner .delivery__inner-block .block__img .block__img-text {
  padding: 24px 0 0 24px;
  position: absolute;
  width: 60%;
}

.delivery__inner .delivery__inner-block .block__img .block__img-image {
  float: right;
}

.delivery__inner .delivery__inner-block .block__text {
  line-height: 1.25;
  display: flex;
  flex-direction: column;
  gap: 65px;
}

.delivery__inner .delivery__inner-block .block__text .block__idea {
  margin: 0;
}

@media (max-width: 550px) {
  .delivery__inner .delivery__inner-block .block__img .block__img-text {
    width: 86%;
  }

  .delivery__inner .delivery__inner-block .block__img .block__img-image {
    overflow: hidden;
  }

  .delivery__inner .delivery__inner-block .block__img .block__img-image img {
    width: 105%;
    transform: translateX(65px);
  }

  .delivery__inner .delivery__inner-block .block__text {
    gap: 24px;
  }
}

.problem .problem__block {
  display: flex;
  gap: 58px;
  justify-content: center;
  flex-wrap: wrap;
}

.problem .problem__block .block__list {
  line-height: 1.18;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.problem .problem__block .block__list .block__list-item {
  text-decoration: underline;
  position: relative;
}

.problem .problem__block .block__list .block__list-item::before {
  top: 25%;
  left: -20px;
  position: absolute;
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 100%;
  background-color: var(--base-500);
}

.problem .problem__achievement-cards {
  margin-top: 84px;
}

@media (max-width: 550px) {
  .problem .problem__block {
    display: flex;
    gap: 58px;
    justify-content: center;
    flex-wrap: wrap;
  }

  .problem .problem__block .block__list {
    line-height: 1.18;
    display: flex;
    flex-direction: column;
    gap: 14px;
  }

  .problem .problem__block .block__list:nth-child(2) {
    display: none;
  }

  .problem .problem__block .block__list:nth-child(3) {
    display: none;
  }

  .problem .problem__block .block__list .block__list-item {
    text-decoration: underline;
    position: relative;
  }

  .problem .problem__block .block__list .block__list-item::before {
    top: 25%;
    left: -20px;
    position: absolute;
    content: "";
    width: 10px;
    height: 10px;
    border-radius: 100%;
    background-color: var(--base-500);
  }
}

.popular__inner {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}

.popular__inner .popular__inner-card {
  padding: 32px 24px 24px 24px;
  box-shadow: 0px 0px 10px 0px #72717126;
  flex: 1 0 15%;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  min-height: 225px;
  transform: translate(0);
  transform-style: preserve-3d;
  transition: all 0.5s ease-in-out;
}

.popular__inner .box-shadow::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0;
  border-radius: 60px;
  transform: translate3d(0, 0, -1px);
  background: linear-gradient(138.84deg, var(--base-500) -3.22%, var(--base-400) 63.78%, var(--base-500) 133.63%);
  filter: blur(15px);
  clip-path: polygon(-100vmax -100vmax,
      100vmax -100vmax,
      100vmax 100vmax,
      -100vmax 100vmax,
      -100vmax -100vmax,
      0 0,
      0 100%,
      100% 100%,
      100% 0,
      0 0);
  transition: all 0.5s ease-in-out;
}

.popular__inner .popular__inner-card:hover {
  transform: translateY(-5px);
}

.popular__inner .box-shadow:hover::before {
  opacity: 1;
}

.popular__inner .popular__inner-card::after {
  /* position: absolute;
  content: "";
  background: linear-gradient(138.84deg, var(--base-500) -3.22%, var(--base-400) 63.78%, var(--base-500) 133.63%);
  opacity: 0;
  width: 100%;
  height: 100%;
  left: 0;
  bottom: 0;
  border-radius: 10px;
  transition: all 0.3s ease-in-out;
  z-index: -1;
  transform: translate(-10px, -10px); */
}

.popular__inner .popular__inner-card:hover::after {
  opacity: 1;
}

.popular__inner .popular__inner-card .card-crop {
  max-width: 160px;
}

.popular__inner .popular__inner-card .card-crop .card-crop-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* .popular__inner .popular__inner-card:hover .card-text-item {
  color: var(--base-0);
} */
.popular__inner .popular__inner-card img {
  position: relative;
  z-index: 5;
}

.popular__inner .popular__inner-card .card-text {
  line-height: 1.19;
  margin-top: auto;
  display: flex;
  align-items: center;
  gap: 38px;
  position: relative;
  z-index: 5;
}

.inner-list {
  gap: 32px;
  margin-bottom: 0;
}

.inner-list .list-item-img {
  flex: 0 0 48%;
  gap: 13px;
}

.inner-list .list-item-img img {
  transform: none;
}

.inner-list .list-item-text {
  flex: 0 0 48%;
}

@media (max-width: 805px) {
  .inner-list .list-item-img {
    flex: 0 0 100%;
  }

  .inner-list .list-item-text {
    flex: 0 0 100%;
  }
}

.product__price .product__price-header {
  display: flex;
  align-items: center;
  gap: 215px;
  padding: 0px 95px 0px 28px;
  line-height: 1.25;
  margin-bottom: 24px;
}

.product__price .product__price-header :nth-child(1) {
  margin-right: auto;
}

@media (max-width: 1120px) {
  .product__price .product__price-header {
    gap: 19.196vw;
    padding: 0;
    margin-bottom: 12px;
    padding: 0px 95px 0px 28px;
  }

  .product__price .product__price-header .header-title {
    font-size: 16px;
  }
}

@media (max-width: 550px) {
  .product__price .product__price-header {
    gap: 45px;
    padding: 0;
    margin-bottom: 12px;
  }

  .product__price .product__price-header .header-title {
    font-size: 14px;
  }
}

.product-paragraf-text {
  text-align: center;
  width: 45%;
  margin: 0 auto;
  line-height: 1.4;
  margin-top: 30px;
  margin-bottom: 38px;
}

@media (max-width: 990px) {
  .product-paragraf-text {
    width: 100%;
  }
}

.product__bannner-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 42px;
  justify-content: center;
}

.product__bannner-inner .inner__info {
  display: flex;
  gap: 24px;
  flex-direction: row;
  flex-wrap: wrap;
  flex: 0 0 100%;
  justify-content: space-between;
  align-items: center;
}

.product__bannner-inner .inner__info .inner__info-title {
  margin-bottom: 0;
  flex: 0 1 50%;
}

.product__bannner-inner .inner__info .inner__info-title.r-70 {
  padding-right: 70px;
}

.product__bannner-inner .inner__info .inner__info-text {
  line-height: 1.25;
  padding-right: 42px;
  margin-top: 24px;
}

.product__bannner-inner .inner__info .inner__info-block {
  flex: 0 0 49%;
}

.product__bannner-inner .inner__info-achievement-cards {
  flex: 0 0 85%;
  margin: 0 auto;
}

.product__bannner-inner .inner__info-bannner {
  padding: 0 48px;
  border-radius: 10px;
  background: linear-gradient(138.84deg, var(--base-500) -3.22%, var(--base-400) 63.78%, var(--base-500) 133.63%);
  display: flex;
  gap: 48px;
  flex: 0 0 45%;
  align-items: center;
  transform: translateY(-110px);
  margin-bottom: -110px;
}

.product__bannner-inner .inner__info-bannner .bannner-crop {
  flex: 1 0 49%;
  max-width: 235px;
  max-height: 333px;
  height: 100%;
}

.product__bannner-inner .inner__info-bannner .bannner-crop .bannner-crop-img {
  margin: 0 auto;
  max-width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.product__bannner-inner .inner__info-bannner .bannner__card {
  margin: 48px 0;
  box-shadow: 0px 0px 10px 0px #72717126;
  background-color: var(--base-0);
  padding: 20px 22px 31px 23px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  flex: 0 0 42%;
  border-radius: 10px;
}

.product__bannner-inner .inner__info-bannner .bannner__card .bannner__card-percent {
  font-weight: 900;
  line-height: 1.2;
}

.product__bannner-inner .inner__info-bannner .bannner__card .bannner__card-text {
  line-height: 1.25;
}

.product__bannner-inner .inner__info-bannner .bannner__card .bannner__card-line {
  width: 100%;
  height: 2px;
  background-color: var(--base-500);
  border-radius: 10px;
}

.product__bannner-inner .inner__info-bannner .bannner__card .bannner__card-precounter {
  line-height: 1.25;
}

.product__bannner-inner .inner__info-bannner .bannner__card .bannner__card-counter {
  line-height: 1.19;
}

@media (max-width: 1120px) {
  .product__bannner-inner {
    display: flex;
    flex-wrap: wrap;
    gap: 42px;
    justify-content: center;
  }

  .product__bannner-inner .inner__info {
    flex: 0 0 100%;
    flex-direction: column;
    align-items: center;
    flex-wrap: nowrap;
  }

  .product__bannner-inner .inner__info .inner__info-title {
    text-align: left;
    margin-bottom: 0;
    margin-right: inherit;
    flex: 1 1 100%;
  }

  .product__bannner-inner .inner__info .inner__info-title.r-70 {
    padding-right: 70px;
  }

  .product__bannner-inner .inner__info .inner__info-block {
    flex: 0 1 49%;
    order: 4;
  }

  .product__bannner-inner .inner__info .inner__info-text {
    line-height: 1.25;
    padding-right: 42px;
  }

  .product__bannner-inner .inner__info-bannner {
    transform: none;
    margin: 0;
  }

  .product__bannner-inner .inner__info-bannner img {
    margin: 24px 0;
  }
}

@media (max-width: 550px) {
  .product__bannner-inner {
    display: flex;
    flex-wrap: wrap;
    gap: 42px;
    justify-content: center;
  }

  .product__bannner-inner .inner__info {
    flex: 1 0 50%;
    display: flex;
    flex-direction: column;
    gap: 24px;
    height: fit-content;
  }

  .product__bannner-inner .inner__info .form-box {
    margin-top: 100px;
  }

  .product__bannner-inner .inner__info .inner__info-title {
    margin-bottom: 0;
  }

  .product__bannner-inner .inner__info .inner__info-title.r-70 {
    padding-right: 70px;
  }

  .product__bannner-inner .inner__info .inner__info-text {
    line-height: 1.25;
    padding-right: 42px;
  }

  .product__bannner-inner .inner__info-achievement-cards {
    flex: 0 0 77%;
    margin: 0 auto;
  }

  .product__bannner-inner .inner__info-bannner {
    padding: 24px 48px 0;
    gap: 0px;
    align-items: center;
    flex-direction: column;
  }

  .product__bannner-inner .inner__info-bannner img {
    flex: 1 0 49%;
    height: fit-content;
    margin: 0;
  }

  .product__bannner-inner .inner__info-bannner .bannner__card {
    margin: 30px 0;
    padding: 20px 22px 31px 23px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    flex: 0 0 42%;
    transform: translateY(145px);
    margin-top: -134px;
  }

  .product__bannner-inner .inner__info-bannner .bannner__card .bannner__card-line {
    width: 100%;
    height: 2px;
  }
}

.page-content {
  padding: 42px 0;
}

.politika-table {
  line-height: 1.2;
}

.politika-table .block-text-paragraf {
  margin-bottom: 24px;
}

.politika-table .block-text-privace .text-item {
  margin: 16px 0;
}

.politika-table .block-text-privace p {
  margin-bottom: 10px;
}

.politika-table .block-text-privace ul {
  margin-bottom: 10px;
}

.politika__info-block {
  margin-bottom: 46px;
}

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


.req {
  display: flex;
  flex-direction: column;
  margin-top: 24px;
}

.req p {
  font-size: 16px;
  line-height: 1.4;
}

.req p:first-child {
  font-weight: 700;
  text-transform: uppercase;
}









.sale_block-modal {
  background-color: var(--base-500);
  position: fixed;
  bottom: 0px;
  color: var(--white);
  z-index: 95;
  width: 100%;
  padding-top: 10px;
  padding-bottom: 10px;
  left: 0;
}

.sale_block-modal.hide {
  opacity: 0;
  pointer-events: none;
}

.sale_block-modal .form {
  padding: 0;
  background: none;
  background-color: none;
  flex-wrap: nowrap;
}

.sale_block-modal .sale-form.form {
  display: flex;
}

.sale_block-modal .form .form__input-btn {
  min-width: fit-content;
}

.sale_block-modal .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.sale_block-modal .form .form__input {
  min-width: fit-content;
  border: 1px solid var(--gray);
  border-radius: 100px;
  display: flex;
  padding: 10px 10px 10px 20px;
  max-width: 206px;
  align-items: center;
  background-color: white;
  height: 45px;
  margin-bottom: 0;
  margin-right: 10px;
  font-size: 16px;
}

#t1 {
  font-size: 18px;
}

.align-center.text-16.White.w-500 {
  text-align: center;
  line-height: 20px;
}

.fixed_success {
  height: 45px;
  margin: auto 0;
  font-size: 14px;
}

.sale_block-modal [name="your-tel"] {
  width: 100%;
}

.sale-modal-close svg {
  cursor: pointer;
}

.sale-modal-close svg path {
  stroke: white
}

@media (max-width:1050px) {
  .sale_block-modal {
    display: none;
  }
}

.box___prvu_model {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
  max-height: 432px;
  overflow-y: auto;
  padding: 16px;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 4px;
}

.models__cards {
  padding: 80px 0;
  background-color: #F9F9F9;
}

.card_bodel_prevu {
  padding: 10px;
  font-size: 13px;
  border: 1px solid black;
  text-align: center;
  border-radius: 4px;
  line-height: 16px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all .3s;
}

.card_bodel_prevu:hover {
  background-color: var(--base-500);
  color: white;
  cursor: pointer;
}

.devices__cards {
  padding: 80px 0;
}

.box___prvu_type {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.card_type_prevu {
  display: block;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border: 1px solid var(--base-500);
  padding: 20px;
  border-radius: 8px;
  transition: all .3s;
}

.card_type_prevu:hover {
  box-shadow: 0 10px 10px rgb(0 0 0 / 20%);
}

.card_type_prevu img {
  max-height: 200px;
  max-width: 160px;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.card_type_prevu span {
  font-size: 16px;
  display: block;
  text-align: center;
  margin-top: 14px;
  color: var(--base-500);
  text-transform: uppercase;
}

.box__type_load_device {
  margin-top: 30px;
  display: flex;
  justify-content: center;
}

.hide_card_device .card_type_prevu:nth-child(n + 7) {
  display: none;
}

@media (max-width: 1200px) {
  .box___prvu_model {
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
  }
}

@media (max-width: 960px) {
  .box___prvu_model {
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
  }
}

@media (max-width: 768px) {
  .box___prvu_model {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }

  .box___prvu_type {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }
}

@media (max-width: 560px) {
  .box___prvu_model {
    grid-template-columns: repeat(1, 1fr);
    gap: 8px;
  }

  .box___prvu_type {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }
}



@media (min-width: 992px) {
  .product__bannner {
    padding-top: 210px;
  }
}

@media (max-width: 992px) {
  .product__bannner {
    padding-top: 180px;
  }

  .product__bannner-inner .inner__info-bannner .bannner-crop {
    display: none;
  }

  .product__bannner-inner .inner__info .inner__info-title {
    font-size: 25px;
    font-family: arial, sans-serif;
    line-height: 1.1;
  }

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

.option__cards .option__cards-item.for-repair {
  justify-content: space-between;
}

@media (max-width:790px) {
  .option__cards .option__cards-item.for-repair .item-title {
    width: 70%;
    text-align: left;
  }

  .option__cards .option__cards-item.for-repair {
    padding: 10px 20px;
  }
}








.achievement-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.achievement-cards>.title {
  grid-column: 1 / -1;
}

@media (min-width: 768px) {
  .achievement-cards {
    grid-template-columns: repeat(auto-fit, minmax(25%, 1fr));
  }
}

.header-offer__list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding-bottom: 40px;
}

.header-offer__list li {
  font-size: 16px;
  line-height: 20px;
  list-style-type: disc;
  margin-left: 24px;
}