@charset "UTF-8";
/**
  Нормализация блочной модели
 */
*,
::before,
::after {
  box-sizing: border-box;
}

h1 {
  margin: 0;
}

/**
  Убираем внутренние отступы слева тегам списков,
  у которых есть атрибут class
 */
:where(ul, ol):where([class]) {
  padding-left: 0;
}

/**
  Убираем внешние отступы body и двум другим тегам,
  у которых есть атрибут class
 */
body,
:where(blockquote, figure, fieldset):where([class]) {
  margin: 0;
}

/**
  Убираем внешние отступы вертикали нужным тегам,
  у которых есть атрибут class
 */
:where(h1,
h2,
h3,
h4,
h5,
h6,
p,
ul,
ol,
dl):where([class]) {
  margin-block: 0;
}

:where(dd[class]) {
  margin-left: 0;
}

:where(fieldset[class]) {
  padding: 0;
  border: none;
}

/**
  Убираем стандартный маркер маркированному списку,
  у которого есть атрибут class
 */
:where(ul[class]) {
  list-style: none;
}

:where(address[class]) {
  font-style: normal;
}

/**
  Обнуляем вертикальные внешние отступы параграфа,
  объявляем локальную переменную для внешнего отступа вниз,
  чтобы избежать взаимодействие с более сложным селектором
 */
p {
  --paragraphMarginBottom: 24px;
  margin-block: 0;
}

/**
  Внешний отступ вниз для параграфа без атрибута class,
  который расположен не последним среди своих соседних элементов
 */
p:where(:not([class]):not(:last-child)) {
  margin-bottom: var(--paragraphMarginBottom);
}

/**
  Упрощаем работу с изображениями и видео
 */
img,
video {
  display: block;
  max-width: 100%;
  height: auto;
}

/**
  Наследуем свойства шрифт для полей ввода
 */
input,
textarea,
select,
button {
  font: inherit;
}

html {
  /**
    Пригодится в большинстве ситуаций
    (когда, например, нужно будет "прижать" футер к низу сайта)
   */
  height: 100%;
  /**
    Убираем скачок интерфейса по горизонтали
    при появлении / исчезновении скроллбара
   */
  scrollbar-gutter: stable;
}

/**
  Плавный скролл
 */
html {
  scroll-behavior: smooth;
}

body {
  /**
    Пригодится в большинстве ситуаций
    (когда, например, нужно будет "прижать" футер к низу сайта)
   */
  min-height: 100%;
  /**
    Унифицированный интерлиньяж
   */
  line-height: 1.5;
}

/**
  Нормализация высоты элемента ссылки при его инспектировании в DevTools
 */
a:where([class]) {
  display: inline-flex;
}

/**
  Курсор-рука при наведении на элемент
 */
button,
label {
  cursor: pointer;
}

/**
  Приводим к единому цвету svg-элементы
  (за исключением тех, у которых уже указан
  атрибут fill со значением 'none' или начинается с 'url')
 */
:where([fill]:not([fill=none],
[fill^=url])) {
  fill: currentColor;
}

/**
  Приводим к единому цвету svg-элементы
  (за исключением тех, у которых уже указан
  атрибут stroke со значением 'none')
 */
:where([stroke]:not([stroke=none],
[stroke^=url])) {
  stroke: currentColor;
}

/**
  Чиним баг задержки смены цвета при взаимодействии с svg-элементами
 */
svg * {
  transition-property: fill, stroke;
}

/**
  Приведение рамок таблиц в классический 'collapse' вид
 */
:where(table) {
  border-collapse: collapse;
  border-color: currentColor;
}

/**
  Удаляем все анимации и переходы для людей,
  которые предпочитают их не использовать
 */
@media (prefers-reduced-motion: reduce) {
  *,
  ::before,
  ::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
/*поведение hover эффекта на пк и тач экранах, где нет hover события*/
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  border: 0;
  padding: 0;
  white-space: nowrap;
  clip-path: inset(100%);
  clip: rect(0 0 0 0);
  overflow: hidden;
}

@media (max-width: 767px) {
  .hidden-mobile {
    display: none !important;
  }
}

@media (min-width: 768px) {
  .visible-mobile {
    display: none !important;
  }
}

.hidden {
  display: none !important;
}

.show {
  display: block;
}

.tdn {
  text-decoration: none;
}

:root {
  /* GRADO-EXPERT  */
  --bg-light-gray: #F6F6F6;
  --bg-green: #476E5C;
  --bg-light-green: #729887;
  --bg-red: #DD644F;
  --gray-font: #585858;
  --black-font: #333333;
  --radius-20: 20px;
}

body {
  font-family: "Rubik", sans-serif;
  font-optical-sizing: auto;
  font-weight: normal;
  font-style: normal;
  color: var(--gray-font);
}

h2 {
  color: var(--color-font);
  font-size: clamp(22px, 2.3668639053vw, 32px);
  font-weight: 700;
}

.br-20 {
  border-radius: var(--radius-20);
}

.bg-gray {
  background-color: var(--color-gray);
}

.d-grid {
  display: grid;
}

.d-flex {
  display: flex;
}

.container-fluid {
  max-width: 100%;
  margin: 0 auto;
}

.btn-fill-green {
  background-color: var(--bg-green);
  color: white;
  border: none;
  border-radius: 10px;
  padding-inline: 20px;
  padding-block: 15px;
  text-wrap: nowrap;
  max-height: max-content;
  text-align: center;
  text-transform: uppercase;
  cursor: pointer;
}

.btn-fill-red {
  background-color: var(--bg-red);
  color: white;
  border: none;
  border-radius: 10px;
  padding-inline: 20px;
  padding-block: 15px;
  text-wrap: nowrap;
  max-height: max-content;
  text-align: center;
  text-transform: uppercase;
  cursor: pointer;
}

.btn-border {
  max-height: fit-content;
  color: var(--bg-red);
  border: 1px solid var(--bg-red);
  border-radius: 6px;
  padding-inline: 20px;
  padding-block: 15px;
  text-wrap: nowrap;
}

.btn-fill-white {
  background-color: white;
}

.d-none {
  display: none !important;
}

.btn-center {
  justify-self: center;
}

.span-2 {
  grid-column: span 2;
}
@media (max-width: 1023px) {
  .span-2 {
    grid-column: span 1;
  }
}

.title-line {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 20px;
  margin-top: 22px;
  margin-bottom: 22px;
}
.title-line h2 {
  color: white;
  text-align: center;
  margin: 0;
}
.title-line hr {
  border: none;
  height: 1px;
  width: 100%;
  background-color: var(--bg-light-gray);
}

.li-style ul {
  list-style: none; /* убираем стандартные маркеры */
  padding-left: 0;
}
.li-style ul li {
  position: relative;
  padding-left: 25px; /* отступ для кружочка */
  margin-bottom: 8px;
}
.li-style ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 15px;
  height: 15px;
  background-color: var(--bg-red);
  border-radius: 50%; /* делаем круглым */
}

.username {
  display: none;
}

.success-text {
  background-color: var(--bg-light-green);
  border-radius: 20px;
  padding: 15px;
  font-size: 18px;
  text-align: center;
  color: white;
}

.icon-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
}

.w-100 {
  width: 100%;
}

/*сброс стилей кнопок*/
button {
  appearance: none;
  border: 0;
  background: none;
  padding: 0;
  margin: 0;
  outline: none;
  font: inherit;
  color: inherit;
  cursor: pointer;
}

section {
  padding-bottom: 30px;
}
@media (max-width: 1023px) {
  section {
    padding-bottom: 50px;
  }
}

.container {
  display: flex;
  max-width: 1440px;
  padding: 0 19px;
  gap: 25px;
  margin: auto;
}
@media (max-width: 767px) {
  .container {
    padding-inline: 20px !important;
  }
}

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

