:root{
--color-main:#2E3335;
--color-blue:#678DDA;
--color-gray:#808080;
--color-white:#fff;
--container-width:1420px;
--container-padding:20px;
--font-main:"Montserrat",sans-serif;
--font-size-base:16px;
--font-size-accent:26px;
--font-size-title:36px;
--border:1px solid var(--color-blue);
--radius:6px;
}
*,*::before,*::after{box-sizing:border-box}
html{scroll-behavior:smooth}
body{margin:0;font-family:var(--font-main);font-size:var(--font-size-base);font-weight:400;line-height:1.2;color:var(--color-main)}
img{display:block;max-width:100%}
a{text-decoration:none;color:inherit}
button,input,textarea,select{font:inherit}
.container{max-width:calc(var(--container-width) + var(--container-padding)*2);margin:0 auto;padding:0 var(--container-padding)}
h1,h2,p{margin:0}
h1{font-size:36px;font-weight:500;text-transform:uppercase;line-height:1.2}
h2{font-size:36px;font-weight:600;line-height:1.2}
.text-accent{font-size:26px;font-weight:500}
.btn{display:inline-flex;align-items:center;justify-content:center;padding:14px 28px;min-height:52px;border:var(--border);border-radius:var(--radius);background:var(--color-blue);color:#fff;transition:.25s}
.btn:hover{background:transparent;color:var(--color-blue)}
.hero{padding:80px 0}
.hero__title{margin-bottom:30px}
.hero__text{margin-bottom:40px;color:var(--color-gray)}


.site-header {
  background: #fff;
}

.header-top {
  display: grid;
  grid-template-columns: 310px 310px 312px auto;
  align-items: center;
  gap: 50px;
  padding: 26px 0 28px;
  border-bottom: 1px solid rgba(46, 51, 53, 0.08);
}

.header-top__address,
.header-top__schedule {
  font-size: 20px;
  line-height: 120%;
  color: var(--color-main);
}

.header-top__schedule a {
  color: var(--color-main);
}

.header-search {
  width: 312px;
  height: 60px;
  display: flex;
  align-items: center;
  background: #F5F8FE;
  border-radius: 6px;
}

.header-search input {
  width: 100%;
  height: 100%;
  padding: 0 20px;
  border: none;
  background: transparent;
  font-size:16px;
  color: var(--color-main);
  outline: none;
}

.header-search input::placeholder {
  color: #A0A2A6;
}

.header-search button {
  width: 56px;
  height: 100%;
  border: none;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
}

.header-top__phone {
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  gap: 16px;
}

.header-top__telegram {
  width: 30px;
  height: 30px;
  border-radius: 6px;
  background: var(--color-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.header-top__phone-link {
  display: block;
  font-size: 26px;
  font-weight: 500;
  line-height: 120%;
  color: var(--color-main);
}

.header-top__callback {
  display: block;
  margin-top: 4px;
  font-size: 18px;
  line-height: 120%;
  text-align: right;
  color: var(--color-blue);
}

@media (max-width: 1200px) {
  .header-top {
    grid-template-columns: repeat(2, 1fr);
  }

  .header-top__phone {
    justify-content: flex-start;
  }
}

@media (max-width: 576px) {
  .header-top {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .header-search {
    width: 100%;
  }

  .header-top__phone {
    justify-content: flex-start;
  }

  .header-top__callback {
    text-align: left;
  }
}

.site-header-menu {
  background: #fff;
}

.header-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  padding: 15px 0;
}

.header-logo {
  display: block;
  width: 300px;
  flex-shrink: 0;
}

.header-logo img {
  width: 100%;
  display: block;
}

.header-nav {
  flex: 1;
}

.header-nav__list {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;

  margin: 0;
  padding: 0;

  list-style: none;
}

.header-nav__item {
  position: relative;
  margin: 0;
  padding: 0;
  list-style: none;
}

.header-nav__link {
  display: flex;
  align-items: center;
  gap: 9px;

  padding: 30px 0;

  font-family: "Montserrat", sans-serif;
  font-size: 18px;
  line-height: 1.3;
  font-weight: 500;
  color: #2E3335;
  text-decoration: none;

  transition: color 0.2s ease;
}

.header-nav__link:hover,
.header-nav__link.active {
  color: #678DDA;
}

.header-nav__arrow {
  flex: 0 0 auto;

  width: 8px;
  height: 8px;

  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;

  transform: rotate(45deg) translateY(-2px);
  transition: transform 0.2s ease;
}

/* Все выпадающие списки изначально скрыты */

.header-nav .header-dropdown {
  margin: 0;
  padding: 12px 0;

  list-style: none;

  background: rgba(255, 255, 255, 0.98);
  border: 1px solid rgba(103, 141, 218, 0.35);
  border-radius: 6px;
  box-shadow: 0 16px 40px rgba(46, 51, 53, 0.14);
  backdrop-filter: blur(12px);

  visibility: hidden;
  opacity: 0;
  pointer-events: none;

  transition:
    opacity 0.2s ease,
    visibility 0.2s ease,
    transform 0.2s ease;
}

/* =========================
   Второй уровень
   ========================= */

.header-nav__list > .has-dropdown > .header-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 100;

  width: 350px;
  min-width: 350px;

  transform: translateY(10px);
}

/* Открывается только непосредственное меню
   наведённого пункта верхнего уровня */

.header-nav__list > .has-dropdown:hover > .header-dropdown {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

/* Пункты второго уровня */

.header-nav__list > .has-dropdown > .header-dropdown > li {
  position: relative;
  margin: 0;
  padding: 0;
  list-style: none;
}

.header-nav__list
  > .has-dropdown
  > .header-dropdown
  > li
  > a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;

  width: 100%;
  padding: 14px 22px;

  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  line-height: 1.35;
  font-weight: 500;
  color: #2E3335;
  text-decoration: none;

  box-sizing: border-box;

  transition:
    color 0.2s ease,
    background-color 0.2s ease;
}

.header-nav__list
  > .has-dropdown
  > .header-dropdown
  > li
  > a:hover {
  color: #678DDA;
  background: rgba(103, 141, 218, 0.08);
}

/* Стрелка у пунктов второго уровня */

.header-nav__list
  > .has-dropdown
  > .header-dropdown
  > .has-dropdown
  > a
  .header-nav__arrow {
  transform: rotate(-45deg);
}

/* Не переворачиваем стрелки всех вложенных пунктов одновременно */

.header-nav__list
  > .has-dropdown:hover
  > .header-nav__link
  > .header-nav__arrow {
  transform: rotate(225deg) translateY(-1px);
}

/* =========================
   Третий уровень
   ========================= */

.header-nav__list
  > .has-dropdown
  > .header-dropdown
  > .has-dropdown
  > .header-dropdown {
  position: absolute;
  top: -12px;
  left: calc(100% + 8px);
  z-index: 110;

  width: 370px;
  min-width: 370px;

  transform: translateX(10px);
}

/* Третий уровень открывается только при наведении
   на конкретный пункт второго уровня */

.header-nav__list
  > .has-dropdown
  > .header-dropdown
  > .has-dropdown:hover
  > .header-dropdown {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
  transform: translateX(0);
}

/* Ссылки третьего уровня */

.header-nav__list
  > .has-dropdown
  > .header-dropdown
  > .has-dropdown
  > .header-dropdown
  > li {
  margin: 0;
  padding: 0;
  list-style: none;
}

.header-nav__list
  > .has-dropdown
  > .header-dropdown
  > .has-dropdown
  > .header-dropdown
  > li
  > a {
  display: block;

  width: 100%;
  padding: 14px 22px;

  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  line-height: 1.35;
  font-weight: 500;
  color: #2E3335;
  text-decoration: none;

  box-sizing: border-box;

  transition:
    color 0.2s ease,
    background-color 0.2s ease;
}

.header-nav__list
  > .has-dropdown
  > .header-dropdown
  > .has-dropdown
  > .header-dropdown
  > li
  > a:hover {
  color: #678DDA;
  background: rgba(103, 141, 218, 0.08);
}

/* Прозрачный мостик между вторым и третьим уровнями */

.header-nav__list
  > .has-dropdown
  > .header-dropdown
  > .has-dropdown::after {
  content: "";
  position: absolute;
  top: 0;
  left: 100%;

  width: 12px;
  height: 100%;
}

/* Третий уровень не должен открываться
   только из-за наведения на верхний пункт */

.header-nav__list
  > .has-dropdown:hover
  > .header-dropdown
  .header-dropdown {
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
}

/* Возвращаем открытие только для наведённого
   пункта второго уровня */

.header-nav__list
  > .has-dropdown:hover
  > .header-dropdown
  > .has-dropdown:hover
  > .header-dropdown {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}

/* =========================
   Адаптив
   ========================= */

@media (max-width: 1200px) {
  .header-main {
    flex-direction: column;
    align-items: flex-start;
    gap: 30px;
  }

  .header-nav {
    width: 100%;
  }

  .header-nav__list {
    flex-wrap: wrap;
    justify-content: flex-start;
  }
}

@media (max-width: 576px) {
  .header-logo {
    width: 260px;
  }

  .header-nav__list {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }

  .header-nav__item {
    width: 100%;
  }

  .header-nav__link {
    justify-content: space-between;
    width: 100%;
    padding: 14px 0;
  }

  .header-nav .header-dropdown {
    position: static;

    display: none;

    width: 100%;
    min-width: 0;

    margin: 0;
    padding: 6px 0 6px 15px;

    border: 0;
    border-left: 1px solid rgba(103, 141, 218, 0.35);
    border-radius: 0;
    box-shadow: none;
    background: transparent;

    visibility: visible;
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  /* На мобильном открывается только непосредственный список */

  .header-nav__list > .has-dropdown:hover > .header-dropdown {
    display: block;
  }

  .header-nav__list
    > .has-dropdown
    > .header-dropdown
    > .has-dropdown:hover
    > .header-dropdown {
    display: block;
  }

  .header-nav__list
    > .has-dropdown
    > .header-dropdown
    > li
    > a,
  .header-nav__list
    > .has-dropdown
    > .header-dropdown
    > .has-dropdown
    > .header-dropdown
    > li
    > a {
    padding: 10px 12px;
    font-size: 15px;
  }

  .header-nav__list
    > .has-dropdown
    > .header-dropdown
    > .has-dropdown::after {
    display: none;
  }

  .header-nav__list
    > .has-dropdown
    > .header-dropdown
    > .has-dropdown
    > a
    .header-nav__arrow {
    transform: rotate(45deg) translateY(-2px);
  }

  .header-nav__list
    > .has-dropdown
    > .header-dropdown
    > .has-dropdown:hover
    > a
    .header-nav__arrow {
    transform: rotate(225deg) translateY(-1px);
  }
}

.site-header-menu {
    width: 100%;
    background: #fff;
    z-index: 1000;
}

.site-header-menu.is-fixed {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    box-shadow: 0 4px 20px rgba(46, 51, 53, 0.1);
    animation: headerMenuShow 0.25s ease;
}

.site-header-menu-placeholder {
    display: none;
}

.site-header-menu-placeholder.is-active {
    display: block;
}

@keyframes headerMenuShow {
    from {
        transform: translateY(-100%);
    }

    to {
        transform: translateY(0);
    }
}



.hero-consult {
  min-height: 760px;
  padding: 58px 0;
  background:
    url("../../images/new-home/hero-lines.svg") center / cover no-repeat,
    #fff;
    border-bottom:1px solid rgba(103,141,218,.8);
}


.hero-consult__container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 70px;
}

.hero-consult__content {
  max-width: 950px;
  padding-top: 86px;
}

.hero-consult__title {
  margin-bottom: 50px;
  font-family: var(--font-main);
  font-weight: 500;
  font-size: 36px;
  line-height: 120%;
  letter-spacing: 0;
  text-transform: uppercase;
  color: var(--color-main);
}

.hero-consult__title span {
  color: var(--color-blue);
}

.hero-consult__items {
  display: flex;
  flex-direction: column;
  gap: 64px;
}

.hero-consult__item {
  display: grid;
  grid-template-columns: 96px 1fr;
  align-items: center;
  gap: 28px;
  max-width: 620px;
}

.hero-consult__item img {
  width: 111px;
  height: 111px;
  object-fit: contain;
}

.hero-consult__item p {
  margin: 0;
  font-family: var(--font-main);
  font-weight: 400;
  font-size:16px;
  line-height: 120%;
  letter-spacing: 0;
  color: var(--color-main);
}

.hero-form {
    width: 458px;
    padding: 38px 32px;

    background: rgba(255,255,255,.58);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);

    border: 1px solid rgba(103,141,218,.8);
    border-radius: 6px;

    box-shadow:
        0 20px 60px rgba(46,51,53,.05),
        inset 0 0 0 1px rgba(255,255,255,.45);
}

.hero-form__title {
  margin: 0 0 20px;
  font-family: var(--font-main);
  font-weight: 500;
  font-size: 36px;
  line-height: 120%;
  color: var(--color-main);
  text-transform:none;
}

.hero-form__text {
  margin: 0 0 30px;
  font-family: var(--font-main);
  font-weight: 400;
  font-size:16px;
  line-height: 120%;
  color: var(--color-gray);
}

.hero-form__text span {
  color: var(--color-blue);
}

.hero-form input[type="text"],
.hero-form input[type="tel"] {
    width: 100%;
    height: 58px;
    margin-bottom: 22px;
    padding: 0 20px;

    background: #678DDA0F;
    border: 1px solid #678DDA;
    border-radius: 6px;

    font-size:16px;
    color: var(--color-main);

    transition: .25s;
}

.hero-form textarea {
    width: 100%;
    height: 133px;
    margin-bottom: 22px;
    padding: 16px 20px;

    background: #678DDA0F;
    border: 1px solid #678DDA;
    border-radius: 6px;

    font-size:16px;
    color: var(--color-main);

    transition: .25s;
}

.hero-form input::placeholder,
.hero-form textarea::placeholder {
    color: #A0A2A6;
}

.hero-form input:focus {
    background: rgba(103,141,218,.12);
    outline: none;
}

.hero-form input::placeholder {
  color: var(--color-gray);
}
.hero-form .hero-form__field-txt input {
    height: 113px;
}

.hero-form__check {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
    cursor: pointer;

    font-size: 16px;
    line-height: 1.3;
}

.hero-form__check input {
    appearance: none;
    -webkit-appearance: none;

    width: 20px;
    height: 20px;
    margin: 0;

    border: 1px solid #B7B8BA;
    border-radius: 5px;
    background: #fff;

    flex-shrink: 0;

    position: relative;
    transition: .2s;
}

.hero-form__check input:checked {
    background: #B7B8BA;
}

.hero-form__check input:checked::after {
    content: "";

    position: absolute;
    left: 6px;
    top: 2px;

    width: 5px;
    height: 10px;

    border: solid #fff;
    border-width: 0 2px 2px 0;

    transform: rotate(45deg);
}

.hero-form__check a {
    color: #808080;
    text-decoration: underline;
}

.hero-form__btn {
  width: 100%;
  height: 58px;
  margin-top: 28px;
  border: none;
  border-radius: 6px;
  background: var(--color-blue);
  font-family: var(--font-main);
  font-weight: 400;
  font-size: 20px;
  line-height: 120%;
  color: #fff;
  text-transform: uppercase;
  cursor: pointer;
  transition: 0.25s ease;
}

.hero-form__btn:hover {
  opacity: 0.85;
}

@media (max-width: 991px) {
  .hero-consult {
    min-height: auto;
  }

  .hero-consult__container {
    flex-direction: column;
  }

  .hero-form {
    width: 100%;
    max-width: 458px;
  }
}

@media (max-width: 576px) {
  .hero-form {
    height: auto;
    padding: 28px 20px;
  }
}

.about-company {
    padding: 100px 0 20px 0;
}

.about-company__wrapper {
    display: flex;
    align-items: flex-start;
    gap: 40px;
}

.about-company__video {
    position: relative;
    display: block;
    width: 610px;
    height: 420px;
    flex-shrink: 0;
    overflow: hidden;
    border-radius: 6px;
}

.about-company__video img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: .35s;
}

