@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&display=swap");
:root {
  --asphalt: #383838;
  --white: #FFF;
  --gray: #F7F7F7;
  --green: #6FE1A8;
}

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  text-decoration: none;
}

ul,
ol {
  padding: 0;
  list-style: none;
}

body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
ul,
ol[class],
li,
figure,
figcaption,
blockquote,
dl,
dd {
  margin: 0;
}

body {
  min-height: 100vh;
  scroll-behavior: smooth;
  text-rendering: optimizeSpeed;
  line-height: 1;
}

ul[class],
ol[class] {
  list-style: none;
}

a {
  text-decoration: none;
}

a:not([class]) {
  text-decoration-skip-ink: auto;
}

img {
  max-width: 100%;
  display: block;
}

input,
button,
textarea,
select {
  font: inherit;
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
.header__container {
  padding-block: 16px;
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header__logo {
  display: flex;
  align-items: center;
  gap: 12px;
}
.header__nav-list {
  display: flex;
  gap: 48px;
}
.header__nav-list a {
  font-size: 14px;
  font-weight: 400;
  line-height: 18px;
  text-transform: uppercase;
  transition: all 0.5s ease;
}
.header__nav-list a[aria-current=page], .header__nav-list a:hover {
  font-weight: 900;
}
.header__burger-close {
  display: none;
}
.header__menu-mobile {
  display: none;
}
.header__mobile-menu-btn {
  display: none;
}
.header__mobile-menu-btn.active .header__burger-open {
  display: none;
}
.header__mobile-menu-btn.active .header__burger-close {
  display: block;
}

@media (max-width: 800px) {
  .header__container {
    padding-block: 12px;
  }
  .header__menu {
    display: none;
  }
  .header__button.request-demo-btn {
    display: none;
  }
  .header__mobile-menu-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    cursor: pointer;
    border: none;
    background: transparent;
  }
  .header__menu-mobile {
    position: fixed;
    z-index: 999;
    top: 64px;
    left: 0;
    visibility: hidden;
    opacity: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 48px;
    padding-top: 150px;
    background: #fff;
    height: calc(100dvh - 64px);
    width: 100%;
    transform: translateX(100%);
    transition: all 0.5s ease;
  }
  .header__menu-mobile.active {
    visibility: visible;
    opacity: 1;
    transform: translateX(0);
  }
  .header__nav-list-mobile {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 48px;
  }
  .header__nav-list-mobile a {
    text-transform: uppercase;
  }
}
.demo-banner {
  position: relative;
  z-index: 4;
}
.demo-banner:before {
  content: "";
  position: absolute;
  z-index: -1;
  bottom: -1px;
  width: 100%;
  height: 50%;
  background: var(--asphalt);
}
.demo-banner__wrapper {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  align-items: center;
  padding: 60px 32px;
  background: var(--green);
  border-radius: 30px;
}
.demo-banner__button.request-demo-btn {
  margin-right: 110px;
  padding: 21px 24px;
}
.demo-banner__title {
  margin-bottom: 16px;
}
.demo-banner__subtitle * {
  font-weight: 400;
  font-size: 21px;
  line-height: 100%;
}

.footer {
  position: relative;
  background-color: var(--asphalt);
  color: var(--white);
}
.footer__container {
  padding: 100px 24px 156px;
}
.footer__inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.footer__logo {
  display: flex;
  align-items: center;
  gap: 12px;
  transition: all 0.5s ease;
}
.footer__logo .logo-icon {
  width: 57px;
  height: 36px;
  flex-shrink: 0;
}
.footer__logo:hover {
  opacity: 0.6;
}

/* Logo Section */
.logo-text {
  width: 106px;
  height: 21px;
}

/* Links Section - Middle */
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: fit-content;
  margin-inline: auto 0;
}

.footer-links a {
  color: var(--green);
  text-decoration: none;
  font-size: 21px;
  line-height: 21px;
  letter-spacing: -1.05px;
  font-weight: 400;
  transition: opacity 0.3s ease;
}

.footer-links a:hover {
  opacity: 0.8;
}

/* Contact Section - Right */
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 12px;
  grid-column: span 2;
  margin-inline: auto;
  padding-left: 90px;
}

.contact-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 21px;
  line-height: 21px;
  letter-spacing: -1.05px;
}

.contact-label {
  opacity: 0.3;
  flex-shrink: 0;
  color: #fff;
}

.contact-value {
  color: var(--white);
}
.contact-value:hover {
  text-decoration: underline;
}

.contact-value.link {
  text-decoration: underline;
  cursor: pointer;
}

/* Footer Bottom - Copyright and Legal */
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-block: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-legal {
  display: flex;
  gap: 32px;
}

.footer-legal a {
  color: var(--white);
  text-decoration: none;
  font-size: 21px;
  line-height: 21px;
  font-weight: 400;
  transition: opacity 0.3s ease;
}

.footer-legal a:hover {
  opacity: 0.7;
}

