@import url(https://fonts.googleapis.com/css2?family=Geologica:wght@100..900&display=swap);

:root {
  --index: calc(1vw + 1vh);
  --bradius: 50px;
  --large-gap: 40px;
}

@media (max-width: 1023px) {
  :root {
    --bradius: 20px;
  }
}

@media (max-width: 767px) {
  :root {
    --large-gap: 20px;
  }
}

* {
  font-family: Geologica, sans-serif;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

h1,
h2 {
  color: #151721;
  font-size: 70px;
  font-weight: 500;
  line-height: 120%;
}

h3 {
  color: #151721;
  font-size: 48px;
  font-weight: 500;
  line-height: 120%;
}

h3 span {
  color: #9560c9;
}

h4 {
  color: #151721;
  font-size: 36px;
  font-weight: 500;
  line-height: 120%;
}

.popup-form h4 {
  font-size: 28px;
}

h5 {
  color: #151721;
  font-size: 28px;
  font-weight: 500;
  line-height: 130%;
}

h6 {
  color: #151721;
  font-size: 20px;
  font-weight: 500;
  line-height: 130%;
  letter-spacing: 0.6px;
  text-transform: uppercase;
}
.popup-form h6 {
  font-size: 16px;
}
@media (max-width: 1023px) {
  h1,
  h2 {
    font-size: 48px;
  }

  h3 {
    font-size: 36px;
  }

  h4,
  .popup-form h4 {
    font-size: 28px;
  }

  h5 {
    font-size: 20px;
  }
}

@media (max-width: 767px) {
  h1 {
    font-size: 30px;
  }

  h2 {
    font-size: 28px;
  }

  h3 {
    font-size: 20px;
  }

  h4,
  .popup-form h4 {
    font-size: 20px;
  }

  h6,
  .popup-form h6 {
    font-size: 16px;
  }
}

::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

::-webkit-scrollbar-thumb {
  background: #7dfdff;
  border-radius: 40px;
}

::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0);
}

::-webkit-scrollbar-horizontal {
  width: 8px;
  height: 8px;
}

::-webkit-scrollbar-thumb:horizontal {
  background: #7dfdff;
  border-radius: 40px;
}

::-webkit-scrollbar-track:horizontal {
  background: rgba(0, 0, 0, 0);
}

body {
  background: #f3f4f9;
  overflow-x: hidden;
}

::-moz-selection {
  background: #d3a9ff;
}

::selection {
  background: #d3a9ff;
}

.body {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

main {
  flex: 1 0 auto;
  position: relative;
  z-index: 10;
}

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

@media (max-width: 1870px) {
  .container {
    padding: 0 35px;
  }
}

@media (max-width: 1023px) {
  .container {
    padding: 0 20px;
  }
}

@media (max-width: 767px) {
  .container {
    padding: 0 10px;
  }
}

.hidden {
  display: none !important;
}

.animate {
  overflow: hidden;
  position: relative;
  display: inline-block;
}

.animate::after,
.animate::before {
  content: '';
  position: absolute;
  width: 100%;
  left: 0;
}

.animate::after {
  content: attr(data-replace);
  height: 100%;
  top: 0;
  transform: translate3d(0, 200%, 0);
  transition: transform 0.4s cubic-bezier(0.76, 0, 0.24, 1);
  color: #9560c9;
}

.animate:hover::before {
  transform-origin: 0 50%;
}

.animate:hover::after {
  transform: translate3d(0, 0, 0);
}

.animate span {
  display: inline-block;
  transition: transform 0.4s cubic-bezier(0.76, 0, 0.24, 1);
}

.animate:hover span {
  transform: translate3d(0, -200%, 0);
}

@media (max-width: 1023px) {
  .animate:hover::before {
    transform-origin: none;
  }

  .animate:hover::after {
    transform: translate3d(0, 200%, 0);
  }

  .animate:hover span {
    transform: none;
  }
}

#canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 2;
  filter: blur(8px);
  overflow: hidden;
}

.hight {
  height: 10000px;
}

.blob {
  position: absolute;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.blob svg {
  position: fixed;
  width: calc(var(--index) * 50);
  height: calc(var(--index) * 50);
  pointer-events: none;
  filter: blur(calc(var(--index) * 6));
  z-index: 1;
  bottom: calc(var(--index) * -12);
  right: calc(var(--index) * -10);
}

.blob svg path {
  cursor: pointer;
}

@media (max-width: 768px) {
  .blob svg {
    position: fixed;
    width: calc(var(--index) * 50);
    height: calc(var(--index) * 90);
    pointer-events: none;
    filter: blur(calc(var(--index) * 6));
    z-index: 1;
    bottom: calc(var(--index) * -27);
    right: calc(var(--index) * -20);
  }
}

.content {
  will-change: transform;
}

.wrapper {
  position: relative;
  z-index: 10;
}

#aura,
#cursor {
  position: absolute;
  border-radius: 100%;
  transition: 0.5s cubic-bezier(0.75, -1.27, 0.3, 2.33) transform,
    0.2s cubic-bezier(0.75, -1.27, 0.3, 2.33) opacity;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  pointer-events: none;
  z-index: 10000;
}

#cursor {
  width: 8px;
  height: 8px;
  background-color: rgba(115, 195, 255, 0.868);
  transform: scale(1);
}

#cursor.active {
  transform: scale(0.8);
}

#aura {
  width: 46px;
  height: 46px;
  border: 1px solid rgba(115, 195, 255, 0.662);
  background-color: 1px solid rgba(115, 195, 255, 0.868);
  transform: translate(5px, 5px);
}

#aura.active {
  border: 1.2px solid rgba(115, 195, 255, 0.33);
  transform: scale(1.3);
}

#aura.hidden,
#cursor.hidden {
  transform: scale(0.001);
}

.btn {
  background-color: #fff;
  height: 78px;
  min-width: 78px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 100px;
  text-decoration: none;
  color: #000;
  text-transform: uppercase;
  position: relative;
  overflow: hidden;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 100%;
  letter-spacing: 0.42px;
  width: -moz-fit-content;
  width: fit-content;
  box-shadow: 0 2px 5px 0 rgba(167, 168, 174, 0.05);
  cursor: pointer;
}

.btn.btn-border {
  border: 1px solid #e8e9ec;
}

.btn span,
.btn svg {
  position: relative;
  z-index: 1;
  transition: color 0.2s;
}

.btn span {
  display: flex;
  width: 100%;
  height: 100%;
  justify-content: center;
  align-items: center;
  padding: 0 48px;
}

.btn svg path {
  transition: fill 0.5s;
}

.btn::before {
  content: '';
  position: absolute;
  background-color: #151721;
  width: 0;
  height: 0;
  left: var(--xPos);
  top: var(--yPos);
  transform: translate(-50%, -50%);
  border-radius: 50%;
  transition: width 0.8s, height 0.8s;
}

.btn.btn-smoll {
  height: auto;
  border-radius: var(--bradius);
  border: 1px solid #e8e9ec;
  background: #fff;
  box-shadow: 0 2px 5px 0 rgba(167, 168, 174, 0.05);
  padding: 12px 16px;
  text-decoration: none;
  color: #151721;
  min-width: auto;
}

.btn.btn-smoll span {
  padding: 0;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.7px;
  text-transform: uppercase;
}

.btn.btn-block {
  width: 100%;
  height: 100%;
  border-radius: var(--bradius);
  font-size: 28px;
}

/* Мобильные стили */
.btn.activeb::before {
  width: 800px;
  height: 800px;
}

.btn.btn-block.activeb::before {
  width: 1500px;
  height: 1500px;
}

.btn.activeb svg path {
  fill: #fff;
}

.btn.activeb {
  color: #fff;
}

@media (min-width: 1024px) {
  .btn:hover::before {
    width: 500px;
    height: 500px;
  }

  .btn.btn-block:hover::before {
    width: 1500px;
    height: 1500px;
  }

  .btn:hover svg path {
    fill: #fff;
  }

  .btn:hover {
    color: #fff;
  }
}

@media (max-width: 1300px) {
  .btn.btn-h48 {
    height: 48px;
    min-width: 48px;
  }

  .btn-h48 svg {
    height: 16px;
    width: 16px;
  }
}

@media (max-width: 767px) {
  .btn:not(.svg):not(.btn-smoll):not(.btn-h48) {
    width: 100%;
  }

  .btn.btn-smoll span {
    font-size: 12px;
  }
}

.link {
  color: #151721;
  font-size: 18px;
  font-weight: 300;
  line-height: 140%;
}

.link-up {
  color: #151721;
  font-size: 20px;
  font-weight: 500;
  line-height: 130%;
  letter-spacing: 0.6px;
  text-transform: uppercase;
}

.link::after {
  color: #9560c9;
}

.m100 {
  margin: 100px 0;
}

.m200 {
  margin: 200px 0;
}

@media (max-width: 767px) {
  .m100 {
    margin: 40px 0 100px;
  }

  .m200 {
    margin: 100px 0;
  }
}

.title {
  max-width: 900px;
  display: flex;
  flex-direction: column;
  gap: var(--large-gap);
}

.title__descr {
  display: flex;
  flex-direction: column;
  gap: 20px;
  color: #464854;
  font-size: 16px;
  font-weight: 300;
  line-height: 140%;
}

.title-w587 {
  max-width: 587px;
  gap: 20px;
}

.title__links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.subtitle {
  color: #464854;
  font-size: 14px;
  font-weight: 500;
  line-height: 140%;
  letter-spacing: 0.7px;
  text-transform: uppercase;
}

@media (max-width: 1200px) {
  .title-w587:not(.title-project) {
    max-width: 47%;
  }
}

@media (max-width: 1023px) {
  .title-w587:not(.title-project) h3 {
    font-size: 28px;
  }

  .title-project {
    max-width: 100%;
  }
}

@media (max-width: 767px) {
  .title-w587 {
    max-width: 100% !important;
  }

  .title-project h3 {
    font-size: 28px;
  }
}

.placeholder {
  display: inline;
  align-items: center;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0);
  border: none;
  outline: 0;
  color: #9560c9;
  max-height: 84px;
  min-height: 84px;
  position: relative;
  margin-right: 10px;
}