.about-company__play {
    position: absolute;
    left: 50%;
    top: 50%;

    transform: translate(-50%, -50%);
    transition: .35s;
}

.about-company__play svg {
    display: none;
    width: 88px;
    height: 99px;
}

.about-company__video:hover img {
    transform: scale(1.03);
}

.about-company__video:hover .about-company__play {
    transform: translate(-50%, -50%) scale(1.08);
}

.about-company__content {
    flex: 1;
}

.about-company__content h2 {
    margin-bottom: 34px;
    text-transform:none;
}

.about-company__description {
    margin-bottom: 56px;
    line-height:115%;
    max-width: 610px;
}

.about-company__advantages {
    display: flex;
    gap: 10px;
}

.advantage {
    flex: 1;

    padding-left: 24px;

    border-left: 5px solid #DEE6F7;
}

.advantage h3 {
    margin: 0 0 15px;

    font-size: 26px;
    font-weight: 600;
    line-height: 120%;
    color: var(--color-main);
    text-transform:none;
}

.advantage p {
    margin: 0;
}

@media (max-width:1200px){

    .about-company__wrapper{
        flex-direction:column;
    }

    .about-company__video{
        width:100%;
    }

}

@media (max-width:768px){

    .about-company__advantages{
        flex-direction:column;
        gap:40px;
    }

}

.company-stats {
    padding: 40px 0 20px 0;
}

.company-stats__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 50px;
}

.company-stat {
    display: flex;
    align-items: flex-start;
    gap: 22px;
}

.company-stat__icon {
    width: 80px;
    flex-shrink: 0;
}

.company-stat__icon img {
    display: block;
    width: 100%;
}

.company-stat__content {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.company-stat__title {
    font-size: 26px;
    font-weight: 600;
    color: var(--color-main);
    line-height: 1;
}

.company-stat p {
    margin: 0;
    color: var(--color-main);
}

@media (max-width:1200px) {

    .company-stats__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }

}

@media (max-width:768px) {

    .company-stats {
        padding: 60px 0;
    }

    .company-stats__grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .company-stat {
        gap: 18px;
    }

    .company-stat__icon {
        width: 56px;
    }

}

.support-process {
  padding: 40px 0;
}

.support-process__head {
  margin-bottom: 55px;
  text-align: center;
}

.support-process__title {
  margin-bottom: 22px;
  font-family: var(--font-main);
  font-weight: 500;
  font-size: 36px;
  line-height: 120%;
  letter-spacing: 0;
  text-align: center;
  text-transform: uppercase;
  color: var(--color-main);
}

.support-process__title span {
  color: var(--color-blue);
}

.support-process__subtitle {
  margin: 0;
  font-family: var(--font-main);
  font-weight: 400;
  font-size: 26px;
  line-height: 120%;
  letter-spacing: 0;
  text-align: center;
  color: var(--color-main);
}

.support-process__list {
  margin: 0 auto;
}

.support-process__item {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 55px;
  padding: 32px 0;
  border-bottom: 1px solid rgba(46, 51, 53, 0.08);
}

.support-process__item:first-child {
  padding-top: 0;
}

.support-process__icon {
  display: flex;
  justify-content: center;
  padding-top: 12px;
}

.support-process__icon img {
  width: 80px;
  height: 80px;
  object-fit: contain;
}

.support-process__content h3 {
  margin: 0 0 20px;
  font-family: var(--font-main);
  font-weight: 600;
  font-size: 26px;
  line-height: 120%;
  letter-spacing: 0;
  color: var(--color-main);
}

.support-process__content ul {
  margin: 0;
  padding-left: 22px;
}

.support-process__content li {
  font-family: var(--font-main);
  font-weight: 400;
  font-size:16px;
  line-height: 120%;
  color: var(--color-main);
  margin-bottom: 10px;
}

.support-process__result {
  display: grid;
  grid-template-columns: 90px 1fr;
  align-items: center;
  gap: 40px;
  margin: 42px auto 0;
  padding: 24px 52px;
  border-radius: 6px;
  background: #F5F8FE;
}

.support-process__result-icon img {
  width: 80px;
  height: 80px;
  object-fit: contain;
}

.support-process__result p {
  margin: 0;
  font-size: 26px;
  line-height: 110%;
}

.support-process__result strong {
  font-weight: 600;
}

@media (max-width: 768px) {
  .support-process__item {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .support-process__icon {
    justify-content: flex-start;
  }

  .support-process__result {
    grid-template-columns: 1fr;
    padding: 24px;
  }
}

.support-process__content ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.support-process__content li {
    position: relative;
    padding-left: 14px;
}

.support-process__content li::before {
    content: "";

    position: absolute;
    left: 0;
    top: 10px;

    width: 3px;
    height: 3px;

    border-radius: 50%;
    background: var(--color-main);
}

.service-options {
  padding: 40px 0;
}

.service-options__grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 18px;
}

