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

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

/**
   Убираем внешние отступы body и двум другим тегам,
   у которых есть атрибут class
  */
body,
:where(blockquote, figure):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]) {
  margin-left: 0;
  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,
:has(:target) {
  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;
  }
}
@font-face {
  font-family: "Gilroy";
  src: url("../fonts/Gilroy-Black.woff2") format("woff2");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Gilroy";
  src: url("../fonts/Gilroy-BlackItalic.woff2") format("woff2");
  font-weight: 900;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Gilroy";
  src: url("../fonts/Gilroy-BoldItalic.woff2") format("woff2");
  font-weight: bold;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Gilroy";
  src: url("../fonts/Gilroy-Bold.woff2") format("woff2");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Gilroy";
  src: url("../fonts/Gilroy-ExtraBold.woff2") format("woff2");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Gilroy";
  src: url("../fonts/Gilroy-ExtraBoldItalic.woff2") format("woff2");
  font-weight: bold;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Gilroy";
  src: url("../fonts/Gilroy-UltraLight.woff2") format("woff2");
  font-weight: 200;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Gilroy";
  src: url("../fonts/Gilroy-HeavyItalic.woff2") format("woff2");
  font-weight: 900;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Gilroy";
  src: url("../fonts/Gilroy-LightItalic.woff2") format("woff2");
  font-weight: 300;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Gilroy";
  src: url("../fonts/Gilroy-SemiBold.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Gilroy";
  src: url("../fonts/Gilroy-Thin.woff2") format("woff2");
  font-weight: 100;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Gilroy";
  src: url("Gilroy-Medium.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Gilroy";
  src: url("../fonts/Gilroy-Heavy.woff2") format("woff2");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Gilroy";
  src: url("../fonts/Gilroy-UltraLightItalic.woff2") format("woff2");
  font-weight: 200;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Gilroy-RegularItalic";
  src: url("../fonts/Gilroy-RegularItalic.woff2") format("woff2");
  font-weight: normal;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Gilroy";
  src: url("../fonts/Gilroy-SemiBoldItalic.woff2") format("woff2");
  font-weight: 600;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Gilroy";
  src: url("../fonts/Gilroy-Regular.woff2") format("woff2");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Gilroy";
  src: url("../fonts/Gilroy-Light.woff2") format("woff2");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Gilroy";
  src: url("../fonts/Gilroy-MediumItalic.woff2") format("woff2");
  font-weight: 500;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Gilroy";
  src: url("../fonts/Gilroy-ThinItalic.woff2") format("woff2");
  font-weight: 100;
  font-style: italic;
  font-display: swap;
}
:root {
  --color-white: #ffffff;
  --color-black: #000000;
  --color-gray-0: #151515;
  --color-gray-10: #f1f1ff;
  --color-green: #26d044;
  --color-green-darken: #25b23d;
  --color-blue-darken: #2f2d9a;
  --color-yellow-darken: #cae700;
  --color-red: #ff5500;
  --primary-color: #007bff;
  --success-color: #28a745;
  --error-color: #dc3545;
  --text-color: #333;
  --bg-light: #fefefe;
  --border-color: #ccc;
  --font-family-base: "Gilroy", sans-serif;
  --container-width: 73.125rem;
  --container-padding-x: 0.9375rem;
  --transition-duration: 0.2s;
  --z-index-burger-menu: 1000;
  --z-index-services: 3;
}

.container {
  max-width: calc(var(--container-width) + var(--container-padding-x) * 2);
  margin: 0 auto;
  padding: 0 var(--container-padding-x);
}

.visual-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  margin: -1px !important;
  border: 0 !important;
  padding: 0 !important;
  white-space: nowrap !important;
  clip-path: inset(100%) !important;
  clip: rect(0 0 0 0) !important;
  overflow: hidden !important;
}

@media (width <= 47.99875rem) {
  .hidden-mobile {
    display: none !important;
  }
}

@media (width > 47.99875rem) {
  .visible-mobile {
    display: none !important;
  }
}

html.is-lock {
  overflow: hidden;
}

body {
  font-size: clamp(0.875rem, 0.8431372549rem + 0.1307189542vw, 1rem);
  font-family: var(--font-family-base);
  color: var(--color-gray-0);
  background-color: var(--color-white);
}

h1,
.h1,
h2,
.h2,
h3,
.h3,
h4,
.h4,
h5,
.h5,
h6,
.h6 {
  color: var(--color-gray-0);
  font-weight: 600;
}

h1,
.h1 {
  font-size: clamp(1.75rem, 1.5269607843rem + 0.9150326797vw, 2.625rem);
  line-height: 1.2;
}

h2,
.h2 {
  font-size: clamp(1.5rem, 1.1176470588rem + 1.568627451vw, 3rem);
  line-height: 1.2;
}

a,
button,
label,
input,
textarea,
select,
svg * {
  transition-duration: var(--transition-duration);
}

a {
  color: inherit;
}
@media (any-hover: hover) {
  a:hover {
    color: var(--color-yellow-darken);
  }
}
@media (any-hover: none) {
  a:active {
    color: var(--color-yellow-darken);
  }
}
a[class] {
  text-decoration: none;
}

:focus-visible {
  outline: 0.125rem dashed var(--color-blue-darken);
  outline-offset: 0.25rem;
  transition-duration: 0s !important;
}

.logo {
  max-width: clamp(7.5rem, 4.7916666667rem + 11.1111111111vw, 18.125rem);
}
.logo-text {
  font-size: clamp(0.625rem, 0.4975490196rem + 0.522875817vw, 1.125rem);
  font-weight: bold;
  color: var(--color-white);
  text-decoration: none;
  white-space: nowrap;
  margin-left: 0.5rem;
  margin-top: 0.125rem;
}
@media (width <= 47.99875rem) {
  .logo-text {
    display: none;
  }
}
.logo-text > span {
  display: block;
  font-weight: 400;
  font-size: clamp(0.625rem, 0.625rem + 0vw, 0.625rem);
  line-height: 0.75rem;
}
@media (width <= 47.99875rem) {
  .logo-text > span {
    font-size: clamp(0.75rem, 0.7181372549rem + 0.1307189542vw, 0.875rem);
  }
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.875rem 1.5rem;
  font-weight: bold;
  text-align: center;
  text-decoration: none;
  color: var(--color-white);
  background-color: var(--color-blue-darken);
  border-radius: 0.625rem;
  transition-duration: var(--transition-duration);
}
.button.is-active {
  background-color: var(--color-yellow-darken);
  color: var(--color-black);
}
.button:hover {
  background-color: var(--color-yellow-darken);
  color: var(--color-black);
}

.top-block {
  margin-top: 9.375rem;
}
@media (width <= 47.99875rem) {
  .top-block {
    margin-top: 0;
  }
}
.top-block-navigation {
  position: absolute;
  top: 85px;
  width: 100%;
  left: 0;
  z-index: 2;
}
@media (width <= 62.06125rem) {
  .top-block-navigation {
    margin-top: 0;
  }
}
@media (width <= 47.99875rem) {
  .top-block-navigation {
    display: none;
  }
}
.top-block-navigation-container {
  max-width: 1170px;
  position: relative;
  width: 100%;
  margin: auto;
  box-sizing: border-box;
  padding: 0 15px;
}
.top-block-navigation-list {
  margin: 20px 0 0 0;
  display: inline-block;
}
.top-block-navigation-list__item {
  white-space: nowrap;
  line-height: 140%;
  vertical-align: middle;
  margin: 7px 8px 0 0;
  display: inline-block;
}
.top-block-navigation-list__item a {
  border-bottom: none;
  color: #808080;
  text-decoration: none;
  padding-right: 10px;
  position: relative;
  display: inline-block;
  font-size: 14px;
  line-height: 16px;
}
.top-block-navigation-list__item a::before {
  background: #fff;
  content: "";
  position: absolute;
  display: block;
  height: 1px;
  right: 0;
  bottom: 0;
  width: 0;
  -webkit-transition: width 0.3s cubic-bezier(0.47, 0, 0.745, 0.715);
  transition: width 0.3s cubic-bezier(0.47, 0, 0.745, 0.715);
}
.top-block-navigation-list__item a:hover::before {
  width: calc(100% - 10px);
  -webkit-transition: width 0.3s cubic-bezier(0.29, 0.18, 0.26, 0.83);
  transition: width 0.3s cubic-bezier(0.29, 0.18, 0.26, 0.83);
  left: 0;
}
.top-block-navigation-list__item a::after {
  content: "";
  background: #cae700;
  position: absolute;
  width: 3px;
  height: 3px;
  top: 50%;
  right: -5px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
}
.top-block-navigation-list__item span {
  font-size: 14px;
  line-height: 16px;
}
.top-block-container {
  display: flex;
  flex-flow: column;
  justify-content: center;
  width: 100%;
}
.top-block-inner {
  padding: 0 0.9375rem 1.5625rem 0.9375rem;
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
  color: #151515;
}
@media (width <= 47.99875rem) {
  .top-block-inner {
    padding: 0 0.9375rem;
    margin: 6.25rem 0 0;
  }
}

.contacts {
  padding: 60px 0;
  display: flex;
}
@media (width <= 47.99875rem) {
  .contacts {
    margin: 0 30px 0;
    padding: 20px 0;
  }
}
.contacts-container {
  max-width: 1170px;
  position: relative;
  width: 100%;
  margin: auto;
  box-sizing: border-box;
  padding: 0 15px;
}
.contacts-container-block {
  display: flex;
  flex-flow: row wrap;
  padding: 20px 68px 64px;
  background: #ffffff;
  box-shadow: 10px 10px 25px rgba(0, 0, 0, 0.08);
  border-radius: 30px;
  box-sizing: border-box;
}
@media (width <= 47.99875rem) {
  .contacts-container-block {
    padding: 0.625rem 34px 38px;
  }
}
.contacts-container-block__title {
  width: 100%;
}
.contacts-container-block__left {
  width: 50%;
  margin-top: 55px;
}
@media (width <= 47.99875rem) {
  .contacts-container-block__left {
    width: 100%;
    margin-top: 30px;
  }
}
.contacts-container-block__right {
  width: 50%;
  margin-top: 55px;
  border-left: 1px solid #bdbdbd;
  padding-left: 68px;
}
@media (width <= 47.99875rem) {
  .contacts-container-block__right {
    border-left: none;
    padding-left: 0;
    width: 100%;
    margin-top: 30px;
  }
}
.contacts-container-block__right .phone {
  text-decoration: none;
  color: #2f2d9a;
  margin: 1.25rem 0;
}
.contacts-container-block__right .phone a {
  text-decoration: none;
}
.contacts-container-block__right .email {
  font-weight: bold;
  font-size: 20px;
  line-height: 24px;
  text-decoration: none;
  color: #2f2d9a;
}
.contacts-container-block__right .email a {
  text-decoration: none;
}

.burger-button {
  width: 2.5rem;
  height: 2.5rem;
  display: inline-flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 0.5rem 0.25rem;
  background-color: transparent;
  border: none;
}
.burger-button.is-active .burger-button__line:nth-child(1) {
  rotate: 45deg;
  transform-origin: 0;
  translate: 0.3em 0;
}
.burger-button.is-active .burger-button__line:nth-child(2) {
  rotate: -45deg;
}
.burger-button.is-active .burger-button__line:nth-child(3) {
  width: 0;
}
.burger-button__line {
  width: 100%;
  height: 0.1875rem;
  background-color: var(--color-white);
  border-radius: 0.1875rem;
  transition-duration: var(--transition-duration);
}

.dropdown-button {
  width: 1.875rem;
  height: 1.875rem;
  display: inline-flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 0.5rem 0.25rem;
  background-color: transparent;
  border: none;
}
.dropdown-button.is-active .dropdown-button__line:nth-child(1) {
  rotate: 45deg;
  transform-origin: 0;
  translate: 0.3em 0;
}
.dropdown-button.is-active .dropdown-button__line:nth-child(2) {
  rotate: -45deg;
}
.dropdown-button.is-active .dropdown-button__line:nth-child(3) {
  width: 0;
}
.dropdown-button__line {
  width: 100%;
  height: 0.125rem;
  background-color: var(--color-white);
  border-radius: 0.125rem;
  transition-duration: var(--transition-duration);
}

.header__body {
  background-color: var(--color-blue-darken);
  position: fixed;
  z-index: 200;
  width: 100%;
  top: 0;
  left: 0;
}
.header__body-inner {
  height: 4.375rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  column-gap: 1rem;
}
.header__communication {
  visibility: hidden;
  align-items: center;
}
@media (width <= 47.99875rem) {
  .header__communication {
    visibility: visible;
    display: flex;
    flex-direction: row;
    gap: 0.5rem;
  }
}
.header__communication .phone {
  width: 40px;
  height: 40px;
  background: url(../images/phone.svg);
  background-size: 100%;
}
.header__communication .viber {
  width: 44px;
  height: 44px;
  background: url(../images/viber.svg);
  background-size: 94%;
  background-repeat: no-repeat;
  margin-left: 0.125rem;
}
.header__communication .mail {
  border: none;
  width: 40px;
  height: 40px;
  background: url(../images/email.svg);
  background-size: 100%;
}
@media (width > 47.99875rem) {
  .header__overlay {
    display: contents;
  }
}
@media (width <= 47.99875rem) {
  .header__overlay {
    position: fixed;
    inset: 4.375rem 0 0 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    row-gap: 0.1875rem;
    padding: 1rem;
    background-color: var(--color-blue-darken);
    transition-duration: var(--transition-duration);
    z-index: var(--z-index-burger-menu);
  }
  .header__overlay:not(.is-active) {
    opacity: 0;
    visibility: hidden;
    translate: -100%;
  }
}
.header__menu-list {
  display: flex;
  align-items: center;
  column-gap: 1rem;
}
@media (width <= 47.99875rem) {
  .header__menu-list {
    flex-direction: column;
  }
}
.header__menu-link {
  color: var(--color-white);
  font-size: 1rem;
  padding: 0.875rem 1rem;
  font-weight: bold;
}
@media (width <= 62.06125rem) {
  .header__menu-link {
    font-size: 0.875rem;
    padding: 0.375rem 0.125rem;
  }
}
@media (width <= 47.99875rem) {
  .header__menu-link {
    padding: 0.625rem 1rem;
    font-size: 1.5rem;
  }
}
.header__menu-link.is-active {
  color: var(--color-yellow-darken);
}
.header__menu-link:hover {
  color: var(--color-yellow-darken);
}
@media (hover: none) {
  .header__menu-link:hover {
    color: inherit;
  }
}
.header__menu-item.dropdown {
  height: 100%;
  display: flex;
  align-items: center;
  column-gap: 0.25rem;
  cursor: pointer;
  padding: 0.875rem 1rem;
  color: var(--color-white);
  position: relative;
}
@media (width <= 62.06125rem) {
  .header__menu-item.dropdown {
    padding: 0.375rem 0.125rem;
  }
}
@media (width <= 47.99875rem) {
  .header__menu-item.dropdown {
    flex-direction: column;
  }
}
.header__menu-item.dropdown:hover {
  color: var(--color-yellow-darken);
}
.header__menu-item.dropdown:hover .dropdown-button__line {
  background-color: var(--color-yellow-darken);
}
.header__menu-item.dropdown.is-active .header__menu-dropdown-list {
  display: block;
}
.header__menu-dropdown-text {
  font-size: 0.9375rem;
  font-weight: bold;
  transition-duration: var(--transition-duration);
}
@media (width <= 47.99875rem) {
  .header__menu-dropdown-text {
    font-size: 1.5rem;
    font-weight: bold;
  }
}
.header__menu-dropdown-list {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--color-white);
  z-index: 10;
}
@media (width <= 47.99875rem) {
  .header__menu-dropdown-list {
    position: relative;
    display: block;
    background: none;
    text-align: center;
  }
}
.header__menu-dropdown-list li {
  padding: 0.5rem 1rem;
}
.header__menu-dropdown-list li:hover {
  background-color: var(--color-yellow-darken);
  transition-duration: var(--transition-duration);
}
@media (width <= 47.99875rem) {
  .header__menu-dropdown-list li:hover {
    background: none;
  }
}
.header__menu-dropdown-list li.is-active {
  background-color: var(--color-yellow-darken);
}
@media (width <= 47.99875rem) {
  .header__menu-dropdown-list li.is-active {
    color: var(--color-yellow-darken);
    background: none;
  }
  .header__menu-dropdown-list li.is-active a {
    color: var(--color-yellow-darken);
  }
}
.header__menu-dropdown-list a {
  color: var(--color-gray-0);
  padding: 0.875rem 1rem;
  white-space: nowrap;
  text-decoration: none;
}
@media (width <= 47.99875rem) {
  .header__menu-dropdown-list a {
    font-size: 1rem;
    line-height: 150%;
    color: var(--color-white);
  }
}
.header__phone {
  color: var(--color-white);
  font-size: 1.125rem;
  font-weight: bold;
  text-decoration: none;
}
.header__phone a:hover {
  color: inherit;
}
@media (width <= 47.99875rem) {
  .header__phone {
    text-align: center;
    font-size: 1.5rem;
    padding: 0.875rem 1rem;
    font-weight: bold;
    color: var(--color-gray-0);
    background-color: var(--color-yellow-darken);
    border-radius: 0.625rem;
    margin-top: 0.9375rem;
  }
}

