:root {
  --white: #fff;
  --header-color: #0b0f29;
  --green: #6898f1;
  --primary: #1d345b;
  --dark-grey: #353535;
  --grey: #606060;
  --red: #f02f2f;
  --btn-color: #3a69bd;
  --border-color: #0b0f29;
  --border-green: #6abed9;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: "Rubik", sans-serif;
  color: var(--grey);
}
img {
  max-width: 100%;
}
a:hover {
  text-decoration: none;
}
a[href^="mailto"] {
  color: var(--grey);
}
a[href^="mailto"]:hover {
  color: var(--primary);
}
section {
  position: relative;
}
.header {
  margin-top: 14.4vh;
}
.flex-end {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.section {
  min-height: 100vh;
}
.is-error {
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0;
  display: block;
  margin-top: 4px;
  color: #ffbabd;
}
.form-control.contacts-control.input-error:focus,
.contacts-control.input-error {
  border-color: #ffbabd;
}
.label-error {
  color: #ffbabd;
}
.primary-text {
  color: var(--primary);
}
.text-dark-grey {
  color: var(--dark-grey);
}
h1.title {
  font-size: 72px;
  font-style: normal;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: 0;
  color: var(--white);
  max-width: 884px;
  margin-bottom: 3.55556vh;
}
h2.subtitle {
  font-size: 1.5rem;
  font-style: normal;
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: 0;
  color: var(--white);
  max-width: 475px;
  margin-bottom: 9.6vh;
}
h3.regular {
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.3;
  letter-spacing: 0;
}
.heading {
  font-size: 64px;
  font-style: normal;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0;
  color: var(--primary);
  margin-bottom: 24px;
}
h3.subtitle {
  font-size: 1.125rem;
  font-style: normal;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0;
  margin-bottom: 2.66667vh;
}
h4.subtitle {
  font-size: 1rem;
  font-style: normal;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0;
  margin-bottom: 2.66667vh;
  max-width: 550px;
}
.text {
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0;
  margin-bottom: 2.66667vh;
}
.list {
  margin-left: 25px;
  margin-bottom: 2.66667vh;
  max-width: 600px;
}
.link {
  font-size: 1rem;
  font-style: normal;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0;
  position: relative;
  cursor: pointer;
  margin: 0;
}
.link a {
  color: var(--white);
}
.link a::after {
  content: "";
  background: no-repeat url(/img/link-arrow.svg);
  position: absolute;
  top: 6px;
  left: 293px;
  width: 25px;
  height: 12px;
}
.main-btn {
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0;
  background: var(--btn-color);
  color: var(--white);
  border-radius: 8px;
  padding: 14.5px;
}
.main-btn:hover {
  color: var(--white);
  box-shadow: 0 0 24px rgba(101, 82, 243, 0.45);
}
.main-btn:disabled {
  color: var(--white);
  background: #c0cbff;
}
.white-btn {
  background: #fff;
  border-radius: 8px;
  width: 100%;
  padding: 14.5px;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: 0;
  color: var(--primary);
}
.white-btn:hover {
  color: var(--primary);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.07);
}
.white-btn:disabled {
  color: #b8b8b8;
}
.highlighted-text {
  color: var(--green);
  display: block;
}
.topnav {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 10;
  background-color: var(--header-color);
  display: flex;
  align-items: center;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
  transition: background-color 0.35s ease, opacity 0.35s ease, visibility 0s,
    transform 0.35s ease;
  justify-content: space-between;
}
.topnav.is-invisible {
  visibility: hidden;
  transform: translateY(-100%);
  transition-delay: 0s, 0s, 0.35s, 0s;
}
.topnav-menu-link {
  padding-top: 22px;
  padding-bottom: 22px;
}
.topnav__menu {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.topnav-link {
  font-weight: 300;
  font-size: 18px;
  line-height: 1;
  color: var(--white);
  padding-top: 9px;
  padding-bottom: 9px;
  transition: color 1s;
  display: block;
}
.topnav-link::before {
  display: block;
  content: attr(title);
  font-weight: 500;
  height: 0;
  overflow: hidden;
  visibility: hidden;
}
.topnav-link:hover {
  color: var(--white);
}
.topnav-link.active {
  font-style: normal;
  font-weight: 500;
  letter-spacing: 0;
  color: var(--white);
  border-bottom: 2px solid var(--white);
}
.topnav__content {
  display: flex;
  align-items: center;
  width: 100%;
}
.topnav-menu-group {
  margin-right: 4vw;
  padding-right: 1.99vw;
  cursor: pointer;
}
.header__submenu {
  display: none;
  justify-content: center;
  align-items: center;
  gap: 6.563vw;
  position: absolute;
  left: 0;
  width: 100%;
  padding: 28px 3.073vw;
  top: 80px;
  background-color: var(--header-color);
  z-index: 1;
  border-top: 1px solid rgb(255 255 255/20%);
}
.header__submenu-link {
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0;
  color: #fff;
  max-width: 235px;
  display: block;
  transition: color 0.35s;
}
.header__submenu-link:hover {
  color: var(--btn-color);
}
.logo {
  margin-left: 3.073vw;
  margin-right: 5.26vw;
}
.menu-btn,
.footer-btn {
  background-color: #fff;
  border-radius: 4px;
  padding: 10px 20px;
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0;
  color: var(--header-color);
}

.footer-btn {
  color: var(--btn-color);
  /* border-radius: 8px; */
  /* padding: 14.5px; */
  border: 2px solid var(--btn-color);
}
.menu-btn-placeholder {
  margin-right: 3.125vw;
}
.hide-header-btn {
  display: none;
}
.menu-bar {
  cursor: pointer;
  position: relative;
  top: -2px;
  transition: all 0.5s ease-out;
  margin-right: 34px;
}
.menu-bar .bar {
  width: 39px;
  height: 1px;
  margin-top: 8px;
  background-color: #fff;
  transition: all 0.5s ease-out;
}
.welcome-section__content {
  height: 100vh;
  display: flex;
  align-items: center;
}
.bg-image-box {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
}
.bg-image {
  width: 100%;
  height: 100%;
}
.welcome-section .main-btn {
  padding-left: 95.5px;
  padding-right: 95.5px;
}
.video-fullscreen {
  position: absolute;
  right: 0;
  bottom: 0;
  min-width: 100%;
  min-height: 100%;
  z-index: -100;
}
.loyout-bg {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background-color: var(--primary);
  mix-blend-mode: multiply;
  opacity: 0.4;
}
.solutions__list {
  list-style: none;
  margin: 0;
}
.h2-regular {
  font-size: 32px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: 0;
  color: var(--white);
}
.h3-medium {
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: 0;
}
.link-right {
  float: right;
  margin-right: 43px;
}
.solutions__list-item {
  padding: 32px 30px;
  border-bottom: 1px solid #fff;
  cursor: pointer;
  position: relative;
}
.solutions__list-item:last-child {
  border-bottom: 0;
  padding-bottom: 35px;
}
.solutions__list-item-link {
  color: var(--white);
}
.solutions__list-item-link:hover {
  color: var(--white);
}
.solutions__list-item .nav-link {
  padding: 0;
}
.solutions__text {
  margin-bottom: 24px;
}
.solutions__text h3.regular {
  margin-bottom: 0;
}
.nav-pills .nav-link.active {
  background-color: unset;
}
.s-box {
  background: #ededed;
  border-radius: 8px;
  padding: 32px;
}
.s-box .text {
  color: #353535;
  max-width: 509px;
  margin-bottom: 32px;
}
.s-box__content {
  border: 1px solid #6abed9;
  padding: 50px 72px 24px 24px;
}
.s-box__link {
  margin-top: 40px;
  margin-bottom: 0;
}
.s-box__product {
  cursor: pointer;
  position: relative;
}
.s-box__product .s-link:after {
  top: 5px;
}
.s-box__product .h3-medium {
  max-width: 200px;
}
.s-box__product:hover .h3-medium {
  color: var(--btn-color);
}
.s-box-img {
  border-radius: 8px;
  cursor: pointer;
}
.teams-section {
  background-color: #eee;
}
.teams-section__content {
  padding: 3.55556vh 2.917vw 4.4444vh;
  color: var(--white);
}
.teams-section__content .subtitle,
.teams-section__content .text {
  margin-bottom: 2.66667vh;
}
.teams-section__link {
  padding: 3.55556vh 23px 2.2222vh;
  height: 100%;
  display: -ms-flexbox;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  align-items: center;
}
.teams-section__link .subtitle {
  color: var(--primary);
  z-index: 1;
}
h3.teams-section__subtitle {
  color: var(--primary);
  margin-bottom: 2rem;
}
.teams-section__gallery-item {
  position: relative;
  text-align: center;
  cursor: pointer;
  margin-bottom: 24px;
}
.teams-section__image {
  background: linear-gradient(
      180deg,
      rgba(0, 0, 0, 0) 0%,
      rgba(255, 255, 255, 0) 0.01%,
      #000 100%
    ),
    linear-gradient(
      180deg,
      rgba(0, 0, 0, 0) 0%,
      rgba(255, 255, 255, 0) 0.01%,
      #ffe7d1 56.77%
    );
  background-blend-mode: multiply, color, normal;
  border-radius: 8px;
}
.teams-section__image-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  color: var(--white);
  padding: 10px;
  background: rgb(11 15 40/50%);
  height: 92px;
}
.teams-section__employee-name {
  font-size: 1.5rem;
  font-style: normal;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0;
  max-width: 248px;
  margin: 0 auto;
  margin-bottom: 16px;
}
.teams-section__employee-position {
  font-size: 1rem;
  font-style: normal;
  font-weight: 300;
  line-height: 1;
  letter-spacing: 0;
  max-width: 186px;
  margin: 0 auto;
}
.teams-btn {
  padding: 1.8888vh 0;
  z-index: 1;
}
.swiper {
  width: 100%;
  height: 100%;
}
.swiper-slide {
  display: flex;
  justify-content: center;
  align-content: center;
  position: relative;
  transition: all 0.6s ease-out;
}
.swiper-slide img {
  display: block;
  object-fit: cover;
}
.teams-section__gallery-content {
  width: 624px;
  height: 330px;
  position: absolute;
  left: 100px;
  top: 0;
  background: #fff;
  border: 1px solid var(--btn-color);
  box-shadow: 0 8px 30px rgb(0 0 0/12%);
  border-bottom-right-radius: 8px;
  border-top-right-radius: 8px;
  border-left: 0;
  visibility: hidden;
  opacity: 0;
  transition: visibility 0s, left 0.6s, opacity 0.6s ease-out;
  display: flex;
  justify-content: center;
  align-items: center;
}
.right {
  left: unset;
  right: 100px;
  border: 1px solid var(--btn-color);
  border-bottom-left-radius: 8px;
  border-top-left-radius: 8px;
  transition: visibility 0s, right 0.6s, opacity 0.6s ease-out;
}
.teams-section__gallery-item.active {
  z-index: 1;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
  border-bottom-left-radius: 8px;
  border-top-left-radius: 8px;
}
.teams-section__gallery-content .bio-content {
  padding-left: 32px;
  padding-right: 30px;
}
.show-left {
  visibility: visible;
  opacity: 1;
  left: 275px;
}
.show-right {
  visibility: visible;
  opacity: 1;
  right: 270px;
}
.city {
  font-size: 1rem;
  font-style: normal;
  font-weight: 300;
  line-height: 1;
  letter-spacing: 0;
  color: var(--btn-color);
  position: relative;
  margin: 0 30px;
}
.city:after {
  content: "";
  position: absolute;
  top: -2px;
  left: -31px;
  background: no-repeat url(/img/MapPinLine.svg);
  width: 20.5px;
  height: 23px;
}
.work {
  font-size: 1rem;
  font-style: normal;
  font-weight: 300;
  line-height: 1;
  letter-spacing: 0;
  color: var(--btn-color);
  position: relative;
  margin: 0 30px;
}
.work:after {
  content: "";
  position: absolute;
  top: -2px;
  left: -29px;
  background: no-repeat url(/img/IdentificationCard.svg);
  width: 21px;
  height: 22px;
}
.bio {
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0;
  margin-bottom: 43px;
  margin-top: 36px;
}
.bio-job-link {
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0;
  color: var(--btn-color);
  position: relative;
}
.bio-job-link:after {
  content: "";
  position: absolute;
  top: 4px;
  right: -45px;
  background: no-repeat url(/img/arrow-default.svg);
  width: 28px;
  height: 15px;
}
.bio-job-link:hover {
  color: var(--primary);
}
.bio-job-link:hover:after {
  background: no-repeat url(/img/arrow-hover.svg);
}
.bio-job-link:disabled {
  color: #c0cbff;
}
.bio-job-link:disabled:after {
  background: no-repeat url(/img/arrow-disabled.svg);
}
.swiper-horizontal > .swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal {
  bottom: 2px;
}
.job-section {
  min-height: 100vh;
  position: relative;
  background: #fff;
}
.job-section__content .text {
  color: var(--dark-grey);
}
.job-section__desc .text {
  margin-bottom: 16px;
}
.job-section__desc .text:last-child {
  margin-bottom: 32px;
}
.job-section__grid-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  row-gap: 30px;
  column-gap: 32px;
}
.job-section__condition {
  background: #fff;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
  padding: 24px 20px 23px;
  min-height: 160px;
  height: 100%;
}
.job-section__condition-image {
  height: 56px;
  margin-bottom: 16px;
}
.job-section__condition-text {
  max-width: 250px;
  margin: 0;
  line-height: 1.5;
}
.job-section__vacancies {
  margin-top: 15.4444vh;
}
.job-section__vacancy-box {
  position: relative;
  margin-bottom: 24px;
}
.job-section__vacancy-box:last-child {
  margin-bottom: 0;
}
.job-section__vacancy-image {
  filter: drop-shadow(0 8px 30px rgba(0, 0, 0, 0.12));
  width: 100%;
  border-radius: 8px;
}
.job-section__link {
  position: absolute;
  bottom: 0;
  cursor: pointer;
  margin: 0;
  background: var(--btn-color);
  border-radius: 0 8px 0 8px;
  padding: 12px 32px;
  width: 280px;
  max-width: 100%;
  display: block;
  transition: width 0.5s ease-out;
  color: var(--white);
  z-index: 1;
}
.job-section__link::after {
  content: "";
  background: no-repeat url(/img/link-arrow2.svg);
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 26px;
  height: 15px;
}
.job-section__link:hover {
  width: 300px;
  color: var(--white);
}
.job-section__link:hover + .dark-layout {
  opacity: 1;
}
.dark-layout {
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2));
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  opacity: 0;
  border-radius: 8px;
}
.vacancies-link {
  margin-top: 31px;
}
.vacancies-anchor {
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0;
  color: var(--btn-color);
  border-radius: 8px;
  padding: 14.5px;
  border: 2px solid var(--btn-color);
  width: 100%;
}
.vacancies-anchor:hover {
  color: var(--primary);
  border-color: var(--primary);
}
.vacancies-anchor:disabled {
  color: #c0cbff;
  border-color: #c0cbff;
}
.footer-image {
  background: radial-gradient(
    100% 106.32% at 100% 100%,
    rgba(34, 219, 215, 0.4) 0%,
    rgba(101, 82, 243, 0.4) 60.42%
  );
  background-blend-mode: multiply, normal;
  border-radius: 8px;
  margin-top: 30.77778vh;
}
.footer__top-content {
  position: relative;
  margin-top: 14.1111vh;
}
.footer-image {
  position: absolute;
  bottom: 0;
  width: 100%;
}
.footer__navbar {
  margin-top: 9.2222vh;
}
.footer__navbar-link-box {
  margin-bottom: 20px;
}
.footer__navbar-link {
  color: var(--primary);
  display: block;
  padding-bottom: 1.77778vh;
  border-bottom: 1px solid var(--border-color);
}
.footer__navbar-link_standalone {
  color: var(--primary);
}
.footer__navbar-link_light {
  display: block;
  max-width: 248px;
  font-size: 1rem;
  font-style: normal;
  font-weight: 300;
  line-height: 1;
  letter-spacing: 0;
  padding-bottom: 12px;
  color: var(--grey);
}
.footer__submenu {
  margin-top: 1.77778vh;
}
.footer__logo {
  margin-bottom: 40px;
}
.footer__text {
  font-size: 1rem;
  font-style: normal;
  font-weight: 300;
  line-height: 1;
  letter-spacing: 0;
  margin-bottom: 1.77778vh;
}
.footer__logo-box {
  margin-left: 37px;
}
.footer__bottom-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 9.77778vh;
  margin-bottom: 9.2222vh;
}
.social-icons img {
  margin-left: 17px;
  width: 32px;
  height: 32px;
}
.contacts {
  background: var(--btn-color);
  border-radius: 8px 8px 0 0;
  color: #fff;
  padding: 5vh 2.344vw 6.88889vh;
}
.contacts__header {
  font-size: 36px;
  font-style: normal;
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: 0;
  margin-bottom: 2.77778vh;
}
.contacts__intro {
  margin-bottom: 4.55556vh;
}
.contacts-btn {
  width: 100%;
  padding: 1.8888vh 0;
  margin-bottom: 1rem;
}
.contacts__link {
  margin-bottom: 0;
}
.contacts__link input[type="checkbox"] {
  display: none;
}
.contacts__link input[type="checkbox"]:checked + .contacts__link-label {
  background-color: #6abed9;
}
.contacts__link input[type="checkbox"]:checked + .contacts__link-label:after {
  content: "";
  background: no-repeat url(/img/checkbox-arrow.svg);
  width: 28px;
  height: 15px;
  position: absolute;
  top: 4px;
  left: 2px;
}
.contacts__link-label {
  width: 24px;
  height: 24px;
  border: 1px solid #fff;
  border-radius: 4px;
  margin-right: 16px;
  float: left;
  position: relative;
}
.contacts-control::placeholder {
  color: var(--btn-color);
}
.form-control.contacts-control:focus::placeholder {
  font-size: 1rem;
  font-style: normal;
  font-weight: 300;
  line-height: 1.5;
  letter-spacing: 0;
  color: #fff;
}
.contacts__anchor {
  text-decoration: underline;
  color: #fff;
  font-size: 1rem;
  font-style: normal;
  font-weight: 300;
  line-height: 1.5;
  letter-spacing: 0;
}
.contacts__anchor:hover {
  text-decoration: underline;
  color: #fff;
}
.contacts__label {
  position: absolute;
  top: 0;
  margin: 0;
  pointer-events: none;
  transition: 0.2s ease all;
}
.contacts__group {
  margin-bottom: 3.55554vh;
  position: relative;
}
.contacts__group:last-of-type {
  margin-bottom: 5.4444vh;
}
.contacts-control {
  background: transparent;
  border: 0;
  border-bottom: 2px solid #fff;
  border-radius: 0;
  padding: 0;
  padding-bottom: 8px;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0;
  color: #fff;
}
.input-valid + label,
:not(input[value=""]) + .contacts__label,
.contacts-control:focus + .contacts__label {
  top: -16px;
}
.form-control.contacts-control:focus {
  color: #fff;
  background-color: transparent;
  border-color: #fff;
  outline: 0;
  box-shadow: none;
}
textarea.contacts-control + .contacts__label {
  top: 0;
}
textarea.contacts-control:not([data-val=""]) ~ label,
textarea.contacts-control:focus + .contacts__label {
  top: -20px;
}
.bigdonut {
  position: absolute;
  right: 23px;
  top: 226px;
  opacity: 0.3;
}
.donutpart {
  position: absolute;
  right: 310px;
  top: 495px;
  opacity: 0.3;
}
.donut {
  position: absolute;
  right: 0;
  bottom: 0;
}
.vacancy {
  margin-bottom: 9.2222vh;
}
.vacancy-box {
  padding: 42px 30px 45px 35px;
  border: 1px solid var(--border-color);
  position: relative;
  display: flex;
  justify-content: space-between;
  overflow: hidden;
}
.vacancies-list .row:not(:last-child) .vacancy-box {
  border-bottom: 0;
}
.vacancy-box__subtitle {
  color: var(--primary);
}
.vacancy-box__desc {
  max-height: 44px;
  overflow: hidden;
}
.vacancy-box__hh-btn {
  width: 280px;
}
.vacancy-box:hover .vacancy-title {
  color: var(--btn-color);
}
.vacancy-box:hover .vacancy-detail-text {
  opacity: 1;
  visibility: visible;
  position: static;
  transform: translateX(0);
}
.vacancy-box__content {
  padding-right: 10px;
}
.vacancy-arrow-link {
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 27px;
  letter-spacing: 0;
  color: var(--primary);
}
.vacancy-arrow-link:hover {
  color: var(--primary);
}
.vacancy-detail-text {
  opacity: 0;
  visibility: hidden;
  position: absolute;
  transform: translateX(-200px);
  display: inline-block;
  transition: transform 1s;
}
.vacancy-arrow-link img {
  transition: all 0.5s ease-out;
}
.vacancy-box:hover .vacancy-arrow-link img {
  margin-left: 16px;
}
.vacancy-btn {
  width: 280px;
  margin-bottom: 1.77778vh;
}
.vacancy__link {
  margin-top: 2.66667vh;
}
.vacancies-back-link {
  margin-top: 40px;
}
.vacancies-back-anchor {
  margin-left: 44px;
}
.vacancies-back-anchor:after {
  left: -44px;
  background: no-repeat url("/img/arrow-back-default.svg");
  top: 2px;
}
.vacancies-back-anchor:hover:after {
  background: no-repeat url("/img/arrow-back-hover.svg");
}
.vacancies-back-anchor:disabled:after {
  background: no-repeat url("/img/arrow-back-disabled.svg");
}
.vacancies-back-anchor__text {
  margin-left: 16px;
}
.vacancy-contacts {
  margin-top: 56px;
}
.h2-medium.accordion-btn {
  margin: 0;
}
.accordion-btn {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 24px 34px;
  border: 0;
}
.btn.accordion-btn:focus {
  box-shadow: none;
}
.btn.accordion-btn:hover {
  color: var(--btn-color);
}
.job-box {
  padding: 40px;
  color: #fff;
}
.job-box__hh-link {
  font-size: 22px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: 0;
  border-radius: 8px;
  padding: 14.5px;
  text-align: center;
  border: 2px solid #fff;
  color: #fff;
  width: 100%;
  margin-top: 2.66667vh;
}
.job-box__hh-link:hover {
  color: #fff;
}
.tag {
  font-size: 14px;
  font-style: normal;
  font-weight: 300;
  line-height: 1;
  letter-spacing: 0;
  color: #000;
  background: rgba(0, 0, 0, 0.05);
  padding: 8px;
  margin: 8px;
  display: inline-block;
  cursor: pointer;
}
.job-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 9.2222vh;
  padding: 0;
}
.job-list-item:not(:last-of-type) {
  border-right: 1px solid var(--border-color);
}
.job-list-item {
  padding: 45px 35px;
  position: relative;
}
.job-list-item:hover {
  background: var(--btn-color);
  color: #fff;
}
.job-list-item:hover .vacancy-box__subtitle {
  color: #fff;
}
.job-list-item .vacancy__link a:after {
  content: "";
  background: no-repeat url(/img/site-arrow.svg);
  width: 28px;
  height: 15px;
  display: block;
  float: right;
}
.job-list-item:hover .vacancy__link a:after {
  background: no-repeat url(/img/white-arrow.svg);
}
.page-header {
  margin-top: 130px;
}
.product .subtitle,
.calculator .subtitle {
  max-width: 1050px;
  color: var(--primary);
  font-size: 32px;
  font-weight: 400;
  line-height: 1.2;
}
.product-tasks,
.product-benefits {
  margin-top: 80px;
}
.product-task-box {
  display: grid;
  border: 1px solid var(--border-color);
  grid-template-columns: repeat(4, 1fr);
}
.product-task {
  padding: 32px 48px 32px 30px;
  cursor: pointer;
  padding-bottom: 32px;
  border-right: 1px solid var(--border-color);
}
.product-task:last-child {
  border-right: 0;
}
.product-task__text {
  margin-bottom: 0;
  margin-top: 25px;
}
.product-task:nth-child(3) product-task__text {
  max-width: 500px;
}
.product-header {
  margin-top: 14.44445vh;
  background: radial-gradient(
    100% 106.32% at 100% 100%,
    #5e80f9 0%,
    #6552f3 60.42%
  );
  border-radius: 8px;
  color: #fff;
  display: grid;
  grid-template-columns: 4fr 8fr;
}
.product-header .heading {
  color: #fff;
}
.product-header__content {
  display: flex;
  align-items: center;
  position: relative;
}
.product-header__content-box {
  position: absolute;
  left: 72px;
  width: 411px;
}
.product-header__image {
  margin-top: 66px;
  display: flex;
  justify-content: flex-end;
}
.product-services {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  margin-top: 60px;
  gap: 100px;
}
.product__item-number {
  font-size: 2rem;
  font-style: normal;
  font-weight: 300;
  line-height: 1.2;
  color: var(--primary);
  margin-bottom: 40px;
}
.product__title {
  font-size: 36px;
  font-style: normal;
  font-weight: 500;
  line-height: 1.1;
  color: var(--primary);
  margin-bottom: 24px;
}
.product__text {
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.3;
  margin-bottom: 60px;
}
.product__box .product__text {
  padding-top: 16px;
  margin-bottom: 48px;
}
.product__subtitle {
  font-size: 2rem;
  font-style: normal;
  font-weight: 300;
  line-height: 1.2;
  color: var(--primary);
  padding-bottom: 16px;
  margin-bottom: 0;
  border-bottom: 1px solid var(--border-color);
}
.product__subtitle-number {
  font-weight: 500;
  color: var(--primary);
}
.product__full-image {
  margin-top: 200px;
}
.calculator-boxes {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 166px;
  margin-top: 80px;
}
.calculator-box:first-child:after {
  content: "";
  position: absolute;
  top: 49%;
  right: -146px;
  background: no-repeat url("/img/calculator-arrow.svg");
  width: 130px;
  height: 23px;
}
.calculator .product-header {
  background: var(--btn-color);
  grid-template-columns: 4fr 5fr;
}
.calculator .product-header__content-box {
  width: 100%;
  padding-right: 48px;
}
.calculator-box {
  background: #fff;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
  border-radius: 8px;
  padding: 32px 32px 20px 32px;
  position: relative;
}
.calculator .subtitle {
  margin-bottom: 16px;
}
.calculator__text {
  margin-bottom: 20px;
}
.calculator-input {
  margin-top: 80px;
}
.input-data-box {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--border-color);
}
.input-data {
  border-right: 1px solid var(--border-color);
  padding: 40px 20px 20px 20px;
}
.input-data:last-child {
  border-right: 0;
}
.input-data__header {
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: 0;
  color: var(--primary);
}
.calculator-output {
  margin-top: 120px;
}
.calculator-output__list {
  list-style: none;
}
.calculator-output__list li {
  padding-top: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--border-color);
  padding-right: 45px;
}
.calculator-output__list li:last-child {
  border-bottom: 0;
}
.calculator-output .subtitle {
  margin-bottom: 40px;
}
.calculator-output__content {
  display: flex;
  gap: 32px;
}
.calculator-effect {
  margin-top: 80px;
}
.calculator-effect__content {
  padding-left: 136px;
}
.calculator-effect__text {
  max-width: 550px;
}
.pims {
  color: var(--grey) !important;
}
.pims-header {
  background: radial-gradient(
    100% 106.32% at 100% 100%,
    #5c5f69 0%,
    #43424d 60.42%
  );
  color: #fff;
}
.platform-modules {
  padding: 80px 0;
  background-color: #f8fafc;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 1rem;
  text-align: center;
}