.service-card {
  min-height: 351px;
  padding: 22px 32px 26px;
  border: 1px solid var(--color-blue);
  border-radius: 6px;
  background:
    url("../../images/new-home/card-lines-1.png") center / cover no-repeat,
    #fff;
    position: relative;
}
.service-card.last-child {
    background:
    url("../../images/new-home/card-lines-2.png") center / cover no-repeat,
    #fff;
    position: relative;
}

.service-card__title {
  margin: 0 0 20px;
  font-size: 36px;
  font-weight: 400;
  line-height: 110%;
  text-align: center;
  color: var(--color-main);
  text-transform: none;
}

.service-card__subtitle {
  margin: 0 0 20px;
  padding-bottom:20px;
  border-bottom: 1px solid rgba(46, 51, 53, 0.08);
  font-size: 26px;
  line-height: 110%;
  text-align: center;
  color: var(--color-gray);
}

.service-card__list {
  min-height: 112px;
  margin: 0 0 90px;
  padding: 0;
  list-style: none;
}

.service-card__list li {
  position: relative;
  padding-left: 14px;
  font-size:16px;
  line-height: 110%;
  margin-bottom:15px;
  color: var(--color-main);
}

.service-card__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--color-main);
}

.service-card__price {
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  background: #DEE6F7;
  font-size: 20px;
  line-height: 120%;
  text-transform: uppercase;
  color: var(--color-main);
  width: calc(100% - 60px);
  position: absolute;
  bottom:40px;
}

.service-result {
  min-height: 291px;
  margin-top: 60px;
  padding: 0 32px 34px;
  border-radius: 6px;
  background: #F5F8FE;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.service-result img {
  width: 240px;
  height: 240px;
  object-fit: contain;
  margin-top: -120px;
  margin-bottom: 42px;
}

.service-result p {
  max-width: 400px;
  text-align: center;
  font-size: 36px;
  line-height: 120%;
  color: var(--color-main);
}

.service-result span {
  color: var(--color-blue);
}

@media (max-width: 991px) {
  .service-options__grid {
    grid-template-columns: 1fr;
  }

  .service-result {
    margin-top: 40px;
  }
}

.price-list {
  padding: 30px 0;
}

.price-list__title {
  margin-bottom: 56px;
  text-align: center;
  text-transform: uppercase;
  font-weight: 500;
}

.price-list__table {
  width: 100%;
}

.price-list__row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  padding: 19px 0;
  border-bottom: 1px solid rgba(46, 51, 53, 0.08);
}

.price-list__row:first-child {
  border-top: none;
}

.price-list__name,
.price-list__value {
  font-size:16px;
  font-weight: 400;
  line-height: 120%;
  color: var(--color-main);
}

.price-list__value {
  white-space: nowrap;
  text-align: right;
}

@media (max-width: 768px) {
  .price-list__row {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .price-list__value {
    text-align: left;
  }
}

.estimate-block {
  padding: 40px 0;
}

.estimate-block .container {
  max-width: 1710px;
}

.estimate-block__inner {
  min-height: 520px;
  padding: 62px 120px;
  border: 1px solid var(--color-blue);
  border-radius: 6px;
  background:
    url("../../images/new-home/hero-lines-2.png") center / cover no-repeat,
    #fff;

  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 80px;
}

.estimate-block__content {
  max-width: 720px;
}

.estimate-block__title {
  margin-bottom: 90px;
  font-family: var(--font-main);
  font-weight: 500;
  font-size: 36px;
  line-height: 110%;
  letter-spacing: 0;
  text-transform: uppercase;
  color: var(--color-main);
}

.estimate-block__title span {
  color: var(--color-blue);
}

.estimate-block__items {
  display: flex;
  flex-direction: column;
  gap: 60px;
}

.estimate-block__item {
  display: grid;
  grid-template-columns: 80px 1fr;
  align-items: center;
  gap: 28px;
}

.estimate-block__item img {
  width: 80px;
  height: 80px;
  object-fit: contain;
}

.estimate-block__item p {
  margin: 0;
  font-family: var(--font-main);
  font-weight: 400;
  font-size:16px;
  line-height: 120%;
  color: var(--color-main);
}

.estimate-block__form select {
    margin-bottom:20px;    
}

.estimate-block__form {
  flex-shrink: 0;
}

@media (max-width: 1200px) {
  .estimate-block__inner {
    padding: 50px;
    flex-direction: column;
  }
}

@media (max-width: 576px) {
  .estimate-block__inner {
    padding: 30px 20px;
  }

  .estimate-block__item {
    grid-template-columns: 60px 1fr;
    gap: 18px;
  }

  .estimate-block__item img {
    width: 60px;
    height: 60px;
  }
}

.main-services {
  padding: 40px 0;
}

.main-services__head {
  margin-bottom: 60px;
  text-align: center;
}

.main-services__title {
  margin-bottom: 24px;
  font-weight: 500;
  text-transform: uppercase;
}

.main-services__subtitle {
  margin: 0;
  font-size:16px;
  line-height: 120%;
  color: var(--color-main);
}

.main-services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 70px 20px;
}

.main-service-card {
  position: relative;
  min-height: 190px;
  padding: 120px 30px 65px;
  border: 1px solid var(--color-blue);
  border-radius: 6px;
  background:
    url("../../images/new-home/card-lines.svg") center / cover no-repeat,
    #fff;
  text-align: center;
}

.main-services__grid .main-service-card:nth-child(1) {
    background-image: url("../../images/new-home/card-lines-a.png");
}

.main-services__grid .main-service-card:nth-child(2) {
    background-image: url("../../images/new-home/card-lines-b.png");
}

.main-services__grid .main-service-card:nth-child(3) {
    background-image: url("../../images/new-home/card-lines-c.png");
}

.main-services__grid .main-service-card:nth-child(4) {
    background-image: url("../../images/new-home/card-lines-d.png");
}

.main-services__grid .main-service-card:nth-child(5),
.main-services__grid .main-service-card:nth-child(11){
    background-image: url("../../images/new-home/card-lines-e.png");
}

.main-services__grid .main-service-card:nth-child(6),
.main-services__grid .main-service-card:nth-child(12) {
    background-image: url("../../images/new-home/card-lines-f.png");
}

.main-services__grid .main-service-card:nth-child(7) {
    background-image: url("../../images/new-home/card-lines-g.png");
}

.main-services__grid .main-service-card:nth-child(8) {
    background-image: url("../../images/new-home/card-lines-h.png");
}

.main-services__grid .main-service-card:nth-child(9) {
    background-image: url("../../images/new-home/card-lines-i.png");
}

.main-services__grid .main-service-card:nth-child(10) {
    background-image: url("../../images/new-home/card-lines-j.png");
}

.main-service-card__icon {
  position: absolute;
  left: 50%;
  top: -50px;
  width: 150px;
  height: 150px;
  object-fit: contain;
  transform: translateX(-50%);
}

.main-service-card h3 {
  margin: 0 0 18px;
  font-size:16px;
  font-weight: 600;
  line-height: 120%;
  color: var(--color-main);
  text-transform:none;
}

.main-service-card p {
  margin: 0;
  font-size: 18px;
  line-height: 120%;
  color: var(--color-gray);
}

@media (max-width: 991px) {
  .main-services__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .main-services__grid {
    grid-template-columns: 1fr;
  }
}

.founder-block {
  width: 100%;
  max-width: 1710px;
  margin: 80px auto;
  padding: 44px 0;
  border: 1px solid var(--color-blue);
  border-radius: 6px;
  background:
    url("../../images/new-home/hero-lines-4.png") left top / 1710px auto no-repeat,
    #F5F8FE;
}

.founder-block__inner {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 90px;
  align-items: start;
}

.founder-block__person {
  padding-left: 0px;
}

.founder-block__photo {
  width: 345px;
  height: 345px;
  margin-bottom: 40px;
  border-radius: 50%;
  object-fit: cover;
}

.founder-block__position {
  margin: 0 0 20px;
  font-family: var(--font-main);
  font-weight: 400;
  font-size:16px;
  line-height: 110%;
  color: #678DDA;
}

.founder-block__name {
  margin: 0;
  font-family: var(--font-main);
  font-weight: 400;
  font-size: 36px;
  line-height: 110%;
  text-transform: uppercase;
  color: #2E3335;
}

.founder-block__text {
  max-width: 900px;
  padding-top: 34px;
  padding-left: 20px;
  border-left: 2px solid #F5F5F5;
}

.founder-block__text p,
.founder-block__text li {
  font-family: var(--font-main);
  font-weight: 400;
  font-style: italic;
  font-size: 26px;
  line-height: 110%;
  color: var(--color-main);
  margin-bottom:7px;
}

.founder-block__text p {
  margin: 0 0 34px;
}

.founder-block__text ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.founder-block__text li {
  position: relative;
  padding-left: 22px;
}

.founder-block__text li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 12px;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--color-main);
}

