@charset "UTF-8";
/* stylelint-disable */
/* stylelint-disable */
/* stylelint-disable */
/* stylelint-disable */
/* stylelint-disable */
.custom-checkbox {
  position: relative;
}
.custom-checkbox.error span {
  color: red !important;
}
.custom-checkbox.error span:before {
  border-color: red;
}
.custom-checkbox.done span {
  color: var(--cl-k) !important;
}
.custom-checkbox.done span:before {
  border-color: var(--br-k);
}
.custom-checkbox .wpcf7-not-valid-tip {
  display: none;
}
.custom-checkbox input {
  position: absolute;
  visibility: hidden;
  z-index: -1;
  opacity: 0;
  inset: 0;
}
.custom-checkbox span {
  margin: 0 !important;
  cursor: pointer;
  position: relative;
  z-index: 2;
  display: inline-flex;
  gap: 4px;
  align-items: center;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  width: 100%;
  color: var(--cl-b);
  font-family: var(--font-family);
  font-size: 16px !important;
  font-style: normal;
  font-weight: 400;
  line-height: 110% !important;
}
.custom-checkbox span::before {
  cursor: pointer;
  content: "\e905";
  font-size: 10px;
  color: var(--cl-a);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
  margin: 2px;
  flex-shrink: 0;
  flex-grow: 0;
  background-position: center center;
  background-size: contain;
  background-repeat: no-repeat;
  border: 1px solid #868686;
  border-radius: 3px;
  font-family: "icomoon" !important;
  speak: never;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.custom-checkbox input:checked + span::before {
  border-color: var(--br-e);
  background-color: var(--bg-e);
}

.wpcf7-list-item {
  margin: 0;
}

.button {
  height: 48px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-family);
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  color: var(--cl-a);
  text-decoration: none;
  transition: all 0.3s;
  cursor: pointer;
}
.button:disabled {
  opacity: 0.6;
}
.button--blue {
  background: var(--bg-b);
  border: 1px solid var(--br-c);
}
.button--blue:active {
  background: var(--bg-b);
  color: var(--cl-c);
}

.main-button {
  width: -moz-fit-content;
  width: fit-content;
  height: 48px;
  padding: 0 24px;
  border: 2px solid transparent;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-family);
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  color: var(--cl-a);
  text-decoration: none;
  transition: all 0.3s;
  cursor: pointer;
}
.main-button:disabled {
  opacity: 0.6;
}
.main-button--blue {
  background: var(--bg-b);
  border: 1px solid var(--br-c);
}
.main-button--blue:active {
  background: var(--bg-b);
  color: var(--cl-c);
}

.slider-btn {
  width: 52px;
  height: 57px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #262626;
  cursor: pointer;
}

.slider-btn.prev {
  border: 2px solid #505050;
  border-radius: 12px 0 0 12px;
}

.slider-btn.next {
  border: 2px solid #505050;
  border-left: none;
  border-radius: 0 12px 12px 0;
}

[data-btn-modal] svg {
  pointer-events: none;
}

.modal {
  margin: auto;
  transform: scale(0.8);
  display: none;
}
.modal.active {
  transform: scale(1);
}
.modal .close {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 5;
  right: 15px;
  top: 15px;
  width: 32px;
  height: 32px;
  transition: all 0.3s;
  color: var(--cl-a);
}
.modal .close:hover {
  opacity: 1;
}
.modal .close svg {
  stroke: currentColor;
  pointer-events: none;
  width: 100%;
  height: 100%;
}