.placeholder::after {
  content: '';
  display: inline-block;
  margin-left: 10px;
  width: 7px;
  height: 1.15em;
  background-color: #9560c9;
  animation: caret-blink 0.7s infinite;
  position: absolute;
}

@media (max-width: 1023px) {
  .placeholder::after {
    width: 4px;
  }

  .placeholder {
    max-height: 40px;
    min-height: 40px;
  }
}

@media (max-width: 767px) {
  .placeholder::after {
    width: 3px;
  }
}

@keyframes caret-blink {
  0%,
  100% {
    opacity: 0;
  }

  50% {
    opacity: 1;
  }
}

.header {
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  max-height: 118px;
  transition: all 0.3s ease-in-out;
}

.header .btn-header {
  min-width: 245px;
  max-width: 245px;
}

.header .btn.activeb {
  border: 1px solid #151721;
}

.header__wrapper {
  width: 100%;
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--large-gap);
}

.header__logo a {
  display: flex;
  text-decoration: none;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.header__logo a > img {
  width: 64px;
  height: 62px;
}

.header__nav {
  display: flex;
  gap: 90px;
  list-style-type: none;
}

.header__nav a {
  text-decoration: none;
  color: #151721;
  font-size: 18px;
  font-style: normal;
  font-weight: 300;
  line-height: 140%;
}

.header__nav a::after {
  color: #9560c9;
}

.header__nav [aria-current='page'] {
  color: #9560c9;
}

.header__nav_wrapper {
  position: absolute;
  left: 0;
  top: 118px;
  width: 100%;
  background: #fff;
  max-height: 380px;
  overflow: hidden;
  height: 0;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.header__nav_in {
  max-height: 380px;
  padding: 75px 0;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  row-gap: 46px;
  list-style-type: none;
  -moz-column-gap: 136px;
  column-gap: 136px;
  max-width: 980px;
  position: relative;
}

.header__nav_in > li > a {
  color: #151721;
  font-size: 16px;
  font-weight: 500;
  line-height: 140%;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

.header__nav_in > li > ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
  list-style-type: none;
}

.header__nav_in > li {
  max-width: -moz-fit-content;
  max-width: fit-content;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.header__social {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--large-gap);
}

.header.scrolled {
  background: #fff;
}

.header.scrolled .btn {
  border: 1px solid #e8e9ec;
}

.header__hamburger {
  display: none;
}

.header__mobile {
  display: none;
}

.header__nav #menu-item-20 > a {
  pointer-events: none;
}

@media (max-width: 1700px) {
  .header__nav {
    gap: 40px;
  }
}

@media (max-width: 1540px) {
  .header__social {
    gap: 20px;
  }
}

@media (max-width: 1450px) {
  .header__nav {
    gap: 20px;
  }
}

@media (max-width: 1390px) {
  .header__social {
    gap: 10px;
  }
}

@media (max-width: 1355px) {
  .header__wrapper {
    gap: 15px;
  }
}

@media (max-width: 1300px) {
  .header__nav,
  .header__social {
    display: none;
  }

  .header {
    max-height: 80px;
  }

  .header__logo,
  .header__logo a {
    height: 50px;
  }

  .header__logo a img {
    height: 100%;
    -o-object-fit: contain;
    object-fit: contain;
  }

  .header__wrapper {
    padding: 10px 0;
  }

  .header__hamburger {
    display: block;
  }

  .header__mobile {
    display: flex;
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    overflow-x: hidden;
    height: 0;
    opacity: 0;
    transition: opacity 0.2s ease-in-out;
  }

  .header__mobile_wrapper {
    height: 100%;
    overflow-y: scroll;
    display: flex;
    flex-direction: column;
    gap: 40px;
    justify-content: space-between;
  }

  .header__mobile_wrapper::-webkit-scrollbar {
    width: 0;
    height: 0;
  }

  .header__mobile.active {
    height: calc(100vh - 70px);
    padding: 40px 0 80px;
    opacity: 1;
  }

  .header__mobile .container {
    position: relative;
  }

  .mobile__menu > li > .sub-menu {
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  .mobile__menu > li > .sub-menu > li > a {
    display: grid;
    grid-template-columns: 1fr 36px;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 10px 0;
    list-style-type: none;
    color: #151721;
    font-size: 14px;
    font-weight: 500;
    line-height: 140%;
    letter-spacing: 0.7px;
    text-transform: uppercase;
    text-decoration: none;
  }

  .mobile__menu > li > .sub-menu > li.menu-item-has-children > a::after {
    content: url('/wp-content/uploads/2024/10/menu_arrow.svg');
    height: 16px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 5px;
  }

  .mobile__menu > li > .sub-menu > li > .sub-menu {
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  .mobile__menu > li > .sub-menu > li > .sub-menu > li > a {
    text-decoration: none;
    display: block;
    width: 100%;
    color: #464854;
    font-size: 14px;
    font-weight: 300;
    line-height: 140%;
  }

  .header__mobile_menu {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 340px;
  }

  .mobile__menu {
    list-style-type: none;
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  .mobile__menu > li > a {
    color: #151721;
    font-size: 28px;
    font-weight: 300;
    line-height: 130%;
    text-decoration: none;
    display: block;
    width: 100%;
    padding: 10px 0;
  }

  .header__mobile_social {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 40px;
  }

  .mobile__menu > li > .sub-menu,
  .mobile__menu > li > .sub-menu > li > .sub-menu {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }

  .mobile__menu > li.open > .sub-menu {
    max-height: 500px;
    margin-top: 30px;
  }

  .mobile__menu > li > .sub-menu > li.open > .sub-menu {
    max-height: 500px;
    margin-top: 20px;
  }

  .mobile__menu > li > .sub-menu > li.open > a::after {
    transform: rotate(180deg);
    margin-top: 0px;
    margin-bottom: 5px;
  }

  .header__mobile_phones {
    display: flex;
    gap: 10px;
    align-items: center;
  }

  .header__hamburger .btn {
    display: none;
  }

  .header__hamburger .btn.active {
    display: flex;
  }
}

@media (max-width: 767px) {
  .header__wrapper {
    padding: 5px 0;
  }

  .header {
    max-height: 58px;
  }

  .header__logo,
  .header__logo a {
    height: 38px;
  }

  .header__logo a {
    gap: 10px;
  }

  .header__logo a svg {
    height: 10px;
    width: 70px;
  }

  .header__mobile {
    top: 58px;
  }

  .header__mobile.active {
    padding: 20px 0 80px;
  }

  .header__mobile_menu .btn {
    width: fit-content !important;
  }

  .header__mobile_social a {
    font-size: 14px;
  }

  .header__mobile_social .btn {
    height: 48px;
    min-width: 48px;
  }

  .header__mobile_social .btn svg {
    height: 16px;
    width: 16px;
  }
}

@media (max-width: 450px) {
  .header__mobile_menu {
    max-width: 100%;
  }
}

.banner {
  position: relative;
  margin-bottom: 200px;
}

.banner__wrapper {
  display: flex;
  align-items: center;
  width: 100%;
  padding: 118px 0 0;
}

.banner.main {
  margin-bottom: 0;
}

.banner.main .banner__wrapper {
  min-height: 100vh;
  padding: 118px 0;
}

.banner__descr {
  display: flex;
  flex-direction: column;
  gap: var(--large-gap);
}

.banner__descr_900 {
  max-width: 900px;
  padding: 150px 0 0;
}

.banner__descr_900 .banner__text {
  flex-direction: column;
  align-items: flex-start;
}

.banner__descr_900 .banner__text_p {
  max-width: 100%;
}

.banner__text {
  display: flex;
  gap: var(--large-gap);
  align-items: center;
}

.banner__text_p {
  max-width: 430px;
  color: #464854;
  font-size: 16px;
  font-weight: 300;
  line-height: 140%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.breadcrumbs {
  position: absolute;
  top: 140px;
}

.police .breadcrumbs {
  position: static;
}

.breadcrumbs_list {
  list-style-type: none;
  display: flex;
  flex-wrap: wrap;
}

.breadcrumbs_list li {
  color: #464854;
  font-size: 18px;
  font-weight: 300;
  line-height: 140%;
  display: flex;
}

.breadcrumbs_list li a {
  color: #151721;
  font-size: 18px;
  font-weight: 300;
  line-height: 140%;
  text-decoration: none;
}

.breadcrumbs_list li a span {
  white-space: nowrap;
}

.breadcrumbs_list li a::after {
  color: #9560c9;
}

.breadcrumbs_list li::after {
  content: '/';
  margin: 0 8px;
}

.breadcrumbs_list li:last-child::after {
  content: '';
  margin: 0;
}

.banner .article {
  width: 100%;
  position: static;
  transform: none;
  padding: 0;
  margin-top: 100px;
}

.banner .article .article__text {
  text-align: center !important;
}

.banner-project .banner__text_p {
  color: #464854;
  font-size: 28px;
  font-weight: 300;
  line-height: 130%;
}

.banner__btn {
  display: grid;
  grid-template-columns: 78px 1fr;
  gap: 20px;
  align-items: center;
  position: relative;
  color: #151721;
  font-size: 18px;
  font-weight: 300;
  line-height: 140%;
}

.banner__btn_link {
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
}

.banner__btn:hover .btn::before {
  width: 200px;
  height: 200px;
}

.banner__btn:hover .btn svg path {
  fill: #fff;
}

.banner__btn .btn::before {
  left: 70px;
  top: 80px;
}

@media (max-width: 1300px) {
  .breadcrumbs {
    top: 95px;
  }
}

@media (max-width: 1023px) {
  .banner__btn {
    grid-template-columns: 48px 1fr;
  }

  .banner__btn .btn svg {
    height: 16px;
    width: 16px;
  }
}

@media (max-width: 767px) {
  .banner:not(.main) .banner__wrapper {
    padding: 138px 0 0;
  }

  .banner__descr_900 {
    padding: 0;
  }

  .banner__text {
    flex-direction: column;
  }

  .breadcrumbs {
    top: 78px;
  }

  .breadcrumbs_list li,
  .breadcrumbs_list li a {
    font-size: 14px;
  }

  .banner__text_p {
    max-width: 100%;
  }

  .banner:not(.main) {
    margin-bottom: 100px;
  }
  .banner-project .banner__text_p {
    font-size: 20px;
  }
}

.sticky {
  margin: 40px 0 500px;
  height: 3000px;
}

.sticky_d {
  height: 30vh;
}

.sticky__wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 100px;
}

.sticky__card {
  max-width: 1606px;
  border-radius: var(--bradius);
  background: #fff;
  box-shadow: 0 2px 5px 0 rgba(167, 168, 174, 0.05);
  padding: 50px;
  display: grid;
  grid-template-columns: 1fr 430px;
  gap: var(--large-gap);
  transition: opacity 0.75s ease;
  will-change: transform, opacity, scale;
}

.sticky__card_left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: var(--large-gap);
}

.sticky__card_right {
  min-height: 500px;
  max-height: 500px;
  overflow: hidden;
}

.sticky__card_right img,
.sticky__card_right video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  object-position: center;
}

.sticky__card_tads {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.sticky__card_tab {
  border-radius: var(--bradius);
  border: 1px solid #e8e9ec;
  background: #fff;
  box-shadow: 0 2px 5px 0 rgba(167, 168, 174, 0.05);
  padding: 12px;
}

.sticky__card_text {
  color: #464854;
  font-size: 16px;
  font-weight: 300;
  line-height: 140%;
}

@media (max-width: 1200px) {
  .sticky__card {
    grid-template-columns: 1fr 240px;
  }

  .sticky__wrapper {
    gap: var(--large-gap);
  }
}

@media (max-width: 1023px) {
  .sticky__card {
    padding: 20px;
    display: flex;
    flex-direction: column-reverse;
    gap: 20px;
  }

  .sticky__card_right,
  .sticky__card_right video {
    max-height: 300px;
    min-height: auto;
  }

  .sticky__card_right .lottie-animation {
    position: relative;
    max-height: 300px;
    min-height: 300px;
    height: 100%;
  }

  .sticky__card_right .lottie-animation svg {
    width: 100%;
    position: absolute;
    top: 50%;
    transform: translateY(-50%) !important;
    height: auto !important;
  }

  .sticky__card_left {
    gap: 20px;
  }
}

@media (max-width: 767px) {
  .sticky__card_right,
  .sticky__card_right video {
    max-height: 150px;
    height: 150px;
  }

  .sticky__card_right .lottie-animation {
    max-height: 150px;
    min-height: 150px;
  }
}

.steps {
  margin: 200px 0 200px;
}

.steps__wrapper {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 50px;
  align-items: center;
}

.steps__wrapper-more {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: var(--large-gap);
}

.steps__wrapper-more .steps__block {
  border-radius: 0 0 var(--bradius) 0;
}

.steps__wrapper_1col {
  grid-template-columns: 1fr;
  max-width: 1215px;
  margin: 0 auto;
}

.steps__title {
  display: flex;
  flex-direction: column;
  gap: 20px;
  color: #464854;
  font-size: 16px;
  font-weight: 300;
  line-height: 140%;
}

.steps__blocks {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--large-gap);
  position: relative;
}

.steps__svg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  -webkit-animation-name: rotation;
  -webkit-animation-duration: 5s;
  -webkit-animation-iteration-count: infinite;
  -webkit-animation-timing-function: linear;
  -moz-animation-name: rotation;
  -moz-animation-duration: 5s;
  -moz-animation-iteration-count: infinite;
  -moz-animation-timing-function: linear;
  -o-animation-name: rotation;
  -o-animation-duration: 5s;
  -o-animation-iteration-count: infinite;
  -o-animation-timing-function: linear;
  animation-name: rotation;
  animation-duration: 5s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
}

.steps__block {
  background: #fff;
  box-shadow: 0 2px 5px 0 rgba(167, 168, 174, 0.05);
  padding: 50px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.steps__wrapper .steps__block:nth-child(2) {
  border-radius: 0 0 var(--bradius) 0;
}

.steps__wrapper .steps__block:nth-child(3) {
  border-radius: 0 0 0 var(--bradius);
}

.steps__wrapper .steps__block:nth-child(4) {
  border-radius: 0 var(--bradius) 0 0;
}

.steps__wrapper .steps__block:nth-child(5) {
  border-radius: var(--bradius) 0 0 0;
}

.steps__block h5 {
  font-size: 24px;
}

.steps__block p {
  color: #464854;
  font-size: 16px;
  font-weight: 300;
  line-height: 140%;
}

@keyframes rotation {
  0% {
    transform: translate(-50%, -50%) rotate(0);
  }

  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

@media (max-width: 1500px) {
  .steps__wrapper-more {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 1300px) {
  .steps__wrapper {
    display: flex;
    flex-direction: column;
    align-items: start;
  }

  .steps__title {
    max-width: 583px;
  }
}

@media (max-width: 1023px) {
  .steps__blocks {
    gap: 20px;
  }

  .steps__block {
    padding: 20px;
  }
  .steps__block h5 {
    font-size: 20px;
  }
}

@media (max-width: 767px) {
  .steps {
    margin: 100px 0 !important;
  }

  .steps__blocks {
    display: flex;
    flex-direction: column;
  }

  .steps__svg {
    display: none;
  }

  .steps__wrapper-more {
    grid-template-columns: 1fr;
  }
}

.support {
  margin: 200px 0;
}

.support__wrapper {
  background: #fff;
  position: relative;
  border-radius: var(--bradius);
}

.support__bg {
  border-radius: var(--bradius);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 80%;
  height: 100%;
  overflow: hidden;
}

.support__bg img {
  width: 100%;
  height: auto;
}

.support__inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 2fr;
}

.support__left {
  position: relative;
  height: 100%;
  will-change: transform;
}

.support__left_sticky {
  padding: 100px 50px;
  height: calc(100vh - 118px);
  display: flex;
  flex-direction: column;
  gap: var(--large-gap);
  justify-content: space-between;
}

.support__left_sticky.stick {
  position: sticky;
  top: 100px;
}

.support__item {
  padding: 150px 50px;
  border-bottom: 1px solid #7a7b7e;
  border-left: 1px solid #7a7b7e;
  color: #151721;
  font-size: 28px;
  font-weight: 300;
  line-height: 130%;
}

.support__item:last-child {
  border-bottom: none;
}

.support__item span {
  color: #151721;
  font-size: 28px;
  font-weight: 500;
  line-height: 130%;
}

.support__btn_mob {
  display: none;
}

@media (max-width: 1300px) {
  .support__inner {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 1023px) {
  .support__inner {
    display: flex;
    flex-direction: column;
    padding: 20px;
    gap: var(--large-gap);
  }

  .support__left_sticky {
    height: auto;
    padding: 0;
    margin-bottom: 40px;
  }

  .support__left_sticky .btn {
    display: none;
  }

  .support__left_sticky.stick {
    position: relative;
    top: auto;
  }

  .support__item {
    padding: 0 0 40px;
    border-left: none;
    font-size: 20px;
  }
  .support__item span {
    font-size: 20px;
  }
  .support__right {
    display: flex;
    flex-direction: column;
    gap: var(--large-gap);
  }

  .support__item:last-child {
    border-bottom: 1px solid #7a7b7e;
  }

  .support__btn_mob {
    display: block;
    margin-top: 20px;
  }
}

@media (max-width: 767px) {
  .support {
    margin: 100px 0;
  }

  .support__left_sticky {
    margin-bottom: 20px;
  }

  .support__right {
    gap: 40px;
  }

  .support__item,
  .support__item span {
    font-size: 18px;
  }

  .support__bg {
    width: 100%;
  }

  .support__bg img {
    width: 130%;
  }
}

.portfolio {
  margin: 200px 0;
}

.portfolio__wrapper {
  display: flex;
  flex-direction: column;
  gap: var(--large-gap);
}

.portfolio__title {
  max-width: 900px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  color: #464854;
  font-size: 16px;
  font-weight: 300;
  line-height: 140%;
}

.portfolio__row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--large-gap);
}

.portfolio__item {
  position: relative;
  max-height: 430px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: calc((100% - 40px) / 2) !important;
}

.portfolio__item:first-child {
  max-height: 840px;
  width: 100% !important;
}

.portfolio-page__items_wrapper-main .portfolio__item:first-child {
  max-height: 430px;
  width: calc((100% - 40px) / 2) !important;
}

.portfolio-page__items_wrapper-main .portfolio__item:nth-child(2) {
  justify-self: start !important;
}

.portfolio__item:nth-child(2) {
  justify-self: end !important;
}

.portfolio__item:nth-child(4n + 3),
.portfolio__item:nth-child(4n + 4) {
  justify-self: end;
}

.portfolio__item:nth-child(4n + 1),
.portfolio__item:nth-child(4n + 2) {
  justify-self: start;
}

.portfolio__item_link {
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
}

.portfolio__item_img {
  width: 100%;
  border-radius: 0 0 var(--bradius) 0;
  overflow: hidden;
}

.portfolio__item_img img,
.portfolio__item_img video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  object-position: center;
  transition: all 0.3s ease-in-out;
}

.portfolio__item_text {
  color: #151721;
  font-size: 18px;
  font-weight: 300;
  line-height: 140%;
  transition: all 0.3s ease-in-out;
}

.portfolio-page {
  margin: 100px 0 200px;
}

.portfolio-page__wrapper {
  display: flex;
  flex-direction: column;
  gap: 100px;
}

.portfolio-page__tabs {
  width: 100%;
  padding: 20px 40px;
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  background: #fff;
}

.portfolio-page__tabs::-webkit-scrollbar {
  width: 0;
  height: 0;
}

.portfolio-page__tab {
  width: -moz-fit-content;
  width: fit-content;
  min-width: -moz-fit-content !important;
  min-width: fit-content !important;
}

.portfolio-page__tab span {
  white-space: nowrap;
}

.portfolio-page__tab.active {
  background: #151721;
}

.portfolio-page__tab.active span {
  color: #fff;
}

.portfolio-page__tab.active::before {
  display: none;
}

.portfolio-page__items_wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--large-gap);
}