@media (max-width: 991px) {
  .founder-block__inner {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .founder-block__person {
    padding-left: 0;
  }
}

.advantages-grid {
  padding: 40px 0;
}

.advantages-grid__items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.advantage-item {
  min-height: 330px;
  padding: 48px 34px 42px 0;
  border-right: 1px solid rgba(46, 51, 53, 0.08);
  border-bottom: 1px solid rgba(46, 51, 53, 0.08);
}

.advantage-item:nth-child(3n) {
  border-right: none;
}

.advantage-item:nth-child(n + 4) {
  border-bottom: none;
}

.advantage-item:nth-child(3n + 2),
.advantage-item:nth-child(3n + 3) {
  padding-left: 34px;
}

.advantage-item__head {
  display: grid;
  grid-template-columns: 76px 1fr;
  align-items: start;
  gap: 22px;
  margin-bottom: 42px;
}

.advantage-item__head img {
  width: 64px;
  height: 64px;
  object-fit: contain;
}

.advantage-item h3 {
  margin: 0;
  font-size: 26px;
  font-weight: 600;
  line-height: 120%;
  color: var(--color-main);
  text-transform:none;
}

.advantage-item p {
  margin: 0;
  color: var(--color-gray);
}

@media (max-width: 991px) {
  .advantages-grid__items {
    grid-template-columns: repeat(2, 1fr);
  }

  .advantage-item,
  .advantage-item:nth-child(3n + 2),
  .advantage-item:nth-child(3n + 3) {
    padding-left: 0;
    padding-right: 24px;
  }

  .advantage-item:nth-child(3n) {
    border-right: 1px solid rgba(46, 51, 53, 0.08);
  }

  .advantage-item:nth-child(2n) {
    border-right: none;
    padding-left: 24px;
  }

  .advantage-item:nth-child(n + 4) {
    border-bottom: 1px solid rgba(46, 51, 53, 0.08);
  }

  .advantage-item:nth-child(n + 5) {
    border-bottom: none;
  }
}

@media (max-width: 576px) {
  .advantages-grid__items {
    grid-template-columns: 1fr;
  }

  .advantage-item,
  .advantage-item:nth-child(2n) {
    padding: 34px 0;
    border-right: none;
    border-bottom: 1px solid rgba(46, 51, 53, 0.08);
  }

  .advantage-item:last-child {
    border-bottom: none;
  }
}
.legal-guarantees {
  padding: 100px 0;
}

.legal-guarantees__head {
  margin-bottom: 70px;
  text-align: center;
}

.legal-guarantees__title {
  margin-bottom: 24px;
  font-weight: 500;
  text-transform: uppercase;
}

.legal-guarantees__subtitle {
  margin: 0;
  font-size: 26px;
  line-height: 120%;
  color: var(--color-main);
}

.legal-guarantees__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.guarantee-card {
  display:grid;
    grid-template-columns:70px 1fr;
    gap:34px;
  min-height: 470px;
  padding: 40px;
  border: 1px solid var(--color-blue);
  border-radius: 6px;
  background: #fff;
}
.guarantee-card__left{
    position:relative;
}

.guarantee-card__icon {
  width: 70px;
  height: 70px;
  object-fit: contain;
}

.guarantee-card__content h3 {
  margin: 8px 0 30px;
  height: 64px;
  font-size: 26px;
  font-weight: 600;
  line-height: 120%;
  color: var(--color-main);
  text-transform:none;
}

.guarantee-card__body {
  position:relative;
    margin-top:-2px;
}

.guarantee-card__step{
  display: grid;
    position:relative;
    padding-left:0;
}

.guarantee-card__step:last-child {
  padding-bottom: 0;
}

.guarantee-card__step::before {
  content: "";
  position: absolute;
  top: -3px;
  z-index: 2;
  border: 1px solid var(--color-blue);
  border-radius: 50%;
  background: #fff;
  left:-80px;

    width:30px;
    height:30px;

    box-shadow: -5px -5px 250px 0px rgb(103 141 218 / 9%) inset;

}

.guarantee-card__step:first-child::before {
  background: var(--color-blue);
}

.guarantee-card__step:not(:last-child)::after {
  content: "";
  position: absolute;
  left: -66px;
  top: 25px;
  bottom: -3px;
  z-index: 1;
  width: 1px;
  background: var(--color-blue);
}

.guarantee-card__step h4 {
  margin: 0 0 20px;
  font-size:16px;
  font-weight: 600;
  line-height: 120%;
  color: var(--color-main);
  text-transform:none;
}

.guarantee-card__step p {
  margin-bottom: 30px;
  font-size:16px;
  font-weight: 400;
  line-height: 120%;
  color: var(--color-main);
}

@media (max-width: 991px) {
  .legal-guarantees__grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 576px) {
  .legal-guarantees {
    padding: 60px 0;
  }

  .guarantee-card {
    grid-template-columns: 1fr;
    padding: 30px 20px;
  }

  .guarantee-card__content h3 {
    margin-top: 0;
  }
}

.projects-map {
  padding: 40px 0;
}

.projects-map__head {
  margin-bottom: 40px;
  text-align: center;
    z-index: 2;
    position: sticky;
}

.projects-map__title {
  margin-bottom: 26px;
  font-weight: 500;
  text-transform: uppercase;
}

.projects-map__subtitle {
  margin: 0;
  font-size: 26px;
  line-height: 120%;
}

.projects-map__wrap {
  position: relative;
  max-width: 1419px;
  margin: 0 auto;
}

.projects-map__image {
  width: 100%;
  display: block;
  margin-top: -160px;
}

.map-pin {
  position: absolute;
  width: 34px;
  height: 64px;
  border: none;
  background: transparent;
  cursor: pointer;
  transform: translate(-50%, -50%);
}

.map-pin::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  width: 28px;
  height: 28px;
  border: 2px solid var(--color-blue);
  border-radius: 50%;
  background: rgba(255,255,255,.7);
  transform: translateX(-50%);
}

.map-pin::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 27px;
  width: 2px;
  height: 36px;
  background: var(--color-blue);
  transform: translateX(-50%);
}

.map-pin:hover::before {
  background: var(--color-blue);
}

.project-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(46,51,53,.25);
}

.project-modal.active {
  display: flex;
}

.project-modal__content {
  position: relative;
  width: 360px;
  padding: 28px;
  border: 1px solid var(--color-blue);
  border-radius: 6px;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(14px);
}

.project-modal__close {
  position: absolute;
  right: 12px;
  top: 8px;
  border: none;
  background: transparent;
  font-size: 28px;
  color: var(--color-main);
  cursor: pointer;
}

.project-modal__region {
  margin-bottom: 14px;
  font-size: 26px;
  font-weight: 600;
}

.project-modal__year {
  margin-bottom: 12px;
  font-size:16px;
  color: var(--color-blue);
}

.project-modal__title {
  margin-bottom: 24px;
  font-size:16px;
  line-height: 120%;
}

.project-modal__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 48px;
  border-radius: 6px;
  background: var(--color-blue);
  color: #fff;
  font-size: 18px;
}

.project-modal__item {
    margin-bottom: 18px;
    font-size: 18px;
    line-height: 1.5;
}

.project-modal__item span {
    display: block;
    margin-bottom: 4px;
    font-weight: 600;
    color: var(--color-blue);
}

.project-modal__year,
.project-modal__service,
.project-modal__description {
    color: var(--color-main);
}

.project-modal__description {
    line-height: 1.6;
}

.clients-section {
  padding: 40px 0;
}

.clients-section__head {
  margin-bottom: 56px;
  text-align: center;
}

.clients-section__title {
  margin-bottom: 28px;
  font-weight: 500;
  text-transform: uppercase;
}

.clients-section__subtitle {
  margin: 0;
  font-size: 26px;
  line-height: 120%;
  color: var(--color-main);
}

.clients-slider {
  margin: 0 -9px;
}

.clients-slider .slick-slide {
  margin: 0 9px;
  max-height: 260px;
}

.clients-slider__item {
  height: 120px;
  border: 1px solid var(--color-blue);
  border-radius: 6px;
  display: flex !important;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: #fff;
  margin-bottom:15px;
}

.clients-slider__item-text {
    font-size:18px;
    font-weight:600;
    color:#5C8EE0;
}

.clients-slider__item img {
  max-width: 100%;
  max-height: 70px;
  object-fit: contain;
}

@media (max-width: 576px) {
  .clients-section__head {
    margin-bottom: 36px;
  }

  .clients-slider__item {
    height: 96px;
    padding: 18px;
  }
}

.reviews-section {
  padding: 40px 0;
}

.reviews-section__head {
  margin-bottom: 56px;
  text-align: center;
}

.reviews-section__title {
  margin-bottom: 28px;
  font-weight: 500;
  text-transform: uppercase;
}

.reviews-section__subtitle {
  margin: 0;
  font-size: 26px;
  line-height: 120%;
  color: var(--color-main);
}

.reviews-slider {
  margin: 0 -9px;
}

.reviews-slider .slick-slide {
  margin: 0 9px;
}

.review-card {
  overflow: hidden;
  border: 1px solid var(--color-blue);
  border-radius: 6px;
  background: #fff;
  max-height:700px;
}

.review-card__image {
  display: block;
  height: 400px;
  border-bottom: 1px solid rgba(103, 141, 218, 0.35);
  overflow: hidden;
}

.review-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: 0.3s;
}

.review-card__image:hover img {
  transform: scale(1.03);
}

.review-card__body {
  padding: 34px;
}

.review-card h3 {
  margin: 0 0 22px;
  font-size: 26px;
  font-weight: 600;
  line-height: 120%;
  color: var(--color-main);
}

.review-card p {
  margin: 0 0 34px;
  color: var(--color-main);
}

.review-card__link {
  display: inline-flex;
  align-items: center;
  gap: 28px;
  color: var(--color-blue);
  font-size:16px;
  font-weight: 600;
}

.review-card__link span {
  font-size: 26px;
  line-height: 1;
}

@media (max-width: 576px) {
  .reviews-slider {
    margin-right: -20px;
  }

  .reviews-slider .slick-list {
    padding-right: 80px;
  }

  .review-card__image {
    height: 320px;
  }

  .review-card__body {
    padding: 26px;
  }
}

.about-info {
  padding: 80px 0 30px 0;
}

.about-info__inner {
  display: grid;
  grid-template-columns: 700px 1fr;
  gap: 20px;
  align-items: start;
}

.about-info__image {
  overflow: hidden;
  border-radius: 6px;
}

.about-info__image img {
  width: 100%;
  height: 360px;
  object-fit: cover;
}

.about-info__content {
  padding-top: 6px;
}

.about-info__title {
  margin-bottom: 36px;
  font-weight: 500;
  text-transform: uppercase;
}

.about-info__content p {
  margin: 0 0 28px;
  font-size:16px;
  line-height: 120%;
  color: var(--color-main);
}

.about-info__content p:last-child {
  margin-bottom: 0;
}

.about-info__accent {
  margin: 28px 0;
  padding-left: 28px;
  border-left: 5px solid #DEE6F7;
}

.about-info__accent p {
  margin: 0;
  font-size:16px;
  line-height: 120%;
}

.about-info__accent span {
  color: var(--color-blue);
}

@media (max-width: 991px) {
  .about-info__inner {
    grid-template-columns: 1fr;
  }

  .about-info__image img {
    height: auto;
  }
}

.minerals-section {
  padding: 0 0 80px 0;
}

.minerals-slider {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 18px;
}

.mineral-card {
  overflow: hidden;
  border: 1px solid var(--color-blue);
  border-radius: 6px;
  background: #fff;
}

.mineral-card img {
  width: 100%;
  height: 126px;
  object-fit: cover;
}

.mineral-card .h3 {
  margin: 0;
  padding: 30px 20px 23px 20px;
  font-size:16px;
  font-weight: 600;
  line-height: 120%;
  color: var(--color-main);
  text-transform:none;
}

@media (max-width: 768px) {
  .minerals-slider {
    display: block;
    margin: 0 -9px;
  }

  .minerals-slider .slick-slide {
    margin: 0 9px;
  }

  .mineral-card {
    min-height: 260px;
  }
}