.price {
  display: flex;
  margin: 60px 0;
  padding-top: 200px;
  margin-top: 0 !important;
}
@media (width <= 47.99875rem) {
  .price {
    padding-top: 240px;
    margin-top: 0 !important;
  }
}
.price.compact {
  margin: 3.75rem 0;
  padding-top: 0;
}
@media (width <= 47.99875rem) {
  .price.compact {
    margin-top: -4.375rem;
    padding-top: 17.5rem;
  }
}
.price-block {
  padding: 0 15px;
}
.price-block h2 {
  text-align: center;
}
.price-block p {
  margin: 1.25rem 0;
  text-align: center;
}
.price-block p .content-callback-btn {
  background: #2f2d9a;
  border-radius: 20px;
  color: #fff;
  cursor: pointer;
  transition: background-color 0.5s, color 0.5s;
  border: none;
  font-weight: bold;
  font-size: 16px;
  line-height: 19px;
  white-space: nowrap;
  text-decoration: none;
  padding: 20px 55px;
  display: inline-block;
}
@media (width <= 62.06125rem) {
  .price-block p .content-callback-btn {
    width: 100%;
    text-align: center;
    margin-top: 20px;
  }
}
.price-block p .content-callback-btn:hover {
  background: #cae700;
  color: #151515;
}
.price-block-table table {
  border: none;
  font-size: 16px;
  line-height: 175%;
}
@media (width <= 47.99875rem) {
  .price-block-table table {
    font-size: 14px;
    border-collapse: collapse;
  }
}
.price-block-table table tr {
  border: none;
  border-bottom: 1px solid #bdbdbd;
}
.price-block-table table tr:hover {
  background: #faffd8;
}
.price-block-table table td {
  border-bottom: 1px solid #bdbdbd;
  padding: 13px 20px 9px 24px;
}
.price-block-table table td,
.price-block-table table th {
  border: none;
}
.price-block-table table th {
  background: #000000;
  padding: 13px 20px 9px 24px;
  font-weight: bold;
  font-size: 20px;
  line-height: 175%;
  color: #fff;
  text-align: left;
}
@media (width <= 47.99875rem) {
  .price-block-table table th,
  .price-block-table table td {
    padding: 12px 5px 13px 10px;
  }
  .price-block-table table th:last-child,
  .price-block-table table td:last-child {
    display: none;
  }
  .price-block-table table th {
    font-size: 14px;
    border-collapse: collapse;
  }
  .price-block-table table th:first-child {
    border-radius: 5px 0 0 5px;
  }
  .price-block-table table th:nth-child(2) {
    border-radius: 0 5px 5px 0;
  }
  .price-block-table table td:first-child,
  .price-block-table table th:first-child {
    width: 50%;
  }
  .price-block-table table td:nth-child(2),
  .price-block-table table th:nth-child(2) {
    width: 50%;
  }
}
.price-block-table table th:first-child {
  border-radius: 10px 0 0 10px;
  border-right: 1px solid #fff;
}
.price-block-table table td:first-child,
.price-block-table table th:first-child {
  width: 45%;
}
.price-block-table table td:nth-child(2),
.price-block-table table th:nth-child(2) {
  width: 20%;
}
.price-block-table table td:nth-child(2) {
  font-weight: bold;
  white-space: nowrap;
}
.price-block-table table th:last-child {
  border-radius: 0 10px 10px 0;
  border-left: 1px solid #fff;
}
@media (width <= 62.06125rem) {
  .price-block-table table td:first-child,
  .price-block-table table th:first-child {
    width: 37%;
  }
}
@media (width <= 47.99875rem) {
  .price-block-table table th:first-child {
    border-radius: 5px 0 0 5px;
  }
  .price-block-table table td:first-child,
  .price-block-table table th:first-child {
    width: 50%;
  }
  .price-block-table table th:nth-child(2) {
    border-radius: 0 5px 5px 0;
  }
  .price-block-table table td:nth-child(2),
  .price-block-table table th:nth-child(2) {
    width: 50%;
  }
}