.section-subtitle {
  font-size: 1.25rem;
  color: #64748b;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 3rem;
}

.modules-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.module-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #e2e8f0;
}

.module-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

.module-card__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px;
  background-color: #f1f5f9;
  border-bottom: 1px solid #e2e8f0;
}

.module-card__title {
  font-size: 1.5rem;
  font-weight: 600;
  color: #1e293b;
  margin: 0;
}

.module-card__icon {
  color: var(--gray);
}

.module-card__content {
  padding: 24px;
}

.module-card__description {
  color: #475569;
  line-height: 1.6;
  font-size: 1rem;
}

.module-card__description p {
  margin-bottom: 1rem;
}

.module-card__description p:last-child {
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .modules-grid {
    grid-template-columns: 1fr;
  }

  .section-title {
    font-size: 2rem;
  }

  .section-subtitle {
    font-size: 1.1rem;
  }
}
.platform-components {
  padding: 100px 0;
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
  position: relative;
  overflow: hidden;
}

.platform-header {
  text-align: center;
  margin-bottom: 60px;
}

.platform-title {
  font-size: 2.75rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.platform-title span {
  color: var(--grey);
}

.platform-divider {
  width: 80px;
  height: 4px;
  background: var(--dark-grey);
  margin: 0 auto;
  border-radius: 2px;
}

.platform-content {
  width: 100%;
  display: flex;
  gap: 50px;
  align-items: center;
}

.platform-features {
  display: flex;
  flex-direction: column;
  min-width: 100%;
}

.platform-visual {
  flex: 1;
  position: relative;
}
.documentation-section {
  padding: 80px 0;
  background-color: #f8f9fa;
}

.documentation-header {
  text-align: center;
  margin-bottom: 50px;
}

.documentation-title {
  font-size: 2.25rem;
  font-weight: 700;
  color: #212529;
  margin-bottom: 1rem;
}

.documentation-divider {
  width: 60px;
  height: 3px;
  background: #6c757d;
  margin: 0 auto;
  border-radius: 2px;
}

.documentation-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 25px;
}