.experience-section {
    padding: 40px 0;
}

.experience-section__head {
    margin-bottom: 60px;
    text-align: center;
}

.experience-section__title {
    margin: 0;
    font-weight: 500;
    text-transform: uppercase;
}

.experience-section__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.experience-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.experience-card img {
    width: 80px;
    height: 80px;
    margin-bottom: 30px;
    object-fit: contain;
}

.experience-card p {
    margin: 0;
    font-size:16px;
    line-height: 1.25;
    color: var(--color-main);
    max-width: 290px;
}

@media (max-width: 991px) {

    .experience-section__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 50px 30px;
    }

}

@media (max-width: 576px) {

    .experience-section {
        padding: 60px 0;
    }

    .experience-section__head {
        margin-bottom: 40px;
    }

    .experience-section__grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .experience-card img {
        width: 70px;
        height: 70px;
        margin-bottom: 24px;
    }

}

.why-us {
    padding: 40px 0;
}

.why-us__head {
    max-width: 980px;
    margin: 0 auto 70px;
    text-align: center;
}

.why-us__title {
    margin: 0 0 30px;
    font-weight: 500;
    text-transform: uppercase;
}

.why-us__subtitle {
    margin: 0;
    font-size: 26px;
    line-height: 1.25;
    color: var(--color-main);
}

.why-us__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 75px;
}

.why-us__card {
    text-align: center;
}

.why-us__card img {
    width: 100px;
    height: 100px;
    object-fit: contain;
    margin: 0 auto 24px auto;
}

.why-us__card h3 {
    margin: 0 0 20px;
    font-size: 26px;
    font-weight: 600;
    line-height: 120%;
    color: var(--color-main);
    text-transform:none;
}

.why-us__card p {
    margin: 0;
    font-size:16px;
    line-height: 1.25;
    color: var(--color-main);
}

@media (max-width: 991px) {

    .why-us__grid {
        gap: 40px;
    }

    .why-us__subtitle {
        font-size:16px;
    }

}

@media (max-width: 767px) {

    .why-us {
        padding: 60px 0;
    }

    .why-us__head {
        margin-bottom: 50px;
    }

    .why-us__grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .why-us__card img {
        margin-bottom: 24px;
    }

}

.contacts-banner {
    padding: 40px 0;
}

.contacts-banner__inner {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 60px;

    padding: 38px 42px;

    background: #F5F8FE;
    border-radius: 6px;
}

.contacts-banner__column {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 190px;
}

.contacts-banner__item {
    display: flex;
    align-items: flex-start;
    gap: 24px;
}

.contacts-banner__item img {
    width: 70px;
    height: 70px;
    flex-shrink: 0;
    object-fit: contain;
}

.contacts-banner__item p {
    margin: 0;
    font-size:16px;
    line-height: 1.25;
    color: var(--color-main);
}

.contacts-banner__item p span {
  font-weight: 500;
}

.contacts-banner__text,
.contacts-banner__contacts {
    margin-top: 30px;
    font-weight: 500;
    font-size: 26px;
    line-height: 1.1;
    color: var(--color-main);
    padding-left: 100px;
}

.contacts-banner__contacts div {
    margin-bottom: 0px;
}

.contacts-banner__contacts a {
    color: var(--color-main);
    transition: .2s;
}

.contacts-banner__contacts a:hover {
    color: var(--color-blue);
}

@media (max-width: 991px) {

    .contacts-banner__inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contacts-banner__column {
        min-height: auto;
    }

}

@media (max-width: 576px) {

    .contacts-banner {
        padding: 60px 0;
    }

    .contacts-banner__inner {
        padding: 28px 22px;
    }

    .contacts-banner__item {
        flex-direction: column;
        gap: 20px;
    }

}

.licenses-section {
  padding: 40px 0;
}

.licenses-slider {
  margin: 0 -9px;
}

.licenses-slider .slick-slide {
  margin: 0 9px;
}

.licenses-slider .slick-dots {
  display: flex !important;
  justify-content: center;
  gap: 22px;
  margin: 36px 0 0;
  padding: 0;
  list-style: none;
}

.licenses-slider .slick-dots li {
  width: 30px;
  height: 30px;
  margin: 0;
}

.licenses-slider .slick-dots button {
  width: 30px;
  height: 30px;
  padding: 0;
  border: 1px solid var(--color-blue);
  border-radius: 50%;
  background: transparent;
  font-size: 0;
  cursor: pointer;
}

.licenses-slider .slick-dots .slick-active button {
  background: var(--color-blue);
}

.team-section {
  padding: 40px 0;
}

.team-section__head {
  margin-bottom: 82px;
  text-align: center;
}

.team-section__title {
  margin-bottom: 26px;
  font-weight: 500;
  text-transform: uppercase;
}

.team-section__subtitle {
  margin: 0;
  font-size:16px;
  line-height: 120%;
  color: var(--color-main);
}

.team-slider {
  margin: 0 -9px;
}

.team-slider .slick-slide {
  margin: 0 9px;
}

.team-card {
  position: relative;
  padding-top: 110px;
}

.team-card__photo {
  position: absolute;
  left: 50%;
  top: 0;
  z-index: 2;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  object-fit: cover;
  transform: translateX(-50%);
}

.team-card__body {
  min-height: 430px;
  padding: 126px 38px 34px;
  border: 1px solid var(--color-blue);
  border-radius: 6px;
  background: #fff;
  height: 100%;
}

.team-card h3 {
  margin: 0 0 20px;
  font-size: 26px;
  font-weight: 600;
  line-height: 120%;
  text-align: center;
  color: var(--color-main);
  text-transform:none;
}

.team-card__position {
  margin: 0 0 30px;
  font-size:16px;
  line-height: 120%;
  text-align: center;
  color: var(--color-blue);
}

.team-card ul {
  margin: 0 0 30px;
  padding: 0;
  list-style: none;
}

.team-card li {
  position: relative;
  padding-left: 14px;
  margin-bottom: 20px;
  font-size:16px;
  line-height: 120%;
  color: var(--color-main);
}

.team-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--color-main);
}

.team-card h4 {
  margin: 0 0 20px;
  font-size:16px;
  font-weight: 600;
  line-height: 120%;
  text-align: center;
  color: var(--color-main);
  text-transform:none;
}

.team-slider .slick-dots {
  display: flex !important;
  justify-content: center;
  gap: 30px;
  margin: 34px 0 0;
  padding: 0;
  list-style: none;
}

.team-slider .slick-dots li {
  width: 30px;
  height: 30px;
  margin: 0;
  background: #fff;
  border:1px solid #678DDA;
}
.team-slider .slick-dots li.slick-active {
    background: #678DDA;
}

.team-slider .slick-dots button {
  width: 30px;
  height: 30px;
  padding: 0;
  border: 1px solid #678DDA;
  border-radius: 50%;
  background: transparent;
  font-size: 0;
  cursor: pointer;
}

.team-slider .slick-dots .slick-active button {
  background: var(--color-blue);
}

.team-slider .slick-track {
    display: flex;
}

.team-slider .slick-slide {
    display: flex;
    height: auto;
}
.team-card {
    display: flex;
    width: 100%;
}

@media (max-width: 576px) {
  .team-section__head {
    margin-bottom: 58px;
  }

  .team-slider {
    margin-right: -20px;
  }

  .team-slider .slick-list {
    padding-right: 70px;
  }

  .team-card__photo {
    width: 130px;
    height: 130px;
  }

  .team-card {
    padding-top: 65px;
  }

  .team-card__body {
    padding: 104px 24px 28px;
  }
}

.faq-section{
    padding:40px 0;
}

.faq-section__head{
    margin-bottom:60px;
    text-align:center;
}

.faq-section__title{
    margin-bottom:28px;
    font-weight:500;
    text-transform:uppercase;
}

.faq-section__subtitle{
    margin:0;
    font-size:16px;
}

.faq{
    display:flex;
    flex-direction:column;
    gap:16px;
}

.faq-item{

    border:1px solid var(--color-blue);
    border-radius:6px;

    overflow:hidden;

    transition:.3s;

}

.faq-item__head{

    width:100%;

    padding:28px 30px;

    display:flex;
    align-items:center;
    gap:18px;

    background:#fff;
    border:none;

    cursor:pointer;

}

.faq-item__number{

    width:36px;
    height:36px;

    border-radius:50%;

    background:var(--color-blue);

    color:#fff;

    display:flex;
    align-items:center;
    justify-content:center;

    flex-shrink:0;

    font-size:20px;
    font-weight:500;

}

.faq-item__title{

    font-size:26px;
    font-weight:600;
    line-height:120%;
    color:var(--color-main);

    text-align:left;

}

.faq-item__body{

    display:grid;
    grid-template-rows:0fr;

    transition:.35s ease;

}

.faq-item__content{

    overflow:hidden;

    padding:0 30px;

    font-size:16px;
    line-height:1.4;
    color:var(--color-main);

}

.faq-item.active .faq-item__body{

    grid-template-rows:1fr;

}

.faq-item.active .faq-item__content{

    padding:0 30px 30px 84px;

}

@media(max-width:768px){

    .faq-item__head{

        padding:22px 20px;

    }

    .faq-item__title{

        font-size:16px;

    }

    .faq-item.active .faq-item__content{

        padding:0 20px 22px 74px;

        font-size:20px;

    }

}


.quiz-section {
  padding: 40px 0;
}

.quiz {
  position: relative;
  min-height: 700px;
   width: 100%;
  max-width: 1710px;
  min-height: 700px;
  margin: 0 auto;
  padding: 64px 0 56px;
  border: 1px solid var(--color-blue);
  border-radius: 6px;
  background:
    url("../../images/new-home/hero-lines-3.png") right bottom / 1710px auto no-repeat,
    #fff;
  overflow: hidden;
}

.quiz__title {
  margin: 0 0 78px;
  font-weight: 500;
  text-transform: uppercase;
}

.quiz__title span {
  color: var(--color-blue);
}

.quiz__progress {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1180px;
  margin-bottom: 64px;
}

.quiz__progress-line {
  position: absolute;
  left: 18px;
  right: 18px;
  top: 50%;
  height: 2px;
  background: var(--color-blue);
  transform: translateY(-50%);
}

.quiz__step-dot {
  position: relative;
  z-index: 2;
  width: 42px;
  height: 42px;
  border: 1px solid var(--color-blue);
  border-radius: 50%;
  background: #fff;
  color: var(--color-blue);
  font-size:16px;
  font-weight: 400;
  display: flex;
  align-items: center;
  justify-content: center;
}