.mb-0 {
  margin-bottom: 0 !important;
}

.mb-20 {
  margin-bottom: 20px;
}

.mt-20 {
  margin-top: 20px;
}

.pb-0 {
  padding-bottom: 0 !important;
}

.d-grid {
  display: grid;
}

.cookieconsentclose_btn {
  margin-left: 0;
  margin-right: 2rem !important;
}

a {
  text-decoration: none;
}

.table-responsive {
  overflow-x: auto !important;
  -webkit-overflow-scrolling: touch;
  max-width: 92vw;
}

.table-responsive table {
  min-width: 600px; /* или нужная ширина */
  width: 100%;
}

.d-grid {
  display: grid;
}

@media (max-width: 1023px) {
  .hidden-tablet {
    display: none !important;
  }
}

@media (min-width: 1024px) {
  .visible-tablet {
    display: none !important;
  }
}

.order-2 {
  order: 2;
}

.order-3 {
  order: 3;
}

.pointer {
  cursor: pointer;
}

.bg-green {
  background-color: var(--bg-green);
}
.bg-green h2 {
  color: white;
}

.bg-white {
  background-color: white;
}

.text-dark {
  color: var(--gray-font) !important;
}

.hr-gray {
  background-color: #ececec !important;
}

.develop {
  display: grid;
  align-items: center;
  height: 100%;
  background-color: black;
  text-align: center;
}
.develop a {
  color: #00ff80;
}
.develop h2 {
  color: white;
  text-align: center;
  font-size: clamp(22px, 1.849112426vw, 25px);
}
.develop .glitch-text {
  font-size: 28px;
  font-weight: bold;
  color: #0ff;
  text-shadow: 0 0 5px #0ff, 0 0 10px #0ff, 0 0 20px #0ff, 0 0 40px #0ff;
  animation: shake 0.3s infinite;
}
@keyframes shake {
  0% {
    transform: translate(0, 0);
  }
  20% {
    transform: translate(-1px, 1px);
  }
  40% {
    transform: translate(1px, -1px);
  }
  60% {
    transform: translate(-1px, -1px);
  }
  80% {
    transform: translate(1px, 1px);
  }
  100% {
    transform: translate(0, 0);
  }
}

.about-present__wrapper a {
  color: var(--bg-green);
  text-decoration: underline;
}

.inforow-section {
  padding-bottom: 0;
}
@media (max-width: 1023px) {
  .inforow-section {
    position: sticky;
    top: 0;
    z-index: 120;
  }
}

.inforow {
  display: flex;
  justify-content: space-between;
  background-color: var(--bg-light-gray);
  margin-top: 20px;
  padding-block: 10px;
  padding-inline: 40px;
  align-items: center;
  font-size: 16px;
}
.inforow__logo {
  min-width: 202px;
}
.inforow__address::before {
  content: url("/assets/img/icons/city.svg");
}
.inforow__email::before {
  content: url("/assets/img/icons/mail.svg");
}
.inforow__phone::before {
  content: url("/assets/img/icons/phone.svg");
}
.inforow .icon-position::before {
  display: inline-block;
  vertical-align: middle;
  width: 24px;
  height: 24px;
  margin-right: 1px;
}
@media (max-width: 1023px) {
  .inforow__address {
    display: none;
  }
}
.inforow__email {
  white-space: nowrap;
}
@media (max-width: 1023px) {
  .inforow__email {
    display: none;
  }
}
.inforow__phone {
  display: flex;
  align-items: center;
  white-space: nowrap;
}
.inforow__phone a {
  font-weight: 700;
  font-size: 20px;
  color: var(--gray-font);
}
@media (max-width: 1023px) {
  .inforow {
    margin-top: 0;
  }
}

.mobile-btns {
  display: flex;
  gap: 10px;
}

.sticky-wrapper {
  position: sticky;
  top: 0;
  z-index: 100;
}

.main-menu.menu-sticky-shadow {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15), 0 2px 4px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s ease;
}

.main-menu {
  display: flex;
  justify-content: space-between;
  background-color: var(--bg-light-gray);
  margin-top: 20px;
  padding-block: 10px;
  padding-inline: 40px;
  align-items: center;
  font-size: 16px;
}
.main-menu ul {
  display: flex;
  gap: 40px;
}
.main-menu ul li {
  list-style: none;
}
.main-menu ul li a {
  color: var(--gray-font);
  font-weight: 500;
  font-size: clamp(12px, 1.1834319527vw, 16px);
}
@media (max-width: 1023px) {
  .main-menu {
    display: grid;
    position: absolute;
    top: 0;
    right: 0;
    width: fit-content;
    margin-top: 0;
    height: 100vh;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    display: none;
  }
  .main-menu nav {
    order: 2;
  }
  .main-menu ul {
    display: grid;
    gap: 10px;
    padding-left: 0;
  }
  .main-menu ul li a {
    font-size: 20px;
    font-weight: 700;
  }
}

.top-row-mobile-menu {
  display: flex;
  justify-content: space-between;
}

.mobile-menu-conacts {
  display: grid;
  gap: 10px;
  color: white;
}
.mobile-menu-conacts .btn-fill-red {
  margin-bottom: 100px;
}
.mobile-menu-conacts a {
  color: white;
  text-decoration: none;
  display: block;
}
.mobile-menu-conacts .item {
  display: flex;
  align-items: center;
  line-height: normal;
  border-radius: 10px;
  background-color: var(--bg-green);
  padding: 15px;
}
.mobile-menu-conacts .item img {
  margin-right: 4px;
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  object-fit: contain;
}

.main-menu.open {
  display: grid;
  right: 0;
}

.search-row {
  display: flex;
}

.search-form {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
}

.search-input {
  flex: 1;
  padding: 10px 50px 10px 15px; /* отступ справа под иконку */
  border: 1px solid #ccc;
  border-radius: 10px;
  font-size: 16px;
  outline: none;
  transition: all 0.3s ease;
}

.search-input:focus {
  border-color: #007bff;
  box-shadow: 0 0 5px rgba(0, 123, 255, 0.3);
}

.search-button {
  position: absolute;
  right: 5px; /* отступ от правого края */
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.3s ease;
}

.search-button img {
  width: 30px;
  height: 30px;
  display: block;
}

.search-button:hover {
  opacity: 0.7;
}

.search-button:active {
  transform: translateY(-50%) scale(0.95);
}

.menu-open .inforow-section {
  display: none;
}
.menu-open .inforow {
  display: none;
}
.menu-open .sticki-logo {
  display: none !important;
}

/* Scrollbar (mobile menu) */
.main-menu {
  scrollbar-width: thin;
  scrollbar-color: var(--bg-green) var(--bg-light-gray);
}

.main-menu::-webkit-scrollbar {
  width: 8px;
}

.main-menu::-webkit-scrollbar-track {
  background: var(--bg-light-gray);
}

.main-menu::-webkit-scrollbar-thumb {
  background-color: var(--bg-green);
  border-radius: 8px;
}