.portfolio {
  display: flex;
  flex-flow: row wrap;
  width: 100%;
  padding: 70px 0;
  background: #f2f2f2;
  margin: 60px 0;
  overflow: hidden;
}
@media (width <= 47.99875rem) {
  .portfolio {
    margin: 30px 0;
  }
}
.portfolio-list {
  display: flex !important;
  flex-flow: row wrap;
  justify-content: center;
  width: 100%;
}
.portfolio-list .slick-prev,
.portfolio-list .slick-next {
  top: calc(100% + 40px);
  width: 69px;
  height: 28px;
  position: absolute;
  transform: translateY(-50%);
  cursor: pointer;
  z-index: 2;
}
.portfolio-list .slick-prev:before,
.portfolio-list .slick-next:before {
  content: "";
  width: 69px;
  height: 28px;
  background: url(../images/arrow-r.svg) center left no-repeat;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 1;
}
.portfolio-list .slick-prev:hover:before,
.portfolio-list .slick-next:hover:before {
  content: "";
  background: url(../images/arrow-r-w.svg) center left no-repeat;
}
.portfolio-list .slick-prev {
  left: 50%;
  transform: translateX(-50px);
}
.portfolio-list .slick-prev:before {
  transform: translate(-50%, -50%) rotate(180deg);
}
@media (width <= 62.06125rem) {
  .portfolio-list .slick-prev {
    left: 42%;
    transform: translateX(-40px);
  }
}
.portfolio-list .slick-next {
  left: 50%;
  transform: translateX(50px);
}
@media (width <= 62.06125rem) {
  .portfolio-list .slick-next {
    left: 42%;
    transform: translateX(40px);
    right: auto;
  }
}
.portfolio-list-item a {
  display: flex;
  align-self: flex-start;
  position: relative;
  padding: 4px;
  box-sizing: border-box;
}
.portfolio-list-item a:hover:before {
  content: "";
  position: absolute;
  width: calc(100% - 8px);
  height: calc(100% - 8px);
  background: #000;
  opacity: 0.3;
  z-index: 1;
  transform: translate(-50%, -50%) scale(0.993);
  left: 50%;
  top: 50%;
}
.portfolio-list-item a .icon_search {
  position: absolute;
  top: 50%;
  left: 50%;
  opacity: 0;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3) url(../images/search.svg) center no-repeat;
  transform: translate(-50%, -50%);
  z-index: 2;
}
.portfolio-list-item a:hover .icon_search {
  opacity: 1;
}
.portfolio-list-item a .icon_play {
  position: absolute;
  top: 50%;
  left: 50%;
  opacity: 1;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3) url(../images/play.svg) center no-repeat;
  transform: translate(-50%, -50%);
  z-index: 2;
}
.portfolio-list-item img {
  height: 380px;
}
.portfolio-content {
  display: flex;
  flex-flow: row wrap;
  width: 70%;
  margin: auto;
}
.portfolio-content > div:last-child,
.portfolio-content .GrayBlock2 > div:nth-last-child(2) {
  order: 3;
}
@media (width <= 62.06125rem) {
  .portfolio-content {
    padding: 20px 0;
  }
}
@media (width <= 47.99875rem) {
  .portfolio-content {
    padding: 0;
    width: 100%;
  }
}
.portfolio-content-text {
  margin-top: 80px;
  width: 100%;
}
@media (width <= 47.99875rem) {
  .portfolio-content-text {
    width: 100%;
    order: 2;
    padding: 0 15px;
  }
}
.portfolio-content-text__text {
  font-size: 16px;
  line-height: 175%;
}