.quiz__step-dot.active {
  background: var(--color-blue);
  color: #fff;
}

.quiz__form {
  position: relative;
  z-index: 2;
  max-width: 735px;
}

.quiz__step {
  display: none;
}

.quiz__step.active {
  display: block;
}

.quiz__step h3 {
  margin: 0 0 36px;
  font-size:16px;
  font-weight: 600;
  line-height: 120%;
  color: var(--color-main);
  text-transform:none;
}

.quiz__step label {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 26px;
  font-size:16px;
  line-height: 120%;
  color: var(--color-main);
  cursor: pointer;
}

.quiz__step input[type="radio"] {
  appearance: none;
  -webkit-appearance: none;
  width: 14px;
  height: 14px;
  margin-top: 4px;
  flex-shrink: 0;
  border: 1px solid var(--color-blue);
  border-radius: 50%;
  background: #fff;
}

.quiz__step input[type="radio"]:checked {
  border: 4px solid var(--color-blue);
}

.quiz__step textarea {
  width: 100%;
  min-height: 180px;
  padding: 20px;
  border: 1px solid var(--color-blue);
  border-radius: 6px;
  background: #678DDA0F;
  resize: vertical;
  font-size:16px;
  color: var(--color-main);
  outline: none;
}

.quiz__step input[type="text"],
.quiz__step input[type="email"],
.quiz__step input[type="tel"] {
  width: 100%;
  height: 58px;
  margin-bottom: 24px;
  padding: 0 20px;
  border: 1px solid var(--color-blue);
  border-radius: 6px;
  background: #678DDA0F;
  font-size:16px;
  color: var(--color-main);
  outline: none;
}

.quiz__step textarea::placeholder,
.quiz__step input[type="tel"]::placeholder {
  color: var(--color-gray);
}

.quiz__note {
  margin: -20px 0 28px;
  color: var(--color-gray);
}

.quiz__agreement {
  margin-bottom: 28px;
}

.quiz__agreement input {
  width: 20px;
  height: 20px;
  margin: 0;
  accent-color: var(--color-blue);
  flex-shrink: 0;
}

.quiz__final-text {
  margin: 0 0 32px;
  line-height: 1.25;
}

.quiz__nav {
  display: flex;
  gap: 16px;
  margin-top: 34px;
}

.quiz__btn {
  min-width: 170px;
  height: 58px;
  border: 1px solid var(--color-blue);
  border-radius: 6px;
  background: var(--color-blue);
  color: #fff;
  font-size:16px;
  font-weight: 400;
  text-transform: uppercase;
  cursor: pointer;
  transition: 0.25s;
  align-items: center;
  padding: 0 12px;
}

.quiz__btn span {
  margin-left: 16px;
}

.quiz__btn:hover {
  opacity: 0.85;
}

.quiz__btn--prev {
  display: none;
  background: transparent;
  color: var(--color-blue);
}

.quiz__btn--submit {
  display: none;
}

.quiz__image {
  position: absolute;
  right: 230px;
  bottom: 78px;
  width: 330px;
  height: 330px;
  object-fit: contain;
}

@media (max-width: 1200px) {
  .quiz {
    padding: 50px;
  }

  .quiz__image {
    right: 60px;
    width: 260px;
    height: 260px;
    opacity: 0.35;
  }
}

@media (max-width: 768px) {
  .quiz {
    padding: 34px 22px;
  }

  .quiz__title {
    margin-bottom: 48px;
  }

  .quiz__progress {
    margin-bottom: 44px;
  }

  .quiz__step-dot {
    width: 34px;
    height: 34px;
    font-size: 18px;
  }

  .quiz__form {
    max-width: 100%;
  }

  .quiz__step label {
    font-size: 18px;
    line-height: 1.25;
  }

  .quiz__image {
    display: none;
  }

  .quiz__nav {
    flex-direction: column;
  }

  .quiz__btn {
    width: 100%;
  }
}

.site-footer {
  padding: 42px 0 34px;
  background:
    url("../../images/new-home/hero-lines.svg") center / cover no-repeat,
    #DEE6F7;
    margin-top:40px;
}

.site-footer__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 34px;
  border-bottom: 2px solid var(--color-blue);
}

.site-footer__logo {
  width: 230px;
}

.site-footer__logo img {
  width: 100%;
}

.site-footer__nav {
  display: flex;
  align-items: center;
  gap: 58px;
}

.site-footer__nav a {
  font-size:16px;
  color: var(--color-main);
}

.site-footer__main {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 80px;
  padding: 34px 0;
}

.site-footer h3 {
  margin: 0 0 24px;
  font-size:16px;
  font-weight: 600;
  line-height: 120%;
  text-transform:none;
}

.site-footer__services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 70px;
}

.site-footer ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-footer li {
  margin-bottom: 18px;
}

.site-footer li a,
.site-footer__contacts p,
.site-footer__contacts a {
  font-size:16px;
  line-height: 1.4;
  color: var(--color-main);
}

.site-footer__contacts p {
  margin: 0 0 22px;
}

.site-footer__phone {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-top: 24px;
}

.site-footer__telegram {
  width: 30px;
  height: 30px;
  border-radius: 6px;
  background: var(--color-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.site-footer__phone-link {
  display: block;
  font-size: 22px !important;
  font-weight: 500;
}

.site-footer__callback {
  display: block;
  margin-top: 4px;
  font-size: 18px !important;
  color: var(--color-blue) !important;
}

.site-footer__notice {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 24px 0 34px;
  color: #2F5CB5;
}

.site-footer__notice span {
  width: 24px;
  height: 24px;
  border-radius: 4px;
  background: #2F5CB5;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 18px;
  font-weight: 600;
}

.site-footer__notice p {
  margin: 0;
  font-size:16px;
  line-height: 1.25;
}

.site-footer__bottom {
  display: grid;
  grid-template-columns: 1fr auto auto auto;
  gap: 20px;
  padding-top: 28px;
  border-top: 2px solid var(--color-blue);
}

.site-footer__bottom p,
.site-footer__bottom a {
  margin: 0;
  font-size: 18px;
  line-height: 120%;
  color: var(--color-main);
}

@media (max-width: 991px) {
  .site-footer__top,
  .site-footer__nav {
    flex-direction: column;
    align-items: flex-start;
  }

  .site-footer__nav {
    gap: 18px;
  }

  .site-footer__main {
    grid-template-columns: 1fr;
  }

  .site-footer__services-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .site-footer__bottom {
    grid-template-columns: 1fr;
    gap: 18px;
  }
}

.articles-section {
  padding: 40px 0;
}

.articles-section__head {
  margin-bottom: 56px;
  text-align: center;
}

.articles-section__title {
  margin-bottom: 28px;
  font-weight: 500;
  text-transform: uppercase;
}

.articles-section__subtitle {
  margin: 0;
  font-size:16px;
  line-height: 1.25;
  color: var(--color-main);
}

.articles-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.article-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--color-blue);
  border-radius: 6px;
  background: #fff;
}

.article-card__image {
  display: block;
  height: 205px;
  overflow: hidden;
}

.article-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.article-card__body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 30px;
}

.article-card__meta {
  margin-bottom: 24px;
}

.article-card__meta-item {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 18px;
  color: var(--color-blue);
  font-size: 20px;
  font-weight: 600;
  line-height: 120%;
}

.article-card__meta-item img {
  width: 28px;
  height: 28px;
  object-fit: contain;
}

.article-card h3 {
  margin: 0 0 26px;
  font-size:16px;
  font-weight: 600;
  line-height: 120%;
  color: var(--color-main);
  text-transform:none;
}

.article-card p {
  margin: 0px;
  font-size:16px;
  line-height: 120%;
  color: var(--color-main);
}

.article-card__link {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: auto;
  color: var(--color-blue);
  font-size:16px;
  font-weight: 600;
  display: none;
}

.article-card__link span {
  font-size: 26px;
}

@media (max-width: 1200px) {
  .articles-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .articles-grid {
    grid-template-columns: 1fr;
  }
}

.blog-banner {
    padding: 40px 0;
}

.blog-banner__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;

    padding: 46px 70px;

    background: #F5F8FE;
    border-radius: 6px;
}

.blog-banner__content {
    display: flex;
    align-items: center;
    gap: 34px;
}

.blog-banner__content img {
    width: 72px;
    height: 72px;
    flex-shrink: 0;
    object-fit: contain;
}

.blog-banner__text h3 {
    margin: 0 0 12px;

    font-size: 26px;
    font-weight: 600;
    line-height: 120%;
    color: var(--color-main);
    text-transform:none;
}

.blog-banner__text p {
    margin: 0;

    font-size:16px;
    line-height: 1.25;
    color: var(--color-main);
    max-width: 635px;
}

.blog-banner__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 26px;

    width: 340px;
    height: 58px;

    border-radius: 6px;

    background: var(--color-blue);

    color: #fff;
    font-size:16px;
    font-weight: 400;
    text-transform: uppercase;

    transition: .25s;
}

.blog-banner__btn:hover {
    opacity: .9;
}

.blog-banner__btn span {
    font-size: 28px;
    line-height: 1;
}

@media (max-width: 991px) {

    .blog-banner__inner {
        flex-direction: column;
        align-items: flex-start;

        padding: 36px 30px;
    }

    .blog-banner__btn {
        width: 100%;
    }

}

@media (max-width: 576px) {

    .blog-banner__content {
        flex-direction: column;
        align-items: flex-start;
    }

    .blog-banner__text h3 {
        font-size: 30px;
    }

}

.expert-form-section {
  padding: 40px 0;
}

.expert-form {
  max-width: 1710px;
  margin: 0 auto;
  padding: 64px 0;
  border: 1px solid var(--color-blue);
  border-radius: 6px;
  background:
    url("../../images/new-home/hero-lines-2.png") center / cover no-repeat,
    #fff;
}

.expert-form__inner {
  display: flex;
  justify-content: space-between;
  gap: 80px;
}

.expert-form__content {
  max-width: 820px;
}

.expert-form__title {
  margin: 0 0 82px;
  font-weight: 500;
  text-transform: uppercase;
}

.expert-form__title span {
  color: var(--color-blue);
}