[data-loader] {
  position: relative;
}
@keyframes rotate360 {
  from {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}
[data-loader]::before, [data-loader]::after {
  content: "";
  position: absolute;
  z-index: 10;
  display: flex;
  opacity: 1;
  transition: all 0.3s ease;
  pointer-events: none;
}
[data-loader]::before {
  inset: -2px;
  background-color: var(--bg-b);
  opacity: 0.8;
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
}
[data-loader]::after {
  left: 50%;
  top: 50%;
  z-index: 11;
  border-radius: 50%;
  width: clamp(120px, 13.139vw, 180px);
  aspect-ratio: 1;
  display: flex;
  transform: translate(-50%, -50%);
  transition-property: transform;
  animation: rotate360 1.5s ease-in-out infinite;
  padding: clamp(15px, 2.5vw, 30px);
  background: var(--loader);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
}

[data-loader=false]::before, [data-loader=false]::after {
  opacity: 0;
}

:root {
  --primary-color: #007aff;
  --primary-light: #e0f0ff;
  --secondary-color: #6c757d;
  --success-color: #34c759;
  --warning-color: #ffcc00;
  --error-color: #ff3b30;
  --background-color: #f2f2f7;
  --surface-color: #ffffff;
  --text-primary: #000000;
  --text-secondary: #6c757d;
  --text-disabled: #c7c7cc;
  --border-color: #d1d1d6;
  --shadow-color: rgba(0, 0, 0, 0.08);
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --spacing-xs: 4px;
  --spacing-sm: 8px;
  --spacing-md: 16px;
  --spacing-lg: 24px;
  --spacing-xl: 32px;
  --transition-fast: 0.15s ease;
  --transition-normal: 0.25s ease;
}

.custom-select {
  position: relative;
  width: 100%;
  font-size: 1rem;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.custom-select-field {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--spacing-md);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  background-color: var(--surface-color);
  cursor: pointer;
  transition: all var(--transition-normal);
}
.custom-select-field:hover {
  border-color: var(--primary-color);
}
.custom-select-field.active {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 2px var(--primary-light);
}
.custom-select .selected-options {
  display: flex;
  flex-wrap: wrap;
  gap: var(--spacing-sm);
  min-height: 24px;
}
.custom-select .placeholder {
  color: var(--text-secondary);
}
.custom-select .arrow-down {
  color: var(--text-secondary);
  transition: transform var(--transition-normal);
}
.custom-select .select-field.active .arrow-down {
  transform: rotate(180deg);
}
.custom-select .options-container {
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  width: 100%;
  max-height: 0;
  overflow: hidden;
  background-color: var(--surface-color);
  border-radius: var(--radius-md);
  box-shadow: 0 4px 12px var(--shadow-color);
  z-index: 10;
  opacity: 0;
  transition: all var(--transition-normal);
  list-style: none;
}
.custom-select .options-container.active {
  opacity: 1;
  max-height: 240px;
  overflow-y: auto;
}
.custom-select .option {
  display: flex;
  align-items: center;
  padding: var(--spacing-md);
  cursor: pointer;
  transition: background-color var(--transition-fast);
}
.custom-select .option:hover:not(.disabled) {
  background-color: rgba(17, 17, 17, 0.5);
}
.custom-select .option:hover:not(.disabled) span {
  color: #fff;
}
.custom-select .option.active {
  background-color: var(--primary-light);
  font-weight: 500;
}
.custom-select .option.disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.custom-select .option-text {
  margin-left: var(--spacing-sm);
}
.custom-select .selected-option {
  display: flex;
  align-items: center;
  background-color: var(--primary-light);
  border-radius: var(--radius-sm);
  padding: 2px var(--spacing-sm);
  margin-right: var(--spacing-xs);
  margin-bottom: var(--spacing-xs);
}
.custom-select .option-label {
  margin: 0 var(--spacing-xs);
}
.custom-select .remove-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
  cursor: pointer;
  color: var(--primary-color);
}
.custom-select .remove-btn svg {
  width: 10px;
  height: 10px;
}
.custom-select .selected-values {
  margin-top: var(--spacing-md);
  display: flex;
  flex-wrap: wrap;
  gap: var(--spacing-sm);
}
.custom-select .selected-value-item {
  display: flex;
  align-items: center;
  background-color: var(--primary-light);
  border-radius: var(--radius-sm);
  padding: var(--spacing-sm);
  color: var(--primary-color);
}
.mobile.active {
  transform: translateX(0);
}
.mobile__nav {
  overflow-y: scroll;
}
.mobile__nav .menu {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.mobile__nav .menu-link {
  font-size: 20px;
  line-height: 150%;
  font-weight: 700;
}
.mobile__nav .menu-item {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}
.mobile__nav .menu-button {
  transition: all 0.3s ease;
}
.mobile__nav .menu-button.active {
  transform: scaleY(-1);
}
.mobile__nav .menu-button i {
  font-size: 20px;
}
.mobile__nav .menu .sub-menu {
  width: 100%;
  display: none;
}
.mobile__nav .menu .sub-menu.active {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px 15px;
  max-height: 100% !important;
}
.mobile__nav .menu .sub-menu .menu-link {
  font-size: clamp(13px, 1.563vw, 16px);
  line-height: 150%;
  font-weight: 400;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.mobile__phone {
  display: flex;
  align-items: center;
  gap: 10px;
}

.header {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  width: 100%;
  z-index: 50;
  padding: 16px 0;
  transition: background 0.2s cubic-bezier(0.25, 0.1, 0.25, 1);
  transition: padding 0.2s cubic-bezier(0.25, 0.1, 0.25, 1);
}
.header.sticky {
  padding: 5px 0;
  transform: translate(0);
  background-color: rgba(10, 10, 10, 0.85);
  box-shadow: rgba(54, 192, 194, 0.16) 0px 32px 64px -16px;
  transition: transform 0.3s ease-in-out;
}
.header.sticky.scroll-up {
  transform: translateY(-110%);
}
.header.sticky.return-to-place {
  transform: translateY(0);
  background: var(--bg-b);
  transition: transform 0.5s ease-in-out;
}
.header.open-menu {
  z-index: 100;
}
.header__box {
  position: relative;
  padding: 16px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(15px, 1.953vw, 20px);
  transition: padding 0.2s cubic-bezier(0.25, 0.1, 0.25, 1);
}
.header__logo {
  height: 100%;
  z-index: 50;
  width: -moz-fit-content;
  width: fit-content;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: clamp(145px, 13.281vw, 255px);
  transition: all 0.2s cubic-bezier(0.25, 0.1, 0.25, 1);
}
.header__logo svg,
.header__logo img,
.header__logo svg {
  width: 100%;
  height: auto;
}
.header__modal {
  padding: 0 clamp(12px, 1.25vw, 24px);
}
.header__phone {
  display: flex;
  align-items: center;
  gap: 5px;
  transition: all 0.3s ease;
  font-size: clamp(12px, 1.563vw, 16px);
}
.header__btn-contact {
  padding: 10px 30px;
}
.header__controls {
  display: flex;
  align-items: center;
  gap: 20px;
}
.header__controls-btn {
  font-size: 14px;
  line-height: 120%;
  font-weight: 700;
}
.header .burger {
  justify-self: end;
  color: var(--cl-i);
}

.footer {
  position: relative;
  padding: 40px 0;
  border-radius: 24px 24px 0 0;
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.footer__bg {
  position: absolute;
  display: flex;
  inset: 0;
  z-index: -1;
}
.footer__bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(11, 11, 11, 0.7);
  z-index: 1;
}
.footer__bg picture,
.footer__bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.footer__wrapp {
  display: flex;
  flex-direction: column;
  gap: clamp(20px, 5.208vw, 40px);
}
.footer__top {
  gap: 40px 20px;
}
.footer__left {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.footer__policy {
  font-size: 14px;
  line-height: 100%;
  font-size: clamp(13px, 1.367vw, 14px);
  color: var(--cl-a);
}
.footer__logo {
  width: -moz-fit-content;
  width: fit-content;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 255px;
}
.footer__logo svg,
.footer__logo img,
.footer__logo svg {
  width: 100%;
  height: auto;
}
.footer__heading {
  display: block;
  margin-bottom: 30px;
  font-size: 24px;
  line-height: 120%;
  font-weight: 700;
  color: var(--cl-a);
}
.footer__nav-services {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}
.footer__nav-services a {
  font-size: clamp(14px, 2.083vw, 16px);
  line-height: 120%;
  font-weight: 400;
  color: var(--cl-a);
  transition: all 0.2s ease;
}
.footer__nav-menu {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer__nav-menu a {
  font-size: 16px;
  line-height: 120%;
  font-weight: 400;
  color: var(--cl-a);
  transition: all 0.2s ease;
}
.footer__address {
  width: -moz-fit-content;
  width: fit-content;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 14px;
  line-height: 100%;
  font-weight: 500;
  color: var(--cl-a);
  transition: 0.2s ease;
}
.footer__address svg {
  fill: currentColor;
}
.footer__phone {
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 5px;
  transition: 0.2s ease;
}
.footer__phone svg {
  fill: currentColor;
}
.footer__socials {
  display: flex;
  align-items: center;
  gap: 10px;
}
.footer__social {
  display: flex;
  transition: 0.2s ease;
}
.footer__pages {
  display: flex;
  align-items: center;
  gap: 20px;
}
.footer__pages a {
  font-size: 16px;
  line-height: 100%;
  font-weight: 500;
  color: var(--cl-a);
  transition: all 0.3s ease;
}
.footer__bot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.footer__btns {
  display: flex;
  align-items: center;
}
.footer__copyright {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: clamp(13px, 1.367vw, 14px);
  color: var(--cl-a);
}
.footer__copyright-powered {
  display: flex;
  align-items: center;
  gap: 5px;
}

.modal {
  max-width: -moz-fit-content;
  max-width: fit-content;
  width: 90vw;
  position: relative;
}
.modal--portfolio {
  max-width: 100%;
}
.modal [data-loader]::before {
  background-color: rgba(217, 219, 218, 0);
  inset: -5px;
}
.modal [data-loader=true]::before {
  opacity: 1;
}
.modal .wpcf7 {
  align-self: center;
  width: 100%;
  max-width: 680px;
  margin-top: 0;
}
.modal .editor img,
.modal .editor picture,
.modal .editor svg {
  width: clamp(110px, 12.5vw, 180px);
  height: clamp(110px, 12.5vw, 180px);
  margin: 20px 0 10px;
  display: inline-block;
}
.modal::before {
  position: absolute;
  content: "";
  z-index: -1;
  pointer-events: none;
  inset: 0;
}
.modal_box {
  width: 100%;
}
.modal__container {
  width: 100%;
  display: flex;
  justify-content: center;
  margin: 0 auto;
}

.article {
  margin-bottom: clamp(40px, 6.836vw, 70px);
}
.article__wrapp {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.article__top {
  position: relative;
}
.article__top-info {
  position: relative;
  max-width: 950px;
  width: 100%;
  margin: 0 auto;
  color: var(--cl-a);
  display: flex;
  flex-direction: column;
  gap: 10px 30px;
}
.article__top-head {
  display: flex;
  align-items: center;
  gap: 20px;
}
.article__image {
  position: absolute;
  inset: 0;
  display: flex;
}
.article__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 0 0 1.5rem 1.5rem;
}
.article__image::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(22, 23, 27, 0.45);
  border-radius: 0 0 1.5rem 1.5rem;
}
.article__title {
  font-size: clamp(38px, 4.688vw, 48px);
  line-height: 130%;
}
.article__views {
  display: flex;
  align-items: center;
  gap: 5px;
}
.article__tags {
  display: flex;
  align-items: center;
  gap: 10px;
}
.article__tags li {
  padding: 4px 12px;
  border: 1px solid var(--br-a);
  border-radius: 41px;
}
.article__inner {
  position: relative;
  z-index: 5;
  margin-top: -30px;
  max-width: 1280px;
  width: 100%;
  display: grid;
  align-items: flex-start;
  gap: 30px;
}
.article__share {
  padding: clamp(15px, 2.791vw, 30px) 15px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(15px, 2.791vw, 30px);
  background: #292929;
  border-radius: 8px;
}
.article__share-heading {
  font-family: var(--font-second);
  font-size: 14px;
  line-height: 100%;
  font-weight: 700;
  color: var(--cl-a);
}
.article__share-socials {
  display: flex;
  gap: 10px 20px;
}
.article__share-socials li {
  display: flex;
}
.article__content {
  padding: clamp(20px, 3.906vw, 30px) clamp(10px, 3.906vw, 30px);
  background: #292929;
  border-radius: 8px;
}
.article__aside {
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.main-form {
  width: 100%;
  padding: clamp(16px, 3.125vw, 32px);
  display: flex;
  flex-direction: column;
  gap: clamp(24px, 3.125vw, 32px);
  border-radius: 12px;
  border: 1px solid rgba(237, 237, 237, 0.5);
  background: rgba(0, 0, 0, 0.44);
  -webkit-backdrop-filter: blur(6.4499998093px);
          backdrop-filter: blur(6.4499998093px);
}
.main-form__title {
  font-size: clamp(24px, 3.125vw, 32px);
  line-height: 100%;
  font-weight: 500;
  text-align: center;
}
.main-form__box {
  display: flex;
  flex-direction: column;
  gap: clamp(12px, 2.344vw, 24px);
}
.main-form__labels {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(12px, 2.344vw, 24px);
}
.main-form__label {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.main-form__heading {
  font-family: var(--font-family);
  font-size: clamp(14px, 1.563vw, 16px);
  line-height: 150%;
  font-weight: 500;
  color: rgba(237, 237, 237, 0.64);
}
.main-form input:not([type=submit]), .main-form textarea {
  padding: 11px;
  width: 100%;
  background-color: transparent;
  font-family: var(--font-family);
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 150%;
  border-radius: 8px;
  border: 1px solid rgba(237, 237, 237, 0.5);
  transition: all 0.4s;
  color: var(--cl-a);
}
.main-form input:not([type=submit])::-moz-placeholder, .main-form textarea::-moz-placeholder {
  color: rgba(237, 237, 237, 0.64);
}
.main-form input:not([type=submit])::placeholder, .main-form textarea::placeholder {
  color: rgba(237, 237, 237, 0.64);
}
.main-form textarea {
  max-height: 96px;
}
.main-form__select .select-field {
  padding: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 48px;
  background-color: transparent;
  font-family: var(--font-family);
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 150%;
  border-radius: 8px;
  border: 1px solid rgba(237, 237, 237, 0.5);
  cursor: pointer;
}
.main-form__select .selected-option {
  background-color: transparent;
  padding: 0;
}
.main-form__select .placeholder {
  font-family: var(--font-family);
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 150%;
  color: rgba(237, 237, 237, 0.64);
}
.main-form__select .arrow-down {
  font-size: 20px;
  line-height: 20px;
  display: flex;
}
.main-form__select .options-container {
  border: 1px solid rgba(237, 237, 237, 0.5);
  background-color: var(--bg-b);
}
.main-form__select .options-container li {
  border-top: 1px solid rgba(237, 237, 237, 0.5);
}
.main-form__select .options-container li:first-child {
  border-top: none;
}
.main-form__select .option.active {
  background-color: transparent;
}
.main-form__select .option-label {
  width: 180px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.main-form__select .option-text {
  font-family: var(--font-family);
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 150%;
  color: rgba(237, 237, 237, 0.64);
}
.main-form__select .custom-select .option:hover:not(.disabled) {
  background-color: transparent;
}
.main-form .main-form__submit input.wpcf7-form-control {
  height: 48px;
  padding: 0 24px;
  background: var(--bg-b);
  border: 1px solid var(--br-c);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-family);
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  color: var(--cl-a);
  text-decoration: none;
  transition: all 0.3s;
  cursor: pointer;
}
.main-form .main-form__submit input.wpcf7-form-control:hover {
  background-color: var(--bg-n);
  color: var(--cl-c);
}
.main-form .wpcf7-radio {
  width: 100%;
  padding: 4px;
  border-radius: 8px;
  border: 1px solid rgba(237, 237, 237, 0.5);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.main-form .wpcf7-radio .wpcf7-list-item label {
  position: relative;
  width: 100%;
  height: 100%;
  cursor: pointer;
}
.main-form .wpcf7-radio .wpcf7-list-item label span {
  height: 48px;
  width: 100%;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  font-family: var(--font-family);
  font-size: clamp(12px, 1.563vw, 16px);
  font-style: normal;
  font-weight: 500;
  line-height: 150%;
  color: rgba(237, 237, 237, 0.64);
}
.main-form .wpcf7-radio .wpcf7-list-item label input {
  position: absolute;
  inset: 0;
  z-index: -1;
  visibility: hidden;
  opacity: 0;
}
.main-form .wpcf7-radio .wpcf7-list-item label input:checked + span {
  background-color: var(--bg-f);
  color: var(--cl-a);
}
.main-form .wpcf7 {
  position: relative;
  z-index: 1;
}
.main-form .wpcf7-form-control-wrap {
  display: flex;
}
.main-form .wpcf7-spinner {
  display: none;
}
.main-form .wpcf7-not-valid-tip {
  bottom: 2px;
  left: 20px;
  position: absolute;
  opacity: 0;
  transition: opacity 0.2s;
  transition-delay: 0.2s;
}
.main-form .wpcf7-response-output {
  display: none;
  position: absolute;
}

.main-top {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.main-top .h1, .main-top .h2, .main-top .h3, .main-top .h4, .main-top .h5, .main-top .h6, .main-top h1, .main-top h2, .main-top h3, .main-top h4, .main-top h5, .main-top h6 {
  color: var(--cl-c);
  font-family: var(--font-family);
  font-size: clamp(28px, 3.611vw, 52px);
  font-style: normal;
  font-weight: 500;
  line-height: 120%;
  text-align: center;
}
.main-top p {
  color: var(--cl-c);
  font-family: var(--second-family);
  font-size: clamp(16px, 1.3889vw, 20px);
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
}

.lang-switcher {
  display: flex;
  align-items: center;
  position: relative;
  cursor: pointer;
  color: var(--cl-a);
}
.lang-switcher > .lang-item {
  display: flex;
  align-items: center;
  gap: 5px;
}
.lang-switcher > .lang-item:before {
  content: "\e907";
  color: inherit;
  font-family: "icomoon" !important;
  speak: never;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  font-size: clamp(20px, 2.222vw, 32px);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.lang-switcher > .lang-item:after {
  content: "\e903";
  color: inherit;
  font-family: "icomoon" !important;
  speak: never;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  font-size: clamp(20px, 2.222vw, 32px);
  transition: all 0.3s;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.lang-switcher:hover .lang-dropdown {
  visibility: visible;
  opacity: 1;
}
.lang-switcher.active > .lang-item:after {
  transform: scaleY(-1);
}
.lang-switcher .lang-item a, .lang-switcher .lang-item span {
  color: var(--cl-a);
  font-family: var(--second-family);
  font-size: clamp(14px, 1.25vw, 18px);
  font-style: normal;
  font-weight: 500;
  line-height: 130%;
}
.lang-switcher .lang-dropdown {
  display: flex;
}
.lang-switcher .lang-dropdown .lang-code {
  color: var(--cl-b);
  transition: all 0.3s;
}
.lang-switcher .lang-dropdown .lang-code:hover {
  color: var(--bg-c);
}
.lang-switcher .lang-dropdown li {
  padding: 5px 10px;
  display: flex;
}
.lang-switcher .lang-dropdown li > * {
  display: flex;
  align-items: center;
  gap: 5px;
}

.socials {
  display: flex;
  align-items: center;
  gap: 10px;
}
.socials__link {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.socials__link svg, .socials__link img {
  transition: all 0.3s;
  width: 100%;
  max-width: 23px;
  height: auto;
}
.socials__link:hover svg, .socials__link:hover img {
  transform: scale(1.2);
}

.breadcrumbs-section {
  margin: calc(clamp(31px, 4.236vw, 61px) + 20px + var(--header-height)) 0 clamp(31px, 4.236vw, 61px);
}

.breadcrumbs {
  position: absolute;
  top: 20px;
  z-index: 5;
}
.breadcrumbs ul {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 5px;
}
.breadcrumbs li {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}
.breadcrumbs li span {
  display: inline-block;
  color: var(--cl-a);
  text-align: center;
  font-family: var(--font-family);
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 150%;
}
.breadcrumbs li:not(:last-child)::after {
  content: "\e902";
  color: inherit;
  font-family: "icomoon" !important;
  speak: never;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.breadcrumbs li a {
  transition: all 0.3s;
  display: inline-block;
  color: var(--cl-a);
  text-align: center;
  font-family: var(--font-family);
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 150%;
}
.breadcrumbs li a:hover {
  color: var(--cl-a);
}

.tags {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: clamp(4px, 1.172vw, 12px);
}
.tags__item {
  padding: 10px;
  background: var(--bg-f);
  border-radius: 36px;
}
.tags__item a {
  font-size: clamp(12px, 2.083vw, 16px);
}

:root {
  --decor-line: url("data:image/svg+xml,%3Csvg width='1920' height='1004' viewBox='0 0 1920 1004' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg opacity='0.8'%3E%3Cline x1='-677.002' y1='1003.65' x2='405.998' y2='-79.3536' stroke='%232E7BB2'/%3E%3Cline x1='-133.678' y1='1003.65' x2='949.322' y2='-79.3536' stroke='%232E7BB2'/%3E%3Cline x1='409.646' y1='1003.65' x2='1492.65' y2='-79.3536' stroke='%232E7BB2'/%3E%3Cline x1='952.971' y1='1003.65' x2='2035.97' y2='-79.3536' stroke='%232E7BB2'/%3E%3Cline x1='1496.29' y1='1003.65' x2='2579.29' y2='-79.3536' stroke='%232E7BB2'/%3E%3C/g%3E%3C/svg%3E%0A");
}

.decor-lines {
  position: absolute;
  inset: 0;
  display: flex;
  z-index: -1;
}
.decor-lines::before {
  content: "";
  position: absolute;
  background-image: var(--decor-line);
  background-size: cover;
  height: 100%;
  width: 100%;
}

.scroll-top {
  position: fixed;
  z-index: 20;
  right: -40px; /* Скрыто справа по умолчанию */
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--bg-c);
  border: 2px solid var(--br-c);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cl-a);
  cursor: pointer;
  transition: right 0.3s ease, opacity 0.3s ease;
  opacity: 0;
  visibility: hidden;
}

.scroll-top.active {
  right: 40px; /* Показываем кнопку */
  opacity: 1;
  visibility: visible;
}

.scroll-top.hide {
  right: -40px;
  opacity: 0;
  visibility: hidden;
}

.scroll-top:hover,
.scroll-top:active {
  background-color: var(--bg-c);
  color: var(--cl-a);
}

.scroll-top svg {
  fill: currentColor;
  transform: rotate(-90deg);
  transition: 0.1s ease;
}

.social_widget {
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  z-index: 20;
  cursor: pointer;
  width: 40px;
  height: 40px;
  right: 40px;
  background: var(--bg-c);
  border-radius: 100%;
  transition: 0.3s ease;
}

.social_widget:hover {
  width: clamp(54px, 8.333vw, 64px);
  height: clamp(54px, 8.333vw, 64px);
  padding: 20px 6px;
  right: 30px;
  border-radius: 14px;
  box-shadow: none;
}

.social_widget.active {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(10px, 1.953vw, 15px);
  width: clamp(54px, 8.333vw, 64px);
  height: auto;
  padding: 20px 6px;
  right: 30px;
  border-radius: 14px;
  box-shadow: none;
  animation: rubberband 500ms alternate ease-out;
}

.social_widget.active .widget {
  display: block;
}

.social_widget.active .close_but {
  width: 35px;
  height: 35px;
  border-radius: 100%;
  background-image: url("../img/close-ico.svg");
  background-size: cover;
  border: 1px solid transparent;
  transition: all 0.5s;
}

.social_widget.active .close_but:hover {
  border: 1px solid var(--br-a);
  background-color: var(--bg-c);
}

.social_widget .connect_text {
  display: none;
  width: 52px;
  font-style: normal;
  font-weight: 300;
  font-size: 0.8rem;
  line-height: 14px;
  text-align: center;
  font-feature-settings: "pnum" on, "lnum" on;
  color: var(--cl-a);
  transform: scaleX(1);
}

.social_widget:hover .connect_text {
  display: flex;
}

.social_widget.active .connect_text {
  display: none;
}

.widget {
  display: none;
  width: 100%;
  text-align: center;
  color: var(--cl-a);
  outline: 0;
  background-size: auto;
  background-position: center center;
  background-repeat: no-repeat;
  transition: all;
  transition-duration: 0s;
  transition-duration: 1s;
}
.widget svg {
  transition: 0.3s ease;
}
.widget:hover svg {
  transform: scale(1.2);
}

.button_active {
  position: relative;
  display: flex;
  margin: auto;
  text-align: right;
  border-radius: 50%;
  background-repeat: no-repeat;
  background-position: center center;
  background-color: transparent;
  box-sizing: border-box;
  z-index: 200;
  transition: all;
  transition-duration: 0s;
  transition-duration: 1s;
}

.button_active::before {
  content: "";
  position: absolute;
  top: -13px;
  left: -13px;
  width: 66px;
  height: 66px;
  border-radius: 100%;
  background-color: var(--bg-c);
  animation: 2.5s ease 0s infinite normal none running changeIcone-pulse;
  transform: scale(0);
  z-index: -1;
}

.button_active .button_active_ico {
  height: 40px;
  width: 40px;
  transition-duration: 1s;
  background: url("../img/logo.svg") no-repeat center, url("../img/telegram-ico.svg") no-repeat center top -100px, url("../img/viber-ico.svg") no-repeat center top -150px, url("../img/whatsapp-icon.svg") no-repeat center top -200px, url("../img/telegram-ico.svg") no-repeat center top -250px, url("../img/viber-ico.svg") no-repeat center top -300px, url("../img/whatsapp-icon.svg") no-repeat center top -350px;
  background-repeat: no-repeat;
  animation: 10s ease -2s infinite normal running none changeIcons;
}

.social_widget:hover .button_active {
  display: none;
}

.social_widget.active .button_active {
  display: none;
}

@keyframes changeIcone-pulse {
  0% {
    opacity: 1;
    transform: scale(0);
  }
  50% {
    opacity: 0.5;
  }
  100% {
    opacity: 0;
    transform: scale(1);
  }
}
@keyframes changeIcons {
  0% {
    background-position: center center, top -10000px center, top -150px center, top -200px center, top -250px center, top -300px center, top -350px center, top -10000px center;
  }
  22% {
    background-position: center center, top -10000px center, top -150px center, top -200px center, top -250px center, top -300px center, top -350px center, top -10000px center;
  }
  23% {
    background-position: top 1000px center, center center, top -150px center, top -200px center, top -250px center, top -300px center, top -350px center, center center;
  }
  24% {
    background-position: top 1000px center, center center, top -150px center, top -200px center, top -250px center, top -300px center, top -350px center, center center;
  }
  30% {
    background-position: top 1000px center, center center, top -100px center, top -100px center, top -150px center, top -200px center, top -250px center, center center;
  }
  41% {
    background-position: top 1000px center, top 100px center, center center, top -100px center, top -150px center, top -200px center, top -250px center, center center;
  }
  52% {
    background-position: top 1000px center, top 100px center, top 100px center, center center, top -100px center, top -150px center, top -200px center, center center;
  }
  63% {
    background-position: top 1000px center, top 100px center, top 100px center, top 100px center, center center, top -100px center, top -150px center, center center;
  }
  74% {
    background-position: top 1000px center, top 100px center, top 100px center, top 100px center, top 100px center, center center, top -100px center, center center;
  }
  85% {
    background-position: top 1000px center, top 100px center, top 100px center, top 100px center, top 100px center, top 100px center, center center, center center;
  }
  100% {
    background-position: top 1000px center, top 100px center, top 100px center, top 100px center, top 100px center, top 100px center, center center, center center;
  }
}
@keyframes ubberband {
  0% {
    transform: scaleY(1);
  }
  50% {
    transform: scaleY(1.5);
  }
  100% {
    transform: scaleY(1);
  }
}
.lang {
  padding: 5px 10px;
  display: flex;
  align-items: center;
  background-color: var(--bg-a);
  border-radius: 50px;
}
.lang__item {
  padding: 10px;
  background-color: transparent;
  border-radius: 50px;
  font-family: var(--font-second);
  font-size: 15px;
  line-height: 120%;
  font-weight: 500;
  color: var(--cl-b);
  text-transform: uppercase;
  transition: all 0.3s ease;
  cursor: pointer;
}
.lang__item.active {
  font-weight: 700;
  color: var(--cl-a);
  background-color: var(--bg-c);
  pointer-events: none;
}

.info-list {
  display: grid;
  grid-gap: clamp(12px, 1.25vw, 24px);
}
.info-list__box {
  padding: 16px;
  display: flex;
  align-items: center;
  gap: clamp(8px, 0.781vw, 15px) clamp(10px, 1.302vw, 25px);
  background: #292929;
  border-radius: 12px;
  -webkit-backdrop-filter: blur(8px);
          backdrop-filter: blur(8px);
}
.info-list__info {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.info-list .sprite svg {
  width: clamp(32px, 3.333vw, 64px);
  height: clamp(32px, 3.333vw, 64px);
}
.info-list__heading {
  font-size: clamp(18px, 1.458vw, 28px);
  line-height: 120%;
  font-weight: 500;
  color: var(--cl-c);
}
.info-list__text {
  font-size: clamp(14px, 0.938vw, 18px);
  line-height: 150%;
  font-weight: 500;
}

.services-list {
  width: 100%;
  display: grid;
  grid-gap: 12px clamp(12px, 1.25vw, 24px);
}
.services-list__item {
  min-height: clamp(320px, 31.25vw, 420px);
  position: relative;
  overflow: hidden;
  padding: clamp(16px, 1.25vw, 24px) clamp(16px, 1.25vw, 24px) 60px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  gap: 48px;
  border-radius: 12px;
  -webkit-backdrop-filter: blur(8px);
          backdrop-filter: blur(8px);
}
.services-list__item:hover .services-list__video {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
}
.services-list__item:hover .services-list__excerpt {
  max-height: 100%;
  opacity: 1;
  overflow: visible;
  transform: translateY(0);
}
.services-list__video {
  position: absolute;
  display: flex;
  inset: 0;
  z-index: -1;
  opacity: 0;
  visibility: hidden;
  transform: scale(1.3);
  transition: 0.4s ease;
  transition-duration: 1s;
}
.services-list__video::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.45);
  z-index: 1;
}
.services-list__video video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.services-list__image {
  position: absolute;
  display: flex;
  inset: 0;
  z-index: -1;
}
.services-list__image::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(22, 23, 27, 0.55);
  z-index: 1;
}
.services-list__image picture,
.services-list__image img {
  width: 100%;
  height: 100%;
  border-radius: 12px;
}
.services-list__info {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.services-list__title {
  font-size: clamp(24px, 1.667vw, 32px);
  line-height: 120%;
  font-weight: 500;
  color: var(--cl-a);
  transition: all 0.4s ease;
}
.services-list__excerpt {
  font-size: clamp(14px, 1.563vw, 16px);
  line-height: 120%;
  font-weight: 400;
  color: var(--cl-a);
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transform: translateY(10px);
  transition: max-height 0.4s ease, opacity 0.4s ease, transform 0.4s ease;
}

.items-list {
  display: grid;
  grid-gap: clamp(12px, 1.25vw, 24px);
}
.items-list__box {
  min-height: clamp(190px, 23.021vw, 442px);
  padding: clamp(16px, 1.667vw, 32px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 48px;
  background: rgba(41, 41, 41, 0.5);
  border-radius: 12px;
  -webkit-backdrop-filter: blur(8px);
          backdrop-filter: blur(8px);
}
.items-list__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}
.items-list__icon svg {
  width: clamp(32px, 3.333vw, 64px);
  height: clamp(32px, 3.333vw, 64px);
}
.items-list__heading {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: clamp(14px, 1.563vw, 16px);
  line-height: 150%;
  color: var(--cl-e);
}
.items-list__info {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.items-list__title {
  font-size: clamp(20px, 2.5vw, 48px);
  line-height: 150%;
  font-weight: 500;
}
.items-list__text {
  font-size: clamp(14px, 1.042vw, 20px);
  line-height: 150%;
  font-weight: 500;
  color: #FBFBFB;
}

.posts {
  display: grid;
  align-items: stretch;
  gap: 20px;
}
.posts__item-link {
  height: 100%;
  padding: clamp(10px, 1.953vw, 20px);
  display: flex;
  flex-direction: column;
  gap: 20px;
  background-color: #292929;
  border-radius: 8px;
}
.posts__item-image {
  display: flex;
}
.posts__item-image img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 8px;
}
.posts__item-info {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.posts__item-title {
  font-size: clamp(20px, 1.667vw, 24px);
  line-height: 120%;
  font-weight: 500;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.posts__item-excerpt {
  font-size: clamp(14px, 1.111vw, 16px);
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.posts__item-details {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 20px;
}
.posts__item-tags {
  flex-grow: 1;
}
.posts__item-tags li {
  font-size: 14px;
  line-height: 120%;
  font-weight: 400;
}
.posts__item-pubtime {
  font-size: 14px;
  line-height: 120%;
  font-weight: 400;
  color: rgba(var(--cl-g), 1);
  letter-spacing: 0.32px;
}

.sticky-socials {
  position: fixed;
  left: clamp(16px, 2.93vw, 30px);
  bottom: 0;
  transform: translateY(100vw);
  width: -moz-max-content;
  width: max-content;
  transition-duration: 2s;
  transition: all 1s ease;
  z-index: 5;
}
.sticky-socials.show {
  transform: translateY(-30px);
}
.sticky-socials__items {
  max-width: 1400px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: all 0.4s ease-in-out;
  transition-duration: 2s;
}
.sticky-socials__link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--cl-c);
}
.sticky-socials__link svg {
  width: 20px;
  height: 20px;
  fill: var(--cl-a);
}

.our-card {
  min-height: clamp(260px, 19.444vw, 280px);
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  border-radius: 24px;
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.our-card__bg {
  position: absolute;
  z-index: -1;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
}
.our-card__bg img, .our-card__bg picture {
  transition: all 0.3s;
  width: 100%;
  height: 100%;
}
.our-card__link {
  position: absolute;
  left: clamp(10px, 1.389vw, 20px);
  right: clamp(10px, 1.389vw, 20px);
  bottom: clamp(10px, 1.042vw, 15px);
  height: -moz-fit-content;
  height: fit-content;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  color: var(--cl-d);
  font-family: var(--font-family);
  font-size: clamp(24px, 2.5vw, 36px);
  font-style: normal;
  font-weight: 500;
  line-height: 120%;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.05);
  -webkit-backdrop-filter: blur(12.5px);
          backdrop-filter: blur(12.5px);
  padding: clamp(15px, 1.389vw, 20px) 20px;
  transition: all 0.3s;
}
.our-card__link:after {
  content: "\e902";
  color: var(--cl-d);
  font-family: "icomoon" !important;
  speak: never;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  font-size: clamp(24px, 2.5vw, 36px);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.our-card__link:hover {
  background: rgba(255, 255, 255, 0.1);
}
.our-card:hover .our-card__bg img, .our-card:hover .our-card__bg picture {
  transform: scale(1.05);
}

.content-card {
  min-height: clamp(217px, 23.403vw, 337px);
  height: 100%;
  width: 100%;
  border-radius: clamp(16px, 1.667vw, 24px);
  background: var(--bg-f);
  display: flex;
  padding: clamp(20px, 2.083vw, 30px);
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  position: relative;
  z-index: 1;
  overflow: hidden;
  transition: all 0.3s;
}
.content-card:before {
  position: absolute;
  content: "";
  background: var(--bg-c);
  inset: 0;
  border-radius: inherit;
  z-index: -2;
  transform: translateY(100%);
  transition: all 0.3s;
}
.content-card__title {
  margin-bottom: clamp(10px, 1.389vw, 20px);
  color: var(--cl-f);
  font-family: var(--font-family);
  font-size: clamp(70px, 8.333vw, 120px);
  font-style: normal;
  font-weight: 500;
  line-height: 120%;
  text-align: center;
  transition: all 0.3s;
}
.content-card__subtitle {
  margin-bottom: 15px;
  color: var(--cl-f);
  font-family: var(--font-family);
  font-size: clamp(24px, 2.5vw, 36px);
  font-style: normal;
  font-weight: 500;
  line-height: 120%;
  transition: all 0.3s;
}
.content-card__title + .content-card__subtitle {
  font-size: clamp(20px, 1.806vw, 26px);
  margin-top: -15px;
}
.content-card p {
  color: var(--cl-f);
  font-family: var(--second-family);
  font-size: clamp(14px, 1.111vw, 16px);
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  margin-bottom: auto;
  transition: all 0.3s;
}
.content-card > svg {
  position: absolute;
  width: 100%;
  bottom: 0;
  left: 50%;
  border-radius: inherit;
  z-index: -1;
  height: 222px;
  transition: all 0.3s;
  transform: translate(-50%, 100%);
}
.content-card:hover * {
  color: var(--cl-d);
}
.content-card:hover:before {
  transform: translateY(0);
}
.content-card:hover > svg {
  transform: translate(-50%, 0%);
}

.projects-slider {
  width: 100%;
}
.projects-slider .swiper-slide {
  display: grid;
  grid-template-columns: clamp(300px, 32.431vw, 467px) 1fr;
  gap: 20px;
}
.projects-slider__nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 20px;
  margin-bottom: 10px;
}

.cta-slider {
  width: clamp(720px, 60.417vw, 870px);
  position: relative;
  z-index: 2;
}
.cta-slider .swiper-slide {
  position: relative;
  opacity: 0 !important;
  transition: opacity 0.2s ease-out, transform 0.4s ease-out;
}
.cta-slider .swiper-slide.swiper-slide-visible {
  opacity: 1 !important;
}
.cta-slider .swiper-slide__box {
  overflow: hidden;
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  height: 100%;
  position: relative;
  z-index: 1;
}
.cta-slider .swiper-slide__box:before {
  position: absolute;
  content: "";
  background-image: var(--bg-frame);
  background-size: cover;
  inset: 0;
  background-repeat: no-repeat;
  z-index: 2;
  pointer-events: none;
}
.cta-slider .swiper-slide:not(.swiper-slide-active) .swiper-slide__box {
  transform: translateY(clamp(20px, 1.7361vw, 25px)) scale(0.7) rotate(-19deg);
}
.cta-slider .swiper-slide-active {
  z-index: 5;
  transform: scale(1) translateY(0);
}
.cta-slider .swiper-slide-active .swiper-slide__box {
  transform: scale(1) translateY(0) rotate(0);
}
.cta-slider .swiper-slide-prev .swiper-slide__box {
  transform: translateY(clamp(20px, 1.7361vw, 25px)) scale(1) rotate(-17deg) !important;
}
.cta-slider .swiper-slide-next .swiper-slide__box {
  transform: translateY(clamp(20px, 1.7361vw, 25px)) scale(1) rotate(17deg) !important;
}
.cta-slider .swiper-slide-next + div .swiper-slide__box {
  transform: translateY(clamp(20px, 1.7361vw, 25px)) scale(0.7) rotate(17deg) !important;
}
.cta-slider .swiper-slide .image-wrapper {
  width: 100%;
  height: 100%;
}
.cta-slider .swiper-slide img, .cta-slider .swiper-slide picture, .cta-slider .swiper-slide video {
  width: 100%;
  height: 100%;
  padding: 3px;
  aspect-ratio: 285/592.541;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
@media (min-width: 576px){
  .button {
    width: -moz-fit-content;
    width: fit-content;
  }
  .modal .close {
    opacity: 0.8;
  }
  .article__share {
    position: sticky;
    top: 100px;
  }
  .article__share-socials {
    flex-direction: column;
  }
}
@media (min-width: 768px){
  .info-list {
    grid-template-columns: repeat(3, 1fr);
  }
  .services-list {
    grid-template-columns: repeat(var(--col-counter), 1fr);
  }
  .items-list {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (min-width: 992px){
  .article__inner {
    grid-template-columns: auto 1fr 337px;
  }
  .posts {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (min-width: 1025px){
  .mobile {
    display: none;
  }
  .header.sticky .header__box {
    padding: 6px 0;
  }
  .header.sticky .header__logo {
    max-width: 170px;
  }
  .header.sticky .header__phone {
    font-size: 14px;
  }
  .header.sticky .header__modal {
    height: 40px;
    font-size: 14px;
  }
  .header.sticky .header__nav-list .menu-text {
    font-size: 18px;
  }
  .header__nav {
    display: flex;
    align-items: center;
  }
  .header__nav-list {
    height: 100%;
    display: flex;
    align-items: center;
    gap: clamp(20px, 2.083vw, 40px);
  }
  .header__nav-list .menu-item {
    height: 100%;
    display: flex;
    align-items: center;
    gap: 10px;
  }
  .header__nav-list .menu-item:hover .sub-menu {
    opacity: 1;
    visibility: visible;
  }
  .header__nav-list .menu-item:hover > .menu-button i {
    transform: scaleY(-1);
  }
  .header__nav-list .menu-item-type-post_type {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 5px;
  }
  .header__nav-list .menu-item-type-post_type .menu-button {
    pointer-events: none;
  }
  .header__nav-list .menu-item-type-post_type .sub-menu {
    max-height: initial !important;
    overflow: visible !important;
    width: calc(100vw - var(--container-offset) * 2);
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateY(100%) translateX(-50%);
    opacity: 0;
    visibility: hidden;
    transition: 0.3s ease;
    border-radius: 8px;
    padding: clamp(10px, 1.563vw, 30px) clamp(10px, 1.042vw, 20px);
    background-color: rgba(10, 10, 10, 0.85);
    box-shadow: rgba(54, 192, 194, 0.16) 0px 32px 64px -16px;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
  }
  .header__nav-list .menu-item-type-post_type .sub-menu:before {
    width: 100%;
    height: 25px;
    position: absolute;
    left: 0;
    right: 0;
    content: "";
    background-color: transparent;
    display: flex;
    top: 0;
    transform: translatey(-100%);
  }
  .header__nav-list .menu-item-type-post_type .sub-menu .menu-link {
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 10px;
    transition: 0.3s ease;
  }
  .header__nav-list .menu-item-type-post_type .sub-menu .menu-link:hover {
    transform: translateY(-5px);
  }
  .header__nav-list .menu-item-type-post_type .sub-menu .menu-link:hover video {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
  }
  .header__nav-list .menu-item-type-post_type .sub-menu .menu-link:hover .menu-text {
    color: var(--cl-c);
  }
  .header__nav-list .menu-item-type-post_type .sub-menu .menu-link__media {
    position: relative;
    height: clamp(140px, 10.417vw, 200px);
    width: 100%;
    overflow: hidden;
    border-radius: 8px;
  }
  .header__nav-list .menu-item-type-post_type .sub-menu .menu-link__media picture,
  .header__nav-list .menu-item-type-post_type .sub-menu .menu-link__media img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .header__nav-list .menu-item-type-post_type .sub-menu .menu-link__media video {
    position: absolute;
    opacity: 0;
    visibility: hidden;
    transform: scale(1.3);
    inset: 0;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    transition: all 0.2s ease;
    transition-duration: 1s;
  }
  .header__nav-list .menu-item-type-post_type .sub-menu .menu-link .menu-text {
    font-size: clamp(13px, 0.833vw, 16px);
    line-height: 120%;
    font-weight: 500;
    transition: all 0.2s ease;
    color: var(--cl-a);
  }
  .header__nav-list .menu-item-type-custom {
    position: relative;
  }
  .header__nav-list .menu-item-type-custom .sub-menu {
    max-height: initial !important;
    overflow: visible !important;
    width: -moz-max-content;
    width: max-content;
    position: absolute;
    top: calc(100% + 16px);
    left: 50%;
    transform: translateX(-50%);
    opacity: 0;
    visibility: hidden;
    transition: 0.3s ease;
    border-radius: 8px;
    padding: clamp(10px, 1.563vw, 30px) clamp(10px, 1.042vw, 20px);
    background-color: rgba(10, 10, 10, 0.85);
    box-shadow: rgba(54, 192, 194, 0.16) 0px 32px 64px -16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }
  .header__nav-list .menu-item-type-custom .sub-menu:before {
    width: 100%;
    height: 16px;
    position: absolute;
    left: 0;
    right: 0;
    content: "";
    background-color: transparent;
    display: flex;
    top: 0;
    transform: translatey(-100%);
  }
  .header__nav-list .menu-item-type-custom .sub-menu a span {
    font-size: clamp(16px, 1.042vw, 20px);
    line-height: 100%;
    transition: all 0.2s ease;
  }
  .header__nav-list .menu-item-type-custom .sub-menu a span:hover {
    color: var(--cl-c);
  }
  .header__nav-list .menu-button i {
    font-size: 20px;
    transition: all 0.2s ease-in-out;
  }
  .header__nav-list .menu-text {
    font-size: clamp(18px, 1.146vw, 22px);
    line-height: 120%;
    font-weight: 500;
    transition: all 0.2s ease;
  }
  .header .burger {
    display: none;
  }
  .lang-switcher {
    gap: 5px;
    padding: 10px 0;
  }
  .lang-switcher:hover > .lang-item:after {
    transform: scaleY(-1);
  }
  .lang-switcher .lang-dropdown {
    max-height: initial;
  }
  .lang-switcher .lang-dropdown {
    position: absolute;
    transition: 0.3s;
    visibility: hidden;
    opacity: 0;
    left: calc(clamp(20px, 2.222vw, 32px) - 5px);
    top: 100%;
    transform: translateY(0);
    border-radius: 8px;
    border: solid 1px var(--bg-c);
    background-color: var(--bg-a);
    flex-direction: column;
    gap: 0;
  }
  .projects-slider .swiper-slide.swiper-slide-active {
    transform: scale(1);
    opacity: 1;
  }
  .projects-slider .swiper-slide {
    opacity: 0;
    transition: opacity 0.2s ease-out, transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
    transform: scale(0.8);
  }
  .cta-slider .swiper-slide img, .cta-slider .swiper-slide picture, .cta-slider .swiper-slide video {
    border-radius: clamp(30px, 3.4722vw, 50px);
  }
}
@media (min-width: 1241px){
  .header__logo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  .article__top {
    width: 100%;
    padding: 200px 0;
  }
  .article__aside {
    display: flex;
    flex-direction: column;
    gap: 30px;
  }
  .scroll-top {
    bottom: 105px;
  }
  .social_widget {
    bottom: 30px;
  }
  .social_widget:hover {
    bottom: 30px;
  }
  .social_widget.active {
    bottom: 30px;
  }
  .cta-slider {
    margin: -100px -80px -70px 0;
  }
}
@media (min-width: 1441px){
  .footer__top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
  }
}
@media (max-width: 1440px){
  .footer__left {
    grid-column: span 2;
  }
}
@media (max-width: 1440px) and (min-width: 1025px){
  .header__nav {
    order: -1;
  }
  .footer__top {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
  }
  .article__content {
    grid-column: span 2;
  }
}
@media (max-width: 1440px) and (min-width: 768px){
  .footer__services {
    order: 1;
    grid-column: 1/-1;
  }
}
@media (max-width: 1240px){
  .article__top {
    width: 100vw;
    padding: clamp(130px, 19.531vw, 200px) var(--container-offset);
  }
  .article__aside {
    grid-column: 1/-1;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  .scroll-top {
    bottom: clamp(100px, 19.531vw, 150px);
  }
  .social_widget {
    bottom: 30px;
  }
  .social_widget:hover {
    bottom: 30px;
  }
  .social_widget.active {
    bottom: 30px;
  }
}
@media (max-width: 1240px) and (min-width: 1025px){
  .projects-slider .swiper-slide {
    grid-template-columns: 0.4fr 1fr;
  }
  .cta-slider {
    margin: -100px -80px -70px;
  }
}
@media (max-width: 1024px){
  .mobile {
    position: fixed;
    top: 0;
    right: 0px;
    width: 100%;
    height: 100svh;
    bottom: 0;
    z-index: 40;
    transition: all 0.3s ease;
    transform: translateX(-110%);
    background: var(--bg-b);
    padding: var(--header-height) var(--container-offset) clamp(16px, 3.125vw, 24px);
  }
  .mobile__box {
    display: flex;
    width: 100%;
    height: 100%;
    flex-direction: column;
    justify-content: space-between;
    gap: 16px;
  }
  .mobile__bottom {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 20px;
  }
  .header {
    padding: 0;
  }
  .header.sticky .header__box {
    padding: 5px 0;
  }
  .header__nav {
    display: none;
  }
  .header__controls {
    flex-grow: 1;
    justify-content: flex-end;
  }
  .header .burger {
    transition: 0.4s cubic-bezier(0.25, 0.1, 0.25, 1) 50ms;
    --burger-width: 28px;
    --burger-height: 38px;
    --burger-line-height: 2px;
    --border-radius: 0;
    position: relative;
    border: none;
    width: var(--burger-width);
    height: var(--burger-height);
    flex-shrink: 0;
    z-index: 50;
    cursor: pointer;
  }
  .header .burger::before, .header .burger::after {
    content: "";
    position: absolute;
    width: 100%;
    left: 50%;
    transform: translateX(-50%);
    height: var(--burger-line-height);
    background: currentColor;
    transform-origin: left top;
    transition: transform 0.3s ease-in-out, top 0.3s ease-in-out, opacity 0.5s, background 0.3s ease-in-out;
    border-radius: var(--border-radius);
  }
  .header .burger::before {
    top: 10px;
  }
  .header .burger::after {
    bottom: 10px;
  }
  .header .burger__line {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 100%;
    height: var(--burger-line-height);
    background: currentColor;
    transform: translate(-50%, -50%);
    transition: transform 0.3s ease-in-out, opacity 0.5s, background 0.3s ease-in-out;
    border-radius: var(--border-radius);
  }
  .header .burger:hover {
    opacity: 0.7;
  }
  .header .burger.active::before {
    background: currentColor;
    top: 50%;
    transform: rotate(45deg) translate(-50%, -50%);
    transition: transform 0.3s ease-in-out, top 0.3s ease-in-out;
  }
  .header .burger.active::after {
    background: currentColor;
    top: 50%;
    transform: rotate(-45deg) translate(-50%, -50%);
    transition: transform 0.3s ease-in-out, top 0.3s ease-in-out;
  }
  .header .burger.active .burger__line {
    background: currentColor;
    transform: scale(0);
    transition: transform 0.3s ease-in-out;
  }
  .lang-switcher > .lang-item:before {
    font-size: 32px;
  }
  .lang-switcher > .lang-item:after {
    font-size: 32px;
  }
  .lang-switcher {
    flex-direction: column;
    width: -moz-fit-content;
    width: fit-content;
  }
  .lang-switcher .lang-item a, .lang-switcher .lang-item span {
    font-size: 18px;
  }
  .lang-switcher .lang-dropdown {
    flex-direction: column;
  }
  .lang-switcher .lang-dropdown .lang-code {
    color: var(--cl-a);
  }
  .decor-lines {
    display: none;
  }
  .projects-slider .swiper-slide {
    grid-template-columns: 100%;
  }
  .cta-slider {
    order: -1;
    max-width: initial;
    justify-self: center;
    margin: 0 0 20px;
  }
}
@media (max-width: 1024px) and (min-width: 576px){
  .cta-slider .swiper-slide img, .cta-slider .swiper-slide picture, .cta-slider .swiper-slide video {
    border-radius: clamp(30px, 4.883vw, 50px);
  }
}
@media (max-width: 1024px) and (min-width: 768px){
  .footer__top {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 991px){
  .article__inner {
    grid-template-columns: 100px 1fr;
  }
  .posts {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 767px){
  .header__controls-right {
    display: none;
  }
  .footer__top {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 0;
  }
  .footer__left {
    display: contents;
  }
  .footer__logo {
    grid-column: 1/-1;
    margin: 0 auto;
  }
  .footer__services {
    grid-column: 1/-1;
  }
  .footer__pages {
    order: 3;
    grid-column: 1/-1;
    justify-content: center;
  }
  .info-list {
    grid-template-columns: 100%;
  }
  .services-list {
    grid-template-columns: 100%;
  }
  .items-list {
    grid-template-columns: 100%;
  }
  .our-card {
    min-height: 340px;
  }
}
@media (max-width: 575px){
  .button {
    width: 100%;
  }
  .mobile__modal {
    width: 100%;
  }
  .header .burger {
    --burger-width: 22px;
    --burger-height: 34px;
  }
  .footer {
    padding-bottom: 80px;
  }
  .footer__bot {
    flex-direction: column-reverse;
  }
  .article__inner {
    grid-template-columns: 1fr;
  }
  .article__content {
    order: -1;
  }
  .article__aside {
    grid-template-columns: 1fr !important;
  }
  .main-form__labels {
    grid-template-columns: 100%;
  }
  .scroll-top.active {
    right: 20px; /* Показываем кнопку */
  }
  .social_widget {
    right: 20px; /* Показываем кнопку */
  }
  .social_widget:hover {
    right: 15px; /* Показываем кнопку */
  }
  .social_widget.active {
    right: 15px; /* Показываем кнопку */
  }
  .posts {
    grid-template-columns: 1fr;
  }
  .content-card {
    width: 280px;
  }
  .content-card > svg {
    height: 165px;
  }
  .cta-slider {
    width: 600px;
  }
  .cta-slider .swiper-slide img, .cta-slider .swiper-slide picture, .cta-slider .swiper-slide video {
    border-radius: clamp(30px, 6.944vw, 40px);
  }
}
@media (hover: hover){
  .button--blue:hover {
    background: var(--bg-b);
    color: var(--cl-c);
  }
  .main-button--blue:hover {
    background: var(--bg-b);
    color: var(--cl-c);
  }
  .header__phone:hover {
    color: var(--cl-c);
  }
  .footer__nav-services a:hover {
    color: var(--cl-c);
  }
  .footer__nav-menu a:hover {
    color: var(--cl-c);
  }
  .footer__address:hover {
    color: var(--cl-c);
  }
  .footer__phone:hover {
    color: var(--cl-c);
  }
  .footer__social:hover {
    color: var(--cl-c);
  }
  .footer__pages a:hover {
    color: var(--cl-c);
  }
  .lang__item:hover {
    color: var(--cl-c);
  }
}
@media (hover: none){
  .button--blue:active {
    background: var(--bg-b);
    color: var(--cl-c);
  }
  .main-button--blue:active {
    background: var(--bg-b);
    color: var(--cl-c);
  }
  .header__phone:active {
    color: var(--cl-c);
  }
  .footer__nav-services a:active {
    color: var(--cl-c);
  }
  .footer__nav-menu a:active {
    color: var(--cl-c);
  }
  .footer__address:active {
    color: var(--cl-c);
  }
  .footer__phone:active {
    color: var(--cl-c);
  }
  .footer__social:active {
    color: var(--cl-c);
  }
  .footer__pages a:active {
    color: var(--cl-c);
  }
  .lang__item:active {
    color: var(--cl-c);
  }
}
/*# sourceMappingURL=style.css.map */