@charset "UTF-8";
*,
*::before,
*::after {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

a {
  text-decoration: none;
}

button {
  background-color: transparent;
  border: none;
  outline: none;
  cursor: pointer;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  font-size: inherit;
}

img {
  vertical-align: top;
}

input,
textarea,
button,
select {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  background-color: transparent;
}

input[type=submit] {
  display: inline-block;
  box-shadow: none;
  background-color: transparent;
  background: none;
  cursor: pointer;
}

input:focus,
input:active,
button:focus,
button:active {
  outline: none;
}

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

label {
  cursor: pointer;
}

legend {
  display: block;
}

input[type=file] {
  max-width: 100%;
}

:root {
  --font-family: "Helvetica", sans-serif;
  --second-family: "Gotham", sans-serif;
  --accent-color: linear-gradient(178deg, #187cf9 0%, #009fe3 100%);
  --color-bg: #fff;
  --layout-bg: linear-gradient(180deg, #4496f7 0%, #327cf7 100%);
  --color-title: #010101;
  --color-text: #313133;
  --color-black: #111;
  --color-white: #fff;
}

html {
  min-height: 100%;
  overflow-x: hidden;
}

body {
  font-family: var(--font-family);
  font-size: 14px;
  font-weight: 400;
  background-color: var(--bg-color);
  height: 100%;
}

.wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  overflow-x: hidden;
}

main {
  position: relative;
  flex: 1 1 0;
}

.page-main {
  padding-top: 150px;
}

.container {
  max-width: 1260px;
  padding: 0 10px;
  margin: 0 auto;
}

.no-scroll {
  overflow: hidden;
  height: 100vh;
}

.title {
  font-family: var(--second-family);
  font-size: 40px;
  font-weight: 700;
  color: var(--color-title);
  line-height: 1.05;
}

.logo img {
  max-width: 130px;
  height: 40px;
}

.call-wrap {
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 20px;
  position: fixed;
  bottom: 30px;
  right: 40px;
  z-index: 98;
}

.call {
  width: 65px;
  height: 65px;
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #ff6e6b;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}
.call svg {
  width: 34px;
  height: 34px;
  transition: transform 0.3s ease;
}
.call:hover {
  animation: shake 0.4s infinite;
}

@keyframes shake {
  0% {
    transform: rotate(0deg);
  }
  10% {
    transform: rotate(-10deg);
  }
  20% {
    transform: rotate(10deg);
  }
  30% {
    transform: rotate(-8deg);
  }
  40% {
    transform: rotate(8deg);
  }
  50% {
    transform: rotate(-6deg);
  }
  60% {
    transform: rotate(6deg);
  }
  70% {
    transform: rotate(-4deg);
  }
  80% {
    transform: rotate(4deg);
  }
  90% {
    transform: rotate(-2deg);
  }
  100% {
    transform: rotate(0deg);
  }
}
.header {
  position: relative;
  /* ---------- LANG ---------- */
  /* ---------- BODY ---------- */
  /* ---------- SUBMENU ---------- */
  /* ---------- BURGER ---------- */
}
.header__top {
  background: var(--accent-color);
  padding: 11px 0 10px;
}
.header__top .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}
.header__lang {
  color: var(--color-white);
  display: flex;
  align-items: center;
  gap: 7px;
  position: relative;
  cursor: pointer;
}
.header__lang span {
  font-weight: 700;
  text-transform: uppercase;
}
.header__lang-list {
  position: absolute;
  top: 25px;
  left: 0;
  background: #fff;
  border-radius: 6px;
  padding: 8px 0;
  display: none;
  flex-direction: column;
  gap: 5px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}
.header__lang-list a {
  display: block;
  padding: 6px 15px;
  color: #000;
}
.header__lang-list a:hover {
  background: #eee;
}
.header__lang.active .header__lang-list {
  display: flex;
}
.header__links {
  display: flex;
  gap: 50px;
}
.header__links a {
  color: var(--color-white);
  line-height: 1;
}
.header__body {
  padding: 22px 0 23px;
}
.header__inner {
  display: flex;
  align-items: center;
  gap: 120px;
}
.header__logo {
  max-width: 130px;
}
.header__logo img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.header__list {
  display: flex;
  align-items: center;
  gap: 40px;
  list-style: none;
}
.header__item-default {
  cursor: default;
}
.header__item-link {
  display: flex;
  align-items: center;
  gap: 8px;
  line-height: 1;
  color: #000;
  transition: color 0.3s ease;
}
.header__item-link.active {
  color: #078ed4;
}
.header__item-link svg {
  transition: all 0.3s ease-in;
}
.header__item-link:hover {
  color: #078ed4;
}
.header__item-link:hover svg {
  transform: rotate(-180deg);
}
.header__item-link:hover svg path {
  stroke: #078ed4;
  transition: all 0.3s ease-in;
}
.header__item--submenu {
  position: relative;
}
@media (hover: hover) and (pointer: fine) {
  .header__item--submenu:hover .header__submenu {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }
}
.header__submenu {
  position: absolute;
  z-index: 99;
  top: 14px;
  left: 0;
  background: #fff;
  padding: 15px 0;
  border-radius: 10px;
  min-width: 170px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: 0.3s ease;
  list-style: none;
}
.header__submenu a {
  padding: 10px 20px;
  display: block;
  color: #000;
}
.header__submenu a:hover {
  background: #f5f5f5;
}
.header__burger {
  display: none;
  width: 28px;
  height: 22px;
  flex-direction: column;
  justify-content: space-between;
  background: none;
  border: none;
  cursor: pointer;
  margin-left: auto;
  position: relative;
  z-index: 97;
}
.header__burger span {
  width: 100%;
  height: 3px;
  background: #000;
  border-radius: 3px;
  transition: 0.3s;
}

.header__burger.active span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}

.header__burger.active span:nth-child(2) {
  opacity: 0;
}

.header__burger.active span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

.hero {
  font-family: var(--second-family);
  padding: 100px 0 120px;
  position: relative;
}
.hero .decor-bg {
  position: absolute;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  pointer-events: none;
  -webkit-user-drag: none;
  user-drag: none;
  max-width: 100%;
  height: auto;
}
.hero .decor-bg-top {
  top: 0;
  right: 0;
}
.hero .decor-bg-bottom {
  left: 0;
  bottom: -80%;
}
.hero .decor-bg-bottom-right {
  right: 0;
  bottom: -80%;
}
.hero__body {
  position: relative;
}
.hero__title-wrap {
  max-width: 908px;
  position: relative;
  margin: 0 auto 30px;
  display: flex;
  justify-content: end;
  align-items: start;
}
.hero__title {
  font-size: 50px;
  text-align: center;
  text-wrap: balance;
  line-height: 1.1;
}
.hero__title span {
  background: var(--accent-color);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero__cursour {
  max-width: 91px;
}
.hero__subtitle {
  font-family: "Poppins", sans-serif;
  text-align: center;
  font-weight: 700;
  font-size: 20px;
  line-height: 1.25;
  color: #313133;
  margin-bottom: 90px;
}
.hero__info {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-bottom: 120px;
}
.hero__video {
  max-width: 606px;
  height: 400px;
  border-radius: 30px;
  overflow: hidden;
}
.hero__img {
  position: relative;
  padding: 15px 16px 15px 0;
}
.hero__img img {
  border-radius: 30px;
  position: relative;
  z-index: 3;
  width: 607px;
  height: 400px;
}
.hero__img .cube {
  border-radius: 20px;
  width: 520px;
  height: 430px;
  background: var(--accent-color);
  position: absolute;
  top: 0;
  right: 0;
}

.steps {
  font-family: var(--second-family);
  display: flex;
  align-items: stretch;
  gap: 30px;
  position: relative;
  z-index: 50;
}
.steps__item {
  max-width: 393px;
  width: 100%;
  height: 280px;
  position: relative;
  padding: 40px 36px;
  background: #d3e8fe;
  border-radius: 40px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: 0.3s ease-in;
}
.steps__item:hover {
  background: linear-gradient(178deg, #2298fb 0%, #1068f8 100%);
}
.steps__item:hover .steps__title {
  color: var(--color-white);
}
.steps__item:hover .steps__num {
  color: rgba(255, 255, 255, 0.5);
}
.steps__title {
  font-weight: 700;
  font-size: 20px;
  line-height: 1.1;
  text-transform: uppercase;
  color: #111;
  transition: color 0.2s ease-in;
}
.steps__num {
  font-size: 100px;
  line-height: 1;
  color: rgba(255, 255, 255, 0.9);
  transition: color 0.2s ease-in;
}
.steps__img {
  max-width: 217px;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  bottom: 0;
  right: 0;
}

.main-about {
  font-family: var(--second-family);
  padding: 100px 0 60px;
  background-color: var(--color-bg);
  position: relative;
  z-index: 11;
  border-radius: 40px 40px 0 0;
}
.main-about__title {
  text-align: center;
  margin-bottom: 30px;
}
.main-about p {
  margin-bottom: 25px;
  line-height: 1.36;
  text-align: justify;
  color: rgba(17, 17, 17, 0.8);
}
.main-about__banner {
  margin-bottom: 40px;
}
.main-about__banner img {
  border-radius: 30px;
  width: 100%;
  height: 350px;
  object-fit: cover;
}
.main-about__info {
  border-radius: 30px;
  background: rgba(211, 232, 254, 0.3019607843) url("./../assets/img/main-about-bg.png") no-repeat;
  background-size: cover;
  padding: 30px 15px;
  display: flex;
  justify-content: center;
  width: 100%;
}
.main-about__info-inner {
  display: flex;
  align-items: center;
}
.main-about__block {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  margin-right: 50px;
  text-align: center;
  max-width: 125px;
}
.main-about__block:last-child {
  margin-right: 34px;
}
.main-about__block-title {
  font-weight: 500;
  font-size: 30px;
  line-height: 0.83;
  color: #136fba;
}
.main-about__block-text {
  font-weight: 400;
  line-height: 1.14;
  color: rgba(17, 17, 17, 0.8);
  text-wrap: balance;
  text-align: center;
}
.main-about__block-link {
  font-family: var(--font-family);
  display: inline-block;
  font-size: 16px;
  line-height: 1.13;
  color: var(--color-white);
  padding: 10px 52px;
  border-radius: 100px;
  background: linear-gradient(0deg, #458dfa 0%, #2c7cf9 100%);
  transition: 0.3s ease;
}
.main-about__block-link:hover {
  color: var(--accent-color);
  background: #fff;
}
.main-about__block-heading {
  font-family: var(--second-family);
  font-weight: 500;
  font-size: 25px;
  line-height: 1.2;
  color: #010101;
}
.main-about__block-subtitle {
  font-family: var(--second-family);
  font-weight: 500;
  font-size: 16px;
  line-height: 113%;
  text-align: center;
  color: rgba(17, 17, 17, 0.8);
  text-wrap: balance;
}

.autofinance {
  position: relative;
  padding: 50px 0 70px;
  margin-bottom: 50px;
  overflow-x: hidden;
}
.autofinance_title {
  z-index: 4;
  font-weight: 700;
  font-size: 150px;
  line-height: 1;
  color: #fff;
  position: absolute;
  bottom: 133px;
  right: -130px;
  font-style: italic;
}
.autofinance__inner {
  position: relative;
  z-index: 2;
}
.autofinance__img-top {
  position: relative;
  z-index: 3;
}
.autofinance__img-bt {
  height: 593px;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 5;
}
.autofinance__bg {
  border-radius: 30px;
  background: linear-gradient(180deg, #4496f7 0%, #327cf7 100%);
  width: 100%;
  height: 475px;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 1;
}

.demo {
  padding: 100px 0;
}
.demo__inner {
  padding-left: 50px;
  display: flex;
  align-items: center;
  gap: 110px;
}
.demo__img {
  max-width: 472px;
  height: 566px;
}
.demo__img img {
  width: 100%;
  height: 100%;
}
.demo__info {
  max-width: 467px;
}
.demo__title {
  font-weight: 700;
  font-size: 40px;
  line-height: 1.05;
  color: #010101;
  margin-bottom: 50px;
}
.demo__list {
  margin-bottom: 50px;
  display: flex;
  flex-direction: column;
  gap: 50px;
  position: relative;
  padding-left: 30px;
  list-style: none;
}
.demo__list::before {
  content: "";
  position: absolute;
  left: 7px;
  top: 12px;
  bottom: 10px;
  width: 2px;
  border-left: 2px dashed #bcd5ff;
}
.demo__item {
  font-size: 18px;
  color: #111;
  max-width: 390px;
  position: relative;
  display: flex;
  align-items: center;
}
.demo__item::before {
  content: "";
  position: absolute;
  left: -30px;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  background: #307ffa;
  border-radius: 100%;
}
.demo__links {
  display: flex;
  gap: 20px;
}
.demo__save {
  padding: 12px 78px 10px;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.13;
  text-align: center;
  color: #fff;
  border-radius: 100px;
  background: linear-gradient(0deg, #458dfa 0%, #2c7cf9 100%);
  line-height: 1;
  transition: 0.2s ease;
}
.demo__save:hover {
  transform: scale(0.92);
}
.demo__link {
  padding: 11px 50px;
  border: 1px solid #2c7cf9;
  border-radius: 25px;
  color: #111;
  line-height: 1;
  transition: 0.2s ease;
  text-align: center;
}
.demo__link:hover {
  transform: scale(0.92);
}

.service {
  padding: 50px 0 150px;
  position: relative;
}
.service__inner {
  position: relative;
  z-index: 10;
}
.service .decor-4 {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
  max-width: 100%;
  z-index: -1;
}
.service__title {
  margin-bottom: 50px;
  font-weight: 700;
  font-size: 40px;
  color: #010101;
}
.service__subtitle {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 20px;
  line-height: 125%;
  text-align: center;
  color: #313133;
  margin-bottom: 50px;
}

.service__link {
  display: inline-flex;
  gap: 20px;
  color: #fff;
  padding: 14px 30px;
  border: 1px solid #fff;
  border-radius: 20px;
  margin-top: 15px;
  max-width: 170px;
  transition: .2s ease-in-out;
}

.service__link:hover {
  transform: scale(1.04);
}

.service__link svg {
  flex-shrink: 0;
}

.service-page .service__title {
  text-align: center;
  margin-bottom: 30px;
}

.services {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  align-items: start;
  position: relative;
  z-index: 3;
}
.services__item {
  flex: 1 1 calc(50% - 15px);
  max-width: 600px;
  width: 100%;
  height: 300px;
  border-radius: 30px;
  background: linear-gradient(180deg, #4496f7 0%, #327cf7 100%);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  position: relative;
  padding: 40px;
}
.services__num {
  font-family: var(--second-family);
  font-size: 100px;
  font-weight: 400;
  line-height: 1;
  color: rgba(255, 255, 255, 0.3019607843);
}
.services__text {
  font-family: var(--second-family);
  margin: 5px 0 15px;
  font-size: 16px;
  color: var(--color-white);
  max-width: 308px;
  text-wrap: balance;
}
.services__link {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px 0;
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 16px;
  color: var(--color-white);
  border: 1px solid var(--color-white);
  border-radius: 23px;
  width: 166px;
  transition: 0.3s ease-in;
}
.services__link:hover {
  transform: scale(1.02);
}
.services__img {
  position: absolute;
  width: 260px;
  height: 100%;
  right: 0;
  top: 0;
  bottom: 0;
  border-radius: 80% 0 0 80%;
  -o-object-fit: cover;
     object-fit: cover;
  filter: brightness(70%);
}

.reviews {
  padding: 100px 0;
  background: linear-gradient(180deg, #4496f7 0%, #327cf7 100%);
  border-radius: 30px;
  overflow-x: hidden;
  position: relative;
  z-index: 11;
}
.reviews__head {
  margin-bottom: 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.reviews__title {
  font-family: var(--font-family);
  color: var(--color-white);
}
.reviews__link {
  color: var(--color-white);
  padding: 12px 30px;
  font-size: 18px;
  border: 1px solid #fff;
  border-radius: 23px;
  transition: 0.2s ease;
}
.reviews__link:hover {
  transform: scale(0.92);
}
.reviews__swiper {
  overflow: visible;
}

.review {
  border-radius: 30px;
  background: var(--color-white);
  max-width: 287px;
  overflow: visible;
}
.review__head {
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.review__head-ava {
  width: 30px;
  height: 30px;
  border-radius: 100%;
}
.review__head-titles {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.review__head-name {
  color: #111;
}
.review__head-info {
  color: rgba(17, 17, 17, 0.8);
}
.review__img {
  position: relative;
}
.review__img img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 400px;
}
.review__all {
  display: block;
  padding: 8px 20px;
  font-size: 12px;
  font-weight: 700;
  color: #136fba;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1019607843);
}
.review__btns {
  display: flex;
  align-items: start;
  padding: 0 20px;
  margin: 10px 0;
  gap: 15px;
}
.review__like {
  padding: 0 20px 13px;
  display: flex;
  align-items: center;
  gap: 7px;
}
.review__like img {
  width: 17px;
  height: 17px;
  border-radius: 100%;
}

.save {
  margin-left: auto;
}

.swiper-horizontal > .swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal,
.swiper-pagination-custom,
.swiper-pagination-fraction {
  position: absolute;
  bottom: 30px;
  z-index: 11;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  justify-content: center;
}

.swiper-pagination-bullet {
  background: rgb(255, 255, 255);
}

.swiper-pagination-bullet-active {
  background: #3897f0;
}

.faq {
  padding: 130px 0 50px;
  background: linear-gradient(180deg, rgba(26, 132, 250, 0.06) 0%, rgba(255, 255, 255, 0.11) 66.96%);
  /* active state */
}
.faq__inner {
  max-width: 820px;
  margin: 0 auto;
}
.faq__title {
  text-align: center;
  margin-bottom: 45px;
}
.faq__item {
  border-bottom: 1px solid #e5e5e5;
  padding: 20px 0;
}
.faq__item:first-child {
  border-top: 1px solid #e5e5e5;
}
.faq__question {
  font-family: var(--second-family);
  width: 100%;
  background: none;
  border: none;
  padding: 0;
  font-size: 20px;
  font-weight: 700;
  cursor: pointer;
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.faq__question:hover {
  color: #000;
}
.faq__icon {
  width: 22px;
  height: 22px;
  position: relative;
  flex: 0 0 20px;
  background: url("./../assets/icons/open.svg") center/contain no-repeat;
  transition: 0.3s ease;
}
.faq__item.active .faq__icon {
  background: url("./../assets/icons/close.svg") center/contain no-repeat;
}
.faq__answer {
  font-family: var(--second-family);
  max-height: 0;
  overflow: hidden;
  font-size: 16px;
  color: rgba(17, 17, 17, 0.6);
  line-height: 1.5;
  transition: max-height 1.5s linear;
  padding-top: 15px;
}
.faq__item.active .faq__answer {
  padding-top: 15px;
  max-height: 300px;
}

/* ---------- АДАПТИВ ---------- */
@media (max-width: 768px) {
  .faq {
    padding: 50px 0;
  }
  .faq__question {
    font-size: 18px;
  }
  .faq__answer {
    font-size: 15px;
  }
}
.case {
  padding: 100px 0;
  overflow-x: hidden;
  /* === CARD === */
}
.case__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
}
.case__title {
  font-size: 36px;
  font-weight: 700;
}
.case__arrows {
  display: flex;
  gap: 12px;
}
.case__arrow {
  width: 38px;
  height: 38px;
  border: 1px solid #cfcfcf;
  border-radius: 50%;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: 0.3s;
}
.case__arrow:hover {
  background: #eef5ff;
}
.case__swiper {
  overflow: visible !important;
}
.case__card {
  min-height: 281px;
  background: #fff;
  border-radius: 22px;
  padding: 40px 30px 60px 40px;
  position: relative;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
  display: flex;
  flex-direction: column;
  gap: 35px;
  transition: 0.3s;
}
.case__card .case__quote {
  position: absolute;
  bottom: 20px;
  right: 20px;
  width: 184px;
  height: 132px;
  background: url("./../assets/icons/quote.svg") no-repeat center/contain;
}
.case .swiper-slide-active {
  background: #2c7cf9;
  color: #fff;
}
.case .swiper-slide-active .case__text {
  color: #e3edff;
}
.case .swiper-slide-active .case__name span {
  color: #fff;
}
.case .swiper-slide-active .case__stars {
  color: #ffcb2b;
}
.case .swiper-slide-active .case__quote {
  background: url("./../assets/icons/quote-active.svg") no-repeat center/contain;
}
.case__user {
  display: flex;
  align-items: center;
  gap: 10px;
}
.case__user img {
  width: 55px;
  height: 55px;
  border-radius: 50%;
}
.case__name {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.case__name span {
  font-size: 18px;
  font-weight: 700;
  color: #111;
}
.case__stars {
  display: flex;
  gap: 10px;
  align-items: center;
}
.case__stars img {
  width: 23px;
  height: 23px;
}
.case__text {
  color: rgba(17, 17, 17, 0.7);
}

.breadcrumbs {
  padding-top: 50px;
}
.breadcrumbs__list {
  display: flex;
  gap: 5px;
  list-style: none;
}
.breadcrumbs__item {
  font-weight: 400;
  font-size: 14px;
  line-height: 1;
  color: #009fe3;
}
.breadcrumbs__link {
  color: #979797;
  cursor: default;
}

.catalog {
  padding: 50px 0 100px;
  position: relative;
  z-index: 11;
}
.catalog__title {
  text-align: center;
  margin-bottom: 70px;
}
.catalog__list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 394px));
  justify-content: center;
  gap: 30px 29px;
}
.catalog__item {
  max-width: 394px;
  background: #fff;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 0 30px 0 #e3edfe;
  display: flex;
  flex-direction: column;
}

.catalog__item:hover .catalog__info {
  opacity: 1;
}
.catalog__img {
  position: relative;
  max-width: 394px;
  height: 300px;
  background: #f2f2f2;
}
.catalog__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.catalog__content {
  padding: 30px;
  display: flex;
  flex-direction: column;
}
.catalog__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 18px;
}
.catalog__name {
  font-size: 16px;
  color: #313133;
}
.catalog__price {
  font-size: 20px;
  font-weight: 700;
  color: #313133;
}
.catalog__info {
  position: absolute;
  left: 16px;
  bottom: 16px;
  right: 16px;
  display: grid;
  gap: 10px;
  /* margin-bottom: 30px; */
  opacity: 0;
  transition: .2s ease-in-out;
  z-index: 2;
}
.catalog__info div {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  color: #fff;
}
.catalog__info div strong {
  color: #fff;
  font-weight: 700;
}
.catalog__btn {
  margin-top: auto;
  height: 40px;
  border-radius: 100px;
  border: none;
  background: #458DFA;
  color: #fff;
  font-size: 16px;
  transition: background 0.2s;
}
.catalog__btn:hover {
  background: #2563eb;
}

.history {
  padding: 50px 0 110px;
}
.history .container {
  max-width: 818px;
}
.history__inner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.history__title {
  margin-bottom: 70px;
  text-align: center;
}
.history__video {
  width: 100%;
  margin-bottom: 50px;
  border-radius: 30px;
  overflow: hidden;
}
.history__video iframe,
.history__video video {
  width: 100%;
}
.history__texts {
  margin: 50px 0 60px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.history__texts p {
  font-family: var(--second-family);
  line-height: 157%;
  letter-spacing: -0.03em;
  color: rgba(17, 17, 17, 0.8);
  font-size: 20px;
}
.history__subtitle {
  font-family: var(--second-family);
  font-weight: 500;
  font-size: 30px;
  line-height: 1.17;
  text-align: center;
  color: #010101;
}
.history .main-about__info {
  font-family: var(--second-family);
}
.history .main-about__block {
  max-width: 100%;
}

.team {
  padding: 80px 0 100px;
}
.team__inner {
  position: relative;
  z-index: 11;
}
.team__title {
  text-align: center;
  margin-bottom: 70px;
}
.team__list {
  display: grid;
  grid-template-columns: repeat(4, minmax(220px, 1fr));
  gap: 30px;
  margin-bottom: 50px;
  list-style: none;
}
.team__item {
  position: relative;
  height: 380px;
  border-radius: 30px;
  overflow: hidden;
}
.team__img {
  position: absolute;
  inset: 0;
}
.team__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.team__img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.15) 45%, rgba(0, 0, 0, 0.65) 100%);
}
.team__info {
  position: absolute;
  left: 30px;
  right: 20px;
  bottom: 30px;
  z-index: 2;
  color: #fff;
  display: flex;
  flex-direction: column;
  gap: 10px;
  cursor: default;
  font-family: var(--second-family);
}
.team__name {
  font-weight: 700;
  font-size: 18px;
  line-height: 89%;
  color: #fff;
}
.team__role {
  color: rgba(255, 255, 255, 0.8);
}
.team__desc {
  color: rgba(255, 255, 255, 0.8);
}
.team__pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  list-style: none;
}
.team__arrow, .team__page {
  width: 40px;
  height: 40px;
  border-radius: 100%;
  border: none;
  background: #4496F7;
  color: #fff;
  font-family: var(--second-family);
  font-weight: 700;
  font-size: 16px;
  cursor: pointer;
  opacity: 0.7;
  transition: opacity 0.2s ease;
  display: flex;
  justify-content: center;
  align-items: center;
}
.team__page.active {
  opacity: 1;
}
.team__page:hover, .team__arrow:hover {
  opacity: 1;
}

.decor-top {
  position: fixed;
  max-width: 100%;
  right: 0;
  top: 0;
  width: 741px;
  height: 741px;
}

.decor-right-bt {
  position: absolute;
  max-width: 100%;
  bottom: -320px;
  right: 0;
}

.decor-bt {
  position: fixed;
  max-width: 100%;
  width: 741px;
  height: 741px;
  left: 0;
  bottom: 0;
}

.decor-center {
  position: absolute;
  max-width: 100%;
  width: 1200px;
  height: 900px;
  top: 20px;
  left: 0;
}

.privacy {
  padding: 50px 0 100px;
  position: relative;
  z-index: 11;
}
.privacy .container {
  max-width: 1030px;
}
.privacy__inner {
  text-align: center;
}
.privacy__title {
  margin-bottom: 50px;
}
.privacy__info {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.privacy p {
  font-weight: 400;
  font-size: 14px;
  line-height: 1.57;
  text-align: justify;
  color: rgba(1, 1, 1, 0.8);
}

.not-found {
  padding: 90px 0 125px;
  position: relative;
  z-index: 11;
}
.not-found__inner {
  display: flex;
  align-items: center;
  justify-content: center;
}
.not-found__inner img {
  -o-object-fit: contain;
     object-fit: contain;
  max-width: 675px;
  width: 100%;
}

.contacts {
  position: relative;
  z-index: 11;
  padding: 50px 0 100px;
}
.contacts__title {
  text-align: center;
  margin-bottom: 50px;
}
.contacts__block {
  padding: 50px;
  background-color: #fff;
  border-radius: 30px;
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin-bottom: 50px;
}
.contacts__btns {
  display: flex;
  align-items: center;
  gap: 35px;
  flex-wrap: wrap;
  margin-bottom: 50px;
}
.contacts__map {
  overflow: hidden;
  max-width: 1240px;
  border-radius: 20px;
  height: 400px;
  margin-bottom: 100px;
}
.contacts__map iframe,
.contacts__map video {
  width: 100%;
  height: 400px;
  outline: none;
  border: none;
  border-radius: 20px;
}
.contacts__form {
  display: flex;
  align-items: center;
  gap: 115px;
  background-color: #fff;
  border-radius: 30px;
  overflow: hidden;
}
.contacts__form-img {
  max-width: 620px;
}
.contacts__form-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.contacts-block {
  flex: 1 1 280px;
  border-radius: 30px;
  background: #eef6fe;
  max-width: 360px;
  width: 100%;
  padding: 24px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.contacts-block__link {
  font-family: "Poppins", sans-serif;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: 0.3s ease;
}
.contacts-block__link:hover {
  transform: scale(1.03);
}
.contacts-block__title {
  font-size: 18px;
  font-weight: 700;
  line-height: 122%;
  color: #313133;
}
.contacts-block__text {
  font-size: 16px;
  line-height: 125%;
  color: #313133;
}
.contacts-block__social {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  align-items: center;
}
.contacts-block__social div {
  display: flex;
  align-items: center;
  gap: 15px;
}

.contacts-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  width: 220px;
  height: 50px;
  border-radius: 100px;
  background: linear-gradient(0deg, #458dfa 0%, #2c7cf9 100%);
  font-family: var(--second-family);
  font-weight: 500;
  font-size: 16px;
  line-height: 125%;
  color: #fff;
  transition: 0.3s ease;
}
.contacts-btn:hover {
  transform: scale(0.94);
}

.form {
  max-width: 393px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.form__input, .form__textarea {
  border: none;
  outline: none;
  background: #f7f5f5;
}
.form__input {
  width: 100%;
  padding: 13px 20px 14px;
  font-family: var(--second-family);
  font-weight: 400;
  font-size: 16px;
  border-radius: 6px;
  line-height: 113%;
  color: #111;
}
.form__input::-moz-placeholder {
  font-size: 16px;
  font-weight: 400;
}
.form__input::placeholder {
  font-size: 16px;
  font-weight: 400;
}
.form__textarea {
  font-family: var(--second-family);
  font-weight: 400;
  font-size: 16px;
  line-height: 113%;
  color: #111;
  padding: 13px 20px;
  border-radius: 6px;
  min-height: 120px;
}
.form__btn {
  padding: 18px 0 17px;
  font-family: var(--second-family);
  font-weight: 500;
  font-size: 20px;
  line-height: 100%;
  color: #fff;
  border-radius: 100px;
  background: linear-gradient(0deg, #458dfa 0%, #2c7cf9 100%);
}

.investors {
  padding: 50px 0 100px;
  position: relative;
  z-index: 11;
}

.investors__title {
  text-align: center;
  margin-bottom: 30px;
}

.investors__subtitle {
  font-family: "Poppins", sans-serif;
  text-align: center;
  font-size: 20px;
  font-weight: 700;
  color: #313133;
  margin-bottom: 70px;
}

.investors__card {
  background: #fff;
  border-radius: 30px;
  box-shadow: 0 0 30px 0 #e3edfe;
  padding: 50px 0 50px 50px;
  display: grid;
  grid-template-columns: 720px 400px;
  gap: 20px;
  justify-content: space-between;
  margin-bottom: 100px;
  overflow-x: hidden;
}

.investors__info {
  display: grid;
  grid-template-columns: 360px 330px;
  gap: 20px;
  font-family: var(--second-family);
}

.investors__item {
  background: #eef6ff;
  border-radius: 30px;
  padding: 33px 30px;
  width: 100%;
}
.investors__item p {
  font-weight: 500;
  font-size: 20px;
  line-height: 125%;
  color: #010101;
  display: block;
  margin-bottom: 15px;
}
.investors__item p span {
  font-weight: 500;
  font-size: 16px;
  line-height: 113%;
}
.investors__item strong {
  font-weight: 500;
  font-size: 30px;
  line-height: 83%;
  text-align: center;
  color: #136fba;
}
.investors__item-flex {
  display: flex;
  align-items: center;
  gap: 8px;
}
.investors__item-flex p {
  max-width: 117px;
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.investors__text {
  grid-column: 1/-1;
  background: #eef6ff;
  border-radius: 30px;
  padding: 40px;
  font-weight: 500;
  font-size: 20px;
  color: #010101;
}

.investors__image {
  display: flex;
  justify-content: end;
  align-items: center;
  background: #eff5fe;
  border-radius: 50% 0 0 50%;
  height: 370px;
  position: relative;
}
.investors__image img {
  position: absolute;
  right: 0;
  bottom: 0;
  max-width: 355px;
  width: 100%;
  height: 400px;
  -o-object-fit: cover;
     object-fit: cover;
}

.calculator {
  font-family: var(--second-family);
  background: linear-gradient(180deg, #4496f7 0%, #327cf7 100%);
  padding: 80px 0 100px;
  border-radius: 30px;
}
.calculator__container {
  max-width: 870px;
}
.calculator__title {
  color: #fff;
  text-align: center;
  margin-bottom: 50px;
}
.calculator__field {
  margin-bottom: 50px;
}
.calculator__field .calculator__input,
.calculator__card-phone {
  border: 1px solid #d9d9d9;
  border-radius: 10px;
  background-color: #fff;
  width: 100%;
  padding: 19px 20px 18px;
  height: 55px;
  font-size: 16px;
  color: rgba(17, 17, 17, 0.8);
}

.calculator__card-phone {
  margin-bottom: 30px;
}

.calculator__range {
  margin-bottom: 40px;
}
.calculator__range .calculator__slider {
  width: 100%;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  height: 4px;
  background: rgba(255, 255, 255, 0.5);
  background: linear-gradient(to right, #f7a200 0%, #f7a200 0%, #ddd 0%, #ddd 100%);
  border-radius: 10px;
  outline: none;
}
.calculator__range .calculator__slider::-webkit-slider-thumb {
  -webkit-appearance: none;
          appearance: none;
  width: 20px;
  height: 20px;
  background: #fff;
  border-radius: 100%;
  cursor: pointer;
}
.calculator__range-values {
  display: flex;
  justify-content: space-between;
  font-weight: 500;
  font-size: 25px;
  line-height: 120%;
  margin-top: 8px;
  color: #fff;
}
.calculator__subtitle {
  text-align: center;
  margin-bottom: 40px;
  font-size: 40px;
  font-weight: 700;
  color: #fff;
}
.calculator__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  width: 100%;
  margin-bottom: 40px;
}
.calculator__card {
  background: #ffffff;
  color: #000;
  padding: 35px 40px;
  border-radius: 12px;
}
.calculator__card-label {
  display: block;
  font-size: 16px;
  margin-bottom: 15px;
  color: #262626;
}
.calculator__card-value {
  color: #262626;
  font-size: 40px;
  font-weight: 700;
  line-height: 1;
  word-break: break-word;
}
.calculator__btn {
  font-family: var(--second-family);
  font-weight: 500;
  font-size: 16px;
  line-height: 113%;
  text-align: center;
  color: #000;
  padding: 16px;
  border-radius: 100px;
  height: 50px;
  background: #f7a200;
  width: 100%;
  display: block;
  transition: 0.3s ease;
}
.calculator__btn:hover {
  background: #ffd586;
}

.partners {
  padding: 50px 0 120px;
  position: relative;
  z-index: 11;
}
.partners__title {
  text-align: center;
  margin-bottom: 70px;
}

.terms {
  padding: 50px;
  border-radius: 30px;
  box-shadow: 0 0 30px 0 #e3edfe;
  background: #fff;
  margin-bottom: 100px;
}
.terms__title {
  margin-bottom: 30px;
}
.terms__body {
  display: flex;
  align-items: center;
  gap: 70px;
}
.terms__list {
  display: flex;
  flex-direction: column;
  gap: 30px;
  max-width: 404px;
  width: 100%;
}
.terms__item {
  background: #edf5ff;
  padding: 27px 40px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  border-radius: 30px;
}
.terms__item-title {
  font-family: var(--second-family);
  font-weight: 500;
  font-size: 20px;
  line-height: 125%;
  color: #010101;
  max-width: 210px;
  text-wrap: balance;
}
.terms__item-info {
  font-family: var(--second-family);
  font-weight: 500;
  font-size: 30px;
  line-height: 83%;
  letter-spacing: -0.02em;
  color: #136fba;
}
.terms__img {
  max-width: 624px;
}
.terms__img img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.work {
  margin-bottom: 100px;
}
.work__list {
  display: flex;
  gap: 30px;
  flex: 1 1 394px;
}
.work__item {
  padding: 40px;
  border-radius: 30px;
  background: linear-gradient(180deg, #4496f7 0%, #327cf7 100%);
  display: flex;
  flex-direction: column;
  gap: 30px;
  font-family: var(--second-family);
  width: 100%;
}
.work__num {
  font-weight: 400;
  font-size: 100px;
  line-height: 100%;
  color: rgba(255, 255, 255, 0.3);
}
.work__text {
  font-weight: 700;
  font-size: 20px;
  line-height: 125%;
  color: #fff;
}

.comparison {
  width: 100%;
  font-family: var(--second-family);
  position: relative;
}
.comparison::before, .comparison::after {
  content: "";
  position: absolute;
  display: block;
  width: 741px;
  height: 741px;
  background-repeat: no-repeat;
  background-size: cover;
  max-width: 100%;
  max-height: 100%;
}
.comparison::before {
  background-image: url("./../assets/img/decor-lg.png");
  left: -368px;
  bottom: 120px;
}
.comparison::after {
  background-image: url("./../assets/img/decor-lg.png");
  background-size: cover;
  right: -400px;
  bottom: -300px;
}
.comparison__body {
  position: relative;
  z-index: 11;
  background: white;
  padding-top: 50px;
  padding-bottom: 40px;
  border-radius: 30px;
}
.comparison__title {
  margin-bottom: 40px;
  margin-left: 50px;
}
.comparison__table {
  width: 100%;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.comparison__row {
  display: grid;
  grid-template-columns: repeat(3, minmax(250px, 1fr));
  padding: 10px 49px;
  background: #fff;
}
.comparison__row:nth-child(odd) {
  background: #edf5ff;
}
.comparison__row--head .comparison__cell {
  font-weight: 700;
  font-size: 20px;
  color: #010101;
  line-height: 1.25;
}
.comparison__cell {
  font-size: 16px;
  line-height: 1.25;
  color: #010101;
  font-weight: 400;
}

.partners-main {
  background: radial-gradient(circle, rgba(52, 127, 248, 0.1) 0%, rgba(52, 127, 248, 0) 70%);
  position: relative;
}

.news {
  padding: 35px 0 65px;
  position: relative;
  z-index: 11;
}
.news__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 50px;
}
.news__controls {
  display: flex;
  gap: 20px;
}
.news__btn {
  width: 40px;
  height: 40px;
}

.news-item {
  display: block;
  font-family: var(--second-family);
}
.news-item__img {
  height: 250px;
  margin-bottom: 20px;
  border-radius: 20px;
  overflow: hidden;
}
.news-item__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.news-item__date {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
}
.news-item__date span {
  font-weight: 500;
  font-size: 14px;
  line-height: 114%;
  color: #979797;
}
.news-item a {
  display: block;
}
.news-item:hover .news-item__title {
  color: #327cf7;
}
.news-item__title {
  margin-bottom: 10px;
  font-weight: 700;
  font-size: 18px;
  line-height: 111%;
  color: #313133;
  transition: 0.3s ease;
}
.news-item p {
  font-weight: 400;
  font-size: 14px;
  line-height: 143%;
  color: #313133;
}

.news-reviews {
  padding: 35px 0 100px;
}

.news-page {
  padding: 30px 0 100px;
  position: relative;
  z-index: 11;
}
.news-page .container {
  max-width: 1050px;
}
.news-page .news-item__img {
  height: auto;
  margin-bottom: 30px;
}
.news-page .news-item__img img {
  -o-object-fit: contain;
     object-fit: contain;
}
.news-page .news-item__date {
  margin-bottom: 20px;
}
.news-page .news-item__title {
  margin-bottom: 20px;
}
.news-page .news-item p:not(:last-child) {
  margin-bottom: 35px;
}
.news-page .news-item__blockquote-wrap {
  margin: 50px 0;
  max-width: 815px;
  margin-left: auto;
}
.news-page .news-item blockquote {
  font-family: var(--second-family);
  font-style: italic;
  font-weight: 400;
  font-size: 27px;
  line-height: 1.25;
  color: #262626;
}

.footer {
  border: 1px solid #e3e3e3;
  background-color: #fff;
  position: relative;
  z-index: 11;
}
.footer__top {
  padding: 50px 0;
  max-width: 1200px;
  display: flex;
  justify-content: space-between;
  gap: 30px;
}
.footer__logo {
  margin-bottom: 30px;
  display: block;
}
.footer__text {
  color: rgba(17, 17, 17, 0.6);
  font-size: 16px;
  max-width: 268px;
}
.footer__title {
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
  color: #000;
  margin-bottom: 20px;
}
.footer__list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  list-style: none;
}
.footer__link {
  color: rgba(0, 0, 0, 0.8);
  transition: 0.3s ease;
}
.footer__link:hover {
  color: #c81926;
}
.footer__socials {
  display: flex;
  align-items: center;
  gap: 30px;
}
.footer__socials a {
  transition: 0.3s ease;
}
.footer__socials a:hover {
  transform: scale(1.03);
}
.footer__bottom {
  padding: 15px 0;
  border-top: 1px solid rgba(151, 151, 151, 0.1);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.footer__bottom a,
.footer__bottom span {
  color: rgba(0, 0, 0, 0.5);
}
.footer__bottom a {
  transition: 0.3s ease;
}
.footer__bottom a:hover {
  color: #000;
}

/* -------------------- MEDIA -------------------- */
@media (max-width: 1280px) {
  .autofinance {
    padding: 50px 0 20px;
  }
  .autofinance__img {
    max-width: 100%;
  }
  .autofinance__img-bt {
    display: none;
  }
  .autofinance_title {
    right: 0;
    bottom: unset;
    top: 50px;
  }
  .history__texts p {
    font-size: 16px;
  }
}
@media (max-width: 1200px) {
  .header__inner {
    gap: 60px;
  }
  .hero__title {
    font-size: 40px;
  }
  .hero__cursour {
    max-width: 75px;
  }
  .hero__subtitle {
    margin-bottom: 30px;
  }
  .hero__info {
    flex-direction: column;
    margin-bottom: 30px;
  }
  .steps {
    flex-direction: column;
    align-items: center;
  }
  .hero .decor-bg-bottom {
    bottom: -35%;
  }
  .hero .decor-bg-bottom-right {
    bottom: -20%;
  }
  .main-about__block {
    margin-right: 30px;
    gap: 10px;
  }
  .demo__inner {
    padding-left: 0;
    justify-content: space-between;
    gap: 20px;
  }
  .services {
    gap: 20px;
  }
  .services__item {
    padding: 40px 20px;
  }
  .services__num {
    font-size: 80px;
  }
  .services__text,
  .services__link,
  .services__num {
    position: relative;
    z-index: 5;
  }
  .contacts__form {
    flex-direction: column;
    padding: 20px;
    gap: 40px;
    max-width: 620px;
    margin: 0 auto;
  }
  .contacts__form-img {
    max-width: 100%;
  }
  .contacts__form-img img {
    border-radius: 30px;
  }
  .contacts__map {
    height: 350px;
  }
  .contacts__map iframe,
  .contacts__map video {
    height: 350px;
  }
  .call-wrap {
    gap: 10px;
    bottom: 40px;
  }
  .call {
    width: 55px;
    height: 55px;
  }
}
@media (max-width: 992px) {
  .header__overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    -webkit-backdrop-filter: blur(2px);
            backdrop-filter: blur(2px);
    opacity: 0;
    pointer-events: none;
    transition: 0.3s;
    z-index: 80;
  }
  .header__overlay.active {
    opacity: 1;
    pointer-events: auto;
  }
  .header__burger {
    display: flex;
  }
  .header__nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 290px;
    height: 100vh;
    background: #fff;
    padding: 100px 25px 40px;
    transition: 0.3s;
    z-index: 90;
    display: flex;
    flex-direction: column;
    gap: 25px;
  }
  .header__nav.active {
    right: 0;
  }
  .header__list {
    flex-direction: column;
    gap: 25px;
    align-items: flex-start;
  }
  .header__item--submenu .header__submenu {
    position: static;
    opacity: 0;
    pointer-events: none;
    height: 0;
    overflow: hidden;
    padding-left: 15px;
    transition: 0.3s ease;
    box-shadow: none;
    padding: 0;
  }
  .header__item--submenu.active .header__submenu {
    opacity: 1;
    height: auto;
    pointer-events: auto;
    padding: 10px 0 10px 15px;
  }
  .header__submenu a {
    padding: 8px 0;
  }
  .header__burger {
    display: flex;
  }
  .main-about__info-inner {
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
  }
  .main-about__block {
    margin-right: 0;
  }
  .main-about__block-link {
    margin: 0 auto;
  }
  .demo__inner {
    flex-direction: column-reverse;
    align-items: start;
  }
  .autofinance_title {
    font-size: 80px;
  }
  .demo__img {
    margin: 0 auto;
  }
  .demo__img img {
    height: auto;
  }
  .services {
    justify-content: center;
  }
  .services__item {
    flex: 1 1 100%;
  }
  .case__card {
    padding: 40px 20px 50px 20px;
  }
  .footer__top,
  .footer__bottom {
    flex-wrap: wrap;
    align-items: start;
  }
  .team__list {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
  }
  .contacts {
    padding: 50px 0;
  }
  .contacts__block {
    padding: 40px;
  }
  .contacts__btns {
    gap: 25px;
  }
  .investors__card {
    grid-template-columns: 1fr;
    padding: 30px;
  }
  .investors__image {
    max-width: 355px;
    border-radius: 10px;
  }
  .investors__info {
    grid-template-columns: repeat(2, 1fr);
  }
  .partners {
    padding: 50px 0;
  }
  .partners__title {
    margin-bottom: 30px;
  }
  .terms {
    padding: 30px 20px;
    margin-bottom: 30px;
  }
  .terms__body {
    flex-direction: column;
    gap: 30px;
  }
  .terms__list {
    max-width: 100%;
    gap: 10px;
  }
  .work {
    margin-bottom: 50px;
  }
  .work__list {
    flex-direction: column;
    gap: 10px;
  }
  .work__item {
    padding: 20px;
    gap: 15px;
  }
  .work__num {
    font-size: 50px;
  }
  .calculator {
    padding: 50px 20px 80px;
  }
  .calculator__title {
    margin-bottom: 30px;
  }
  .calculator__field,
  .calculator__range,
  .calculator__subtitle {
    margin-bottom: 30px;
  }
  .calculator__subtitle {
    font-size: 32px;
  }
  .calculator__grid {
    gap: 20px;
    margin-bottom: 30px;
  }
  .calculator__card {
    padding: 35px 20px;
  }
  .calculator__card-value {
    font-size: 30px;
  }
}
@media (max-width: 768px) {
  .header__top .container {
    gap: 20px;
  }
  .header__links {
    gap: 20px;
  }
  .header__links a {
    font-size: 14px;
  }
  .header__logo {
    max-width: 110px;
  }
  .hero__title-wrap {
    justify-content: center;
    margin-bottom: 20px;
  }
  .hero__title {
    font-size: 32px;
  }
  .hero__cursour {
    max-width: 60px;
  }
  .hero__subtitle {
    font-size: 16px;
    margin-bottom: 20px;
  }
  .hero__video iframe,
  .hero__video video {
    max-width: 550px;
  }
  .hero__img {
    max-width: 550px;
    height: auto;
    text-align: right;
    padding: 15px 0;
  }
  .hero__img img {
    width: 100%;
    max-height: 400px;
    height: auto;
    text-align: right;
    right: 0;
  }
  .hero__img .cube {
    width: 100%;
    height: 100%;
  }
  .case {
    padding: 50px 0 70px;
  }
  .case__title {
    font-size: 28px;
  }
  .case__card {
    width: 280px;
    padding: 22px;
  }
  .autofinance__bg {
    height: 100%;
  }
  .autofinance_title {
    font-size: 60px;
  }
  .footer__top,
  .footer__bottom {
    flex-direction: column;
  }
  .contacts__block {
    padding: 30px;
    gap: 20px;
  }
  .contacts-block {
    max-width: 100%;
    flex: 1 1 100%;
  }
  .contacts-btn {
    width: 100%;
    height: 55px;
  }
  .contacts__map {
    margin-bottom: 30px;
  }
  .investors__card {
    margin-bottom: 50px;
  }
  .investors__subtitle {
    margin-bottom: 20px;
  }
  .investors__item {
    padding: 20px;
  }
  .investors__item p {
    font-size: 18px;
    margin-bottom: 10px;
  }
  .investors__item strong {
    font-size: 22px;
  }
  .comparison__table-wrap {
    width: 100%;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
  }
  .comparison__table {
    width: -moz-max-content;
    width: max-content;
  }
  .comparison__body {
    padding: 20px 0;
  }
  .comparison__title {
    margin-bottom: 20px;
  }
  .calculator__grid {
    grid-template-columns: 1fr;
    gap: 10px;
    margin-bottom: 20px;
  }
  .calculator__card {
    padding: 15px;
  }
  .calculator__field,
  .calculator__range,
  .calculator__subtitle {
    margin-bottom: 20px;
  }
  .calculator__range-values {
    font-size: 20px;
  }
  .calculator__title {
    font-size: 28px;
  }
  .calculator__subtitle {
    font-size: 26px;
  }
  .calculator__card-label {
    margin-bottom: 10px;
  }
  .calculator__card-value {
    font-size: 24px;
  }
}
@media (max-width: 576px) {
  .header__top {
    padding: 8px 0;
  }
  .header__body {
    padding: 15px 0;
  }
  .header__nav {
    width: 260px;
    padding: 90px 20px 30px;
  }
  .hero,
  .main-about,
  .demo,
  .team,
  .privacy,
  .not-found {
    padding: 50px 0;
  }
  .service {
    padding: 40px 0 80px;
  }
  .hero__video iframe,
  .hero__video video {
    max-width: 420px;
  }
  .hero__title-wrap {
    flex-direction: column;
    align-items: center;
    margin-bottom: 10px;
  }
  .hero__title {
    font-size: 28px;
  }
  .steps__item {
    padding: 25px;
  }
  .steps__title {
    font-size: 18px;
    position: relative;
    z-index: 6;
  }
  .steps__num {
    font-size: 80px;
  }
  .title {
    font-size: 32px;
  }
  .autofinance {
    padding: 10px 0;
  }
  .autofinance_title {
    font-size: 40px;
  }
  .reviews__link {
    padding: 12px 22px;
    font-size: 16px;
  }
  .history {
    padding: 50px 0;
  }
  .history .main-about__block:last-child {
    margin-right: 0;
  }
  .history__title {
    margin-bottom: 30px;
  }
  .history__video {
    margin-bottom: 30px;
  }
  .history__texts {
    margin: 20px 0 30px;
    gap: 20px;
  }
  .history__subtitle {
    font-size: 16px;
  }
  .contacts {
    padding: 30px 0 60px;
  }
  .contacts__title {
    font-size: 26px;
    margin-bottom: 30px;
  }
  .contacts__block {
    padding: 25px;
    margin-bottom: 30px;
  }
  .contacts__map {
    height: 280px;
  }
  .contacts__map iframe,
  .contacts__map video {
    height: 280px;
  }
  .form__btn {
    font-size: 18px;
    padding: 16px 0;
  }
  .contacts__btns {
    gap: 10px;
    margin-bottom: 30px;
  }
  .contacts-block__title {
    font-size: 16px;
  }
  .investors__info {
    grid-template-columns: 1fr;
  }
  .news,
  .news-reviews {
    padding: 30px 0;
  }
  .calculator {
    padding: 40px 5px 50px;
  }
  .calculator__title {
    font-size: 24px;
  }
  .calculator__subtitle {
    font-size: 22px;
  }
  .calculator__card-value {
    font-size: 20px;
  }
  .calculator__card-label {
    font-size: 14px;
  }
  .call-wrap {
    bottom: 40px;
    right: 20px;
  }
  .call {
    width: 50px;
    height: 50px;
  }
  .call svg {
    width: 28px;
    height: 28px;
  }
}
@media (max-width: 480px) {
  .header__links {
    flex-direction: column;
    align-items: end;
    gap: 10px;
  }
  .faq__question {
    font-size: 16px;
  }
  .hero__video iframe,
  .hero__video video {
    max-width: 320px;
  }
  .steps__img {
    z-index: 4;
    max-width: 200px;
  }
  .demo__img {
    max-width: 360px;
    height: auto;
  }
  .demo__img img {
    -o-object-fit: contain;
       object-fit: contain;
  }
  .demo__links {
    flex-direction: column;
  }
  .services__img {
    filter: brightness(80%);
  }
  .reviews__head {
    flex-direction: column;
    gap: 20px;
  }
  .reviews {
    padding: 50px 0;
  }
  .case__head {
    flex-direction: column;
    gap: 20px;
  }
  .main-about__info {
    border-radius: 0;
    background: #edf5ff;
  }
  .main-about__info-inner {
    flex-direction: column;
  }
  .terms__body {
    gap: 15px;
  }
  .terms__item {
    padding: 20px;
  }
  .terms__title {
    font-size: 30px;
  }
  .terms__item-info {
    font-size: 20px;
  }
  .work__num {
    font-size: 40px;
  }
  .work__text {
    font-size: 14px;
  }
  .news-page {
    padding: 30px 0 50px;
  }
  .news-page .news-item__text {
    margin-bottom: 15px;
  }
  .calculator__range-values {
    font-size: 16px;
  }
  .title {
    font-size: 26px;
  }
  .autofinance {
    margin-bottom: 30px;
  }
  .reviews__head,
  .service__title {
    margin-bottom: 30px;
  }
  .reviews__link {
    padding: 9px 20px;
    font-size: 14px;
  }
  .demo__list {
    gap: 25px;
  }
  .news-page .news-item__blockquote-wrap {
    margin: 30px 0;
  }
  .news-page .news-item blockquote {
    font-size: 18px;
  }
}/*# sourceMappingURL=style.css.map */