.present {
  display: grid;
  gap: 40px;
  grid-template-columns: 2fr 1fr;
  padding-inline: 0;
}
@media (max-width: 1023px) {
  .present {
    grid-template-columns: 1fr;
  }
}
.present__left {
  display: grid;
  background-color: var(--bg-green);
  color: white;
  padding: 40px;
}
.present__left h1 {
  text-transform: uppercase;
  font-size: clamp(22px, 2.3668639053vw, 32px);
}
.present__left p {
  color: white;
}
.present__cards-wrapper {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
@media (max-width: 1023px) {
  .present__cards-wrapper {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 767px) {
  .present__cards-wrapper {
    grid-template-columns: 1fr;
  }
}
.present__card-item {
  background-color: var(--bg-light-green);
  padding: 20px;
  display: grid;
  align-items: flex-start;
}
.present__card-item .title {
  text-transform: uppercase;
  font-weight: 500;
  align-self: end;
  font-size: clamp(12px, 1.1834319527vw, 16px);
}
.present__form {
  display: grid;
  background-color: var(--bg-green);
  color: white;
  padding: 40px;
  background-image: url("/assets/img/bg-items/arrow-form.svg");
  background-repeat: no-repeat;
  background-position: top right;
}
.present__form .title {
  font-weight: 700;
  font-size: 28px;
}
.base-form {
  display: grid;
  grid-template-columns: 1fr;
}
.base-form input {
  margin-bottom: 1rem;
  padding: 0.75rem;
  border: 1px solid #ddd;
  border-radius: 10px;
}
.base-form button {
  background-color: var(--bg-red);
  padding: 13px;
  border-radius: 10px;
}
.base-form .agreement {
  margin-top: 20px;
  display: flex;
  line-height: normal;
  font-size: clamp(10px, 0.8875739645vw, 12px);
}
.base-form .fields {
  display: grid;
  grid-template-columns: 1fr;
}
.base-form a {
  color: white;
  text-decoration: underline;
}

.section-service {
  background-color: var(--bg-light-gray);
  padding-bottom: 0;
  margin-bottom: 30px;
  border-radius: 20px;
}

.services {
  padding: 40px 0;
  display: grid;
}
.services .btn-show-more {
  display: flex;
  justify-content: center;
}
.services .service-btn button {
  width: 100%;
  border: 1px solid white;
  margin-top: 10px;
}
.services .service-btn button:hover {
  background-color: white;
  color: var(--bg-red);
  border: 1px solid var(--bg-red);
}
.services__wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}
@media (max-width: 767px) {
  .services__wrapper {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 1023px) {
  .services__wrapper {
    grid-template-columns: 1fr;
  }
}
.services__item {
  background-color: white;
  border-radius: var(--radius-20);
}
.services__item h2 {
  background-color: var(--bg-green);
  width: max-content;
  padding-inline: 30px;
  border-radius: 0 20px 20px 0;
  color: white;
  font-weight: 700;
  font-size: clamp(18px, 2.0710059172vw, 28px);
}
.services__item a {
  text-decoration: none;
  color: white;
}
.services__item h2:hover {
  background-color: var(--bg-red);
  cursor: pointer;
}
.services__item p {
  margin-left: 40px;
}
@media (max-width: 767px) {
  .services__item p {
    margin-left: 10px;
  }
}
.services__item .item__list-wrapper {
  display: grid;
  gap: 10px;
  padding: 20px;
  width: max-content;
  border: 5px solid var(--bg-light-gray);
  border-radius: 20px 20px 0 0;
  background-color: white;
  border-bottom: none;
}
@media (max-width: 767px) {
  .services__item .item__list-wrapper {
    margin-top: 350px;
  }
}
.services__bg-block {
  display: grid;
  justify-content: end;
  width: 100%;
  background-repeat: no-repeat;
  padding-inline: 30px;
}
@media (max-width: 767px) {
  .services__bg-block {
    padding-inline: 0;
    background-size: inherit;
  }
}
.services .tpl-service-item {
  display: flex;
  gap: 10px;
  padding: 10px;
  padding-inline: 20px;
  border-radius: 20px;
  background-color: var(--bg-light-gray);
  max-width: 455px;
  align-items: center;
  justify-content: space-between;
  min-height: 68px;
}
@media (max-width: 767px) {
  .services .tpl-service-item {
    display: grid;
    gap: 10px;
    text-align: center;
    justify-content: stretch;
  }
}
.services .tpl-service-item__title {
  max-width: 250px;
}
.services .tpl-service-item__title a {
  color: var(--gray-font);
  text-decoration: underline;
}
.services .tpl-service-item__title a:hover {
  color: var(--bg-green);
}
.services .tpl-service-item__price {
  border: 1px solid var(--bg-green);
  border-radius: 5px;
  background-color: white;
  height: max-content;
  padding-inline: 10px;
}

.oport {
  display: grid;
  background-color: var(--bg-green);
  border-radius: var(--radius-20);
  padding: 40px;
}
.oport__title-line {
  display: grid;
  grid-template-columns: 1fr auto 1fr; /* Левая линия | заголовок | правая линия */
  align-items: center;
  gap: 20px;
  margin-top: 10px;
  margin-bottom: 20px;
}
.oport hr {
  border: none;
  height: 1px;
  width: 100%;
  background-color: var(--bg-light-gray);
}
.oport h2 {
  color: white;
  text-align: center;
  margin: 0;
}
.oport__wrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  width: 100%;
}
@media (max-width: 1023px) {
  .oport__wrapper {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 767px) {
  .oport__wrapper {
    grid-template-columns: 1fr;
  }
}
.oport__item {
  display: grid;
  gap: 30px;
  align-items: center;
  justify-items: center;
  background-color: var(--bg-light-green);
  border-radius: var(--radius-20);
  padding: 50px 20px;
}
.oport__item .title {
  text-align: center;
  font-weight: 500;
  font-size: 16px;
  color: white;
  text-transform: uppercase;
  font-size: clamp(14px, 1.1834319527vw, 16px);
}
.oport__item img {
  height: 80px;
}

.section-stages {
  background-color: var(--bg-green);
  background-image: url("/assets/img/bg-items/stgBGLeft.svg"), url("/assets/img/bg-items/stgBGRight.svg");
  background-position: left, right;
  background-repeat: no-repeat, no-repeat;
}

.stages {
  display: grid;
  padding-bottom: 40px;
}
.stages__title-line {
  display: grid;
  grid-template-columns: auto 1fr; /* Левая линия | заголовок | правая линия */
  align-items: center;
  gap: 20px;
  margin-top: 22px;
  margin-bottom: 22px;
}
.stages h2 {
  color: white;
  text-align: center;
  margin: 0;
}
.stages hr {
  border: none;
  height: 1px;
  width: 100%;
  background-color: var(--bg-light-gray);
}
.stages__wrapper {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}
@media (max-width: 1023px) {
  .stages__wrapper {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 767px) {
  .stages__wrapper {
    grid-template-columns: 1fr;
  }
}
.stages__item {
  background-color: white;
  border-radius: var(--radius-20);
  overflow: hidden;
}
.stages__item .top {
  display: flex;
  align-items: center;
  justify-content: space-around;
  height: 200px;
  background-image: url("/assets/img/bg-items/1-4.svg");
  background-repeat: no-repeat;
  background-size: contain;
  color: #333333;
  font-size: clamp(80px, 7.7662721893vw, 105px);
  font-weight: 900;
}
.stages__item .top img {
  height: 80px;
}
.stages__item .bottom {
  padding: 20px;
}
.stages__item .bottom .title {
  max-width: 150px;
  font-weight: 700;
  font-size: clamp(18px, 1.4792899408vw, 20px);
}
.portfolio {
  display: grid;
}
.portfolio__title-line {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 20px;
  margin-top: 22px;
  margin-bottom: 22px;
}
.portfolio__title-line hr {
  border: none;
  height: 1px;
  width: 100%;
  background-color: var(--bg-light-gray);
}
.portfolio__wrapper {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-bottom: 20px;
}
@media (max-width: 1023px) {
  .portfolio__wrapper {
    grid-template-columns: 1fr;
  }
}
.portfolio .tpl-portfolio {
  display: flex;
  gap: 20px;
  background-color: var(--bg-light-gray);
  border-radius: var(--radius-20);
  padding: 20px;
}
@media (max-width: 767px) {
  .portfolio .tpl-portfolio {
    display: grid;
  }
  .portfolio .tpl-portfolio img {
    width: 100%;
  }
}
.portfolio .tpl-portfolio .right {
  display: grid;
}
.portfolio .tpl-portfolio img {
  border-radius: 15px;
}
.portfolio .tpl-portfolio .title {
  font-weight: 700;
  font-size: clamp(16px, 1.4792899408vw, 20px);
}
.portfolio .tpl-portfolio .des {
  align-self: start;
  font-size: clamp(12px, 1.1834319527vw, 16px);
}
.portfolio .tpl-portfolio a {
  align-self: end;
}
.portfolio .tpl-portfolio button {
  width: 100%;
}

.swiper {
  width: 100%;
  position: relative;
  padding-bottom: 100px !important;
}
.swiper .btn-wrapper {
  position: absolute;
  bottom: 30px;
  z-index: 100;
  height: 40px;
  width: 120px;
  left: 50%;
  transform: translateX(-50%);
}
.swiper .btn-wrapper img {
  width: 40px;
  height: 40px;
}

.licenses-swiper-container {
  background-color: var(--bg-green);
}

.licenses-swiper {
  display: grid;
}
.licenses-swiper .slide-img {
  display: grid;
  position: relative;
  justify-content: center;
}
.licenses-swiper .slide-img img {
  border-radius: var(--radius-20);
}
.licenses-swiper .slide-img .title {
  align-self: end;
  background-color: var(--bg-light-green);
  border-radius: var(--radius-20);
  position: absolute;
  bottom: 0;
  color: white;
  font-size: clamp(10px, 0.8875739645vw, 12px);
  padding: 15px;
  text-align: center;
  width: 100%;
  min-height: 66px;
}

.about {
  padding-block: 50px;
}
@media (max-width: 767px) {
  .about {
    display: grid;
  }
}
.about__signature {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-weight: 600;
  padding-bottom: 30px;
  font-size: clamp(16px, 1.4792899408vw, 20px);
}
.about__left {
  background-color: var(--bg-light-gray);
  border-radius: var(--radius-20);
  padding: 0 50px;
  max-width: 955px;
}
.about__left h2 {
  font-size: clamp(22px, 2.0710059172vw, 28px);
}
.about__left p {
  font-style: italic;
  font-size: clamp(12px, 1.1834319527vw, 16px);
}
.about__right {
  display: grid;
  align-items: center;
}
.about__right iframe {
  border-radius: var(--radius-20);
  width: 500px;
  height: 750px;
}
@media (max-width: 1023px) {
  .about__right iframe {
    width: 100%;
    height: 500px !important;
  }
}

.experts {
  display: grid;
}
.experts h2 {
  color: var(--gray-font) !important;
}
.experts hr {
  border: none;
  height: 1px;
  width: 100%;
  background-color: var(--bg-light-gray);
}
.experts__wrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 42px;
  margin-bottom: 20px;
}
@media (max-width: 1023px) {
  .experts__wrapper {
    grid-template-columns: 1fr;
  }
}
.experts__item {
  background-color: var(--bg-light-gray);
  border-radius: var(--radius-20);
}
.experts__item .photo {
  display: grid;
  justify-content: center;
  position: relative;
  text-align: center;
}
.experts__item .name {
  position: absolute;
  bottom: 0;
  width: 100%;
  background-color: var(--bg-light-green);
  border-radius: 0 20px 20px 0;
  padding: 10px;
  color: white;
}
.experts__item .position {
  margin-top: 10px;
}
.experts__item .bottom {
  display: grid;
  gap: 15px;
  padding: 15px;
}

.swiper {
  width: 100%;
  position: relative;
  padding-bottom: 100px !important;
}
.swiper .btn-wrapper {
  position: absolute;
  bottom: 30px;
  z-index: 100;
  height: 40px;
  width: 120px;
  left: 50%;
  transform: translateX(-50%);
}
.swiper .btn-wrapper img {
  width: 40px;
  height: 40px;
}

.licenses-swiper-container {
  background-color: var(--bg-green);
}

.licenses-swiper {
  display: grid;
}

.partner-slide {
  background-color: white;
  border-radius: var(--radius-20);
  height: 50px;
}
.partner-slide .partner-img {
  height: 256px;
  display: grid;
  align-items: center;
  justify-content: center;
}
.partner-slide .partner-img img {
  width: 210px;
  height: auto;
}

.feedback {
  display: grid;
}
.feedback .title-line h2 {
  color: var(--gray-font);
}
.feedback__wrapper {
  display: flex;
}
.feedback .feedbackSwiper {
  max-width: 784px;
  background-color: var(--bg-light-gray);
  border-radius: var(--radius-20);
  display: grid;
  align-content: center;
  justify-content: space-around;
  padding-inline: 50px;
}
.feedback .title {
  align-self: end;
  background-color: var(--bg-light-green);
  border-radius: var(--radius-20);
  position: absolute;
  bottom: 0;
  color: white;
  font-size: clamp(12px, 1.0355029586vw, 14px);
  padding: 15px;
  text-align: center;
  width: 100%;
}

.fb-wrapper {
  display: grid;
  grid-template-columns: 1fr 2fr;
}
@media (max-width: 1023px) {
  .fb-wrapper {
    grid-template-columns: 1fr;
  }
}

.slide-img {
  display: flex;
  justify-content: center;
}

.company-digital-section {
  background-color: var(--bg-green);
  border-radius: var(--radius-20);
}

.company-digital {
  display: grid;
}
.company-digital__subtitle {
  color: white;
}
.company-digital__cards-wrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
@media (max-width: 1023px) {
  .company-digital__cards-wrapper {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 767px) {
  .company-digital__cards-wrapper {
    grid-template-columns: 1fr;
  }
}
.company-digital .card {
  display: grid;
  gap: 20px;
  background-color: white;
  border-radius: var(--radius-20);
  padding: 20px;
}
.company-digital .card .digital {
  color: var(--bg-light-green);
  font-weight: 900;
  font-size: clamp(70px, 7.3224852071vw, 99px);
  line-height: 70px;
}
.company-digital .card .title {
  font-weight: 700;
  font-size: clamp(16px, 1.4792899408vw, 20px);
}
.company-digital__bottom-row {
  display: flex;
  background-color: white;
  border-radius: 10px;
  padding: 10px;
}
@media (max-width: 1023px) {
  .company-digital__bottom-row {
    display: grid;
  }
}
.company-digital__bottom-row .des {
  padding: 10px;
}
.company-digital__bottom-row .contacts {
  background-color: var(--bg-light-green);
  border-radius: 10px;
  padding: 10px;
  display: flex;
  gap: 15px;
}
@media (max-width: 767px) {
  .company-digital__bottom-row .contacts {
    display: grid;
    justify-items: center;
  }
}
.company-digital__bottom-row .contacts-string {
  width: max-content;
}
.company-digital__bottom-row .contacts-string .phone {
  font-weight: 700;
  color: white;
  font-size: clamp(16px, 1.4792899408vw, 20px);
}
.company-digital__bottom-row .contacts-string .work-h {
  color: white;
}

.about-present {
  display: grid;
  margin-top: 40px;
}
.about-present h2 {
  color: var(--gray-font);
}
.about-present__wrapper {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 60px;
}
@media (max-width: 767px) {
  .about-present__wrapper {
    grid-template-columns: 1fr;
  }
}
.about-present .left {
  display: grid;
  align-items: center;
  font-size: clamp(12px, 1.1834319527vw, 16px);
}
.about-present .right {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}
@media (max-width: 767px) {
  .about-present .right {
    grid-template-columns: 1fr;
  }
}
.about-present .right .item {
  display: grid;
  align-items: flex-start;
  padding: 20px;
  background-image: url("/assets/uploads/vaflia.svg");
  background-repeat: no-repeat;
  background-position: left top;
  background-color: var(--bg-light-gray);
  border-radius: var(--radius-20);
  min-height: 191px;
}
.about-present .right .item .title {
  color: white;
  line-height: 60px;
  font-weight: 800;
  font-size: clamp(70px, 5.9171597633vw, 80px);
}
.about-present .right .item .des {
  align-self: end;
}

.form-address-section {
  background-color: var(--bg-green);
}

.form-address {
  display: grid;
  grid-template-columns: 2fr 1fr;
  padding-block: 30px;
}
@media (max-width: 1023px) {
  .form-address {
    grid-template-columns: 1fr;
  }
}
.form-address__left {
  background-color: white;
  border-radius: var(--radius-20);
  padding: 40px;
  line-height: normal;
}
.form-address__left h2 {
  padding: 0;
  margin: 0;
  margin-bottom: 20px;
}
.form-address__left .des {
  margin-bottom: 20px;
}
.form-address__left .item {
  background-color: var(--bg-light-green);
  border-radius: 10px;
  padding: 20px;
}
.form-address__left .item, .form-address__left .item a {
  color: white;
  font-weight: 700;
  font-size: clamp(16px, 1.4792899408vw, 20px);
}
.form-address__left .item-wrapper span {
  display: inline-block;
  padding-bottom: 10px;
}
.form-address__phones-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 20px;
  align-items: end;
}
@media (max-width: 767px) {
  .form-address__phones-row {
    grid-template-columns: 1fr;
    gap: 5px;
    margin-bottom: 0;
  }
}
.form-address__address-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 20px;
}
@media (max-width: 767px) {
  .form-address__address-row {
    grid-template-columns: 1fr;
  }
}

.bg-light-green {
  background-color: var(--bg-light-green);
}

.faq {
  display: grid;
}
.faq .title-line {
  width: 100%;
}
.faq .title-line h2 {
  color: var(--gray-font);
}
.faq .title-line hr {
  border: none;
  height: 1px;
  width: 100%;
  background-color: var(--bg-light-gray);
}
.faq__wrapper {
  display: grid;
  gap: 20px;
}
.faq .question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: var(--bg-green);
  padding: 20px;
  border-radius: 20px 20px 0 0;
  font-weight: 700;
  font-size: clamp(16px, 1.4792899408vw, 20px);
  color: white;
  background-image: url("/assets/img/bg-items/hren.svg");
  background-position: right;
  background-repeat: no-repeat;
  cursor: pointer;
}
@media (max-width: 767px) {
  .faq .question {
    background-image: none;
  }
}
.faq .question img {
  margin-right: 110px;
}
@media (max-width: 767px) {
  .faq .question img {
    margin-right: 0;
    width: 40px;
  }
}
.faq .answer {
  background-color: var(--bg-light-gray);
  border-radius: 0 0 20px 20px;
  padding: 20px;
}
.faq__item .disable {
  border-radius: 20px;
}

