@charset "UTF-8";
/* Reset and base styles  */
@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap");
* {
  padding: 0px;
  margin: 0px;
  border: none;
}

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

/* Links */
a,
a:link,
a:visited {
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

/* Common */
aside,
nav,
footer,
header,
section,
main {
  display: block;
}

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

ul,
ul li {
  list-style: none;
}

img {
  vertical-align: top;
}

img,
svg {
  max-width: 100%;
  height: auto;
}

address {
  font-style: normal;
}

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

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

button,
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;
}

@font-face {
  font-family: "Exo 2";
  src: url("../fonts/Exo2-SemiBold.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Exo 2";
  src: url("../fonts/Exo-2-Black-Regular.ttf") format("truetype");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: #fff;
  padding: 18px 0;
}
@media (min-width: 768px) {
  .header {
    padding: 24px 0;
  }
}
@media (min-width: 1440px) {
  .header {
    padding: 12px 0;
  }
}
.header__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  max-width: 50px;
}
@media (min-width: 768px) {
  .logo {
    max-width: 80px;
  }
}
@media (min-width: 1440px) {
  .logo {
    max-width: 110px;
  }
}

.menu {
  display: none;
}
@media (min-width: 1224px) {
  .menu {
    display: flex;
  }
}
.menu__list {
  padding-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 30px;
  /* Добавляем прокрутку */
  max-height: 70vh;
  overflow-y: auto;
}
@media (min-width: 1224px) {
  .menu__list {
    flex-direction: row;
    gap: 0;
    padding-top: 0;
    /* Убираем прокрутку на десктопе */
    max-height: none;
    overflow-y: visible;
  }
}
@media (min-width: 1440px) {
  .menu__list {
    gap: 6px;
  }
}
@media (min-width: 1920px) {
  .menu__list {
    gap: 12px;
  }
}
@media (min-width: 1224px) {
  .menu__item {
    position: relative;
    padding: 7px 8px;
  }
  .menu__item:has(> .submenu__list) > .menu__link {
    position: relative;
    padding-right: 20px;
  }
  .menu__item:has(> .submenu__list) > .menu__link::after {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 15px;
    height: 8px;
    background-image: url("/images/icons/arrow.svg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    transition: transform 0.2s ease 0.1s;
  }
  .menu__item:has(> .submenu__list) > .menu__link:hover::after {
    transform: translateY(-50%) rotate(180deg);
  }
  .menu__item:has(> .submenu__list):hover > .menu__link {
    color: #f6e049;
  }
}
@media (min-width: 1224px) and (min-width: 1920px) {
  .menu__item {
    padding: 7px 16px;
  }
}
.menu__link {
  text-transform: uppercase;
  color: #212529;
  transition: all 0.3s ease;
}
.menu__link:hover {
  color: #00bcd4;
}

.submenu__list {
  margin-top: 17px;
}
@media (min-width: 1224px) {
  .submenu__list {
    display: block;
    position: absolute;
    top: 100%;
    left: 15px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0s linear 0.3s;
    width: -moz-max-content;
    width: max-content;
    max-width: 322px;
    min-width: 100%;
    background: #fff;
    box-shadow: 0 4px 16px 0 rgba(0, 0, 0, 0.08);
    border-radius: 10px;
    padding: 8px 0;
    z-index: 100;
    margin-top: 0;
  }
}
@media (min-width: 1224px) {
  .submenu__item {
    padding: 8px 16px;
  }
}
.submenu__link {
  text-transform: uppercase;
  color: #212529;
  transition: all 0.3s ease;
  font-size: 14px;
}
.submenu__link:hover {
  color: #00bcd4;
}

.menu__item:hover .submenu__list {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  transition-delay: 0.1s;
}

/* Стили для модального окна телефона */
.phone-modal {
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.1);
  z-index: 1000;
  justify-content: flex-end;
  align-items: flex-start;
  transition: background-color 0.4s ease-out;
}
.phone-modal.is-visible {
  display: flex;
}
.phone-modal__content {
  background: #f5f5f5;
  padding: 20px 37px 20px 81px;
  box-shadow: 0 4px 16px 0 rgba(0, 0, 0, 0.08);
  border-radius: 0 0 0 30px;
  max-width: 320px;
  position: relative;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.25, 0.1, 0.25, 1);
  will-change: transform;
}
.is-visible .phone-modal__content {
  transform: translateX(0);
}
.phone-modal__close {
  position: absolute;
  top: -4px;
  right: 5px;
  font-size: calc(20px + 4px);
  padding: 5px;
}

/* Класс для отключения прокрутки страницы */
.no-scroll {
  overflow: hidden;
}

.phone {
  display: none;
}
@media (min-width: 768px) {
  .phone {
    max-width: 185px;
  }
}
.phone__link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  font-family: "Exo 2", sans-serif;
  font-weight: 600;
  color: #212529;
  margin-bottom: calc(10px + 2px);
}
@media (min-width: 768px) {
  .phone__link {
    justify-content: center;
    margin-bottom: 10px;
  }
}
.phone__text {
  font-weight: 400;
  font-size: 10px;
  text-align: center;
  color: #6b7b8e;
  margin: 0;
}
@media (min-width: 768px) {
  .phone {
    display: block;
  }
  .phone__icon {
    display: none;
  }
}

.phone-btn {
  display: block;
}
@media (min-width: 768px) {
  .phone-btn {
    display: none;
  }
}

.burger {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  position: relative;
}
@media (min-width: 768px) {
  .burger {
    width: 60px;
    height: 60px;
  }
}
@media (min-width: 1224px) {
  .burger {
    display: none;
  }
}
.burger__circle {
  width: 40px;
  height: 40px;
  background-color: rgba(246, 224, 73, 0.5);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 3px;
}
@media (min-width: 768px) {
  .burger__circle {
    width: 60px;
    height: 60px;
    gap: 4px;
  }
}
.burger__line {
  height: 2px;
  background: #212529;
  border-radius: 2px;
}
.burger__line--top, .burger__line--bottom {
  width: 14px;
}
@media (min-width: 768px) {
  .burger__line--top, .burger__line--bottom {
    width: 22px;
  }
}
.burger__line--middle {
  width: 18px;
}
@media (min-width: 768px) {
  .burger__line--middle {
    width: 30px;
  }
}

/* Стили для модального меню */
.menu-modal {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  z-index: 1000;
  display: none;
  justify-content: flex-end;
  align-items: flex-start;
  background-color: rgba(0, 0, 0, 0.1);
}
.menu-modal__content {
  background: #f5f5f5;
  padding: 20px;
  max-width: 320px;
  border-radius: 0 0 0 30px;
  box-shadow: 0 4px 16px 0 rgba(0, 0, 0, 0.08);
  position: relative;
  transform: translateX(100%);
  transition: transform 0.3s ease-out;
  will-change: transform;
}
.menu-modal.is-visible {
  display: flex;
  pointer-events: auto;
}
.menu-modal.is-visible .menu-modal__backdrop {
  opacity: 1;
}
.menu-modal.is-visible .menu-modal__content {
  transform: translateX(0);
}
.menu-modal__close {
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: calc(20px + 4px);
  padding: 5px;
}

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

.widget__title {
  font-weight: 600;
  text-transform: uppercase;
  color: #565b60;
  margin-bottom: 12px;
}
.widget__input {
  width: 100%;
  font-size: 12px;
}
.widget__menu {
  background-color: #f5f5f5;
  border-radius: 12px;
  padding: 20px;
}
.widget__item:not(:last-child) {
  border-bottom: 1px solid rgba(108, 117, 125, 0.4);
  padding-bottom: 12px;
}
.widget__item:not(:first-child) {
  padding-top: 12px;
}
.widget__link {
  font-family: "Exo 2", sans-serif;
  font-size: 16px;
  color: #565b60;
  transition: all 0.3s ease;
}
.widget__link:hover {
  color: #00bcd4;
}
.widget__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  background-color: #f5f5f5;
  border-radius: 12px;
  padding: 30px 20px;
}
.widget__content .button {
  max-width: 215px;
}
.widget__text {
  font-family: "Exo 2", sans-serif;
  font-size: 16px;
  line-height: 1.37;
  text-align: center;
}
.widget__phone-link {
  font-family: "Exo 2", sans-serif;
  font-size: 20px;
  color: #212529;
}
.widget__wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.widget__case {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 30px 20px;
  border-radius: 12px;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  color: #f5f5f5;
  text-align: center;
}
.widget__case::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.4) 50%, rgba(0, 0, 0, 0.3) 100%);
  z-index: -1;
  border-radius: 12px;
  transition: all 0.3s ease;
}
.widget__case:hover {
  color: #212529;
}
.widget__case:hover::before {
  background: #f6e049;
}