.documentation-card {
  background: white;
  border-radius: 8px;
  padding: 25px;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
  border: 1px solid #e9ecef;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.documentation-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  border-color: #dee2e6;
}

.documentation-card__icon {
  width: 48px;
  height: 48px;
  background: #f1f3f5;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: #495057;
}

.documentation-card__title {
  font-size: 1.25rem;
  font-weight: 600;
  color: #212529;
  margin-bottom: 15px;
  flex-grow: 1;
}

.documentation-card__arrow {
  align-self: flex-end;
  color: #6c757d;
  transition: transform 0.3s ease;
}

.documentation-card:hover .documentation-card__arrow {
  transform: translateX(5px);
}

@media (max-width: 768px) {
  .documentation-section {
    padding: 60px 0;
  }

  .documentation-title {
    font-size: 1.75rem;
  }

  .documentation-grid {
    grid-template-columns: 1fr;
  }
}

.feature-card {
  width: 100%;
  background: white;
  border-radius: 12px;
  padding: 30px;
  margin-bottom: 25px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  border-left: 4px solid var(--gray);
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.feature-icon {
  width: 48px;
  height: 48px;
  background: #e0e7ff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--gray);
}

.feature-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 15px;
}

.feature-description {
  color: #475569;
  line-height: 1.7;
  font-size: 1.05rem;
}