.portfolio-page__btn {
  margin: 0 auto;
}

@media (min-width: 1024px) {
  .portfolio__item:hover .portfolio__item_img img,
  .portfolio__item:hover .portfolio__item_img video {
    transform: scale(1.1);
  }

  .portfolio__item:hover .portfolio__item_text {
    color: #9560c9;
  }
}

@media (max-width: 1420px) {
  .portfolio .btn,
  .portfolio__item {
    max-height: 452px;
  }

  .portfolio .btn {
    min-height: 452px;
  }
}

@media (max-width: 1200px) {
  .portfolio-page__tabs {
    padding: 20px;
    row-gap: 20px;
    -moz-column-gap: 10px;
    column-gap: 10px;
  }

  .portfolio-page__items_wrapper {
    grid-template-columns: 1fr;
  }

  .portfolio__item:first-child,
  .portfolio-page__items_wrapper-main .portfolio__item:first-child {
    width: 50% !important;
  }

  .portfolio__item:nth-child(2n + 1) {
    justify-self: start;
  }

  .portfolio__item:nth-child(2n),
  .portfolio-page__items_wrapper-main .portfolio__item:nth-child(2) {
    justify-self: end !important;
  }
}

@media (max-width: 1023px) {
  .portfolio .btn,
  .portfolio__item {
    max-height: 354px;
  }

  .portfolio .btn {
    min-height: 354px;
  }

  .portfolio-page__tabs {
    flex-wrap: nowrap;
    overflow-x: scroll;
  }
}