.section-article {
  background-color: var(--bg-light-gray);
  border-radius: var(--radius-20);
}

.article {
  display: grid;
}
.article__wrapper {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
@media (max-width: 1023px) {
  .article__wrapper {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 767px) {
  .article__wrapper {
    grid-template-columns: 1fr;
  }
}

.tpl-article {
  display: grid !important;
  gap: 20px;
  border-radius: var(--radius-20);
  background-color: white;
  padding: 20px;
}
.tpl-article img {
  border-radius: var(--radius-20);
}
.tpl-article__published {
  display: flex;
  justify-content: space-between;
  font-weight: 400;
}
.tpl-article__published .data {
  background-color: var(--bg-green);
  border-radius: 20px;
  padding-inline: 7px;
  color: white;
  max-height: fit-content;
}
.tpl-article__tag {
  background-color: var(--bg-light-green);
  text-align: center;
  border-radius: 20px;
  padding-inline: 7px;
  color: white;
  max-height: fit-content;
}
.tpl-article .title {
  font-weight: 700;
  font-size: clamp(16px, 1.4792899408vw, 20px);
}

footer {
  background-color: var(--bg-green);
  border-radius: 20px 20px 0 0;
  color: white;
}

.footer {
  display: grid;
  grid-template-columns: repeat(4, auto);
  gap: 40px;
  column-gap: 100px;
  padding-block: 30px;
  margin-top: 60px;
}
@media (max-width: 1023px) {
  .footer {
    grid-template-columns: repeat(2, auto);
  }
}
@media (max-width: 767px) {
  .footer {
    grid-template-columns: 1fr;
  }
}
.footer__logo {
  max-width: 350px;
}
.footer__logo p {
  margin-top: 20px;
}
.footer__social .icons-wrapper {
  margin-top: 10px;
  display: flex;
  gap: 10px;
}
.footer__social .icon {
  background-color: var(--bg-light-green);
  padding: 10px;
  border-radius: 5px;
  width: max-content;
}
.footer__main-menu .title, .footer__service-menu .title {
  font-weight: 700;
}
.footer__main-menu ul, .footer__service-menu ul {
  padding: 0;
}
.footer__main-menu li, .footer__service-menu li {
  list-style: none;
}
.footer__main-menu a, .footer__service-menu a {
  color: white;
}
.footer__contact .title {
  font-weight: 700;
}
.footer__contact .contact-column {
  display: grid;
  gap: 10px;
  background-color: var(--bg-light-green);
  padding: 20px;
  border-radius: var(--radius-20);
}
.footer__contact .item {
  display: flex;
  align-items: center;
  line-height: normal;
  border-radius: 10px;
  background-color: var(--bg-green);
  padding: 15px;
}
.footer__contact .item img {
  width: 30px;
  height: 30px;
  margin-right: 5px;
}
.footer__copyright {
  background-color: var(--bg-light-green);
  grid-column: 1/-1;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
  gap: 40px;
  border-radius: var(--radius-20);
}
@media (max-width: 767px) {
  .footer__copyright {
    display: grid;
    gap: 10px;
    justify-items: center;
    text-align: center;
  }
}
.footer__copyright a {
  color: white;
  text-decoration: underline;
}
.footer__copyright .cytcle {
  background-color: white;
  border-radius: 50%;
  width: 10px;
  height: 10px;
  align-content: center;
}

@media (max-width: 767px) {
  .service-first {
    display: grid;
  }
}
.service-first__left {
  max-width: 980px;
}
.service-first__left a {
  color: white;
  text-decoration: underline;
}
.service-first__left .service-about {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 25px;
  background-color: var(--bg-green);
  border-radius: var(--radius-20);
  color: white;
  padding: 30px;
}
@media (max-width: 767px) {
  .service-first__left .service-about {
    grid-template-columns: 1fr;
  }
}
.service-first__left .buttons {
  display: grid;
  align-content: baseline;
  gap: 20px;
}
.service-first .service-digitals {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-top: 20px;
}
@media (max-width: 767px) {
  .service-first .service-digitals {
    grid-template-columns: 1fr;
  }
}
.service-first .service-digitals .left, .service-first .service-digitals .right {
  background-color: var(--bg-light-green);
  border-radius: var(--radius-20);
  color: white;
  padding: 20px;
}
.service-first .service-digitals .title {
  font-weight: 700;
  font-size: clamp(22px, 2.0710059172vw, 28px);
  margin-bottom: 15px;
}
.service-first .service-digitals .bold-string {
  font-weight: 900;
  font-size: clamp(30px, 2.7366863905vw, 37px);
  margin-bottom: 38px;
}
.service-first .service-digitals .row {
  display: flex;
  justify-content: space-between;
}

.price-list {
  display: grid;
}
.price-list__wrapper .title {
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding: 20px;
  background-color: var(--bg-green);
  border-radius: var(--radius-20);
  color: white;
  font-weight: 700;
}
@media (max-width: 767px) {
  .price-list__wrapper .title {
    grid-template-columns: 1fr;
  }
}
.price-list__wrapper .items {
  display: grid;
  gap: 10px;
  margin-top: 20px;
}
.price-list__wrapper .items .item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding-left: 30px;
  background-color: var(--bg-light-gray);
  border-radius: var(--radius-20);
}
@media (max-width: 767px) {
  .price-list__wrapper .items .item {
    grid-template-columns: 1fr;
  }
}
.price-list__wrapper .items .item .left {
  font-weight: 700;
}
.price-list__wrapper .items .item .right {
  background-color: var(--bg-light-green);
  border-radius: var(--radius-20);
  padding: 20px;
  color: white;
}

.container-article {
  padding-right: 0;
}
@media (max-width: 767px) {
  .container-article {
    display: grid;
    grid-template-columns: 1fr;
  }
}

.article-body {
  margin-bottom: 20px;
}
.article-body__relis {
  background-color: var(--bg-light-gray);
  border-radius: var(--radius-20);
  padding: 40px;
}
@media (max-width: 767px) {
  .article-body__relis {
    padding: 20px;
  }
}
.article-body__top-row {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .article-body__top-row {
    display: grid;
  }
}
.article-body__tag {
  background-color: white;
  padding-inline: 10px;
  border-radius: 10px;
}
.article-body__tag a {
  color: var(--black-font);
}
.article-body__published {
  display: flex;
  gap: 20px;
  justify-content: space-between;
  font-weight: 400;
  max-width: fit-content;
}
@media (max-width: 767px) {
  .article-body__published {
    display: grid;
    gap: 3px;
  }
}
.article-body__published .data {
  background-color: var(--bg-green);
  border-radius: 20px;
  padding-inline: 7px;
  color: white;
  max-height: fit-content;
}
.article-body h1 {
  color: var(--black-font);
  font-weight: 700;
  font-size: clamp(22px, 2.0710059172vw, 28px);
  margin-top: 20px;
  margin-bottom: 20px;
}
.article-body h2 {
  font-weight: 500;
  font-size: clamp(18px, 3.1065088757vw, 42px);
}
.article-body .anons {
  display: block;
}
.article-body .anons img {
  float: left;
  margin-right: 20px;
  margin-bottom: 10px;
}
.article-body .description {
  display: block;
  max-height: fit-content;
}
.article-body__content {
  margin-top: 20px;
  background-color: var(--bg-light-gray);
  border-radius: var(--radius-20);
  padding: 40px;
}
@media (max-width: 767px) {
  .article-body__content {
    padding: 20px;
  }
}
.article-body__content img {
  border-radius: var(--radius-20);
  float: left;
  margin-right: 20px;
  margin-bottom: 10px;
}
.article-body__content h1, .article-body__content h2, .article-body__content h3 {
  margin: 0;
  font-size: clamp(16px, 1.4792899408vw, 20px);
  font-weight: 700;
  margin-bottom: 20px;
}

.sidebar {
  position: relative;
  min-width: 0;
  flex: 0 0 330px;
  max-width: 330px;
  width: 100%;
}
@media (max-width: 767px) {
  .sidebar {
    flex: 1 1 auto;
    max-width: 100%;
  }
}
.sidebar .sidebar-menu {
  background-color: var(--bg-green);
  border-radius: var(--radius-20);
  list-style: none;
  color: white;
  max-height: fit-content;
  padding: 15px;
  min-width: 330px;
}
@media (max-width: 767px) {
  .sidebar .sidebar-menu {
    max-width: 100%;
    min-width: 0;
  }
}
.sidebar .sidebar-menu h3 {
  padding-block: 5px;
  margin-top: 2px;
}
.sidebar .sidebar-menu ul li {
  background-color: var(--bg-light-green);
  border-radius: 10px;
  padding: 12px;
  padding-left: 50px;
}
.sidebar .sidebar-menu ul li:hover {
  background-color: var(--bg-red);
}
.sidebar .sidebar-menu li::before {
  left: 18px !important;
}
.sidebar .sidebar-menu li:hover::before {
  background-color: white;
}
.sidebar .sidebar-menu a {
  color: white;
}
.sidebar .sidebar-form {
  margin-top: 20px;
  max-width: 100%;
  position: sticky;
  top: 100px;
  z-index: 90;
}
@media (max-width: 767px) {
  .sidebar .sidebar-form {
    position: static;
  }
}

.modal {
  display: none; /* Скрыто по умолчанию */
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1000;
}

.modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7); /* Затемнение */
}