.footer-copyright {
  color: var(--white);
  font-size: 21px;
  line-height: 21px;
  letter-spacing: -1.05px;
  opacity: 0.3;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .footer-container {
    grid-template-columns: 1fr;
    gap: 48px;
    margin-bottom: 48px;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
  }
}
@media (max-width: 800px) {
  .demo-banner__wrapper {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 28px;
  }
  .demo-banner__subtitle * {
    font-size: 18px;
  }
  .demo-banner__button {
    width: fit-content;
    margin: 0;
  }
  .footer__container {
    padding: 80px 24px 60px;
  }
  .footer__inner {
    gap: 60px 0;
    grid-template-columns: repeat(12, 1fr);
  }
  .footer__logo {
    grid-column: span 12;
  }
  .footer__links {
    margin: 0;
    grid-column: span 5;
  }
  .footer__links a {
    font-size: 18px;
  }
  .footer__contact {
    padding: 0;
    grid-column: span 7;
  }
  .footer__contact .contact-item {
    font-size: 18px;
  }
  .footer-legal a,
  .footer-copyright {
    font-size: 18px;
    line-height: 1;
  }
  .footer-bottom {
    padding: 30px 24px;
  }
}
@media (max-width: 640px) {
  .footer__container {
    padding-block: 60px 24px;
  }
  .footer__inner {
    gap: 24px;
  }
  .footer__links {
    grid-column: span 12;
  }
  .footer__contact {
    gap: 24px;
    grid-column: span 12;
    margin: unset;
  }
  .footer__contact .contact-item {
    flex-direction: column;
  }
  .footer .footer-bottom {
    padding-block: 24px;
    padding-inline: 16px;
    gap: 24px;
  }
  .footer-container {
    gap: 32px;
    margin-bottom: 40px;
  }
  .footer-links a,
  .contact-item,
  .footer-legal a,
  .footer-copyright {
    font-size: 16px;
    line-height: 19px;
    letter-spacing: -0.02em;
  }
  .contact-label,
  .contact-value {
    font-size: 16px;
  }
  .logo-icon {
    width: 45px;
    height: 28px;
  }
  .logo-text {
    width: 85px;
    height: 17px;
  }
  .footer-container {
    grid-template-columns: 1fr;
  }
}
.hero {
  position: relative;
  min-height: 676px;
  background: linear-gradient(292.39deg, #DCF5E9 0%, #FFFFFF 71.96%);
}
.hero:before {
  content: "";
  position: absolute;
  top: 46px;
  left: auto;
  right: 0;
  display: block;
  width: 60%;
  max-width: 750px;
  height: calc(100% - 92px);
}
.hero__container {
  position: relative;
  padding-block: 174px 100px;
}
.hero__content-block {
  width: 100%;
  max-width: 1004px;
}
.hero__title {
  margin-bottom: 18px;
  max-width: 728px;
}
.hero__subtitle {
  margin-bottom: 40px;
  opacity: 0.7;
}
.hero__subtitle p {
  font-weight: 400;
  font-size: 21px;
  line-height: 120%;
}
.hero__button.request-demo-btn {
  padding: 23px 24px;
}

@media (max-width: 800px) {
  .hero {
    min-height: 502px;
  }
  .hero__container {
    padding-block: 124px 100px;
  }
  .hero__content-block {
    max-width: 518px;
  }
  .hero__title {
    margin-bottom: 10px;
  }
  .hero__subtitle {
    margin-bottom: 40px;
  }
  .hero__subtitle p {
    font-size: 18px;
  }
}
@media (max-width: 680px) {
  .hero {
    min-height: 631px;
  }
  .hero:before {
    top: auto;
    bottom: 0;
    width: calc(100% - 30px);
    background-position: right bottom;
  }
  .hero__container {
    padding-block: 30px 100px;
  }
  .hero__title {
    margin-bottom: 16px;
  }
  .hero__subtitle {
    margin-bottom: 30px;
  }
  .hero__subtitle p {
    font-size: 16px;
  }
}
.partners {
  background: #F7F7F7;
}
.partners__container {
  padding-block: 38px;
}
.partners__inner {
  position: relative;
  display: flex;
  overflow: hidden;
}
.partners__inner:before, .partners__inner:after {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0;
  width: 40%;
  max-width: 580px;
  background: linear-gradient(270deg, rgba(248, 248, 248, 0) 0%, #F8F8F8 45.19%);
}
.partners__inner:after {
  width: 10%;
  max-width: 80px;
  left: auto;
  right: -24px;
  background: linear-gradient(90deg, rgba(248, 248, 248, 0) 0%, #F8F8F8 45.19%);
}
.partners__title {
  position: relative;
  z-index: 1;
  width: 100%;
  min-width: 218px;
  max-width: 260px;
  font-weight: 500;
  font-size: 32px;
  line-height: 100%;
  letter-spacing: -0.05em;
}
.partners__slider {
  display: flex;
  align-items: center;
  gap: 74px;
}
.partners__item {
  max-height: 42px;
}

@media (max-width: 800px) {
  .partners__container.container {
    padding-right: 0;
  }
  .partners__container {
    padding-block: 16px;
  }
  .partners__inner:before {
    width: 100%;
    max-width: 400px;
  }
  .partners__inner:after {
    content: none;
  }
  .partners__title {
    font-size: 28px;
  }
  .partners__slider {
    gap: 56px;
  }
  .partners__item {
    max-height: 36px;
  }
}
@media (max-width: 680px) {
  .partners__container.container {
    padding: 30px 0 46px;
  }
  .partners__inner {
    flex-direction: column;
    gap: 40px;
  }
  .partners__inner:before {
    content: none;
  }
  .partners__title {
    padding-inline: 16px;
  }
}
.text {
  position: relative;
  background: var(--gray);
}
.text:before {
  content: "";
  position: absolute;
  top: 40px;
  left: 0;
  width: 98px;
  height: 176px;
  background-image: url("../img/backgrounds/text_bckg.webp");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.text__container.container {
  max-width: 100%;
  padding-block: 120px;
  background: var(--white);
  border-radius: 0 90px 0 0;
}
.text__content {
  width: 100%;
  max-width: 1184px;
  margin-inline: auto;
  padding-inline: 54px;
}
.text__content p {
  font-weight: 500;
  font-size: 32px;
  line-height: 110%;
  text-align: center;
}

@media (max-width: 800px) {
  .text:before {
    left: -60px;
  }
  .text__container.container {
    padding-block: 80px;
  }
  .text__content {
    width: 100%;
    max-width: 1264px;
    margin-inline: auto;
    padding-inline: 54px;
  }
  .text__content p {
    font-size: 28px;
  }
}
@media (max-width: 680px) {
  .text__container.container {
    padding-block: 60px;
    border-radius: 0 30px 0 0;
  }
  .text__content {
    padding-inline: 34px;
  }
  .text__content p {
    font-size: 24px;
  }
}
.efficiency {
  background: #F7F7F7;
  border-radius: 90px 90px 0 0;
}
.efficiency__container {
  padding-block: 100px;
}
.efficiency__inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.efficiency__title {
  margin-bottom: 16px;
  text-align: center;
}
.efficiency__subtitle {
  margin-bottom: 32px;
  opacity: 0.6;
  font-weight: 400;
  font-size: 21px;
  line-height: 130%;
  text-align: center;
}
.efficiency__step-item {
  height: fit-content;
  padding: 30px 45px;
  box-shadow: 9px 10px 10px -7px rgba(33, 50, 60, 0.2117647059);
  background: #fff;
  border-radius: 30px;
}
.efficiency__step-item:nth-child(even) {
  margin-top: 32px;
}
.efficiency__step-img {
  margin-top: 1px;
  margin-bottom: 17px;
  margin-inline: auto;
}
.efficiency__step-title, .efficiency__step-title * {
  font-weight: 500;
  font-size: 24px;
  line-height: 110%;
  letter-spacing: -0.05em;
  text-align: center;
}
.efficiency__step-title span, .efficiency__step-title * span {
  color: var(--motiongreen);
}

@media (max-width: 800px) {
  .efficiency__container {
    padding-block: 80px;
  }
  .efficiency__title, .efficiency__subtitle {
    max-width: 470px;
    margin-inline: auto;
  }
  .efficiency__inner {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  .efficiency__step-item {
    height: fit-content;
    padding: 16px 24px 28px;
  }
  .efficiency__step-item:nth-child(even) {
    margin-top: 0;
  }
  .efficiency__step-title, .efficiency__step-title * {
    font-size: 22px;
  }
}
@media (max-width: 680px) {
  .efficiency {
    border-radius: 30px 30px 0 0;
  }
  .efficiency__container {
    padding-block: 45px;
  }
  .efficiency__inner {
    grid-template-columns: 1fr;
  }
  .efficiency__subtitle {
    margin-bottom: 24px;
  }
  .efficiency__step-img {
    margin-bottom: 4px;
  }
  .efficiency__step-title, .efficiency__step-title * {
    font-size: 20px;
  }
}
.need {
  padding-bottom: 50px;
  background: #F7F7F7;
}
.need__wrapper {
  width: 100%;
  padding-inline: 24px;
  padding-block: 100px 42px;
  background: var(--asphalt);
  border-radius: 90px;
}
.need__text-block {
  width: 100%;
  max-width: 852px;
  margin-inline: auto;
}
.need__title {
  margin-bottom: 24px;
  text-align: center;
}
.need__title * {
  color: var(--white);
}
.need__subtitle {
  text-align: center;
  opacity: 0.7;
}
.need__subtitle * {
  color: var(--white);
  font-weight: 400;
  font-size: 21px;
  line-height: 120%;
  text-align: center;
}
.need__inner {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 48px;
  width: fit-content;
  margin-top: 60px;
  margin-inline: auto;
  padding-block: 150px 166px;
  padding-inline: 74px;
}
.need__inner:before {
  content: "";
  position: absolute;
  width: calc(100% - 300px);
  height: 1px;
  background: #F7F7F7;
  top: 250px;
  left: 150px;
}
.need__items-block {
  position: absolute;
  left: 0;
  opacity: 0;
  cursor: default;
  transition: opacity 0.5s ease;
}
.need__items-block--top {
  top: 0;
}
.need__items-block--bottom {
  bottom: 0;
}
.need__items-block--active {
  opacity: 1;
}
.need__items-block[data-id="2"] {
  left: calc(20% - 18px);
}
.need__items-block[data-id="3"] {
  left: calc(40% - 38px);
}
.need__items-block[data-id="4"] {
  left: calc(60% - 58px);
}
.need__items-block[data-id="5"] {
  left: calc(80% - 78px);
}
.need__top-item, .need__bottom-item {
  position: absolute;
  z-index: 1;
  width: fit-content;
  padding: 12px 16px;
  white-space: nowrap;
  background-color: #fff;
  border: 1px solid #D5D5D9;
  border-radius: 10px;
  font-weight: 500;
  font-size: 14px;
  line-height: 100%;
  letter-spacing: -0.02em;
  text-align: center;
}
.need__top-item--1 {
  top: 78px;
  left: 44px;
  width: 110px;
  white-space: break-spaces;
}
.need__top-item--2 {
  top: 48px;
  left: 190px;
}
.need__top-item--3 {
  top: 0;
  left: 186px;
}
.need__top-item--4 {
  top: 30px;
  left: 52px;
  width: 106px;
  white-space: break-spaces;
}
.need__top-item-line {
  position: absolute;
  z-index: 0;
  top: 49px;
  left: 145px;
  width: 24px;
  height: 200px;
  border: solid #D5D5D9;
  border-width: 1px 1px 0 0;
  border-radius: 12px;
}
.need__top-item-line--1 {
  top: 97px;
  left: 141px;
}
.need__top-item-line--2 {
  top: 67px;
  left: 178px;
  border-width: 1px 0 0 1px;
}
.need__top-item-line--3 {
  top: 19px;
  left: 174px;
  border-width: 1px 0 0 1px;
}
.need__top-item-line--4 {
  top: 49px;
  left: 145px;
  border-width: 1px 1px 0 0;
}
.need__bottom-item--1 {
  bottom: 74px;
  left: 190px;
}
.need__bottom-item--2 {
  bottom: 84px;
  left: 60px;
  width: 96px;
  white-space: break-spaces;
}
.need__bottom-item--3 {
  bottom: 0;
  left: 186px;
}
.need__bottom-item--4 {
  bottom: 34px;
  left: 0;
}
.need__bottom-item-line {
  position: absolute;
  z-index: 0;
  bottom: 103px;
  left: 142px;
  width: 24px;
  height: 200px;
  border: solid #D5D5D9;
  border-width: 0 1px 1px 0;
  border-radius: 12px;
}
.need__bottom-item-line--1 {
  bottom: 93px;
  left: 178px;
  border-width: 0 0 1px 1px;
}
.need__bottom-item-line--2 {
  bottom: 103px;
  left: 142px;
  border-width: 0 1px 1px 0;
}
.need__bottom-item-line--3 {
  bottom: 19px;
  left: 174px;
  border-width: 0 0 1px 1px;
}
.need__bottom-item-line--4 {
  bottom: 53px;
  left: 147px;
}
.need__card {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  height: 200px;
  aspect-ratio: 1;
  margin-inline: auto;
  padding: 68px 28px 28px 28px;
  border-radius: 22px;
  background: var(--white);
  cursor: pointer;
  transition: all 0.5s ease;
}
.need__card--active {
  box-shadow: 0 38px 80px 0 rgba(65, 230, 148, 0.2);
}
.need__card-title {
  font-weight: 900;
  font-size: 14px;
  line-height: 100%;
  letter-spacing: -0.02em;
  text-align: center;
  text-transform: uppercase;
}

@media (max-width: 1400px) {
  .need__inner {
    grid-template-columns: 1fr;
    gap: 16px;
    padding-block: 0;
    padding-inline: 224px;
  }
  .need__inner:before {
    content: none;
  }
  .need__card {
    width: 224px;
    height: 194px;
  }
  .need__items-block[data-id="2"] {
    left: 0;
    top: calc(20% + 4px);
  }
  .need__items-block[data-id="3"] {
    left: 0;
    top: calc(40% + 4px);
  }
  .need__items-block[data-id="4"] {
    left: 0;
    top: calc(60% + 10px);
  }
  .need__items-block[data-id="5"] {
    left: 0;
    top: calc(80% + 14px);
  }
  .need__top-item, .need__bottom-item {
    font-size: 12px;
    padding: 11px 16px;
  }
  .need__top-item {
    right: -195px;
    left: auto;
  }
  .need__top-item--1 {
    top: 0;
    width: fit-content;
    white-space: nowrap;
  }
  .need__top-item--2 {
    top: 52px;
  }
  .need__top-item--3 {
    top: 104px;
  }
  .need__top-item--4 {
    top: 158px;
    width: fit-content;
    white-space: nowrap;
  }
  .need__top-item-line {
    top: 17px;
    left: auto;
    right: -227px;
    width: 40px;
    height: 1px;
    border: none;
    border-width: unset;
    border-radius: 0;
    background: #D5D5D9;
  }
  .need__top-item-line--1 {
    top: 17px;
  }
  .need__top-item-line--2 {
    top: 71px;
    white-space: nowrap;
  }
  .need__top-item-line--3 {
    top: 123px;
  }
  .need__top-item-line--4 {
    top: 177px;
  }
  .need__items-block--bottom {
    top: 0;
    bottom: auto;
  }
  .need__bottom-item {
    right: auto;
    left: 478px;
    bottom: auto;
  }
  .need__bottom-item--1 {
    top: 0;
  }
  .need__bottom-item--2 {
    top: 52px;
  }
  .need__bottom-item--3 {
    top: 104px;
  }
  .need__bottom-item--4 {
    top: 158px;
  }
  .need__bottom-item-line {
    top: 17px;
    bottom: auto;
    right: auto;
    left: 446px;
    width: 40px;
    height: 1px;
    border: none;
    border-width: unset;
    border-radius: 0;
    background: #D5D5D9;
  }
  .need__bottom-item-line--1 {
    top: 17px;
  }
  .need__bottom-item-line--2 {
    top: 71px;
  }
  .need__bottom-item-line--3 {
    top: 123px;
  }
  .need__bottom-item-line--4 {
    top: 177px;
  }
}
@media (max-width: 800px) {
  .need__wrapper {
    padding-block: 80px;
  }
  .need__text-block {
    max-width: 608px;
  }
  .need__title {
    margin-bottom: 16px;
  }
  .need__subtitle * {
    font-size: 18px;
  }
  .need__inner {
    margin-top: 30px;
  }
  .need__card {
    gap: 24px;
  }
}
@media (max-width: 680px) {
  .need__wrapper {
    padding: 60px 16px 16px;
    border-radius: 40px;
  }
  .need__inner {
    width: 100%;
    padding-inline: 0;
    margin-top: 24px;
    margin-inline: 0;
  }
  .need__subtitle * {
    font-size: 18px;
  }
  .need__card {
    z-index: 3;
    gap: 16px;
    width: 100%;
    height: 130px;
    padding-block: 28px;
    padding-inline: 16px;
    margin-bottom: 0;
  }
  .need__card:after {
    position: absolute;
    z-index: -1;
    opacity: 0;
    top: 130px;
    width: 52px;
    height: 192px;
    background-image: url("../img/dispatch.svg");
    background-repeat: no-repeat;
    background-size: contain;
    transition: opacity 0.5s ease;
  }
  .need__card--active {
    margin-bottom: 206px;
  }
  .need__card--active:after {
    opacity: 1;
  }
  .need__items-block--top, .need__items-block--bottom {
    z-index: 2;
    top: 130px;
    left: 0px !important;
  }
  .need__items-block--active {
    z-index: 3 !important;
  }
  .need__items-block[data-id="2"] {
    top: 278px;
  }
  .need__items-block[data-id="3"] {
    top: 426px;
  }
  .need__items-block[data-id="4"] {
    top: 572px;
  }
  .need__items-block[data-id="5"] {
    top: 718px;
  }
  .need__top-item {
    right: calc(54px - 50vw);
    left: auto;
  }
  .need__top-item--1 {
    top: 20px;
  }
  .need__top-item--2 {
    top: 70px;
  }
  .need__top-item--3 {
    top: 120px;
  }
  .need__top-item--4 {
    top: 170px;
  }
  .need__top-item-line {
    top: -20px;
    background: transparent;
    border: solid #D5D5D9;
    border-width: 0 1px 1px 0;
    border-radius: 12px;
  }
  .need__top-item-line--1 {
    width: 20px;
    height: 60px;
    left: calc(50vw - 64px);
  }
  .need__top-item-line--2 {
    width: 30px;
    height: 110px;
    left: calc(50vw - 71px);
  }
  .need__top-item-line--3 {
    width: 34px;
    height: 159px;
    left: calc(50vw - 71px);
  }
  .need__top-item-line--4 {
    width: 38px;
    height: 209px;
    left: calc(50vw - 71px);
  }
  .need__bottom-item {
    right: auto;
    left: calc(50vw - 10px);
  }
  .need__bottom-item--1 {
    top: 20px;
  }
  .need__bottom-item--2 {
    top: 70px;
  }
  .need__bottom-item--3 {
    top: 120px;
  }
  .need__bottom-item--4 {
    top: 170px;
  }
  .need__bottom-item-line {
    top: -20px;
    background: transparent;
    border: solid #D5D5D9;
    border-width: 0 0 1px 1px;
    border-radius: 12px;
  }
  .need__bottom-item-line--1 {
    width: 20px;
    height: 60px;
    left: auto;
    right: -50vw;
  }
  .need__bottom-item-line--2 {
    width: 30px;
    height: 110px;
    left: auto;
    right: calc(-50vw - 7px);
  }
  .need__bottom-item-line--3 {
    width: 34px;
    height: 159px;
    left: auto;
    right: calc(-50vw - 7px);
  }
  .need__bottom-item-line--4 {
    width: 38px;
    height: 209px;
    left: auto;
    right: calc(-50vw - 7px);
  }
}
@media (max-width: 580px) {
  .need__top-item, .need__bottom-item {
    width: 134px;
    max-width: 134px;
    white-space: break-spaces;
  }
}
.app {
  position: relative;
  background: linear-gradient(180deg, #F7F7F7 0%, #FFFFFF 70%, rgba(220, 245, 233, 0.4509803922) 100%);
}
.app:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 98px;
  height: 176px;
  background-image: url("../img/backgrounds/text_bckg.webp");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.app:after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 98px;
  height: 176px;
  background-image: url("../img/backgrounds/text_bckg.webp");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  transform: rotateY(180deg);
}
.app__inner {
  display: grid;
  align-items: center;
  grid-template-columns: 1fr 1fr;
}
.app__text-block {
  padding-block: 60px;
}
.app__list {
  display: grid;
  grid-template-columns: repeat(2, auto);
  gap: 12px 48px;
  width: fit-content;
  list-style: none;
  padding: 0;
  margin: 0;
}
.app__subtitle {
  margin-bottom: 16px;
  opacity: 0.6;
  font-weight: 400;
  font-size: 21px;
  line-height: 100%;
}
.app__title {
  margin-bottom: 32px;
}
.app__list-item {
  display: flex;
  align-items: center;
  gap: 18px;
  font-weight: 400;
  font-size: 21px;
  line-height: 100%;
}
.app__list-item:before {
  content: "";
  width: 18px;
  min-width: 18px;
  height: 18px;
  background-image: url("../img/icons/list_checked.svg");
  background-repeat: no-repeat;
}
.app__image {
  margin-inline: auto;
}

@media (max-width: 800px) {
  .app__inner {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .app__text-block {
    padding-block: 30px 0;
  }
  .app__image {
    max-height: 460px;
  }
  .app__subtitle {
    font-size: 18px;
  }
  .app__title {
    margin-bottom: 30px;
  }
  .app__list-item {
    gap: 14px;
    font-size: 18px;
  }
}
@media (max-width: 680px) {
  .app__container {
    padding-bottom: 30px;
  }
  .app__subtitle {
    margin-bottom: 18px;
  }
  .app__list {
    grid-template-columns: 1fr;
    gap: 14px;
  }
}
.double-text {
  position: relative;
}
.double-text__container {
  padding-block: 100px;
}
.double-text__title {
  margin-bottom: 42px;
}
.double-text__subtitle {
  width: 100%;
  max-width: 744px;
}
.double-text__subtitle * {
  font-weight: 500;
  font-size: 32px;
  line-height: 110%;
}
@media (min-width: 1441px) {
  .double-text__subtitle {
    max-width: unset;
  }
}
.double-text__secondary-text {
  width: 100%;
  max-width: 610px;
  opacity: 0.6;
}
.double-text__secondary-text * {
  font-weight: 400;
  font-size: 21px;
  line-height: 130%;
}
@media (min-width: 1441px) {
  .double-text__secondary-text {
    max-width: unset;
  }
}
.double-text__inner {
  display: flex;
  gap: 48px;
}
@media (max-width: 1400px) {
  .double-text__inner {
    display: grid;
    grid-template-columns: 7fr 5fr;
  }
}
@media (min-width: 1441px) {
  .double-text__inner {
    display: grid;
    grid-template-columns: 7fr 5fr;
  }
}
.double-text--reverse * {
  direction: ltr;
}
.double-text--reverse .double-text__title {
  display: grid;
  gap: 48px;
  grid-template-columns: 6fr 5fr;
  direction: rtl;
}
.double-text--reverse .double-text__inner {
  direction: rtl;
  display: grid;
  grid-template-columns: 6fr 5fr;
}
@media (max-width: 800px) {
  .double-text--reverse .double-text__inner {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}
.double-text--reverse .double-text__subtitle {
  max-width: 914px;
}
.double-text--reverse .double-text__secondary-text {
  max-width: 100%;
}

@media (max-width: 1439px) {
  .double-text__secondary-text {
    max-width: 505px;
  }
  .double-text--reverse .double-text__subtitle {
    max-width: 730px;
  }
  .double-text--reverse .double-text__secondary-text {
    max-width: 100%;
  }
}
@media (max-width: 800px) {
  .double-text__container {
    padding-block: 80px;
  }
  .double-text__title {
    margin-bottom: 20px;
  }
  .double-text__subtitle * {
    font-size: 28px;
  }
  .double-text__secondary-text {
    width: 100%;
    max-width: 626px;
  }
  .double-text__secondary-text * {
    font-size: 18px;
  }
  .double-text__inner {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .double-text--reverse * {
    direction: ltr;
  }
  .double-text--reverse .double-text__title {
    display: block;
  }
}
@media (max-width: 680px) {
  .double-text__container {
    padding-block: 60px;
  }
}
.slider-section {
  background: #DCF5E9;
}
.slider-section__container.container {
  max-width: 100%;
  padding-block: 100px 50px;
  padding-inline: 0;
  background: #FFFFFF;
  border-radius: 90px 90px 0 0;
}
.slider-section__swiper {
  padding-inline: 24px;
}
.slider-section__title-row {
  position: relative;
  width: 100%;
  max-width: 1920px;
  margin-inline: auto;
}
.slider-section__title {
  margin-bottom: 32px;
  text-align: center;
}
.slider-section__nav-btns {
  position: absolute;
  top: 5px;
  right: 140px;
  display: flex;
  gap: 18px;
}
.slider-section__swiper-button {
  cursor: pointer;
}
.slider-section__swiper-button[aria-disabled=true] {
  cursor: default;
  opacity: 0.5;
}
.slider-section__slide {
  width: 566px;
  height: 321px;
  padding: 32px;
  background: #F7F7F7;
  border-radius: 30px;
}
.slider-section__slide-title {
  height: 177px;
  margin-bottom: 36px;
  font-weight: 500;
  font-size: 32px;
  line-height: 110%;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 5;
  line-clamp: 5;
  -webkit-box-orient: vertical;
}
.slider-section__slide-info-block {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 34px;
}
.slider-section__slide-author-name {
  margin-bottom: 2px;
  font-weight: 500;
  font-size: 24px;
  line-height: 110%;
}
.slider-section__slide-author-position {
  opacity: 0.6;
  font-weight: 400;
  font-size: 16px;
  line-height: 100%;
}

@media (max-width: 800px) {
  .slider-section__container.container {
    max-width: 100%;
    padding-block: 84px 42px;
  }
  .slider-section__title-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 34px;
  }
  .slider-section__title {
    margin-bottom: 0;
    text-align: start;
  }
  .slider-section__nav-btns {
    position: static;
    right: 0;
  }
  .slider-section__slide {
    width: 566px;
    height: 264px;
    padding: 28px;
  }
  .slider-section__slide-title {
    height: 124px;
    margin-bottom: 42px;
    font-size: 28px;
    -webkit-line-clamp: 5;
    line-clamp: 5;
    -webkit-box-orient: vertical;
  }
}
@media (max-width: 680px) {
  .slider-section__container.container {
    border-radius: 30px 30px 0 0;
  }
  .slider-section__swiper {
    padding-inline: 16px;
  }
  .slider-section__slide {
    width: 100%;
    height: fit-content;
  }
}
.media-about-us {
  position: relative;
  background: var(--white);
  border-radius: 90px 90px 0 0;
}
.media-about-us:before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  width: 100%;
  height: 100%;
  background: #DCF5E9;
}
.media-about-us__container {
  padding-block: 50px 100px;
}
.media-about-us__title {
  margin-bottom: 24px;
  text-align: center;
}
.media-about-us__text {
  opacity: 0.6;
  text-align: center;
}
.media-about-us__text * {
  font-weight: 400;
  font-size: 21px;
  line-height: 120%;
}
.media-about-us__inner {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
  margin-top: 48px;
}
.media-about-us__media-card {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 32px;
  width: 32%;
  max-width: 448px;
  padding: 32px;
  border-radius: 30px;
  box-shadow: 9px 10px 10px -7px rgba(33, 50, 60, 0.2117647059);
}
.media-about-us__media-card:first-child {
  background: #1BAABC;
}
.media-about-us__media-card:nth-child(2) {
  background: #F7F7F7;
}
.media-about-us__media-card:nth-child(2) .media-card-title,
.media-about-us__media-card:nth-child(2) .learn-more-btn {
  color: var(--asphalt);
}
.media-about-us__media-card--third {
  background: #000000;
}
.media-about-us__media-card-logo {
  width: auto;
  max-height: 90px;
}
.media-about-us__media-card-title {
  color: var(--white);
  font-weight: 400;
  font-size: 21px;
  line-height: 120%;
  text-align: center;
  letter-spacing: 0.02em;
}

@media (max-width: 1024px) {
  .media-about-us__inner {
    grid-template-columns: repeat(2, 1fr);
  }
  .media-about-us__media-card--third {
    grid-column: span 2;
    width: calc(50% - 12px);
    margin-inline: auto;
  }
  .media-about-us__text {
    max-width: 482px;
    margin-inline: auto;
  }
  .media-about-us__media-card {
    width: 100%;
  }
}
@media (max-width: 800px) {
  .media-about-us__container {
    padding-block: 42px 80px;
  }
  .media-about-us__inner {
    gap: 16px;
    margin-top: 30px;
  }
  .media-about-us__media-card--third {
    width: calc(50% - 8px);
  }
  .media-about-us__title {
    margin-bottom: 16px;
  }
  .media-about-us__text {
    max-width: 482px;
    margin-inline: auto;
  }
}
@media (max-width: 680px) {
  .media-about-us__inner {
    grid-template-columns: 1fr;
  }
  .media-about-us__media-card--third {
    grid-column: span 1;
    width: 100%;
  }
}
.our-values {
  background: #DCF5E9;
}
.our-values__wrapper {
  background: #FFFFFF;
  border-radius: 90px 90px 0 0;
}
.our-values__container.container {
  padding-block: 100px;
  padding-inline: 94px;
}
.our-values__title * {
  color: #6FE1A8;
  text-align: center;
}
.our-values__steps-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 120px;
  margin-top: 48px;
}
.our-values__steps-item {
  position: relative;
  z-index: 2;
  height: fit-content;
  padding: 32px 10px 32px 32px;
  background: #F7F7F7;
  border-radius: 30px;
}
.our-values__steps-item:nth-child(odd):after {
  content: "";
  position: absolute;
  top: 116px;
  right: -216px;
  width: 216px;
  height: 136px;
  background-image: url("../img/icons/step_vector.svg");
  background-size: contain;
  background-repeat: no-repeat;
}
.our-values__steps-item:first-child:after {
  top: 67px;
  right: -216px;
}
.our-values__steps-item:last-child:before {
  content: "";
  position: absolute;
  right: -364px;
  bottom: 73px;
  width: 191px;
  height: 40px;
  background-image: url("../img/icons/Motion_logo.webp");
  background-size: contain;
  background-repeat: no-repeat;
}
.our-values__steps-item:last-child:after {
  top: auto;
  bottom: 90px;
  right: -173px;
  width: 173px;
  height: 2px;
  background-image: url("../img/icons/step_line.svg");
}
.our-values__steps-item:nth-child(even) {
  transform: translateY(196px);
}
.our-values__steps-item:nth-child(even):before {
  content: "";
  position: absolute;
  top: 104px;
  left: -216px;
  width: 216px;
  height: 136px;
  background-image: url("../img/icons/step_vector_reverse.svg");
  background-size: contain;
  background-repeat: no-repeat;
}
.our-values__item-number {
  margin-bottom: 24px;
  font-weight: 500;
  font-size: 32px;
  line-height: 110%;
  color: #6FE1A8;
}
.our-values__item-title {
  margin-bottom: 32px;
  font-weight: 500;
  font-size: 32px;
  line-height: 110%;
}
.our-values__item-desc {
  opacity: 0.6;
}
.our-values__item-desc * {
  font-weight: 400;
  font-size: 21px;
  line-height: 130%;
}

@media (max-width: 1480px) {
  .our-values__steps-item:nth-child(even):before {
    top: 114px;
  }
}
@media (max-width: 1480px) {
  .our-values__steps-item:nth-child(even):before {
    top: 164px;
  }
}
@media (max-width: 991px) {
  .our-values__steps-item:nth-child(even):before {
    top: 234px;
  }
}
@media (max-width: 800px) {
  .our-values__container.container {
    padding-block: 80px 200px;
    padding-inline: 24px;
  }
  .our-values__steps-list {
    grid-template-columns: 1fr;
    gap: 80px;
    margin-top: 30px;
  }
  .our-values__steps-item {
    width: 78%;
    margin-inline: 0 auto;
    padding: 40px 14px 40px 28px;
  }
  .our-values__steps-item:nth-child(even) {
    margin-inline: auto 0;
    transform: none;
  }
  .our-values__steps-item:nth-child(even):before {
    top: unset;
    bottom: -44px;
    left: -170px;
    transform: rotate(90deg) rotateX(180deg);
  }
  .our-values__steps-item:nth-child(odd):after {
    top: unset;
    bottom: -40px;
    right: -170px;
    transform: rotate(-90deg) rotateX(180deg);
  }
  .our-values__steps-item:last-child:before {
    right: calc(28% - 50px);
    bottom: -115px;
  }
  .our-values__steps-item:last-child:after {
    top: unset;
    bottom: -43px;
    right: calc(28% + 10px);
    left: auto;
    width: 91px;
    transform: rotate(-90deg);
  }
  .our-values__item-number {
    margin-bottom: 20px;
    font-size: 28px;
  }
  .our-values__item-title {
    margin-bottom: 28px;
    font-size: 28px;
  }
}
@media (max-width: 680px) {
  .our-values__wrapper {
    background: #FFFFFF;
    border-radius: 30px 30px 0 0;
  }
  .our-values__container.container {
    padding-block: 60px 160px;
    padding-inline: 16px;
  }
  .our-values__steps-list {
    gap: 60px;
    margin-top: 24px;
  }
  .our-values__steps-item {
    width: 100%;
    padding: 24px;
  }
  .our-values__steps-item:nth-child(odd):after, .our-values__steps-item:nth-child(even):after {
    content: "";
    position: absolute;
    top: unset;
    bottom: -60px;
    right: 0;
    left: calc(50% - 37px);
    width: 75px;
    height: 60px;
    background-image: url("../img/icons/step_vector_mobile.svg");
    background-size: contain;
    background-repeat: no-repeat;
    transform: rotate(0deg) rotateX(180deg);
  }
  .our-values__steps-item:nth-child(even):after {
    transform: rotate(0deg) rotateY(180deg);
  }
  .our-values__steps-item:last-child:before {
    right: calc(28% - 12px);
    bottom: -102px;
  }
  .our-values__steps-item:last-child:after {
    bottom: -66px;
    right: calc(28% + 75px);
    left: auto;
    width: 74px;
    background-image: url("../img/icons/step_line.svg");
    transform: rotate(-90deg) rotateX(180deg);
  }
  .our-values__item-number {
    margin-bottom: 16px;
    font-size: 24px;
  }
  .our-values__item-title {
    margin-bottom: 24px;
    font-size: 24px;
  }
  .our-values__item-desc * {
    font-size: 16px;
  }
}
.our-products {
  background: #FFFFFF;
}
.our-products__wrapper {
  padding-block: 100px 24px;
  padding-inline: 24px;
  background: #383838;
  border-radius: 90px;
}
.our-products__title {
  margin-bottom: 24px;
}
.our-products__title * {
  color: #fff;
  text-align: center;
}
.our-products__subtitle {
  width: 100%;
  max-width: 978px;
  margin-inline: auto;
  opacity: 0.7;
}
.our-products__subtitle * {
  color: #fff;
  font-weight: 400;
  font-size: 21px;
  line-height: 120%;
  text-align: center;
}
.our-products__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 48px;
}
.our-products__product {
  overflow: hidden;
  background: #fff;
  border-radius: 62px;
}
.our-products__product-banner {
  width: 100%;
  aspect-ratio: 16.5/10;
  border-radius: 30px 30px 0 30px;
}
.our-products__product-info {
  padding: 32px;
}
.our-products__product-title {
  margin-bottom: 24px;
  font-weight: 500;
  font-size: 48px;
  line-height: 110%;
}
.our-products__product-desc {
  margin-bottom: 24px;
  opacity: 0.6;
}
.our-products__product-desc * {
  font-weight: 400;
  font-size: 21px;
  line-height: 120%;
}
.our-products__product-button.learn-more-btn {
  padding-left: 0;
  color: var(--asphalt);
}

@media (max-width: 800px) {
  .our-products__wrapper {
    padding-top: 80px;
  }
  .our-products__title {
    margin-bottom: 16px;
  }
  .our-products__subtitle {
    max-width: 558px;
  }
  .our-products__subtitle * {
    font-size: 18px;
  }
  .our-products__inner {
    grid-template-columns: 1fr;
    margin-top: 30px;
  }
  .our-products__product-info {
    padding: 28px;
  }
  .our-products__product-title {
    font-size: 40px;
  }
  .our-products__product-desc * {
    font-size: 18px;
  }
}
@media (max-width: 680px) {
  .our-products__wrapper {
    padding-block: 60px 16px;
    padding-inline: 16px;
    border-radius: 40px;
  }
  .our-products__subtitle {
    max-width: 300px;
  }
  .our-products__subtitle * {
    font-size: 16px;
  }
  .our-products__inner {
    gap: 16px;
    margin-top: 24px;
  }
  .our-products__product {
    border-radius: 30px;
  }
  .our-products__product-info {
    padding: 32px 24px 16px;
  }
  .our-products__product-title {
    margin-bottom: 12px;
    font-size: 28px;
  }
  .our-products__product-desc {
    margin-bottom: 12px;
  }
  .our-products__product-desc * {
    font-size: 16px;
  }
}
.stack-technologies {
  position: relative;
}
.stack-technologies:before, .stack-technologies:after {
  content: "";
  position: absolute;
  top: 70px;
  right: 0;
  width: 131px;
  height: 135px;
  background-image: url("../img/backgrounds/background_vector.svg");
  background-repeat: no-repeat;
  background-size: contain;
}
.stack-technologies:before {
  left: 0;
  right: auto;
  transform: rotateY(180deg);
}
.stack-technologies__container {
  padding-block: 100px;
}
.stack-technologies__title-block {
  width: 100%;
  max-width: 978px;
  margin-inline: auto;
}
.stack-technologies__title {
  margin-bottom: 24px;
}
.stack-technologies__title * {
  text-align: center;
}
.stack-technologies__subtitle {
  opacity: 0.6;
}
.stack-technologies__subtitle * {
  font-weight: 400;
  font-size: 21px;
  line-height: 120%;
  text-align: center;
}
.stack-technologies__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px 30px;
  width: 100%;
  max-width: 1222px;
  margin-top: 48px;
  margin-inline: auto;
}
.stack-technologies__item {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100px;
  min-width: 100px;
  height: 100px;
  padding: 24px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 9px 10px 10px -7px rgba(33, 50, 60, 0.2117647059);
}
.stack-technologies__item-icon {
  max-height: 100%;
}

@media (max-width: 800px) {
  .stack-technologies__container {
    padding-block: 80px;
  }
  .stack-technologies__title-block {
    max-width: 650px;
  }
  .stack-technologies__title {
    margin-bottom: 16px;
  }
  .stack-technologies__subtitle * {
    font-size: 18px;
  }
  .stack-technologies__list {
    gap: 20px;
    max-width: 666px;
    margin-top: 30px;
  }
  .stack-technologies__item {
    width: 80px;
    min-width: 80px;
    height: 80px;
  }
}
@media (max-width: 680px) {
  .stack-technologies__container {
    padding-block: 60px 30px;
  }
  .stack-technologies__subtitle * {
    font-size: 16px;
  }
  .stack-technologies__list {
    gap: 16px;
    margin-top: 24px;
  }
  .stack-technologies__item {
    width: 55px;
    min-width: 55px;
    height: 55px;
    padding: 15px;
    box-shadow: 4.81px 5.34px 5.34px -3.74px rgba(33, 50, 60, 0.2117647059);
  }
}
.vacancies__container {
  padding-block: 100px;
}
.vacancies__inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.vacancies__not-results {
  grid-column: span 4;
}
.vacancies__not-results br {
  display: block !important;
}
.vacancies__not-results-title {
  width: 100%;
  max-width: 600px;
  margin-inline: auto;
  font-weight: 500;
  font-size: clamp(1.125rem, 0.9049rem + 0.939vw, 1.75rem);
  line-height: 110%;
  letter-spacing: -0.03em;
  text-align: center;
}
.vacancies__not-results-button.request-demo-btn {
  justify-content: center;
  width: 208px;
  margin-top: 26px;
  margin-inline: auto;
  padding-block: 21px;
}
@media (max-width: 420px) {
  .vacancies__not-results-button.request-demo-btn {
    width: 100%;
  }
}

.short-vacancy {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 42px;
  height: 300px;
  padding: 24px;
  background: #F7F7F7;
  border-radius: 30px;
}
.short-vacancy__info {
  display: flex;
  align-items: flex-start;
  flex-direction: row;
  justify-content: flex-start;
  gap: 4px;
  margin-bottom: 16px;
}
.short-vacancy__info-format, .short-vacancy__info-location {
  width: fit-content;
  padding: 6px 8px;
  background: var(--asphalt);
  color: var(--white);
  border-radius: 8px;
  font-weight: 400;
  font-size: 14px;
  line-height: 100%;
}
.short-vacancy__info-location {
  background: var(--white);
  color: var(--asphalt);
}
.short-vacancy__title {
  color: var(--asphalt);
  font-weight: 500;
  font-size: 24px;
  line-height: 110%;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 5;
  line-clamp: 5;
  -webkit-box-orient: vertical;
}
.short-vacancy__apply-btn {
  width: fit-content;
}

@media (max-width: 1280px) {
  .vacancies__inner {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }
}
@media (max-width: 800px) {
  .vacancies__container {
    padding-block: 80px;
  }
  .vacancies__inner {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 680px) {
  .vacancies__container {
    padding-block: 80px;
  }
}
@media (max-width: 580px) {
  .vacancies__inner {
    grid-template-columns: 1fr;
  }
}
.our-contacts__container {
  padding-block: 100px;
}
.our-contacts__title-block {
  max-width: 862px;
}
.our-contacts__subtitle {
  opacity: 0.6;
  margin-top: 8px;
  font-weight: 400;
  font-size: 21px;
  line-height: 120%;
}
.our-contacts__inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.our-contacts__contact-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 44px;
  min-height: 200px;
  padding: 24px;
  background: #F7F7F7;
  border-radius: 30px;
}
.our-contacts__card-title {
  color: var(--asphalt);
  font-weight: 500;
  font-size: 24px;
  line-height: 110%;
}
.our-contacts__card-value {
  opacity: 0.6;
  font-weight: 400;
  font-size: 21px;
  line-height: 130%;
  transition: opacity 0.5s ease;
}
.our-contacts__card-value * {
  font-weight: 400;
  font-size: 21px;
  line-height: 130%;
}
.our-contacts__card-value:hover {
  opacity: 1;
}

@media (max-width: 1024px) {
  .our-contacts__container {
    padding-block: 80px;
  }
  .our-contacts__subtitle, .our-contacts__card-value, .our-contacts__card-value * {
    font-size: 18px;
  }
  .our-contacts__inner {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 680px) {
  .our-contacts__container {
    padding-block: 60px;
  }
  .our-contacts__subtitle {
    margin-top: 16px;
    font-size: 16px;
  }
  .our-contacts__card-value, .our-contacts__card-value * {
    font-size: 16px;
  }
  .our-contacts__inner {
    gap: 16px;
    margin-top: 24px;
  }
}
@media (max-width: 480px) {
  .our-contacts__inner {
    grid-template-columns: 1fr;
  }
  .our-contacts__contact-card {
    min-height: 170px;
  }
}
.main .double-text {
  background: linear-gradient(180deg, rgba(220, 245, 233, 0.4509803922) 0%, #DCF5E9 100%);
}

.about-us .double-text--reverse {
  background: linear-gradient(180deg, #fff 0%, #DCF5E9 100%);
}

.vacancy-hero {
  background: linear-gradient(289.06deg, #DCF5E9 0%, #FFFFFF 100%);
}
.vacancy-hero__container {
  padding-block: 24px 100px;
}
.vacancy-hero__title-block {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 24px;
  margin-block: 24px;
}
.vacancy-hero__title {
  max-width: 626px;
}
.vacancy-hero__back-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-block: 16px;
  font-weight: 900;
  font-size: 14px;
  line-height: 100%;
  text-transform: uppercase;
  cursor: pointer;
}
.vacancy-hero__back-btn:before {
  content: "";
  width: 14px;
  min-width: 14px;
  height: 14px;
  background-image: url("../img/icons/arrow__prev.svg");
  background-size: contain;
  background-repeat: no-repeat;
}
.vacancy-hero__categories {
  display: flex;
  gap: 4px;
}

.vacancy-content__container {
  max-width: 1440px;
  padding-block: 100px;
}
.vacancy-content__inner {
  display: grid;
  grid-template-columns: 9fr 3fr;
  gap: 24px;
}
.vacancy-content__text h1, .vacancy-content__text h2, .vacancy-content__text h3, .vacancy-content__text h4, .vacancy-content__text h5, .vacancy-content__text h6 {
  margin-bottom: 32px;
}
.vacancy-content__text h1:not(:first-child), .vacancy-content__text h2:not(:first-child), .vacancy-content__text h3:not(:first-child), .vacancy-content__text h4:not(:first-child), .vacancy-content__text h5:not(:first-child), .vacancy-content__text h6:not(:first-child) {
  margin-top: 48px;
}
.vacancy-content__text p, .vacancy-content__text li,
.vacancy-content__text p *, .vacancy-content__text li * {
  opacity: 0.6;
  font-weight: 400;
  font-size: 21px;
  line-height: 130%;
}
.vacancy-content__text ul {
  list-style: disc;
  padding-left: 40px;
}
.vacancy-content__text ol {
  list-style: decimal;
  padding-left: 40px;
}
.vacancy-content__info {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 24px;
  background: #F7F7F7;
  border-radius: 30px;
}
.vacancy-content__info-item span {
  color: #616161;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
}
.vacancy-content__info-item:not(:last-child) {
  padding-bottom: 24px;
  border-bottom: 1px solid #E3E3E3;
}
.vacancy-content__info-value {
  margin-top: 4px;
  color: var(--asphalt);
  font-weight: 400;
  font-size: 21px;
  line-height: 130%;
}
.vacancy-content__share-btn {
  margin-top: 24px;
}
.vacancy-content__apply-btn {
  justify-content: center;
  width: 100%;
  margin-top: 24px;
  padding-block: 24px !important;
}

.other-vacancies__container {
  padding-bottom: 100px;
}
.other-vacancies__title {
  margin-bottom: 48px;
  text-align: center;
}
.other-vacancies__inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

@media (max-width: 1280px) {
  .vacancy-content__container {
    padding-block: 80px;
  }
  .vacancy-content__inner {
    grid-template-columns: 8fr 4fr;
  }
  .other-vacancies__inner {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }
}
@media (max-width: 800px) {
  .vacancy-content__container {
    padding-block: 60px;
  }
  .vacancy-content__inner {
    display: flex;
    flex-direction: column-reverse;
    gap: 30px;
  }
  .other-vacancies__inner {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 680px) {
  .vacancy-content__apply-btn {
    position: fixed;
    top: calc(100dvh - 100px);
    width: calc(100% - 32px);
  }
}
@media (max-width: 580px) {
  .other-vacancies__inner {
    grid-template-columns: 1fr;
  }
}
.text-title {
  background: linear-gradient(289.06deg, #DCF5E9 0%, #FFFFFF 100%);
}
.text-title__container.container {
  padding-block: 80px;
  max-width: 1240px;
}
.text-title__container.container * {
  text-align: center;
}

.text-content__container.container {
  max-width: 1240px;
  padding-block: 80px;
}
.text-content h1, .text-content h2, .text-content h3, .text-content h4, .text-content h5, .text-content h6 {
  margin-block: 48px 32px;
}
.text-content h1:first-child, .text-content h2:first-child, .text-content h3:first-child, .text-content h4:first-child, .text-content h5:first-child, .text-content h6:first-child {
  margin-top: 0;
}
.text-content p,
.text-content ul {
  opacity: 0.6;
  font-weight: 400;
  font-size: 21px;
  line-height: 130%;
}
.text-content ul {
  list-style: disc;
  padding-left: 30px;
  padding-block: 16px;
}

@media (max-width: 800px) {
  .text-title__container.container {
    padding-block: 60px;
  }
  .text-title__container.container * {
    text-align: start;
  }
  .text-content__container.container {
    padding-block: 60px;
  }
  .text-content h1, .text-content h2, .text-content h3, .text-content h4, .text-content h5, .text-content h6 {
    margin-block: 24px 18px;
  }
  .text-content p {
    font-size: 16px;
  }
}
* {
  color: var(--asphalt);
  font-family: "DM Sans", sans-serif;
  letter-spacing: -0.03em;
}

h1 {
  font-weight: 500;
  font-size: 64px;
  line-height: 1;
}

h2 {
  font-weight: 500;
  font-size: 56px;
  line-height: 1;
}

.container {
  width: 100%;
  max-width: 1920px;
  padding-inline: 24px;
  margin-inline: auto;
}

.request-demo-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 16px;
  background: var(--asphalt);
  color: var(--white);
  border-radius: 10px;
  border: none;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
}
.request-demo-btn * {
  text-transform: uppercase;
}
.request-demo-btn:after {
  content: "";
  width: 10px;
  height: 10px;
  background-image: url("../img/icons/arrow__green.svg");
  background-size: contain;
  background-repeat: no-repeat;
}
.request-demo-btn:not(.disabled):hover {
  background: var(--green);
  color: var(--asphalt);
  outline: 1px solid #000000;
}
.request-demo-btn:not(.disabled):hover:after {
  content: "";
  width: 10px;
  height: 10px;
  background-image: url("../img/icons/arrow__dark.svg");
  background-size: contain;
  background-repeat: no-repeat;
}
.request-demo-btn--green {
  background: var(--green);
  color: var(--asphalt);
}
.request-demo-btn--green:after {
  content: "";
  width: 10px;
  height: 10px;
  background-image: url("../img/icons/arrow__dark.svg");
  background-size: contain;
  background-repeat: no-repeat;
}
.request-demo-btn--green:not(.disabled):hover {
  background: var(--asphalt);
  color: var(--white);
}
.request-demo-btn--green:not(.disabled):hover:after {
  content: "";
  width: 10px;
  height: 10px;
  background-image: url("../img/icons/arrow__green.svg");
  background-size: contain;
  background-repeat: no-repeat;
}
.request-demo-btn.disabled, .request-demo-btn.disabled * {
  cursor: not-allowed !important;
}

.learn-more-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 16px;
  color: var(--white);
  font-weight: 900;
  font-size: 14px;
  line-height: 100%;
  letter-spacing: -0.02em;
  text-align: center;
  text-transform: uppercase;
}
.learn-more-btn:after {
  content: "";
  width: 10px;
  min-width: 10px;
  height: 10px;
  background-image: url("../img/icons/learn_more_btn.svg");
  background-size: contain;
  background-repeat: no-repeat;
}

.share-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 20px;
  background: var(--white);
  border: 1px solid #E3E3E3;
  border-radius: 10px;
  cursor: pointer;
  font-weight: 900;
  font-size: 14px;
  line-height: 100%;
  text-align: center;
  text-transform: uppercase;
}
.share-btn:after {
  content: "";
  width: 16px;
  min-width: 16px;
  height: 16px;
  background-image: url("../img/icons/share.svg");
  background-size: contain;
  background-repeat: no-repeat;
}

/* Контейнер форми */
.motion-dialog {
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}
.motion-dialog .wpcf7 form .wpcf7-response-output {
  margin-top: 0;
  border-radius: 16px;
}

.motion-form {
  max-width: 450px;
  background: #ffffff;
  border-radius: 28px;
  padding: 24px 0;
  font-family: "Inter", sans-serif;
}
.motion-form__title-block {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
  margin: 0 0 24px 0;
  padding: 0 24px 24px;
  border-bottom: 1px solid #E3E3E3;
}

.motion-form-body {
  padding-inline: 24px;
}

#contactDialog2,
#contactDialog2 .motion-form {
  max-width: 520px;
}

/* Заголовок */
.motion-form-header h2 {
  font-size: 24px;
  color: #333;
  font-weight: 600;
}

.motion-form-header p {
  margin-bottom: 24px;
  padding-inline: 24px;
  color: #777;
  font-size: 21px;
  line-height: 120%;
  letter-spacing: -0.05em;
}

/* Сітка полів */
.form-row {
  display: flex;
  gap: 15px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group.half {
  flex: 1;
}

/* Стилізація інпутів */
.motion-form input[type=text],
.motion-form input[type=email],
.motion-form input[type=tel],
.motion-form textarea {
  width: 100%;
  padding: 16.5px 16px;
  border: 1px solid #8C8C8C;
  border-radius: 10px;
  font-size: 16px;
  color: #8C8C8C;
  background-color: #fff;
  transition: border-color 0.3s;
  box-sizing: border-box;
}

.motion-form input:focus,
.motion-form textarea:focus {
  border-color: #333;
  outline: none;
}

.motion-form textarea {
  height: 150px;
  resize: none;
}

.form-group.input-group,
.form-group.phone-group {
  position: relative;
}

.form-group.input-group label {
  position: absolute;
  left: 16px;
  top: 29px;
  transform: translateY(-50%);
  color: #8C8C8C;
  font-size: 15px;
  pointer-events: none;
  transition: all 0.2s ease;
  font-family: inherit;
}

.form-group.phone-group label {
  position: absolute;
  top: -6px;
  left: 12px;
  padding-inline: 4px;
  font-weight: 400;
  font-size: 12px;
  line-height: 16px;
  letter-spacing: 0.4px;
  color: #616161;
  background: #fff;
}

/* Оранжева зірочка */
.asterisk {
  color: #DF5328;
}

/* Ховаємо лейбл, коли інпут у фокусі
   АБО коли він не порожній (працює завдяки :not([value=""])) */
.form-group.input-group:focus-within label,
.form-group.input-group.is-active label {
  opacity: 0;
  visibility: hidden;
  transform: translateY(-50%) translateX(10px); /* Легке зміщення при зникненні */
}

.form-group.input-group:focus-within label,
.form-group.input-group.has-text label {
  opacity: 0;
  visibility: hidden;
}

/* Футер та кнопки */
.motion-form-footer {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 12px;
  margin-top: 24px;
  padding: 24px 24px 0;
  border-top: 1px solid #E3E3E3;
}
.motion-form-footer.buttons {
  gap: 12px;
  padding: 0;
  margin: 0;
  border: none;
}

.contact-privacy {
  font-weight: 400;
  font-size: 16px;
  line-height: 20px;
}
.contact-privacy a {
  color: #6FE1A8;
  font-weight: 700;
}
.contact-privacy a:hover {
  text-decoration: underline;
}

.btn-close {
  background: none;
  border: none;
  font-weight: 700;
  color: #333;
  cursor: pointer;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 24px;
}
.btn-close--mobile {
  display: none;
  padding: 0;
}

.close-modal-btn.btn-close {
  padding: 21px 24px;
  font-weight: 900;
  font-size: 14px;
  line-height: 100%;
  letter-spacing: -0.02em;
  text-align: center;
  text-transform: uppercase;
}

/* Кнопка відправки */
.submit-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.request-form__request-btn {
  position: relative;
  padding: 0;
}
.request-form__request-btn:after {
  position: absolute;
  right: 24px;
}

.motion-form input[type=submit] {
  position: relative;
  z-index: 2;
  padding-block: 21px;
  padding-inline: 24px 44px;
  color: #fff;
  border: none;
  cursor: pointer;
  background: transparent;
  letter-spacing: -0.02em;
}

/* Іконка стрілки */
.arrow-icon {
  position: absolute;
  right: 15px;
  color: #00ffaa; /* Зелений колір стрілки з макету */
  font-size: 18px;
  pointer-events: none;
}

/* Очищення стандартних стилів CF7 для помилок */
.wpcf7-not-valid-tip {
  font-size: 12px;
  margin-top: 5px;
}

.wpcf7-spinner {
  position: absolute;
}

/* Сам діалог */
.motion-dialog {
  border: none;
  border-radius: 30px;
  padding: 0;
  max-width: 450px;
  width: 100%;
  transform: translate(calc(50vw - 50%), calc(50vh - 50%));
}

/* Фон за попапом */
.motion-dialog::backdrop {
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(5px); /* Ефект розмиття фону */
}

/* Анімація появи */
.motion-dialog[open] {
  animation: slideUp 0.4s ease-out;
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translate(calc(50vw - 50%), calc(50vh - 50% + 30px));
  }
  to {
    opacity: 1;
    transform: translate(calc(50vw - 50%), calc(50vh - 50%));
  }
}
/* Контейнер для кожної групи */
.file-group {
  margin-bottom: 25px; /* Відступ між полями */
  max-width: 500px; /* Або ширина вашої форми */
}

/* Рядок з назвою та кнопкою */
.file-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

/* Назва поля */
.file-title {
  font-size: 16px;
  color: #555;
  font-weight: 500;
}

/* Приховуємо дефолтний інпут */
.custom-file-label input[type=file] {
  display: none;
}

/* Стиль кнопки */
.file-button {
  width: 207px;
  display: inline-block;
  background-color: #93e3b3; /* Зелений з макету */
  color: #222;
  padding: 14px 35px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
  min-width: 140px;
}

.file-button:hover {
  background-color: #7dd49f;
  transform: translateY(-1px);
}

/* Текст під кнопкою (ім'я файлу) */
.file-name-display {
  display: block;
  font-size: 12px;
  color: #999;
  text-align: right;
  margin-top: 5px;
  font-style: italic;
}

/* Стилізація помилок CF7 */
.wpcf7-not-valid-tip {
  font-size: 12px;
  color: #ff4d4d;
  text-align: left;
  margin-top: 5px;
}

.iti {
  width: 100% !important;
}

.hide-btn {
  display: none !important;
}

@media (max-width: 1400px) {
  br {
    display: none;
  }
}
@media (max-width: 1280px) {
  h1 {
    font-weight: 500;
    font-size: 42px;
    line-height: 1;
  }
  h2 {
    font-weight: 500;
    font-size: 40px;
    line-height: 1;
  }
}
@media (max-width: 680px) {
  h1 {
    font-size: 38px;
  }
  h2 {
    font-size: 32px;
  }
  .container {
    padding-inline: 16px;
  }
  .btn-close--mobile {
    display: block;
  }
}
@media (max-width: 480px) {
  .motion-dialog {
    border-radius: 0;
    width: 100vw;
    max-width: 100%;
    height: 100vh;
    max-height: 100vh;
    height: 100dvh;
    max-height: 100dvh;
  }
  .motion-form {
    height: 100%;
    max-width: 100%;
  }
  .form-row {
    flex-direction: column;
    margin-bottom: 20px;
  }
  .form-row .form-group {
    margin-bottom: 0;
  }
  .motion-form-footer {
    flex-direction: column;
  }
  .motion-form-footer.buttons {
    flex-direction: row;
    margin-inline: auto 0;
  }
  .motion-form-footer .contact-privacy {
    max-width: 234px;
    margin-inline: auto 0;
  }
  .file-wrapper {
    flex-direction: column;
    align-items: flex-start;
  }
  .custom-file-label,
  .file-button {
    width: 100%;
  }
}

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