@media (max-width: 767px) {
  .portfolio {
    margin: 100px 0;
  }

  .portfolio .btn,
  .portfolio__item {
    max-height: 340px;
    width: 100% !important;
  }

  .portfolio .btn {
    min-height: 340px;
  }

  .portfolio__item_text {
    font-size: 16px;
  }

  .portfolio__item:first-child,
  .portfolio-page__items_wrapper-main .portfolio__item:first-child {
    width: 100% !important;
  }

  .portfolio-page__wrapper {
    gap: 50px;
  }

  .portfolio-page__items_wrapper {
    gap: 40px;
  }

  .portfolio-page {
    margin: 100px 0 100px;
  }
}

.clients {
  margin: 200px 0 115px;
}

.clients__wrapper {
  display: flex;
  flex-direction: column;
  gap: var(--large-gap);
}

.clients__cards {
  display: flex;
  flex-wrap: wrap;
  overflow: hidden;
  justify-content: space-around;
}

.clients__item {
  width: 250px;
  height: 250px;
  -o-object-fit: cover;
  object-fit: cover;
}

@media (max-width: 1200px) {
  .clients__item {
    width: 130px;
    height: 130px;
  }
}

@media (max-width: 767px) {
  .clients {
    margin: 100px 0;
  }

  .clients__cards {
    gap: 20px;
    justify-content: start;
  }

  .clients__item {
    width: 100px;
    height: 100px;
  }
}

.why {
  margin: 115px 0 200px;
}

.why__wrapper {
  display: flex;
  flex-direction: column;
  gap: var(--large-gap);
}

.why__wrapper h2 {
  max-width: 80%;
}

.why__blocks {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--large-gap);
}

.why__animation {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(180deg);
}

.why__block {
  padding: 50px;
  background: #fff;
  box-shadow: 0 2px 5px 0 rgba(167, 168, 174, 0.05);
  display: flex;
  flex-direction: column;
  gap: 20px;
  color: #464854;
  font-size: 16px;
  font-weight: 300;
  line-height: 140%;
}

.why__block:nth-child(2) {
  border-radius: 0 0 var(--bradius) 0;
}

.why__block:nth-child(5) {
  border-radius: var(--bradius) 0 0 0;
}

@media (max-width: 1200px) {
  .why__wrapper h2 {
    max-width: 100%;
  }

  .why__none {
    display: none;
  }

  .why__block {
    max-width: 630px;
  }

  .why__blocks {
    display: flex;
    flex-direction: column;
  }

  .why__block:nth-child(5) {
    align-self: end;
  }
}

@media (max-width: 1023px) {
  .why__block {
    max-width: 500px;
  }

  .why__animation {
    display: none;
  }
}

@media (max-width: 767px) {
  .why {
    margin: 100px 0;
  }

  .why__blocks,
  .why__wrapper {
    gap: 40px;
  }

  .why__block {
    padding: 20px;
  }
}

.comment {
  margin: 200px 0;
}

.comment__wrapper {
  display: flex;
  flex-direction: column;
  gap: var(--large-gap);
}

.comment__title {
  display: flex;
  gap: var(--large-gap);
  align-items: center;
  justify-content: space-between;
}

.comment__arrows {
  display: flex;
  gap: 20px;
  align-items: center;
}

.comment__slide {
  border-radius: var(--bradius);
  background: #fff;
  box-shadow: 0 2px 5px 0 rgba(167, 168, 174, 0.05);
  overflow: hidden;
  position: relative;
  padding: 50px;
  display: flex !important;
  flex-direction: column;
  gap: var(--large-gap);
}

.comment__slide_link {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1;
}

.comment__slide_title {
  display: grid;
  grid-template-columns: 170px 1fr;
  gap: var(--large-gap);
  align-items: center;
}

.comment__slide_title h5 {
  letter-spacing: 0.84px;
  text-transform: uppercase;
}

.comment__slide_img {
  width: 100%;
  height: 170px;
  overflow: hidden;
  transition: transform 0.3s ease-in-out;
}

.comment__slide_img img,
.comment__slide_img video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.comment__slide_descr {
  display: flex;
  flex-direction: column;
  gap: 20px;
  justify-content: space-between;
}

.comment__slide_text {
  color: #464854;
  font-size: 16px;
  font-weight: 300;
  line-height: 140%;
  min-height: 225px;
}

.comment__slide_doc {
  position: relative;
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 20px;
  align-items: center;
}

.comment__slide_doc_link {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 2;
}

.comment__slide_doc_img {
  width: 100%;
  height: 100%;
  mix-blend-mode: luminosity;
  transition: mix-blend-mode 0.3s ease-in-out;
}

.comment__slide_doc_img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.comment__slide_doc_descr {
  display: flex;
  flex-direction: column;
  gap: 5px;
  font-size: 14px;
  line-height: 140%;
}

.comment__slide_doc_name {
  color: #151721;
  font-weight: 600;
}

.comment__slide_doc_text {
  color: var(--Dark-Gray, #464854);
  font-weight: 300;
}

.comment .slick-track {
  display: flex;
  gap: var(--large-gap);
}

.comment .slick-track:after,
.comment .slick-track:before {
  display: none !important;
}

@media (min-width: 1024px) {
  .comment__slide_doc:hover .comment__slide_doc_img {
    mix-blend-mode: normal;
  }

  .comment__slide:hover .comment__slide_img {
    animation: scaleBack 1.2s ease-in-out forwards;
  }

  @keyframes scaleBack {
    0% {
      transform: scale(1);
    }

    50% {
      transform: scale(0.85);
    }

    70% {
      transform: scale(0.95);
    }

    90% {
      transform: scale(0.9);
    }

    100% {
      transform: scale(1);
    }
  }
}

@media (max-width: 1200px) {
  .comment__slide_title {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }

  .comment__slide_img,
  .comment__slide_img video {
    width: 170px;
    height: 170px;
  }
}

@media (max-width: 1023px) {
  .comment__arrows {
    display: none;
  }

  .comment__slide {
    width: 452px !important;
  }

  .comment__slide {
    padding: 20px;
    gap: 20px;
  }

  .comment__slide_title {
    gap: 20px;
  }
}

@media (max-width: 767px) {
  .comment {
    margin: 100px 0;
  }

  .comment__wrapper {
    gap: 40px;
  }

  .comment__slide {
    width: 320px !important;
  }

  .comment .slick-track {
    gap: 10px;
  }

  .comment__slide_title {
    display: grid;
    grid-template-columns: 80px 1fr;
    align-items: center;
  }

  .comment__slide_img,
  .comment__slide_img video {
    width: 80px;
    height: 80px;
  }

  .comment__slide_doc {
    grid-template-columns: 48px 1fr;
  }

  .comment__slide_doc_img {
    width: 48px;
    height: 48px;
  }
}

.accordion {
  margin: 200px 0;
}

.accordion__wrapper {
  display: flex;
  flex-direction: column;
  gap: var(--large-gap);
  max-width: 1530px;
}

.accordion__blocks {
  display: flex;
  flex-direction: column;
  gap: var(--large-gap);
  max-width: 1057px;
}

.accordion__item {
  display: grid;
  grid-template-columns: 78px 1fr;
  gap: 20px;
  align-items: center;
  cursor: pointer;
}

.accordion__item:hover .btn::before {
  width: 200px;
  height: 200px;
}

.accordion__item:hover .btn svg path {
  fill: #fff;
}

.accordion__item .btn::before {
  left: 70px;
  top: 80px;
}

.accordion__descr {
  overflow: hidden;
}

.accordion__top {
  color: #151721;
  font-size: 28px;
  font-weight: 500;
  line-height: 130%;
}

.accordion__down {
  max-height: 0;
  transition: all 0.3s ease-in-out;
  color: #464854;
  font-size: 16px;
  font-weight: 300;
  line-height: 140%;
}

.accordion__down.active {
  margin-top: 20px;
}

.accordion__btn svg {
  transition: transform 0.3s ease-in-out;
}

.accordion__btn.active svg path {
  fill: #fff;
}

.accordion__btn.active svg {
  transform: rotate(45deg);
}

.accordion__btn.active::before {
  width: 500px;
  height: 500px;
  left: 70px;
  top: 80px;
}

@media (max-width: 1023px) {
  .accordion__top {
    font-size: 20px;
  }

  .accordion__btn {
    height: 48px;
    min-width: 48px;
  }

  .accordion__btn svg {
    width: 16px;
    height: 16px;
  }

  .accordion__item {
    grid-template-columns: 48px 1fr;
  }
}

@media (max-width: 767px) {
  .accordion {
    margin: 100px 0;
  }
}

.connect {
  margin: 200px 0;
}

.connect__wrapper {
  margin: 0 auto;
  max-width: 1000px;
  padding: 50px;
  border-radius: var(--bradius);
  background: #fff;
  box-shadow: 0 2px 5px 0 rgba(167, 168, 174, 0.05);
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
}

.connect__wrapper p {
  text-align: center;
  color: #464854;
  font-size: 16px;
  font-weight: 300;
  line-height: 140%;
}

.connect__wrapper h3 {
  text-align: center;
}

@media (max-width: 1023px) {
  .connect__wrapper {
    padding: 20px;
  }

  .connect {
    margin: 200px 0 100px;
  }
}

@media (max-width: 767px) {
  .connect {
    margin: 100px 0 50px;
  }

  .connect h3 {
    font-size: 28px;
  }
}

.footer {
  margin: 0 0 40px;
}

.footer__wrapper {
  display: flex;
  justify-content: space-between;
  gap: var(--large-gap);
  align-items: center;
}

.footer__copy {
  color: #464854;
  font-size: 18px;
  font-weight: 300;
  line-height: 140%;
}

.footer__social {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--large-gap);
}