.modal-content {
  position: relative;
  background: white;
  border-radius: 17px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  max-width: 600px;
  margin: 2rem auto;
  animation: fadeIn 0.3s;
}

.modal-body {
  border-radius: 16px;
  padding: 1rem;
}

.modal-body img {
  border-radius: 16px 16px 0 0;
}

.modal-close {
  position: absolute;
  top: 0;
  right: 1.5rem;
  font-size: 2rem;
  cursor: pointer;
  color: #666;
}

.modal-close:hover {
  color: #000;
}

.modal-image {
  max-width: 100%;
  height: auto;
  display: block;
  margin-bottom: 1.5rem;
}

.feedback-form {
  display: flex;
  flex-direction: column;
  margin-top: 30px;
}

.feedback-form input,
.feedback-form textarea {
  margin-bottom: 1rem;
  padding: 0.75rem;
  border: 1px solid #ddd;
  border-radius: 4px;
}

.feedback-form button {
  background: #007bff;
  color: white;
  border: none;
  padding: 0.75rem;
  border-radius: 4px;
  cursor: pointer;
}

.feedback-form button:hover {
  background: #0056b3;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.no-scroll {
  overflow: hidden; /* Убирает скролл при открытом окне */
}

.modal-trigger {
  cursor: pointer;
}