.banner-main {
  height: 35rem;
  display: flex;
  color: var(--color-white);
  position: relative;
  width: 100%;
  background-size: cover !important;
}
@media (width <= 47.99875rem) {
  .banner-main {
    margin-top: 0;
    height: auto;
    margin-bottom: 4.375rem;
  }
}
.banner-main-navigation {
  position: absolute;
  top: 80px;
  width: 100%;
  left: 0;
  z-index: 2;
}
@media (width <= 62.06125rem) {
  .banner-main-navigation {
    margin-top: 0;
  }
}
@media (width <= 47.99875rem) {
  .banner-main-navigation {
    display: none;
  }
}
.banner-main-navigation-container {
  max-width: 1170px;
  position: relative;
  width: 100%;
  margin: auto;
  box-sizing: border-box;
  padding: 0 15px;
}
.banner-main-navigation-list {
  margin: 20px 0 0 0;
  display: inline-block;
}
.banner-main-navigation-list__item {
  white-space: nowrap;
  line-height: 140%;
  vertical-align: middle;
  margin: 7px 8px 0 0;
  display: inline-block;
}
.banner-main-navigation-list__item a {
  border-bottom: none;
  color: #fff;
  text-decoration: none;
  padding-right: 10px;
  position: relative;
  display: inline-block;
  font-size: 14px;
  line-height: 16px;
}
.banner-main-navigation-list__item a::before {
  background: #fff;
  content: "";
  position: absolute;
  display: block;
  height: 1px;
  right: 0;
  bottom: 0;
  width: 0;
  -webkit-transition: width 0.3s cubic-bezier(0.47, 0, 0.745, 0.715);
  transition: width 0.3s cubic-bezier(0.47, 0, 0.745, 0.715);
}
.banner-main-navigation-list__item a:hover::before {
  width: calc(100% - 10px);
  -webkit-transition: width 0.3s cubic-bezier(0.29, 0.18, 0.26, 0.83);
  transition: width 0.3s cubic-bezier(0.29, 0.18, 0.26, 0.83);
  left: 0;
}
.banner-main-navigation-list__item a::after {
  content: "";
  background: #cae700;
  position: absolute;
  width: 3px;
  height: 3px;
  top: 50%;
  right: -5px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
}
.banner-main-navigation-list__item span {
  font-size: 14px;
  line-height: 16px;
}
.banner-main-container {
  display: flex;
  flex-flow: column;
  justify-content: center;
  width: 100%;
}
.banner-main-inner {
  padding: 0 0.9375rem 1.5625rem 0.9375rem;
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
}
@media (width <= 47.99875rem) {
  .banner-main-inner {
    padding: 0 0.9375rem;
    margin: 6.25rem 0 3.125rem;
  }
}
.banner-main-left {
  width: calc(100% - 22.8125rem);
}
@media (width <= 47.99875rem) {
  .banner-main-left {
    width: 100%;
  }
}
.banner-main-left h1 {
  color: var(--color-white);
}
.banner-main-left .adv-list {
  display: flex;
  flex-flow: row wrap;
}
@media (width <= 47.99875rem) {
  .banner-main-left .adv-list {
    justify-content: center;
  }
}
.banner-main-left .adv-item {
  display: flex;
  align-items: center;
  padding-right: 1.4375rem;
  width: 33.33%;
}
@media (width <= 47.99875rem) {
  .banner-main-left .adv-item {
    display: flex;
    align-items: center;
    padding-right: 1.0625rem;
    width: 50%;
  }
}
.banner-main-left .adv-item-img {
  min-width: 50px;
  min-height: 50px;
  max-width: 50px;
  max-height: 50px;
  background: rgba(255, 255, 255, 0.2);
  border: 2px solid #cae700;
  border-radius: 50%;
  text-align: center;
  padding: 0.75rem;
}
@media (width <= 47.99875rem) {
  .banner-main-left .adv-item-img {
    min-width: 40px;
    min-height: 40px;
    max-width: 40px;
    max-height: 40px;
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid #cae700;
    border-radius: 50%;
    text-align: center;
    padding: 0.5rem;
  }
}
.banner-main-left .adv-item-name {
  font-weight: 400;
  font-size: 1.25rem;
  line-height: 1.4375rem;
  padding-left: 0.625rem;
}
@media (width <= 47.99875rem) {
  .banner-main-left .adv-item-name {
    font-weight: 400;
    font-size: 1rem;
    line-height: 1.3125rem;
    padding-left: 0.5rem;
    width: calc(100% - 1.875rem);
  }
}

.services {
  display: flex;
  width: 100%;
  height: 0;
  position: relative;
  top: -5.625rem;
  z-index: var(--z-index-services);
}
.services-list {
  display: flex;
  flex-flow: row wrap;
  padding: 0 0.25rem;
}
.services-list-item {
  width: 33.33%;
  padding: 0.6875rem;
  display: flex;
}
@media (width <= 47.99875rem) {
  .services-list-item {
    width: 50%;
    padding: 0.3125rem;
  }
}
.services-list-item a {
  background: var(--color-white);
  box-shadow: 0.625rem 0.625rem 1.5625rem rgba(0, 0, 0, 0.08);
  border-radius: 0.3125rem;
  padding: 0 0 0 1.75rem;
  font-weight: bold;
  font-size: 1rem;
  line-height: 1.1875rem;
  color: var(--color-gray-0);
  text-decoration: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color var(--transition-duration);
  width: 100%;
  min-height: 6.25rem;
}
@media (width <= 47.99875rem) {
  .services-list-item a {
    font-size: 0.75rem;
    line-height: 0.9375rem;
    padding: 0 0 0 0.3125rem;
    min-height: 5rem;
  }
}
.services-list-item a:hover {
  background: var(--color-yellow-darken);
  box-shadow: 0.625rem 0.625rem 1.5625rem rgba(202, 231, 0, 0.34);
  transition: background-color var(--transition-duration);
}
.services-list-item a img {
  margin-bottom: auto;
  margin-left: auto;
  order: 2;
  max-width: 9.375rem;
}
@media (width <= 47.99875rem) {
  .services-list-item a img {
    max-width: 4.125rem;
  }
}
.services-list-item a > div {
  max-width: calc(100% - 9.375rem);
}
@media (width <= 47.99875rem) {
  .services-list-item a > div {
    max-width: calc(100% - 4.125rem);
  }
}

.all-services {
  display: flex;
  margin: 12.5rem 0 5rem 0;
}
@media (width <= 47.99875rem) {
  .all-services {
    margin: 12.5rem 0 2.5rem 0;
  }
}
.all-services-block {
  padding: 0 0.9375rem;
}
.all-services-block h2 {
  text-align: center;
}
.all-services-block-list {
  display: flex;
  flex-flow: row wrap;
}
.all-services-block-list-item {
  padding: 1.25rem 0.625rem;
  display: flex !important;
  width: 25%;
}
@media (width <= 62.06125rem) {
  .all-services-block-list-item {
    width: 33.33%;
  }
}
@media (width <= 47.99875rem) {
  .all-services-block-list-item {
    width: 50%;
  }
}
.all-services-block-list-item a {
  width: 100%;
  background: var(--color-white);
  box-shadow: 0.625rem 0.625rem 1.5625rem rgba(0, 0, 0, 0.08);
  border-radius: 0.3125rem;
  color: var(--color-gray-0);
  text-decoration: none;
  display: flex;
  flex-flow: row wrap;
  transition: background-color var(--transition-duration);
  justify-content: center;
}
.all-services-block-list-item a:hover {
  background: var(--color-yellow-darken);
  box-shadow: 0.625rem 0.625rem 1.5625rem rgba(202, 231, 0, 0.2);
  transition: background-color var(--transition-duration);
}
.all-services-block-list-item__img {
  width: 100%;
  border-radius: 0.3125rem;
  overflow: hidden;
}
.all-services-block-list-item__img img {
  width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}
.all-services-block-list-item__name {
  font-weight: bold;
  font-size: 1rem;
  line-height: 1.1875rem;
  padding: 1.375rem 2.3125rem 1.1875rem 2.3125rem;
  text-align: center;
}
@media (width <= 47.99875rem) {
  .all-services-block-list-item__name {
    padding: 1rem 0.625rem 0.9375rem 0.625rem;
    font-size: 0.875rem;
    line-height: 1.0625rem;
  }
}

.txtback {
  width: 100%;
  background-color: var(--color-black);
  display: flex;
  margin: 4.375rem 0;
}
@media (width <= 47.99875rem) {
  .txtback {
    margin: 2.5rem 0;
  }
}
.txtback.compact {
  margin-top: 0;
  padding-top: 9.375rem;
}
@media (width <= 62.06125rem) {
  .txtback.compact {
    padding-top: 10.625rem;
  }
}
@media (width <= 47.99875rem) {
  .txtback.compact {
    margin-top: -4.375rem;
    padding-top: 16.875rem;
  }
}
.txtback__back {
  width: 100%;
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  align-items: center;
}
.txtback__back-bg {
  width: 35%;
}
.txtback__back-bg img {
  width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}
@media (width <= 62.06125rem) {
  .txtback__back-bg img {
    width: 70%;
  }
}
@media (width <= 62.06125rem) {
  .txtback__back-bg {
    width: 100%;
    padding: 2.3125rem 1.25rem 2.3125rem 1.25rem;
    margin: 0;
  }
}
.txtback__back-block {
  width: 65%;
  color: var(--color-white);
  border-radius: 0 3.125rem;
  padding: 3.125rem 4.625rem 3.625rem 4.625rem;
  margin-left: auto;
}
.txtback__back-block .content-callback-btn {
  background: #2f2d9a;
  border-radius: 20px;
  color: #fff;
  cursor: pointer;
  transition: background-color 0.5s, color 0.5s;
  border: none;
  font-weight: bold;
  font-size: 16px;
  line-height: 19px;
  white-space: nowrap;
  text-decoration: none;
  padding: 20px 55px;
  display: inline-block;
}
@media (width <= 62.06125rem) {
  .txtback__back-block .content-callback-btn {
    width: 100%;
    text-align: center;
    margin-top: 20px;
  }
}
.txtback__back-block .content-callback-btn:hover {
  background: #cae700;
  color: #151515;
}
@media (width <= 62.06125rem) {
  .txtback__back-block {
    width: 100%;
    padding: 2.3125rem 1.25rem 2.3125rem 1.25rem;
    margin: 0;
  }
}