.footer__social a span {
  white-space: nowrap;
}

.footer__contact {
  display: flex;
  gap: 40px;
}

@media (max-width: 1540px) {
  .footer__wrapper {
    position: relative;
    height: 196px;
    align-items: flex-end;
  }

  .footer__copy,
  .footer__policy {
    height: 78px;
    display: flex;
    align-items: center;
  }

  .footer__social {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
  }
}

@media (max-width: 1023px) {
  .footer__social {
    width: 100%;
  }

  .footer .btn {
    height: 48px;
    min-width: 48px;
  }

  .footer .btn svg {
    height: 16px;
    width: 16px;
  }

  .footer__wrapper {
    height: 136px;
  }

  .footer__copy,
  .footer__policy {
    height: 48px;
  }
}

@media (max-width: 767px) {
  .footer__social {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    grid-row: 1;
  }

  .footer__wrapper {
    display: grid;
    grid-template-columns: 1fr;
  }

  .footer__copy,
  .footer__policy,
  .footer__wrapper {
    height: auto;
    justify-content: center;
  }

  .footer__arrow {
    margin: 0 auto;
  }

  .footer__social a span {
    font-size: 16px;
  }

  .footer__copy,
  .footer__policy a span {
    font-size: 14px;
  }

  .footer {
    margin: 0 0 10px;
  }
}

.problem {
  margin: 100px 0;
}

.problem__wrapper {
  display: flex;
  flex-direction: column;
  gap: 100px;
}

.problem__img {
  width: 100%;
  height: 600px;
  border-radius: var(--bradius);
  overflow: hidden;
}

.problem__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.problem h2 {
  display: flex;
  flex-direction: column;
}

@media (max-width: 1023px) {
  .problem h2 {
    font-size: 36px;
    line-height: 120%;
  }

  .problem__img {
    height: 300px;
  }
}

@media (max-width: 767px) {
  .problem h2 {
    font-size: 28px;
    display: block;
    min-height: 101px;
  }

  .problem .placeholder {
    margin-right: 20px;
  }

  .problem__wrapper {
    gap: 40px;
  }

  .problem__img {
    height: 150px;
  }

  .problem {
    margin: 100px 0 40px;
  }
}

.task {
  margin: 100px 0;
}

.task__wrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.task__item {
  display: flex;
  flex-direction: column;
  gap: 20px;
  color: #464854;
  font-size: 16px;
  font-weight: 300;
  line-height: 140%;
  padding: 50px;
  border-radius: 0 0 var(--bradius) 0;
  background: #fff;
  box-shadow: 0 2px 5px 0 rgba(167, 168, 174, 0.05);
}

.task__item:first-child {
  padding: 0;
  border-radius: 0;
  box-shadow: none;
  background: 0 0;
}

.task__item:nth-child(3n + 1) {
  grid-column: 1;
}

.task__item:nth-child(3n) {
  grid-column: 2;
}

.task__item:nth-child(3n + 2) {
  grid-column: 3;
}

@media (max-width: 1300px) {
  .task__wrapper {
    grid-template-columns: 1fr;
  }

  .task__item {
    width: calc((100% - 40px) / 2);
  }

  .task__item:nth-child(2n + 1) {
    justify-self: start;
  }

  .task__item:nth-child(2n) {
    justify-self: end;
  }

  .task__item:nth-child(3n + 1) {
    grid-column: initial;
  }

  .task__item:nth-child(3n) {
    grid-column: initial;
  }

  .task__item:nth-child(3n + 2) {
    grid-column: initial;
  }
}

@media (max-width: 1023px) {
  .task h3 {
    font-size: 28px;
  }

  .task__item {
    padding: 20px;
    width: calc((100% - 20px) / 2);
  }
}

@media (max-width: 767px) {
  .task__item {
    width: 100%;
  }

  .task__item:nth-child(2n + 1) {
    justify-self: center;
  }

  .task__item:nth-child(2n) {
    justify-self: center;
  }

  .task h3 {
    font-size: 20px;
  }

  .task__wrapper {
    gap: 20px;
  }

  .task {
    margin: 40px 0;
  }
}

.article {
  margin: 200px 0;
}

.article__wrapper {
  margin: 0 auto;
}

.article__text {
  display: block;
  text-align: center;
  color: #151721;
  font-size: 28px;
  font-weight: 500;
  line-height: 130%;
  min-height: 80px;
}

.article__text_simple {
  display: flex;
  flex-direction: column;
  gap: 20px;
  text-align: center;
  color: #151721;
  font-size: 28px;
  font-weight: 500;
  line-height: 130%;
}