.expert-form__items {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.expert-form__item {
  display: grid;
  grid-template-columns: 72px 1fr;
  align-items: center;
  gap: 29px;
}

.expert-form__item img {
  width: 70px;
  height: 70px;
  object-fit: contain;
}

.expert-form__item p {
  margin: 0;
  font-size: 26px;
  line-height: 120%;
  color: var(--color-main);
  max-width: 600px;
}

.expert-form__form {
  flex-shrink: 0;
}

.expert-form__form .hero-form__btn {
  margin-top: 24px;
}

@media (max-width: 1200px) {
  .expert-form {
    padding: 50px 0;
  }

  .expert-form__inner {
    flex-direction: column;
  }
}

@media (max-width: 576px) {
  .expert-form {
    padding: 34px 0;
  }

  .expert-form__title {
    margin-bottom: 50px;
  }

  .expert-form__item {
    grid-template-columns: 56px 1fr;
    gap: 18px;
  }

  .expert-form__item img {
    width: 50px;
    height: 50px;
  }
}

#feedback26 {
    background: rgba(255, 255, 255, 1);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border: 1px solid rgba(103, 141, 218, .8);
    color: var(--color-main);
}

.hero-form--feedback {
    display: flex;
    flex-direction: column;
    gap: 0px;
    width: 100%;
    padding: 0;
    border: 0;
    margin-top: 20px;
    box-shadow:none;
}

.hero-form--feedback .hero-form__field select {
    margin-bottom:22px;
}

.hero-form--feedback .hero-form__field {
    position: relative;
    width: 100%;
}

.hero-form--feedback .hero-form__field input,
.hero-form--feedback .hero-form__field select,
.hero-form--feedback .hero-form__field textarea {
    width: 100%;
    min-height: 56px;
    padding: 15px 18px;
    box-sizing: border-box;

    font-family: Montserrat, sans-serif;
    font-size:16px;
    font-weight: 400;
    line-height: 1.4;
    color: #2E3335;

    background: rgba(103, 141, 218, 0.06);
    border: 1px solid #678DDA;
    border-radius: 6px;
    outline: none;

    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease,
        background-color 0.2s ease;
}

.hero-form--feedback .hero-form__field input::placeholder,
.hero-form--feedback .hero-form__field textarea::placeholder {
    color: #808080;
    opacity: 1;
}

.hero-form--feedback .hero-form__field input:focus,
.hero-form--feedback .hero-form__field select:focus,
.hero-form--feedback .hero-form__field textarea:focus {
    background: #fff;
    border-color: #B7B8BA;
    box-shadow: 0 0 0 3px rgba(103, 141, 218, 0.15);
}