.objects {
  display: flex;
  width: 100%;
  margin: 3.75rem 0;
}
@media (width <= 47.99875rem) {
  .objects {
    margin: 1.875rem 0;
  }
}
.objects-block {
  padding: 0 15px;
}
.objects-block h2 {
  text-align: center;
}
.objects-block__list {
  position: relative;
  display: flex;
  flex-flow: row wrap;
  margin-top: 40px;
}
@media (width <= 47.99875rem) {
  .objects-block__list {
    flex-flow: row wrap;
  }
}
.objects-block__list-item {
  width: 50%;
  padding: 0 10px;
  position: relative;
  padding-top: 21px;
}
@media (width <= 47.99875rem) {
  .objects-block__list-item {
    padding: 15px 5px 0;
    display: flex;
  }
}
.objects-block__list-item > div {
  display: flex;
  padding: 40px 18px;
  background: #f2f2f2;
  border-radius: 5px;
  position: relative;
  z-index: 2;
  text-align: left;
  transition: background-color 0.5s, color 0.5s;
}
@media (width <= 47.99875rem) {
  .objects-block__list-item > div {
    padding: 25px 10px 25px 10px;
    width: 100%;
    box-sizing: border-box;
  }
}
.objects-block__list-item-img {
  background: #fff;
  padding: 10px;
  border-radius: 50%;
  width: 70px;
  height: 70px;
  text-align: center;
}
@media (width <= 47.99875rem) {
  .objects-block__list-item-img {
    padding: 10px;
    width: 50px;
    height: 50px;
  }
}
.objects-block__list-item-info {
  width: calc(100% - 70px);
  padding-left: 20px;
  margin: auto 0;
}
@media (width <= 47.99875rem) {
  .objects-block__list-item-info {
    width: calc(100% - 50px);
    padding-left: 5px;
    margin: auto 0;
  }
}
.objects-block__list-item-info-name {
  font-weight: bold;
  font-size: 16px;
  line-height: 19px;
}
@media (width <= 47.99875rem) {
  .objects-block__list-item-info-name {
    font-size: 12px;
    line-height: 15px;
  }
}

.banner-phone {
  padding: 3.75rem 0;
}
@media (width <= 47.99875rem) {
  .banner-phone {
    padding: 1.875rem 0;
  }
}
.banner-phone > div {
  background: var(--color-gray-0);
  color: var(--color-white);
  border-radius: 0.3125rem;
}
.banner-phone-block {
  padding: 0 0.9375rem;
  display: flex;
  flex-flow: row wrap;
}
.banner-phone-block-text {
  width: 40%;
  padding: 5.875rem 0;
  position: relative;
  left: 3.125rem;
}
@media (width <= 47.99875rem) {
  .banner-phone-block-text {
    width: 100%;
    padding: 5.625rem 0 1.875rem;
    left: 0.3125rem;
  }
}
.banner-phone-block-text h2 {
  color: var(--color-white);
}
.banner-phone-block-text .phone a {
  color: var(--color-white);
  text-decoration: none;
}
.banner-phone-block-text__txt {
  padding: 0.625rem 1.875rem 0.625rem 4.0625rem;
  position: absolute;
  left: -5rem;
  top: 3.125rem;
  font-size: 0.75rem;
  line-height: 0.875rem;
  background: #ffeb36;
  border-radius: 0rem 0.3125rem 0.3125rem 0;
  color: var(--color-black);
  margin-bottom: -0.1875rem;
}
@media (width <= 47.99875rem) {
  .banner-phone-block-text__txt {
    padding: 0.5rem 0.625rem 0.5rem 1.25rem;
    top: 1.875rem;
    left: -2.1875rem;
  }
}
.banner-phone-block-img {
  width: 60%;
  display: flex;
  position: relative;
}
@media (width <= 62.06125rem) {
  .banner-phone-block-img {
    align-items: flex-end;
  }
}
@media (width <= 47.99875rem) {
  .banner-phone-block-img {
    text-align: center;
    justify-content: center;
    width: 100%;
  }
}
.banner-phone-block-img img {
  object-fit: contain;
  margin-top: -2.5rem;
}
@media (width <= 47.99875rem) {
  .banner-phone-block-img img {
    padding: 0;
    width: 115%;
    max-width: none;
    margin-top: 0;
    margin-left: -7%;
  }
}
.banner-phone-block-img__textPhone {
  position: absolute;
  font-weight: bold;
  font-size: 1.25rem;
  line-height: 1.375rem;
  color: var(--color-black);
  left: 34%;
  top: 40%;
}
@media (width <= 62.06125rem) {
  .banner-phone-block-img__textPhone {
    font-size: 0.8125rem;
    left: 34%;
    top: 51%;
  }
}
@media (width <= 47.99875rem) {
  .banner-phone-block-img__textPhone {
    left: 44%;
    top: 48%;
    transform: translateX(-50%);
    font-size: 0.75rem;
    line-height: 0.875rem;
  }
}
.banner-phone-block-img__textPhone a {
  color: var(--color-black);
  text-decoration: none;
}
.banner-phone-block-img__iconPhone a {
  position: absolute;
  font-size: 0;
  width: 3.9375rem;
  height: 3.9375rem;
  bottom: 25%;
  background: var(--color-white) url(../images/phone-call.svg) center no-repeat;
  left: 43%;
  border-radius: 50%;
}
@media (width <= 62.06125rem) {
  .banner-phone-block-img__iconPhone a {
    bottom: 18%;
    left: 40%;
  }
}
@media (width <= 47.99875rem) {
  .banner-phone-block-img__iconPhone a {
    bottom: 24%;
    left: 44%;
    width: 2.5625rem;
    height: 2.5625rem;
    background-size: 100%;
    transform: translateX(-50%);
  }
}

.text-section {
  display: flex;
  margin: 4.375rem 0;
}
@media (width <= 47.99875rem) {
  .text-section {
    margin: 1.875rem 0;
  }
}
.text-section-block {
  width: 69%;
  margin: auto;
  padding: 0 0.9375rem;
}
@media (width <= 62.06125rem) {
  .text-section-block {
    width: 100%;
  }
}
.text-section-block-img img {
  border-radius: 0.625rem;
  width: 100%;
  margin-bottom: 1.875rem;
}

.works {
  background: #f2f2f2;
  position: relative;
  margin: 60px 0;
  padding: 65px 0;
  display: flex;
  flex-flow: row wrap;
  width: 100%;
  overflow: hidden;
  min-height: 585px;
}
@media (width <= 47.99875rem) {
  .works {
    margin: 30px 0;
    padding: 15px 0;
  }
}
.works-top {
  position: absolute;
  left: 5%;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  display: flex;
  flex-flow: row wrap;
  max-width: 30%;
}
@media (width <= 62.06125rem) {
  .works-top {
    position: relative;
    top: 0;
    transform: none;
    left: 0;
    justify-content: center;
    text-align: center;
    width: 100%;
    max-width: 100%;
  }
}
@media (width <= 47.99875rem) {
  .works-top {
    position: relative;
    top: 0;
    transform: none;
    left: 0;
    justify-content: center;
    text-align: center;
    width: 100%;
    max-width: 100%;
  }
}
.works-top h2 {
  width: 100%;
}
.works-top-btn {
  text-align: center;
  display: flex;
  justify-content: center;
  width: auto;
  border: 2px solid #2f2d9a;
  box-sizing: border-box;
  border-radius: 10px;
}
@media (width <= 62.06125rem) {
  .works-top-btn {
    margin: 0px auto 35px auto;
  }
}
@media (width <= 47.99875rem) {
  .works-top-btn {
    margin: 0px auto 35px auto;
  }
}
.works-top-btn > div {
  font-weight: bold;
  box-sizing: border-box;
  border-radius: 7px;
  padding: 15px 32px 15px 32px;
  display: inline-block;
  cursor: pointer;
  color: #2f2d9a;
  margin: -1px 0;
}
.works-top-btn > div > i {
  font-size: 18px;
  display: inline-block;
  margin-right: 3px;
  position: relative;
  bottom: -2px;
}
.works-top-btn .is-active {
  color: #fff;
  background: #2f2d9a;
}
.works-lists {
  width: 65%;
  margin-left: auto;
  overflow: hidden;
}
@media (width <= 62.06125rem) {
  .works-lists {
    width: 100%;
    min-height: 455px;
  }
}
.works-lists-block {
  display: flex;
  transition: transform 0.5s ease;
}
.works-lists-block-wrapper {
  width: 100%;
  flex-shrink: 0;
}
.works-lists-block-list .slick-list:before {
  content: "";
  position: absolute;
  left: 0;
  background: linear-gradient(90deg, #f2f2f2 0%, rgba(242, 242, 242, 0.5) 50%, rgba(242, 242, 242, 0) 100%);
  width: 50px;
  height: 100%;
  z-index: 2;
}
@media (width <= 62.06125rem) {
  .works-lists-block-list .slick-list:before {
    background: none;
  }
}
.works-lists-block-list .slick-prev,
.works-lists-block-list .slick-next {
  top: calc(100% + 40px);
  width: 69px;
  height: 28px;
  position: absolute;
  transform: translateY(-50%);
  cursor: pointer;
  z-index: 2;
}
.works-lists-block-list .slick-prev:before,
.works-lists-block-list .slick-next:before {
  content: "";
  width: 69px;
  height: 28px;
  background: url(../images/arrow-r.svg) center left no-repeat;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 1;
}
.works-lists-block-list .slick-prev:hover:before,
.works-lists-block-list .slick-next:hover:before {
  content: "";
  background: url(../images/arrow-r-w.svg) center left no-repeat;
}
.works-lists-block-list .slick-prev {
  left: 0;
}
.works-lists-block-list .slick-prev:before {
  transform: translate(-50%, -50%) rotate(180deg);
}
@media (width <= 62.06125rem) {
  .works-lists-block-list .slick-prev {
    left: calc(50% - 80px);
  }
}
.works-lists-block-list .slick-next {
  left: 100px;
}
@media (width <= 62.06125rem) {
  .works-lists-block-list .slick-next {
    right: calc(50% - 80px);
    left: auto;
  }
}
.works-lists-block-list-item a {
  display: flex;
  align-self: flex-start;
  position: relative;
  padding: 4px;
  box-sizing: border-box;
}
.works-lists-block-list-item a:hover:before {
  content: "";
  position: absolute;
  width: calc(100% - 8px);
  height: calc(100% - 8px);
  background: #000;
  opacity: 0.3;
  z-index: 1;
  transform: translate(-50%, -50%) scale(0.993);
  left: 50%;
  top: 50%;
}
.works-lists-block-list-item a .icon_search {
  position: absolute;
  top: 50%;
  left: 50%;
  opacity: 0;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3) url(../images/search.svg) center no-repeat;
  transform: translate(-50%, -50%);
  z-index: 2;
}
.works-lists-block-list-item a:hover .icon_search {
  opacity: 1;
}
.works-lists-block-list-item a .icon_play {
  position: absolute;
  top: 50%;
  left: 50%;
  opacity: 1;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3) url(../images/play.svg) center no-repeat;
  transform: translate(-50%, -50%);
  z-index: 2;
}
.works-lists-block-list-item img {
  height: 380px;
}