.article__text_simple span {
  color: #7a7b7e;
  font-size: 16px;
  font-weight: 500;
  line-height: 140%;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

.article .placeholder {
  min-height: 35px;
  display: inline;
  position: relative;
}

.article .placeholder::after {
  width: 3px;
  margin-left: 5px;
}

@media (max-width: 1200px) {
  .article__text {
    text-align: left;
  }
}

@media (max-width: 1023px) {
  .article__text {
    font-size: 20px;
  }

  .article__text_simple {
    font-size: 20px;
  }
}

@media (max-width: 767px) {
  .article {
    margin: 100px 0;
  }
}

.stage {
  margin: 200px 0;
}

.stage__wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.stage .title {
  max-width: 100%;
}

.stage .title h3 span {
  color: #9560c9;
}

.stage__left {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 40px;
}

.stage__note {
  max-width: 758px;
  color: #464854;
  font-size: 18px;
  font-weight: 300;
  line-height: 140%;
}

.stage__note:before {
  content: '*';
  color: #9560c9;
  font-size: 70px;
  font-weight: 500;
}

.stage__note_mobile {
  display: none;
}

.stage__blocks {
  display: flex;
  flex-direction: column;
  gap: var(--large-gap);
}

.stage__item {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 100px;
  cursor: pointer;
}

.stage__item:hover .btn::before {
  width: 200px;
  height: 200px;
}

.stage__item:hover .btn svg path {
  fill: #fff;
}

.stage__item .btn::before {
  left: 70px;
  top: 80px;
}

.stage__item_img {
  width: 100px;
  height: 100px;
}

.stage__item_img img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

.stage__item_img_mobile {
  display: none;
}

.stage__descr {
  overflow: hidden;
}

.stage__top {
  color: #151721;
  font-size: 28px;
  font-weight: 500;
  line-height: 130%;
  display: flex;
  gap: 100px;
  align-items: center;
  justify-content: space-between;
  min-height: 100px;
}

.stage__down {
  max-height: 0;
  transition: all 0.3s ease-in-out;
  color: #464854;
  font-size: 16px;
  font-weight: 300;
  line-height: 140%;
}

.stage__down.active {
  margin-top: 40px;
}

.stage__btn svg {
  transition: transform 0.3s ease-in-out;
}

.stage__btn.active svg path {
  fill: #fff;
}

.stage__btn.active svg {
  transform: rotate(45deg);
}

.stage__btn.active::before {
  width: 500px;
  height: 500px;
  left: 70px;
  top: 80px;
}

.stage__divider {
  width: 100%;
  height: 1px;
  background-color: #7a7b7e;
  position: relative;
  left: -20%;
}

.stage__divider.divider_init {
  left: 0;
}

@media (max-width: 1300px) {
  .stage__item,
  .stage__top {
    gap: 20px;
  }
}

@media (max-width: 1023px) {
  .stage__wrapper {
    display: flex;
    flex-direction: column;
  }

  .stage__note {
    display: none;
  }

  .stage__item_img {
    height: 50px;
    width: 50px;
  }

  .stage__item {
    grid-template-columns: 50px 1fr;
    gap: 40px;
  }

  .stage__blocks {
    gap: 20px;
  }

  .stage__top {
    min-height: 50px;
  }

  .stage__top_title {
    font-size: 20px;
  }

  .stage__btn svg {
    height: 16px;
    width: 16px;
  }

  .stage__down.active {
    margin-top: 20px;
    margin-bottom: 20px;
  }

  .stage__note_mobile {
    display: block;
    margin-top: 40px;
  }

  .stage__note:before {
    font-size: 36px;
  }
}

@media (max-width: 767px) {
  .stage {
    margin: 100px 0;
  }

  .stage__item_img {
    display: none;
  }

  .stage__item_img_mobile {
    display: block;
  }

  .stage__item {
    display: flex;
  }

  .stage__top {
    display: grid;
    grid-template-columns: 50px 1fr 50px;
  }

  .stage__note:before {
    font-size: 20px;
  }
}

.horizontal {
  margin: 200px 0;
}

.horizontal .title {
  gap: 20px;
}

.horizontal__wrapper {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.horizontal__scroll {
  display: flex;
  flex-wrap: nowrap;
  gap: var(--large-gap);
}

.horizontal__scroll .portfolio__item {
  min-width: 430px;
  max-width: 430px;
  max-height: none;
  flex-shrink: 0;
}

.horizontal__scroll .btn.btn-block {
  min-width: 430px;
  max-width: 430px;
  height: 400px;
}

.horizontal__scroll .portfolio__item_img,
.horizontal__scroll .portfolio__item_img video {
  height: 400px;
}

.horizontal__scroll.mobile-scroll {
  overflow-y: scroll;
}

.horizontal__scroll::-webkit-scrollbar {
  width: 0;
  height: 0;
}

@media (max-width: 1023px) {
  .horizontal__scroll .portfolio__item_img,
  .horizontal__scroll .portfolio__item_img video {
    height: 320px;
  }

  .horizontal__scroll .btn.btn-block {
    min-width: 320px;
    max-width: 320px;
    height: 320px;
  }

  .horizontal__scroll .portfolio__item {
    min-width: 320px;
    max-width: 320px;
  }

  .horizontal__scroll {
    gap: 20px;
  }
}

@media (max-width: 767px) {
  .horizontal {
    margin: 100px 0;
  }

  .horizontal__scroll .portfolio__item_img,
  .horizontal__scroll .portfolio__item_img video {
    height: 250px;
  }

  .horizontal__scroll .btn.btn-block {
    min-width: 250px;
    max-width: 250px;
    height: 250px;
  }

  .horizontal__scroll .portfolio__item {
    min-width: 250px;
    max-width: 250px;
  }

  .horizontal__scroll .btn span {
    font-size: 20px;
  }
}

.contact {
  margin: 200px 0;
}

.contact__wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.contact__left {
  height: 100%;
  position: relative;
  will-change: transform;
  pointer-events: none;
}

.contact__left_sticky {
  max-width: 587px;
  color: #151721;
  font-size: 48px;
  font-weight: 500;
  line-height: 120%;
}

.contact__left_sticky.stick {
  position: sticky;
  top: 150px;
}

.contact__right {
  display: flex;
  flex-direction: column;
  gap: var(--large-gap);
}

.contact__item {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 100px;
  align-items: center;
}

.contact__img {
  width: 100px;
  height: 100px;
}

.contact__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

.contact__link {
  color: #151721;
  font-size: 20px;
  font-weight: 500;
  line-height: 130%;
  letter-spacing: 0.6px;
  text-transform: uppercase;
}

.contact__time {
  color: #151721;
  font-size: 20px;
  font-weight: 500;
  line-height: 130%;
  letter-spacing: 0.6px;
  text-transform: uppercase;
}

.contact__time span {
  color: #464854;
  font-size: 16px;
  font-weight: 300;
  line-height: 140%;
  text-transform: none;
}

@media (max-width: 1200px) {
  .contact__item {
    gap: 20px;
  }
}

@media (max-width: 1023px) {
  .contact__wrapper {
    display: flex;
    flex-direction: column;
  }

  .contact__left_sticky.stick {
    position: static;
    max-width: none;
  }

  .contact__right {
    gap: 20px;
  }

  .contact__img {
    width: 50px;
    height: 50px;
  }

  .contact__item {
    grid-template-columns: 50px 1fr;
    gap: 40px;
  }
}

@media (max-width: 767px) {
  .contact {
    margin: 100px 0;
  }

  .contact__left h3 {
    font-size: 28px;
  }

  .contact__link {
    font-size: 16px;
  }

  .contact__time {
    font-size: 16px;
  }

  .contact__time span {
    font-size: 14px;
  }

  .banner .article .article__text {
    text-align: left !important;
  }
}

.info {
  margin: 100px 0 200px;
}

.info__wrapper {
  display: grid;
  grid-template-columns: 587px 1fr;
  gap: 40px;
}

.info__left {
  width: 100%;
  height: 587px;
  overflow: hidden;
  border-radius: 0 0 var(--bradius) 0;
}

.info__left img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.info__right {
  display: flex;
  justify-content: center;
}

.info__items {
  max-width: 900px;
  display: flex;
  flex-direction: column;
  gap: var(--large-gap);
}

.info__item {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 100px;
  align-items: center;
}

.info__img {
  width: 100px;
  height: 100px;
}

.info__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

.info__text {
  color: #464854;
  font-size: 16px;
  font-weight: 300;
  line-height: 140%;
}

@media (max-width: 1300px) {
  .info__wrapper {
    grid-template-columns: 288px 1fr;
  }

  .info__item {
    gap: 20px;
  }
}

@media (max-width: 1023px) {
  .info__wrapper {
    display: flex;
    flex-direction: column;
  }

  .info__left {
    height: 300px;
  }

  .info__items {
    gap: 20px;
  }

  .info__img {
    width: 50px;
    height: 50px;
  }

  .info__item {
    grid-template-columns: 50px 1fr;
  }
}

@media (max-width: 767px) {
  .info {
    margin: 100px 0 100px;
  }

  .info__left {
    height: 150px;
  }
}

.techno {
  margin: 200px 0;
}

.techno__wrapper {
  display: flex;
  flex-direction: column;
  gap: var(--large-gap);
}

.techno__items {
  display: grid;
  gap: var(--large-gap);
  grid-template-columns: repeat(auto-fill, 273px);
}

.techno__item {
  padding: 30px 50px;
  height: 150px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 0 0 var(--bradius) 0;
  background: #fff;
  box-shadow: 0 2px 5px 0 rgba(167, 168, 174, 0.05);
}

.techno__item p {
  color: #d4d4d4;
  text-align: center;
  font-size: 28px;
  font-weight: 500;
  line-height: 130%;
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease-in-out;
}

.techno__item span {
  color: #d4d4d4;
  font-size: 16px;
  font-weight: 300;
  line-height: 140%;
  transition: all 0.3s ease-in-out;
}

@media (min-width: 1024px) {
  .techno__item:hover p,
  .techno__item:hover span {
    color: #151721;
  }
}

@media (max-width: 1250px) {
  .techno__item {
    padding: 10px;
    height: 70px;
    border-radius: 0 0 20px 0;
  }

  .techno__item p {
    font-size: 14px;
  }

  .techno__items {
    grid-template-columns: repeat(auto-fill, 124px);
    gap: 40px;
  }
}

@media (max-width: 1023px) {
  .techno__items {
    grid-template-columns: repeat(auto-fill, 124px);
    gap: 20px;
  }
}

@media (max-width: 767px) {
  .techno__items {
    display: flex;
    gap: 10px;
    overflow-x: scroll;
  }

  .techno__items::-webkit-scrollbar {
    width: 0;
    height: 0;
  }

  .techno__item {
    min-width: 106px;
  }

  .techno {
    margin: 100px 0;
  }
}

.price {
  margin: 200px 0;
}

.price__wrapper {
  display: flex;
  flex-direction: column;
  gap: var(--large-gap);
}

.price__items {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--large-gap);
}

.price__item {
  width: calc((100% - 40px) / 2) !important;
  padding: 50px;
  background: #fff;
  box-shadow: 0 2px 5px 0 rgba(167, 168, 174, 0.05);
  height: 250px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: #151721;
  font-size: 28px;
  font-weight: 500;
  line-height: 130%;
  position: relative;
  overflow: hidden;
  transition: color 0.2s;
}

.price__item:nth-child(4n + 3),
.price__item:nth-child(4n + 4) {
  justify-self: end;
  border-radius: var(--bradius) 0 0 0;
}

.price__item:nth-child(4n + 1),
.price__item:nth-child(4n + 2) {
  justify-self: start;
  border-radius: 0 0 var(--bradius) 0;
}

.price__item.color {
  background: #7dfdff;
  pointer-events: none;
}

.price__item.color:before {
  display: none;
}

.price__item_sum {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}

.price__item_time {
  color: #151721;
  font-size: 16px;
  font-weight: 300;
  line-height: 140%;
  transition: color 0.2s;
  max-width: 100px;
}

.price__item::before {
  content: '';
  position: absolute;
  background-color: #151721;
  width: 0;
  height: 0;
  left: var(--xPos);
  top: var(--yPos);
  transform: translate(-50%, -50%);
  border-radius: 50%;
  transition: width 0.8s, height 0.8s;
}

.price__item_sum,
.price__item_title {
  z-index: 1;
  transition: color 0.2s;
}

.price__item_link {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: 2;
}

.price__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--large-gap);
}

.price__card {
  border-radius: 0 0 var(--bradius) 0;
  background: #f8f9fd;
  box-shadow: 0 2px 5px 0 rgba(167, 168, 174, 0.05);
  min-height: 805px;
  display: flex;
  flex-direction: column;
}

.price__card_header {
  background: #151721;
  padding: 50px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  color: #fff;
  font-size: 28px;
  font-weight: 500;
  line-height: 130%;
}

.price__card__title {
  letter-spacing: 0.84px;
  text-transform: uppercase;
}

.price__card__bottom {
  padding: 20px 50px 50px;
  display: flex;
  flex-direction: column;
  gap: var(--large-gap);
  justify-content: space-between;
  height: 100%;
}

.price__card__bottom .btn {
  width: 100%;
}

@media (min-width: 1024px) {
  .price__card__bottom .btn:hover::before {
    width: 1000px;
    height: 1000px;
  }
}

.price__card__bottom .btn.activeb::before {
  width: 1000px;
  height: 1000px;
}

.price__card_items {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.price__card_item {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 10px;
  align-items: center;
}

.price__card_item_text {
  color: #464854;
  font-size: 16px;
  font-weight: 300;
  line-height: 140%;
}

.price__card_item_text span {
  font-weight: 600;
  color: #9560c9;
}

.price__card_item_img {
  display: flex;
  justify-content: center;
  align-items: center;
}

.price__card_item:nth-child(1),
.price__card_item:nth-child(2) {
  padding-bottom: 20px;
  border-bottom: 1px solid #e8e9ec;
}

@media (min-width: 1024px) {
  .price__item:not(.color):hover::before {
    width: 1500px;
    height: 1500px;
  }

  .price__item:not(.color):hover {
    color: #fff;
  }

  .price__item:not(.color):hover .price__item_time {
    color: #fff;
  }
}

.price__item:not(.color).activeb::before {
  width: 1500px;
  height: 1500px;
}

.price__item:not(.color).activeb {
  color: #fff;
}

.price__item:not(.color).activeb .price__item_time {
  color: #fff;
}

@media (max-width: 1720px) {
  .price__cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }

  .price__card {
    max-width: 452px;
    min-width: 452px;
  }

  .price__card_header {
    min-height: 228px;
    padding: 50px 20px;
  }

  .price__card__bottom {
    padding: 20px 20px 50px;
  }
}

@media (max-width: 1700px) {
  .price__items {
    grid-template-columns: 1fr;
  }

  .price__item:nth-child(2n + 1) {
    justify-self: start;
  }

  .price__item:nth-child(2n) {
    justify-self: end;
  }
}