.modal-text {
  padding: 2rem;
  display: grid;
}
.modal-text__title {
  margin-bottom: 15px;
  font-weight: 600;
  font-size: 16px;
}
.modal-text__des {
  font-weight: 400;
  font-size: 15px;
  margin-bottom: 15px;
}
.modal-text .btn-modal {
  width: 100%;
  max-width: 100%;
}

.portfolio-js__wrapper .modal-body {
  padding: 0 !important;
}
.portfolio-js__wrapper .modal-close {
  position: absolute;
  top: 0;
  right: 0;
  font-size: 2rem;
  cursor: pointer;
  color: #666;
}

.agreement-check {
  display: flex;
  gap: 10px;
  align-items: self-start;
  font-size: 12px;
  margin-bottom: 20px;
}

.info-row {
  padding: 0;
}
.info-row__content {
  background-image: url(/assets/img/bg-items/ebanina.svg);
  background-position: right;
  background-repeat: no-repeat;
  background-size: contain;
  display: grid;
  gap: 40px;
  grid-template-columns: 3fr auto;
  background-color: var(--bg-green);
  color: white;
  border-radius: var(--radius-20);
  padding: 40px;
}
@media (max-width: 767px) {
  .info-row__content {
    grid-template-columns: 1fr;
  }
}
.info-row__content h1 {
  margin-bottom: 20px;
  font-size: clamp(22px, 2.3668639053vw, 32px);
}
.info-row__content .right {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  margin-top: 20px;
}

.b-details {
  padding: 0;
}
.b-details .items {
  display: grid;
  gap: 10px;
  margin-top: 20px;
  width: 100%;
}
.b-details .items .item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding-left: 30px;
  background-color: var(--bg-light-gray);
  border-radius: var(--radius-20);
}
@media (max-width: 767px) {
  .b-details .items .item {
    grid-template-columns: 1fr;
  }
}
.b-details .items .item .left {
  font-weight: 700;
}
.b-details .items .item .right {
  background-color: var(--bg-light-green);
  border-radius: var(--radius-20);
  padding: 20px;
  color: white;
}

@media (max-width: 767px) {
  .container-potfolio-swiper {
    max-width: 250px;
  }
}

.section-potfolio-single {
  display: flex;
}
.section-potfolio-single .container {
  padding: 0;
  display: block;
}

.potfolio-swiper {
  max-width: 800px;
  position: relative;
}