.servicesSlider-block {
  padding: 1.25rem 0.9375rem 2.5rem;
}
.servicesSlider-block h2 {
  text-align: center;
}
.servicesSlider-block-list .slick-slide {
  display: flex !important;
  align-items: center;
}
.servicesSlider-block-list .slick-dots {
  bottom: -30px;
}
@media (width <= 47.99875rem) {
  .servicesSlider-block-list .slick-dots {
    bottom: -30px;
  }
}
.servicesSlider-block-list .slick-dots li {
  margin: 0 4px;
}
.servicesSlider-block-list .slick-dots li button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #ccc;
  border: none;
}
.servicesSlider-block-list .slick-dots li button:before {
  display: none;
}
.servicesSlider-block-list .slick-dots li.slick-active button {
  background-color: #333;
}
.servicesSlider-block-list .slick-track {
  display: flex;
  align-items: stretch;
}
.servicesSlider-block-list-item {
  padding: 1.25rem 0.625rem 2.1875rem;
  display: flex !important;
  width: 18.75rem;
  height: 100%;
  box-sizing: border-box;
}
@media (width <= 47.99875rem) {
  .servicesSlider-block-list-item {
    width: 12.5rem !important;
    padding: 0 10px 1.875rem;
  }
}
.servicesSlider-block-list-item a {
  width: 100%;
  background: var(--color-white);
  box-shadow: 0.625rem 0.625rem 1.5625rem rgba(0, 0, 0, 0.08);
  border-radius: 0.3125rem;
  color: var(--color-gray-0);
  text-decoration: none;
  display: flex;
  flex-flow: row wrap;
  transition: background-color var(--transition-duration);
  justify-content: center;
}
.servicesSlider-block-list-item a:hover {
  background: var(--color-yellow-darken);
  box-shadow: 0.625rem 0.625rem 1.5625rem rgba(202, 231, 0, 0.2);
  transition: background-color var(--transition-duration);
}
.servicesSlider-block-list-item__img {
  width: 100%;
  border-radius: 0.3125rem;
  overflow: hidden;
}
.servicesSlider-block-list-item__img img {
  width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}
.servicesSlider-block-list-item__name {
  font-weight: bold;
  font-size: 1rem;
  line-height: 1.1875rem;
  padding: 1.375rem 2.3125rem 1.1875rem 2.3125rem;
  display: flex;
  text-align: center;
  justify-content: center;
  align-items: center;
  height: 6.25rem;
}
@media (width <= 47.99875rem) {
  .servicesSlider-block-list-item__name {
    padding: 1rem 0.625rem 0.9375rem 0.625rem;
    font-size: 0.875rem;
    line-height: 1.0625rem;
    height: 5rem;
  }
}

.textwimgr {
  width: 100%;
  margin: 3.75rem 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 1.875rem 0;
}
@media (width <= 62.06125rem) {
  .textwimgr {
    margin: 1.875rem 0;
  }
}
.textwimgr.compact {
  margin-top: 0;
  padding-top: 12.5rem;
}
@media (width <= 62.06125rem) {
  .textwimgr.compact {
    padding-top: 13.125rem;
  }
}
@media (width <= 47.99875rem) {
  .textwimgr.compact {
    margin-top: -4.375rem;
    padding-top: 17.5rem;
  }
}
.textwimgr .container {
  width: 100%;
  max-width: 75rem;
  margin: 0 auto;
  padding: 0 0.9375rem;
}
.textwimgr h2 {
  font-size: 2.25rem;
  line-height: 140%;
  font-weight: 700;
  color: #333;
  text-align: center;
  margin: 0 0 1.25rem;
  padding: 0 0.9375rem;
}
@media (width <= 62.06125rem) {
  .textwimgr h2 {
    font-size: 1.5rem;
  }
}
@media (width <= 47.99875rem) {
  .textwimgr h2 {
    font-size: 1.5rem;
  }
}
.textwimgr-desc {
  font-size: 1.25rem;
  line-height: 175%;
  color: #555;
  text-align: center;
  margin: 1.75rem 0 2.375rem;
  padding: 0 0.9375rem;
  width: 100%;
}
.textwimgr-desc b {
  font-weight: 600;
}
@media (width <= 62.06125rem) {
  .textwimgr-desc {
    font-size: 1.125rem;
    margin: 1.25rem 0 1.875rem;
  }
}
@media (width <= 47.99875rem) {
  .textwimgr-desc {
    font-size: 1rem;
  }
}
.textwimgr-block {
  display: flex;
  flex-flow: row nowrap;
  width: 100%;
  gap: 1.875rem;
}
@media (width <= 62.06125rem) {
  .textwimgr-block {
    flex-flow: column nowrap;
    gap: 1.25rem;
  }
}
.textwimgr-block-img {
  width: 47%;
  flex: 0 0 47%;
  overflow: hidden;
}
@media (width <= 62.06125rem) {
  .textwimgr-block-img {
    width: 100%;
    flex: 0 0 auto;
  }
}
.textwimgr-block-img-carousel {
  flex-grow: 1;
  position: relative;
  padding-bottom: 1.25rem;
}
.textwimgr-block-img-carousel img {
  width: 100%;
  height: auto;
  border-radius: 0.625rem;
  display: block;
  object-fit: contain;
}
.textwimgr-block-img-carousel .slick-slide {
  height: auto;
  padding: 0 0.3125rem;
}
.textwimgr-block-img-carousel .slick-dots {
  bottom: -25px;
}
.textwimgr-block-img-carousel .slick-dots li {
  margin: 0 4px;
}
.textwimgr-block-img-carousel .slick-dots li button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #ccc;
  border: none;
}
.textwimgr-block-img-carousel .slick-dots li button:before {
  display: none;
}
.textwimgr-block-img-carousel .slick-dots li.slick-active button {
  background-color: #333;
}
.textwimgr-block-text {
  width: 50%;
  flex: 0 0 50%;
  padding-left: 0.9375rem;
}
@media (width <= 62.06125rem) {
  .textwimgr-block-text {
    width: 100%;
    flex: 0 0 auto;
    padding-left: 0;
    order: 2;
  }
}
.textwimgr-block-text ul {
  margin: 0.9375rem 0 0.9375rem;
  padding-left: 1.25rem;
  list-style-type: disc;
  font-size: 1rem;
  line-height: 160%;
  color: #333;
}
@media (width <= 62.06125rem) {
  .textwimgr-block-text ul {
    font-size: 0.9375rem;
  }
}
@media (width <= 47.99875rem) {
  .textwimgr-block-text ul {
    font-size: 0.875rem;
  }
}
.textwimgr-block-text ol {
  padding: 0;
  list-style: none;
  margin: 25px 0;
  counter-reset: heading;
}
.textwimgr-block-text ol li {
  padding-left: 40px;
  position: relative;
  margin-bottom: 10px;
  line-height: 30px;
}
.textwimgr-block-text ol li::before {
  counter-increment: heading;
  content: counter(heading);
  font-weight: bold;
  text-align: center;
  color: #fff;
  background: #2f2d9a;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: inline-block;
  box-sizing: border-box;
  position: absolute;
  left: 0;
  top: 0;
  line-height: 30px;
}
.textwimgr-block-text p {
  font-size: 1rem;
  line-height: 160%;
  color: #333;
  margin: 1.5625rem 0;
}
@media (width <= 62.06125rem) {
  .textwimgr-block-text p {
    font-size: 0.9375rem;
  }
}
@media (width <= 47.99875rem) {
  .textwimgr-block-text p {
    font-size: 0.875rem;
  }
}
.textwimgr-block-text-not {
  font-weight: bold;
  font-size: 20px;
  line-height: 175%;
  margin: 40px auto 40px 0;
  width: 80%;
}
.textwimgr-block-text .btn {
  font-weight: bold;
  font-size: 16px;
  line-height: 19px;
  white-space: nowrap;
  text-decoration: none;
  padding: 20px 55px;
  display: inline-block;
  background: #2f2d9a;
  border-radius: 20px;
  color: #fff;
  text-align: center;
  cursor: pointer;
  transition: background-color 0.5s, color 0.5s;
  border: none;
}
.textwimgr-block-text .btn:hover {
  background: #cae700;
  color: #151515;
}
.textwimgr-table {
  border: 2px solid #cae700;
  box-sizing: border-box;
  border-radius: 10px;
  padding: 33px 68px;
  display: flex;
  align-items: center;
  font-weight: bold;
  font-size: 1.125rem;
  line-height: 175%;
  margin: 40px 0 0;
}
@media (width <= 62.06125rem) {
  .textwimgr-table {
    flex-flow: row wrap;
    padding: 26px 20px;
    font-size: 14px;
    margin: 0;
  }
}
.textwimgr-table .blueBtn {
  background: #2f2d9a;
  border-radius: 20px;
  color: #fff;
  cursor: pointer;
  transition: background-color 0.5s, color 0.5s;
  border: none;
  font-weight: bold;
  font-size: 16px;
  line-height: 19px;
  white-space: nowrap;
  text-decoration: none;
  padding: 20px 55px;
  display: inline-block;
}
@media (width <= 62.06125rem) {
  .textwimgr-table .blueBtn {
    width: 100%;
    text-align: center;
    margin-top: 20px;
  }
}
.textwimgr-table .blueBtn:hover {
  background: #cae700;
  color: #151515;
}