@media (max-width: 1023px) {
  .price__item {
    font-size: 20px;
    width: calc((100% - 20px) / 2) !important;
  }

  .price__cards {
    justify-content: flex-start;
  }

  .price__card {
    max-width: 587px;
    min-width: auto;
    width: 587px;
    min-height: auto;
  }

  .price__card_header {
    padding: 20px;
    min-height: auto;
    font-size: 20px;
  }
}

@media (max-width: 767px) {
  .price {
    margin: 100px 0;
  }

  .price__item {
    width: 100% !important;
    height: auto;
    padding: 20px;
    gap: 20px;
  }

  .price__card_header {
    font-size: 16px;
  }
}

.outlink {
  margin: 200px 0;
}

.outlink__wrapper {
  max-width: 900px;
  display: flex;
  flex-direction: column;
  gap: var(--large-gap);
}

.outlink__item {
  position: relative;
  height: 100%;
  width: 100%;
  max-height: 100%;
}

.outlink__item_wrapper {
  display: grid;
  grid-template-columns: 100px 1fr 78px;
  align-items: center;
  gap: 100px;
  height: 100%;
  width: 100%;
  max-height: 100%;
}

@media (min-width: 1024px) {
  .outlink__item:hover .outlink__btn.btn::before {
    width: 200px;
    height: 200px;
  }

  .outlink__item:hover .outlink__btn.btn svg path {
    fill: #fff;
  }
}

.outlink__item.activeb .outlink__btn.btn::before {
  width: 200px;
  height: 200px;
}

.outlink__item.activeb .outlink__btn.btn svg path {
  fill: #fff;
}

.outlink__item .outlink__btn.btn::before {
  left: 70px;
  top: 80px;
}

.outlink__link {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  max-height: 80px;
  left: 0;
  top: 0;
  z-index: 2;
}

.outlink__text {
  color: #151721;
  font-size: 28px;
  font-weight: 500;
  line-height: 130%;
}

.outlink__img {
  width: 100%;
  height: 100%;
}

.outlink__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

@media (max-width: 1200px) {
  .outlink__item_wrapper {
    gap: 20px;
  }
}

@media (max-width: 1023px) {
  .outlink__wrapper {
    gap: 20px;
  }

  .outlink__item_wrapper {
    grid-template-columns: 50px 1fr 48px;
    gap: 40px;
  }

  .outlink__btn svg {
    height: 16px;
    width: 16px;
  }

  .outlink__text {
    font-size: 20px;
  }
}

@media (max-width: 767px) {
  .outlink {
    margin: 100px 0;
  }

  .outlink__text {
    font-size: 18px;
    font-weight: 600;
  }
}

.transform {
  margin: 100px 0;
}

.transform.iphone {
  display: none;
  /* Скрыть блок с iPhone */
}

.transform.default {
  display: block;
  /* По умолчанию показывать обычный блок */
}

.transform__wrapper {
  position: relative;
  display: inline-block;
  width: 100%;
  height: 600px;
  overflow: hidden;
  border-radius: var(--bradius);
}

.transform__video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.5s ease;
}