.contact-form {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 768px) {
  .contact-form {
    grid-template-columns: 1fr 1fr;
    gap: 24px 20px;
  }
  .contact-form__group:nth-child(1), .contact-form__group:nth-child(2) {
    grid-column: 1;
  }
  .contact-form__group:nth-child(3), .contact-form__group:nth-child(4) {
    grid-column: 2;
  }
  .contact-form__group:nth-child(3):nth-child(3), .contact-form__group:nth-child(4):nth-child(3) {
    grid-row: 1;
  }
  .contact-form__group:nth-child(3):nth-child(4), .contact-form__group:nth-child(4):nth-child(4) {
    grid-row: 2;
  }
  .contact-form__group:nth-child(5) {
    grid-column: 1/span 2;
  }
  .contact-form__sms {
    grid-column: 1/span 2;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 20px;
    align-items: start;
  }
  .contact-form__group--sms {
    width: auto;
    margin: 0;
  }
  .contact-form__agreement {
    grid-column: 1/span 2;
  }
}
.contact-form__group {
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 24px;
  color: #212529;
}
.contact-form__label {
  font-family: "Exo 2", sans-serif;
  font-size: 24px;
  line-height: 1.33;
  color: #6b7b8e;
  cursor: default;
}
.contact-form__input {
  border: 1px solid rgba(107, 123, 142, 0.4);
  border-radius: 12px;
  background-color: #fff;
  padding: 24px;
  width: 100%;
}
.contact-form__input::-moz-placeholder {
  color: rgba(108, 117, 125, 0.6);
}
.contact-form__input::placeholder {
  color: rgba(108, 117, 125, 0.6);
}
.contact-form__select {
  border: 1px solid rgba(107, 123, 142, 0.4);
  border-radius: 12px;
  background-color: #fff;
  padding: 24px;
  width: 100%;
  color: rgba(108, 117, 125, 0.6);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #ffffff url("data:image/svg+xml;charset=UTF-8,%3csvg width='22' height='12' viewBox='0 0 22 12' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M20.2169 4.76837e-07L21.9999 1.78471L12.2824 11.5055C12.1267 11.6622 11.9416 11.7866 11.7376 11.8715C11.5337 11.9563 11.3149 12 11.094 12C10.8731 12 10.6544 11.9563 10.4505 11.8715C10.2465 11.7866 10.0613 11.6622 9.90563 11.5055L0.183105 1.78471L1.96613 0.00168276L11.0915 9.12538L20.2169 4.76837e-07Z' fill='%236C757D' fill-opacity='0.6'/%3e%3c/svg%3e") right 16px center/20px 12px no-repeat;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  text-indent: 0.01px;
  text-overflow: "";
}
.contact-form__select::-ms-expand {
  display: none;
}
.contact-form__select:focus {
  outline: none;
}
@supports ((-webkit-appearance: base-select) or (-moz-appearance: base-select) or (appearance: base-select)) {
  .contact-form__select {
    padding-inline: 24px;
    background-image: none;
  }
  .contact-form__select, .contact-form__select::picker(select) {
    -webkit-appearance: base-select;
       -moz-appearance: base-select;
            appearance: base-select;
  }
  .contact-form__select::picker-icon {
    content: "";
    width: 20px;
    height: 12px;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='22' height='12' viewBox='0 0 22 12' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M20.2169 4.76837e-07L21.9999 1.78471L12.2824 11.5055C12.1267 11.6622 11.9416 11.7866 11.7376 11.8715C11.5337 11.9563 11.3149 12 11.094 12C10.8731 12 10.6544 11.9563 10.4505 11.8715C10.2465 11.7866 10.0613 11.6622 9.90563 11.5055L0.183105 1.78471L1.96613 0.00168276L11.0915 9.12538L20.2169 4.76837e-07Z' fill='%236C757D' fill-opacity='0.6'/%3e%3c/svg%3e");
    transition: transform 0.2s ease-out;
  }
  .contact-form__select:open::picker-icon {
    transform: rotate(180deg);
  }
  .contact-form__select::picker(select) {
    padding: 0;
    margin-top: 4px;
    border: 1px solid rgba(107, 123, 142, 0.4);
    background: #fff;
    border-radius: 12px;
    opacity: 0;
    height: 0;
    overflow: clip;
    transition: height 0.3s ease-out, opacity 0.3s ease-out;
  }
  @starting-style {
    .contact-form__select::picker(select) {
      opacity: 0;
      height: 0;
    }
  }
  .contact-form__select:open::picker(select) {
    opacity: 1;
    height: auto;
    overflow: auto;
  }
  .contact-form__select option {
    padding: 12px 16px;
    color: #6b7b8e;
    cursor: pointer;
    transition: background-color 0.2s ease-out, color 0.2s ease-out;
    position: relative;
    min-height: 44px;
    display: flex;
    align-items: center;
  }
  .contact-form__select option::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 4px;
    height: 100%;
    background-color: transparent;
    transition: background-color 0.2s ease-out;
  }
  .contact-form__select option:where(:hover, :focus, :active) {
    background: #6b7b8e;
    color: #f5f5f5;
  }
  .contact-form__select option:checked {
    background: #fff;
    color: #6b7b8e;
  }
  .contact-form__select option:checked::before {
    background-color: #6b7b8e;
  }
  .contact-form__select option::checkmark {
    display: none;
  }
  .contact-form__select option:first-child {
    border: 0;
  }
}
.contact-form__textarea {
  border: 1px solid rgba(107, 123, 142, 0.4);
  border-radius: 12px;
  background-color: #fff;
  padding: 24px;
  width: 100%;
}
.contact-form__textarea:focus {
  outline: none;
}
.contact-form__textarea::-moz-placeholder {
  color: rgba(108, 117, 125, 0.6);
  line-height: 1.33;
}
.contact-form__textarea::placeholder {
  color: rgba(108, 117, 125, 0.6);
  line-height: 1.33;
}
.contact-form__sms {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
@media (min-width: 768px) {
  .contact-form__sms {
    flex-wrap: nowrap;
  }
}
.contact-form__group--sms {
  width: 100%;
}
.contact-form__input--sms {
  min-height: 55px;
  border-radius: 44px;
  font-size: 18px;
  padding: 12px;
  text-align: center;
}
.contact-form .button-sms {
  max-width: 100%;
}
@media (min-width: 768px) {
  .contact-form .button-sms {
    max-width: none;
    white-space: nowrap;
  }
}
.contact-form .button__label {
  font-size: 18px;
}
.contact-form__text {
  font-size: 16px;
  line-height: 1.5;
  text-align: center;
  color: #6b7b8e;
}
.contact-form__link {
  color: #00bcd4;
}
.contact-form__error {
  display: none;
  color: #f57b7b;
  font-size: 12px;
  padding-left: 16px;
}
.contact-form__input--error {
  border-color: #f57b7b;
}

.footer {
  border-radius: 24px 24px 0 0;
  padding: 20px 16px;
  background-color: #212529;
  color: #f5f5f5;
}
@media (min-width: 768px) {
  .footer {
    padding: 40px 0;
  }
}
@media (min-width: 1224px) {
  .footer {
    padding: 60px 70px;
  }
}
@media (min-width: 1440px) {
  .footer {
    padding: 60px 0;
    border-radius: 24px;
    margin: 24px 32px;
  }
}
.footer__inner {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media (min-width: 768px) {
  .footer__inner {
    gap: 40px;
  }
}
@media (min-width: 1224px) {
  .footer__inner {
    flex-direction: row;
    justify-content: space-between;
  }
}
.footer__logo {
  display: block;
  margin-bottom: 20px;
}
.footer__logo-img {
  max-width: 60px;
}
.footer__text {
  font-size: 16px;
  line-height: 1.5;
}
.footer__menu {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}
@media (min-width: 768px) {
  .footer__menu {
    gap: 40px;
    flex-wrap: nowrap;
  }
}
@media (min-width: 1224px) {
  .footer__menu {
    gap: calc(20px - 4px);
  }
}
@media (min-width: 1440px) {
  .footer__menu {
    justify-content: space-between;
    gap: calc(20px + 4px);
  }
}
.footer__menu-list {
  display: flex;
  flex-direction: column;
  gap: calc(20px - 4px);
  width: 300px;
}
.footer__menu-title {
  font-family: "Exo 2", sans-serif;
  font-weight: 600;
  font-size: calc(20px + 4px);
  margin-bottom: 4px;
}
.footer__menu-link {
  color: #f5f5f5;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.5;
  opacity: 0.9;
  transition: all 0.3s ease;
}
.footer__menu-link:hover {
  color: #f6e049;
}
.footer__menu-phone, .footer__menu-mail, .footer__menu-address {
  display: inline-block;
  text-align: left;
}
.footer__menu-phone {
  color: #f5f5f5;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.5;
  opacity: 0.9;
  transition: all 0.3s ease;
  position: relative;
  padding-left: 32px;
}
.footer__menu-phone:hover {
  color: #f6e049;
}
.footer__menu-phone::before {
  content: "";
  position: absolute;
  left: 0;
  width: 24px;
  height: 24px;
  background-color: #f6e049;
  /* Вертикальное выравнивание */
  top: 0.1em;
  /* Маска для иконки */
  -webkit-mask-image: url("../images/icons/call.svg");
  mask-image: url("../images/icons/call.svg");
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
}
.footer__menu-mail {
  color: #f5f5f5;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.5;
  opacity: 0.9;
  transition: all 0.3s ease;
  position: relative;
  padding-left: 32px;
}
.footer__menu-mail:hover {
  color: #f6e049;
}
.footer__menu-mail::before {
  content: "";
  position: absolute;
  left: 0;
  width: 24px;
  height: 24px;
  background-color: #f6e049;
  /* Вертикальное выравнивание */
  top: 0.1em;
  /* Маска для иконки */
  -webkit-mask-image: url("../images/icons/email.svg");
  mask-image: url("../images/icons/email.svg");
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
}
.footer__menu-address {
  position: relative;
  padding-left: 32px;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.5;
}
.footer__menu-address::before {
  content: "";
  position: absolute;
  left: 0;
  width: 24px;
  height: 24px;
  background-color: #f6e049;
  /* Вертикальное выравнивание */
  top: 0.1em;
  /* Маска для иконки */
  -webkit-mask-image: url("../images/icons/location.svg");
  mask-image: url("../images/icons/location.svg");
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
}

.custom-pages .hero .button {
  max-width: 360px;
}
@media (min-width: 768px) {
  .custom-pages .hero .button {
    max-width: 266px;
  }
}
@media (min-width: 1440px) {
  .custom-pages .hero .button {
    max-width: 300px;
  }
}
.custom-pages .hero__wrapper {
  margin-bottom: 0;
  position: relative;
}
.custom-pages .hero__info {
  max-width: 700px;
  margin-bottom: 0;
}
@media (min-width: 1440px) {
  .custom-pages .hero__info {
    max-width: 908px;
  }
}
@media (min-width: 1920px) {
  .custom-pages .hero__info {
    max-width: 1045px;
  }
}
@media (min-width: 1440px) {
  .custom-pages .hero__heading {
    max-width: 100%;
  }
}
.custom-pages .hero .hero-card {
  max-width: 400px;
}
@media (min-width: 1920px) {
  .custom-pages .hero .hero-card {
    max-width: 500px;
  }
}
.custom-pages .hero .hero-single {
  display: none;
  position: absolute;
}
.custom-pages .hero .hero-single img {
  width: 254px;
  height: 254px;
  -o-object-fit: contain;
     object-fit: contain;
  border-radius: 40px;
  transform: rotate(15deg);
  margin-right: 50px;
}
@media (min-width: 1224px) {
  .custom-pages .hero .hero-single {
    display: flex;
    right: 0;
    bottom: -10%;
  }
}
@media (min-width: 1440px) {
  .custom-pages .hero .hero-single {
    right: -90px;
    bottom: -15%;
  }
}
@media (min-width: 1920px) {
  .custom-pages .hero .hero-single {
    right: -95px;
    bottom: -20%;
  }
}

.custom-head-max .hero__heading,
.custom-head-max .hero__text {
  max-width: 700px;
}

article .screenshot__list {
  margin-bottom: 24px;
}
article .ready-decision__figure {
  margin-bottom: 24px;
}

.hero {
  margin-top: 78px;
  margin-bottom: 20px;
  padding: 32px 0;
}
@media (min-width: 768px) {
  .hero {
    margin-top: 115px;
    margin-bottom: 30px;
  }
}
@media (min-width: 1440px) {
  .hero {
    margin-bottom: 40px;
    padding: 60px 0;
  }
}
@media (min-width: 1920px) {
  .hero {
    margin-bottom: 120px;
  }
}
.hero__wrapper {
  display: flex;
  flex-direction: column;
}
@media (min-width: 1440px) {
  .hero__wrapper {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    margin-bottom: 80px;
  }
}
@media (min-width: 1920px) {
  .hero__wrapper {
    margin-bottom: 140px;
  }
}
.hero__info {
  margin-bottom: 20px;
}
@media (min-width: 768px) {
  .hero__info {
    margin-bottom: 80px;
  }
}
@media (min-width: 1440px) {
  .hero__info {
    max-width: 597px;
    margin-bottom: 0;
  }
}
@media (min-width: 1920px) {
  .hero__info {
    max-width: 692px;
  }
}
.hero__badge {
  display: inline-block;
  background-color: rgba(246, 224, 73, 0.5);
  border-radius: 30px;
  padding: 4px 12px;
  border: 1px solid #f6e049;
  line-height: 1.44;
  margin-bottom: calc(20px + 4px);
}
.hero__heading {
  max-width: 708px;
  font-family: "Exo 2", sans-serif;
  font-weight: 600;
  font-size: calc(30px + 2px);
  line-height: 1.19;
  margin-bottom: calc(20px + 4px);
}
@media (min-width: 768px) {
  .hero__heading {
    font-size: calc(50px + 2px);
  }
}
@media (min-width: 1440px) {
  .hero__heading {
    font-size: calc(50px + 8px);
    line-height: 1.21;
  }
}
@media (min-width: 1920px) {
  .hero__heading {
    font-size: 64px;
    line-height: 1.13;
  }
}
.hero__text {
  max-width: 573px;
  font-weight: 500;
  line-height: 1.44;
  color: #6b7b8e;
  margin-bottom: 50px;
}
@media (min-width: 768px) {
  .hero__text {
    max-width: 100%;
  }
}
.hero__buttons {
  display: flex;
  align-items: center;
  gap: calc(10px + 2px);
  flex-wrap: wrap;
}
@media (min-width: 360px) {
  .hero__buttons {
    flex-wrap: nowrap;
  }
}

.button {
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 44px;
  color: #212529;
  width: 100%;
  min-height: 48px;
  transition: all ease 0.4s;
}
@media (min-width: 360px) {
  .button {
    max-width: 160px;
  }
}
@media (min-width: 1440px) {
  .button {
    max-width: 171px;
  }
}
.button__label {
  font-weight: 500;
  font-size: 14px;
  line-height: 1.8;
  padding: 9px 24px;
}
@media (min-width: 1440px) {
  .button__label {
    font-size: 18px;
    padding: 10px 24px;
  }
}

.button--accent {
  background-color: #f6e049;
  border: 2px solid #f6e049;
}
.button--accent:hover {
  background-color: #6b7b8e;
  border: 2px solid #6b7b8e;
  color: #f5f5f5;
}

.button--outline {
  border: 1px solid #212529;
}
.button--outline:hover {
  border: 1px solid #6b7b8e;
  color: #6b7b8e;
}

.hero-card {
  display: none;
}
@media (min-width: 1440px) {
  .hero-card {
    display: flex;
    flex-direction: column;
    gap: calc(20px - 2px);
  }
}
.hero-card__visual {
  position: relative;
  display: flex;
  gap: calc(20px - 2px);
}
.hero-card__decor {
  position: relative;
}
.hero-card__shape {
  width: 312px;
  height: 275px;
  border-radius: 1000px 10px 10px 30px;
  background-color: #6b7b8e;
  opacity: 0.84;
}
.hero-card__diagram {
  position: absolute;
  top: -40px;
  left: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 684px;
  width: 108px;
  height: 108px;
  box-shadow: 0 30px 51px -7px rgba(0, 0, 0, 0.44);
  background-color: #212529;
}
.hero-card__diagram img {
  width: 48px;
  height: 44px;
}
.hero-card__photo img {
  width: 258px;
  height: 275px;
  border-radius: 10px 30px 30px 10px;
  -o-object-fit: cover;
     object-fit: cover;
}
.hero-card__caption {
  background-image: url("../images/caption-bg.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  border-radius: 30px;
  padding: 66px 30px 50px;
  color: #fff;
}
.hero-card__content {
  max-width: 280px;
  font-weight: 600;
}
.hero-card__lead {
  font-size: 12px;
  line-height: 1.26;
  letter-spacing: -0.03em;
  margin-bottom: calc(30px + 2px);
  display: flex;
  align-items: center;
  gap: calc(10px + 3px);
}
.hero-card__lead::before {
  content: "";
  display: inline-block;
  width: 54px;
  height: 1px;
  background-color: #fff;
}
.hero-card__note {
  font-size: 20px;
  line-height: 1.3;
  letter-spacing: -0.02em;
}

.running-line {
  overflow: hidden;
  white-space: nowrap;
  position: relative;
  width: 100%;
  background-color: rgba(246, 224, 73, 0.5);
  padding: 20px 0;
}
.running-line__container {
  display: inline-flex;
  animation: run 30s linear infinite;
}
.running-line__container:hover {
  animation-play-state: paused;
}
.running-line__item {
  display: inline-flex;
  align-items: center;
  margin-right: 30px;
  font-weight: 500;
  font-size: calc(20px + 4px);
  line-height: 1.33;
  color: #6b7b8e;
}
.running-line__item::after {
  content: "";
  display: inline-block;
  width: 40px;
  height: 40px;
  margin-left: 10px;
  background-image: url("../images/icons/target.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

@keyframes run {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
.section-block {
  padding: 20px 0;
  margin-bottom: 20px;
}
@media (min-width: 768px) {
  .section-block {
    padding: 30px 0;
    margin-bottom: 30px;
  }
}
@media (min-width: 1224px) {
  .section-block {
    padding: 40px 0;
    margin-bottom: 40px;
  }
}
@media (min-width: 1920px) {
  .section-block {
    padding: 60px 0;
    margin-bottom: 60px;
  }
}
.section-block--light {
  background-color: #fff;
}
.section-block--dark {
  background-color: #f5f5f5;
}

.section-header {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 24px;
}
@media (min-width: 1224px) {
  .section-header {
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
  }
}
.section-header__content {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
@media (min-width: 1224px) {
  .section-header__content {
    max-width: 540px;
  }
}
@media (min-width: 1920px) {
  .section-header__content {
    max-width: 643px;
  }
}
.section-header__content .button {
  max-width: 100%;
  min-height: 50px;
}
@media (min-width: 768px) {
  .section-header__content .button {
    width: auto;
    margin-left: auto;
  }
}
.section-header__content .button__label {
  font-size: 18px;
  line-height: 1.44;
}
.section-header-text {
  line-height: 1.44;
}
@media (min-width: 768px) {
  .section-header-text {
    font-size: 16px;
    line-height: 1.5;
  }
}

.section-header--center {
  justify-content: center;
}
.section-header--center .title-h2 {
  text-align: center;
}

.title-h2 {
  font-weight: 600;
  font-size: 30px;
}
@media (min-width: 768px) {
  .title-h2 {
    font-size: 36px;
    line-height: 1.3;
  }
}
@media (min-width: 1224px) {
  .title-h2 {
    max-width: 540px;
    font-size: 42px;
    line-height: 1.26;
  }
}
@media (min-width: 1920px) {
  .title-h2 {
    font-size: 48px;
    line-height: 1.17;
  }
}

.card-wrapper {
  display: flex;
  flex-direction: column;
  width: 100%;
  padding: 40px 24px;
  border-radius: 24px;
  box-shadow: 0 4px 16px 0 rgba(0, 0, 0, 0.08);
  background-color: #fff;
  color: #6b7b8e;
  transition: all 0.3s ease-out;
}
.card-wrapper:hover {
  box-shadow: 4px 10px 20px -10px rgba(108, 117, 125, 0.3);
}

.card-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  align-items: stretch;
}
@media (min-width: 768px) {
  .card-list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1224px) {
  .card-list {
    grid-template-columns: repeat(4, 1fr);
  }
}
.card-list__item {
  display: flex;
}
.card-list__img {
  max-width: 80px;
  max-height: 80px;
  margin-bottom: 24px;
  flex-shrink: 0;
}
.card-list__title {
  font-family: "Exo 2", sans-serif;
  font-size: 20px;
  line-height: 1.44;
  color: #212529;
  margin-bottom: 16px;
  flex-shrink: 0;
}
@media (min-width: 768px) {
  .card-list__title {
    min-block-size: calc(1.44 * 2em);
    display: flex;
  }
}
@media (min-width: 1920px) {
  .card-list__title {
    font-size: 24px;
    line-height: 1.33;
  }
}
.card-list__text {
  font-size: 16px;
  line-height: 1.5;
  flex-grow: 1;
  margin: 0;
}

.partners-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  align-items: stretch;
}
@media (min-width: 768px) {
  .partners-list {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media (min-width: 970px) {
  .partners-list {
    gap: 24px;
  }
}
.partners-list__item {
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid rgba(107, 123, 142, 0.4);
  border-radius: 24px;
  background-color: #fff;
  overflow: hidden;
  min-height: 73px;
}
@media (min-width: 970px) {
  .partners-list__item {
    align-items: flex-end;
  }
}
.partners-list__item--link {
  padding: 10px 20px;
  justify-content: flex-end;
}
@media (min-width: 1920px) {
  .partners-list__item--link {
    padding: 20px;
  }
}
.partners-list__img {
  width: 100%;
  height: 73px;
  -o-object-fit: contain;
     object-fit: contain;
}
@media (min-width: 768px) {
  .partners-list__img {
    height: 79px;
  }
}
@media (min-width: 970px) {
  .partners-list__img {
    height: 136px;
  }
}
@media (min-width: 1920px) {
  .partners-list__img {
    height: 157px;
  }
}
.partners-list__link {
  font-size: 16px;
  line-height: 1.5;
  text-transform: uppercase;
  color: #6b7b8e;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: color 0.3s ease;
}
.partners-list__link::after {
  content: "";
  width: 18px;
  height: 18px;
  display: inline-block;
  background-image: url("../images/icons/arrow-long.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  transform: rotate(0deg);
  transition: filter 0.3s ease;
}
@media (max-width: 360px) {
  .partners-list__link::after {
    display: none;
  }
}
.partners-list__link:hover {
  color: #00bcd4;
}
.partners-list__link:hover::after {
  filter: invert(61%) sepia(90%) saturate(748%) hue-rotate(151deg) brightness(95%) contrast(101%);
}

.swiper {
  position: relative;
}
.swiper-wrapper {
  align-items: stretch;
  margin-bottom: 24px;
}
.swiper-slide {
  height: auto;
  display: flex;
}
.swiper-buttons {
  display: none;
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 10;
}
@media (min-width: 768px) {
  .swiper-buttons {
    display: flex;
    gap: 40px;
  }
}
.swiper-button-next, .swiper-button-prev {
  position: relative;
  width: 48px;
  height: 48px;
  border: 1px solid #212529;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}
.swiper-button-next:hover, .swiper-button-prev:hover {
  background: #212529;
}
.swiper-button-next:hover:after, .swiper-button-prev:hover:after {
  filter: brightness(0) invert(1);
}
.swiper-button-next:after, .swiper-button-prev:after {
  content: "";
  position: absolute;
  width: 25px;
  height: 25px;
  filter: brightness(0);
}
.swiper-button-prev:after {
  background-image: url("../images/icons/arrow-long.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  transform: rotate(-140deg);
  transition: filter 0.3s ease;
}
.swiper-button-next:after {
  background-image: url("../images/icons/arrow-long.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  transform: rotate(45deg);
  transition: filter 0.3s ease;
}

.swiper-button-next,
.swiper-button-prev {
  color: transparent;
}

.client-card {
  border: 1px solid rgba(107, 123, 142, 0.4);
  padding: 10px 24px 40px;
}
.client-card__wrapper {
  display: flex;
  align-items: center;
  height: 110px;
}
.client-card__info {
  color: #212529;
  margin-bottom: 6px;
}
.client-card__name {
  font-weight: 500;
  line-height: 1.44;
}
.client-card__tagline {
  font-size: 16px;
  line-height: 1.5;
}
.client-card__review {
  font-size: 16px;
  line-height: 1.5;
  color: #6b7b8e;
  position: relative;
}
.client-card__review::after {
  content: "";
  width: 18px;
  height: 18px;
  position: absolute;
  right: 0;
  bottom: 0;
  background-image: url("../images/icons/arrow-long.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  transform: rotate(90deg);
  transition: filter 0.3s ease;
}
.client-card__review:hover::after {
  filter: invert(61%) sepia(90%) saturate(748%) hue-rotate(151deg) brightness(95%) contrast(101%);
}

@media (min-width: 768px) {
  .reviews-content {
    max-width: 456px;
  }
}

@media (min-width: 1224px) {
  .contacts .section-header {
    max-width: 925px;
    flex-direction: column;
    align-items: start;
  }
  .contacts .section-header__content {
    max-width: 100%;
  }
}

.search-container {
  position: relative;
  border: 1px solid rgba(108, 117, 125, 0.4);
  border-radius: 10px;
  padding: 10px 20px;
}

.search-button {
  position: absolute;
  top: 33%;
  right: 10px;
  color: rgba(108, 117, 125, 0.4);
  transition: all 0.2s ease;
}
.search-button:hover {
  color: #00bcd4;
}

.infinite-loader {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px 0;
  min-height: 100px;
}
.infinite-loader--hidden {
  display: none;
}
.infinite-loader--visible {
  display: flex;
}

.infinite-loader__spinner {
  width: 40px;
  height: 40px;
  animation: spin 1s linear infinite;
}
@media (max-width: 768px) {
  .infinite-loader__spinner {
    width: 50px;
    height: 50px;
  }
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.infinite-loader {
  opacity: 0;
  transition: opacity 0.3s ease;
}
.infinite-loader--visible {
  opacity: 1;
}

.load-error {
  text-align: center;
  padding: 10px;
  color: #f57b7b;
  background: #ffebee;
  border-radius: 24px;
  margin: 20px 0;
  font-size: 10px;
}

.prices {
  border: 1px solid rgba(108, 117, 125, 0.4);
  border-radius: 24px;
  padding: 24px;
  margin-bottom: 24px;
}
@media (min-width: 1224px) {
  .prices {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    position: relative;
  }
  .prices::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 1px;
    background-color: rgba(107, 123, 142, 0.4);
    transform: translateX(-50%);
  }
}
@media (min-width: 1920px) {
  .prices {
    grid-template-columns: 0.8fr 1.2fr;
  }
  .prices::after {
    left: 40%;
  }
}
.prices__header {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 24px;
  border-bottom: 1px solid rgba(107, 123, 142, 0.4);
  padding-bottom: 24px;
}
@media (min-width: 1224px) {
  .prices__header {
    border-bottom: none;
    padding-right: 24px;
  }
}
@media (min-width: 1440px) {
  .prices__header {
    margin-bottom: 0;
    padding-bottom: 0;
  }
}
.prices__badge {
  width: -moz-fit-content;
  width: fit-content;
  max-width: 100%;
  border: 1px solid #f6e049;
  border-radius: 30px;
  padding: 14px 16px;
  font-size: 14px;
  line-height: 1.5;
  text-transform: uppercase;
  color: #6b7b8e;
}
@media (min-width: 1440px) {
  .prices__badge {
    font-size: 16px;
    padding: 15px 32px;
  }
}
.prices__details {
  display: flex;
  align-items: center;
  gap: 12px;
  line-height: 1.3;
}
.prices__cost {
  font-family: "Exo 2", sans-serif;
  font-size: 30px;
}
@media (min-width: 1440px) {
  .prices__cost {
    font-size: 40px;
    line-height: 1.21;
  }
}
.prices__cost-nominal {
  font-size: 18px;
}
.prices__term {
  font-size: 10px;
  color: #6b7b8e;
}
.prices__term::before {
  content: "/ ";
}
@media (min-width: 1440px) {
  .prices__term {
    font-size: 14px;
  }
}
.prices .button {
  max-width: 100%;
}
@media (min-width: 768px) {
  .prices .button {
    max-width: 266px;
  }
}
@media (min-width: 1440px) {
  .prices .button {
    max-width: 300px;
  }
}
.prices__content {
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 14px;
  line-height: 1.5;
}
@media (min-width: 1224px) {
  .prices__content {
    padding-left: 24px;
  }
}
.prices__content-item {
  position: relative;
  padding-left: 22px;
}
.prices__content-item::before {
  content: "";
  position: absolute;
  left: 5px;
  top: 8px;
  width: 6px;
  height: 6px;
  background-color: #6b7b8e;
  border-radius: 50%;
}

.anchor-nav {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
@media (min-width: 768px) {
  .anchor-nav {
    flex-direction: row;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 30px;
  }
}
.anchor-nav__link {
  position: relative;
  font-weight: 500;
  font-size: 20px;
  line-height: 1.6;
  color: #6b7b8e;
  display: inline-block;
  width: -moz-fit-content;
  width: fit-content;
}
.anchor-nav__link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background-color: #6b7b8e;
  transition: all 0.3s ease;
}
.anchor-nav__link:hover::after {
  height: 2px;
}

.advantages__list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  counter-reset: advantages-counter;
}
@media (min-width: 1224px) {
  .advantages__list {
    grid-template-columns: repeat(2, 1fr);
  }
}
.advantages__list-item {
  position: relative;
  padding: 14px;
  padding-left: 54px;
  background-color: #fff;
  box-shadow: 16px 8px 20px 0 rgba(27, 27, 27, 0.02);
  border-radius: 12px;
}
.advantages__list-item::before {
  counter-increment: advantages-counter;
  content: counter(advantages-counter);
  position: absolute;
  border-radius: 60px;
  border: 1px solid #6b7b8e;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: #6b7b8e;
  left: 14px;
  top: 20px;
  width: 28px;
  height: 28px;
  font-size: 18px;
  color: #6b7b8e;
}
.advantages__title {
  font-family: "Exo 2", sans-serif;
  font-size: 20px;
  line-height: 1.44;
  margin-bottom: 8px;
}
.advantages__text {
  font-size: 14px;
  line-height: 1.5;
}

.our-services .button {
  max-width: 100%;
}

@media (min-width: 1440px) {
  .team__wrapper {
    display: flex;
    gap: 20px;
  }
}
.team__swiper {
  display: none;
}
@media (min-width: 1440px) {
  .team__swiper {
    display: flex;
    max-width: 504px;
    border-radius: 12px;
    background-color: #fff;
    margin: 0;
  }
}
.team__slide img {
  width: 504px;
  height: 574px;
  -o-object-fit: contain;
     object-fit: contain;
}
.team__list {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.team__list-item {
  width: 100%;
  background-color: #fff;
  box-shadow: 16px 8px 20px 0 rgba(27, 27, 27, 0.02);
  border-radius: 12px;
  transition: all 0.3s ease;
}
.team__list-item:hover {
  background-color: #f5f5f5;
  border: 1px solid #6b7b8e;
}
.team__list-item:hover .team__title,
.team__list-item:hover .team__badge {
  color: #6b7b8e;
}
.team__achievements {
  display: none;
  text-align: left;
  margin-top: 16px;
}
.team__achievements-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 16px;
}
.team__achievements-item {
  list-style: inside;
}
@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.team .team__achievements.show {
  display: block;
  animation: slideDown 0.3s ease-out;
}
.team__list-link {
  display: grid;
  grid-template-columns: 65px 1fr;
  gap: 10px;
  padding: 20px 12px;
  width: 100%;
}
.team__img {
  width: 65px;
  height: 60px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  border-radius: 12px;
}
.team__title {
  font-family: "Exo 2", sans-serif;
  margin-bottom: 12px;
  text-align: left;
}
.team__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.team__badge {
  font-size: 14px;
  line-height: 1.44;
  letter-spacing: -0.02em;
  border: 1px solid #6b7b8e;
  border-radius: 44px;
  padding: 2px 24px;
}

/* Кастомная пагинация в виде линий */
.swiper-horizontal > .swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal,
.swiper-pagination-custom,
.swiper-pagination-fraction {
  top: 15px;
}

.swiper-pagination {
  display: flex;
  justify-content: center;
  gap: 8px;
}

.swiper-pagination-bullet {
  width: 150px;
  height: 6px;
  border-radius: 20px;
  background-color: rgba(108, 117, 125, 0.4);
  opacity: 1;
  transition: all 0.3s ease;
}

.swiper-pagination-bullet-active {
  background-color: #6b7b8e;
  transform: scale(1.1);
}

.faq {
  margin-bottom: 0;
}
.faq__item {
  font-size: 14px;
  line-height: 1.5;
  margin-bottom: 20px;
}
@media (min-width: 768px) {
  .faq__item {
    font-size: 18px;
  }
}
.faq__question {
  width: 100%;
  position: relative;
  background-color: #f5f5f5;
  box-shadow: 16px 8px 20px 0 rgba(27, 27, 27, 0.02);
  border-radius: 12px;
  padding: 12px 16px;
  padding-right: 40px;
  text-align: left;
  cursor: pointer;
  transition: background-color 0.3s ease;
}
.faq__question:hover {
  background-color: rgb(232.25, 232.25, 232.25);
}
.faq__question::after {
  content: "";
  position: absolute;
  right: 10px;
  top: 37%;
  width: 16px;
  height: 16px;
  transition: transform 0.3s ease;
  background-image: url("../images/icons/arrow-long.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  transform: rotate(0deg);
  transition: filter 0.3s ease;
}
.faq__question.active::after {
  transform: rotate(180deg);
}
@media (min-width: 768px) {
  .faq__question {
    padding: 20px 30px;
  }
  .faq__question::after {
    width: 28px;
    height: 28px;
    top: 29%;
    right: 26px;
  }
}
.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out, padding 0.4s ease-out;
}
.faq__answer.open {
  max-height: 1250px;
  padding-top: 24px;
}
@media (min-width: 768px) {
  .faq__answer {
    padding-left: 30px;
  }
}
.faq__answer-text {
  opacity: 0;
  transform: translateY(-10px);
  transition: opacity 0.3s ease 0.1s, transform 0.3s ease 0.1s;
}
.faq__answer.open .faq__answer-text {
  opacity: 1;
  transform: translateY(0);
}
.faq__answer-list {
  opacity: 0;
  transform: translateY(-10px);
  transition: opacity 0.3s ease 0.2s, transform 0.3s ease 0.2s;
  margin-bottom: 12px;
}
.faq__answer.open .faq__answer-list {
  opacity: 1;
  transform: translateY(0);
}
.faq__answer-item {
  list-style: inside;
}

.vacancy .faq__question {
  background-color: #f6e049;
  border-radius: 24px;
  padding: 24px;
}
.vacancy .faq__question.active {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}
.vacancy .faq__question::after {
  display: none;
}
@media (min-width: 768px) {
  .vacancy .faq__question::after {
    display: flex;
    top: 62px;
  }
}
.vacancy .faq__answer-list {
  margin-bottom: 24px;
}
.vacancy .faq__answer-item {
  font-size: 18px;
  line-height: 144%;
  list-style: none;
  padding-left: 18px;
  position: relative;
}
.vacancy .faq__answer-item::before {
  position: absolute;
  content: "";
  width: 8px;
  height: 8px;
  left: 0;
  top: 9px;
  background-color: #6b7b8e;
  border-radius: 50%;
}
.vacancy .button {
  max-width: 100%;
}
@media (min-width: 768px) {
  .vacancy .button {
    max-width: 200px;
  }
}
.vacancy__title {
  font-family: "Exo 2", sans-serif;
  font-size: 20px;
  line-height: 1.44;
  margin-bottom: 12px;
}
@media (min-width: 768px) {
  .vacancy__title {
    font-size: 24px;
    line-height: 1.33;
  }
}
.vacancy__term {
  font-size: 18px;
  line-height: 1.44;
  color: #6b7b8e;
}
.vacancy__subtitle {
  font-weight: 500;
  font-size: 18px;
  line-height: 1.44;
  margin-bottom: 12px;
}

.constructor__list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.constructor__item {
  position: relative;
  padding-left: 70px;
}
.constructor__item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 58px;
  height: 58px;
  background-image: url("../images/icons/icon-tg.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
@media (min-width: 768px) {
  .constructor__item {
    padding-left: 92px;
    max-width: 601px;
  }
  .constructor__item::before {
    width: 68px;
    height: 68px;
  }
}
@media (min-width: 1224px) {
  .constructor__item {
    max-width: 100%;
  }
}
.constructor__title {
  font-family: "Exo 2", sans-serif;
  font-size: 24px;
  line-height: 1.33;
  color: #6b7b8e;
  margin-bottom: 16px;
}
@media (min-width: 1440px) {
  .constructor__title {
    font-size: 32px;
    line-height: 1.19;
    margin-bottom: 10px;
  }
}
.constructor__text {
  font-size: 14px;
  line-height: 1.5;
}
@media (min-width: 768px) {
  .constructor__text {
    font-size: 18px;
    line-height: 1.44;
  }
}
.constructor__wrapper {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 1440px) {
  .constructor__wrapper {
    grid-template-columns: 1fr 1fr;
  }
}
@media (min-width: 1920px) {
  .constructor__wrapper {
    gap: 160px;
  }
}
.constructor__visual {
  position: relative;
  display: none;
}
@media (min-width: 1440px) {
  .constructor__visual {
    display: block;
  }
}
.constructor__visual::after {
  content: "";
  position: absolute;
  right: -74px;
  bottom: -40px;
  width: 182px;
  height: 182px;
  background-image: url("../images/icons/icon-mask.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  z-index: 1;
}
@media (min-width: 1920px) {
  .constructor__visual::after {
    bottom: 10px;
  }
}
.constructor__visual--left::after {
  right: auto;
  left: -70px;
  bottom: -40px;
}
.constructor__img {
  position: relative;
  z-index: 2;
  height: auto;
  border-radius: 12px;
}
.constructor .button {
  max-width: 100%;
  margin-top: 24px;
}
@media (min-width: 768px) {
  .constructor .button {
    max-width: 266px;
    margin-left: 90px;
  }
}

.solution__list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 768px) {
  .solution__list {
    grid-template-columns: 1fr 1fr;
  }
}
@media (min-width: 1224px) {
  .solution__list {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (min-width: 1440px) {
  .solution__list {
    grid-template-columns: repeat(4, 1fr);
  }
}
.solution__item {
  border-radius: 12px;
  padding: 46px 24px;
  box-shadow: 3px 4px 12px 1px rgba(0, 0, 0, 0.25);
}
@media (min-width: 1224px) and (max-width: 1439px) {
  .solution__item:last-child:nth-child(3n+1) {
    grid-column: 1/-1;
  }
}
@media (min-width: 1440px) {
  .solution__item:nth-last-child(2):nth-child(4n+1), .solution__item:nth-last-child(2):nth-child(4n+2), .solution__item:nth-last-child(2):nth-child(4n+3), .solution__item:last-child:nth-child(4n+1), .solution__item:last-child:nth-child(4n+2), .solution__item:last-child:nth-child(4n+3) {
    grid-column: span 2;
  }
}
.solution__heading {
  min-height: 122px;
  margin-bottom: 24px;
  text-align: center;
}
.solution__title {
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.solution__cost {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  font-family: "Exo 2", sans-serif;
  font-size: 40px;
}
.solution__cost-nominal {
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  font-size: 14px;
  line-height: 143%;
  color: #6b7b8e;
  padding-top: 8px;
}
.solution__cost-nominal::before {
  content: "/";
}
.solution__content-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.solution__content-item {
  font-weight: 300;
  font-size: 16px;
  line-height: 1.26;
  position: relative;
  padding-left: 30px;
}
.solution__content-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  transform: rotate(45deg);
  width: 10px;
  height: 16px;
  border-bottom: 2px solid #00bcd4;
  border-right: 2px solid #00bcd4;
}

.instructions .main-content__wrapper {
  position: relative;
  z-index: 2;
}
.instructions .main-content__title {
  margin-bottom: 96px;
}
@media (min-width: 768px) {
  .instructions .main-content__title {
    margin-bottom: 24px;
  }
}
.instructions .swiper-buttons {
  display: flex;
  gap: 38px;
  position: absolute;
  top: 87px;
  z-index: 1;
}
@media (min-width: 768px) {
  .instructions .swiper-buttons {
    top: 23px;
  }
}
.instructions .swiper-button-prev,
.instructions .swiper-button-next {
  top: auto;
  width: 40px;
  height: 40px;
}
.instructions__swiper {
  cursor: pointer;
}
.instructions__slide {
  display: flex;
  flex-direction: column;
  gap: 24px;
  height: auto;
}
.instructions__img {
  border-radius: 12px;
  width: 100%;
  height: 372px;
  -o-object-fit: cover;
     object-fit: cover;
  margin-bottom: 24px;
}
@media (min-width: 768px) {
  .instructions__img {
    height: 442px;
  }
}
@media (min-width: 1440px) {
  .instructions__img {
    height: 542px;
  }
}
.instructions__title {
  font-family: "Exo 2", sans-serif;
  font-size: 24px;
  line-height: 1.33;
  color: #212529;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  transition: all 0.3s ease;
}
.instructions__title:hover {
  color: #00bcd4;
}
.instructions__text {
  font-size: 16px;
  line-height: 1.5;
  flex-grow: 1;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 3;
  line-clamp: 3;
}

.turnkey-solution__list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 768px) {
  .turnkey-solution__list {
    grid-template-columns: repeat(2, 1fr);
    grid-column: 1/-1;
  }
}
@media (min-width: 1224px) {
  .turnkey-solution__list {
    grid-template-columns: repeat(4, 1fr);
  }
}
.turnkey-solution__item {
  display: flex;
  flex-direction: column;
  height: 100%;
  background-color: #fff;
  border-radius: 12px;
  box-shadow: 3px 4px 12px 0 rgba(0, 0, 0, 0.25);
  padding: 40px 24px;
}
.turnkey-solution__heading {
  min-height: 124px;
  margin-bottom: 14px;
}
.turnkey-solution__img {
  width: 52px;
  height: 52px;
  -o-object-fit: contain;
     object-fit: contain;
  margin-bottom: 24px;
}
.turnkey-solution__title {
  font-family: "Exo 2", sans-serif;
  line-height: 1.33;
}
.turnkey-solution__content-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex-grow: 1;
}
.turnkey-solution__content-item {
  font-size: 16px;
  line-height: 1.5;
  text-decoration: underline;
  text-decoration-color: #00bcd4;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
  position: relative;
  padding-left: 18px;
}
.turnkey-solution__content-item::before {
  position: absolute;
  content: "";
  width: 8px;
  height: 8px;
  left: 0;
  top: 28%;
  background-color: #6b7b8e;
  border-radius: 50%;
}
.turnkey-solution__content-link {
  color: #212529;
  transition: all 0.3s ease;
}
.turnkey-solution__content-link:hover {
  color: #00bcd4;
}

.ready-decision__tabs {
  display: flex;
  justify-content: space-between;
  gap: 4px;
  padding-bottom: 10px;
}
.ready-decision__tab {
  min-width: 1rem;
  flex: 1;
  cursor: pointer;
  background-color: #fff;
  border: 1px solid #00bcd4;
  border-radius: 12px;
  padding: 10px 3px;
  font-size: clamp(0.6rem, 2vw, 1rem);
  line-height: 1.44;
  text-align: center;
  transition: all 0.3s;
  position: relative;
}
.ready-decision__tab:hover {
  background-color: #f5f5f5;
}
.ready-decision__tab.active {
  background-color: #f5f5f5;
  font-weight: 500;
  border: 2px solid rgba(107, 123, 142, 0.4);
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  border-bottom: none;
  margin-bottom: -12px;
}
@media (min-width: 1440px) {
  .ready-decision__tab {
    font-size: 14px;
  }
}
.ready-decision__tabcontent {
  display: none;
  background-color: #f5f5f5;
  border: 2px solid rgba(107, 123, 142, 0.4);
  border-radius: 30px;
  padding: 24px 10px;
  line-height: 1.44;
}
.ready-decision__tabcontent.active {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
@media (min-width: 768px) {
  .ready-decision__tabcontent {
    padding: 24px;
  }
}
.ready-decision__tabcontent--left.active, .ready-decision__tabcontent--right.active {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}
.ready-decision__title {
  font-family: "Exo 2", sans-serif;
  font-size: 20px;
  line-height: 1.33;
  color: #6b7b8e;
}
@media (min-width: 768px) {
  .ready-decision__title {
    font-size: 24px;
  }
}
.ready-decision__figure {
  position: relative;
  display: flex;
  justify-content: center;
}
.ready-decision__figure img {
  width: 100%;
  max-height: 410px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 12px;
}
@media (min-width: 768px) {
  .ready-decision__figure img {
    max-height: 520px;
  }
}
.ready-decision__figcaption {
  position: absolute;
  bottom: 12px;
  width: 90%;
  background-color: #f5f5f5;
  opacity: 0.9;
  border-radius: 12px;
  padding: 10px;
  text-align: center;
  font-size: 12px;
}
@media (min-width: 768px) {
  .ready-decision__figcaption {
    font-size: 14px;
  }
}
.ready-decision__item {
  margin-left: 20px;
}
.ready-decision__link {
  color: #00bcd4;
  transition: all 0.3s ease;
}
.ready-decision__link:hover {
  color: #f6e049;
}

.screenshot__wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
@media (min-width: 1224px) {
  .screenshot__wrapper {
    gap: 40px;
  }
}
.screenshot__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 1224px) {
  .screenshot__inner {
    grid-template-columns: repeat(2, 1fr);
    align-items: stretch;
  }
  .screenshot__inner:nth-child(even) {
    direction: rtl;
  }
  .screenshot__inner:nth-child(even) > * {
    direction: ltr;
  }
}
.screenshot__content {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.screenshot__title {
  font-family: "Exo 2", sans-serif;
  font-size: 24px;
  line-height: 1.33;
  color: #6b7b8e;
  margin-bottom: 24px;
}
.screenshot__list {
  border-radius: 12px;
  box-shadow: 16px 8px 20px 0 rgba(27, 27, 27, 0.02);
  background-color: #f5f5f5;
  counter-reset: advantages-counter;
  list-style: none;
}
.screenshot__item {
  padding: 20px 12px;
  padding-left: 72px;
  position: relative;
}
.screenshot__item::before {
  counter-increment: advantages-counter;
  content: counter(advantages-counter);
  position: absolute;
  border-radius: 60px;
  border: 1px solid #6b7b8e;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: #6b7b8e;
  left: 14px;
  top: 20px;
  width: 48px;
  height: 48px;
  font-size: 24px;
}
@media (min-width: 768px) {
  .screenshot__item {
    padding-left: 82px;
  }
}
.screenshot__subtitle {
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.screenshot__text {
  line-height: 1.44;
}
.screenshot__img {
  width: 100%;
  border-radius: 12px;
}

.visual-list__wrapper {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 1224px) {
  .visual-list__wrapper {
    grid-template-columns: repeat(2, 1fr);
  }
}
.visual-list__title {
  font-family: "Exo 2", sans-serif;
  font-size: 24px;
  line-height: 1.13;
  color: #6b7b8e;
  margin-bottom: 24px;
}
.visual-list__list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
@media (min-width: 768px) {
  .visual-list__list {
    gap: 40px;
  }
}
.visual-list__item {
  position: relative;
  padding-left: 60px;
}
.visual-list__item::before {
  position: absolute;
  width: 48px;
  height: 48px;
  left: 0;
  top: 0;
}
@media (min-width: 768px) {
  .visual-list__item {
    padding-left: 72px;
  }
}
@media (min-width: 1920px) {
  .visual-list__item {
    min-height: 200px;
  }
}
.visual-list__subtitle {
  font-weight: 600;
  font-size: 18px;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.visual-list__sublist {
  counter-reset: item;
}
.visual-list__subitem {
  font-size: 18px;
  line-height: 1.44;
  overflow-wrap: break-word;
  word-break: break-word;
  position: relative;
  padding-left: 27px;
}
.visual-list__subitem::before {
  content: counter(item) ".";
  counter-increment: item;
  position: absolute;
  left: 6px;
}
.visual-list__content {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.visual-item--function {
  background-image: url(../images/icons/icon-function.svg);
  background-repeat: no-repeat;
}

.visual-item--ole {
  background-image: url(../images/icons/icon-ole.svg);
  background-repeat: no-repeat;
}

.visual-item--programs {
  background-image: url(../images/icons/icon-programs.svg);
  background-repeat: no-repeat;
}

.visual-item--tools {
  background-image: url(../images/icons/icon-tools.svg);
  background-repeat: no-repeat;
}

.visual-item--ability {
  background-image: url(../images/icons/icon-ability.svg);
  background-repeat: no-repeat;
}

.visual-item--software {
  background-image: url(../images/icons/icon-software.svg);
  background-repeat: no-repeat;
}

.rules__wrapper {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 1224px) {
  .rules__wrapper {
    grid-template-columns: repeat(2, 1fr);
    align-items: stretch;
  }
}
.rules__list {
  border-radius: 12px;
  background-color: #f5f5f5;
  box-shadow: 16px 8px 20px 0 rgba(27, 27, 27, 0.02);
}
.rules__list--avoid .rules__item::before {
  background-image: url(../images/icons/icon-avoid.svg);
}
@media (min-width: 1224px) {
  .rules__list {
    height: 100%;
  }
}
.rules__item {
  padding: 20px 12px;
  padding-left: 72px;
  position: relative;
}
.rules__item::before {
  position: absolute;
  content: "";
  width: 48px;
  height: 48px;
  top: 18px;
  left: 11px;
  background-image: url(../images/icons/icon-tasks.svg);
  background-repeat: no-repeat;
  background-size: contain;
}
.rules__title {
  font-weight: 600;
  font-size: 18px;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.rules__text {
  line-height: 1.44;
}
.rules__example {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.rules__italics {
  line-height: 1.44;
  font-style: italic;
  font-weight: 300;
}
.rules__heading {
  display: flex;
  flex-direction: column;
  font-family: "Exo 2", sans-serif;
  font-size: 24px;
  line-height: 1.33;
  margin-bottom: 24px;
}
.rules__heading span {
  font-size: 18px;
  line-height: 1.44;
}

.set-task .rules__list {
  height: auto;
  box-shadow: none;
  background-color: transparent;
  margin-bottom: 12px;
}

.benefits__list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.benefits__list-column {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
@media (min-width: 1224px) {
  .benefits__list-column {
    flex-direction: row;
  }
}
.benefits__title {
  font-family: "Exo 2", sans-serif;
  font-size: 24px;
  line-height: 1.33;
  color: #f6e049;
  margin-bottom: 12px;
}
.benefits__text {
  line-height: 1.44;
}

.directions__list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 1224px) {
  .directions__list {
    grid-template-columns: repeat(2, 1fr);
  }
}
.directions__item {
  border-radius: 12px;
  padding: 40px 24px;
  padding-top: 116px;
  background-color: #fff;
  position: relative;
}
.directions__item::before {
  position: absolute;
  content: "";
  width: 52px;
  height: 52px;
  top: 50px;
  left: 23px;
  background-repeat: no-repeat;
  background-size: contain;
}
.directions__item--automation::before {
  background-image: url(../images/icons/icon-circle-automation.svg);
}
.directions__item--itoutsourcing::before {
  background-image: url(../images/icons/icon-circle-itoutsourcing.svg);
}
.directions__item--bots::before {
  background-image: url(../images/icons/icon-circle-bots.svg);
}
.directions__item--support::before {
  background-image: url(../images/icons/icon-circle-support.svg);
}
.directions__title {
  font-family: "Exo 2", sans-serif;
  font-size: 24px;
  line-height: 1.33;
  margin-bottom: 14px;
}
.directions__list-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.directions__item-item {
  line-height: 1.44;
  padding-left: 18px;
  position: relative;
}
.directions__item-item::before {
  position: absolute;
  content: "";
  width: 8px;
  height: 8px;
  left: 0;
  top: 8px;
  background-color: #6b7b8e;
  border-radius: 50%;
}

.projects__tabs {
  display: flex;
  gap: 14px;
}
.projects__tab {
  cursor: pointer;
}
.projects__tabcontent {
  display: none;
}
.projects__tabcontent.active {
  display: flex;
}

.projects__tabs {
  display: flex;
  gap: 14px;
  margin-bottom: 12px;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  scroll-behavior: smooth;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}
.projects__tabs::-webkit-scrollbar {
  display: none;
}
@media (min-width: 1224px) {
  .projects__tabs {
    justify-content: center;
  }
}
.projects__tab {
  flex-shrink: 0;
  border: 1px solid rgba(107, 123, 142, 0.4);
  border-radius: 30px;
  padding: 8px 24px;
  line-height: 1.44;
  cursor: pointer;
  transition: all 0.3s ease;
}
.projects__tab.active {
  background-color: #212529;
  color: #f5f5f5;
}
.projects__tab:hover:not(.active) {
  background-color: #565b60;
  color: #f5f5f5;
}
.projects__tabcontent {
  display: none;
}
.projects__tabcontent.active {
  display: flex;
}
.projects__list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  width: 100%;
}
@media (min-width: 768px) {
  .projects__list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1224px) {
  .projects__list {
    grid-template-columns: repeat(4, 1fr);
  }
}
.projects__item:hover .projects__content::after {
  filter: brightness(0.8) contrast(1.2);
}
.projects__link {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  background-size: cover;
  background-repeat: no-repeat;
  border-radius: 12px;
  height: 433px;
  color: #212529;
}
.projects__content {
  width: 93%;
  border-radius: 12px;
  background-color: rgba(245, 245, 245, 0.8);
  -webkit-backdrop-filter: blur(12px);
          backdrop-filter: blur(12px);
  padding: 20px 40px 20px 12px;
  margin-bottom: 14px;
  position: relative;
  transition: all 0.3s ease;
}
.projects__content::after {
  position: absolute;
  content: "";
  width: 32px;
  height: 32px;
  right: 12px;
  bottom: 20px;
  background-image: url(../images/icons/icon-circle-arrow.svg);
  background-repeat: no-repeat;
  background-size: contain;
  transition: filter 0.3s ease;
}
@media (min-width: 768px) {
  .projects__content {
    min-height: 200px;
  }
}
.projects__title {
  font-weight: 500;
  line-height: 1.44;
  margin-bottom: 8px;
}
.projects__list-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.projects__list-item {
  font-size: 14px;
  line-height: 1.5;
  padding-left: 18px;
  position: relative;
}
.projects__list-item::before {
  position: absolute;
  content: "";
  width: 14px;
  height: 14px;
  top: 3px;
  left: 0;
  background-repeat: no-repeat;
  background-size: contain;
}
.projects__list-item--budget::before {
  background-image: url(../images/icons/icon-budget.svg);
}
.projects__list-item--deadlines::before {
  background-image: url(../images/icons/icon-deadlines.svg);
}
.projects__list-item--savings::before {
  background-image: url(../images/icons/icon-savings.svg);
}

@media (min-width: 1224px) {
  .privilege__wrapper {
    display: flex;
    gap: 60px;
  }
}
.privilege__img {
  display: none;
  max-width: 484px;
}
@media (min-width: 1224px) {
  .privilege__img {
    display: flex;
  }
}
@media (min-width: 1224px) {
  .privilege__content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
}
.privilege__list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 24px;
}
@media (min-width: 1224px) {
  .privilege__list {
    justify-content: left;
    gap: 70px;
  }
}
.privilege__item {
  width: 137px;
}
.privilege__title {
  font-family: "Exo 2", sans-serif;
  font-weight: 900;
  font-size: 48px;
  line-height: 1.17;
  color: #f6e049;
  margin-bottom: 12px;
}
.privilege__text {
  font-size: 16px;
  line-height: 1.5;
  color: #6b7b8e;
}

.calculator__form {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 1224px) {
  .calculator__form {
    grid-template-columns: repeat(2, 1fr);
  }
}
.calculator__column {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 20px;
  border-radius: 24px;
  padding: 24px 12px;
  background-color: #f5f5f5;
}
@media (min-width: 768px) {
  .calculator__column {
    padding: 30px;
  }
}
.calculator__field {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.calculator__label {
  font-family: "Exo 2", sans-serif;
  line-height: 1.13;
  color: #6b7b8e;
}
.calculator__label span {
  color: #f57b7b;
}
.calculator__item {
  width: 100%;
  border: 1px solid rgba(108, 117, 125, 0.4);
  border-radius: 24px;
  padding: 16px 24px;
  background-color: #fff;
  color: rgba(108, 117, 125, 0.6);
  cursor: pointer;
}
.calculator__select {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #ffffff url("data:image/svg+xml;charset=UTF-8,%3csvg width='22' height='12' viewBox='0 0 22 12' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M20.2169 4.76837e-07L21.9999 1.78471L12.2824 11.5055C12.1267 11.6622 11.9416 11.7866 11.7376 11.8715C11.5337 11.9563 11.3149 12 11.094 12C10.8731 12 10.6544 11.9563 10.4505 11.8715C10.2465 11.7866 10.0613 11.6622 9.90563 11.5055L0.183105 1.78471L1.96613 0.00168276L11.0915 9.12538L20.2169 4.76837e-07Z' fill='%236C757D' fill-opacity='0.6'/%3e%3c/svg%3e") right 16px center/20px 12px no-repeat;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  text-indent: 0.01px;
  text-overflow: "";
}
.calculator__select::-ms-expand {
  display: none;
}
.calculator__select:focus {
  outline: none;
}
@supports ((-webkit-appearance: base-select) or (-moz-appearance: base-select) or (appearance: base-select)) {
  .calculator__select {
    padding-inline: 20px;
    background-image: none;
  }
  .calculator__select, .calculator__select::picker(select) {
    -webkit-appearance: base-select;
       -moz-appearance: base-select;
            appearance: base-select;
  }
  .calculator__select::picker-icon {
    content: "";
    width: 22px;
    height: 12px;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='22' height='12' viewBox='0 0 22 12' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M20.2169 4.76837e-07L21.9999 1.78471L12.2824 11.5055C12.1267 11.6622 11.9416 11.7866 11.7376 11.8715C11.5337 11.9563 11.3149 12 11.094 12C10.8731 12 10.6544 11.9563 10.4505 11.8715C10.2465 11.7866 10.0613 11.6622 9.90563 11.5055L0.183105 1.78471L1.96613 0.00168276L11.0915 9.12538L20.2169 4.76837e-07Z' fill='%236C757D' fill-opacity='0.6'/%3e%3c/svg%3e");
    transition: transform 0.2s ease-out;
  }
  .calculator__select:open::picker-icon {
    transform: rotate(180deg);
  }
  .calculator__select::picker(select) {
    width: 90%;
    padding: 0;
    margin-top: 4px;
    border: 1px solid rgba(108, 117, 125, 0.6);
    background: #fff;
    border-radius: 12px;
    opacity: 0;
    height: 0;
    overflow: clip;
    transition: height 0.3s ease-out, opacity 0.3s ease-out;
  }
  @starting-style {
    .calculator__select::picker(select) {
      opacity: 0;
      height: 0;
    }
  }
  .calculator__select:open::picker(select) {
    opacity: 1;
    height: auto;
    overflow: auto;
  }
  .calculator__select option {
    white-space: normal;
    padding: 12px 16px;
    color: #6b7b8e;
    cursor: pointer;
    transition: background-color 0.2s ease-out, color 0.2s ease-out;
    position: relative;
    min-height: 44px;
    display: flex;
    align-items: center;
  }
  .calculator__select option::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 4px;
    height: 100%;
    background-color: transparent;
    transition: background-color 0.2s ease-out;
  }
  .calculator__select option:where(:hover, :focus, :active) {
    background: #6b7b8e;
    color: #f5f5f5;
  }
  .calculator__select option:checked {
    background: #fff;
    color: #6b7b8e;
  }
  .calculator__select option:checked::before {
    background-color: #6b7b8e;
  }
  .calculator__select option::checkmark {
    display: none;
  }
  .calculator__select option:first-child {
    border: 0;
  }
}
.calculator__input::-moz-placeholder {
  color: rgba(108, 117, 125, 0.6);
}
.calculator__input::placeholder {
  color: rgba(108, 117, 125, 0.6);
}
.calculator__period-options {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}
@media (min-width: 768px) {
  .calculator__period-options {
    max-width: 380px;
    grid-template-columns: repeat(2, 1fr);
  }
}
.calculator__radio-label {
  font-size: 16px;
  color: rgba(108, 117, 125, 0.6);
}
.calculator__radio {
  flex-shrink: 0;
}
.calculator__result-title {
  font-family: "Exo 2", sans-serif;
  line-height: 1.13;
  margin-bottom: 24px;
}
.calculator__result-sum {
  font-weight: 500;
  font-size: 60px;
  color: #6b7b8e;
  border-bottom: 1px solid rgba(107, 123, 142, 0.4);
  padding-bottom: 20px;
  margin-bottom: 20px;
}
.calculator__result-note {
  font-style: italic;
  font-weight: 300;
  line-height: 1.44;
  color: #6b7b8e;
}
.calculator__result-note span {
  color: #f57b7b;
}
.calculator__features-title {
  font-family: "Exo 2", sans-serif;
  line-height: 1.13;
  margin-bottom: 10px;
}
.calculator__features-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.calculator__features-item {
  font-size: 16px;
  line-height: 1.5;
  padding-left: 18px;
  position: relative;
}
.calculator__features-item::before {
  position: absolute;
  content: "";
  width: 8px;
  height: 8px;
  left: 0;
  top: 8px;
  background-color: #6b7b8e;
  border-radius: 50%;
}
.calculator__submit {
  max-width: 100%;
}
@media (min-width: 768px) {
  .calculator__submit {
    max-width: 230px;
  }
}

.support {
  padding-top: 24px;
}
.support__wrapper {
  border-radius: 24px;
  padding: 30px;
  background-color: #6b7b8e;
  position: relative;
}
@media (min-width: 768px) {
  .support__wrapper::before {
    position: absolute;
    content: "";
    background-image: url(/images/icons/transparent-phone.svg);
    width: 200px;
    height: 200px;
    top: 73px;
    left: -20px;
  }
  .support__wrapper::after {
    position: absolute;
    content: "";
    background-image: url(/images/icons/transparent-1c.svg);
    width: 100px;
    height: 100px;
    top: 123px;
    right: 48px;
  }
}
@media (min-width: 1224px) {
  .support__wrapper::before {
    left: 60px;
  }
  .support__wrapper::after {
    right: 107px;
  }
}
.support__content {
  text-align: center;
  color: #f5f5f5;
}
.support__title {
  font-family: "Exo 2", sans-serif;
  font-size: 24px;
  line-height: 1.33;
  margin-bottom: 24px;
}
@media (min-width: 768px) {
  .support__title {
    font-size: 36px;
  }
}
@media (min-width: 1440px) {
  .support__title {
    font-size: 42px;
  }
}
.support__circle {
  background-color: #f5f5f5;
  border-radius: 104px;
  width: 60px;
  height: 60px;
  padding: 10px;
  margin-bottom: 24px;
}
@media (min-width: 768px) {
  .support__circle {
    width: 120px;
    height: 120px;
  }
}
.support__contact {
  font-weight: 500;
  font-size: 18px;
  line-height: 144%;
}
@media (min-width: 768px) {
  .support__contact {
    font-size: 24px;
  }
}
.support__phone {
  color: #f5f5f5;
}

@media (min-width: 1224px) {
  .ability .main-content__title {
    text-align: center;
  }
}
.ability__wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.ability__column {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 1224px) {
  .ability__column {
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
  }
}
@media (min-width: 1224px) and (min-width: 1224px) {
  .ability__column:nth-child(even) .ability__img {
    order: 2;
  }
  .ability__column:nth-child(even) .ability__content {
    order: 1;
  }
}
.ability__img {
  width: 100%;
  border-radius: 12px;
}
.ability__title {
  font-family: "Exo 2", sans-serif;
  font-size: 24px;
  line-height: 1.33;
  margin-bottom: 24px;
  color: #6b7b8e;
}
.ability__text {
  line-height: 1.44;
}
.ability__text + .ability__text {
  margin-top: 24px;
}

.belief__wrapper {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 1224px) {
  .belief__wrapper {
    grid-template-columns: repeat(2, 1fr);
    align-items: stretch;
  }
}
.belief__img {
  width: 100%;
  max-height: 582px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 12px;
}
.belief__content {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.belief__text {
  line-height: 1.44;
  margin-bottom: 24px;
}
.belief__list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 24px;
}
.belief__item {
  line-height: 1.44;
  position: relative;
  padding-left: 32px;
}
.belief__item::before {
  position: absolute;
  content: "";
  width: 24px;
  height: 24px;
  top: 0;
  left: 0;
}
.belief__item--chart::before {
  background-image: url(/images/icons/icon-chart.svg);
}
.belief__item--agreement::before {
  background-image: url(/images/icons/icon-agreement.svg);
}
.belief__benefit-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  border: 1px solid rgba(107, 123, 142, 0.4);
  border-radius: 8px;
  padding: 12px;
  margin-bottom: 24px;
}
.belief__benefit-item {
  font-size: 16px;
  line-height: 1.5;
  padding-left: 38px;
  position: relative;
}
.belief__benefit-item::before {
  position: absolute;
  content: "";
  background-image: url(/images/icons/icon-check-mark.svg);
  width: 32px;
  height: 32px;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
.belief__btn {
  max-width: 100%;
  margin-top: auto;
}
@media (min-width: 768px) {
  .belief__btn {
    max-width: 500px;
  }
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: normal;
  color: #212529;
  font-style: normal;
}

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

.main {
  flex: 1;
}

.container {
  width: 100%;
  padding: 0 10px;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .container {
    padding: 0 22px;
  }
}
@media (min-width: 1224px) {
  .container {
    padding: 0 5px;
  }
}
@media (min-width: 1440px) {
  .container {
    padding: 0 104px;
  }
}
@media (min-width: 1920px) {
  .container {
    max-width: 1410px;
    padding: 0 5px;
  }
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: #6b7b8e;
  margin-bottom: 24px;
}
@media (min-width: 1440px) {
  .breadcrumbs {
    margin-bottom: 40px;
  }
}
@media (min-width: 1920px) {
  .breadcrumbs {
    margin-bottom: 60px;
  }
}
.breadcrumbs__item {
  position: relative;
  display: flex;
  align-items: center;
}
.breadcrumbs__item:not(:last-child)::after {
  content: "";
  width: 6px;
  height: 6px;
  background-color: #6b7b8e;
  border-radius: 50%;
  margin-left: 12px;
}
.breadcrumbs__link {
  color: #6b7b8e;
  transition: color 0.2s ease;
}
.breadcrumbs__link:hover {
  color: #00bcd4;
}
.breadcrumbs__current {
  pointer-events: none;
}

.content-with-sidebar__wrapper {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  margin-bottom: 20px;
}
@media (min-width: 768px) {
  .content-with-sidebar__wrapper {
    margin-bottom: 30px;
  }
}
@media (min-width: 1224px) {
  .content-with-sidebar__wrapper {
    grid-template-columns: 0.7fr 0.3fr;
    margin-bottom: 40px;
  }
}
@media (min-width: 1920px) {
  .content-with-sidebar__wrapper {
    margin-bottom: 60px;
  }
}

.main-content__title {
  font-family: "Exo 2", sans-serif;
  font-size: 30px;
  color: #6b7b8e;
  margin-bottom: 24px;
}
@media (min-width: 768px) {
  .main-content__title {
    font-size: 36px;
  }
}
@media (min-width: 1440px) {
  .main-content__title {
    font-size: 42px;
  }
}
@media (min-width: 1920px) {
  .main-content__title {
    font-size: 48px;
  }
}
.main-content__title--hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.main-content__text {
  line-height: 1.44;
  margin-bottom: 24px;
}
.main-content__subtitle {
  font-family: "Exo 2", sans-serif;
  font-size: 20px;
  line-height: 1.44;
  color: #6b7b8e;
  margin-bottom: 24px;
  border-bottom: 2px solid #6b7b8e;
}
@media (min-width: 1920px) {
  .main-content__subtitle {
    font-size: 24px;
    line-height: 1.33;
  }
}
.main-content__list-item {
  line-height: 1.44;
  position: relative;
  padding-left: 20px;
  margin-bottom: 12px;
}
.main-content__list-item::before {
  content: "";
  position: absolute;
  left: 5px;
  top: 8px;
  width: 8px;
  height: 8px;
  background-color: #6b7b8e;
  border-radius: 50%;
}
.main-content__sublist {
  padding-top: 12px;
}
.main-content__sublist-item {
  position: relative;
  padding-left: 15px;
  margin-bottom: 12px;
}
.main-content__sublist-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 8px;
  height: 8px;
  background-color: #fff;
  border: 1px solid #6b7b8e;
  border-radius: 50%;
  box-sizing: border-box;
}
.main-content__link {
  color: #00bcd4;
}
.main-content__important {
  background-color: rgba(246, 224, 73, 0.5);
  border-radius: 24px;
  padding: 24px 30px;
  font-size: 14px;
  line-height: 1.5;
}
@media (min-width: 768px) {
  .main-content__important {
    font-size: 18px;
    line-height: 1.44;
  }
}
.main-content__important-text {
  margin-bottom: 24px;
}
.main-content__important-item {
  position: relative;
  padding-left: 24px;
  margin-bottom: 12px;
}
.main-content__important-item::before {
  content: "";
  position: absolute;
  left: 2px;
  top: 8px;
  width: 6px;
  height: 6px;
  background-color: #6b7b8e;
  border-radius: 50%;
}
@media (min-width: 768px) {
  .main-content__important-item::before {
    top: 9px;
    width: 8px;
    height: 8px;
  }
}

.services-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}
@media (min-width: 768px) {
  .services-list {
    grid-template-columns: repeat(3, 1fr);
  }
}
.services-list__item {
  width: 100%;
}
.services-list__link {
  display: block;
  border: 1px solid rgba(108, 117, 125, 0.4);
  border-radius: 24px;
  padding: 10px;
  opacity: 1;
  transform: translateY(0);
  transition: all 0.3s ease;
}
@media (min-width: 768px) {
  .services-list__link {
    border: none;
  }
}
.services-list__link:hover {
  box-shadow: 4px 10px 20px -10px rgba(108, 117, 125, 0.3);
}
.services-list__header {
  display: flex;
  align-items: center;
  gap: 6px;
}
@media (min-width: 768px) {
  .services-list__header {
    margin-bottom: 10px;
  }
}
.services-list__img {
  width: 30px;
  height: 30px;
  -o-object-fit: contain;
     object-fit: contain;
  padding: 2px;
}
@media (min-width: 1224px) {
  .services-list__img {
    width: 40px;
    height: 40px;
  }
}
.services-list__title {
  font-family: "Exo 2";
  font-weight: 600;
  font-size: 14px;
  color: #212529;
}
@media (min-width: 768px) {
  .services-list__title {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-line-clamp: 2;
  }
}
@media (min-width: 1224px) {
  .services-list__title {
    font-size: 16px;
    line-height: 1.13;
  }
}
@media (min-width: 1920px) {
  .services-list__title {
    font-size: 18px;
  }
}
.services-list__content {
  display: none;
  font-size: 12px;
  line-height: 1.44;
  color: #6b7b8e;
  padding-left: 5px;
}
@media (min-width: 768px) {
  .services-list__content {
    display: block;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-line-clamp: 3;
  }
}
@media (min-width: 1224px) {
  .services-list__content {
    font-size: 14px;
  }
}

/* Стили для модального окна */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal {
  background: #fff;
  border-radius: 12px;
  width: 90%;
  max-width: 600px;
  max-height: 90vh;
  overflow-y: auto;
  padding: 30px;
  position: relative;
  transform: translateY(-50px);
  transition: transform 0.3s ease;
}
.modal__close {
  position: absolute;
  top: 15px;
  right: 15px;
  font-size: 24px;
  color: #212529;
}
.modal__close:hover {
  color: #565b60;
}
.modal__title {
  font-size: 20px;
  line-height: 1.44;
  margin-bottom: 20px;
}
.modal__title span {
  font-weight: 500;
}

.modal-overlay.active .modal {
  transform: translateY(0);
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: bold;
}

.form-control {
  width: 100%;
  padding: 12px;
  border: 1px solid #6b7b8e;
  border-radius: 8px;
  font-size: 16px;
}

textarea.form-control {
  min-height: 120px;
  resize: vertical;
}

.file-upload {
  display: block;
  padding: 12px;
  border: 2px dashed #6b7b8e;
  border-radius: 8px;
  text-align: center;
  cursor: pointer;
  transition: border-color 0.3s;
}

.file-upload:hover {
  border-color: #00bcd4;
}

.file-name {
  margin-top: 8px;
  font-size: 14px;
  color: #6b7b8e;
}

.submit-btn {
  width: 100%;
  padding: 15px;
  background: #f6e049;
  border-radius: 8px;
  font-size: 16px;
  margin-top: 20px;
  transition: all 0.3s ease;
}
.submit-btn:hover {
  background: #6b7b8e;
  color: #fff;
}
.submit-btn:disabled {
  background: #ccc;
  cursor: not-allowed;
}

input[type=radio] {
  accent-color: #6b7b8e;
}/*# sourceMappingURL=main.css.map */