.clients {
  padding: 30px 0 30px;
  margin: 20px 0;
  background: #fff;
  border-radius: 10px;
}
@media (width <= 47.99875rem) {
  .clients {
    margin: 30px 0;
    padding: 20px 0 10px;
  }
}
.clients .slick-dotted.slick-slider {
  padding-bottom: 60px;
}
.clients-list {
  overflow: hidden;
  position: relative;
}
.clients-list .slick-slide {
  display: flex !important;
  align-items: center;
}
.clients-list .slick-dots {
  bottom: 0px;
}
.clients-list .slick-dots li {
  margin: 0 4px;
}
.clients-list .slick-dots li button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #ccc;
  border: none;
}
.clients-list .slick-dots li button:before {
  display: none;
}
.clients-list .slick-dots li.slick-active button {
  background-color: #333;
}
.clients-list .slick-track {
  display: flex;
  align-items: stretch;
}
.clients-list-item {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 120px;
  padding: 16px;
  box-sizing: border-box;
}
@media (width <= 47.99875rem) {
  .clients-list-item {
    width: 142px !important;
    padding: 0 10px;
  }
}
.clients-list-item img {
  max-height: 100%;
  max-width: 100%;
  object-fit: contain;
  display: block;
}

.banner-bottom {
  margin: 0.625rem 0 0;
}
@media (width <= 47.99875rem) {
  .banner-bottom {
    margin: 0;
  }
}
.banner-bottom > div {
  background: var(--color-yellow-darken);
  background-size: auto 100%;
  position: relative;
}
@media (width <= 47.99875rem) {
  .banner-bottom > div {
    display: flex;
    flex-flow: row wrap;
  }
}
.banner-bottom > div:before {
  content: "";
  position: absolute;
  width: 7.4375rem;
  height: 5.875rem;
  left: 8%;
  top: 15%;
  background: url(../images/stars.svg) center no-repeat;
  z-index: 2;
}
@media (width <= 47.99875rem) {
  .banner-bottom > div:before {
    width: 4.3125rem;
    height: 3.25rem;
    background-size: cover;
    top: calc(100vw + 25px);
  }
}
.banner-bottom > div .container {
  order: 2;
}
.banner-bottom-img {
  width: 50%;
  display: flex;
}
@media (width <= 62.06125rem) {
  .banner-bottom-img {
    width: 58%;
  }
}
@media (width <= 47.99875rem) {
  .banner-bottom-img {
    width: 100%;
    justify-content: center;
  }
}
.banner-bottom-img img {
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
}
@media (width <= 47.99875rem) {
  .banner-bottom-img img {
    margin-top: 0;
    position: relative;
    height: auto;
    padding: 4.375rem 4.375rem 0 4.375rem;
  }
}

.banner-bottom-block {
  padding: 0 0.9375rem;
  display: flex;
  flex-flow: row wrap;
}
.banner-bottom-block-text {
  width: 65%;
  padding: 5.5rem 0;
  position: relative;
  z-index: 2;
}
@media (width <= 62.06125rem) {
  .banner-bottom-block-text {
    width: 42%;
  }
}
@media (width <= 47.99875rem) {
  .banner-bottom-block-text {
    width: 100%;
    text-align: left;
    padding: 5.5rem 0 2.5rem;
  }
}
.banner-bottom-block-text__txt {
  margin-bottom: 1.25rem;
}
.banner-bottom-block-text__txt > div {
  background: var(--color-white);
  font-size: 1.125rem;
  line-height: 1.3125rem;
  border-radius: 0.625rem;
  display: inline-block;
  padding: 0.25rem 0.625rem;
}
@media (width <= 47.99875rem) {
  .banner-bottom-block-text__txt > div {
    font-size: 0.75rem;
    line-height: 0.9375rem;
  }
}
.banner-bottom-block-text h2 {
  font-weight: normal;
}
@media (width <= 62.06125rem) {
  .banner-bottom-block-text h2 {
    font-size: 2rem;
    line-height: 2.5rem;
  }
}
@media (width <= 47.99875rem) {
  .banner-bottom-block-text h2 {
    font-size: 1.5rem;
    line-height: 1.8125rem;
  }
}
.banner-bottom-block-text h2 > b > span {
  color: var(--color-blue-darken);
}
.banner-bottom-block-text .phone {
  margin-top: 1.5625rem;
  font-size: 2.25rem;
  font-weight: bold;
}
@media (width <= 62.06125rem) {
  .banner-bottom-block-text .phone {
    font-size: 2rem;
  }
}
@media (width <= 47.99875rem) {
  .banner-bottom-block-text .phone {
    font-size: 1.5rem;
  }
}
.banner-bottom-block-text .phone a {
  color: var(--color-gray-0);
  text-decoration: none;
}

footer {
  background: #070707;
  color: #fff;
  padding: 50px 0 50px 0;
}
@media (width <= 47.99875rem) {
  footer {
    padding: 45px 0;
  }
}
footer .footer {
  padding: 0 15px;
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
}
footer .footer-logo {
  flex: 0 0 100%;
  max-width: 100%;
  margin-bottom: 50px;
  display: flex;
  align-items: center;
}
footer .footer-logo img {
  width: 94px;
  margin-right: 12px;
}
footer .footer-logo__text {
  font-weight: bold;
  font-size: 0.875rem;
  line-height: 1.2;
  color: #fff;
}
footer .footer-logo__text > span {
  display: block;
  font-size: 0.625rem;
  line-height: 1.2;
}
footer .footer-left {
  width: 33.33%;
}
@media (width <= 47.99875rem) {
  footer .footer-left {
    width: 50%;
    max-width: none;
  }
}
footer .footer-left-menu {
  list-style: none;
  padding: 0;
  margin: 0;
}
footer .footer-left-menu li {
  margin-bottom: 17px;
}
@media (width <= 47.99875rem) {
  footer .footer-left-menu li {
    margin-bottom: 20px;
  }
}
footer .footer-left-menu a {
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  font-size: 16px;
  line-height: 19px;
}
@media (width <= 47.99875rem) {
  footer .footer-left-menu a {
    font-size: 14px;
    line-height: 17px;
  }
}
footer .footer-left-menu a:hover {
  color: #cae700;
}
footer .footer-center {
  width: 33.33%;
}
@media (width <= 47.99875rem) {
  footer .footer-center {
    width: 100%;
    order: 2;
    padding-bottom: 45px;
  }
}
footer .footer-center-name {
  font-weight: bold;
  color: #bdbdbd;
  margin-bottom: 20px;
}
footer .footer-center-menu {
  list-style: none;
  padding: 0;
  margin: 0;
  width: 70%;
}
@media (width <= 47.99875rem) {
  footer .footer-center-menu {
    width: 100%;
  }
}
footer .footer-center-menu li {
  margin-bottom: 17px;
}
@media (width <= 47.99875rem) {
  footer .footer-center-menu li {
    margin-bottom: 20px;
  }
}
footer .footer-center-menu a {
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  font-size: 16px;
  line-height: 19px;
}
@media (width <= 47.99875rem) {
  footer .footer-center-menu a {
    font-size: 14px;
    line-height: 17px;
  }
}
footer .footer-center-menu a:hover {
  color: #cae700;
}
footer .footer-right {
  width: 33.33%;
  max-width: 280px;
}
@media (width <= 47.99875rem) {
  footer .footer-right {
    width: 50%;
    max-width: none;
    position: relative;
    padding-bottom: 100px;
  }
}
footer .footer-right-name {
  font-weight: bold;
  color: #bdbdbd;
  margin-bottom: 20px;
}
footer .footer-right-item {
  font-size: 16px;
  line-height: 19px;
  margin-bottom: 8px;
}
@media (width <= 47.99875rem) {
  footer .footer-right-item {
    font-size: 14px;
    line-height: 17px;
    margin-bottom: 22px;
  }
}
footer .footer-right__phone {
  margin: 30px 0 15px 0;
}
footer .footer-right__phone a {
  text-decoration: none;
}
footer .footer-right__email {
  margin-bottom: 33px;
}
footer .footer-right__email a {
  text-decoration: none;
}
footer .footer-bottom {
  border-top: 1px solid #151515;
  padding-top: 45px;
  display: flex;
  flex-flow: row wrap;
  width: 100%;
  justify-content: space-between;
  margin-top: 40px;
}
@media (width <= 47.99875rem) {
  footer .footer-bottom {
    order: 3;
    padding-top: 44px;
    margin-top: 0;
    justify-content: flex-end;
  }
}
footer .footer-bottom-copy {
  font-weight: 300;
  font-size: 12px;
  line-height: 14px;
  width: 50%;
  display: flex;
}
@media (width <= 47.99875rem) {
  footer .footer-bottom-copy {
    width: 100%;
    text-align: right;
    order: 2;
    flex-flow: row wrap;
  }
}