.with-mask {
  mask-image: url(#gridMask);
  -webkit-mask-image: url(#gridMask);
  mask-type: luminance;
}

.no-mask {
  opacity: 0;
}

.transform .mask {
  position: absolute;
  top: 0;
  left: 0;
  width: 101%;
  height: 100%;
  opacity: 1;
  transition: all 0.5s ease-in-out;
}

.transform__block {
  transition: fill 0.5s ease-in-out;
}

.transform:hover .no-mask {
  opacity: 1;
  /* При наведении второе видео становится видимым */
}

.transform:hover .with-mask {
  opacity: 0;
  /* При наведении видео с маской скрывается */
}

.transform__image {
  display: none;
  /* По умолчанию изображение скрыто */
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  mask-image: url(#gridMask);
  -webkit-mask-image: url(#gridMask);
  mask-type: luminance;
  transition: opacity 0.5s ease;
}

.transform__img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  opacity: 0;
  transition: all 0.5s ease-in-out;
}

.transform:hover .transform__img {
  opacity: 1;
}

@media (max-width: 767px) {
  .transform__wrapper {
    height: 400px;
  }
}

.project-task {
  margin: 100px 0;
}

.project-task__wrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.project-task__item {
  padding: 50px;
  border-radius: 0 0 var(--bradius) 0;
  background: #fff;
  box-shadow: 0 2px 5px 0 rgba(167, 168, 174, 0.05);
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.project-task__item_text {
  color: #464854;
  font-size: 16px;
  font-weight: 300;
  line-height: 140%;
}

.project-task__item:first-child {
  background: 0 0;
  padding: 0;
  box-shadow: none;
  border-radius: 0;
  grid-column: 1/3 !important;
	justify-content: center;
}

.project-task__item:first-child .title {
	max-width: none;
}

.project-task__item:nth-child(3n + 1) {
  grid-column: 1;
}

.project-task__item:nth-child(3n) {
  grid-column: 2;
}

.project-task__item:nth-child(3n + 2) {
  grid-column: 3;
}

.project-block {
  margin: 200px 0;
}

.project-block__wrapper {
  display: flex;
  flex-direction: column;
  gap: 100px;
}

.project-block__img {
  width: 100%;
  height: 600px;
  overflow: hidden;
  border-radius: var(--bradius);
}

.project-block__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.project-block__img video {
	width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

.project-block__2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.project-block__slider {
  display: grid;
  grid-template-columns: repeat(2, 50%);
  align-items: center;
  margin: 40px 0 0;
  position: relative;
}

.project-block__slider_right {
  width: 100%;
  height: 587px;
  border-radius: 0 0 0 var(--bradius);
  overflow: hidden;
}

.project-block__slider .slick-arrow {
  display: none !important;
}

.project-block__slider .slick-list,
.project-block__slider .slick-track {
  height: 100% !important;
}

.project-block__slider .slick-dots {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 20px;
  list-style-type: none;
  display: flex !important;
  gap: 16px;
  width: fit-content;
}

.project-block__slider .slick-dots li {
  height: 16px;
  width: 16px;
  position: relative;
}

.project-block__slider .slick-dots li button {
  border: none;
  outline: 0;
  background: #e8e9ec;
  width: 16px;
  height: 16px;
  border-radius: 100%;
  font-size: 0;
  position: absolute;
  top: 0;
}
.project-block__slider .slick-dots li button:before {
  display: none;
}
.project-block__slider .slick-dots .slick-active button {
  background: #151721;
}

.project-block__slide {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.project-block__slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.project-block__descr {
  max-width: 587px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  color: #464854;
  font-size: 16px;
  font-weight: 300;
  line-height: 140%;
}

.project-block__list {
  display: flex;
  flex-direction: column;
  gap: 40px;
  max-width: 900px;
}

.project-block__list-w47 {
  max-width: 47%;
}

.project-block__list_item {
  display: grid;
  grid-template-columns: 40px 1fr;
  align-items: center;
  gap: 100px;
}

.project-block__list_img {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.project-block__list_img img {
  width: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

.project-block__list_text {
  color: #464854;
  font-size: 16px;
  font-weight: 300;
  line-height: 140%;
}

.project-block__list_text b {
  color: #151721;
  font-weight: 600;
}

@media (max-width: 1870px) {
  .project-block__img {
    height: 500px;
  }
}

@media (max-width: 1605px) {
  .project-block__img {
    height: 400px;
  }
}

@media (max-width: 1350px) {
  .project-block__img {
    height: 350px;
  }
}

@media (max-width: 1300px) {
  .project-task__wrapper {
    grid-template-columns: 1fr;
  }

  .project-task__item {
    width: calc((100% - 40px) / 2);
  }

  .project-task__item:nth-child(2n + 1) {
    justify-self: start;
  }

  .project-task__item:nth-child(2n) {
    justify-self: end;
  }

  .project-task__item:nth-child(3n + 1) {
    grid-column: initial;
  }

  .project-task__item:nth-child(3n) {
    grid-column: initial;
  }

  .project-task__item:nth-child(3n + 2) {
    grid-column: initial;
  }

  .project-task__item:first-child {
    grid-row: initial;
	  grid-column: initial !important;
	  width: 100% !important;
  }
}

@media (max-width: 1200px) {
  .project-block__img {
    height: 300px;
  }

  .project-block__slider {
    margin: 0;
    display: flex;
    flex-direction: column-reverse;
    gap: 100px;
  }

  .project-block__descr {
    max-width: 100%;
  }

  .project-block__list_item {
    gap: 20px;
  }
}

@media (max-width: 1023px) {
  .project-task__item {
    width: calc((100% - 20px) / 2);
  }

  .project-task__item:not(:first-child) {
    padding: 20px;
  }

  .project-block__img {
    height: 240px;
  }

  .project-block__slider_right {
    height: 475px;
  }

  .project-block__2col-list {
    display: flex;
    flex-direction: column;
    gap: 100px;
  }

  .project-block__list_item {
    gap: 40px;
  }

  .project-block__list-w47 {
    max-width: 100%;
  }
}

@media (max-width: 767px) {
  .project-task__item {
    width: 100%;
  }

  .project-task__item:nth-child(2n + 1) {
    justify-self: center;
  }

  .project-task__item:nth-child(2n) {
    justify-self: center;
  }

  .project-task__wrapper {
    gap: 20px;
  }

  .project-block {
    margin: 100px 0;
  }

  .project-block__wrapper {
    gap: 40px;
  }

  .project-block__img {
    height: 150px;
  }

  .project-block__slider_right {
    height: 300px;
  }

  .project-block__slider {
    gap: 40px;
  }

  .project-block__2col {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  .project-block__2col-list {
    gap: 40px;
  }
}

@media (max-width: 485px) {
  .project-block__img img {
    height: 100%;
  }
}

.popup-form {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1000000;
  display: none;
  justify-content: flex-end;
  overflow: hidden;
}

.popup-form__wrapper {
  width: 860px;
  height: 100%;
  padding: 50px 100px 50px 50px;
  position: relative;
  background: #f3f4f9;
  right: -100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  transition: all 0.3s ease-in-out;
}

.popup-form__main {
  display: none;
  flex-direction: column;
  gap: 40px;
}

.popup-form__main.active {
  display: flex;
}

.popup-form.active {
  display: flex;
}

.popup-form h4,
.popup-form h6 {
  text-transform: uppercase;
}

.popup-form__close {
  position: absolute;
  top: 20px;
  right: 20px;
}

.popup-form__title {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.popup-form__title_contacts,
.popup-form__title_social {
  display: flex;
  gap: 20px;
  align-items: center;
}

.popup-form__title_phone {
  max-width: 280px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.popup-form__title_phone p {
  color: #464854;
  font-size: 14px;
  font-weight: 300;
  line-height: 140%;
}

.popup-form__title_phone .link span {
  color: #151721;
  font-size: 16px;
  font-weight: 500;
  line-height: 140%;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

.popup-form__title_phone .link:after {
  font-size: 16px;
  font-weight: 500;
  line-height: 140%;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

.popup-form__form form {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.popup-form__inputs,
.popup-form__inputs_col {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.popup-form__inputs_2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

input,
.popup-form__input {
  width: 100%;
  max-height: 52px;
  padding: 16px 24px;
  border-radius: 100px;
  border: 1px solid #e8e9ec;
  background: #fff;
  color: #7a7b7e;
  font-size: 14px;
  font-weight: 300;
  line-height: 140%;
}

.custom-select.has-error {
  border: 1px solid #db2f2c !important;
}

.input_error {
  border: 1px solid #ff0000 !important;
}

.shake {
  animation: shake 0.3s ease;
}

@keyframes shake {
  0%,
  100% {
    transform: translateX(0);
  }

  25% {
    transform: translateX(-5px);
  }

  75% {
    transform: translateX(5px);
  }
}

textarea {
  max-height: 100px;
  min-height: 100px;
  border-radius: 20px 20px 0px 20px !important;
}

input:focus,
textarea:focus {
  border: 1px solid #9560c9;
  outline: 0;
}

input:-webkit-autofill,
input:-webkit-autofill:focus,
input:-webkit-autofill:hover,
textarea:-webkit-autofill,
textarea:-webkit-autofill:focus,
textarea:-webkit-autofill:hover {
  -webkit-transition: background-color 5000s ease-in-out 0s;
  transition: background-color 5000s ease-in-out 0s;
}

.popup-form__list_wrapper {
  position: relative;
  height: 52px;
}

.popup-form__list {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  border-radius: 100px;
  border: 1px solid #e8e9ec;
  background: #fff;
  z-index: 10;
}

.popup-form__list-lang {
  display: grid;
  grid-template-columns: 68px 1fr;
  gap: 10px;
  align-items: center;
  min-height: 52px;
  max-height: 52px;
}

.popup-form__list-lang input {
  background: transparent;
  border: none;
  height: 100%;
  width: 100%;
  padding: 16px 24px 16px 0;
}

.popup-form__list-lang svg {
  position: static !important;
}

.popup-form__list-lang .popup-form__list_options {
  position: absolute !important;
  top: 42px;
  left: 9px;
  width: auto;
}

.popup-form__list-lang .popup-form__list_option {
  padding: 10px 15px;
  border-top: none;
}

.popup-form__list-lang .popup-form__list_option img {
  width: 22px;
  height: 16px;
}

.popup-form__lang_img {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-height: 22px;
}

.popup-form__lang_img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.popup-form__lang {
  height: 100%;
  display: grid;
  grid-template-columns: 22px 16px;
  gap: 4px;
  align-items: center;
  position: relative;
  padding: 16px 0 16px 24px;
  cursor: pointer;
}

.popup-form__list.active {
  border-radius: 20px;
  border: 1px solid #9560c9;
}

.popup-form__list.popup-form__list-lang.active {
  border-radius: 100px;
}

.popup-form__list svg {
  position: absolute;
  right: 24px;
  top: 20px;
}

.popup-form__list_text {
  display: block;
  max-height: 52px;
  padding: 16px 24px;
  color: #7a7b7e;
  font-size: 14px;
  font-weight: 300;
  line-height: 140%;
  cursor: pointer;
}

.popup-form__list_options {
  position: relative;
  width: 100%;
  list-style: none;
  margin: 0;
  padding: 0;
  overflow: hidden;
  background: #fff;
  height: 0;
  transition: all 0.3s ease;
  z-index: 10001;
  border-radius: 0 0 20px 20px;
}

.popup-form__list_option {
  padding: 12px 24px;
  border-top: 1px solid #e8e9ec;
  cursor: pointer;
  color: #464854;
  font-size: 14px;
  font-weight: 300;
  line-height: 140%;
  transition: all 0.2s ease-in-out;
}

.popup-form__list.active .popup-form__list_options {
  height: auto;
}

.popup-form__btns {
  display: grid;
  grid-template-columns: 185px 1fr;
  gap: 40px;
  align-items: center;
}

.popup-form__btns .btn {
  outline: none;
  border: none;
}

.popup-form__checkbox {
  color: #464854;
  font-size: 14px;
  font-weight: 300;
  line-height: 140%;
}

.popup-form__link {
  color: #9560c9;
  font-size: 14px;
  font-weight: 600;
  line-height: 140%;
  text-decoration-line: underline;
  transition: all 0.3s ease-in-out;
}

.hide-input {
  display: none;
}

.popup-form__success {
  display: none;
  flex-direction: column;
  gap: 40px;
}

.popup-form__success.active {
  display: flex;
}

.popup-form__success_imgs {
  height: 200px;
  width: 200px;
  position: relative;
  margin: 0 auto;
}

.popup-form__success_imgs img {
  height: 100%;
  width: 100%;
  object-fit: contain;
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
  transition: all 0.2s ease-in-out;
}

.popup-form__success_imgs img.active {
  opacity: 1;
}

.popup-form__success_descr {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.popup-form__success_descr p {
  color: #464854;
  font-size: 14px;
  font-weight: 300;
  line-height: 140%;
}

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

.wpcf7-not-valid {
  border: 1px solid #db2f2c !important;
}

.wpcf7-not-valid-tip {
  color: #db2f2c;
  text-align: right;
  font-size: 12px;
  font-weight: 400;
  line-height: 140%;
}

.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.unaccepted .wpcf7-response-output,
.wpcf7 form.payment-required .wpcf7-response-output {
  border: none;
}

.wpcf7 form .wpcf7-response-output {
  padding: 0;
  margin: 5px 0 0;
  color: #db2f2c;
  font-size: 12px;
  font-weight: 400;
  line-height: 140%;
}

.wpcf7 form.sent .wpcf7-response-output {
  display: none;
}

@media (min-width: 1024px) {
  .popup-form__link:hover {
    color: #464854;
  }

  .popup-form__list_option:hover {
    background: #ecddff;
  }
}

@media (max-width: 1023px) {
  .popup-form {
    position: fixed;
    overflow-y: scroll;
  }

  .popup-form::-webkit-scrollbar {
    width: 0;
    height: 0;
  }

  .popup-form__wrapper {
    height: fit-content;
    overflow: hidden;
    padding: 50px 20px 100px;
    width: 750px;
  }

  .popup-form__close {
    top: 10px;
  }

  .popup-form__title {
    max-width: 90%;
  }
}

@media (max-width: 767px) {
  .popup-form__wrapper {
    width: 100%;
  }

  .popup-form__main {
    gap: 20px;
  }

  .popup-form__form form {
    gap: 20px;
  }

  .popup-form__title_contacts {
    flex-direction: column;
    align-items: flex-start;
  }

  .popup-form__btns {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  .popup-form__title {
    width: 100%;
  }

  .popup-form__title_social .btn {
    height: 48px;
    min-width: 48px;
    max-width: 48px;
  }

  .popup-form__title_social .btn svg {
    height: 16px;
    width: 16px;
  }

  .popup-form__inputs_2col {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  .popup-form__close {
    top: 5px;
    right: 5px;
  }
}

.police {
  padding: 138px 0 0;
}

.police__wrapper {
  display: flex;
  flex-direction: column;
  gap: 40px;
  max-width: 1213px;
}

.police__title {
  display: flex;
  flex-direction: column;
  gap: 100px;
}

.police__title h1 {
  color: #151721;
  font-size: 90px;
  font-weight: 500;
  line-height: 110%;
}

.police__content {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.police__text {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.police__text h2 {
  color: #151721;
  font-size: 28px;
  font-weight: 500;
  line-height: 120%;
}
.police__text_p {
  display: flex;
  flex-direction: column;
  gap: 10px;
  color: #464854;
  font-size: 16px;
  font-weight: 300;
  line-height: 140%;
}
.police__text_p ol,
.police__text_p ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.police__text_p ol {
  margin-left: 20px;
}
.police__text_p ul {
  margin-left: 4px;
  margin-top: 10px;
  list-style-type: initial;
}

.police__text_p a {
  color: #2378af;
  font-size: 16px;
  font-weight: 500;
  line-height: 140%;
  text-decoration-line: underline;
  text-decoration-style: solid;
  text-decoration-skip-ink: none;
  text-decoration-thickness: auto;
  text-underline-offset: auto;
  text-underline-position: from-font;
  transition: all 0.3s ease-in-out;
}

@media (min-width: 1024px) {
  .police__text_p a:hover {
    text-decoration: none;
  }
}

@media (max-width: 1023px) {
  .police__title h1 {
    font-size: 48px;
  }
  .police__text h2 {
    font-size: 28px;
  }
  .police {
    padding: 90px 0 0;
  }
  .police__title {
    gap: 50px;
  }
}

@media (max-width: 767px) {
  .police__title h1 {
    font-size: 36px;
  }
  .police__text h2 {
    font-size: 20px;
  }
  .police {
    padding: 73px 0 0;
  }
  .police__title {
    gap: 30px;
  }
  .police__text_p ol {
    margin-left: 30px;
  }
}

.error {
  padding: 158px 0 100px;
}

.error__wrapper {
  display: flex;
  min-height: calc(100vh - 258px);
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 100px;
}

.error__descr {
  max-width: 679px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
}

.error__descr p {
  color: #464854;
  text-align: center;
  font-size: 16px;
  font-weight: 300;
  line-height: 140%;
}

.error__animation {
  max-height: 566px;
}

.slick-arrow::before {
  content: '' !important;
  display: none !important;
}
.slick-arrow {
  z-index: 10;
}