.portfolioSwiper {
  overflow: hidden;
  position: unset !important;
}
@media (max-width: 1280px) {
  .portfolioSwiper .btn-wrapper {
    position: absolute;
    bottom: -18px !important;
    z-index: 100;
    height: 40px;
    width: 100px !important;
    left: 50%;
  }
}
.portfolioSwiper .swiper-button-prev {
  left: 0;
}
.portfolioSwiper .portfolio-slide {
  display: grid;
  justify-items: center;
}
.portfolioSwiper .btn-wrapper {
  position: absolute;
  bottom: 55px;
  z-index: 100;
  height: 40px;
  width: 122%;
  left: 50%;
  transform: translateX(-50%);
}
.portfolioSwiper .portfolio-img {
  width: fit-content;
}
.portfolioSwiper .portfolio-img img {
  border-radius: 20px;
}

.potfolio-single {
  display: flex;
  flex: 1;
  gap: 20px;
}
@media (max-width: 767px) {
  .potfolio-single {
    flex-direction: column;
    gap: 20px;
    flex: none;
    height: auto;
  }
}

@media (max-width: 1023px) {
  .potfolio-single {
    display: grid;
  }
}
@media (max-width: 767px) {
  .potfolio-single {
    display: flex;
  }
}
.potfolio-single .block-1 {
  flex: 1;
  max-width: 420px;
}
@media (max-width: 767px) {
  .potfolio-single .block-1 {
    order: 2;
  }
}
.potfolio-single__right {
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 20px;
  max-width: 980px;
}
.potfolio-single__right h2 {
  margin: 0;
}
.potfolio-single__right .swiper {
  padding-bottom: 10px !important;
}
.potfolio-single__right .text {
  background-color: var(--bg-light-gray);
  border-radius: 20px;
  padding: 20px;
}
.potfolio-single__left .text {
  background-color: var(--bg-light-gray);
  border-radius: 20px;
  padding: 20px;
}
.potfolio-single__left img {
  border-radius: 20px;
  margin-bottom: 20px;
}
@media (max-width: 767px) {
  .potfolio-single .block-1 {
    order: 2;
  }
}
.potfolio-single .block-1 .block-2 {
  flex: 1;
}
@media (max-width: 767px) {
  .potfolio-single .block-1 .block-2 {
    order: 1;
  }
}
.potfolio-single .block-1 .block-2 .block-3 {
  flex: 1;
}
@media (max-width: 767px) {
  .potfolio-single .block-1 .block-2 .block-3 {
    order: 3;
  }
}

.section-license-listing {
  background-color: var(--bg-green);
  border-radius: var(--radius-20);
}

.license-listing__wrapper h2 {
  color: white;
}
.license-listing__wrapper .items-wrapper {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}
@media (max-width: 1023px) {
  .license-listing__wrapper .items-wrapper {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 767px) {
  .license-listing__wrapper .items-wrapper {
    grid-template-columns: 1fr;
  }
}
.license-listing__wrapper .items-wrapper .item {
  position: relative;
}
@media (max-width: 767px) {
  .license-listing__wrapper .items-wrapper .item {
    width: 100%;
  }
}
.license-listing__wrapper .items-wrapper .item .title {
  position: absolute;
  background-color: #729887;
  color: white;
  padding: 20px;
  border-radius: var(--radius-20);
  bottom: 0;
  width: 100%;
}
.license-listing__wrapper .items-wrapper img {
  border-radius: 20px;
}
@media (max-width: 767px) {
  .license-listing__wrapper .items-wrapper img {
    width: 100%;
  }
}

.expert-about {
  margin-bottom: 50px;
  margin-top: 50px;
  position: relative;
}
@media (max-width: 767px) {
  .expert-about {
    display: grid;
  }
}
.expert-about__wrapper {
  background-color: var(--bg-light-gray);
  border-radius: 20px;
  max-width: 947px;
}
@media (max-width: 767px) {
  .expert-about__wrapper {
    display: grid;
    order: 2;
  }
}
.expert-about__wrapper img {
  float: left;
}
@media (max-width: 767px) {
  .expert-about__wrapper img {
    width: 50px;
  }
}
.expert-about__title {
  display: grid;
}
.expert-about__title .name {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 20px;
  margin-top: 22px;
  margin-bottom: 22px;
}
.expert-about__title .name h2 {
  padding: 0;
  margin: 0;
}
.expert-about__title .name hr {
  border: none;
  height: 1px;
  width: 100%;
  background-color: var(--bg-light-gray);
}
.expert-about__title .position {
  background-color: #729887;
  color: white;
  padding: 10px;
  border-radius: 20px 0 0 20px;
}
.expert-about__des {
  padding: 40px;
}
.expert-about__photo img {
  border-radius: 20px;
  width: 453px;
  position: sticky;
  top: 100px;
  z-index: 90;
}
@media (max-width: 767px) {
  .expert-about__photo img {
    order: 1;
  }
}

.contact {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 30px;
}
@media (max-width: 767px) {
  .contact {
    grid-template-columns: 1fr;
  }
}
.contact .contact-column {
  background-color: var(--bg-light-gray);
  border-radius: var(--radius-20);
  padding: 30px;
  display: grid;
  gap: 15px;
}
@media (max-width: 767px) {
  .contact .contact-column {
    max-width: 100%;
  }
}
.contact .contact-column .title {
  margin-bottom: 10px;
}
.contact .contact-column .item {
  font-weight: 700;
  font-size: clamp(18px, 1.4792899408vw, 20px);
}
.contact .contact-column .jur p {
  font-weight: 400;
  margin-bottom: 5px;
}
.contact .map {
  margin-bottom: 30px;
}
.contact .map iframe {
  border-radius: 20px;
}
.contact .form {
  background-color: var(--bg-light-green);
  padding: 30px;
  border-radius: var(--radius-20);
  color: white;
}
.contact .form .title {
  font-weight: 700;
  font-size: clamp(22px, 2.0710059172vw, 28px);
  margin-bottom: 20px;
}
.contact .base-form {
  display: flex;
  flex-wrap: wrap;
  column-gap: 30px;
}
.contact .base-form input, .contact .base-form button {
  flex-grow: 1;
  height: 53px;
}
.contact .base-form .agreement input {
  flex-grow: 0;
  height: auto;
}
.contact .base-form button {
  padding: 0;
}
.contact .agreement {
  flex-basis: 100%;
}

.section-breadcrumbs {
  padding-bottom: 20px;
}

.breadcrumbs ul {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}
.breadcrumbs ul .active {
  color: #DD644F;
}
.breadcrumbs ul .item-li {
  color: var(--black-font);
}
.subservices-section {
  background-color: var(--bg-light-gray);
}

.subservices {
  display: grid;
}
.subservices h2 {
  margin-top: 20px;
}
.subservices__wrapper {
  background-color: white;
  padding: 20px;
  border-radius: 20px;
}
.subservices__wrapper .listing-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
  font-size: clamp(14px, 1.1834319527vw, 16px);
}
@media (max-width: 1023px) {
  .subservices__wrapper .listing-container {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 767px) {
  .subservices__wrapper .listing-container {
    grid-template-columns: 1fr;
  }
}
.subservices__wrapper .tpl-service-item {
  display: flex;
  gap: 10px;
  padding: 10px;
  padding-inline: 20px;
  border-radius: 20px;
  background-color: var(--bg-light-gray);
  max-width: 455px;
  align-items: center;
  justify-content: space-between;
  min-height: 68px;
}
@media (max-width: 1023px) {
  .subservices__wrapper .tpl-service-item {
    display: grid;
  }
}
.subservices__wrapper a {
  color: var(--gray-font);
  text-decoration: underline;
}
.subservices__wrapper .tpl-service-item__price {
  border: 1px solid var(--bg-green);
  border-radius: 5px;
  background-color: white;
  height: max-content;
  padding-inline: 10px;
}
.subservices__wrapper .tpl-service-item__title {
  max-width: 250px;
}

.uniswiper-container .uniswiper {
  width: 100%;
  position: relative;
  padding-bottom: 100px !important;
}
.uniswiper-container .uniswiper .btn-wrapper {
  position: absolute;
  bottom: 30px;
  z-index: 100;
  height: 40px;
  width: 120px;
  left: 50%;
  transform: translateX(-50%);
}
.uniswiper-container .uniswiper .btn-wrapper img {
  width: 40px;
  height: 40px;
}

.expert-text {
  display: grid;
  justify-items: center;
}
.expert-text a {
  color: black;
  text-decoration: underline;
}
.expert-text button {
  display: flex;
  gap: 10px;
  align-items: center;
  max-width: fit-content;
}
.expert-text button img {
  height: 8px;
}

.expert-text {
  overflow-x: auto;
}
.expert-text table {
  width: 100%;
  border-collapse: collapse;
  font-family: "Segoe UI", Roboto, "Helvetica Neue", sans-serif;
  font-size: 15px;
  background-color: #ffffff;
  color: #1e293b;
  border-radius: 16px;
  overflow: hidden;
  margin: 1.25rem 0;
}
.expert-text table thead tr {
  background-color: #f8fafc;
  border-bottom: 1px solid #e2e8f0;
}
.expert-text table thead th {
  padding: 14px 16px;
  text-align: left;
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.3px;
  text-transform: uppercase;
  color: #334155;
  background-color: #f9f9fc;
}
.expert-text table tbody tr:nth-child(even) {
  background-color: #fdfdfe;
}
.expert-text table tbody tr:hover {
  background-color: #f1f5f9;
  transition: background 0.2s ease;
}
.expert-text table tbody tr:last-child td {
  border-bottom: none;
}
.expert-text table tbody td {
  padding: 12px 16px;
  border-bottom: 1px solid #edf2f7;
  vertical-align: top;
}
.expert-text table th:first-child, .expert-text table td:first-child {
  padding-left: 20px;
}
.expert-text table th:last-child, .expert-text table td:last-child {
  padding-right: 20px;
}
.expert-text table table {
  margin: 0;
  background-color: #fafcff;
}
.expert-text table table td {
  padding: 8px 12px;
  font-size: 0.85rem;
}
.expert-text table.compact {
  font-size: 0.85rem;
}
.expert-text table.compact th, .expert-text table.compact td {
  padding: 8px 12px;
}
@media (min-width: 768px) {
  .expert-text {
    overflow-x: visible;
  }
  .expert-text table {
    min-width: auto;
  }
}

@media (max-width: 767px) {
  .expert-text__body table {
    display: block;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    width: max-content;
    min-width: 100%;
  }
}
/* Горизонтальная прокрутка для всех таблиц внутри контейнера */
.container.expert-text table {
  display: block;
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  white-space: nowrap;
}

/* Для сохранения читаемости — разрешаем перенос в длинных ячейках */
.container.expert-text table td,
.container.expert-text table th {
  white-space: normal;
  word-break: break-word;
}

/* Опционально: минимальная ширина, чтобы прокрутка появлялась раньше */
@media (max-width: 768px) {
  .container.expert-text table {
    white-space: nowrap;
  }
  /* Фикс для Firefox */
  .container.expert-text table {
    scrollbar-width: thin;
  }
}
.articles-cat {
  display: flex;
}
@media (max-width: 767px) {
  .articles-cat {
    display: grid;
  }
}
.articles-cat__wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
}
@media (max-width: 767px) {
  .articles-cat__wrapper {
    grid-template-columns: 1fr;
  }
}
.articles-cat .tpl-article {
  background-color: var(--bg-light-gray);
}

