/*#region Imports*/
@font-face {
  font-family: "IBM Plex Sans";
  src: url(/fonts/IBMPlexSans-ExtraLight.ttf?80e51e08c66239d80b58b96c3d787ed3);
  font-weight: 200;
  font-display: swap;
}
@font-face {
  font-family: "IBM Plex Sans";
  src: url(/fonts/IBMPlexSans-Light.ttf?f6a1d8cf71c931e0b2aa676809031231);
  font-weight: 300;
  font-display: swap;
}
@font-face {
  font-family: "IBM Plex Sans";
  src: url(/fonts/IBMPlexSans-Regular.ttf?d77342fdcbcb6b3ce1b56bfe612087e8);
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: "IBM Plex Sans";
  src: url(/fonts/IBMPlexSans-Medium.ttf?56fb541cbbc5462f1c330a164cc6eaca);
  font-weight: 500;
  font-display: swap;
}
@font-face {
  font-family: "IBM Plex Sans";
  src: url(/fonts/IBMPlexSans-SemiBold.ttf?f2e690b59fb90d236c08def8113f998a);
  font-weight: 600;
  font-display: swap;
}
@font-face {
  font-family: "IBM Plex Sans";
  src: url(/fonts/IBMPlexSans-Bold.ttf?e933eba4e2fcc3d71b31db66373519b2);
  font-weight: 700;
  font-display: swap;
}
body {
  color: white;
  background-color: #373737;
  font-family: IBM Plex Sans, sans-serif;
  font-weight: 400;
  margin: 0;
  box-sizing: border-box;
}

.overlay {
  display: none;
  position: fixed;
  z-index: 9000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  animation: overlay-appear-animation 300ms linear;
}
.overlay_visible {
  display: block;
}

.modal {
  display: none;
  position: fixed !important;
  z-index: 9000;
  background: rgba(255, 142, 94, 0.7) !important;
  box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.1);
  border-radius: 12px;
  padding: 1px !important;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  max-width: 900px;
  width: 80%;
  height: -moz-fit-content;
  height: fit-content;
  max-height: 90%;
  min-height: 250px;
  overflow-y: auto !important;
  overflow-x: hidden !important;
  animation: modal-appear-animation 300ms linear;
}
.modal_form {
  width: initial;
  height: initial;
  min-height: unset;
}
@media (max-width: 715px) {
  .modal_form {
    width: 80%;
  }
}
.modal_visible {
  display: block;
}
.modal__inner-container {
  border-radius: 12px;
  background: #383838;
}
.modal__form-close {
  min-width: unset !important;
  width: 70%;
}
.modal__close {
  position: absolute;
  width: 36px;
  height: 36px;
  right: 12px;
  top: 12px;
  cursor: pointer;
  transition: background 150ms ease-in-out;
  background-image: url(/images/i-close_cs.svg?b63887e9f166be439893a9c065d48d21);
  background-size: contain;
}
.modal__close:hover {
  background-image: url(/images/i-close_cs_hover.svg?53985e186a33b244e2038440a8d536ca);
}
.modal__content {
  padding: 30px 20px;
}
@media (max-width: 1008px) {
  .modal__content {
    padding: 30px 15px;
  }
}
.modal__text {
  text-align: justify;
  font-size: 17px;
  text-indent: 25px;
  margin: 10px 0;
}
@media (max-width: 500px) {
  .modal__text {
    font-size: 14px;
  }
}
@media (max-width: 350px) {
  .modal__text {
    font-size: 12px;
    margin-top: 0;
  }
}
.modal__text_heading {
  margin-top: 36px;
}
.modal__text_form {
  text-align: center;
  color: white;
  text-indent: unset;
  font-size: 24px;
  font-weight: 400;
}
@media (max-width: 1008px) {
  .modal__text_form {
    font-size: 20px !important;
  }
}
.modal__text_form-error {
  margin-top: 0;
}
.modal__text_form-heading {
  margin: 0;
  color: white;
  text-align: center;
  font-size: 32px;
  font-weight: 400;
  text-transform: uppercase;
}
.modal__text_link {
  color: white;
  text-decoration: none;
}