.hero-form--feedback .hero-form__field select {
    padding-right: 45px;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;

    background-image:
        linear-gradient(45deg, transparent 50%, #B7B8BA 50%),
        linear-gradient(135deg, #B7B8BA 50%, transparent 50%);
    background-position:
        calc(100% - 21px) 50%,
        calc(100% - 15px) 50%;
    background-size: 6px 6px;
    background-repeat: no-repeat;
}

.hero-form--feedback .hero-form__check {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin: 0;
    cursor: pointer;
    margin-bottom:12px;
}

.hero-form--feedback .hero-form__check input {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
}

.hero-form--feedback .hero-form__check span {
    position: relative;
    display: block;
    min-height: 22px;
    padding-left: 32px;

    font-family: Montserrat, sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.45;
    color: #2E3335;
}

.hero-form--feedback .hero-form__check span::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;

    width: 20px;
    height: 20px;
    box-sizing: border-box;

    background-color: #fff;
    border: 1px solid #B7B8BA;
    border-radius: 3px;

    transition:
        background-color 0.2s ease,
        border-color 0.2s ease;
}

.hero-form--feedback .hero-form__check input:checked + span::before {
    background-color: #B7B8BA;
    background-image: url("/assets/template/images/checked.svg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: 12px 9px;
}

.hero-form--feedback .hero-form__check a {
    color: #678DDA;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.hero-form--feedback .hero-form__check a:hover {
    text-decoration: none;
}

.hero-form--feedback .hero-form__btn {
    width: 100%;
    min-height: 56px;
    padding: 14px 24px;

    font-family: Montserrat, sans-serif;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.3;
    color: #fff;

    background: #678DDA;
    border: 1px solid #678DDA;
    border-radius: 6px;
    cursor: pointer;

    transition:
        background-color 0.2s ease,
        color 0.2s ease;
}

.hero-form--feedback .hero-form__btn:hover {
    color: #678DDA;
    background: #fff;
}

.hero-form--feedback .hero-form__error {
    display: block;
    margin-top: 5px;

    font-size: 12px;
    line-height: 1.3;
    color: #c62828;
}

.hero-form--feedback .hero-form__error--check {
    margin-top: -10px;
}

.hero-form--feedback .hero-form__messages {
    padding: 12px 15px;
    font-size: 14px;
    line-height: 1.4;
    border-radius: 6px;
}

.hero-form--feedback .hero-form__messages--error {
    color: #c62828;
    background: rgba(198, 40, 40, 0.08);
    border: 1px solid rgba(198, 40, 40, 0.25);
}

.hero-form--feedback .hero-form__messages--success {
    color: #2E3335;
    background: rgba(103, 141, 218, 0.1);
    border: 1px solid #678DDA;
}

.work-stages {
    padding: 40px 0;
    font-family: "Montserrat", sans-serif;
    color: #2E3335;
}

.work-stages__head {
    margin-bottom: 48px;
}

.work-stages__title {
    margin: 0 0 12px;
    font-size: 36px;
    line-height: 1.2;
    font-weight: 600;
    text-transform: uppercase;
    color: #2E3335;
    text-align: center;
}

.work-stages__subtitle {
    margin: 0;
    font-size:16px;
    line-height: 1.45;
    font-weight: 400;
    font-style: italic;
    color: #808080;
    text-align: center;
}

.work-stages__list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.work-stage {
    display: grid;
    grid-template-columns: 560px 1fr;
    gap: 42px;
    align-items: stretch;
}

.work-stage__main {
    display: grid;
    grid-template-columns: 110px 1fr;
    min-height: 132px;
    overflow: hidden;
    border-radius: 6px;
    background: #F5F8FE;
}

.work-stage__number {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;

    background: var(--color-blue);
    color: #fff;

    font-size: 28px;
    line-height: 1;
    font-weight: 600;
}

.work-stage__title {
    display: flex;
    align-items: center;
    margin: 0;
    padding: 26px 30px;

    font-size:16px;
    line-height: 1.3;
    font-weight: 500;
    color: #2E3335;
    text-transform:none;
}

.work-stage__description {
    display: flex;
    align-items: center;
    min-height: 132px;
    padding: 24px 30px;

    border: 1px solid rgba(103, 141, 218, 0.35);
    border-radius: 6px;
    background: #fff;
}

.work-stage__description p {
    margin: 0;
    font-size: 20px;
    line-height: 1.5;
    font-weight: 400;
    color: #2E3335;
}

.work-stage:hover .work-stage__main {
    box-shadow: 0 12px 35px rgba(46, 51, 53, 0.08);
}

.work-stage:hover .work-stage__description {
    border-color: #678DDA;
}

@media (max-width: 1199px) {
    .work-stages {
        padding: 90px 0;
    }

    .work-stage {
        grid-template-columns: 470px 1fr;
        gap: 24px;
    }

    .work-stage__main {
        grid-template-columns: 92px 1fr;
    }

    .work-stage__title {
        padding: 24px;
        font-size: 21px;
    }

    .work-stage__description {
        padding: 22px 24px;
    }

    .work-stage__description p {
        font-size: 18px;
    }
}

@media (max-width: 991px) {
    .work-stage {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .work-stage__main,
    .work-stage__description {
        min-height: auto;
    }

    .work-stage__description {
        padding: 22px 24px;
    }
}

@media (max-width: 767px) {
    .work-stages {
        padding: 70px 0;
    }

    .work-stages__head {
        margin-bottom: 32px;
    }

    .work-stages__title {
        font-size: 28px;
    }

    .work-stages__subtitle {
        font-size: 17px;
    }

    .work-stages__list {
        gap: 24px;
    }

    .work-stage__main {
        grid-template-columns: 76px 1fr;
        border-radius: 6px 6px 0 0;
    }

    .work-stage__number {
        padding: 18px 12px;
        font-size:16px;
    }

    .work-stage__title {
        padding: 20px;
        font-size: 19px;
    }

    .work-stage__description {
        margin-top: -12px;
        padding: 20px;
        border-radius: 0 0 6px 6px;
    }

    .work-stage__description p {
        font-size: 16px;
        line-height: 1.55;
    }
}

@media (max-width: 479px) {
    .work-stages__title {
        font-size: 25px;
    }

    .work-stage__main {
        grid-template-columns: 66px 1fr;
    }

    .work-stage__number {
        font-size: 19px;
    }

    .work-stage__title {
        padding: 18px 16px;
        font-size: 17px;
    }

    .work-stage__description {
        padding: 18px 16px;
    }

    .work-stage__description p {
        font-size: 15px;
    }
}

.site-footer li a:hover {
    color:#2F5CB5;
}

.main-service-card div {
    margin: 0 0 18px !important;
   
}
.main-service-card a {
    font-size: 16px;
    font-weight: 600;
    line-height: 120%;
    color: var(--color-main);
    text-transform: none;
}
.main-service-card a:hover {
    color: #2F5CB5;
}

/* =================================
   MOBILE HEADER
   ================================= */

.header-mobile {
    display: none;
}

.mobile-nav,
.mobile-nav-overlay {
    display: none;
}

@media (max-width: 991px) {

    /* Старую верхнюю часть скрываем */

    .site-header > .container {
        display: none;
    }

    /* Десктопное меню скрываем */

    .site-header-menu .header-main {
        display: none;
    }

    .site-header-menu {
        background: #DEE6F7;
    }

    .site-header-menu .container {
        width: 100%;
        max-width: none;
        padding: 0 10px 0 5px;
    }

    /* Верхняя мобильная строка */

    .header-mobile {
        display: flex;
        align-items: center;
        justify-content: space-between;

        width: 100%;
        min-height: 70px;
    }

    .header-mobile__logo {
        display: block;
        width: 190px;
        flex: 0 0 auto;
    }

    .header-mobile__logo img {
        display: block;
        width: 100%;
        height: auto;
    }

    .header-mobile__actions {
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .header-mobile__telegram,
    .header-mobile__search {
        display: flex;
        align-items: center;
        justify-content: center;

        padding: 0;
        border: 0;
        background: transparent;

        color: #678DDA;
        cursor: pointer;
    }

    .header-mobile__phone {
        font-family: "Montserrat", sans-serif;
        font-size: 16px;
        line-height: 1;
        font-weight: 600;
        white-space: nowrap;
        color: #678DDA;
        text-decoration: none;
    }

    /* Бургер */

    .header-mobile__burger {
        position: relative;

        display: flex;
        flex-direction: column;
        justify-content: center;
        gap: 5px;

        width: 28px;
        height: 28px;

        padding: 0;

        border: 0;
        background: transparent;

        cursor: pointer;
    }

    .header-mobile__burger span {
        display: block;

        width: 100%;
        height: 2px;

        background: #678DDA;

        transition: 0.25s;
    }

    /* =================================
       FULLSCREEN MOBILE MENU
       ================================= */

    .mobile-nav {
        position: fixed;
        top: 0;
        right: 0;
        z-index: 5000;

        display: flex;
        flex-direction: column;

        width: 100%;
        height: 100vh;
        height: 100dvh;

        background: #DEE6F7;

        transform: translateX(100%);

        transition: transform 0.35s ease;
    }

    .mobile-nav.is-open {
        transform: translateX(0);
    }

    .mobile-nav__head {
        display: flex;
        align-items: center;
        justify-content: space-between;

        min-height: 70px;
        padding: 0 20px;

        border-bottom: 1px solid rgba(255,255,255,0.15);
    }

    .mobile-nav__logo {
        width: 190px;
    }

    .mobile-nav__logo img {
        display: block;
        width: 100%;
    }

    /* крестик */

    .mobile-nav__close {
        position: relative;

        width: 28px;
        height: 28px;

        padding: 0;

        border: 0;
        background: transparent;

        cursor: pointer;
    }

    .mobile-nav__close span {
        position: absolute;
        top: 13px;
        left: 2px;

        width: 25px;
        height: 2px;

        background: #2E3335;
    }

    .mobile-nav__close span:first-child {
        transform: rotate(45deg);
    }

    .mobile-nav__close span:last-child {
        transform: rotate(-45deg);
    }

    /* тело меню */

    .mobile-nav__body {
        flex: 1;
        overflow-y: auto;

        padding: 28px 24px 50px;
    }

    .mobile-nav__list,
    .mobile-nav__submenu {
        margin: 0;
        padding: 0;
        list-style: none;
    }

    .mobile-nav__item {
        margin: 0;
        padding: 0;

        border-bottom: 1px solid rgba(255,255,255,0.08);
    }

    .mobile-nav__parent-row {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .mobile-nav__link {
        display: block;

        flex: 1;

        padding: 17px 5px;

        font-family: "Montserrat", sans-serif;
        font-size: 18px;
        line-height: 1.3;
        font-weight: 500;

        color: #2E3335;
        text-decoration: none;

        transition: color 0.2s ease;
    }

    .mobile-nav__link:hover,
    .mobile-nav__link.active {
        color: #678DDA;
    }

    /* стрелка */

    .mobile-nav__toggle {
        position: relative;

        display: flex;
        align-items: center;
        justify-content: center;

        width: 48px;
        height: 48px;

        padding: 0;

        border: 0;
        background: transparent;

        cursor: pointer;
    }

    .mobile-nav__toggle span {
        width: 9px;
        height: 9px;

        border-right: 1.5px solid #2E3335;
        border-bottom: 1.5px solid #2E3335;

        transform: rotate(45deg) translate(-2px, -2px);

        transition: transform 0.25s ease;
    }

    .mobile-nav__item--parent.is-open
    > .mobile-nav__parent-row
    .mobile-nav__toggle span {
        transform: rotate(225deg);
    }

    /* подменю */

    .mobile-nav__submenu {
        display: none;

        padding: 0 0 8px 18px;
    }

    .mobile-nav__item--parent.is-open > .mobile-nav__submenu {
        display: block;
    }

    .mobile-nav__submenu-item > a {
        display: block;

        padding: 11px 10px;

        font-family: "Montserrat", sans-serif;
        font-size: 15px;
        line-height: 1.35;
        font-weight: 400;

        color: #2E3335;
        text-decoration: none;

        transition: color 0.2s ease;
    }

    .mobile-nav__submenu-item > a:hover,
    .mobile-nav__submenu-item.active > a {
        color: #678DDA;
    }

    /* третий уровень */

    .mobile-nav__submenu .mobile-nav__submenu {
        padding-left: 15px;
    }

    /* overlay */

    .mobile-nav-overlay {
        position: fixed;
        inset: 0;
        z-index: 4900;

        display: block;

        background: rgba(0,0,0,0.45);

        opacity: 0;
        visibility: hidden;
        pointer-events: none;

        transition:
            opacity 0.3s ease,
            visibility 0.3s ease;
    }

    .mobile-nav-overlay.is-open {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }

    body.mobile-menu-open {
        overflow: hidden;
    }
}

@media (max-width: 480px) {
    .header-mobile__logo {
        width: 120px;
    }
    .hero-consult__title {
        font-size:25px;
    }
    .hero-consult__content {
        padding-top: 20px;
    }
}

@media (max-width: 991px) {

    .header-mobile-search {
        display: none;

        padding: 12px 0 18px;

        background: transparent;
    }

    .header-mobile-search.is-open {
        display: block;
    }

    .header-mobile-search form {
        display: flex;
        gap: 8px;
    }

    .header-mobile-search input {
        flex: 1;

        height: 46px;
        padding: 0 15px;

        border: 1px solid rgba(255,255,255,0.25);
        border-radius: 6px;

        background: rgba(255,255,255,0.58);

        font-family: "Montserrat", sans-serif;
        font-size: 15px;
        color: #2E3335;
    }

    .header-mobile-search input::placeholder {
        color: rgba(255,255,255,0.6);
    }

    .header-mobile-search button {
        padding: 0 18px;

        border: 0;
        border-radius: 6px;

        background: #678DDA;

        font-family: "Montserrat", sans-serif;
        font-weight: 500;
        color: #fff;
    }
}

@media (max-width: 991px) {

    .mobile-nav__search {
        padding: 8px 24px 14px;
    }

    .mobile-nav__search form {
        position: relative;
        display: flex;
        align-items: center;
        width: 100%;
    }

    .mobile-nav__search input {
        width: 100%;
        height: 46px;

        padding: 0 50px 0 16px;

        border: 1px solid rgba(103, 141, 218, 0.55);
        border-radius: 6px;
        outline: none;

        background: #F5F8FE;

        font-family: "Montserrat", sans-serif;
        font-size: 15px;
        line-height: 1;
        font-weight: 400;
        color: #2E3335;

        box-sizing: border-box;

        transition:
            border-color 0.2s ease,
            background-color 0.2s ease,
            box-shadow 0.2s ease;
    }

    .mobile-nav__search input::placeholder {
        color: #808080;
        opacity: 1;
    }

    .mobile-nav__search input:hover {
        border-color: #678DDA;
        background: #fff;
    }

    .mobile-nav__search input:focus {
        border-color: #678DDA;
        background: #fff;
        box-shadow: 0 0 0 3px rgba(103, 141, 218, 0.12);
    }

    .mobile-nav__search button {
        position: absolute;
        top: 50%;
        right: 4px;

        display: flex;
        align-items: center;
        justify-content: center;

        width: 38px;
        height: 38px;

        padding: 0;

        border: 0;
        border-radius: 6px;

        background: transparent;
        color: #678DDA;

        cursor: pointer;

        transform: translateY(-50%);
        transition:
            background-color 0.2s ease,
            color 0.2s ease;
    }

    .mobile-nav__search button:hover {
        background: rgba(103, 141, 218, 0.10);
        color: #2E3335;
    }

    .mobile-nav__search button svg {
        display: block;
        width: 20px;
        height: 20px;
    }

    .mobile-nav__body {
        padding-top: 4px;
    }
}

@media (max-width: 576px) {

    .mobile-nav__search {
        padding-left: 20px;
        padding-right: 20px;
    }

    .mobile-nav__search input {
        height: 44px;
        font-size: 14px;
    }

    .mobile-nav__search button {
        width: 36px;
        height: 36px;
    }
}

@media (max-width: 576px) {
    .hero-consult__item {
        grid-template-columns: 68px 1fr;
        gap: 21px;
    }
    .hero-consult__items {
        gap: 0px;
    }
    .hero-consult__title {
        margin-bottom:18px;
    }
    .hero-consult__container {
        gap: 30px;
    }
    .hero-form__btn {
        font-size:16px;
    }
    h2 {
        font-size:28px;
    }
    .about-company__content h2 {
        margin-bottom:10px;
    }
    .about-company__description {
        margin-bottom:30px;
    }
    .advantage h3 {
        font-size:22px;
    }
    .company-stats {
        padding: 30px 0;
    }
    .support-process__title {
        font-size:28px;
        margin-bottom:10px;
    }
    .support-process__subtitle {
        font-size:20px;
    }
    .support-process__content h3 {
        font-size:22px;
        text-align: center;
    }
    .support-process__icon {
        justify-content: center;
    }
    .support-process__result p {
        font-size:18px;
        line-height:120%;
    }
    .service-result img {
        width: 120px;
        height: 120px;
        object-fit: contain;
        margin-top: -40px;
        margin-bottom: 42px;
    }
    .service-result p {
        font-size:26px;
    }
    .price-list__title {
        margin-bottom: 20px;
    }
    .estimate-block__title {
        font-size:28px;
        margin-bottom: 30px;
    }
    .quiz__btn {
        justify-content: center;
    }
    .founder-block__photo {
        margin: 0 auto 20px auto;
    }
    .founder-block__name  {
        font-size:28px;
        margin-bottom: 30px;
    }
    .founder-block__inner {
        gap:15px;
    }
    .founder-block__text p, .founder-block__text li {
        font-size:18px;
    }
    .founder-block__text {
        padding-top: 0;
    }
    .founder-block {
        padding: 30px 10px;
        margin: 0;
    }
    .legal-guarantees {
        padding: 20px 0px;
    }
    .legal-guarantees__subtitle {
        font-size:20px;
    }
    .legal-guarantees__head {
        margin-bottom: 20px;
    }
    .experience-section {
        padding: 20px 0px;
    }
    .contacts-banner__text, .contacts-banner__contacts {
        padding-left: 0px;
        font-size: 20px;
    }
    .why-us__card h3 {
        font-size: 22px;
    }
    .contacts-banner {
        padding: 20px 0px;
    }
    .faq-item.active .faq-item__content {
        font-size: 16px;
    }
}
.faq-item__content a {
    color: #678DDA;
}
.site-header-menu {
    border-bottom: 1px solid rgba(103, 141, 218, .8);
}

.main-content h1 {
    margin-bottom:30px;
}