.to-top-btn {
  position: fixed;
  bottom: 20px;
  left: 20px;
  z-index: 1000;
}
@media (max-width: 767px) {
  .to-top-btn img {
    max-width: 45%;
  }
}

.btn-phone {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1000;
}
@media (max-width: 767px) {
  .btn-phone {
    right: -15px;
  }
  .btn-phone img {
    max-width: 45%;
  }
}

.page-404 {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 100px;
}
@media (max-width: 767px) {
  .page-404 {
    display: grid;
  }
}
.page-404__text {
  font-weight: 700;
  font-size: clamp(21px, 2.0710059172vw, 28px);
  text-align: center;
  color: black;
}
.page-404__text button {
  margin-top: 30px;
  font-size: clamp(16px, 1.1834319527vw, 16px);
  max-width: fit-content;
  padding-inline: 30px;
}
.page-404 .error {
  color: #DD644F;
}

.modal-content {
  max-width: 420px;
  padding: 15px;
}

.modal-body__title {
  font-weight: 700;
  font-size: 28px;
  color: black;
  line-height: normal;
  margin-bottom: 20px;
}
.modal-body p {
  color: black;
}
.modal-body input {
  background-color: var(--bg-light-gray);
  color: grey;
}
.modal-body button {
  color: white;
}
.modal-body a {
  color: var(--bg-light-green);
}
.modal-body .agreement {
  display: flex;
  justify-content: start;
  align-items: self-start;
  gap: 10px;
}
.modal-body .agreement input {
  margin-top: 5px;
}

.search-container {
  background-color: var(--bg-light-gray);
  border-radius: 20px;
  padding: 30px;
}
.search-container a {
  color: black;
  text-decoration: underline;
}

.simplesearch-result {
  border: 1px solid #ccc;
  margin-bottom: 10px;
  border-radius: 20px;
  padding: 10px;
  background-color: white;
}
.simplesearch-result .extract {
  margin-left: 20px;
}
.simplesearch-result .extract h1 {
  font-size: 20px;
}
.simplesearch-result .extract p {
  font-size: clamp(18px, 1.3313609467vw, 18px);
  margin-bottom: 0;
}
.simplesearch-result .parent-name {
  background-color: var(--bg-light-green);
  text-align: center;
  border-radius: 20px;
  padding-inline: 7px;
  color: white;
  width: fit-content;
}

.services__wrapper {
  /* Для красоты - стилизация скроллбара (опционально) */
}
.services__wrapper .modal-body::-webkit-scrollbar {
  width: 6px;
}
.services__wrapper .modal-body::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 10px;
}
.services__wrapper .modal-body::-webkit-scrollbar-thumb {
  background: #888;
  border-radius: 10px;
}
.services__wrapper .modal-body::-webkit-scrollbar-thumb:hover {
  background: #555;
}

.modal-content {
  max-width: fit-content;
}
.modal-content .modal-body {
  max-height: 80vh;
  overflow-y: auto;
  padding-right: 15px;
  max-width: fit-content;
}
.modal-content .modal-body .modal-listing {
  display: grid;
  gap: 10px;
  padding: 20px;
  width: max-content;
  border: 5px solid var(--bg-light-gray);
  border-radius: 20px 20px 0 0;
  background-color: white;
  border-bottom: none;
}
.modal-content .modal-content-btn {
  padding-inline: 20px;
  margin-top: 10px;
}
.modal-content .modal-content-btn .modal-close {
  position: static;
  background-color: var(--bg-red);
  color: white;
  border: none;
  border-radius: 10px;
  padding-inline: 20px;
  padding-block: 15px;
  text-wrap: nowrap;
  max-height: max-content;
  text-align: center;
  text-transform: uppercase;
  cursor: pointer;
  font-size: 16px;
  width: 100%;
  display: block;
}

.show-listing-btn {
  border: 1px solid black;
  border-radius: 10px;
  padding-inline: 20px;
  padding-block: 15px;
  text-wrap: nowrap;
  max-height: max-content;
  text-align: center;
  text-transform: uppercase;
  cursor: pointer;
}

.thank .right {
  display: grid;
  align-items: center;
}

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