@keyframes overlay-appear-animation {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes modal-appear-animation {
  from {
    opacity: 0;
    transform: translate(-50%, -100%);
  }
  to {
    opacity: 1;
    transform: translate(-50%, -50%);
  }
}
main {
  overflow: hidden;
  position: relative;
}

.flex-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.flex-container_column {
  flex-direction: column;
}
.flex-container_row {
  flex-direction: row;
}
.flex-container_al-center {
  align-items: center;
}
.flex-container_al-stretch {
  align-items: stretch;
}
.flex-container_al-start {
  align-items: start;
}
.flex-container_al-end {
  align-items: end;
}
.flex-container_j-start {
  justify-content: start;
}
.flex-container_j-end {
  justify-content: end;
}
.flex-container_j-center {
  justify-content: center;
}

.btn-basic {
  border-radius: 12px;
  text-decoration: none;
  white-space: nowrap;
  font-size: 20px;
  padding: 0;
  min-width: 304px;
  min-height: 74px;
  font-weight: 600;
  overflow: hidden;
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center;
  gap: 4px;
  transition: all 150ms ease-in-out;
}
@media (max-width: 1008px) {
  .btn-basic {
    font-size: 16px;
  }
}
.btn-basic:hover {
  cursor: pointer;
}

.top-bar {
  position: fixed;
  z-index: 100;
  box-sizing: border-box;
  width: 100%;
  background: rgba(255, 255, 255, 0.03);
  box-shadow: 0 8px 10px rgba(0, 0, 0, 0.11);
  border-bottom: unset;
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
}
@media (max-width: 715px) {
  .top-bar {
    height: 74px;
  }
}

.actions-container {
  gap: 36px;
}
@media (max-width: 1008px) {
  .actions-container {
    gap: 16px;
  }
}

.logo {
  background: url(/images/horizontal-white-logo.svg?0106e5738aaddc06a7f9fc5bf9442ed9) 50% no-repeat;
  background-size: contain;
  display: block;
  height: 50px;
  width: 304px;
  transition: all 0.2s;
}
.logo:hover {
  background: url(/images/cs-logo-hover.svg?ad80e17b99c7e20736de2787ef457c79) 50% no-repeat;
  background-size: contain;
}
@media (max-width: 715px) {
  .logo {
    height: 28px;
    width: 156px;
  }
}

.telephone {
  gap: 8px;
  align-items: center;
}
.telephone:hover .telephone__text {
  color: #FFA756;
}
.telephone:hover .telephone__icon {
  background: url(/images/cs-i-phone-hover.svg?f9dbc04880b2c74f4580ac2e37709a66) 50% no-repeat;
}
.telephone__icon {
  background: url(/images/i-phone-call.svg?7131ad2eccb7609495a57eda56209ff2) 50% no-repeat;
  height: 28px;
  width: 28px;
  transition: all 0.2s;
}
.telephone__text {
  text-align: center;
  text-decoration: none;
  font-weight: 400;
  font-size: 20px;
  color: white;
  transition: all 0.2s;
}
@media (max-width: 1008px) {
  .telephone__text {
    font-size: 12px;
  }
}

.send-btn {
  min-width: 304px;
  min-height: 50px;
  line-height: 26px;
  font-weight: 400;
}
@media (max-width: 1008px) {
  .send-btn {
    min-width: 164px;
    min-height: 42px;
    line-height: 15.6px;
    font-size: 12px;
  }
}
@media (max-width: 715px) {
  .send-btn {
    display: none;
  }
}

.send-btn-mobile-full {
  line-height: 26px;
  font-weight: 400;
  display: none;
  width: 100%;
  height: 100%;
  min-height: unset;
}
.send-btn-mobile-full_visible {
  display: flex;
}
.send-btn-mobile-full.--active {
  display: flex;
  position: absolute;
  top: 11px;
  left: 11px;
  width: calc(100% - 22px);
  height: calc(100% - 22px);
}

.form {
  gap: 32px;
}
@media (max-width: 715px) {
  .form {
    gap: 40px;
  }
}

.form-container {
  row-gap: 16px;
  width: 50%;
}
@media (min-width: 716px) and (max-width: 1008px) {
  .form-container {
    width: 100%;
  }
}
@media (max-width: 715px) {
  .form-container {
    width: 100%;
  }
}
.form-container__input-group {
  position: relative;
  width: 100%;
  background: #373737;
  border-radius: 12px;
  border: 1px rgba(255, 167, 86, 0.7) solid;
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
}
.form-container__input-group_invalid {
  border: 0.32px #FF5F5F solid !important;
}
.form-container__input-group_focused > .form-container__input-label {
  transform: translateY(-60%);
  font-size: 16px;
  color: gray;
}
@media (min-width: 716px) and (max-width: 1008px) {
  .form-container__input-group_focused > .form-container__input-label {
    font-size: 14px;
  }
}
@media (max-width: 715px) {
  .form-container__input-group_focused > .form-container__input-label {
    font-size: 14px;
  }
}
.form-container__input-group_attach {
  border: 1px rgba(255, 167, 86, 0.7) solid;
}
.form-container__input-label {
  position: absolute;
  left: 54px;
  top: 28px;
  color: white;
  background-color: transparent;
  z-index: 10;
  transition: transform 150ms ease-out, font-size 150ms ease-out, color 150ms ease-out;
  font-size: 20px;
  font-weight: 400;
}
@media (min-width: 716px) and (max-width: 1008px) {
  .form-container__input-label {
    top: 28px;
    font-size: 18px;
    left: 54px;
  }
}
@media (max-width: 715px) {
  .form-container__input-label {
    top: 28px;
    font-size: 18px;
    left: 54px;
  }
}
.form-container__attach-label {
  display: block;
  margin: 0;
  width: calc(100% - 54px);
  padding: 28px 0 28px 54px;
  cursor: pointer;
  background: transparent;
  border-radius: 12px;
  color: white;
  font-size: 20px;
  font-weight: 400;
  transition: color 0.2s ease-in-out, transform 0.2s ease-in-out;
}
@media (min-width: 716px) and (max-width: 1008px) {
  .form-container__attach-label {
    width: calc(100% - 54px);
    padding: 28px 0 28px 54px;
  }
}
@media (max-width: 715px) {
  .form-container__attach-label {
    width: calc(100% - 54px);
    padding: 28px 0 28px 54px;
  }
}
.form-container__input {
  position: relative;
  width: calc(100% - 54px);
  background: transparent;
  outline: 0;
  border: 0;
  border-radius: 12px;
  padding: 28px 0 28px 54px;
  color: white;
  -moz-appearance: none;
       appearance: none;
  -webkit-appearance: none;
  font-size: 20px;
  font-weight: 400;
  transition: color 0.2s ease-in-out, transform 0.2s ease-in-out;
}
@media (min-width: 716px) and (max-width: 1008px) {
  .form-container__input {
    width: calc(100% - 54px);
    padding: 28px 0 28px 54px;
    font-size: 18px;
  }
}
@media (max-width: 715px) {
  .form-container__input {
    width: calc(100% - 54px);
    padding: 28px 0 28px 54px;
    font-size: 18px;
  }
}
.form-container__input_focused {
  transform: translateY(12%);
}
.form-container__input_invalid {
  color: #FF9A9A;
}
.form-container__input_attach {
  display: none;
}
.form-container__input_attach::file-selector-button {
  display: none;
}
.form-container__input_attach::-webkit-file-upload-button {
  display: none;
}
.form-container__text-error-popup {
  position: absolute;
  display: none;
  margin: 0;
  padding: 10px 12px;
  border-radius: 8px;
  background-color: white;
  right: 10px;
  max-width: 70%;
  color: black;
  z-index: 80;
  font-size: 14px;
  box-shadow: 0 0 10px black;
}
.form-container__text-error-popup_checkbox {
  right: unset;
  left: 10px;
}
.form-container__checkbox-wrapper {
  position: relative;
  width: 100%;
  gap: 18px;
  margin-bottom: 12px;
  margin-top: 12px;
  flex-wrap: nowrap;
}
.form-container__checkbox {
  position: absolute;
  z-index: -1;
  opacity: 0;
}
.form-container__custom-checkbox {
  content: "";
  display: inline-block;
  flex-shrink: 0;
  flex-grow: 0;
  width: 32px;
  height: 32px;
  border-radius: 12px;
  transition: background 0.1s ease-in-out;
  background: rgba(46, 47, 53, 0.23) url(/images/i-unchecked_cs.svg?c23472abfa3b286598bbd04af152f871);
  cursor: pointer;
}
.form-container__custom-checkbox_checked {
  background: rgba(46, 47, 53, 0.23) url(/images/i-checked_cs.svg?d3bbb9e1645d7391ca4d83cd597d4173);
}
.form-container__checkbox-label {
  margin: 0;
  color: white;
  font-size: 20px;
  font-weight: 400;
  display: block;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
@media (max-width: 1008px) {
  .form-container__checkbox-label {
    font-size: 16px;
  }
}
.form-container__checkbox-label_link {
  color: #FFA756;
  text-decoration: underline;
}
.form-container__submit-btn {
  min-height: 82px;
  width: 100%;
}
@media (min-width: 716px) and (max-width: 1008px) {
  .form-container__submit-btn {
    min-height: 82px;
  }
}
@media (max-width: 715px) {
  .form-container__submit-btn {
    min-height: 77px;
  }
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
textarea:-webkit-autofill,
textarea:-webkit-autofill:hover,
textarea:-webkit-autofill:focus,
select:-webkit-autofill,
select:-webkit-autofill:hover,
select:-webkit-autofill:focus {
  -webkit-text-fill-color: white;
  -webkit-box-shadow: 0 0 0 1000px rgba(255, 255, 255, 0);
  -webkit-transition-property: background-color, box-shadow;
  transition-property: background-color, box-shadow;
  transition-timing-function: ease;
  transition-delay: 9999s;
  transition-duration: 9999s, 0.25s;
  caret-color: white;
}

.footer {
  gap: 32px;
  padding-bottom: 60px;
}
@media (min-width: 716px) and (max-width: 1008px) {
  .footer {
    padding-bottom: 42px;
  }
}
@media (max-width: 715px) {
  .footer {
    padding-bottom: 38px;
  }
}
.footer__wrapper {
  gap: 8px;
}
.footer__text {
  margin: 0;
  color: white;
  font-size: 24px;
}
.footer__text_header {
  font-weight: 400;
}
@media (max-width: 715px) {
  .footer__text_regular {
    font-size: 16px;
  }
}
.footer__text_link {
  text-decoration: underline;
  color: inherit;
}
.footer .socials {
  gap: 8px;
}
.footer__socials-icon .sbg {
  transition: 200ms;
}
.footer__socials-icon.vk:hover .sbg {
  fill: #4388ED;
}

.pos-rel {
  position: relative;
}

.swiper {
  min-width: unset;
}
@media (max-width: 715px) {
  .swiper {
    min-width: initial;
    width: 100%;
    padding: 2px !important;
  }
}
.swiper-wrapper {
  justify-content: space-between;
  min-width: 100%;
  position: relative;
}
@media (max-width: 715px) {
  .swiper-wrapper {
    margin-bottom: 28px;
  }
}
.swiper-pagination {
  bottom: 0 !important;
  display: none;
}
@media (max-width: 715px) {
  .swiper-pagination {
    display: initial;
  }
}
.swiper-pagination-bullet {
  transition: width 0.1s ease-in-out, background 0.1s ease-in-out;
  border: 1px #FFA757 solid !important;
  border-radius: 12px !important;
  background: transparent !important;
  opacity: 1 !important;
  width: var(--swiper-pagination-bullet-width, var(--swiper-pagination-bullet-size, 20px)) !important;
  height: var(--swiper-pagination-bullet-height, var(--swiper-pagination-bullet-size, 12px)) !important;
}
.swiper-pagination-bullet-active {
  width: var(--swiper-pagination-bullet-width, var(--swiper-pagination-bullet-size, 30px)) !important;
  background: #FFA757 !important;
}

/*#endregion */
/*#region Utils*/
.page-container {
  padding-left: 32px;
  padding-right: 32px;
  max-width: 1088px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 715px) {
  .page-container {
    padding-left: 16px;
    padding-right: 16px;
  }
}
.page-container_inner {
  gap: 64px;
}
@media (max-width: 715px) {
  .page-container_inner {
    gap: 28px;
  }
}
.page-container_top-bar {
  padding-top: 23px;
  padding-bottom: 23px;
}
@media (max-width: 715px) {
  .page-container_top-bar {
    padding-top: 11px;
    padding-bottom: 11px;
    height: calc(100% - 22px);
  }
}
.page-container_title {
  padding-top: 212px;
}
@media (min-width: 716px) and (max-width: 1008px) {
  .page-container_title {
    padding-top: 174px;
  }
}
@media (max-width: 715px) {
  .page-container_title {
    padding-top: 110px;
  }
}
.page-container_unified {
  padding-top: 184px;
}
@media (min-width: 716px) and (max-width: 1008px) {
  .page-container_unified {
    padding-top: 98px;
  }
}
@media (max-width: 715px) {
  .page-container_unified {
    padding-top: 120px;
  }
}
@media (max-width: 715px) {
  .page-container_company {
    padding-bottom: 40px;
  }
}
.page-container_growth {
  padding-top: 184px;
}
@media (min-width: 716px) and (max-width: 1008px) {
  .page-container_growth {
    padding-top: 98px;
  }
}
@media (max-width: 715px) {
  .page-container_growth {
    padding-top: 32px;
  }
}
.page-container_footer {
  padding-top: 64px;
}
@media (max-width: 715px) {
  .page-container_footer {
    padding-top: 32px;
  }
}

.btn_disabled {
  background: #373737;
  border: 1px #DC8F58 solid;
  cursor: not-allowed !important;
  color: #A45F2E;
}
.btn_primary {
  border: none;
  background: #FFA756;
  color: #373737;
}
.btn_primary:hover {
  background: #FF9D56;
}
.btn_primary:active {
  background: #FF8E5E;
  color: white;
}
.btn_secondary {
  background: rgba(255, 167, 86, 0.2);
  border: 1px #DC8F58 solid;
  color: white;
  -webkit-backdrop-filter: blur(50px);
          backdrop-filter: blur(50px);
}
.btn_secondary:hover {
  background: rgba(255, 157, 86, 0.5);
  border: 1px #FF9C55 solid;
}
.btn_secondary:active {
  background: rgba(255, 142, 94, 0.8);
  border: 1px #FFC85C solid;
}

.section-text {
  margin: 0;
}
.section-text__header {
  font-size: 48px;
  width: -moz-fit-content;
  width: fit-content;
}
@media (min-width: 716px) and (max-width: 1008px) {
  .section-text__header {
    font-size: 40px;
  }
}
@media (max-width: 715px) {
  .section-text__header {
    font-size: 24px;
  }
}
.section-text__subheader {
  font-size: 32px;
}
@media (min-width: 716px) and (max-width: 1008px) {
  .section-text__subheader {
    font-size: 24px;
  }
}
@media (max-width: 715px) {
  .section-text__subheader {
    font-size: 20px;
  }
}
.section-text__regular {
  font-size: 32px;
}
@media (min-width: 716px) and (max-width: 1008px) {
  .section-text__regular {
    font-size: 24px;
  }
}
@media (max-width: 715px) {
  .section-text__regular {
    font-size: 16px;
  }
}
.section-text__small {
  font-size: 24px;
}
@media (max-width: 1008px) {
  .section-text__small {
    font-size: 16px;
  }
}
.section-text_uppercase {
  text-transform: uppercase;
}
.section-text_underlined {
  text-decoration: underline;
}
.section-text_not-wrap {
  white-space: nowrap;
}
.section-text_important-yellow {
  color: #FFA756;
  font-weight: 600;
}
.section-text_important-white {
  color: white;
  font-weight: 600;
}

.card {
  position: relative;
  background: #373737;
  border-radius: 12px;
  overflow: hidden;
  border: 1px rgba(255, 167, 86, 0.6980392157) solid;
  padding: 56px 48px;
}
.card_small-wrapper {
  padding: 48px;
}
@media (max-width: 1008px) {
  .card_small-wrapper {
    padding: 32px;
  }
}
@media (max-width: 715px) {
  .card_disable-on-mobile {
    all: unset !important;
  }
}
@media (max-width: 715px) {
  .card_hide-on-mobile {
    display: none;
  }
}
.card_bg-round {
  position: absolute;
  width: 100px;
  height: 100px;
  border-radius: 999px;
  background: #FF8E5E;
  filter: blur(50px);
}
@media (max-width: 715px) {
  .card_bg-round {
    display: none;
  }
}

.s-custom__slide {
  position: absolute !important;
}
@media (max-width: 715px) {
  .s-custom__slide {
    position: relative !important;
    display: flex;
    align-items: center;
  }
}
.s-custom__inner-image {
  width: 100%;
  height: auto;
}

/*#endregion */
.heading {
  gap: 28px;
}
.heading__top-text-container {
  gap: 28px;
  padding-bottom: 36px;
}
@media (max-width: 715px) {
  .heading__top-text-container {
    padding-bottom: 0;
  }
}
@media (max-width: 715px) {
  .heading__btn-container {
    justify-content: space-between;
    gap: 12px;
    flex-wrap: nowrap;
  }
}
.heading__pre-main {
  margin: 0;
  color: white;
  font-weight: 600;
  font-size: 24px;
  text-transform: uppercase;
}
@media (min-width: 716px) and (max-width: 1008px) {
  .heading__pre-main {
    font-size: 20px;
  }
}
@media (max-width: 715px) {
  .heading__pre-main {
    font-size: 16px;
  }
}
.heading__main {
  color: white;
  font-size: 48px;
  font-weight: 400;
  text-transform: uppercase;
  word-wrap: break-word;
  margin: 0;
}
@media (max-width: 1008px) {
  .heading__main {
    font-size: 40px;
  }
}
@media (max-width: 715px) {
  .heading__main {
    font-size: 24px;
  }
}
.heading__main_important {
  color: #FFA756;
  font-weight: 600;
}
.heading__send-btn {
  min-width: 528px;
  min-height: 74px;
}
@media (min-width: 716px) and (max-width: 1008px) {
  .heading__send-btn {
    min-width: 433px;
    min-height: 69px;
  }
}
@media (max-width: 715px) {
  .heading__send-btn {
    min-width: 156px;
    min-height: 69px;
    flex: 1;
  }
}
.heading__watch-jobs-btn {
  flex: 1;
  min-width: 156px;
  min-height: 69px;
}
@media (min-width: 716px) {
  .heading__watch-jobs-btn {
    flex: initial;
    display: none;
  }
}
.heading__label {
  padding-top: 4px;
  font-size: 32px;
  font-weight: 400;
  word-wrap: break-word;
  margin: 0;
}
@media (min-width: 716px) and (max-width: 1008px) {
  .heading__label {
    font-size: 24px;
  }
}
@media (max-width: 715px) {
  .heading__label {
    font-size: 16px;
  }
}
.heading__label_important {
  font-weight: 600;
  color: #FFA756;
}
@media (min-width: 716px) {
  .heading__label_mobile {
    display: none;
  }
}
.heading__label_uppercase {
  text-transform: uppercase;
}

.card_company {
  width: calc(56% - 96px);
}
@media (max-width: 1008px) {
  .card_company {
    width: calc(50% - 96px);
  }
}
.card_company .card_bg-round_company-left {
  top: -50px;
  left: -50px;
}
.card_company .card_bg-round_company-left-top {
  top: 20px;
  right: -30px;
}
.card_company .card_bg-round_company-bottom {
  bottom: -50px;
  right: 120px;
}

.s-company__slide {
  display: inline !important;
  height: 230px !important;
  max-width: 328px !important;
}
@media (min-width: 716px) {
  .s-company {
    display: none;
  }
}

.desc-wrapper__header {
  z-index: 2;
}
.desc-wrapper__top {
  height: 424px;
}
@media (min-width: 716px) and (max-width: 1008px) {
  .desc-wrapper__top {
    height: 331px;
  }
}
@media (max-width: 715px) {
  .desc-wrapper__top {
    height: unset;
    margin-bottom: 70px;
  }
}
.desc-wrapper__left {
  gap: 32px;
  width: 50%;
  height: -moz-fit-content;
  height: fit-content;
  justify-content: flex-start;
  z-index: 2;
}
@media (max-width: 715px) {
  .desc-wrapper__left {
    width: 100%;
  }
}
.desc-wrapper__left-text-block {
  gap: 16px;
}
.desc-wrapper__card {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 40%;
  z-index: 2;
}
.desc-wrapper__bottom {
  gap: 16px;
}
.desc-wrapper__bottom-text {
  flex-basis: 30%;
}
@media (max-width: 715px) {
  .desc-wrapper__bottom-text {
    flex-basis: 44%;
  }
}
.desc-wrapper__bottom-text_big {
  flex-basis: 30%;
}
@media (max-width: 715px) {
  .desc-wrapper__bottom-text_big {
    flex-basis: 100%;
  }
}

.s-description {
  top: -140px;
  right: 0;
  width: 640px;
  position: absolute !important;
}
@media (min-width: 716px) and (max-width: 1008px) {
  .s-description {
    width: 395px;
    top: -80px;
  }
}
@media (max-width: 715px) {
  .s-description {
    width: initial;
    height: initial;
    position: initial !important;
  }
}
.s-description__content-container {
  justify-content: space-between;
  height: 90% !important;
  margin-top: 20px;
  min-width: 100%;
}
@media (max-width: 715px) {
  .s-description__content-container {
    margin-bottom: 28px;
  }
}
.s-description__slide {
  row-gap: 16px;
}
.s-description .swiper-pagination {
  display: none;
}
@media (max-width: 715px) {
  .s-description .swiper-pagination {
    display: initial;
  }
}
.s-description__nav-btn {
  left: unset !important;
  top: 28px !important;
  bottom: unset !important;
  width: 80px !important;
  height: 80px !important;
  border-radius: 24px !important;
}
@media (max-width: 715px) {
  .s-description__nav-btn {
    display: none !important;
  }
}
.s-description__nav-btn::after {
  font-size: 28px !important;
  font-weight: 900 !important;
  text-transform: uppercase !important;
  text-align: center !important;
}
.s-description__nav-btn_prev {
  right: 120px !important;
  background: rgba(55, 55, 55, 0.5) !important;
  border: 1px rgba(255, 167, 86, 0.7) solid !important;
  color: #FFA756 !important;
}
.s-description__nav-btn_next {
  right: 20px !important;
  background: rgba(55, 55, 55, 0.8) !important;
  border: 1px rgba(255, 167, 86, 0.7) solid !important;
  color: #FFA756 !important;
}

.card_description .card_bg-round {
  bottom: -20px;
  right: -20px;
}

.growth-wrapper__text {
  gap: 16px;
}
@media (min-width: 716px) {
  .growth-wrapper__text {
    width: 48%;
  }
}

.another-job {
  gap: 64px;
  max-width: 870px;
}
@media (max-width: 715px) {
  .another-job {
    gap: 32px;
    max-width: unset;
  }
}
.another-job__btn-container {
  gap: 32px;
}
@media (min-width: 716px) and (max-width: 1008px) {
  .another-job__btn-container {
    gap: 16px;
  }
}
@media (max-width: 715px) {
  .another-job__btn-container {
    flex-direction: column;
    justify-content: stretch;
    gap: 16px;
  }
}
.another-job__btn {
  flex: 1;
  min-height: 90px;
}
@media (max-width: 715px) {
  .another-job__btn {
    min-width: unset;
    min-height: 85px;
  }
}

.fake-border {
  width: 100%;
  height: 100%;
  margin: 0;
  position: absolute;
  z-index: -10;
  border-radius: 12px;
  background: transparent;
}
.fake-border::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: 12px;
  padding: 1px;
  background: rgba(255, 142, 94, 0.7);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
}
.fake-border_title {
  bottom: -40px;
  right: -10px;
  width: 639px;
  height: 473px;
}
.fake-border_title::before {
  background: linear-gradient(90deg, rgba(255, 167, 86, 0.01), rgba(255, 142, 94, 0.7));
}
@media (max-width: 1008px) {
  .fake-border_title {
    display: none;
  }
}
@media (max-width: 715px) {
  .fake-border_company {
    width: 328px;
    height: 230px;
  }
}
@media (min-width: 716px) {
  .fake-border_company-mobile {
    display: none;
  }
}
.fake-border_company-right {
  bottom: -20px;
  right: -20px;
}
@media (max-width: 715px) {
  .fake-border_company-right {
    bottom: 25px;
    right: 2px;
  }
}
.fake-border_company-left {
  bottom: -40px;
  left: -40%;
}
@media (min-width: 716px) and (max-width: 1008px) {
  .fake-border_company-left {
    left: -20%;
  }
}
@media (max-width: 715px) {
  .fake-border_company-left {
    bottom: 6px;
    left: -36px;
  }
}
.fake-border_description {
  top: -140px;
  right: 70px;
  width: 592px;
  height: 360px;
}
@media (min-width: 716px) and (max-width: 1008px) {
  .fake-border_description {
    width: 360px;
    height: 230px;
    top: -76px;
    right: 50px;
  }
}
@media (max-width: 715px) {
  .fake-border_description {
    display: none;
  }
}
.fake-border_growth-right {
  top: 25px;
  right: -8px;
}
.fake-border_growth-left {
  bottom: -65px;
  left: -40px;
}

.bg-image {
  position: absolute;
  z-index: -5;
}
.bg-image_title {
  bottom: 0;
  right: 0;
}
@media (min-width: 716px) and (max-width: 1008px) {
  .bg-image_title {
    bottom: -10px;
  }
}
@media (max-width: 715px) {
  .bg-image_title {
    display: none;
  }
  .bg-image_title-img {
    display: none;
    visibility: hidden;
  }
}
.bg-image_company {
  bottom: -40px;
  right: 0;
}
@media (min-width: 716px) and (max-width: 1008px) {
  .bg-image_company {
    bottom: -60px;
  }
}
@media (max-width: 715px) {
  .bg-image_company {
    display: none;
  }
  .bg-image_company-img {
    display: none;
    visibility: hidden;
  }
}
.bg-image_growth {
  bottom: -20px;
  right: 0;
}
@media (min-width: 716px) and (max-width: 1008px) {
  .bg-image_growth {
    top: 0;
    bottom: 0;
    margin-top: auto;
    margin-bottom: auto;
  }
}
@media (max-width: 715px) {
  .bg-image_growth {
    display: none;
  }
}

.bg-figure {
  z-index: -15;
  position: absolute;
}
@media (min-width: 716px) and (max-width: 1008px) {
  .bg-figure {
    scale: 0.8;
  }
}
@media (max-width: 715px) {
  .bg-figure {
    scale: 0.5;
  }
}
.bg-figure_title-right {
  top: 40%;
  right: -30%;
}
@media (min-width: 716px) and (max-width: 1008px) {
  .bg-figure_title-right {
    top: 30px;
    right: -50%;
  }
}
@media (max-width: 715px) {
  .bg-figure_title-right {
    top: -100px;
    right: -370px;
  }
}
.bg-figure_title-left {
  bottom: -513px;
  left: -380px;
}
@media (min-width: 716px) and (max-width: 1008px) {
  .bg-figure_title-left {
    bottom: -555px;
    left: -327px;
  }
}
@media (max-width: 715px) {
  .bg-figure_title-left {
    bottom: -451px;
    left: -298px;
  }
}
.bg-figure_description {
  left: -665px;
  bottom: -387px;
}
@media (min-width: 716px) and (max-width: 1008px) {
  .bg-figure_description {
    left: -587px;
    bottom: -314px;
  }
}
@media (max-width: 715px) {
  .bg-figure_description {
    left: -438px;
    bottom: -24px;
  }
}
.bg-figure_growth {
  top: -122px;
  right: -505px;
}
@media (min-width: 716px) and (max-width: 1008px) {
  .bg-figure_growth {
    top: -162px;
    right: -429px;
  }
}
@media (max-width: 715px) {
  .bg-figure_growth {
    top: -292px;
    right: -322px;
  }
}
.bg-figure_form {
  top: 266px;
  right: -246px;
}
@media (min-width: 716px) and (max-width: 1008px) {
  .bg-figure_form {
    top: 32px;
    right: -171px;
  }
}
@media (max-width: 715px) {
  .bg-figure_form {
    top: 152px;
    right: -315px;
  }
}
.bg-figure_footer {
  bottom: 0;
  right: -342px;
}
@media (min-width: 716px) and (max-width: 1008px) {
  .bg-figure_footer {
    right: -42px;
    bottom: -65px;
  }
}
@media (max-width: 715px) {
  .bg-figure_footer {
    right: -94px;
    bottom: -130px;
  }
}

.bg-round {
  z-index: -17;
  position: absolute;
  width: 100px;
  height: 100px;
  border-radius: 999px;
  filter: blur(50px);
  animation-iteration-count: infinite;
}
@media (max-width: 715px) {
  .bg-round {
    animation-delay: unset;
    animation-name: unset !important;
    animation-duration: unset !important;
    animation-iteration-count: unset;
    opacity: 0.4;
    background-color: #f84;
    filter: none;
    scale: 0.5;
    box-shadow: 0 0 100px 100px #f84;
  }
}
.bg-round_title-right-top {
  width: 400px;
  height: 300px;
  right: -200px;
  top: 360px;
  animation-name: round-animation-17;
  animation-duration: 14s;
}
@media (max-width: 715px) {
  .bg-round_title-right-top {
    top: 50px;
  }
}
.bg-round_title-right-bottom {
  bottom: -150px;
  right: -50px;
  animation-name: round-animation-2;
  animation-duration: 25s;
}
@media (max-width: 715px) {
  .bg-round_title-right-bottom {
    bottom: 100px;
  }
}
.bg-round_title-left {
  width: 300px;
  height: 400px;
  left: -250px;
  bottom: -360px;
  animation-name: round-animation-5;
  animation-duration: 24s;
  animation-delay: 1s;
}
.bg-round_description {
  width: 500px;
  height: 400px;
  left: -500px;
  bottom: -200px;
  animation-name: round-animation-25;
  animation-duration: 13s;
  animation-delay: 3s;
}
@media (max-width: 715px) {
  .bg-round_description {
    bottom: 10px;
  }
}
.bg-round_growth {
  width: 300px;
  height: 400px;
  top: 0;
  right: -300px;
  animation-name: round-animation-9;
  animation-duration: 30s;
  animation-delay: 3s;
}
@media (max-width: 715px) {
  .bg-round_growth {
    top: -100px;
  }
}
.bg-round_form {
  width: 300px;
  height: 300px;
  top: 400px;
  right: 0;
  animation-name: round-animation-6;
  animation-duration: 14s;
  animation-delay: 3s;
}
@media (max-width: 715px) {
  .bg-round_form {
    top: 300px;
    right: -200px;
  }
}
.bg-round_footer {
  width: 200px;
  height: 200px;
  bottom: 100px;
  right: 0;
  animation-name: round-animation-16;
  animation-duration: 27s;
  animation-delay: 1s;
}
@media (max-width: 715px) {
  .bg-round_footer {
    right: -100px;
  }
}

@keyframes round-animation-0 {
  0% {
    scale: 0.5;
    opacity: 0;
    background-color: hsl(20, 100%, 63%);
  }
  70% {
    scale: 1.5;
    opacity: 0.6;
    background-color: hsl(23, 100%, 63%);
  }
  100% {
    scale: 1.5;
    opacity: 0;
    background-color: hsl(25, 100%, 63%);
  }
}
@keyframes round-animation-1 {
  0% {
    scale: 0.5;
    opacity: 0;
    background-color: hsl(22, 100%, 63%);
  }
  70% {
    scale: 1.5;
    opacity: 0.6;
    background-color: hsl(20, 100%, 63%);
  }
  100% {
    scale: 1.5;
    opacity: 0;
    background-color: hsl(19, 100%, 63%);
  }
}
@keyframes round-animation-2 {
  0% {
    scale: 0.5;
    opacity: 0;
    background-color: hsl(27, 100%, 63%);
  }
  70% {
    scale: 1.5;
    opacity: 0.6;
    background-color: hsl(27, 100%, 63%);
  }
  100% {
    scale: 1.5;
    opacity: 0;
    background-color: hsl(27, 100%, 63%);
  }
}
@keyframes round-animation-3 {
  0% {
    scale: 0.5;
    opacity: 0;
    background-color: hsl(20, 100%, 63%);
  }
  70% {
    scale: 1.5;
    opacity: 0.6;
    background-color: hsl(24, 100%, 63%);
  }
  100% {
    scale: 1.5;
    opacity: 0;
    background-color: hsl(29, 100%, 63%);
  }
}
@keyframes round-animation-4 {
  0% {
    scale: 0.5;
    opacity: 0;
    background-color: hsl(23, 100%, 63%);
  }
  70% {
    scale: 1.5;
    opacity: 0.6;
    background-color: hsl(26, 100%, 63%);
  }
  100% {
    scale: 1.5;
    opacity: 0;
    background-color: hsl(23, 100%, 63%);
  }
}
@keyframes round-animation-5 {
  0% {
    scale: 0.5;
    opacity: 0;
    background-color: hsl(20, 100%, 63%);
  }
  70% {
    scale: 1.5;
    opacity: 0.6;
    background-color: hsl(29, 100%, 63%);
  }
  100% {
    scale: 1.5;
    opacity: 0;
    background-color: hsl(23, 100%, 63%);
  }
}
@keyframes round-animation-6 {
  0% {
    scale: 0.5;
    opacity: 0;
    background-color: hsl(23, 100%, 63%);
  }
  70% {
    scale: 1.5;
    opacity: 0.6;
    background-color: hsl(25, 100%, 63%);
  }
  100% {
    scale: 1.5;
    opacity: 0;
    background-color: hsl(29, 100%, 63%);
  }
}
@keyframes round-animation-7 {
  0% {
    scale: 0.5;
    opacity: 0;
    background-color: hsl(21, 100%, 63%);
  }
  70% {
    scale: 1.5;
    opacity: 0.6;
    background-color: hsl(28, 100%, 63%);
  }
  100% {
    scale: 1.5;
    opacity: 0;
    background-color: hsl(22, 100%, 63%);
  }
}
@keyframes round-animation-8 {
  0% {
    scale: 0.5;
    opacity: 0;
    background-color: hsl(26, 100%, 63%);
  }
  70% {
    scale: 1.5;
    opacity: 0.6;
    background-color: hsl(26, 100%, 63%);
  }
  100% {
    scale: 1.5;
    opacity: 0;
    background-color: hsl(26, 100%, 63%);
  }
}
@keyframes round-animation-9 {
  0% {
    scale: 0.5;
    opacity: 0;
    background-color: hsl(28, 100%, 63%);
  }
  70% {
    scale: 1.5;
    opacity: 0.6;
    background-color: hsl(20, 100%, 63%);
  }
  100% {
    scale: 1.5;
    opacity: 0;
    background-color: hsl(21, 100%, 63%);
  }
}
@keyframes round-animation-10 {
  0% {
    scale: 0.5;
    opacity: 0;
    background-color: hsl(28, 100%, 63%);
  }
  70% {
    scale: 1.5;
    opacity: 0.6;
    background-color: hsl(23, 100%, 63%);
  }
  100% {
    scale: 1.5;
    opacity: 0;
    background-color: hsl(20, 100%, 63%);
  }
}
@keyframes round-animation-11 {
  0% {
    scale: 0.5;
    opacity: 0;
    background-color: hsl(19, 100%, 63%);
  }
  70% {
    scale: 1.5;
    opacity: 0.6;
    background-color: hsl(19, 100%, 63%);
  }
  100% {
    scale: 1.5;
    opacity: 0;
    background-color: hsl(23, 100%, 63%);
  }
}
@keyframes round-animation-12 {
  0% {
    scale: 0.5;
    opacity: 0;
    background-color: hsl(21, 100%, 63%);
  }
  70% {
    scale: 1.5;
    opacity: 0.6;
    background-color: hsl(22, 100%, 63%);
  }
  100% {
    scale: 1.5;
    opacity: 0;
    background-color: hsl(28, 100%, 63%);
  }
}
@keyframes round-animation-13 {
  0% {
    scale: 0.5;
    opacity: 0;
    background-color: hsl(20, 100%, 63%);
  }
  70% {
    scale: 1.5;
    opacity: 0.6;
    background-color: hsl(19, 100%, 63%);
  }
  100% {
    scale: 1.5;
    opacity: 0;
    background-color: hsl(21, 100%, 63%);
  }
}
@keyframes round-animation-14 {
  0% {
    scale: 0.5;
    opacity: 0;
    background-color: hsl(21, 100%, 63%);
  }
  70% {
    scale: 1.5;
    opacity: 0.6;
    background-color: hsl(29, 100%, 63%);
  }
  100% {
    scale: 1.5;
    opacity: 0;
    background-color: hsl(26, 100%, 63%);
  }
}
@keyframes round-animation-15 {
  0% {
    scale: 0.5;
    opacity: 0;
    background-color: hsl(24, 100%, 63%);
  }
  70% {
    scale: 1.5;
    opacity: 0.6;
    background-color: hsl(28, 100%, 63%);
  }
  100% {
    scale: 1.5;
    opacity: 0;
    background-color: hsl(19, 100%, 63%);
  }
}
@keyframes round-animation-16 {
  0% {
    scale: 0.5;
    opacity: 0;
    background-color: hsl(25, 100%, 63%);
  }
  70% {
    scale: 1.5;
    opacity: 0.6;
    background-color: hsl(20, 100%, 63%);
  }
  100% {
    scale: 1.5;
    opacity: 0;
    background-color: hsl(27, 100%, 63%);
  }
}
@keyframes round-animation-17 {
  0% {
    scale: 0.5;
    opacity: 0;
    background-color: hsl(22, 100%, 63%);
  }
  70% {
    scale: 1.5;
    opacity: 0.6;
    background-color: hsl(25, 100%, 63%);
  }
  100% {
    scale: 1.5;
    opacity: 0;
    background-color: hsl(20, 100%, 63%);
  }
}
@keyframes round-animation-18 {
  0% {
    scale: 0.5;
    opacity: 0;
    background-color: hsl(27, 100%, 63%);
  }
  70% {
    scale: 1.5;
    opacity: 0.6;
    background-color: hsl(27, 100%, 63%);
  }
  100% {
    scale: 1.5;
    opacity: 0;
    background-color: hsl(23, 100%, 63%);
  }
}
@keyframes round-animation-19 {
  0% {
    scale: 0.5;
    opacity: 0;
    background-color: hsl(21, 100%, 63%);
  }
  70% {
    scale: 1.5;
    opacity: 0.6;
    background-color: hsl(21, 100%, 63%);
  }
  100% {
    scale: 1.5;
    opacity: 0;
    background-color: hsl(27, 100%, 63%);
  }
}
@keyframes round-animation-20 {
  0% {
    scale: 0.5;
    opacity: 0;
    background-color: hsl(26, 100%, 63%);
  }
  70% {
    scale: 1.5;
    opacity: 0.6;
    background-color: hsl(20, 100%, 63%);
  }
  100% {
    scale: 1.5;
    opacity: 0;
    background-color: hsl(26, 100%, 63%);
  }
}
@keyframes round-animation-21 {
  0% {
    scale: 0.5;
    opacity: 0;
    background-color: hsl(20, 100%, 63%);
  }
  70% {
    scale: 1.5;
    opacity: 0.6;
    background-color: hsl(19, 100%, 63%);
  }
  100% {
    scale: 1.5;
    opacity: 0;
    background-color: hsl(22, 100%, 63%);
  }
}
@keyframes round-animation-22 {
  0% {
    scale: 0.5;
    opacity: 0;
    background-color: hsl(25, 100%, 63%);
  }
  70% {
    scale: 1.5;
    opacity: 0.6;
    background-color: hsl(20, 100%, 63%);
  }
  100% {
    scale: 1.5;
    opacity: 0;
    background-color: hsl(19, 100%, 63%);
  }
}
@keyframes round-animation-23 {
  0% {
    scale: 0.5;
    opacity: 0;
    background-color: hsl(21, 100%, 63%);
  }
  70% {
    scale: 1.5;
    opacity: 0.6;
    background-color: hsl(28, 100%, 63%);
  }
  100% {
    scale: 1.5;
    opacity: 0;
    background-color: hsl(23, 100%, 63%);
  }
}
@keyframes round-animation-24 {
  0% {
    scale: 0.5;
    opacity: 0;
    background-color: hsl(23, 100%, 63%);
  }
  70% {
    scale: 1.5;
    opacity: 0.6;
    background-color: hsl(23, 100%, 63%);
  }
  100% {
    scale: 1.5;
    opacity: 0;
    background-color: hsl(23, 100%, 63%);
  }
}
@keyframes round-animation-25 {
  0% {
    scale: 0.5;
    opacity: 0;
    background-color: hsl(21, 100%, 63%);
  }
  70% {
    scale: 1.5;
    opacity: 0.6;
    background-color: hsl(19, 100%, 63%);
  }
  100% {
    scale: 1.5;
    opacity: 0;
    background-color: hsl(29, 100%, 63%);
  }
}
@keyframes round-animation-26 {
  0% {
    scale: 0.5;
    opacity: 0;
    background-color: hsl(20, 100%, 63%);
  }
  70% {
    scale: 1.5;
    opacity: 0.6;
    background-color: hsl(26, 100%, 63%);
  }
  100% {
    scale: 1.5;
    opacity: 0;
    background-color: hsl(29, 100%, 63%);
  }
}
@keyframes round-animation-27 {
  0% {
    scale: 0.5;
    opacity: 0;
    background-color: hsl(19, 100%, 63%);
  }
  70% {
    scale: 1.5;
    opacity: 0.6;
    background-color: hsl(21, 100%, 63%);
  }
  100% {
    scale: 1.5;
    opacity: 0;
    background-color: hsl(26, 100%, 63%);
  }
}
@keyframes round-animation-28 {
  0% {
    scale: 0.5;
    opacity: 0;
    background-color: hsl(28, 100%, 63%);
  }
  70% {
    scale: 1.5;
    opacity: 0.6;
    background-color: hsl(28, 100%, 63%);
  }
  100% {
    scale: 1.5;
    opacity: 0;
    background-color: hsl(27, 100%, 63%);
  }
}
@keyframes round-animation-29 {
  0% {
    scale: 0.5;
    opacity: 0;
    background-color: hsl(29, 100%, 63%);
  }
  70% {
    scale: 1.5;
    opacity: 0.6;
    background-color: hsl(26, 100%, 63%);
  }
  100% {
    scale: 1.5;
    opacity: 0;
    background-color: hsl(20, 100%, 63%);
  }
}
@keyframes round-animation-30 {
  0% {
    scale: 0.5;
    opacity: 0;
    background-color: hsl(25, 100%, 63%);
  }
  70% {
    scale: 1.5;
    opacity: 0.6;
    background-color: hsl(20, 100%, 63%);
  }
  100% {
    scale: 1.5;
    opacity: 0;
    background-color: hsl(23, 100%, 63%);
  }
}