.feature-description p {
  margin-bottom: 1rem;
}

.visual-wrapper {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
}

.platform-image {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s ease;
}

.visual-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(59, 130, 246, 0.1) 0%,
    rgba(59, 130, 246, 0) 100%
  );
}

@media (max-width: 992px) {
  .platform-content {
    flex-direction: column;
  }

  .platform-visual {
    order: -1;
    margin-bottom: 40px;
    max-width: 600px;
    width: 100%;
  }

  .platform-title {
    font-size: 2.25rem;
  }
}

@media (max-width: 576px) {
  .platform-components {
    padding: 60px 0;
  }

  .platform-title {
    font-size: 1.8rem;
  }

  .feature-card {
    padding: 20px;
  }

  .feature-title {
    font-size: 1.3rem;
  }
}
.solution {
  position: relative;
  top: -8.88889vh;
}
.solution-box {
  background: #fff;
  border-radius: 8px 8px 0 0;
  padding-left: 104px;
}
.solution__subtitle {
  font-style: normal;
  font-weight: 500;
  font-size: 2rem;
  line-height: 1.2;
  color: var(--primary);
  margin-bottom: 2.66667vh;
}
.solution__content {
  margin-bottom: 4.4444vh;
  padding-right: 42px;
  padding-top: 3.3333vh;
}
.solution__gallery {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.solution__gallery:hover .solution-box__name {
  color: var(--btn-color);
}
.solution__gallery:hover .s-link:after,
.s-box__product:hover .s-link:after {
  filter: invert(35%) sepia(94%) saturate(453%) hue-rotate(180deg)
    brightness(92%) contrast(91%);
}
.solution__gallery-item {
  display: flex;
  border: 1px solid var(--border-color);
}
.solution-box__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 10px 30px;
}
.solution-box__header {
  max-width: 592px;
}
.solution-box__link {
  display: flex;
  justify-content: flex-end;
  margin-top: 0;
  position: relative;
}
.s-link:after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  background: no-repeat url(/img/site-arrow.svg);
  width: 26px;
  height: 23px;
}
.solution-box__name {
  font-size: 1.5rem;
  font-style: normal;
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: 0;
  color: var(--primary);
  margin-bottom: 8px;
}
.solution-box__desc {
  color: var(--dark-grey);
  margin-bottom: 8px;
}
.team-intro {
  margin-bottom: 4.4444vh;
  max-width: 1008px;
  font-size: 1.5rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.3;
  letter-spacing: 0;
}
.team__areas {
  padding: 60px 0 80px;
  background-color: #f7f7f7;
  margin-top: 68px;
}
.team__areas .heading {
  margin-bottom: 0;
}
.team__areas-box {
  margin-top: 40px;
}
.team__areas-title {
  font-size: 2rem;
  font-style: normal;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 0;
  color: var(--primary);
  margin-bottom: 1.77778vh;
}
.team__areas-text {
  margin-bottom: 0;
}
.team-values {
  margin-top: 80px;
}
.team-values .heading {
  margin-bottom: 60px;
}
.team-values__subtitle {
  font-size: 1.5rem;
  font-style: normal;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0;
  color: var(--primary);
  margin-bottom: 16px;
}
.team-values__content {
  border-bottom: 1px solid var(--border-color);
  margin-top: 40px;
}
.team-values__content:first-child {
  margin-top: 10px;
}
.team-values__content:last-child {
  border-bottom: 0;
}
.team-values__text {
  margin-bottom: 40px;
}
.team-values__image {
  margin-bottom: 32px;
}
.team-values__grid {
  display: flex;
  gap: 27px;
  align-items: flex-end;
}
.team-header {
  margin-top: 100px;
}
.team-heading {
  font-size: 2rem;
  font-style: normal;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 0;
  color: var(--primary);
  margin-bottom: 24px;
}
.team-link {
  width: auto;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0;
  padding: 14.5px 54.5px;
}
.team-vacancies {
  background: no-repeat url(/img/pattern.jpg);
  background-position: center;
  height: 300px;
  margin-top: 100px;
  display: flex;
  align-items: center;
}
.white-text {
  color: #fff;
}
.file-input__group {
  margin-bottom: 32px;
}
.file-input[type="file"] {
  width: 0.1px;
  height: 0.1px;
  opacity: 0;
  overflow: hidden;
  position: absolute;
  z-index: -1;
}
.file-input__label {
  cursor: pointer;
  position: relative;
  padding-left: 27px;
  word-break: break-word;
  margin-bottom: 0;
}
.file-input__label::before {
  content: "";
  background: no-repeat url("/img/resume-upload-icon.svg");
  position: absolute;
  top: 1px;
  left: 0;
  width: 20px;
  height: 20px;
}
.file-input__format {
  display: block;
  font-size: 12px;
  margin-left: 27px;
}
.modal .contacts {
  border-radius: 0;
}
.header-title {
  margin-bottom: 2.66665vh;
  font-size: 24px;
}
.close {
  color: #fff;
  opacity: 1;
  font-weight: normal;
  text-shadow: none;
  position: relative;
  top: 4px;
}
.close:hover {
  color: #fff;
  opacity: 1;
}
.close:not(:disabled):not(.disabled):focus,
.close:not(:disabled):not(.disabled):hover {
  opacity: 1;
}
.modal-mask {
  position: fixed;
  z-index: 9998;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  display: table;
  transition: opacity 0.3s ease;
}
.modal-wrapper {
  display: table-cell;
  vertical-align: middle;
}
.modal-container {
  width: 498px;
  margin: 0 auto;
}
.page404 {
  padding-top: 80px;
  display: flex;
  align-items: center;
  height: 100vh;
  justify-content: center;
  text-align: center;
}
.page404__text {
  margin-top: 56px;
}
.h2-medium {
  font-size: 2rem;
  font-style: normal;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 0;
  color: var(--primary);
  margin-bottom: 32px;
}
@media (max-height: 650px) {
  .section {
    height: auto;
  }
}
@media (min-width: 577px) {
  .bg-image {
    display: none;
  }
}
@media (min-width: 768px) {
  .unset-overflow {
    overflow: unset;
  }
  .nav-pills .nav-link.active {
    font-weight: 500;
  }
  .nav-pills .nav-link.active:after {
    content: "";
    background: no-repeat url(/img/Subtract.png);
    position: absolute;
    top: 33%;
    left: -16px;
    width: 22px;
    height: 38px;
  }
}
@media (min-width: 992px) {
  .solution__subtitle {
    font-size: 1.5rem;
  }
  .flex-lg-end {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
  }
  .menu-bar {
    display: none;
  }
  .hasSubmenu {
    position: relative;
  }
  .hasSubmenu::after {
    content: "";
    background: no-repeat url(/img/CaretDown.png);
    position: absolute;
    top: 3px;
    right: -24px;
    width: 16px;
    height: 16px;
  }
  .topnav-menu-group:hover .hasSubmenu::after {
    content: "";
    background: no-repeat url(/img/CaretDownHover.svg) var(--header-color);
    position: absolute;
    top: auto;
    bottom: -41px;
    right: 36%;
    width: 24px;
    height: 24px;
    z-index: 10;
  }
  .topnav-menu-group:hover .header__submenu {
    display: flex;
  }
  .close-submenu {
    display: none;
  }
}
@media (min-width: 1300px) {
  .solution__subtitle {
    font-size: 2rem;
  }
  h3.subtitle {
    font-size: 1.5rem;
    line-height: 1.1;
  }
  .welcome-section__title {
    margin-top: -9vh;
  }
}
@media (max-width: 1299px) {
  h1.title {
    font-size: 56px;
    line-height: 1.1;
  }
  h2.subtitle {
    font-size: 18px;
    line-height: 1.5;
    max-width: 355px;
  }
  .heading {
    font-size: 42px;
  }
  .text {
    font-size: 16px;
  }
  h3.regular {
    font-size: 18px;
    line-height: 1.5;
  }
  .h2-regular {
    font-size: 22px;
  }
  .h2-medium {
    font-size: 22px;
  }
  .solutions__list-item {
    padding-top: 24px;
    padding-bottom: 24px;
  }
  .solutions__list-item:last-child {
    padding-bottom: 32px;
  }
  .solution-box__name {
    font-size: 20px;
  }
  .calculator .product-header__content-box {
    position: static;
    width: 100%;
    padding-right: 20px;
    margin-left: 40px;
  }
  .calculator-output__content {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
  .calculator-output__list li:first-child {
    padding-top: 0;
  }
  .teams-section__employee-name {
    font-size: 18px;
    line-height: 1.1;
  }
  .teams-section__gallery-content {
    height: 246px;
    width: 491px;
  }
  .team-intro {
    font-size: 20px;
    line-height: 1.5;
    margin-bottom: 24px;
  }
  .show-left {
    left: 204px;
  }
  .show-right {
    right: 199px;
  }
  .bio {
    font-size: 1rem;
    margin-bottom: 5px;
    margin-top: 10px;
  }
  .bio-content {
    padding-top: 5px;
  }
  .teams-section__gallery-content {
    justify-content: flex-start;
  }
  .teams-section__employee-name {
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 1.1;
    letter-spacing: 0;
    margin-bottom: 8px;
  }
  .teams-section__image-caption {
    padding: 5px 20px;
    height: 66px;
  }
  .teams-section__employee-position {
    font-size: 14px;
    font-style: normal;
    font-weight: 300;
    line-height: 1;
    letter-spacing: 0;
    max-width: 176px;
  }
  .solutions__image-box img {
    max-height: 361px;
  }
  .vacancies-link {
    margin-top: 24px;
  }
  .vacancies-anchor {
    padding: 13px;
  }
  .footer__navbar-link_light,
  .footer__navbar-link,
  .footer__navbar-link_standalone,
  .footer__text {
    font-size: 15px;
  }
  .contacts {
    padding-top: 2vh;
    padding-bottom: 4vh;
  }
  .contacts__intro {
    margin-bottom: 16px;
  }
  .contacts__group {
    margin-bottom: 2.55554vh;
  }
  .contacts__group:last-of-type {
    margin-bottom: 2vh;
  }
  .contacts-control,
  .contacts__label {
    font-size: 15px;
  }
  .job-section__desc .text:last-child {
    margin-bottom: 25px;
  }
  .product__full-image {
    margin-top: 100px;
  }
  .form-control.contacts-control:focus::placeholder {
    font-size: 15px;
  }
  .header-title {
    margin-bottom: 1.66665vh;
  }
  .s-box,
  .tab-content,
  .tab-pane {
    height: 100%;
  }
  .s-box__content {
    padding: 20px;
  }
  .s-box__link {
    margin-top: 20px;
  }
  .s-box .text {
    margin-bottom: 16px;
  }
  .s-box__product .h3-medium {
    font-size: 20px;
  }
  .s-box .s-box__product .s-link:after {
    display: block;
    position: static;
  }
  .accordion-item-image {
    width: 20px;
  }
}
@media (min-width: 992px) and (max-width: 1299px) {
  .team-values__content {
    margin-top: 20px;
  }
  .team-values__content:first-child {
    margin-top: -1px;
  }
  .team-values__subtitle {
    margin-bottom: 13px;
  }
  .team-values__text {
    margin-bottom: 15px;
  }
}
@media (max-width: 991px) {
  .solutions-section .flex-end {
    display: block;
  }
  .teams-section__link {
    display: none;
  }
  .job-section__grid-wrapper {
    display: none;
  }
  .footer__logo-box {
    margin-left: 0;
    margin-top: 20px;
  }
  .job-box {
    margin-top: 20px;
  }
  .job-section {
    min-height: auto;
  }
  .product-task-box {
    display: block;
  }
  .product-task {
    border-right: 0;
    border-bottom: 1px solid var(--border-color);
  }
  .product-task:last-child {
    border-bottom: 0;
  }
  .solution__gallery-item {
    display: block;
    border: 0;
    width: 345px;
  }
  .solution-box__content {
    border: 1px solid var(--border-color);
    border-top: 0;
    padding: 24px 15px 46px;
  }
  .product-header__desc {
    max-width: 308px;
  }
  .calculator .product-header__content-box {
    padding-top: 15px;
    padding-bottom: 15px;
  }
  .menu-btn {
    padding: 14.5px;
    font-size: 18px;
  }
  .topnav__menu {
    display: none;
  }
  .topnav-logo {
    display: flex;
    width: 100%;
    justify-content: space-between;
  }
  .topnav.mobile {
    height: 100vh;
    display: block;
  }
  .menu-btn-placeholder {
    display: none;
  }
  .topnav.mobile .menu-btn-placeholder {
    margin-left: 30px;
    margin-right: 30px;
    display: block;
  }
  .topnav.mobile .topnav__menu {
    display: block;
  }
  .topnav.mobile .topnav__content {
    display: block;
    margin-bottom: 62px;
  }
  .topnav.mobile .menu-bar {
    transform: rotate(180deg);
  }
  .topnav.mobile .menu-bar .bar {
    width: 18px;
  }
  .topnav.mobile .menu-bar .bar:first-child {
    transform: rotate(45deg) translate(6px, -1.5px);
  }
  .topnav.mobile .menu-bar .bar:nth-child(2) {
    opacity: 0;
  }
  .topnav.mobile .menu-bar .bar:nth-child(3) {
    transform: rotate(-45deg) translate(14px, -6.5px);
  }
  .topnav.mobile .topnav-link {
    display: block;
    padding-left: 30px;
    padding-top: 29.5px;
    padding-bottom: 29.5px;
    margin: 0;
  }
  .topnav.mobile .topnav-menu-group {
    border-top: 1px solid var(--border-green);
  }
  .topnav.mobile .topnav-menu-group:last-child {
    border-bottom: 1px solid var(--border-green);
  }
  .topnav.mobile .topnav-link.active {
    border-bottom: 0;
  }
  .topnav.mobile .topnav-logo {
    margin-bottom: 62px;
  }
  .input-data-box {
    display: block;
  }
  .input-data {
    border-right: 0;
    border-bottom: 1px solid var(--border-color);
  }
  .input-data:last-child {
    border-bottom: 0;
  }
  .calculator-effect__content {
    padding-left: 0;
  }
  .topnav-section .menu-bar {
    display: none;
  }
  .teams-section__gallery-content {
    height: 254px;
  }
  .product__full-image {
    margin-top: 50px;
  }
  .topnav {
    padding-top: 21px;
    padding-bottom: 21px;
  }
  .topnav-menu-link {
    padding: 0;
  }
  .topnav-menu-group.is-active .header__submenu {
    display: block;
    height: 100%;
    padding: 0;
    top: 114px;
    border-top: 0;
  }
  .header__submenu-link {
    padding-top: 20px;
    padding-bottom: 20px;
    max-width: none;
    border-bottom: 1px solid var(--border-green);
    padding-left: 30px;
    padding-right: 30px;
  }
  .topnav-menu-group {
    margin-right: 0;
  }
  .topnav-link {
    position: relative;
  }
  .hasSubmenu::after {
    content: "";
    background: no-repeat url(/img/CaretDownMobile.png);
    position: absolute;
    top: 36%;
    right: 22px;
    width: 24px;
    height: 24px;
  }
  .topnav.mobile .topnav-link.close-submenu {
    border-bottom: 1px solid var(--border-green);
    padding-left: 50px;
  }
  .close-submenu .hasSubmenu::after {
    transform: rotate(-180deg) scale(0.9);
    left: 20px;
    top: 35%;
  }
  .solutions__list-item {
    padding: 24px;
  }
}
@media (max-width: 767px) {
  .solutions-section .solutions__image-box {
    display: none;
  }
  .job-section__vacancies {
    margin-top: 40px;
  }
  .vacancy-box {
    flex-direction: column;
  }
  .vacancy-box__content {
    margin-bottom: 2.66667vh;
  }
  .job-list {
    display: block;
  }
  .job-list-item:not(:last-of-type) {
    border-right: 0;
    border-bottom: 1px solid var(--border-color);
  }
  .page-header {
    margin-top: 100px;
  }
  .product-header__content-box {
    left: 52px;
  }
  .product-services {
    display: block;
  }
  .calculator-boxes {
    display: flex;
    flex-direction: column;
    gap: 40px;
  }
  .calculator-box:first-child:after {
    content: none;
  }
  .calculator-output__content {
    display: block;
  }
  .calculator-output__image {
    display: none;
  }
  .teams-section__gallery-content {
    border-radius: 8px;
    width: 508px;
    height: 424px;
    left: 0;
    border: 0;
    overflow: hidden;
    display: block;
  }
  .teams-section__gallery-content .bio-content {
    padding: 156px 15px 24px 15px;
  }
  .bio {
    font-size: 1rem;
    margin-bottom: 10px;
    margin-top: 10px;
  }
  .bio-job-link {
    font-size: 1rem;
    line-height: 1;
  }
  .teams-section__gallery-item.active {
    box-shadow: none;
    width: 100%;
    height: 104px;
    margin-top: 24px;
    display: flex;
    gap: 25px;
    margin-left: 15px;
  }
  .teams-section__gallery-item.active .teams-section__image-caption {
    text-align: left;
    position: static;
    color: var(--primary);
    margin-top: 12px;
    width: auto;
  }
  .teams-section__gallery-item.active .teams-section__employee-position {
    width: 200px;
  }
  .teams-section__gallery-item.active .teams-section__employee-name {
    margin-left: 0;
  }
  .unset-overflow .swiper-pagination {
    display: none;
  }
  .teams-section__content {
    margin: 30px 0;
  }
  .teams-section__image-caption {
    background-color: transparent;
    padding: 10px;
  }
  .link-right {
    float: none;
    margin-right: 0;
  }
  .teams-section__image-caption {
    height: auto;
  }
  .calculator-effect__image {
    width: 76%;
    margin: 0 auto;
  }
  .product__image {
    width: 85%;
    margin: 0 auto;
  }
  .teams-section__gallery-item.active {
    margin-bottom: 340px;
  }
  .team-vacancies {
    margin-top: 30px;
  }
  .product__full-image {
    display: none;
  }
  .section {
    height: auto;
  }
  .s-box-row {
    min-height: 400px;
  }
  .solutions-section .projects-hidden-sm,
  .solutions-section .areas-hidden-sm {
    display: none;
  }
  .s-box .s-box__product .s-link:after {
    position: absolute;
  }
  .s-box__product {
    max-width: 280px;
  }
  .fade {
    transition: none;
  }
}
@media (max-width: 575px) {
  .header {
    margin-top: 60px;
  }
  .job-section__content .heading {
    max-width: 210px;
  }
  .solution__subtitle {
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: 1.2;
    letter-spacing: 0;
    margin-bottom: 16px;
  }
  .calculator .product-header {
    display: block;
  }
  .product-header__image {
    margin-top: 10px;
  }
  .product .product-header__content-box {
    width: 100%;
    padding-top: 30px;
  }
  .product-header__desc {
    max-width: 100%;
  }
  .teams-section__gallery-content {
    width: 92vw;
  }
  .solution__content {
    padding-top: 17px;
    padding-right: 15.733vw;
  }
  h1.title {
    font-size: 24px;
    font-style: normal;
    font-weight: 600;
    line-height: 2;
    letter-spacing: 0;
  }
  .highlighted-text {
    font-weight: 600;
    font-size: 58px;
    line-height: 1;
  }
  h2.subtitle {
    font-size: 20px;
    font-weight: 400;
    max-width: 285px;
  }
  h3.regular {
    font-size: 16px;
  }
  .h2-regular {
    font-size: 20px;
    line-height: 1.1;
  }
  .btn {
    max-width: 100%;
    width: 100%;
  }
  .solution__box {
    padding-left: 20px;
  }
  .teams-section__image-caption {
    position: static;
    color: var(--primary);
    margin-top: 12px;
  }
  .teams-section__employee-name {
    font-size: 18px;
  }
  .teams-section__employee-position {
    font-size: 14px;
    margin-bottom: 15px;
    font-weight: 400;
  }
  .modal-container {
    width: 100%;
  }
  .contacts {
    border-radius: 0;
    padding-left: 20px;
    padding-right: 20px;
  }
  .video-fullscreen,
  .loyout-bg,
  .donuts {
    display: none;
  }
  .main-btn {
    font-size: 18px;
    padding-top: 16px;
    padding-bottom: 16px;
  }
  .product-header {
    display: block;
  }
  .product-header__image {
    margin-top: 0;
  }
  .product-header__content-box {
    position: static;
    padding: 15px;
    left: 22px;
    width: 350px;
  }
  .calculator .product-header__content-box {
    margin: 0;
    padding: 50px 32px;
  }
  .calculator-effect {
    margin-top: 0;
  }
  .calculator-input,
  .calculator-output,
  .product-tasks,
  .product-benefits {
    margin-top: 40px;
  }
  .teams-section__gallery-item.active {
    position: relative;
    left: 9px;
  }
  .teams-section__gallery-item.active .teams-section__employee-position {
    width: 170px;
  }
  .team-header {
    margin-top: 20px;
  }
  .team-heading.white-text {
    font-size: 1.5rem;
    line-height: 1.1;
  }
  .team-link {
    font-size: 1rem;
  }
  .team__areas {
    margin-top: 40px;
    padding: 75px 0;
  }
  .team__areas-title {
    font-size: 20px;
    line-height: 1.1;
  }
  .team__areas-box {
    margin-top: 48px;
  }
  .team-values {
    margin-top: 60px;
  }
  .team-values .heading {
    margin-bottom: 24px;
  }
  .team-values__grid {
    gap: 14px;
  }
  .team-values__image {
    margin-bottom: 24px;
  }
  .team-values__text {
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 1.5;
    letter-spacing: 0;
  }
  .team-values__subtitle {
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: 1.1;
    letter-spacing: 0;
  }
  .team-values__content:first-child {
    margin-top: 32px;
  }
  .team-heading {
    font-size: 1.5rem;
    font-style: normal;
    font-weight: 500;
    line-height: 1.1;
    letter-spacing: 0;
  }
  .footer__navbar {
    margin-top: 60px;
  }
  .footer__logo {
    margin-bottom: 24px;
  }
  .footer__bottom-content {
    margin-top: 40px;
  }
  .footer__navbar-link {
    display: block;
  }
  .footer__logo-box {
    margin-top: 32px;
  }
  .solution {
    margin-bottom: -18px;
  }
  .solution__content {
    margin-bottom: 32px;
  }
  .teams-section__gallery-content {
    height: 480px;
  }
  .solutions__list-item {
    padding-top: 32px;
    padding-bottom: 32px;
  }
  .solutions__list-item:last-child {
    padding-bottom: 40px;
  }
  .calculator .heading {
    font-size: 32px;
  }
  .product .subtitle,
  .calculator .subtitle {
    font-size: 20px;
  }
  .product__title {
    font-size: 22px;
  }
  .solution-box {
    padding-left: 15px;
    padding-right: 15px;
  }
  .solution-box__content {
    padding-top: 24px;
  }
  .solution-box__name {
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 1.2;
    letter-spacing: 0;
    margin-bottom: 12px;
  }
  .solution-box__link {
    padding-right: 0;
  }
  .solution-box__header {
    padding-bottom: 40px;
  }
  .solution__gallery-item {
    max-width: 345px;
  }
  .solution__gallery-item {
    width: auto;
  }
  .logo {
    max-width: 238px;
  }
  .modal-mask {
    left: 2%;
    width: 96%;
  }
  .topnav.mobile .menu-btn-placeholder {
    margin-left: 10px;
    margin-right: 10px;
  }
}
@media (max-width: 450px) {
  .team-vacancies {
    background: no-repeat url(/img/pattern-sm.jpg);
    background-position: center;
    background-size: 100%;
  }
}
.dark-gradient {
  background: radial-gradient(
    100% 106.32% at 100% 100%,
    #5e80f9 0%,
    #3a69bd 60.42%
  );
  box-shadow: 0 84.6546px 84.6546px rgba(0, 0, 0, 0.00333333),
    0 77.3985px 77.3985px rgba(0, 0, 0, 0.0133333),
    0 65.305px 65.305px rgba(0, 0, 0, 0.03),
    0 48.374px 48.374px rgba(0, 0, 0, 0.0533333),
    0 26.6057px 26.6057px rgba(0, 0, 0, 0.0833333), 0 0 0 rgba(0, 0, 0, 0.12);
  border-radius: 8px;
}
.light-gradient {
  background: #7de0ff;
  box-shadow: 0 84.6546px 84.6546px rgba(0, 0, 0, 0.00333333),
    0 77.3985px 77.3985px rgba(0, 0, 0, 0.0133333),
    0 65.305px 65.305px rgba(0, 0, 0, 0.03),
    0 48.374px 48.374px rgba(0, 0, 0, 0.0533333),
    0 26.6057px 26.6057px rgba(0, 0, 0, 0.0833333), 0 0 0 rgba(0, 0, 0, 0.12);
  border-radius: 8px;
}