.callphone {
  position: fixed;
  will-change: transform;
  right: 20px;
  bottom: 20px;
  z-index: 999;
  display: none;
}
@media (width <= 47.99875rem) {
  .callphone {
    display: block;
  }
}
.callphone span.callphone-desc {
  -webkit-transition: opacity 0.3s;
  -o-transition: opacity 0.3s;
  transition: opacity 0.3s;
  display: none;
  opacity: 0;
  filter: alpha(opacity=0);
  position: absolute;
  padding: 10px 15px 10px 42px;
  background: #e4e1df;
  white-space: nowrap;
  top: 50%;
  right: 20px;
  -webkit-border-radius: 35px;
  -moz-border-radius: 35px;
  border-radius: 35px;
  -webkit-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  -o-transform: translate(0, -50%);
  transform: translate(0, -50%);
  font-size: 13px;
  line-height: 13px;
  display: block;
}
.callphone a.callphone-link {
  background-color: var(--color-blue-darken);
  width: 50px;
  height: 50px;
  text-transform: uppercase;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  background-image: url(../images/call-mob.png);
  background-position: center;
  background-size: 24px;
  background-repeat: no-repeat;
  z-index: 999;
  position: relative;
  display: inline-block;
}

.modal {
  display: none; /* Changed back to none for initial state, will be flex when active */
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 1000;
  /* These are now only active when 'is-active' is present */
  justify-content: center;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.modal.is-active {
  display: flex; /* Only show flex when active */
  opacity: 1;
  visibility: visible;
}

.modal-content {
  background-color: var(--bg-light);
  padding: 2.5rem;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  position: relative;
  width: 90%;
  max-width: 500px;
  box-sizing: border-box;
  transform: translateY(-20px);
  transition: transform 0.3s ease;
}
@media (width <= 47.99875rem) {
  .modal-content {
    padding: 1.5rem;
    width: 95%;
  }
}

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

.close-button {
  color: #aaa;
  font-size: 2rem;
  font-weight: bold;
  position: absolute;
  top: 15px;
  right: 20px;
  cursor: pointer;
  line-height: 1;
  transition: color 0.2s ease;
}
@media (width <= 47.99875rem) {
  .close-button {
    font-size: 1.8rem;
    top: 10px;
    right: 15px;
  }
}

.close-button:hover,
.close-button:focus {
  color: var(--text-color);
}

.modal-content h2 {
  text-align: center;
  color: var(--primary-color);
  margin-top: 0;
  margin-bottom: 1.5rem;
  font-size: 1.8rem;
}
@media (width <= 47.99875rem) {
  .modal-content h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
  }
}

.form-group {
  margin-bottom: 1rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: bold;
  color: var(--text-color);
  font-size: 0.95rem;
}

.form-group input[type=text],
.form-group input[type=tel],
.form-group textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid var(--border-color);
  border-radius: 6px;
  box-sizing: border-box;
  font-size: 1rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
@media (width <= 47.99875rem) {
  .form-group input[type=text],
  .form-group input[type=tel],
  .form-group textarea {
    font-size: 0.95rem;
    padding: 10px;
  }
}

.form-group input[type=text]:focus,
.form-group input[type=tel]:focus,
.form-group textarea:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.25);
  outline: none;
}

.form-group textarea {
  resize: vertical;
  min-height: 80px;
}

.form-group small {
  display: block;
  margin-top: 5px;
  font-size: 0.85rem;
  color: #666;
}

.submit-button {
  background-color: var(--success-color);
  color: white;
  padding: 14px 25px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-size: 1.1rem;
  font-weight: bold;
  width: 100%;
  transition: background-color 0.3s ease, transform 0.1s ease;
  margin-top: 1.5rem;
  /* --- Spinner Positioning --- */
  position: relative; /* Essential for absolute positioning of spinner if needed, or for inline-block alignment */
  overflow: hidden; /* Helps contain the spinner if it's too large */
  display: flex; /* Use flexbox to easily center content */
  justify-content: center; /* Center horizontally */
  align-items: center; /* Center vertically */
}

.submit-button:hover:not(.is-loading) {
  /* Only hover if not loading */
  background-color: #218838;
  transform: translateY(-1px);
}

.submit-button:active:not(.is-loading) {
  /* Only active if not loading */
  transform: translateY(0);
}

/* --- Spinner Styles --- */
.submit-button.is-loading {
  cursor: not-allowed;
  background-color: #5cb85c; /* Muted color when loading */
  pointer-events: none; /* Prevents clicks on the button while loading */
}

.submit-button .spinner {
  display: none; /* Hidden by default */
  border: 3px solid rgba(255, 255, 255, 0.3);
  border-top: 3px solid #fff; /* White spinner line */
  border-radius: 50%;
  width: 20px;
  height: 20px;
  animation: spin 1s linear infinite; /* Spinner animation */
  margin-left: 10px; /* Space between text and spinner */
  flex-shrink: 0; /* Prevent spinner from shrinking */
}

.submit-button.is-loading .spinner {
  display: inline-block; /* Show spinner when loading */
}

.submit-button.is-loading [data-js-submit-button-text] {
  /* Hide the button text when loading */
  visibility: hidden;
}

/* Keyframes for the spinner animation */
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
/* --- Form Message Styles --- */
.form-message {
  margin-top: 1.5rem;
  padding: 12px;
  border-radius: 6px;
  text-align: center;
  font-weight: bold;
  font-size: 0.95rem;
  word-wrap: break-word;
  /* Animation properties for messages */
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  visibility: hidden; /* Ensure it's hidden when opacity is 0 */
}

.form-message.success {
  background-color: #d4edda;
  color: var(--success-color);
  border: 1px solid #c3e6cb;
}

.form-message.error {
  background-color: #f8d7da;
  color: var(--error-color);
  border: 1px solid #f5c6cb;
}

/* Show message when it has success or error class */
.form-message.success,
.form-message.error {
  opacity: 1;
  transform: translateY(0);
  visibility: visible;
}

.sitemap {
  margin: 5rem 0 0 0;
  min-height: 50vh;
}
.sitemap .mapCols {
  display: flex;
  flex-flow: row wrap;
}
.sitemap .mapCols .mapCol {
  width: 50%;
}
@media (width <= 47.99875rem) {
  .sitemap .mapCols .mapCol {
    width: 100%;
  }
}
.sitemap .mapCols .mapCol .mapHeader {
  font-weight: bold;
  font-size: 1.75rem;
  line-height: 2.125rem;
}
.sitemap .mapCols .mapCol .list {
  padding-left: 1.25rem;
}
.sitemap .mapCols .mapCol ul {
  list-style-type: disc;
  margin: 1.25rem 0;
}
.sitemap .mapCols .mapCol ul.list a {
  font-weight: bold;
  font-size: 1.125rem;
  line-height: 240%;
  color: var(--color-blue-darken);
}
.sitemap .mapCols .mapCol ul.list a:hover {
  color: var(--color-yellow-darken);
}

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