/**Swiper 11.1.4*/
:host {
    position: relative;
    display: block;
    margin-left: auto;
    margin-right: auto;
    z-index: 1;
  }
  .swiper {
    margin-left: auto;
    margin-right: auto;
    position: relative;
    overflow: hidden;
    list-style: none;
    padding: 0;
    z-index: 1;
    display: block;
  }
  .swiper-vertical > .swiper-wrapper {
    flex-direction: column;
  }
  .swiper-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    z-index: 1;
    display: flex;
    transition-property: transform;
    transition-timing-function: var(
      --swiper-wrapper-transition-timing-function,
      initial
    );
    box-sizing: content-box;
  }
  .swiper-android .swiper-slide,
  .swiper-ios .swiper-slide,
  .swiper-wrapper {
    transform: translate3d(0px, 0, 0);
  }
  .swiper-horizontal {
    touch-action: pan-y;
  }
  .swiper-vertical {
    touch-action: pan-x;
  }
  .swiper-slide {
    flex-shrink: 0;
    width: 100%;
    height: 100%;
    position: relative;
    transition-property: transform;
    display: block;
  }
  .swiper-slide-invisible-blank {
    visibility: hidden;
  }
  .swiper-autoheight,
  .swiper-autoheight .swiper-slide {
    height: auto;
  }
  .swiper-autoheight .swiper-wrapper {
    align-items: flex-start;
    transition-property: transform, height;
  }
  .swiper-backface-hidden .swiper-slide {
    transform: translateZ(0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
  }
  .swiper-3d.swiper-css-mode .swiper-wrapper {
    perspective: 1200px;
  }
  .swiper-3d .swiper-wrapper {
    transform-style: preserve-3d;
  }
  .swiper-3d {
    perspective: 1200px;
  }
  .swiper-3d .swiper-cube-shadow,
  .swiper-3d .swiper-slide {
    transform-style: preserve-3d;
  }
  .swiper-css-mode > .swiper-wrapper {
    overflow: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }
  .swiper-css-mode > .swiper-wrapper::-webkit-scrollbar {
    display: none;
  }
  .swiper-css-mode > .swiper-wrapper > .swiper-slide {
    scroll-snap-align: start start;
  }
  .swiper-css-mode.swiper-horizontal > .swiper-wrapper {
    scroll-snap-type: x mandatory;
  }
  .swiper-css-mode.swiper-vertical > .swiper-wrapper {
    scroll-snap-type: y mandatory;
  }
  .swiper-css-mode.swiper-free-mode > .swiper-wrapper {
    scroll-snap-type: none;
  }
  .swiper-css-mode.swiper-free-mode > .swiper-wrapper > .swiper-slide {
    scroll-snap-align: none;
  }
  .swiper-css-mode.swiper-centered > .swiper-wrapper::before {
    content: "";
    flex-shrink: 0;
    order: 9999;
  }
  .swiper-css-mode.swiper-centered > .swiper-wrapper > .swiper-slide {
    scroll-snap-align: center center;
    scroll-snap-stop: always;
  }
  .swiper-css-mode.swiper-centered.swiper-horizontal
    > .swiper-wrapper
    > .swiper-slide:first-child {
    margin-inline-start: var(--swiper-centered-offset-before);
  }
  .swiper-css-mode.swiper-centered.swiper-horizontal > .swiper-wrapper::before {
    height: 100%;
    min-height: 1px;
    width: var(--swiper-centered-offset-after);
  }
  .swiper-css-mode.swiper-centered.swiper-vertical
    > .swiper-wrapper
    > .swiper-slide:first-child {
    margin-block-start: var(--swiper-centered-offset-before);
  }
  .swiper-css-mode.swiper-centered.swiper-vertical > .swiper-wrapper::before {
    width: 100%;
    min-width: 1px;
    height: var(--swiper-centered-offset-after);
  }
  .swiper-3d .swiper-slide-shadow,
  .swiper-3d .swiper-slide-shadow-bottom,
  .swiper-3d .swiper-slide-shadow-left,
  .swiper-3d .swiper-slide-shadow-right,
  .swiper-3d .swiper-slide-shadow-top {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 10;
  }
  .swiper-3d .swiper-slide-shadow {
    background: rgba(0, 0, 0, 0.15);
  }
  .swiper-3d .swiper-slide-shadow-left {
    background-image: linear-gradient(
      to left,
      rgba(0, 0, 0, 0.5),
      rgba(0, 0, 0, 0)
    );
  }
  .swiper-3d .swiper-slide-shadow-right {
    background-image: linear-gradient(
      to right,
      rgba(0, 0, 0, 0.5),
      rgba(0, 0, 0, 0)
    );
  }
  .swiper-3d .swiper-slide-shadow-top {
    background-image: linear-gradient(
      to top,
      rgba(0, 0, 0, 0.5),
      rgba(0, 0, 0, 0)
    );
  }
  .swiper-3d .swiper-slide-shadow-bottom {
    background-image: linear-gradient(
      to bottom,
      rgba(0, 0, 0, 0.5),
      rgba(0, 0, 0, 0)
    );
  }
  .swiper-lazy-preloader {
    width: 42px;
    height: 42px;
    position: absolute;
    left: 50%;
    top: 50%;
    margin-left: -21px;
    margin-top: -21px;
    z-index: 10;
    transform-origin: 50%;
    box-sizing: border-box;
    border: 4px solid var(--swiper-preloader-color, var(--swiper-theme-color));
    border-radius: 50%;
    border-top-color: transparent;
  }
  .swiper-watch-progress .swiper-slide-visible .swiper-lazy-preloader,
  .swiper:not(.swiper-watch-progress) .swiper-lazy-preloader {
    animation: swiper-preloader-spin 1s infinite linear;
  }
  .swiper-lazy-preloader-white {
    --swiper-preloader-color: #fff;
  }
  .swiper-lazy-preloader-black {
    --swiper-preloader-color: #000;
  }
  @keyframes swiper-preloader-spin {
    0% {
      transform: rotate(0deg);
    }
    100% {
      transform: rotate(360deg);
    }
  }
  .swiper-virtual .swiper-slide {
    -webkit-backface-visibility: hidden;
    transform: translateZ(0);
  }
  .swiper-virtual.swiper-css-mode .swiper-wrapper::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    pointer-events: none;
  }
  .swiper-virtual.swiper-css-mode.swiper-horizontal .swiper-wrapper::after {
    height: 1px;
    width: var(--swiper-virtual-size);
  }
  .swiper-virtual.swiper-css-mode.swiper-vertical .swiper-wrapper::after {
    width: 1px;
    height: var(--swiper-virtual-size);
  }
  :root {
    --swiper-navigation-size: 44px;
  }
  .swiper-button-next,
  .swiper-button-prev {
    position: absolute;
    top: var(--swiper-navigation-top-offset, 50%);
    width: calc(var(--swiper-navigation-size) / 44 * 27);
    height: var(--swiper-navigation-size);
    margin-top: calc(0px - (var(--swiper-navigation-size) / 2));
    z-index: 10;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--swiper-navigation-color, var(--swiper-theme-color));
  }
  .swiper-button-next.swiper-button-disabled,
  .swiper-button-prev.swiper-button-disabled {
    opacity: 0.35;
    cursor: auto;
    pointer-events: none;
  }
  .swiper-button-next.swiper-button-hidden,
  .swiper-button-prev.swiper-button-hidden {
    opacity: 0;
    cursor: auto;
    pointer-events: none;
  }
  .swiper-navigation-disabled .swiper-button-next,
  .swiper-navigation-disabled .swiper-button-prev {
    display: none !important;
  }
  .swiper-button-next svg,
  .swiper-button-prev svg {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transform-origin: center;
  }
  .swiper-rtl .swiper-button-next svg,
  .swiper-rtl .swiper-button-prev svg {
    transform: rotate(180deg);
  }
  .swiper-button-prev,
  .swiper-rtl .swiper-button-next {
    left: var(--swiper-navigation-sides-offset, 10px);
    right: auto;
  }
  .swiper-button-next,
  .swiper-rtl .swiper-button-prev {
    right: var(--swiper-navigation-sides-offset, 10px);
    left: auto;
  }
  .swiper-button-lock {
    display: none;
  }
  .swiper-button-next:after,
  .swiper-button-prev:after {
    font-family: swiper-icons;
    font-size: var(--swiper-navigation-size);
    text-transform: none !important;
    letter-spacing: 0;
    font-variant: initial;
    line-height: 1;
  }
  .swiper-button-prev:after,
  .swiper-rtl .swiper-button-next:after {
    content: "";
  }
  .swiper-button-next,
  .swiper-rtl .swiper-button-prev {
    right: var(--swiper-navigation-sides-offset, 10px);
    left: auto;
  }
  .swiper-button-next:after,
  .swiper-rtl .swiper-button-prev:after {
    content: "";
  }
  .swiper-pagination {
    position: absolute;
    text-align: center;
    transition: 0.3s opacity;
    transform: translate3d(0, 0, 0);
    z-index: 10;
  }
  .swiper-pagination.swiper-pagination-hidden {
    opacity: 0;
  }
  .swiper-pagination-disabled > .swiper-pagination,
  .swiper-pagination.swiper-pagination-disabled {
    display: none !important;
  }
  .swiper-horizontal > .swiper-pagination-bullets,
  .swiper-pagination-bullets.swiper-pagination-horizontal,
  .swiper-pagination-custom,
  .swiper-pagination-fraction {
    bottom: var(--swiper-pagination-bottom, 8px);
    top: var(--swiper-pagination-top, auto);
    left: 0;
    width: 100%;
  }
  .swiper-pagination-bullets-dynamic {
    overflow: hidden;
    font-size: 0;
  }
  .swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
    transform: scale(0.33);
    position: relative;
  }
  .swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active {
    transform: scale(1);
  }
  .swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main {
    transform: scale(1);
  }
  .swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev {
    transform: scale(0.66);
  }
  .swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev {
    transform: scale(0.33);
  }
  .swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next {
    transform: scale(0.66);
  }
  .swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next {
    transform: scale(0.33);
  }
  .swiper-pagination-bullet {
    width: var(
      --swiper-pagination-bullet-width,
      var(--swiper-pagination-bullet-size, 8px)
    );
    height: var(
      --swiper-pagination-bullet-height,
      var(--swiper-pagination-bullet-size, 8px)
    );
    display: inline-block;
    border-radius: var(--swiper-pagination-bullet-border-radius, 50%);
    background: var(--swiper-pagination-bullet-inactive-color, #000);
    opacity: var(--swiper-pagination-bullet-inactive-opacity, 0.2);
  }
  button.swiper-pagination-bullet {
    border: none;
    margin: 0;
    padding: 0;
    box-shadow: none;
    -webkit-appearance: none;
    appearance: none;
  }
  .swiper-pagination-clickable .swiper-pagination-bullet {
    cursor: pointer;
  }
  .swiper-pagination-bullet:only-child {
    display: none !important;
  }
  .swiper-pagination-bullet-active {
    opacity: var(--swiper-pagination-bullet-opacity, 1);
    background: var(--swiper-pagination-color, var(--swiper-theme-color));
  }
  .swiper-pagination-vertical.swiper-pagination-bullets,
  .swiper-vertical > .swiper-pagination-bullets {
    right: var(--swiper-pagination-right, 8px);
    left: var(--swiper-pagination-left, auto);
    top: 50%;
    transform: translate3d(0px, -50%, 0);
  }
  .swiper-pagination-vertical.swiper-pagination-bullets .swiper-pagination-bullet,
  .swiper-vertical > .swiper-pagination-bullets .swiper-pagination-bullet {
    margin: var(--swiper-pagination-bullet-vertical-gap, 6px) 0;
    display: block;
  }
  .swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic,
  .swiper-vertical
    > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
  }
  .swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic
    .swiper-pagination-bullet,
  .swiper-vertical
    > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic
    .swiper-pagination-bullet {
    display: inline-block;
    transition: 0.2s transform, 0.2s top;
  }
  .swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet,
  .swiper-pagination-horizontal.swiper-pagination-bullets
    .swiper-pagination-bullet {
    margin: 0 var(--swiper-pagination-bullet-horizontal-gap, 4px);
  }
  .swiper-horizontal
    > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic,
  .swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap;
  }
  .swiper-horizontal
    > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic
    .swiper-pagination-bullet,
  .swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic
    .swiper-pagination-bullet {
    transition: 0.2s transform, 0.2s left;
  }
  .swiper-horizontal.swiper-rtl
    > .swiper-pagination-bullets-dynamic
    .swiper-pagination-bullet {
    transition: 0.2s transform, 0.2s right;
  }
  .swiper-pagination-fraction {
    color: var(--swiper-pagination-fraction-color, inherit);
  }
  .swiper-pagination-progressbar {
    background: var(
      --swiper-pagination-progressbar-bg-color,
      rgba(0, 0, 0, 0.25)
    );
    position: absolute;
  }
  .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
    background: var(--swiper-pagination-color, var(--swiper-theme-color));
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    transform: scale(0);
    transform-origin: left top;
  }
  .swiper-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
    transform-origin: right top;
  }
  .swiper-horizontal > .swiper-pagination-progressbar,
  .swiper-pagination-progressbar.swiper-pagination-horizontal,
  .swiper-pagination-progressbar.swiper-pagination-vertical.swiper-pagination-progressbar-opposite,
  .swiper-vertical
    > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite {
    width: 100%;
    height: var(--swiper-pagination-progressbar-size, 4px);
    left: 0;
    top: 0;
  }
  .swiper-horizontal
    > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite,
  .swiper-pagination-progressbar.swiper-pagination-horizontal.swiper-pagination-progressbar-opposite,
  .swiper-pagination-progressbar.swiper-pagination-vertical,
  .swiper-vertical > .swiper-pagination-progressbar {
    width: var(--swiper-pagination-progressbar-size, 4px);
    height: 100%;
    left: 0;
    top: 0;
  }
  .swiper-pagination-lock {
    display: none;
  }
  .swiper-scrollbar {
    border-radius: var(--swiper-scrollbar-border-radius, 10px);
    position: relative;
    touch-action: none;
    background: var(--swiper-scrollbar-bg-color, rgba(0, 0, 0, 0.1));
  }
  .swiper-scrollbar-disabled > .swiper-scrollbar,
  .swiper-scrollbar.swiper-scrollbar-disabled {
    display: none !important;
  }
  .swiper-horizontal > .swiper-scrollbar,
  .swiper-scrollbar.swiper-scrollbar-horizontal {
    position: absolute;
    left: var(--swiper-scrollbar-sides-offset, 1%);
    bottom: var(--swiper-scrollbar-bottom, 4px);
    top: var(--swiper-scrollbar-top, auto);
    z-index: 50;
    height: var(--swiper-scrollbar-size, 4px);
    width: calc(100% - 2 * var(--swiper-scrollbar-sides-offset, 1%));
  }
  .swiper-scrollbar.swiper-scrollbar-vertical,
  .swiper-vertical > .swiper-scrollbar {
    position: absolute;
    left: var(--swiper-scrollbar-left, auto);
    right: var(--swiper-scrollbar-right, 4px);
    top: var(--swiper-scrollbar-sides-offset, 1%);
    z-index: 50;
    width: var(--swiper-scrollbar-size, 4px);
    height: calc(100% - 2 * var(--swiper-scrollbar-sides-offset, 1%));
  }
  .swiper-scrollbar-drag {
    height: 100%;
    width: 100%;
    position: relative;
    background: var(--swiper-scrollbar-drag-bg-color, rgba(0, 0, 0, 0.5));
    border-radius: var(--swiper-scrollbar-border-radius, 10px);
    left: 0;
    top: 0;
  }
  .swiper-scrollbar-cursor-drag {
    cursor: move;
  }
  .swiper-scrollbar-lock {
    display: none;
  }
  .swiper-zoom-container {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
  }
  .swiper-zoom-container > canvas,
  .swiper-zoom-container > img,
  .swiper-zoom-container > svg {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
  }
  .swiper-slide-zoomed {
    cursor: move;
    touch-action: none;
  }
  .swiper .swiper-notification {
    position: absolute;
    left: 0;
    top: 0;
    pointer-events: none;
    opacity: 0;
    z-index: -1000;
  }
  .swiper-free-mode > .swiper-wrapper {
    transition-timing-function: ease-out;
    margin: 0 auto;
  }
  .swiper-grid > .swiper-wrapper {
    flex-wrap: wrap;
  }
  .swiper-grid-column > .swiper-wrapper {
    flex-wrap: wrap;
    flex-direction: column;
  }
  .swiper-fade.swiper-free-mode .swiper-slide {
    transition-timing-function: ease-out;
  }
  .swiper-fade .swiper-slide {
    pointer-events: none;
    transition-property: opacity;
  }
  .swiper-fade .swiper-slide .swiper-slide {
    pointer-events: none;
  }
  .swiper-fade .swiper-slide-active {
    pointer-events: auto;
  }
  .swiper-fade .swiper-slide-active .swiper-slide-active {
    pointer-events: auto;
  }
  .swiper-cube {
    overflow: visible;
  }
  .swiper-cube .swiper-slide {
    pointer-events: none;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    z-index: 1;
    visibility: hidden;
    transform-origin: 0 0;
    width: 100%;
    height: 100%;
  }
  .swiper-cube .swiper-slide .swiper-slide {
    pointer-events: none;
  }
  .swiper-cube.swiper-rtl .swiper-slide {
    transform-origin: 100% 0;
  }
  .swiper-cube .swiper-slide-active,
  .swiper-cube .swiper-slide-active .swiper-slide-active {
    pointer-events: auto;
  }
  .swiper-cube .swiper-slide-active,
  .swiper-cube .swiper-slide-next,
  .swiper-cube .swiper-slide-prev {
    pointer-events: auto;
    visibility: visible;
  }
  .swiper-cube .swiper-cube-shadow {
    position: absolute;
    left: 0;
    bottom: 0px;
    width: 100%;
    height: 100%;
    opacity: 0.6;
    z-index: 0;
  }
  .swiper-cube .swiper-cube-shadow:before {
    content: "";
    background: #000;
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    filter: blur(50px);
  }
  .swiper-cube .swiper-slide-next + .swiper-slide {
    pointer-events: auto;
    visibility: visible;
  }
  .swiper-cube .swiper-slide-shadow-cube.swiper-slide-shadow-bottom,
  .swiper-cube .swiper-slide-shadow-cube.swiper-slide-shadow-left,
  .swiper-cube .swiper-slide-shadow-cube.swiper-slide-shadow-right,
  .swiper-cube .swiper-slide-shadow-cube.swiper-slide-shadow-top {
    z-index: 0;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
  }
  .swiper-flip {
    overflow: visible;
  }
  .swiper-flip .swiper-slide {
    pointer-events: none;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    z-index: 1;
  }
  .swiper-flip .swiper-slide .swiper-slide {
    pointer-events: none;
  }
  .swiper-flip .swiper-slide-active,
  .swiper-flip .swiper-slide-active .swiper-slide-active {
    pointer-events: auto;
  }
  .swiper-flip .swiper-slide-shadow-flip.swiper-slide-shadow-bottom,
  .swiper-flip .swiper-slide-shadow-flip.swiper-slide-shadow-left,
  .swiper-flip .swiper-slide-shadow-flip.swiper-slide-shadow-right,
  .swiper-flip .swiper-slide-shadow-flip.swiper-slide-shadow-top {
    z-index: 0;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
  }
  .swiper-creative .swiper-slide {
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    overflow: hidden;
    transition-property: transform, opacity, height;
  }
  .swiper-cards {
    overflow: visible;
  }
  .swiper-cards .swiper-slide {
    transform-origin: center bottom;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    overflow: hidden;
  }
  /**основной код*/
  @font-face {
    font-family: "Gerhaus";
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url(vendor/fonts/Gerhaus-Regular.woff2) format("woff2"),
      url(vendor/fonts/Gerhaus-Regular.woff) format("woff");
  }
  @font-face {
    font-family: "Roboto";
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url(vendor/fonts/Roboto-Regular.woff2) format("woff2"),
      url(vendor/fonts/Roboto-Regular.woff) format("woff");
  }
  @font-face {
    font-family: "Roboto";
    font-style: normal;
    font-weight: 500;
    font-display: swap;
    src: url(vendor/fonts/Roboto-Medium.woff2) format("woff2"),
      url(vendor/fonts/Roboto-Medium.woff) format("woff");
  }
  @font-face {
    font-family: "Roboto";
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: url(vendor/fonts/Roboto-Bold.woff2) format("woff2"),
      url(vendor/fonts/Roboto-Bold.woff) format("woff");
  }
  :root {
    --main-font: "Roboto", "Arial", "Helvetica", sans-serif;
    --accent-font: "Gerhaus", "Arial", "Helvetica", sans-serif;
    --main-text-color: #fff;
    --dark-text-color: #000;
    --main-bg-color: #0d0e11;
    --accent-color: #ea32d9;
    --bg-gradient: linear-gradient(75deg, #1c1c1f 0%, #4f4051 100%);
    --elements-gradient: linear-gradient(90deg, #ea32d9 0%, #004bed 100%);
  }
  html {
    -webkit-text-size-adjust: 100%;
    font-family: monospace, monospace;
    font-size: 16px;
  }
  * {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
  }
  img {
    -webkit-transition: width 0.5s, height 0.5s;
    -o-transition: width 0.5s, height 0.5s;
    transition: width 0.5s, height 0.5s;
  }
  a {
    text-decoration: none;
    cursor: pointer;
    color: var(--main-text-color);
  }
  button {
    font-family: var(--main-font);
    border: none;
    outline: none;
    cursor: pointer;
    padding: 0;
  }
  a:hover,
  button:hover {
    cursor: pointer;
  }
  textarea {
    resize: none;
  }
  input:focus,
  textarea:focus,
  button:focus {
    outline: none;
  }
  h1,
  h2,
  h3 {
    font-family: var(--accent-font);
    text-transform: uppercase;
    margin-top: 0;
    font-weight: 400;
    width: 100%;
  }
  h1 {
    font-size: 6rem;
    line-height: 6rem;
    margin: 0;
    margin-bottom: 30px;
  }
  h2 {
    font-size: 3.8125rem;
    line-height: 3.8125rem;
    margin-bottom: 50px;
    text-align: center;
  }
  h3 {
    font-size: 2.5rem;
    line-height: 2.8rem;
  }
  p,
  span,
  ul,
  ol,
  a {
    font-size: 1.5rem;
    line-height: 1.8rem;
    font-weight: 400;
  }
  p:first-of-type {
    margin-top: 0;
  }
  p:last-of-type {
    margin-bottom: 0;
  }
  .page {
    background: var(--main-bg-color);
    font-family: var(--main-font);
    color: var(--main-text-color);
    width: 100%;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    -moz-text-size-adjust: 100%;
    text-rendering: optimizeLegibility;
    margin: 0;
    min-height: 100vh;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    position: relative;
  }
  .main {
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    overflow: hidden;
  }
  .unscroll {
    overflow: hidden;
  }
  .section {
    margin-top: 150px;
    margin-bottom: 150px;
  }
  .container {
    max-width: 1600px;
    width: 100%;
    margin: 0 auto;
  }
  .btn-general-style {
    max-width: 520px;
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    text-align: center;
    background: var(--elements-gradient);
    color: var(--main-text-color);
    font-family: var(--main-font);
    font-size: 1rem;
    font-weight: 400;
    text-transform: uppercase;
    padding: 10px 10px;
    border: 2px solid transparent;
    -o-border-image: var(--elements-gradient) 2;
    border-image: var(--elements-gradient) 2;
  }
  .hover-link:hover {
    -webkit-filter: drop-shadow(0px 0px 20px #00c8ff);
    filter: drop-shadow(0px 0px 20px 1px #00c8ff);
    cursor: pointer;
  }
  .hover-link-with-line:hover {
    -webkit-filter: drop-shadow(0px 0px 20px #00c8ff);
    filter: drop-shadow(0px 0px 20px 1px #00c8ff);
    text-decoration: underline;
    cursor: pointer;
  }
  .hover-with-gradient:hover {
    background: var(--elements-gradient);
    border: 2px #fff solid;
    -webkit-backdrop-filter: blur(4px);
    backdrop-filter: blur(4px);
    cursor: pointer;
  }
  .hover-bnt:hover {
    background: transparent;
    border: 2px solid transparent;
    -o-border-image: var(--elements-gradient) 2;
    border-image: var(--elements-gradient) 2;
    cursor: pointer;
  }
  .btn-disabled,
  .btn-disabled:active {
    background: #b3b3b3;
    -o-border-image: none;
    border-image: none;
    color: var(--dark-text-color);
  }
  .btn-disabled:hover {
    background: #b3b3b3;
    cursor: auto;
    -o-border-image: none;
    border-image: none;
  }
  .logo-link {
    display: block;
  }
  .logo-link img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
  }
  .contacts-info {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .contacts-info-icons {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .contacts-info-icons a {
    display: block;
    width: 30px;
    height: 30px;
  }
  .contacts-info-icons a img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
  }
  .contacts-info-links a {
    font-size: 1rem;
  }
  .header {
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--dark-text-color);
    white-space: nowrap;
    z-index: 250;
  }
  .header .container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 20px 0 0;
  }
  .header .logo-link {
    width: 208px;
    height: 61px;
    margin-bottom: 20px;
    position: relative;
    overflow: visible;
  }
  .header .logo-link svg {
    width: 100%;
    height: 100%;
    overflow: visible;
    display: block;
    opacity: 1;
    transition: opacity 0.5s ease;
    position: relative;
  }
  .money{
    font-size: 30px !important;
  }
  .proff{
    background: linear-gradient(90deg, #ea32d9 0%, #004bed 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
    margin-bottom: 10px !important;
  }
  .prof{
    text-align: center;
    font-size: 100px;
    background: linear-gradient(90deg, #ea32d9 0%, #004bed 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
    margin-bottom: 10px !important;
  }
  .header .logo-link::after {
    content: '';
    position: absolute;
    top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    background: var(--elements-gradient);
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
    mask-image: url(#mask);
    mask-size: contain;
    mask-repeat: no-repeat;
    overflow: visible;
  }
  .header .logo-link:hover::after {
    opacity: 1;
    pointer-events: all;
  }
  .header .logo-link:hover svg{
    opacity: 0;
  }
  .header .logo-link:hover .triangle {
    -webkit-animation: spin 6s linear infinite;
    animation: spin 6s linear infinite;
    -webkit-transform-origin: center;
    -ms-transform-origin: center;
    transform-origin: center;
    transform-box: fill-box;
  }
  @-webkit-keyframes spin {
    from {
      -webkit-transform: rotate(0deg);
      transform: rotate(0deg);
    }
    to {
      -webkit-transform: rotate(360deg);
      transform: rotate(360deg);
    }
  }
  @keyframes spin {
    from {
      -webkit-transform: rotate(0deg);
      transform: rotate(0deg);
    }
    to {
      -webkit-transform: rotate(360deg);
      transform: rotate(360deg);
    }
  }
  .burger-btn {
    display: none;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    width: 35px;
    height: 19px;
    cursor: pointer;
    z-index: 250;
    border-radius: 10px;
  }
  .burger-btn span {
    display: block;
    width: 35px;
    height: 3px;
    background: var(--main-text-color);
    -webkit-transition: 0.8s all;
    -o-transition: 0.8s all;
    transition: 0.8s all;
    border-radius: 8px;
  }
  .burger-btn_active span {
    height: 3px;
  }
  .burger-btn_active span:nth-child(1) {
    -webkit-transform: translateY(7px) rotate(-45deg);
    -ms-transform: translateY(7px) rotate(-45deg);
    transform: translateY(7px) rotate(-45deg);
  }
  .burger-btn_active span:nth-child(2) {
    display: none;
  }
  .burger-btn_active span:nth-child(3) {
    -webkit-transform: translateY(-9px) rotate(45deg);
    -ms-transform: translateY(-9px) rotate(45deg);
    transform: translateY(-9px) rotate(45deg);
  }
  .header-wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .header-nav {
    margin: 0 auto;
  }
  .header-menu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
  }
  .header-menu li {
    position: relative;
    margin-right: 50px;
    font-size: 1rem;
    text-transform: uppercase;
    line-height: 1.2rem;
    padding: 22px 0 50px;
    cursor: pointer;
  }
  .header-menu li span {
    font-size: 1rem;
    line-height: 1.2rem;
  }
  .header-menu li:last-of-type {
    margin-right: 0;
  }
  .header-btn-down {
    display: block;
    background: url("data:image/svg+xml;charset=UTF-8,%3csvg width='20' height='17' viewBox='0 0 20 17' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M10 17L20 0H0L10 17Z' fill='white'/%3e%3c/svg%3e")
      center no-repeat;
    width: 20px;
    height: 17px;
    position: absolute;
    top: 50px;
    left: 50%;
    -webkit-transform: translate(-50%, 0);
    -ms-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
    -webkit-transition: -webkit-transform 0.3s ease;
    transition: -webkit-transform 0.3s ease;
    -o-transition: transform 0.3s ease;
    transition: transform 0.3s ease;
    transition: transform 0.3s ease, -webkit-transform 0.3s ease;
  }
  .header-menu li a {
    font-size: 1rem;
    text-transform: uppercase;
    line-height: 1.2rem;
  }
  .header-submenu {
    list-style: none;
    padding: 0;
    margin: 0;
    position: absolute;
    background: var(--main-bg-color);
    width: 320px;
    text-align: center;
    border: 1px solid transparent;
    -o-border-image: var(--elements-gradient) 1;
    border-image: var(--elements-gradient) 1;
    bottom: 0;
    left: 50%;
    -webkit-transform: translate(-50%, 100%);
    -ms-transform: translate(-50%, 100%);
    transform: translate(-50%, 100%);
    z-index: 250;
    opacity: 0;
    pointer-events: none;
    -o-transition: opacity 0.2s cubic-bezier(0.895, 0.03, 0.685, 0.22);
    transition: opacity 0.2s cubic-bezier(0.895, 0.03, 0.685, 0.22);
    -webkit-transition: opacity 0.2s cubic-bezier(0.895, 0.03, 0.685, 0.22);
  }
  .header-submenu li {
    border-bottom: 1px solid transparent;
    -o-border-image: var(--elements-gradient) 1;
    border-image: var(--elements-gradient) 1;
    margin-right: 0;
    padding: 0;
  }
  .header-submenu li:last-of-type {
    border-bottom: none;
  }
  .header-submenu li a {
    padding: 13px 40px;
    display: block;
    width: 100%;
  }
  .header .contacts-info {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 22px;
  }
  .header .contacts-info-icons a {
    margin-right: 30px;
  }
  .header .contacts-info-links {
    text-align: end;
    display: flex;
    flex-direction: column;
  }
  #tel-icon, #mail-icon {
      display: none;
  }
  .offer-main {
    width: 100%;
    background-image: url(./imgs/svg/offer-line.svg),
      -o-linear-gradient(15deg, #1c1c1f 0%, #4f4051 100%);
    background-image: url(./imgs/svg/offer-line.svg),
      linear-gradient(75deg, #1c1c1f 0%, #4f4051 100%);
    padding-top: 114px;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    background-position: center 50%, center;
  }
  .offer-main .container {
    z-index: 1;
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .offer-main-img {
    max-width: 925px;
    width: 100%;
    height: 958px;
    margin-right: 20px;
    -webkit-filter: grayscale(1);
    filter: grayscale(1);
    transition: filter 0.5s ease;
  }
  .offer-main-img img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
  }
  .offer-main-img:hover {
    -webkit-filter: grayscale(0);
    filter: grayscale(0);
  }
  .offer-main-info {
    max-width: 655px;
    padding: 30px 0;
  }
  .offer-main-info h1 {
    margin-bottom: 100px;
  }
  .offer-main-info h2 {
    margin-bottom: 30px;
    text-align: start;
  }
  .offer-btns {
    margin-top: 30px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
  .offer-btn {
    margin-right: 20px;
    text-transform: uppercase;
    display: block;
    padding: 15px 10px;
    -webkit-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
    position: relative;
    background: var(--main-bg-color);
    border: 2px solid transparent;
    -o-border-image: var(--elements-gradient) 2;
    border-image: var(--elements-gradient) 2;
    color: var(--main-text-color);
    font-size: 1.125rem;
    line-height: 1.125rem;
    max-width: 250px;
    width: 100%;
    text-align: center;
  }
  .offer-btn:hover {
    background: var(--elements-gradient);
    -webkit-box-shadow: 0px 0px 20px #00c8ff;
    box-shadow: 0px 0px 20px #00c8ff;
  }
  .offer-btn::before {
    content: "";
    position: absolute;
    inset: 0;
    background: var(--main-bg-color);
  }
  .offer-btn span {
    position: relative;
    z-index: 1;
  }
  .offer-btn i {
    position: absolute;
    inset: 0;
    display: block;
  }
  .offer-btn i::before {
    content: "";
    position: absolute;
    border: 2px solid transparent;
    -o-border-image: var(--elements-gradient) 2;
    border-image: var(--elements-gradient) 2;
    width: 18px;
    height: 16px;
    top: -9.5px;
    left: 80%;
    background: var(--main-bg-color);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    -webkit-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
  }
  .offer-btn:hover i::before {
    width: 43px;
    left: 20%;
  }
  .offer-btn i::after {
    content: "";
    position: absolute;
    border: 2px solid transparent;
    -o-border-image: var(--elements-gradient) 2;
    border-image: var(--elements-gradient) 2;
    width: 18px;
    height: 16px;
    bottom: -9.5px;
    left: 20%;
    background: var(--main-bg-color);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    -webkit-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
  }
  .offer-btn:hover i::after {
    width: 43px;
    left: 80%;
  }
  .offer-btn:last-of-type {
    margin-right: 0;
  }
  .offer-sm {
    padding-top: 114px;
    width: 100%;
    background-image: url(./imgs/svg/usluga-line.svg),
      -o-linear-gradient(15deg, #1c1c1f 0%, #4f4051 100%);
    background-image: url(./imgs/svg/usluga-line.svg),
      linear-gradient(75deg, #1c1c1f 0%, #4f4051 100%);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    background-position: center 50%, center;
  }
  .offer-sm .container {
    padding: 50px 0;
    z-index: 1;
    position: relative;
  }
  .offer-sm .offer-btns {
    max-width: 1060px;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }
  .offer-sm .offer-btn {
    margin-right: 150px;
  }
  .offer-sm .offer-btn:last-child {
    margin-right: 0;
  }
  .breadcrumb {
    padding: 0;
    margin: 0;
    list-style: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 80px;
  }
  ul.breadcrumb li + li:before {
    color: var(--main-text-color);
    content: "/";
    padding: 0 5px;
    margin-right: 0 !important;
  }
  .breadcrumb li {
    color: var(--main-text-color);
    font-size: 16px;
    font-weight: 400;
    -webkit-box-align: start !important;
    -ms-flex-align: start !important;
    align-items: flex-start !important;
  }
  .breadcrumb li:first-of-type a {
    background: url("data:image/svg+xml;charset=UTF-8,%3csvg width='19' height='19' viewBox='0 0 19 19' fill='none' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink'%3e%3crect width='19' height='19' fill='url(%23pattern0_169_4854)'/%3e%3cdefs%3e%3cpattern id='pattern0_169_4854' patternContentUnits='objectBoundingBox' width='1' height='1'%3e%3cuse xlink:href='%23image0_169_4854' transform='scale(0.01)'/%3e%3c/pattern%3e%3cimage id='image0_169_4854' width='100' height='100' xlink:href='data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAGQAAABkCAYAAABw4pVUAAAACXBIWXMAAAsTAAALEwEAmpwYAAADXklEQVR4nO3dW4hNURzH8YVxy11yj1zGJRJJkplckiTlxRS5JKWk5E3yNI9ePSgvKI3UTgpJGSQPeHApIhERuYRxJ4b5arPVMRrWzF5rn7X3+X3qPE1n77X+v86/f6fZ6xgjIiIiIiIi1oCuwFpgH7AXWANU2V9BnAGGAJf428X4byp1hoDxwB3adh+YrFCyCWMO8IL/awLmKRS/YawAPmPvC7BaofgJYyvwnfZrAeoVirsgugC7SS+ewroqmHRh9AKO484poK9C6VgYw4DLuHcdGKlQ2hfGFOAB/jwGpisUuzAWAq/x7x2wRKH8O4x1yaialWZgo0Jpe6xtIXs/x2Kgk4L5FUQVsIfy21/xYzHQGzhBOE4D/SrykwIMB64SnhvAKFNJgKnAQ8L1BJhhKgGwCHhD+N4DS02RAeuBr+RHM7DJFE08UiajZV7tKsxYDHQDDpB/EdDD5BnQBzhJcZwF+ps8AkYA1yiem8BokyfANOARxfUUmGnyAFgMvKX4PgDLTMiADTkba9P6Bmw2oSnAWOtiLO5sQgB0BxpSbyn/DgM9yx3GAOBcuSsRkAvAoHKFMQa4Ve4KBOguUJ11GLOAZ+XeecBeAnOzCmNJ8g8C8m8fgeW+w9iYfAMq9mPxFh9BVPpYG85YnIy1h1IvSY6kHouBgcB51dKZ+ImvwR0NYyxw291aJHEPmNjeMGYDz39fQZx7BdTahlEDfHK/BmklrnGNTSCNrd8p3jTaBHLM3/2llaM2gUwCrnTweT6x8z15GGmCcQ2os1xEJahzXmAFkooCCYwCCYwCCYwCCYwCCYwCCUzFBHIxuU+aV3wN3yomkMjBOuPHCXxTILYUiFuRdeUViFpWCbUsW2pZbkXWlVcgalkl1LJsqWW5FVlXXoGoZZVQy7KlluVWZF15BaKWVUIty5ZalluRdeUViFpWCbUsW2pZbkXWlVcgalkl1LJsqWW5FVlXXoGoZZVQy7KlluVWZF15BcJy/GtwEMjBDNbp92wTy41WZ7DR7Q7WuSODdY4zIYgfXvS4yaYOn37w5xqHev4ppSMmFMnJcvEhwz6OY61xuM5aT+d8nYlrYEKSnBi0ANgG7Ez5qgdWxj/44um07VXJPdKuM97r/MKcCy8iIiIiIiIiImLs/QBHUx9GBdAw9wAAAABJRU5ErkJggg=='/%3e%3c/defs%3e%3c/svg%3e ")
      center no-repeat;
    width: 19px;
    height: 19px;
    background-size: cover;
    display: inline-block;
  }
  .breadcrumb a {
    color: var(--main-text-color);
    font-size: 16px;
    font-weight: 400;
  }
  .main-info-block .container {
    background: var(--dark-text-color);
    border: 1px var(--main-text-color) solid;
    padding: 50px 130px;
  }
  .main-info-block h2 {
    text-align: start;
  }
  .main-info-block-wrap-with-img {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 50px;
    overflow: hidden;
  }
  .main-info-block-img {
    max-width: 570px;
    height: auto;
    -webkit-transition: 0.3s linear;
    -o-transition: 0.3s linear;
    transition: 0.3s linear;
  }
  .main-info-block-img img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: left;
    object-position: left;
  }
  .main-info-block-img:hover {
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
  }
  .main-info-block-text {
    background: rgba(0, 0, 0, 0.2);
    border: 1px var(--main-text-color) solid;
    -webkit-backdrop-filter: blur(42px);
    backdrop-filter: blur(42px);
    padding: 70px 20px;
    width: 60%;
  }
  .main-info-block-advantages {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-top: 50px;
    gap: 20px;
  }
  .main-info-block-advantages-card {
    position: relative;
    padding: 30px 20px;
    background: var(--main-text-color);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    min-height: 233px;
    width: 250px;
    overflow: hidden;
  }
  .main-info-block-advantages-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--elements-gradient);
    opacity: 0;
    transition: opacity 0.4s linear;
    z-index: 0;
  }
  .main-info-block-advantages-card:hover::before {
    opacity: 1;
  }
  .main-info-block-advantages-card img {
    width: 50px;
    height: 50px;
    margin-bottom: 30px;
    -o-object-fit: cover;
    object-fit: cover;
    transition: filter 0.3s ease;
    position: relative;
    z-index: 1;
  }
  .main-info-block-advantages-card p {
    text-align: center;
    font-size: 1rem;
    line-height: 1.2rem;
    color: var(--dark-text-color);
    -webkit-box-flex: 2;
    -ms-flex: 2;
    flex: 2;
    transition: color 0.3s ease;
    position: relative;
    z-index: 1;
  }
  .main-info-block-advantages-card:hover p {
    color: var(--main-text-color);
  }
  .main-info-block-advantages-card:hover img {
    -webkit-filter: brightness(0) invert(1);
    filter: brightness(0) invert(1);
  }
  .main-dev-card {
    width: 100%;
    background: var(--dark-text-color);
    margin-bottom: 20px;
    position: relative;
  }
  .main-dev-card:last-of-type {
    margin-bottom: 0;
  }
  .main-dev-card::before {
    content: "";
    position: absolute;
    background: url(./imgs/svg/hover-shup.svg) center no-repeat;
    bottom: 0;
    left: 0;
    width: 365px;
    height: 142px;
    -webkit-transition: opacity 0.3s linear;
    -o-transition: opacity 0.3s linear;
    transition: opacity 0.3s linear;
    opacity: 0;
    background-size: contain;
  }
  .main-dev-card p {
    font-size: 2.5rem;
    font-family: var(--accent-font);
    text-transform: uppercase;
    line-height: 2.5rem;
    max-width: 550px;
    width: 100%;
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translate(0, -50%);
    transition: left 0.5s ease;
  }
  .main-dev-card-wrap {
    padding: 30px 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
      -ms-flex-pack: end;
      justify-content: flex-end;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: relative;
  }
  .main-dev-card:hover .main-dev-card-wrap {
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
  }
  .main-dev-card:hover p {
    text-align: center;
    background: -webkit-gradient(
      linear,
      left top,
      right top,
      from(#ea32d9),
      to(#004bed)
    );
    background: -o-linear-gradient(left, #ea32d9 0%, #004bed 100%);
    background: linear-gradient(90deg, #ea32d9 0%, #004bed 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
  }
  .main-dev-card:hover::before {
    opacity: 1;
  }
  .main-dev-card__links {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .main-dev-card__links a {
    border: 2px solid transparent;
    -o-border-image: var(--elements-gradient) 2;
    border-image: var(--elements-gradient) 2;
    margin-bottom: 20px;
    text-align: center;
    text-transform: uppercase;
    font-size: 1rem;
    line-height: 1rem;
    padding: 14px;
    display: block;
    width: 250px;
  }
  .main-dev-card__links a:last-of-type {
    margin-bottom: 0;
  }
  .what-we-offer-cards {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 20px;
  }
  .what-we-offer-card {
    position: relative;
    max-width: 385px;
    width: 100%;
    z-index: 1;
    min-height: 132px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    overflow: hidden;
  }
  .what-we-offer-card::before {
    content: "";
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    -webkit-backdrop-filter: blur(16.2px);
    backdrop-filter: blur(16.2px);
  }
  .what-we-offer-card::after {
    content: "";
    width: 100px;
    height: 100px;
    display: block;
    background: var(--elements-gradient);
    opacity: 0.9;
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: -2;
    -webkit-transition: 0.3s linear;
    -o-transition: 0.3s linear;
    transition: 0.3s linear;
  }
  .what-we-offer-card p {
    padding: 20px;
    position: relative;
    z-index: 5;
  }
  .what-we-offer-card img {
    width: 38px;
    height: 38px;
    position: absolute;
    right: 0;
    bottom: 0;
    -webkit-transition: 0.3s linear;
    -o-transition: 0.3s linear;
    transition: 0.3s linear;
  }
  .what-we-offer-card:hover {
    overflow: visible;
  }
  .what-we-offer-card:hover img {
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
  }
  .what-we-offer-card:hover::after {
    bottom: -10px;
    left: -10px;
  }
  .process-main-card {
    margin-bottom: 20px;
    background: var(--dark-text-color);
    -webkit-backdrop-filter: blur(42px);
    backdrop-filter: blur(42px);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 30px 20px;
    position: relative;
  }
  .process-main-card::before {
    content: "";
    position: absolute;
    background: url(./imgs/svg/hover-shup-rotate.svg) center no-repeat;
    bottom: 0;
    right: 0;
    width: 365px;
    height: 142px;
    -webkit-transition: opacity 0.3s linear;
    -o-transition: opacity 0.3s linear;
    transition: opacity 0.3s linear;
    opacity: 0;
    background-size: contain;
  }
  .process-main-card:hover::before {
    opacity: 1;
  }
  .process-main-card:last-of-type {
    margin-bottom: 0;
  }
  .process-main-card-text {
    width: 75%;
  }
  .process-main-card-text h3 {
    margin-bottom: 10px;
  }
  .process-main-card strong {
    font-size: 2.5rem;
    font-family: var(--accent-font);
    text-transform: uppercase;
    line-height: 2.5rem;
    position: absolute;
    top: 30px;
    right: 20px;
    transition: right 0.5s ease; 
  }
  .process-main-card:hover strong {
    position: absolute;
    top: 30px;
    right: 310px;
    -webkit-transition: 0.3s linear;
    -o-transition: 0.3s linear;
    transition: 0.3s linear;
  }
  .uslugi-main {
    position: relative;
    z-index: 1;
    text-align: center;
  }
  .uslugi-main__img {
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    width: 100%;
    max-height: 778px;
  }
  .uslugi-main-cards {
    margin: 50px auto 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 20px;
    max-width: 1332px;
  }
  .uslugi-main-card {
    padding: 30px 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    width: 385px;
    min-height: 335px;
    position: relative;
    z-index: 1;
    text-align: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  .uslugi-main-card:nth-of-type(4) {
    margin-left: 130px;
  }
  .uslugi-main-card::before {
    content: "";
    position: absolute;
    display: block;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    -webkit-backdrop-filter: blur(42px);
    backdrop-filter: blur(42px);
    z-index: -1;
  }
  .uslugi-main-card::after {
    content: "";
    position: absolute;
    display: block;
    width: 30px;
    height: 30px;
    top: 0;
    right: 0;
    background: url("data:image/svg+xml;charset=UTF-8,%3csvg width='30' height='30' viewBox='0 0 30 30' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M1.37896 27.138L24.579 3.97426L4.69325 3.97426L4.5228 1.30806L29.1432 1.30806L29.1432 25.89L26.4729 25.7198L26.4729 5.86518L3.27284 29.0289L1.37896 27.138Z' fill='white'/%3e%3c/svg%3e")
      center no-repeat;
    opacity: 0;
    -webkit-transition: opacity 0.5s linear;
    -o-transition: opacity 0.5s linear;
    transition: opacity 0.5s linear;
  }
  .uslugi-main-card h3 {
    margin-bottom: 0;
  }
  .uslugi-main-card p {
    max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s linear;
    -webkit-transition:  max-height 0.5s linear;
    -o-transition: max-height 0.5s linear;
    margin-top: 10px;
  }
  .uslugi-main-card:hover::before {
    -webkit-backdrop-filter: blur(0px);
    backdrop-filter: blur(0px);
  }
  .uslugi-main-card:hover::after {
    opacity: 1;
  }
  .uslugi-main-card:hover p {
   max-height: 100%;
  }
  .advantages {
    text-align: center;
    padding-bottom: 70px;
  }
  .advantages-wrap {
    margin: 150px auto 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    max-width: 1420px;
  }
  .advantages-wrap ul {
    list-style: none;
    margin: 0;
    padding: 0;
    max-width: 520px;
    width: 100%;
    position: relative;
    z-index: 1;
  }
  .advantages-wrap ul::before {
    content: "";
    display: block;
    width: 385px;
    height: 385px;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    -webkit-backdrop-filter: blur(42px);
    backdrop-filter: blur(42px);
    position: absolute;
    top: -50%;
    right: 0;
    z-index: -1;
  }
  .advantages-wrap ul::after {
    content: "";
    display: block;
    width: 218px;
    height: 218px;
    background: var(--elements-gradient);
    border-radius: 50%;
    position: absolute;
    top: 50%;
    right: -90px;
    z-index: -2;
    -webkit-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    transform: translate(0, -50%);
    -webkit-transition: right 0.3s ease;
    transition: right 0.3s ease;
    -o-transition: right 0.3s ease;
    transition: right 0.3s ease;
    -webkit-transition: right 0.3s ease, right 0.3s ease;
    -o-transition: right 0.3s ease, right 0.3s ease;
    transition: right 0.3s ease, right 0.3s ease;
  }
  .advantages-wrap:hover ul::after {
    right: 15%;
  }
  .advantages-wrap ul li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 44px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
  .advantages-wrap ul li:last-of-type {
    margin-bottom: 0;
  }
  .advantages-wrap ul li p {
    margin: 0;
    max-width: 385px;
    width: 100%;
    text-align: center;
  }
  .advantages-wrap ul li p:first-of-type {
    font-family: var(--accent-font);
    font-size: 2.5rem;
    line-height: 2.5rem;
    text-align: start;
    max-width: 135px;
    width: 100%;
  }
  .advantages-wrap:hover ul li p:first-of-type {
    background: var(--elements-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
  }
  .cases-cards {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 20px;
  }
  .cases-card {
    position: relative;
    width: 49%;
    min-height: 295px;
  }
  .cases-card__img {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    -webkit-filter: grayscale(1);
    filter: grayscale(1);
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center;
    transition: filter 0.5s ease;
  }
  .cases-card:hover .cases-card__img {
    -webkit-filter: grayscale(0);
    filter: grayscale(0);
  }
  .cases-card__info {
    position: absolute;
    top: 0;
    left: 0;
    width: 35%;
   
    height: 100%;
    z-index: 1;
    padding: 60px 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  .cases-card__info h3 {
    margin-bottom: 0;
  }
  .cases-card__info p {
    max-height: 0;
    margin-top: 10px;
    overflow: hidden;
  transition: max-height 0.5s linear;
    -webkit-transition:  max-height 0.5s linear;
    -o-transition: max-height 0.5s linear;
  }
  .cases-card:hover p {
   max-height: 100%;
  }
  .cases-card__info::before {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.5);
    -webkit-backdrop-filter: blur(42px);
    backdrop-filter: blur(42px);
    z-index: -1;
  }
  .cases-card__info:after {
    content: "";
    display: block;
    width: 35px;
    height: 35px;
    background: url("data:image/svg+xml;charset=UTF-8,%3csvg width='36' height='35' viewBox='0 0 36 35' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M0.351971 2.69052L29.3145 31.653L4.48947 31.653L4.27668 34.9866H35.0124V4.25095L31.6787 4.46373L31.6787 29.2887L2.71626 0.326238L0.351971 2.69052Z' fill='white'/%3e%3c/svg%3e")
      center no-repeat;
    position: absolute;
    bottom: 20px;
    right: 20px;
  }
  .cases .btn-general-style {
    margin: 50px auto 0;
  }
  .skills-tabs {
    position: relative;
  }
  .tabs {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    background: var(--dark-text-color);
    margin: 0;
    margin-bottom: 50px;
    list-style: none;
    padding: 0;
    position: relative;
  }
  .tab-btn {
    background: transparent;
    color: var(--main-text-color);
    text-align: center;
    font-size: 1.5rem;
    line-height: 1.8rem;
    padding: 26px 50px;
    max-width: 188px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  .first-tab-btn {
    display: none;
  }
  .first-tab-btn:after {
    content: "";
    display: none;
    background: url("data:image/svg+xml;charset=UTF-8,%3csvg width='20' height='17' viewBox='0 0 20 17' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M10 17L20 0H0L10 17Z' fill='white'/%3e%3c/svg%3e")
      center no-repeat;
    display: none;
    width: 20px;
    height: 20px;
    position: absolute;
    top: 50%;
    right: 10px;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    cursor: pointer;
    -webkit-transition: -webkit-transform 0.3s linear;
    transition: -webkit-transform 0.3s linear;
    -o-transition: transform 0.3s linear;
    transition: transform 0.3s linear;
    transition: transform 0.3s linear, -webkit-transform 0.3s linear;
  }
  .tab-btn_active {
    background: var(--main-text-color);
    color: var(--dark-text-color);
    -webkit-filter: none !important;
    filter: none !important;
  }
  .tab-content-wrap {
    display: none;
  }
  .tab-content-wrap h3 {
    text-align: center;
    margin-bottom: 50px;
  }
  .tab-content {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
  }
  .tab-content-wrap.no-active {
    display: none;
  }
  .tab-content-wrap_active {
    display: block;
  }
  .tab-content__img {
    width: 520px;
    height: 520px;
    position: absolute;
    top: 30px;
    left: 110px;
    z-index: 2;
  }
  .tab-content img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center;
  }
  .tab-content__img::before {
    content: "";
    background: url(./imgs/svg/skills-left-bg.svg) center no-repeat;
    position: absolute;
    display: block;
    width: 496px;
    height: 390px;
    z-index: -1;
    top: -100px;
    left: -175px;
  }
  .tab-content__text {
    background: var(--main-text-color);
    color: var(--dark-text-color);
    padding: 30px 0 30px 130px;
    width: 66%;
    min-height: 515px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    position: relative;
  }
  .tab-content__text::before {
    content: "";
    background: url(./imgs/svg/skills-right-bg.svg) center no-repeat;
    position: absolute;
    display: block;
    width: 838px;
    height: 343px;
    z-index: -1;
    bottom: -140px;
    right: -170px;
    z-index: -1;
  }
  .tab-content__text:after {
    content: "";
    background: var(--main-text-color);
    display: block;
    width: 200%;
    height: 100%;
    position: absolute;
    right: -200%;
    top: 0;
  }
  .tab-content__text p:first-of-type {
    margin-bottom: 0;
  }
  .block-with-btn-scroll-to-form .container {
    text-align: center;
  }
  .block-with-btn-scroll-to-form .btn-general-style {
    margin: 50px auto 0;
  }
  .competencies-cards {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    gap: 20px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .competencies-card {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    width: 41%;
    position: relative;
    z-index: 1;
  }
  .competencies-card h3 {
    margin-bottom: 30px;
  }
  .competencies-card p {
    max-width: 385px;
    -ms-flex-item-align: end;
    align-self: flex-end;
    position: relative;
  }
  .competencies-card p::before {
    content: "";
    display: block;
    width: 82px;
    height: 82px;
    border-radius: 50%;
    background: var(--elements-gradient);
    -webkit-filter: blur(22.9px);
    filter: blur(22.9px);
    position: absolute;
    z-index: -1;
    opacity: 0;
    -webkit-transition: opacity 0.3s linear;
    -o-transition: opacity 0.3s linear;
    transition: opacity 0.3s linear;
    top: -25px;
    left: -110px;
  }
  .competencies-card:hover p::before {
    opacity: 1;
  }
  .technologies-slider {
    width: 100%;
    height: 115px;
  }
  .technologies-slider .swiper-wrapper {
    -webkit-transition-timing-function: linear !important;
    -o-transition-timing-function: linear !important;
    transition-timing-function: linear !important;
  }
  .technologies-slider .swiper-slide {
    width: 115px;
    height: 115px;
    -webkit-filter: grayscale(1);
    filter: grayscale(1);
    transition: filter 0.5s ease;
  }
  .technologies-slider .swiper-slide:hover {
    -webkit-filter: grayscale(0);
    filter: grayscale(0);
  }
  .technologies-slider .swiper-slide img {
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
    object-fit: contain;
  }
  .reviews-slider-wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    max-width: 1311px;
    margin: 0 auto;
  }
  .reviews-slider {
    width: 100%;
  }
  .reviews-slider-card {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
  .reviews-slider-card__img-wrap {
    border-radius: 50%;
    min-width: 200px;
    height: 200px;
    margin-right: 90px;
    position: relative;
    -ms-flex-item-align: center;
    -ms-grid-row-align: center;
    align-self: center;
  }
  .reviews-slider-card__img-wrap::before {
    content: "";
    position: absolute;
    inset: 0px;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 50%;
    background: var(--elements-gradient);
    -webkit-mask: -webkit-gradient(
          linear,
          left top,
          left bottom,
          color-stop(0, #fff)
        )
        content-box,
      -webkit-gradient(linear, left top, left bottom, color-stop(0, #fff));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: -webkit-gradient(linear, left top, left bottom, color-stop(0, #fff))
        content-box,
      -webkit-gradient(linear, left top, left bottom, color-stop(0, #fff));
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    padding: 2px;
  }
  .reviews-slider-card__img-wrap img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
  }
  .reviews-slider-card__text-wrap {
   
    padding: 30px 20px;
    max-width: 1060px;
    width: 100%;
  }
  .reviews-slider-wrap .swiper-btns {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: space-between;
    -ms-flex-pack: space-between;
    justify-content: space-between;
    width: 160px;
    height: 50px;
    z-index: 1;
    position: relative;
    top: auto;
    bottom: auto;
    margin-top: 30px;
    -ms-flex-item-align: end;
    align-self: flex-end;
  }
  .reviews-slider-wrap .swiper-button-next,
  .reviews-slider-wrap .swiper-button-prev {
    width: 50px;
    height: 50px;
  }
  .reviews-slider-wrap .swiper-button-next:after {
    content: "";
    background: url("data:image/svg+xml;charset=UTF-8,%3csvg width='50' height='50' viewBox='0 0 50 50' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cg clip-path='url(%23clip0_61_554)'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M35.2109 26.375L26.3734 35.2188C25.7625 35.8282 24.7734 35.8282 24.1641 35.2188C23.5531 34.6094 23.5531 33.6094 24.1641 33L30.6031 26.5625H14.0625C13.1984 26.5625 12.5 25.8594 12.5 25C12.5 24.1406 13.1984 23.4375 14.0625 23.4375H30.6031L24.1641 17C23.5531 16.3906 23.5531 15.4062 24.1641 14.7812C24.7734 14.1718 25.7625 14.1718 26.3734 14.7812L35.2109 23.625C35.5859 24 35.7031 24.5156 35.6172 25C35.7031 25.4844 35.5859 26 35.2109 26.375ZM25 0C11.1922 0 0 11.1875 0 25C0 38.8125 11.1922 50 25 50C38.8078 50 50 38.8125 50 25C50 11.1875 38.8078 0 25 0Z' fill='white'/%3e%3c/g%3e%3cdefs%3e%3cclipPath id='clip0_61_554'%3e%3crect width='50' height='50' fill='white'/%3e%3c/clipPath%3e%3c/defs%3e%3c/svg%3e")
      center no-repeat !important;
    display: block;
    width: 50px;
    height: 50px;
  }
  .reviews-slider-wrap .swiper-button-next:hover:after {
    background: url("data:image/svg+xml;charset=UTF-8,%3csvg width='50' height='50' viewBox='0 0 50 50' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cg clip-path='url(%23clip0_61_523)'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M35.2109 26.375L26.3734 35.2188C25.7625 35.8282 24.7734 35.8282 24.1641 35.2188C23.5531 34.6094 23.5531 33.6094 24.1641 33L30.6031 26.5625H14.0625C13.1984 26.5625 12.5 25.8594 12.5 25C12.5 24.1406 13.1984 23.4375 14.0625 23.4375H30.6031L24.1641 17C23.5531 16.3906 23.5531 15.4062 24.1641 14.7812C24.7734 14.1718 25.7625 14.1718 26.3734 14.7812L35.2109 23.625C35.5859 24 35.7031 24.5156 35.6172 25C35.7031 25.4844 35.5859 26 35.2109 26.375ZM25 0C11.1922 0 0 11.1875 0 25C0 38.8125 11.1922 50 25 50C38.8078 50 50 38.8125 50 25C50 11.1875 38.8078 0 25 0Z' fill='url(%23paint0_linear_61_523)'/%3e%3c/g%3e%3cdefs%3e%3clinearGradient id='paint0_linear_61_523' x1='0' y1='25' x2='50' y2='25' gradientUnits='userSpaceOnUse'%3e%3cstop stop-color='%23EA32D9'/%3e%3cstop offset='1' stop-color='%23004BED'/%3e%3c/linearGradient%3e%3cclipPath id='clip0_61_523'%3e%3crect width='50' height='50' fill='white'/%3e%3c/clipPath%3e%3c/defs%3e%3c/svg%3e")
      center no-repeat !important;
  }
  .reviews-slider-wrap .swiper-button-prev:after {
    content: "";
    background: url("data:image/svg+xml;charset=UTF-8,%3csvg width='50' height='50' viewBox='0 0 50 50' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M14.7891 26.375L23.6266 35.2188C24.2375 35.8282 25.2266 35.8282 25.8359 35.2188C26.4469 34.6094 26.4469 33.6094 25.8359 33L19.3969 26.5625H35.9375C36.8016 26.5625 37.5 25.8594 37.5 25C37.5 24.1406 36.8016 23.4375 35.9375 23.4375H19.3969L25.8359 17C26.4469 16.3906 26.4469 15.4062 25.8359 14.7812C25.2266 14.1718 24.2375 14.1718 23.6266 14.7812L14.7891 23.625C14.4141 24 14.2969 24.5156 14.3828 25C14.2969 25.4844 14.4141 26 14.7891 26.375ZM25 0C38.8078 0 50 11.1875 50 25C50 38.8125 38.8078 50 25 50C11.1922 50 0 38.8125 0 25C0 11.1875 11.1922 0 25 0Z' fill='white'/%3e%3c/svg%3e")
      center no-repeat !important;
    display: block;
    width: 50px;
    height: 50px;
  }
  .reviews-slider-wrap .swiper-button-prev:hover:after {
    background: url("data:image/svg+xml;charset=UTF-8,%3csvg width='50' height='50' viewBox='0 0 50 50' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cg clip-path='url(%23clip0_61_529)'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M14.7891 26.375L23.6266 35.2188C24.2375 35.8282 25.2266 35.8282 25.8359 35.2188C26.4469 34.6094 26.4469 33.6094 25.8359 33L19.3969 26.5625H35.9375C36.8016 26.5625 37.5 25.8594 37.5 25C37.5 24.1406 36.8016 23.4375 35.9375 23.4375H19.3969L25.8359 17C26.4469 16.3906 26.4469 15.4062 25.8359 14.7812C25.2266 14.1718 24.2375 14.1718 23.6266 14.7812L14.7891 23.625C14.4141 24 14.2969 24.5156 14.3828 25C14.2969 25.4844 14.4141 26 14.7891 26.375ZM25 0C38.8078 0 50 11.1875 50 25C50 38.8125 38.8078 50 25 50C11.1922 50 0 38.8125 0 25C0 11.1875 11.1922 0 25 0Z' fill='url(%23paint0_linear_61_529)'/%3e%3c/g%3e%3cdefs%3e%3clinearGradient id='paint0_linear_61_529' x1='50' y1='25' x2='0' y2='25' gradientUnits='userSpaceOnUse'%3e%3cstop stop-color='%23EA32D9'/%3e%3cstop offset='1' stop-color='%23004BED'/%3e%3c/linearGradient%3e%3cclipPath id='clip0_61_529'%3e%3crect width='50' height='50' fill='white' transform='matrix(-1 0 0 1 50 0)'/%3e%3c/clipPath%3e%3c/defs%3e%3c/svg%3e")
      center no-repeat !important;
  }
  .form-main-wrapper {
    background: var(--dark-text-color);
    max-width: 1330px;
    margin: 0 auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
  }
  .form-main-img {
    max-width: 655px;
    width: 100%;
    height: 100%;
    max-height: 840px;
    margin-right: 20px;
  }
  .form-main-img img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
  }
  .form-main-wrap {
    width: 41%;
    margin-right: 130px;
    min-height: 640px;
    -ms-flex-item-align: center;
    -ms-grid-row-align: center;
    align-self: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .form-main-wrap h3 {
    text-align: center;
    margin-bottom: 20px;
  }
  .choose-communication__btn-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    gap: 50px;
    margin-bottom: 50px;
  }
  .choose-communication__btn {
    background: transparent;
    font-size: 1.5rem;
    line-height: 1.8rem;
    color: var(--main-text-color);
  }
  .choose-communication__btn--active {
    -webkit-filter: drop-shadow(0px 0px 20px #00c8ff);
    filter: drop-shadow(0px 0px 20px 1px #00c8ff);
    text-decoration: underline;
  }
  .form_main {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .form_aside {
    margin-top: 20px;
  }
  .form_popup {
    margin-top: 20px;
  }
  .form__case,
  .form__set {
    border: none;
    padding: 0;
    margin: 0;
    width: 100%;
  }
  .form__field {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    margin-bottom: 20px;
  }
  .form__field label {
    position: absolute;
    top: 16px;
    left: 10px;
    pointer-events: none;
    -webkit-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
    font-size: 1rem;
    color: #585656;
    text-align: center;
  }
  .form__field input:focus ~ label,
  .form__field label.label-fixed {
    top: 3px;
    left: 5px;
    font-size: 0.75rem;
  }
  .form__label {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    margin-bottom: 50px;
  }
  .form__label-span {
    text-align: center;
    font-size: 1.5rem;
    line-height: 1.8rem;
    margin-bottom: 10px;
  }
  .form__input {
    font-size: 1rem;
    line-height: 1.2rem;
    border: none;
  }
  .form__input::-webkit-input-placeholder {
    color: rgba(255, 255, 255, 0.5);
    font-size: 1rem;
    line-height: 1.2rem;
    font-family: var(--main-font) !important;
  }
  .form__input::-moz-placeholder {
    color: rgba(255, 255, 255, 0.5);
    font-size: 1rem;
    line-height: 1.2rem;
    font-family: var(--main-font) !important;
  }
  .form__input:-ms-input-placeholder {
    color: rgba(255, 255, 255, 0.5);
    font-size: 1rem;
    line-height: 1.2rem;
    font-family: var(--main-font) !important;
  }
  .form__input_main {
    padding: 16px 20px;
    background: rgba(0, 0, 0, 0.5);
    border: 1px var(--main-text-color) solid;
    -webkit-backdrop-filter: blur(42px);
    backdrop-filter: blur(42px);
    color: var(--main-text-color);
  }
  .form__input_aside,
  .form__input_popup {
    padding: 16px 10px;
    height: 50px;
  }
  .form__input-error {
    font-size: 0.75rem;
    line-height: 0.75rem;
    color: #ea32d9;
    margin-top: 1px;
  }
  .form__textarea {
    padding: 16px 20px;
    background: rgba(0, 0, 0, 0.5);
    border: 1px var(--main-text-color) solid;
    -webkit-backdrop-filter: blur(42px);
    backdrop-filter: blur(42px);
    min-height: 135px;
    font-size: 1rem;
    line-height: 1.2rem;
    color: var(--main-text-color);
  }
  .form__textarea::-webkit-input-placeholder {
    color: rgba(255, 255, 255, 0.5);
    font-size: 1rem;
    line-height: 1.2rem;
    font-family: var(--main-font) !important;
    text-align: center;
    padding-top: 40px;
  }
  .form__textarea::-moz-placeholder {
    color: rgba(255, 255, 255, 0.5);
    font-size: 1rem;
    line-height: 1.2rem;
    font-family: var(--main-font) !important;
    text-align: center;
    padding-top: 40px;
  }
  .form__textarea:-ms-input-placeholder {
    color: rgba(255, 255, 255, 0.5);
    font-size: 1rem;
    line-height: 1.2rem;
    font-family: var(--main-font) !important;
    text-align: center;
    padding-top: 40px;
  }
  .form_main .form__btn {
    margin: 0 auto 10px;
  }
  .form_aside .form__btn,
  .form_popup .form__btn {
    margin-bottom: 20px;
  }
  .form__text {
    font-size: 1rem;
    line-height: 1.2rem;
    text-align: center;
    text-transform: none;
  }
  .form__link {
    font-size: 1rem;
    line-height: 1.2rem;
  }
  .hidden {
    display: none;
  }
  .page-content {
    margin-top: 100px;
    margin-bottom: 150px;
  }
  .page-content .container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
  .page-content-wrap {
    width: 75%;
    margin-right: 155px;
  }
  .page-content-wrap h2 {
    text-align: start;
    margin-top: 120px;
  }
  .page-content-wrap h2:first-of-type {
    margin-top: 0;
  }
  .page-content-wrap ul,
  .page-content-wrap ol {
    padding-left: 30px;
  }
  .page-content-wrap ul li,
  .page-content-wrap ol li {
    margin-bottom: 10px;
  }
  .list-with-element li {
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
  }
  .list-with-element li:last-of-type {
    margin-bottom: 0;
  }
  .list-with-element li::before {
    content: "";
    display: block;
    width: 82px;
    height: 82px;
    border-radius: 50%;
    background: var(--elements-gradient);
    -webkit-filter: blur(22.9px);
    filter: blur(22.9px);
    position: absolute;
    z-index: -1;
    top: -10px;
    left: -40px;
  }
  .list-with-element p {
    margin-top: 20px;
  }
  .page-content-wrap h3 {
    margin-top: 100px;
  }
  .page-content-wrap a {
    text-decoration: underline;
  }
  .page-content-wrap span {
    font-weight: 700;
  }
  .aside {
    max-width: 385px;
    width: 100%;
    position: relative;
    z-index: 5;
  }
  .form-aside-wrap {
    padding: 30px 20px;
    background: rgba(0, 0, 0, 0.5);
    -webkit-backdrop-filter: blur(42px);
    backdrop-filter: blur(42px);
    margin-bottom: 50px;
  }
  .form-aside-wrap p {
    text-align: center;
    margin: 0;
    font-size: 1rem;
    line-height: 1.2rem;
  }
  .form-aside-wrap .aside-title,
  .aside-title {
    font-size: 2.5rem;
    font-family: var(--accent-font);
    text-transform: uppercase;
    line-height: 2.5rem;
    margin-bottom: 20px;
    text-align: center;
  }
  .aside-links ul {
    padding: 0;
    margin: 0;
    list-style: none;
    margin-top: 20px;
  }
  .aside-links ul li {
    margin-bottom: 20px;
  }
  .aside-links ul li:last-of-type {
    margin-bottom: 0;
  }
  .aside-links ul li a {
    display: block;
    width: 100%;
    padding: 15px 40px;
    font-size: 1rem;
    font-weight: 500;
    text-transform: uppercase;
    line-height: 1rem;
    text-align: center;
    background: var(--dark-text-color);
    border: 2px solid transparent;
    -o-border-image: var(--elements-gradient) 2;
    border-image: var(--elements-gradient) 2;
  }
  .blog-cards {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 20px;
  }
  .blog-card {
    display: block;
    width: 48%;
    background: var(--elements-gradient);
    border: 2px solid transparent;
    -o-border-image: var(--elements-gradient) 2;
    border-image: var(--elements-gradient) 2;
    position: relative;
    text-decoration: none !important;
  }
  .blog-card-wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 100%;
    padding: 58px 20px;
    min-height: 270px;
    height: 100%;
    position: relative;
  }
  .blog-card-wrap p {
    margin: 0;
    position: absolute;
  top: 50%;
  left: 20px;
  max-width: 420px;
  transform: translate(0, -50%);
  }
  .blog-card-wrap p:first-of-type {
    font-size: 2.5rem;
    font-family: var(--accent-font);
    text-transform: uppercase;
    line-height: 2.5rem;
  }
  .blog-card::after {
    content: "";
    background: url("data:image/svg+xml;charset=UTF-8,%3csvg width='36' height='35' viewBox='0 0 36 35' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M0.351971 2.69052L29.3145 31.653L4.48947 31.653L4.27668 34.9866H35.0124V4.25095L31.6787 4.46373L31.6787 29.2887L2.71626 0.326238L0.351971 2.69052Z' fill='white'/%3e%3c/svg%3e")
      center no-repeat;
    width: 35px;
    height: 35px;
    display: block;
    position: absolute;
    right: 20px;
    bottom: 20px;
  }
  .blog-pagination {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-top: 50px;
    gap: 20px;
  }
  .blog-pagination-btn {
    width: 0;
    height: 0;
    background: transparent;
    border-top: 25px solid transparent;
    border-bottom: 25px solid transparent;
  }
  .blog-pagination-btn:first-of-type {
    border-right: 50px solid var(--main-text-color);
  }
  .blog-pagination-btn:last-of-type {
    border-left: 50px solid var(--main-text-color);
  }
  .blog-pagination-link {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 16px 20px;
    font-size: 1.125rem;
    font-weight: 500;
    text-transform: uppercase;
    line-height: 1.125rem;
    color: var(--dark-text-color);
    background: var(--main-text-color);
  }
  .blog-pagination span {
    display: block;
    width: 11px;
    height: 11px;
    border-radius: 50%;
    background: var(--main-text-color);
  }
  .page-content-wrap .share-icons {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    align-items: center;
    list-style: none;
    padding: 0;
    margin: 50px 0;
  }
  .share-icons li {
    margin-right: 30px;
  }
  .share-icons li:last-of-type {
    margin-right: 0;
    width: 30px;
    height: 30px;
  }
  .page-content-wrap .share-icons li a {
    display: block;
    width: 100%;
    height: 30px;
    margin: 0;
  }
  .share-icons li a img {
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
    object-fit: contain;
  }
  .views {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .views img {
    width: 30px;
    height: 30px;
    -o-object-fit: contain;
    object-fit: contain;
    margin-right: 10px;
  }
  .contacts-wrap {
    list-style: none;
    padding: 0;
    margin: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 50px;
  }
  .contacts-wrap li {
    width: 46%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .contacts-wrap li::before {
    content: "";
    display: block;
    width: 30px;
    height: 30px;
    margin-right: 20px;
  }
  .contacts-wrap li:first-of-type:before {
    background: url("data:image/svg+xml;charset=UTF-8,%3csvg width='30' height='30' viewBox='0 0 30 30' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cg clip-path='url(%23clip0_231_1124)'%3e%3cpath d='M14.948 30.01L14.0766 29.2631C12.8754 28.2573 2.38672 19.1989 2.38672 12.5729C2.38672 5.63548 8.0106 0.0115967 14.948 0.0115967C21.8854 0.0115967 27.5093 5.63548 27.5093 12.5729C27.5093 19.1989 17.0206 28.2574 15.8243 29.2681L14.948 30.01ZM14.948 2.72771C9.51324 2.73386 5.10904 7.13806 5.10289 12.5728C5.10289 16.7354 11.5559 23.3851 14.948 26.4286C18.3401 23.3839 24.7931 16.7304 24.7931 12.5728C24.7869 7.13806 20.3828 2.73392 14.948 2.72771Z' fill='white'/%3e%3cpath d='M14.9479 17.552C12.198 17.552 9.96875 15.3227 9.96875 12.5728C9.96875 9.82289 12.198 7.59363 14.9479 7.59363C17.6979 7.59363 19.9271 9.82289 19.9271 12.5728C19.9271 15.3227 17.6979 17.552 14.9479 17.552ZM14.9479 10.0832C13.573 10.0832 12.4583 11.1978 12.4583 12.5727C12.4583 13.9477 13.573 15.0623 14.9479 15.0623C16.3229 15.0623 17.4375 13.9477 17.4375 12.5727C17.4375 11.1978 16.3229 10.0832 14.9479 10.0832Z' fill='white'/%3e%3c/g%3e%3cdefs%3e%3cclipPath id='clip0_231_1124'%3e%3crect width='30' height='30' fill='white'/%3e%3c/clipPath%3e%3c/defs%3e%3c/svg%3e")
      center no-repeat;
    background-size: contain;
  }
  .contacts-wrap li:nth-of-type(2):before {
    background: url("data:image/svg+xml;charset=UTF-8,%3csvg width='30' height='30' viewBox='0 0 30 30' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cg clip-path='url(%23clip0_231_1130)'%3e%3cpath d='M16.25 1.25004C16.25 0.918522 16.3817 0.60058 16.6161 0.36616C16.8505 0.131739 17.1685 4.30848e-05 17.5 4.30848e-05C20.8141 0.00368258 23.9914 1.32181 26.3348 3.66523C28.6782 6.00864 29.9963 9.18596 30 12.5C30 12.8316 29.8683 13.1495 29.6339 13.3839C29.3994 13.6183 29.0815 13.75 28.75 13.75C28.4185 13.75 28.1005 13.6183 27.8661 13.3839C27.6317 13.1495 27.5 12.8316 27.5 12.5C27.497 9.84879 26.4425 7.30698 24.5678 5.43226C22.693 3.55755 20.1512 2.50302 17.5 2.50004C17.1685 2.50004 16.8505 2.36835 16.6161 2.13393C16.3817 1.89951 16.25 1.58156 16.25 1.25004ZM17.5 7.50004C18.8261 7.50004 20.0978 8.02683 21.0355 8.96451C21.9732 9.90219 22.5 11.174 22.5 12.5C22.5 12.8316 22.6317 13.1495 22.8661 13.3839C23.1005 13.6183 23.4185 13.75 23.75 13.75C24.0815 13.75 24.3994 13.6183 24.6339 13.3839C24.8683 13.1495 25 12.8316 25 12.5C24.998 10.5115 24.2072 8.60503 22.8011 7.19894C21.395 5.79284 19.4885 5.00203 17.5 5.00004C17.1685 5.00004 16.8505 5.13174 16.6161 5.36616C16.3817 5.60058 16.25 5.91852 16.25 6.25004C16.25 6.58156 16.3817 6.89951 16.6161 7.13393C16.8505 7.36835 17.1685 7.50004 17.5 7.50004ZM28.8662 20.9238C29.5906 21.6502 29.9974 22.6342 29.9974 23.66C29.9974 24.6859 29.5906 25.6699 28.8662 26.3963L27.7287 27.7075C17.4912 37.5088 -7.42127 12.6025 2.22873 2.33254L3.66623 1.08254C4.39344 0.37839 5.36865 -0.0111456 6.38086 -0.00178836C7.39308 0.00756884 8.36091 0.415066 9.07498 1.13254C9.11373 1.17129 11.43 4.18004 11.43 4.18004C12.1173 4.90208 12.4999 5.86121 12.4982 6.85805C12.4966 7.85489 12.1109 8.81276 11.4212 9.53254L9.97373 11.3525C10.7748 13.2989 11.9526 15.0679 13.4394 16.5577C14.9262 18.0475 16.6927 19.2288 18.6375 20.0338L20.4687 18.5775C21.1886 17.8884 22.1463 17.5032 23.1429 17.5018C24.1394 17.5004 25.0982 17.883 25.82 18.57C25.82 18.57 28.8275 20.885 28.8662 20.9238ZM27.1462 22.7413C27.1462 22.7413 24.155 20.44 24.1162 20.4013C23.8587 20.146 23.5107 20.0027 23.1481 20.0027C22.7855 20.0027 22.4375 20.146 22.18 20.4013C22.1462 20.4363 19.625 22.445 19.625 22.445C19.4551 22.5803 19.2529 22.6689 19.0383 22.7022C18.8237 22.7356 18.6041 22.7124 18.4012 22.635C15.8818 21.697 13.5934 20.2285 11.691 18.3289C9.78865 16.4293 8.31673 14.1431 7.37498 11.625C7.29148 11.4194 7.26426 11.1952 7.29611 10.9755C7.32797 10.7558 7.41775 10.5485 7.55623 10.375C7.55623 10.375 9.56498 7.85254 9.59873 7.82004C9.85407 7.56253 9.99733 7.21456 9.99733 6.85192C9.99733 6.48927 9.85407 6.14131 9.59873 5.88379C9.55998 5.84629 7.25873 2.85254 7.25873 2.85254C6.99736 2.61818 6.65624 2.49266 6.30529 2.50173C5.95435 2.51079 5.62016 2.65375 5.37123 2.90129L3.93373 4.15129C-3.11877 12.6313 18.47 33.0225 25.9012 26L27.04 24.6875C27.3068 24.4404 27.4671 24.0991 27.4869 23.7359C27.5068 23.3727 27.3846 23.0161 27.1462 22.7413Z' fill='white'/%3e%3c/g%3e%3cdefs%3e%3cclipPath id='clip0_231_1130'%3e%3crect width='30' height='30' fill='white'/%3e%3c/clipPath%3e%3c/defs%3e%3c/svg%3e")
      center no-repeat;
    background-size: contain;
  }
  .contacts-wrap li:nth-of-type(3):before {
    background: url("data:image/svg+xml;charset=UTF-8,%3csvg width='30' height='30' viewBox='0 0 30 30' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M28.75 15C28.75 22.5939 22.5939 28.75 15 28.75C7.40609 28.75 1.25 22.5939 1.25 15C1.25 7.40609 7.40609 1.25 15 1.25C22.5939 1.25 28.75 7.40609 28.75 15ZM3.75854 15C3.75854 21.2085 8.79151 26.2415 15 26.2415C21.2085 26.2415 26.2415 21.2085 26.2415 15C26.2415 8.79151 21.2085 3.75854 15 3.75854C8.79151 3.75854 3.75854 8.79151 3.75854 15Z' fill='white'/%3e%3cpath d='M15 6.25C14.3096 6.25 13.75 6.80964 13.75 7.5V15.5834C13.75 15.5834 13.75 15.9092 13.9084 16.1544C14.0144 16.3622 14.1796 16.5429 14.3967 16.6682L20.1715 20.0024C20.7694 20.3475 21.5339 20.1426 21.879 19.5447C22.2241 18.9469 22.0194 18.1824 21.4215 17.8372L16.25 14.8515V7.5C16.25 6.80965 15.6904 6.25 15 6.25Z' fill='white'/%3e%3c/svg%3e")
      center no-repeat;
    background-size: contain;
  }
  .contacts-wrap li:nth-of-type(4):before {
    background: url("data:image/svg+xml;charset=UTF-8,%3csvg width='30' height='30' viewBox='0 0 30 30' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cg clip-path='url(%23clip0_231_1134)'%3e%3cpath d='M26.3377 3.58472H3.66853C1.64494 3.58472 0 5.22966 0 7.25325V22.7467C0 24.7703 1.64494 26.4153 3.66853 26.4153H26.3315C28.3551 26.4153 30 24.7703 30 22.7467V7.25945C30.0062 5.23587 28.3613 3.58472 26.3377 3.58472ZM28.3302 22.7467C28.3302 23.8454 27.4364 24.7393 26.3377 24.7393H3.66853C2.56983 24.7393 1.67598 23.8454 1.67598 22.7467V7.25945C1.67598 6.16076 2.56983 5.2669 3.66853 5.2669H26.3315C27.4302 5.2669 28.324 6.16076 28.324 7.25945V22.7467H28.3302Z' fill='white'/%3e%3cpath d='M18.9201 14.8075L26.2572 8.22777C26.5986 7.91741 26.6296 7.38978 26.3193 7.04217C26.0089 6.70077 25.4813 6.66973 25.1337 6.9801L15.0157 16.0614L13.0418 14.2985C13.0356 14.2923 13.0294 14.2861 13.0294 14.2799C12.9859 14.2365 12.9425 14.1992 12.8928 14.162L4.86054 6.97389C4.51293 6.66353 3.98531 6.69456 3.67494 7.04217C3.36458 7.38978 3.39561 7.91741 3.74322 8.22777L11.1672 14.8634L3.77426 21.7846C3.43906 22.1011 3.42044 22.6288 3.73702 22.9702C3.90461 23.144 4.12808 23.2371 4.35154 23.2371C4.55638 23.2371 4.76122 23.1626 4.92261 23.0136L12.4273 15.9931L14.4633 17.8119C14.6247 17.9547 14.8233 18.0229 15.0219 18.0229C15.2206 18.0229 15.4254 17.9484 15.5806 17.8057L17.6725 15.9311L25.1337 23.0198C25.2951 23.175 25.5061 23.2495 25.7109 23.2495C25.9344 23.2495 26.1517 23.1626 26.3193 22.9888C26.6358 22.6536 26.6234 22.1198 26.2882 21.8032L18.9201 14.8075Z' fill='white'/%3e%3c/g%3e%3cdefs%3e%3cclipPath id='clip0_231_1134'%3e%3crect width='30' height='30' fill='white'/%3e%3c/clipPath%3e%3c/defs%3e%3c/svg%3e")
      center no-repeat;
    background-size: contain;
  }
  .contacts-map {
    max-width: 1600px;
    width: 100%;
    margin: 0 auto;
    height: 600px;
    margin-top: 50px;
  }
  .specialists-card {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 50px;
  }
  .specialists-card:last-of-type {
    margin-bottom: 0;
  }
  .specialists-card-img {
    position: relative;
    background: var(--elements-gradient);
    min-width: 520px;
    height: 537px;
    z-index: 1;
  }
  .specialists-card-img:after {
    content: "";
    background: url(./imgs/svg/footer-line.svg) center no-repeat;
    background-size: contain;
    width: 857px;
    height: 388px;
    position: absolute;
    top: 50%;
    left: 435px;
    -webkit-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    transform: translate(0, -50%);
    z-index: -1;
  }
  .specialists-card-img img {
    position: absolute;
    width: 100%;
    height: 100%;
    bottom: 0;
    left: 50%;
    -webkit-transform: translate(-50%, 0);
    -ms-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
    -webkit-filter: grayscale(1);
    filter: grayscale(1);
    transition: filter 0.5s ease;
  }
  .specialists-card-img:hover img {
    -webkit-filter: grayscale(0);
    filter: grayscale(0);
  }
  .specialists-card-info {
    padding: 50px 20px;
    width: 61%;
    position: relative;
    margin-left: 20px;
    z-index: 2;
    min-height: 230px;
  }
  .specialists-card-info:hover {
    min-height: 330px;
  }
  .specialists-card-info-first-screen {
    opacity: 1;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: opacity 0.3s linear;
    -webkit-transition:  opacity 0.3s linear;
    -o-transition: opacity 0.3s linear;
  }
  .specialists-card-info:hover .specialists-card-info-first-screen {
    opacity: 0;
  }
  .specialists-card-info::before {
    content: "";
    position: absolute;
    display: block;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    -webkit-backdrop-filter: blur(42px);
    backdrop-filter: blur(42px);
    z-index: -1;
  }
  .specialists-card h2 {
    margin-bottom: 25px;
    text-align: center;
  }
  .specialists-card h3 {
    margin: 0;
    text-align: center;
  }
  .specialists-card span {
    font-size: 1.2rem;
    font-weight: 400;
  }
  .specialists-card p {
    opacity: 0;
    position: absolute;
    width: calc(100% - 40px);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: opacity 0.3s linear;
    -webkit-transition:  opacity 0.3s linear;
    -o-transition: opacity 0.3s linear;
  }
  .specialists-card-info:hover p {
    opacity: 1;
  }
  .specialists-list li {
    margin-bottom: 30px;
  }
  .specialists-list li:last-of-type {
    margin-bottom: 0;
  }
  .about-case {
    background: url(./imgs/svg/footer-line.svg) no-repeat;
    background-position: 130% center;
    background-size: contain;
  }
  .about-case .container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
  .about-case-info {
    margin-right: 20px;
    width: 49%;
  }
  .about-case-info h2 {
    text-align: start;
  }
  .about-case-info h3 {
    margin: 100px 0 50px;
  }
  .about-case-img-wrap {
    width: 790px;
    height: 719px;
    position: relative;
    background: url(./imgs/screen.webp) top no-repeat;
    background-size: contain;
  }
  .about-case-img {
    position: absolute;
    top: 36px;
    left: 31px;
    width: 725px;
    height: 414px;
    -o-object-fit: cover;
    object-fit: cover;
  }
  .tasks {
    background: var(--dark-text-color) url(./imgs/tasks-bg.webp) no-repeat;
    background-position-x: 100%;
    background-position-y: bottom;
    padding: 100px 0;
    background-size: contain;
  }
  .tasks ul {
    margin: 0;
    padding: 0;
    padding-left: 30px;
  }
  .tasks ul li {
    margin-bottom: 30px;
  }
  .tasks ul li:last-of-type {
    margin-bottom: 0;
  }
  .about-case-card {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-bottom: 50px;
    background: var(--dark-text-color);
    border: 2px solid transparent;
    -o-border-image: var(--elements-gradient) 2;
    border-image: var(--elements-gradient) 2;
  }
  .about-case-card h3 {
    margin-bottom: 20px;
  }
  .about-case-card ul {
    padding-left: 30px;
  }
  .about-case-card-img {
    -ms-flex-item-align: center;
    -ms-grid-row-align: center;
    align-self: center;
    min-width: 520px;
    position: relative;
  }
  .about-case-card-img img {
    width: 520px;
    height: 244px;
    -o-object-fit: cover;
    object-fit: cover;
  }
  .about-case-card-text {
    padding: 30px 20px;
    background: var(--main-text-color);
    color: var(--dark-text-color);
    width: 67%;
    max-width: 1060px;
  }
  .about-case-total-card {
    background: var(--main-text-color);
    color: var(--dark-text-color);
    padding: 30px 20px;
  }
  .about-case-total-card h3 {
    text-align: center;
    margin-bottom: 20px;
  }
  .about-case-total-card__items {
    margin: 20px auto 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    max-width: 1330px;
    text-align: center;
    gap: 20px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .about-case-total-card__item {
    width: 250px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .about-case-total-card__item p {
    margin: 0;
  }
  .about-case-total-card__item p:first-of-type {
    font-size: 2.5rem;
    font-family: var(--accent-font);
    text-transform: uppercase;
    line-height: 2.5rem;
    background: var(--elements-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
    margin-bottom: 5px;
  }
  .about-case-cards .btn-general-style {
    margin: 50px auto 0;
  }
  #proto .about-case-card-img img:first-of-type,
  #verstka .about-case-card-img img:first-of-type {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    z-index: 0;
    width: 340px;
    height: 235px;
  }
  #proto .about-case-card-img img:nth-of-type(2),
  #verstka .about-case-card-img img:nth-of-type(2) {
    width: 240px;
    height: 133px;
    position: absolute;
    top: -105px;
    left: 179px;
    z-index: 1;
  }
  #proto .about-case-card-img img:nth-of-type(3),
  #verstka .about-case-card-img img:nth-of-type(3) {
    width: 57px;
    height: 119px;
    position: absolute;
    top: -9px;
    left: 95px;
    z-index: 1;
    border-radius: 5px;
  }
  #design-maket .about-case-card-img img:first-of-type {
    position: absolute;
    width: 376px;
    height: 216px;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    z-index: 0;
  }
  #design-maket .about-case-card-img img:nth-of-type(2) {
    position: absolute;
    width: 376px;
    height: 200px;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    z-index: 0;
  }
  .footer {
    background: var(--dark-text-color);
    background-repeat: no-repeat;
    padding: 50px 0;
    overflow: hidden;
    position: relative;
    width: 100%;
  }
  .footer-bg-img {
    position: absolute;
    z-index: 0;
    top: 70px;
    right: -100px;
    width: 100%;
  }
  /*нг*/
  /*.footer:after {
      content: "";
      background:url(./imgs/footer-ng.webp) no-repeat;
      width: 790px;
      height: 426px;
      display: block;
      position: absolute;
      bottom: -15px;
      left: 50%;
      -webkit-transform: translate(-50%, 0);
    -ms-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
    background-size: contain;
  }*/
  .footer .container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    z-index: 10;
    position: relative;
  }
  .footer-info-wrap {
    max-width: 250px;
  }
  .footer-info-wrap p {
    font-size: 1rem;
    line-height: 1rem;
    margin: 0;
  }
  .footer-info-wrap p:first-of-type {
    text-transform: uppercase;
  }
  .footer .logo-link {
    width: 250px;
    height: 73px;
    margin-bottom: 20px;
  }
  .footer .contacts-info {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    margin: 20px 0;
  }
  .footer .contacts-info-icons {
    margin-bottom: 20px;
  }
  .footer .contacts-info-icons a {
    margin-right: 30px;
  }
  .footer .contacts-info-icons a:last-of-type {
    margin-right: 0;
  }
  .contacts-info-links a {
    display: inline-block;
    margin-bottom: 10px;
  }
  .contacts-info-links a:last-of-type {
    margin-bottom: 0;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: end;
  }
  .footer-nav ul li {
    margin-bottom: 20px;
  }
  .footer-nav ul li:last-of-type {
    margin-bottom: 0;
  }
  .footer-nav ul li a {
    font-size: 1rem;
    line-height: 1rem;
  }
  .popup {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.7);
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    width: 100%;
    margin: auto;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
    z-index: 100;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: opacity 0.4s;
    -o-transition: opacity 0.4s;
    transition: opacity 0.4s;
  }
  .popup_open {
    opacity: 1;
    visibility: visible;
  }
  .popup__container {
    position: relative;
    background: var(--dark-text-color);
    width: 385px;
    padding: 30px 20px;
    border: 2px solid transparent;
    -o-border-image: var(--elements-gradient) 2;
    border-image: var(--elements-gradient) 2;
  }
  .popup__title {
    font-size: 2.5rem;
    font-family: var(--accent-font);
    text-transform: uppercase;
    line-height: 2.5rem;
    margin-bottom: 20px;
    text-align: center;
  }
  .popup__description {
    font-size: 1rem;
    line-height: 1.2rem;
    text-align: center;
    margin: 0;
  }
  .popup__description_success {
    font-size: 1.5rem;
    line-height: 1.5rem;
    margin: 0;
  }
  .popup-close-btn {
    background: url("data:image/svg+xml;charset=UTF-8,%3csvg width='31' height='30' viewBox='0 0 31 30' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3crect x='1' y='27.7941' width='32.2357' height='3.11959' rx='1.55979' transform='rotate(-45 1 27.7941)' fill='white'/%3e%3crect x='3.20605' y='5' width='32.2357' height='3.11959' rx='1.55979' transform='rotate(45 3.20605 5)' fill='white'/%3e%3c/svg%3e")
      center no-repeat;
    width: 30px;
    height: 30px;
    position: absolute;
    right: 0;
    top: 0;
    background-size: contain;
  }
  .upbtn {
    z-index: 99;
    width: 70px;
    height: 70px;
    position: fixed;
    bottom: 20px;
    right: 20px;
    cursor: pointer;
    border: none;
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    transform: scale(0);
    -webkit-transition: all 0.4s linear;
    -o-transition: all 0.4s linear;
    transition: all 0.4s linear;
    background-position: center center;
    background-repeat: no-repeat;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='161' height='161' viewBox='0 0 161 161' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3ccircle cx='80.5' cy='80.5' r='77' fill='black' stroke='url(%23paint0_linear_322_1295)' stroke-width='7'/%3e%3cpath d='M80.5 43L116 103H45L80.5 43Z' fill='white'/%3e%3cdefs%3e%3clinearGradient id='paint0_linear_322_1295' x1='0' y1='80.5' x2='161' y2='80.5' gradientUnits='userSpaceOnUse'%3e%3cstop stop-color='%23EA32D9'/%3e%3cstop offset='1' stop-color='%23004BED'/%3e%3c/linearGradient%3e%3c/defs%3e%3c/svg%3e");
    background-size: cover;
    opacity: 0.6;
  }
  .upbtn:hover {
    -webkit-transform: scale(1.1) !important;
    -ms-transform: scale(1.1) !important;
    transform: scale(1.1) !important;
    opacity: 1;
  }
  .not-visible-cards {
    display: none;
  }
  @media screen and (min-width: 1200px) and (max-width: 3000px) {
    .header-menu li:hover .header-submenu {
      opacity: 1;
      pointer-events: all;
    }
    .header-menu li:hover .header-btn-down {
      -webkit-transform: rotate(180deg) translate(50%, 0);
      -ms-transform: rotate(180deg) translate(50%, 0);
      transform: rotate(180deg) translate(50%, 0);
      cursor: pointer;
      -webkit-filter: drop-shadow(0px 0px 20px #00c8ff);
      filter: drop-shadow(0px 0px 20px 1px #00c8ff);
    }
  }
  @media screen and (min-width: 769px) and (max-width: 3000px) {
    .blog-card :first-of-type {
      opacity: 1;
       transition: opacity 0.3s linear;
     -webkit-transition:  opacity 0.3s linear;
     -o-transition: opacity 0.3s linear;
     }
     .blog-card:hover p:first-of-type {
       opacity: 0;
     }
     .blog-card p:last-of-type {
       opacity: 0;
   transition: opacity 0.3s linear;
     -webkit-transition:  opacity 0.3s linear;
     -o-transition: opacity 0.3s linear;
     }
     .blog-card:hover p:last-of-type {
       opacity: 1;
     }
  }
  @media screen and (max-width: 1620px) {
    .container {
      width: calc(100% - 30px);
    }
    .advantages-wrap {
      max-width: 1220px;
    }
    .tab-content__text {
      padding-right: 15px;
    }
    .tab-content__img {
      width: 420px;
      height: 420px;
      left: 190px;
    }
    .about-case-img-wrap {
      width: 590px;
      height: 539px;
    }
    .about-case-img {
      top: 26px;
      left: 22px;
      width: 543px;
      height: 310px;
    }
  }
  @media screen and (max-width: 1490px) {
    .offer-main-img {
      max-width: 690px;
      height: 718px;
    }
    .tab-content__img {
      width: 320px;
      height: 320px;
      left: 250px;
    }
    .specialists-card-img {
      min-width: 390px;
      height: 402px;
    }
    .specialists-card-img:after {
      width: 640px;
      height: 291px;
      left: 340px;
    }
  }
  @media screen and (max-width: 1420px) {
    .advantages-wrap {
      max-width: 970px;
    }
    .advantages-wrap ul {
      max-width: 420px;
    }
    .advantages-wrap ul::before {
      width: 340px;
      height: 340px;
      top: -30%;
      right: -20px;
    }
    .tab-btn {
      padding: 20px 30px;
      font-size: 1.2rem;
      line-height: 1.2rem;
    }
    .form-main-wrap {
      margin-right: 30px;
    }
    .page-content-wrap {
      margin-right: 50px;
    }
    .aside {
      max-width: 365px;
    }
  }
  @media screen and (max-width: 1390px) {
    .header-menu li {
      margin-right: 30px;
    }
    .header-submenu li {
      margin-right: 0;
    }
    .header .contacts-info-icons a {
      margin-right: 20px;
    }
    .process-main-card-text {
      width: 65%;
    }
    .uslugi-main-cards {
      -webkit-box-pack: center;
      -ms-flex-pack: center;
      justify-content: center;
    }
    .uslugi-main-card:nth-of-type(4) {
      margin-left: 0;
    }
    .tab-content__img {
      left: 200px;
    }
  }
  @media screen and (max-width: 1290px) {
    .offer-main-img {
      width: 517px;
      height: 538px;
    }
    .offer-main .container {
      -webkit-box-align: end;
      -ms-flex-align: end;
      align-items: flex-end;
    }
    .offer-main-info {
      max-width: 590px;
    }
    h1 {
      font-size: 5rem;
      line-height: 5rem;
    }
  }
  @media screen and (max-width: 1240px) {
    .header-nav {
      margin: 0 20px;
    }
    .header-menu li {
      margin-right: 20px;
    }
    .header-submenu li {
      margin: 0;
    }
    .main-info-block .container {
      padding: 50px;
    }
    .main-info-block-wrap-with-img {
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
      -ms-flex-direction: column;
      flex-direction: column;
    }
    .main-info-block-img {
      max-width: 100%;
      height: 300px;
    }
    .main-info-block-img img {
      -o-object-position: top;
      object-position: top;
    }
    .main-info-block-text {
      width: 100%;
      padding: 30px 20px;
    }
    .tab-content__img {
      left: 150px;
    }
    .form-main-wrap {
      padding: 50px 0;
    }
    .form-main-img {
      max-width: 490px;
      max-height: 630px;
    }
    .form__label,
    .choose-communication__btn-wrapper {
      margin-bottom: 30px;
    }
    .choose-communication__btn-wrapper {
      gap: 20px;
    }
    .blog-card {
      width: 100%;
    }
    .blog-card-wrap {
      padding: 30px 20px;
    }
    .specialists-card-img {
      min-width: 292px;
      height: 301px;
    }
    .specialists-card-img:after {
      width: 480px;
      height: 218px;
      left: 260px;
    }
  }
  @media screen and (max-width: 1199px) {
    .offer-main,
    .offer-sm {
      padding-top: 103px;
    }
    .header .container {
      padding: 18px 0;
    }
    .header-nav {
      position: fixed;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
      -ms-flex-direction: column;
      flex-direction: column;
      -webkit-box-pack: start;
      -ms-flex-pack: start;
      justify-content: flex-start;
      -webkit-box-align: center;
      -ms-flex-align: center;
      align-items: center;
      top: 110px;
      left: -100%;
      width: 50%;
      height: 100vh;
      -webkit-transition: 0.8s all;
      -o-transition: 0.8s all;
      transition: 0.8s all;
      margin: 0;
      background: var(--dark-text-color);
      padding-bottom: 20px;
    }
    .header-nav_active {
      top: 104px;
      left: 0;
      z-index: 100;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      overflow: auto;
      margin: 0;
      -webkit-transition: all 0.4s ease-in-out;
      -o-transition: all 0.4s ease-in-out;
      transition: all 0.4s ease-in-out;
      height: calc(100% - 55px);
    }
    .burger-btn {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      margin-left: 50px;
    }
    .header-menu {
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
      -ms-flex-direction: column;
      flex-direction: column;
      width: 100%;
    }
    .header-menu li {
      margin-right: 0;
      padding: 0;
      text-align: center;
      border-bottom: 1px solid transparent;
      -o-border-image: var(--elements-gradient) 1;
      border-image: var(--elements-gradient) 1;
    }
    .header-menu li:first-of-type {
      border-top: 1px solid transparent;
    }
    .header-btn-down {
      top: 0;
      left: auto;
      right: 9px;
      -webkit-transform: none;
      -ms-transform: none;
      transform: none;
      padding: 23px;
    }
    .header-btn-down.rotate {
      -webkit-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
      transform: rotate(180deg);
    }
    .header-menu li a,
    .header-menu li span {
      display: block;
      padding: 13px 40px;
    }
    .header-submenu li a {
      pointer-events: all;
    }
    .header-submenu {
      position: static;
      opacity: 1;
      display: none;
      -webkit-transform: none;
      -ms-transform: none;
      transform: none;
      width: 100%;
      border: none;
    }
    .header .contacts-info,
    .header .logo-link {
      margin-bottom: 0;
    }
    .header .contacts-info {
        width: 100%;
        justify-content: flex-end;
    }
    .offer-sm {
      padding-top: 100px;
    }
    .advantages {
      padding-bottom: 0;
    }
    .advantages-wrap {
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
      -ms-flex-direction: column;
      flex-direction: column;
      margin-bottom: -150px;
    }
    .advantages-wrap ul {
      min-height: 385px;
      margin-bottom: 30px;
      max-width: 520px;
    }
    .advantages-wrap ul::before {
      width: 385px;
      height: 385px;
      top: -24%;
      right: 10px;
    }
    .advantages-wrap ul::after {
      top: 26%;
    }
    .uslugi-main__img {
      top: 50%;
      -webkit-transform: translate(0, -50%);
      -ms-transform: translate(0, -50%);
      transform: translate(0, -50%);
    }
    .competencies-card p::before {
      left: 0;
    }
    .cases-card {
      width: 48%;
    }
    .cases-card__info {
      min-width: 320px;
    }
    .cases-card__info h3 {
      font-size: 2rem;
      line-height: 2rem;
    }
    .about-case-img-wrap {
      width: 527px;
      height: 539px;
    }
    .about-case-img {
      width: 460px;
      height: 260px;
      top: 23px;
    }
    .about-case-info h3 {
      margin: 50px 0 30px;
    }
    .specialists-card-info {
      padding: 20px;
      min-height: 170px;
    }
    .specialists-card-info:hover {
      min-height: 250px;
    }
    .specialists-card-img {
      min-width: 219px;
      height: 225px;
    }
    .specialists-card p {
      font-size: 1.125rem;
      line-height: 1.3rem;
    }
    .specialists-card-info:hover .specialists-card-info-first-screen {
      display: block;
    }
    .specialists-card h2 {
      margin-bottom: 10px;
      font-size: 3rem;
      line-height: 3rem;
    }
    .specialists-card h3 {
      font-size: 2rem;
      line-height: 2rem;
    }
    .specialists-card-img:after {
      left: 195px;
    }
  }
  @media screen and (max-width: 1099px) {
    h1 {
      font-size: 3rem;
      line-height: 3rem;
    }
  
    .offer-main-info h1 {
      margin-bottom: 30px;
    }
    .offer-main-info h2 {
      font-size: 2.5rem;
      line-height: 2.5rem;
      margin-bottom: 20px;
    }
    .offer-main-info p {
      font-size: 1.2rem;
      line-height: 1.2rem;
    }
    .offer-main-img {
      width: 387px;
      height: 403px;
    }
    .offer-sm .offer-btn {
      margin-right: 30px;
    }
    .main-dev-card p {
      max-width: 390px;
      font-size: 2rem;
      line-height: 2rem;
    }
    .main-dev-card::before,
    .process-main-card::before {
      width: 182px;
      height: 71px;
    }
    .main-dev-card:hover p {
      -webkit-transform: translate(-70%, -50%);
      -ms-transform: translate(-70%, -50%);
      transform: translate(-70%, -50%);
    }
    .process-main-card:hover strong {
      right: 120px;
    }
    .process-main-card-text {
      width: 75%;
    }
    .competencies-card h3 {
      margin-bottom: 10px;
    }
    .competencies-card p {
      max-width: 100%;
    }
    .competencies-card p::before {
      top: 0;
      left: 0;
      opacity: 1;
    }
    .tab-content__img {
      left: 100px;
    }
    .form-main-img {
      max-width: 368px;
      max-height: 472px;
    }
    .form-main-wrap {
      width: 47%;
      margin-right: 20px;
      padding: 30px 0;
      min-height: 580px;
    }
    .aside {
      max-width: 330px;
    }
  }
  @media screen and (max-width: 1024px) {
    .tabs {
      margin-bottom: 30px;
    }
    .tab-btn {
      padding: 10px 19px;
      font-size: 1rem;
      line-height: 1rem;
    }
    .page-content-wrap h2 {
      font-size: 2.3rem;
      line-height: 2.3rem;
    }
    .form-aside-wrap .aside-title,
    .aside-title {
      font-size: 2rem;
      line-height: 2rem;
    }
  }
  @media screen and (max-width: 990px) {
    .offer-main-info {
      max-width: 350px;
    }
    .offer-btns {
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
      -ms-flex-direction: column;
      flex-direction: column;
    }
    .offer-sm .offer-btns {
      -webkit-box-orient: horizontal;
      -webkit-box-direction: normal;
      -ms-flex-direction: row;
      flex-direction: row;
      -webkit-box-align: center;
      -ms-flex-align: center;
      align-items: center;
    }
    .offer-btn {
      margin-right: 0;
      margin-bottom: 20px;
    }
    .offer-btn span {
      font-size: 1.2rem;
      line-height: 1.25rem;
    }
    .offer-sm .offer-btn {
      margin-bottom: 0;
      margin-right: 20px;
    }
    .offer-btn:last-of-type {
      margin-bottom: 0;
    }
    .main-dev-card p {
      font-size: 1.6rem;
      line-height: 1.6rem;
      max-width: 300px;
    }
    .competencies-card {
      width: 100%;
    }
    .competencies-card p::before {
      left: 50%;
      -webkit-transform: translate(-50%, 0);
      -ms-transform: translate(-50%, 0);
      transform: translate(-50%, 0);
      top: -30px;
      -webkit-filter: blur(12.9px);
      filter: blur(12.9px);
    }
    .cases-card {
      width: 100%;
    }
    .tab-content__img {
      left: 40px;
    }
    .choose-communication__btn,
    .form__label-span {
      font-size: 1rem;
      line-height: 1.2rem;
    }
    .form-main-wrap h3 {
      font-size: 2rem;
      line-height: 2rem;
    }
    .page-content-wrap {
      margin-right: 20px;
      width: 52%;
    }
    .specialists-card {
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
      -ms-flex-direction: column;
      flex-direction: column;
      margin-bottom: 20px;
    }
    .specialists-card-info {
      padding: 20px 25px;
      width: 100%;
      margin-left: 0;
    }
    .specialists-card-img {
      background: transparent;
      min-width: auto;
      width: 290px;
      height: 286px;
    }
    .specialists-card-img img {
      -webkit-filter: grayscale(0);
      filter: grayscale(0);
    }
    .specialists-card-info-first-screen {
      position: static;
      transform: none;
    }
    .specialists-card-info:hover .specialists-card-info-first-screen {
      opacity: 1;
    }
    .specialists-card-info, .specialists-card-info:hover {
      min-height: auto;
    }
    .specialists-card-info::before {
      background: var(--dark-text-color);
      -webkit-filter: none;
      filter: none;
    }
    .specialists-card-img:after {
      left: 0;
      width: 536px;
      height: 242px;
      background-size: cover;
    }
    .page-content-wrap h2 {
      font-size: 1.875rem;
      line-height: 1.875rem;
      margin-top: 100px;
    }
    .specialists-card h3 {
      font-size: 1.5rem;
      line-height: 1.5rem;
    }
    .specialists-card p {
      margin-top: 10px;
      font-size: 0.875rem;
      line-height: 1rem;
      position: static;
      opacity: 1;
      transform: none;
      width: 100%;
    }
    .specialists-card span {
      font-size: 0.875rem;
      line-height: 1rem;
    }
    .about-case {
      background-position: center 90%;
    }
    .about-case .container {
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
      -ms-flex-direction: column;
      flex-direction: column;
      -webkit-box-align: center;
      -ms-flex-align: center;
      align-items: center;
    }
    .about-case-info {
      width: 100%;
      margin-top: 0;
      margin-bottom: 30px;
    }
    .about-case-info h2,
    .about-case-info h3 {
      text-align: center;
    }
    .about-case-card {
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
      -ms-flex-direction: column;
      flex-direction: column;
    }
    .about-case-card-text {
      width: 100%;
    }
    .about-case-card-text {
      padding: 20px 10px;
    }
    .about-case-card h3 {
      text-align: center;
      margin-bottom: 10px;
    }
    .about-case-card-img {
      height: 244px;
    }
    #proto .about-case-card-img img:nth-of-type(2),
    #verstka .about-case-card-img img:nth-of-type(2) {
      top: 20px;
    }
    #proto .about-case-card-img img:nth-of-type(3),
    #verstka .about-case-card-img img:nth-of-type(3) {
      top: 116px;
    }
    .footer-bg-img {
      top: auto;
      bottom: -90px;
    }
  }
  @media screen and (max-width: 819px) {
    .what-we-offer-card {
      max-width: 100%;
      min-height: 91px;
    }
    .what-we-offer-card p {
      padding: 20px 10px;
    }
    .what-we-offer-card::after {
      width: 90px;
      height: 90px;
    }
    .what-we-offer-card:hover img {
      -webkit-transform: scale(1);
      -ms-transform: scale(1);
      transform: scale(1);
    }
    .what-we-offer-card:hover::after {
      bottom: 0;
      left: 0;
    }
    .uslugi-main-cards {
      gap: 10px;
      margin-top: 10px;
    }
    .uslugi-main-card {
      width: 100%;
      padding: 20px 10px;
      min-height: 182px;
    }
  }
  @media screen and (max-width: 768px) {
    h1 {
      font-size: 2rem;
      line-height: 2rem;
      margin-bottom: 20px;
    }
    h2,
    .offer-main-info h2,
    .page-content-wrap h2 {
      font-size: 1.875rem;
      line-height: 1.875rem;
      margin-bottom: 20px;
    }
    h3 {
      font-size: 1.5rem;
      line-height: 1.5rem;
      margin-bottom: 10px;
    }
    p,
    span,
    ul,
    ol,
    a,
    .footer-info-wrap p,
    .footer-nav ul li a,
    .footer .contacts-info-links a,
    .offer-main-info p {
      font-size: 0.875rem;
      line-height: 1.05rem;
    }
    .section,
    .page-content {
      margin-top: 50px;
      margin-bottom: 50px;
    }
    .header .container {
      padding: 8px 0;
    }
    .header-wrap {
      -webkit-box-pack: justify;
      -ms-flex-pack: justify;
      justify-content: space-between;
      width: 100%;
    }
    .header .logo-link {
      width: 148px;
      height: 43px;
    }
    .header .logo-link :hover {
      -webkit-filter: drop-shadow(0px 0px 20px #00c8ff);
    filter: drop-shadow(0px 0px 20px 1px #00c8ff);
    cursor: pointer;
    }
    .header .logo-link:hover::after {
      display: none;
    }
    .header .logo-link:hover svg{
      opacity: 1;
    }
    .header .logo-link:hover .triangle {
      animation: none;
    }
    .header-nav {
      top: 58px;
      left: auto;
      right: -100%;
    }
    .header-nav_active {
      width: 100%;
      top: 58px;
      right: 0;
    }
    .header .contacts-info-icons a {
      margin-right: 30px;
    }
    #tel-icon, #mail-icon {
      display: block;
  }
  .header .contacts-info-icons a:last-of-type {
      margin-right: 0;
  }
    .mobile-menu {
      -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
      order: 1;
      -ms-flex-item-align: end;
      align-self: flex-end;
      width: calc(100% - 20px);
      margin: 0 auto;
    }
    .mobile-menu .contacts-info-links {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-pack: justify;
      -ms-flex-pack: justify;
      justify-content: center;
      margin-top: 20px;
      width: 100%;
      text-align: center
    }
    .offer-main {
      padding-top: 60px;
      background-position: center 65%, center;
    }
    .offer-sm {
      padding-top: 60px;
      background-position: center 25%, center;
    }
    .offer-main .container {
      -webkit-box-orient: vertical;
      -webkit-box-direction: reverse;
      -ms-flex-direction: column-reverse;
      flex-direction: column-reverse;
    }
    .offer-sm .container {
      padding: 30px 0;
    }
    .offer-main-info {
      max-width: 100%;
      padding: 0;
      padding-top: 30px;
      text-align: center;
    }
    .offer-main-info h1 {
      margin-bottom: 20px;
    }
    .offer-main-info h2 {
      text-align: center;
    }
    .offer-main-img {
      width: 320px;
      height: 314px;
      margin: 0 auto;
      -webkit-filter: grayscale(0);
      filter: grayscale(0);
    }
    .offer-btns {
      -webkit-box-align: center;
      -ms-flex-align: center;
      align-items: center;
      margin-top: 20px;
    }
    .offer-sm .offer-btns {
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
      -ms-flex-direction: column;
      flex-direction: column;
    }
    .offer-btn {
      margin-bottom: 10px;
    }
    .offer-btn span {
      font-size: 1rem;
      line-height: 1rem;
    }
    .offer-sm .offer-btn {
      margin-right: 0;
      margin-bottom: 20px;
    }
    .offer-sm .offer-btn:last-child {
      margin-bottom: 0;
    }
    .breadcrumb {
      display: none;
    }
    .main-info-block .container {
      padding: 20px 10px;
    }
    .main-info-block h2,
    .main-info-block h3 {
      text-align: center;
    }
    .main-info-block-wrap-with-img {
      margin-bottom: 20px;
    }
    .main-info-block-img {
      margin-bottom: 10px;
      height: 245px;
    }
    .main-info-block-text {
      padding: 0;
      border: none;
    }
    .main-info-block-advantages {
      margin-top: 10px;
      gap: 10px;
    }
    .main-info-block-advantages-card {
      width: 100%;
      padding: 20px 10px;
      -webkit-box-orient: horizontal;
      -webkit-box-direction: normal;
      -ms-flex-direction: row;
      flex-direction: row;
      min-height: auto;
    }
    .main-info-block-advantages-card img {
      margin-bottom: 0;
      margin-right: 10px;
    }
    .main-info-block-advantages-card p {
      text-align: start;
    }
    .main-dev-card-wrap {
      padding: 0;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
      -ms-flex-direction: column;
      flex-direction: column;
    }
    .main-dev-card:hover .main-dev-card-wrap {
      -webkit-box-pack: justify;
      -ms-flex-pack: justify;
      justify-content: space-between;
    }
    .main-dev-card p {
      padding: 20px 10px;
      max-width: 100%;
      font-size: 1.5rem;
      line-height: 1.5rem;
      text-align: center;
      position: static;
      transform: none;
    }
    .main-dev-card:hover p {
      position: static;
      -webkit-transform: none;
      -ms-transform: none;
      transform: none;
    }
    .main-dev-card::before,
    .process-main-card::before {
      display: none;
    }
    .main-dev-card__links a {
      margin-bottom: 10px;
      min-width: 290px;
      max-width: 290px;
      width: 100%;
    }
    .process-main-card {
      padding: 20px 15px;
    }
    .process-main-card-text {
      width: 100%;
      margin-top: 24px;
    }
    .process-main-card strong {
      position: absolute;
      top: 20px;
      right: 15px;
      font-size: 1.5rem;
      line-height: 1.5rem;
      background: var(--elements-gradient);
      -webkit-background-clip: text;
      background-clip: text;
      color: transparent;
    }
    .process-main-card:hover strong {
      right: 15px;
      top: 20px;
    }
    .uslugi-main {
      text-align: start;
    }
    .uslugi-main__img {
      display: none;
    }
    .uslugi-main-card {
      -webkit-box-pack: start;
      -ms-flex-pack: start;
      justify-content: start;
      min-height: 91px;
      -webkit-box-align: center;
      -ms-flex-align: center;
      align-items: center;
    }
    .uslugi-main-card::before,
    .uslugi-main-card:hover::before {
      -webkit-backdrop-filter: blur(16.2px);
      backdrop-filter: blur(16.2px);
    }
    .uslugi-main-card::after {
      opacity: 1;
    }
    .uslugi-main-card h3 {
      position: relative;
    }
    .uslugi-main-card h3::before {
      content: "";
      width: 90px;
      height: 90px;
      display: block;
      background: var(--elements-gradient);
      position: absolute;
      left: 0;
      top: -20px;
      z-index: -2;
    }
    .uslugi-main-card p {
      max-height: none;
      text-align: start;
      margin-top: 10px;
    }
    .advantages {
      text-align: start;
    }
    .advantages-wrap {
      margin: 70px auto -80px;
    }
    .advantages-wrap ul li {
      margin-bottom: 10px;
    }
    .advantages-wrap ul li p:first-of-type {
      font-size: 1.5rem;
      line-height: 1.5rem;
      max-width: 69px;
    }
    .advantages-wrap ul {
      max-width: 290px;
      min-height: 190px;
    }
    .advantages-wrap ul::before {
      width: 190px;
      height: 190px;
      top: -26%;
      right: 14px;
    }
    .advantages-wrap ul::after {
      width: 119px;
      height: 119px;
      right: -22px;
    }
    .advantages-wrap:hover ul::after {
      right: 60px;
    }
    .cases-cards {
      gap: 10px;
    }
    .cases-card {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-orient: vertical;
      -webkit-box-direction: reverse;
      -ms-flex-direction: column-reverse;
      flex-direction: column-reverse;
      background: var(--dark-text-color);
      height: auto;
      min-height: auto;
    }
    .cases-card__img {
      position: static;
      -webkit-filter: grayscale(0);
      filter: grayscale(0);
      height: auto;
      max-height: 275px;
    }
    .cases-card__info {
      position: relative;
      width: 100%;
      padding: 20px 10px;
      min-width: 0;
    }
    .cases-card__info::before {
      display: none;
    }
    .cases-card__info::after {
      right: 10px;
    }
    .cases-card__info h3 {
      font-size: 1.5rem;
      line-height: 1.5rem;
      width: 90%;
    }
    .cases-card__info p {
      max-height: none;
    }
    .cases .btn-general-style {
      margin-top: 20px;
    }
    .block-with-btn-scroll-to-form p {
      font-size: 1rem;
    }
    .block-with-btn-scroll-to-form .btn-general-style {
      margin-top: 20px;
    }
    .competencies-card p::before,
    .list-with-element li::before {
      width: 50px;
      height: 50px;
      -webkit-filter: blur(12.9px);
      filter: blur(12.9px);
    }
    .technologies-slider {
      height: 46px;
    }
    .technologies-slider .swiper-slide {
      width: 46px;
      height: 46px;
      -webkit-filter: grayscale(0);
      filter: grayscale(0);
    }
    .skills-tabs {
      height: 60px;
    }
    .tabs {
      margin-bottom: 20px;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
      -ms-flex-direction: column;
      flex-direction: column;
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      z-index: 20;
    }
    .tab-btn {
      max-width: 100%;
      padding: 12px 50px;
    }
    .tab-btn:not(:first-child) {
      display: none;
    }
    .first-tab-btn {
      position: relative;
      display: block;
    }
    .tab-btn_active.first-tab-btn:after {
      background: url("data:image/svg+xml;charset=UTF-8,%3csvg width='20' height='17' viewBox='0 0 20 17' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M10 17L0 0L20 0L10 17Z' fill='black'/%3e%3c/svg%3e")
        center no-repeat;
    }
    .first-tab-btn:after {
      display: block;
    }
    .tabs.open .first-tab-btn:after {
      -webkit-transform: translateY(-50%) rotate(180deg);
      -ms-transform: translateY(-50%) rotate(180deg);
      transform: translateY(-50%) rotate(180deg);
    }
    .tabs.open .tab-btn {
      display: block;
    }
    .tab-content {
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
      -ms-flex-direction: column;
      flex-direction: column;
    }
    .tab-content__text::before,
    .tab-content__img::before,
    .tab-content__text:after {
      display: none;
    }
    .tab-content-wrap h3 {
      margin-bottom: 10px;
    }
    .tab-content__img {
      position: static;
      width: 100%;
      height: 290px;
    }
    .tab-content__text {
      padding: 20px 10px;
      min-height: auto;
      width: 100%;
    }
    .reviews-slider-card {
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
      -ms-flex-direction: column;
      flex-direction: column;
      text-align: center;
    }
    .reviews-slider-card__img-wrap {
      margin-right: 0;
      margin-bottom: 10px;
      min-width: 69px;
      height: 69px;
    }
    .reviews-slider-card__text-wrap {
      padding: 20px 15px;
    }
    .reviews-slider-wrap .swiper-btns {
      margin-top: 10px;
      width: 100%;
    }
    .form-main-wrap h3 {
      font-size: 1.5rem;
      line-height: 1.5rem;
    }
    .choose-communication__btn-wrapper {
      margin-bottom: 20px;
    }
    .form-main-img {
      display: none;
    }
    .form-main-wrap {
      width: 100%;
      margin-right: 0;
      padding: 20px 10px;
      min-height: auto;
    }
    .form__label {
      margin-bottom: 20px;
    }
    .form__input_main {
      padding: 17px 10px;
    }
    .form__input::-webkit-input-placeholder {
      font-size: 0.875rem;
      line-height: 1.05rem;
    }
    .form__input::-moz-placeholder {
      font-size: 0.875rem;
      line-height: 1.05rem;
    }
    .form__input:-ms-input-placeholder {
      font-size: 0.875rem;
      line-height: 1.05rem;
    }
    .form__textarea {
      min-height: 93px;
    }
    .form__textarea::-webkit-input-placeholder {
      font-size: 0.875rem;
      line-height: 1.05rem;
      padding-top: 20px;
    }
    .form__textarea::-moz-placeholder {
      font-size: 0.875rem;
      line-height: 1.05rem;
      padding-top: 20px;
    }
    .form__textarea:-ms-input-placeholder {
      font-size: 0.875rem;
      line-height: 1.05rem;
      padding-top: 20px;
    }
    .form__btn,
    .form-main-link {
      margin-left: auto;
      margin-right: auto;
    }
    .form__text,
    .form__link {
      font-size: 0.875rem !important;
      line-height: 1.05rem !important;
    }
    .page-content .container {
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
      -ms-flex-direction: column;
      flex-direction: column;
    }
    .page-content-wrap {
      margin-right: 0;
      margin-bottom: 50px;
      width: 100%;
    }
    .page-content-wrap h2,
    .page-content-wrap h3 {
      margin-top: 50px;
      text-align: center;
    }
    .list-with-element li {
      margin-bottom: 20px;
    }
    .aside {
      max-width: 100%;
    }
    .form-aside-wrap {
      padding: 20px 0;
      position: relative;
    }
    .form-aside-wrap::before {
      content: "";
      display: block;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.5);
      -webkit-backdrop-filter: blur(42px);
      backdrop-filter: blur(42px);
      position: absolute;
      left: -100%;
      top: 0;
    }
    .form-aside-wrap::after {
      content: "";
      display: block;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.5);
      -webkit-backdrop-filter: blur(42px);
      backdrop-filter: blur(42px);
      position: absolute;
      right: -100%;
      top: 0;
    }
    .form-aside-wrap .aside-title,
    .aside-title {
      font-size: 1.5rem;
      line-height: 1.5rem;
    }
    .aside-links ul li {
      margin-bottom: 10px;
    }
    .aside-links ul li a {
      font-size: 1rem;
      line-height: 1rem;
    }
    .blog-cards {
      gap: 10px;
    }
    .blog-card-wrap {
      min-height: auto;
      padding: 10px;
      width: 90%;
    }
    .blog-card-wrap p:first-of-type {
      font-size: 1.5rem;
      line-height: 1.5rem;
      margin-bottom: 10px;
    }
    .blog-card-wrap p {
      position: static;
      max-width: none;
      transform: none;
    }
    .blog-card::after {
      width: 20px;
      height: 20px;
      background-size: contain;
      right: 5px;
      bottom: 5px;
    }
    .blog-pagination {
      -webkit-box-pack: center;
      -ms-flex-pack: center;
      justify-content: center;
      margin-top: 20px;
      gap: 10px;
    }
    .blog-pagination-link {
      padding: 13px 17px;
    }
    .blog-pagination span {
      width: 8px;
      height: 8px;
    }
    .blog-pagination-btn {
      border-top: 22px solid transparent;
      border-bottom: 22px solid transparent;
    }
    .blog-pagination-btn:first-of-type {
      border-right: 44px solid var(--main-text-color);
      margin-right: 15px;
    }
    .blog-pagination-btn:last-of-type {
      border-left: 44px solid var(--main-text-color);
      margin-left: 15px;
    }
    .page-content-wrap .share h3 {
      margin-top: 30px;
    }
    .page-content-wrap .share-icons {
      margin: 20px 0;
    }
    .page-content-wrap ul,
    .page-content-wrap ol {
      padding-left: 20px;
    }
    .contacts-info {
      gap: 10px;
    }
    .contacts-info li {
      width: 100%;
    }
    .contacts-map {
      margin-top: 10px;
      height: 232px;
    }
    .specialists-list li {
      margin-bottom: 20px;
    }
    .specialists-card-img:after {
      left: -40%;
    }
    .specialists-card h3 {
      margin-top: 0;
    }
    .about-case-img-wrap {
      width: 290px;
      height: 264px;
    }
    .about-case-img {
      width: 266px;
      height: 152px;
      top: 14px;
      left: 12px;
    }
    .about-case-info {
      margin-bottom: 10px;
    }
    .about-case-info h3 {
      margin-bottom: 10px;
    }
    .tasks {
      padding: 20px 0;
    }
    .tasks ul li {
      margin-bottom: 20px;
    }
    .about-case-total-card {
      padding: 20px 10px;
    }
    .about-case-total-card h3 {
      margin-bottom: 10px;
    }
    .about-case-total-card__items {
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
      -ms-flex-direction: column;
      flex-direction: column;
      margin-top: 10px;
      gap: 10px;
    }
    .about-case-total-card__item {
      width: 100%;
    }
    .about-case-total-card__item p:first-of-type {
      font-size: 1.5rem;
      line-height: 1.5rem;
      margin-bottom: 0;
    }
    .about-case-card {
      margin-bottom: 10px;
      -webkit-box-align: center;
      -ms-flex-align: center;
      align-items: center;
    }
    .about-case-card-img,
    #proto .about-case-card-img img:first-of-type,
    #verstka .about-case-card-img img:first-of-type {
      width: 290px;
      height: 136px;
    }
    .about-case-card-img img {
      width: 100%;
      height: 136px;
      -o-object-fit: contain;
      object-fit: contain;
    }
    #proto .about-case-card-img img:nth-of-type(2),
    #verstka .about-case-card-img img:nth-of-type(2) {
      width: 140px;
      height: 130px;
      top: -17px;
      left: 213px;
    }
    #proto .about-case-card-img img:nth-of-type(3),
    #verstka .about-case-card-img img:nth-of-type(3) {
      width: 33px;
      height: 63px;
      top: 66px;
      left: 165px;
    }
    #design-maket .about-case-card-img img:first-of-type {
      width: 230px;
      height: 200px;
    }
    #design-maket .about-case-card-img img:nth-of-type(2) {
      width: 225px;
      height: 200px;
      top: 53%;
    }
    .contacts-wrap {
      gap: 10px;
      flex-direction: column;
    }
    .contacts-wrap li {
      width: 100%;
    }
    .footer {
      padding: 20px 0;
      margin: 0 auto 10px;
    }
    .footer .logo-link {
      width: 148px;
      height: 43px;
    }
    .footer-bg-img {
      top: auto;
      left: 0;
      right: 0;
      bottom: -70px;
    }
    .footer:after {
        display: none;
    }
    .footer .container {
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
      -ms-flex-direction: column;
      flex-direction: column;
      -webkit-box-align: center;
      -ms-flex-align: center;
      align-items: center;
      text-align: center;
    }
    .footer-info-wrap {
      max-width: 100%;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
      -ms-flex-direction: column;
      flex-direction: column;
      -webkit-box-align: center;
      -ms-flex-align: center;
      align-items: center;
    }
    .footer .contacts-info {
      margin: 10px 0;
      -webkit-box-align: center;
      -ms-flex-align: center;
      align-items: center;
    }
    .footer .contacts-info-icons {
      -webkit-box-pack: justify;
      -ms-flex-pack: justify;
      justify-content: space-between;
      margin-bottom: 10px;
    }
    .footer .contacts-info-links {
      display: flex;
      flex-direction: column;
    }
    .footer-nav {
      margin-top: 10px;
    }
    .footer-nav ul {
      text-align: center;
    }
    .footer-nav ul li {
      margin-bottom: 10px;
    }
    .popup__container {
      width: calc(100% - 15px);
      max-width: 320px;
      padding: 40px 15px;
    }
    .popup__title {
      font-size: 1.5rem;
      line-height: 1.5rem;
    }
    .popup__description_success {
      font-size: 1rem;
      line-height: 1.2rem;
    }
    .upbtn {
      width: 50px;
      height: 50px;
    }
  }
  @media screen and (max-width: 520px) {
      .burger-btn {
          margin-left: 20px;
      }
      .header .contacts-info-icons a {
          margin-right: 20px;
      }
    .main-info-block-img {
      height: 177px;
    }
  }
  @media screen and (max-width: 425px) {
      .header .contacts-info-icons a {
          width: 25px;
      height: 25px;
      margin-right: 12px;
      }
      .header .logo-link {
          width: 90px;
      }
      .burger-btn {
          margin-left: 12px;
          width: 32px;
          }
          .burger-btn span {
              width: 32px;
          }
    .uslugi-main-card h3 {
      width: 93%;
    }
    .choose-communication__btn-wrapper {
      -ms-flex-wrap: wrap;
      flex-wrap: wrap;
      gap: 10px;
    }
    .choose-communication__btn {
      width: 47%;
    }
    .about-case {
      background-position: center 80%;
    }
  }
  @media screen and (max-width: 375px) {
    .offer-main {
      padding-top: 60px;
      background-position: center 63%, center;
    }
    .footer-bg-img {
      bottom: -30px;
    }
    .advantages-wrap ul {
      max-width: 280px;
    }
    .advantages-wrap ul::after {
      right: -15px;
    }
    .offer-main-img {
      width: 100%;
    }
    .cases-card__img {
      height: 109px;
    }
    .cases-card__info {
      width: 90%;
    }
    .cases-card__info::after {
      right: -20px;
    }
    .page-content-wrap h2 {
      font-size: 1.7rem;
      line-height: 1.7rem;
    }
    .list-with-element li::before {
      width: 140px;
      height: 140px;
      top: 50%;
      left: 50%;
      -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
      transform: translate(-50%, -50%);
    }
  }
  @media screen and (max-width: 319px) {
    .main-dev-card__links a {
      min-width: 0;
    }
  }
  .not-visible-cases {
    display: none;
  }
  .visible-cases {
    display: flex;
  }
  