@font-face {
  font-family: Stem;
  src: url(../fonts/Stem-Regular.ttf) format('truetype');
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: Stem;
  src: url(../fonts/Stem-Medium.ttf) format('truetype');
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: Stem;
  src: url(../fonts/Stem-Bold.ttf) format('truetype');
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-family: Stem;
  src: url(../fonts/Stem-Light.ttf) format('truetype');
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: HeliosCondBlackC;
  src: url(../fonts/helioscondblackc.otf) format('opentype');
  font-weight: 900;
  font-style: normal;
}
@font-face {
  font-family: HeliosCondBlackC;
  src: url(../fonts/helioscondblackc_italic.otf) format('opentype');
  font-weight: 900;
  font-style: italic;
}

button,
hr,
input {
  overflow: visible;
}
progress,
sub,
sup {
  vertical-align: baseline;
}
[type='checkbox'],
[type='radio'],
legend {
  box-sizing: border-box;
  padding: 0;
}
html {
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
}
body {
  margin: 0;
}
details,
main {
  display: block;
}
h1 {
  font-size: 2em;
  margin: 0.67em 0;
}
hr {
  box-sizing: content-box;
  height: 0;
}
code,
kbd,
pre,
samp {
  font-family: monospace, monospace;
  font-size: 1em;
}
a {
  background-color: transparent;
}
abbr[title] {
  border-bottom: none;
  text-decoration: underline;
  -webkit-text-decoration: underline dotted;
  text-decoration: underline dotted;
}
b,
strong {
  font-weight: 500;
}
small {
  font-size: 80%;
}
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
}
sub {
  bottom: -0.25em;
}
sup {
  top: -0.5em;
}
img {
  border-style: none;
  max-width: 100%;
  height: auto;
}
button,
input,
optgroup,
select,
textarea {
  font-family: inherit;
  font-size: 100%;
  line-height: 1.15;
  margin: 0;
}
button,
select {
  text-transform: none;
}
[type='button'],
[type='reset'],
[type='submit'],
button {
  -webkit-appearance: button;
}
[type='button']::-moz-focus-inner,
[type='reset']::-moz-focus-inner,
[type='submit']::-moz-focus-inner,
button::-moz-focus-inner {
  border-style: none;
  padding: 0;
}
[type='button']:-moz-focusring,
[type='reset']:-moz-focusring,
[type='submit']:-moz-focusring,
button:-moz-focusring {
  outline: ButtonText dotted 1px;
}
fieldset {
  padding: 0.35em 0.75em 0.625em;
}
legend {
  color: inherit;
  display: table;
  max-width: 100%;
  white-space: normal;
}
textarea {
  overflow: auto;
}
[type='number']::-webkit-inner-spin-button,
[type='number']::-webkit-outer-spin-button {
  height: auto;
}
[type='search'] {
  -webkit-appearance: textfield;
  outline-offset: -2px;
}
[type='search']::-webkit-search-decoration {
  -webkit-appearance: none;
}
::-webkit-file-upload-button {
  -webkit-appearance: button;
  font: inherit;
}
summary {
  display: list-item;
}
[hidden],
template {
  display: none;
}

:root {
  --main-black: #3b3d3c;
  --main-orange: #c25f25;
  --main-gray: #7c8092;
  --arrow-rect-stroke: #fff;
  --arrow-path-stroke: #fff;
  --arrow-rect-fill: transparent;
  --arrow-path-transform: scale(1) translate(0, 0);
  --arrow-path-origin: center;
}
html {
  height: auto;
  min-height: 100%;
  box-sizing: border-box;
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  text-size-adjust: 100%;
  text-rendering: optimizespeed;
  -webkit-font-smoothing: antialiased;
  scroll-behavior: smooth;
}
body {
  font-size: 14px;
  line-height: normal;
  font-family: Stem, sans-serif;
  height: auto;
  min-height: 100%;
  color: var(--main-black);
  margin: 0;
  background-color: #fff;
}
*,
::after,
::before {
  box-sizing: inherit;
}
h1,
h2,
h3,
h4,
h5 {
  margin: 0;
  padding: 0;
}
ol,
p,
ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
input {
  border: none;
  background-color: #fff;
}
button {
  border: none;
  background-color: transparent;
  padding: 0;
}
a {
  text-decoration: none;
  color: #000;
}
.container {
  max-width: 1440px;
  width: 100%;
  margin: 0 auto;
  padding: 0 60px;
}
.header {
  display: block;
  padding: 42px 0;
}
.header__container {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 20px;
}
.hamburger {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 3px;
  flex-direction: column;
  width: 27px;
  cursor: pointer;
  position: relative;
  z-index: 999;
  transition-duration: 0.3s;
  display: none;
}
.hamburger.active {
  position: absolute;
  left: 40px;
  top: 40px;
}
.hamburger.active .hamburger__line {
  background-color: #fff;
}
.hamburger:hover .hamburger__line:first-child {
  transform: translateY(-1px);
}
.hamburger:hover .hamburger__line:last-child {
  transform: translateY(1px);
}
.hamburger.active .hamburger__line:first-child {
  transform: rotate(45deg);
  position: absolute;
  left: 0;
  top: 0;
}
.hamburger.active .hamburger__line:last-child {
  transform: rotate(-45deg);
  position: absolute;
  left: 0;
  top: 0;
}

.hamburger__line-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  gap: 2px;
}

.hamburger i {
  font-style: normal;
  font-size: 9px;
  width: 8px;
  font-weight: 500;
  line-height: 12px;
  text-transform: uppercase;
  height: 0;
  opacity: 0;
  transition-duration: 0.3s;
  width: 0;
}

.hamburger__line {
  height: 2px;
  background-color: var(--main-black);
  width: 100%;
  transition-duration: 0.3s;
  position: relative;
}
.header__menu {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 30px;
  transition: background-color 0.3s;
  max-width: 790px;
  width: 100%;
}
.header__menu.active {
  position: fixed;
  left: 0;
  top: 0;
  padding: 85px 40px;
  display: block;
  width: 100%;
  height: 100%;
  background-color: var(--main-orange);
  z-index: 998;
}
.header__menu.active a {
  font-size: 20px;
  margin-bottom: 30px;
  color: #fff;
}
.header__menu li {
  flex-shrink: 0;
}
.header__menu a {
  display: block;
}
.header__tel {
  font-size: 14px;
  font-weight: 600;
  flex-shrink: 0;
}
.hero {
  display: block;
  padding-top: 72px;
  padding-bottom: 70px;
}
.hero__container {
  display: block;
}
.hero__inner {
  padding-left: 40px;
}
.hero__logo {
  display: block;
  margin-bottom: 136px;
}
.hero__title {
  font-size: 70px;
  display: flex;
  flex-wrap: wrap;
  text-transform: uppercase;
  max-width: 1112px;
  width: 100%;
  line-height: 80px;
  font-weight: 500;
}
.hero__title-top {
  display: block;
  transition-duration: 0.3s;
}
.hero__title-bottom {
  text-align: left;
  min-width: 500px;
  display: inline-block;
  margin-left: auto;
}

.hero__title-bottom span {
  display: block;
  transition-duration: 0.3s;
}
.hero__title b {
  color: #999797;
  font-weight: 500;
}

.hero .hero__title-bottom span:hover,
.hero .hero__title-top:hover {
  transform: translateX(70px);
}

.hero__btn {
  display: inline-flex;
  justify-content: flex-start;
  align-items: center;
  gap: 20px;
  position: relative;
  top: -75px;
  cursor: pointer;
}
.hero__btn:hover .circle-arrow-wrap:after,
.hero__btn:hover .circle-arrow-wrap:before {
  opacity: 1;
}
.hero__btn:hover .circle-arrow {
  --arrow-rect-fill: var(--main-orange);
  --arrow-rect-stroke: var(--main-orange);
  --arrow-path-stroke: #fff;
  --arrow-path-transform: scale(0.75);
}
.circle-arrow-wrap {
  position: relative;
  display: inline-block;
  cursor: pointer;
  border-radius: 50%;
  line-height: 0;
}
.circle-arrow-wrap:after,
.circle-arrow-wrap:before {
  content: '';
  display: block;
  width: 100%;
  height: 4px;
  background-color: transparent;
  border-left: 4px solid var(--main-black);
  border-right: 4px solid var(--main-black);
  position: absolute;
  left: 0;
  top: -3px;
  transition-duration: 0.3s;
  opacity: 0;
}
.circle-arrow-wrap:after {
  left: 0;
  top: auto;
  bottom: -3px;
}
.circle-arrow-wrap:hover:after,
.circle-arrow-wrap:hover:before {
  opacity: 1;
}
.circle-arrow:hover {
  --arrow-rect-fill: var(--main-orange);
  --arrow-rect-stroke: var(--main-orange);
  --arrow-path-stroke: #fff;
  --arrow-path-transform: scale(0.75);
}
.circle-arrow_orange {
  --arrow-rect-stroke: var(--main-black);
  --arrow-path-stroke: var(--main-orange);
}
.circle-arrow_white {
  --arrow-rect-fill: transparent;
  --arrow-rect-stroke: #fff;
  --arrow-path-stroke: #fff;
}
.hero__btn-name {
  font-weight: 700;
  font-size: 12px;
  text-transform: uppercase;
}
.mission {
  display: block;
  padding: 55px 0 74px;
  position: relative;
  overflow: hidden;
}
.double-title {
  display: block;
  margin-bottom: 65px;
  text-transform: uppercase;
  font-size: 20px;
  font-style: italic;
  font-family: HeliosCondBlackC, sans-serif;
}
.double-title__inner {
  text-align: left;
  display: inline-block;
}
.mission__title {
  text-align: center;
  padding-right: 0;
  position: relative;
}
.mission__title:after {
  content: '';
  display: block;
  width: 10px;
  height: 30px;
  background-color: transparent;
  border-top: 10px solid var(--main-orange);
  border-bottom: 10px solid var(--main-orange);
  position: absolute;
  right: 0;
  top: 3px;
}
.double-title span {
  display: block;
}
.orange {
  color: var(--main-orange);
}
.mission__wrap {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
}
.mission__item {
  padding: 40px;
  position: relative;
  background-color: #f5f5f5;
  min-height: 440px;
  overflow: hidden;
  transition-duration: 0.7s;
}
.mission__item:hover {
  color: #fff;
  background-color: var(--main-orange);
}
.mission__item:hover .mission__item-desc {
  opacity: 1;
}
.mission__item .orange {
  transition-duration: 0.7s;
}
.mission__item:hover .orange {
  color: var(--main-black);
}
.mission__item:hover .mission__item-num {
  color: #c97b4e;
}
.mission__item-title {
  font-weight: 700;
  text-transform: uppercase;
  font-size: 18px;
  display: block;
  margin-bottom: 20px;
}
.mission__item-desc {
  display: block;
  color: #f5f5f5;
  position: relative;
  z-index: 1;
}
.mission__item-desc p {
  display: block;
}
.mission__item-num {
  font-size: 220px;
  line-height: 160px;
  color: #ddd;
  opacity: 1;
  position: absolute;
  bottom: -4px;
  left: 44px;
  z-index: 0;
  font-style: italic;
  font-weight: 700;
  font-family: HeliosCondBlackC, sans-serif;
  transition-duration: 0.7s;
}
.mission__item-more {
  color: #8e8f8e;
  font-size: 12px;
  display: none;
  position: absolute;
  bottom: 19px;
}
.mission__item-more:after {
  content: '';
  display: inline-block;
  width: 5px;
  height: 5px;
  border-top: 1px solid #8e8f8e;
  border-right: 1px solid #8e8f8e;
  transform: rotate(135deg);
  position: absolute;
  right: -14px;
  top: 3px;
  transition-duration: 0.3s;
}
.work-with {
  display: block;
  padding-top: 0;
  padding-bottom: 120px;
}
.work-with__title {
  text-align: right;
  margin-bottom: 20px;
  position: relative;
  bottom: -66px;
  margin-right: 0;
}
.work-with__title span {
  text-align: right;
}
.work-with__wrap {
  display: block;
}
.work-with__item {
  border-top: 1px solid #c6c6c6;
  padding: 21px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  max-width: 880px;
  transition-duration: 0.3s;
  cursor: default;
}
.work-with__item:last-child {
  max-width: 100%;
}
.work-with__item:nth-last-child(2) {
  max-width: 100%;
}
.work-with__item:nth-child(1),
.work-with__item:nth-child(2) {
  flex-direction: row-reverse;
  width: 70%;
}
.work-with__item:nth-child(1) .work-with__btn-ico,
.work-with__item:nth-child(2) .work-with__btn-ico {
  transform: unset;
}

.work-with__item:nth-child(1):hover .work-with__btn-ico,
.work-with__item:nth-child(2):hover .work-with__btn-ico {
  transform: scale(1.3);
}

.work-with__item-name {
  font-size: 70px;
  line-height: 67px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: -1px;
}
.work-with__btn {
  display: block;
  text-align: left;
  cursor: pointer;
  flex-shrink: 0;
  position: relative;
  top: -10px;
  transition-duration: 0.3s;
}

.work-with__btn:hover .work-with__btn-name {
  color: var(--main-orange);
}

.work-with__btn-ico {
  width: 32px;
  height: 32px;
  display: inline-block;
  transition-duration: 0.3s;
  transform: rotateY(180deg);
  transition: transform 0.3s ease;
}
.work-with__btn-name {
  display: block;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 14px;
  text-align: left;
  opacity: 0;
  transition-duration: 0.3s;
}
.work-with__item:hover .work-with__btn-ico {
  transform: rotateY(180deg) scale(1.3);
}
.work-with__item:hover .work-with__btn-name {
  opacity: 1;
}
.work-with__item:hover {
  border-top-color: var(--main-orange);
  padding: 25px 0;
}
.work-with__item:hover .work-with__btn {
  top: 0;
}
.work-with__item:nth-child(1) .work-with__btn,
.work-with__item:nth-child(2) .work-with__btn {
  text-align: right;
}
.why {
  background-color: #313332;
  color: #fff;
  padding: 95px 0 102px;
}
.title {
  font-size: 70px;
  margin-bottom: 55px;
  text-transform: uppercase;
  font-weight: 500;
  line-height: 82px;
}
.why__title {
  display: block;
}
.why__wrap {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 60px;
}
.why__item {
  display: block;
  position: relative;
  width: 100%;
}
.why__item:after,
.why__item:before {
  content: '';
  display: block;
  width: 10px;
  height: 10px;
  background-color: #535554;
  position: absolute;
  right: 0;
  top: 0;
}
.why__item:after {
  top: auto;
  bottom: -21px;
}
.why__item:last-child:after,
.why__item:last-child:before {
  content: none;
}
.why__item svg {
  display: block;
  margin-bottom: 29px;
}
.why__item-name {
  font-weight: 700;
  font-size: 18px;
  text-transform: uppercase;
  display: block;
  margin-bottom: 17px;
}
.why__item-desc {
  color: #989999;
  font-weight: 500;
  font-size: 14px;
  line-height: 19px;
  width: 100%;
}
.contact-section {
  background-color: #f8f8f8;
  padding: 140px 50px 94px;
  position: relative;
  overflow: hidden;
}
.contact-section__container {
  position: relative;
}
.contact-section__container:after,
.contact-section__container:before {
  content: '';
  display: block;
  width: 10px;
  height: 10px;
  background-color: #999799;
  position: absolute;
  left: 300px;
  bottom: 0;
}
.contact-section__container:before {
  left: 300px;
  bottom: 20px;
}
.contact-section__logo {
  width: 100%;
  height: 364px;
  position: absolute;
  left: 0;
  top: -149px;
}
.contact-section__title {
  display: flex;
  text-align: center;
  flex-wrap: wrap;
  max-width: 922px;
  width: 100%;
  justify-content: center;
  margin: 0 auto 50px;
  position: relative;
  z-index: 1;
}
.contact-section__title span:first-child {
  text-align: left;
  margin-right: auto;
}
.contact-section__title span:last-child {
  text-align: right;
  margin-left: auto;
  width: 100%;
}
.contact-form {
  max-width: 436px;
  width: 100%;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
.text-field {
  border-bottom: 1px solid #c6c6c6;
  height: 55px;
  padding: 12px 0;
  font-size: 16px;
  background-color: transparent;
  width: 100%;
  margin-bottom: 11px;
  outline: 0;
  color: #000;
  border-radius: 0;
}
.text-field:focus {
  border-bottom-color: #000;
}
.text-field::-moz-placeholder {
  color: #bebfbe;
}
.text-field::placeholder {
  color: #bebfbe;
}
.contact-form__acc-wrap {
  margin-top: 28px;
}
.contact-form__acc {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 10px;
}
.contact-form__acc-text {
  font-size: 14px;
}
.contact-form__acc-text a:hover {
  text-decoration: none;
}
.contact-form__acc-text a {
  text-decoration: underline;
}
.btn {
  font-size: 14px;
  text-transform: uppercase;
  background-color: var(--main-orange);
  color: #fff;
  padding: 30px;
  border-radius: 50px;
  text-align: center;
  cursor: pointer;
}
.btn__name {
  display: block;
  font-weight: 500;
  position: relative;
  right: -3px;
  transition-duration: 0.3s;
}
.contact-form__btn {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  margin: 27px auto;
  width: 100%;
  cursor: pointer;
  transition-duration: 0.3s;
}
.contact-form__btn-ico {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 0;
  position: relative;
  top: -1px;
}
.contact-form__btn svg {
  width: 25px;
  height: 18px;
  position: relative;
  top: -1px;
  transition-duration: 0.3s;
}

.contact-form__btn:hover {
  background-color: #b25722;
}

.contact-form__btn:hover .btn__name {
  position: relative;
  scale: 0.9;
}
.contact-form__btn:hover svg {
  scale: 0.9;
  transform: translateX(-12px);
}
.how-work {
  display: block;
  padding: 131px 0 41px;
}
.how-work__container {
  max-width: 1013px;
  width: 100%;
}
.how-work__title {
  display: block;
  display: flex;
  text-align: center;
  flex-wrap: wrap;
  max-width: 590px;
  width: 100%;
  justify-content: center;
  margin: 0 auto 41px 0;
  line-height: 66px;
}
.how-work__title span:first-child {
  text-align: left;
  margin-right: auto;
}
.how-work__title span:last-child {
  text-align: right;
  margin-left: auto;
  width: 100%;
}
.how-work__wrap {
  display: block;
}
.how-work__item {
  display: flex;
  justify-content: flex-start;
  gap: 63px;
  margin-bottom: 25px;
}
.how-work__item:last-child .how-work__item-content {
  border-bottom: none;
}
.how-work__item__num {
  font-size: 140px;
  font-style: italic;
  font-family: HeliosCondBlackC, sans-serif;
  position: relative;
}
.how-work__item__num:before {
  content: '';
  display: block;
  width: 10px;
  height: 10px;
  background-color: var(--main-orange);
  position: absolute;
  right: 37%;
  bottom: -5px;
}
.how-work__item:last-child .how-work__item__num:before {
  content: none;
}
.how-work__item-content {
  display: block;
  border-bottom: 1px solid #999797;
  min-height: 100%;
  padding-top: 36px;
  padding-bottom: 62px;
}
.how-work__item-name {
  font-weight: 700;
  font-size: 18px;
  text-transform: uppercase;
  display: block;
  margin-bottom: 10px;
}
.how-work__item-desc {
  color: #999797;
  line-height: 19px;
  /* font-weight: 400; */
}
.how-work__item-desc p {
  display: block;
}
.cases {
  background-color: #313332;
  padding: 97px 0 103px;
  position: relative;
  overflow: hidden;
}
.cases__head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
}
.cases__title {
  display: block;
  color: #fff;
  position: relative;
}
.cases__nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  margin-top: 6px;
}
.cases__nav {
  display: block;
  line-height: 1;
}
.cases__nav .circle-arrow-wrap:after,
.cases__nav .circle-arrow-wrap:before {
  border-color: #454746;
}
.cases__nav-l {
  display: block;
  transform: scale(-1);
}
.cases__nav-r {
  display: block;
}
.cases__slider {
  display: block;
  width: 100vw;
}
.cases .swiper-slide {
  box-sizing: border-box;
}
.cases__slider-item {
  display: flex;
  flex-direction: column;
  background-color: #363837;
  border-radius: 40px;
  padding: 40px;
  min-height: 464px;
  transition-duration: 0.3s;
}
.cases__slider-item:hover {
  background-color: #404241;
}
.cases__slider-item:hover .cases__slider-item-logo {
  filter: grayscale(0);
}
.cases__slider-item-logo img {
  -o-object-fit: contain;
  object-fit: contain;
  max-width: 100px;
  /* width: 100%; */
  /* height: auto; */
}
.cases__slider-item-title {
  font-weight: 500;
  color: #fff;
  text-transform: uppercase;
  display: block;
  margin-bottom: 12px;
  font-size: 18px;
}
.cases__slider-item-desc {
  display: block;
  color: #9b9b9b;
  line-height: 19px;
  font-weight: 500;
  /* font-size: 14px; */
}
.cases__slider-item-logo {
  display: block;
  margin-top: auto;
  filter: grayscale(1) brightness(0.8);
  transition-duration: 0.3s;
  /* max-height: 100px; */
}
.trusted {
  display: block;
  padding: 92px 0 46px;
  position: relative;
  overflow: hidden;
}
.trusted__title {
  display: block;
  flex-wrap: wrap;
  width: -moz-min-content;
  width: min-content;
  justify-content: center;
  margin: 0 auto 61px;
  line-height: 66px;
  position: relative;
}
.trusted__container {
  position: relative;
}
.trusted__container:after {
  content: '';
  display: block;
  width: 10px;
  height: 30px;
  background-color: transparent;
  border-top: 10px solid var(--main-orange);
  border-bottom: 10px solid var(--main-orange);
  position: absolute;
  left: 60px;
  top: 8px;
}
.trusted__title span:first-child {
  text-align: left;
  margin-right: auto;
}
.trusted__title span:last-child {
  text-align: left;
  margin-left: auto;
  width: 100%;
}
.trusted__wrap {
  display: block;
}
.trusted__slider {
  width: 100vw;
}
.trusted__slider .swiper-slide {
  filter: grayscale(1);
  opacity: 0.2;
  transition: filter 0.6s, opacity 0.6s;
}
.trusted__slider .swiper-slide-active {
  filter: grayscale(0);
  opacity: 1;
}
.trusted__slider-item {
  display: flex;
  gap: 86px;
}
.trusted__slider-item-photo {
  display: block;
  filter: grayscale(1);
}
.trusted__slider-item-photo img {
  display: block;
  max-width: 384px;
  height: 384px;
  object-fit: cover;
}
.trusted__slider-item-content {
  display: block;
}
.trusted__slider-item-name {
  text-transform: uppercase;
  display: block;
  margin-bottom: 13px;
  font-size: 24px;
  line-height: 28px;
  font-family: HeliosCondBlackC, sans-serif;
  font-style: italic;
}
.trusted__slider-item-pos {
  font-size: 14px;
  color: var(--main-orange);
  text-transform: uppercase;
  display: block;
  margin-bottom: 37px;
  font-weight: 500;
}
.trusted__slider-item-desc {
  color: #999797;
  line-height: 22px;
  font-weight: 300;
}

.trusted__slider-item-desc strong {
  color: var(--main-orange);
  font-weight: 400;
}

.trusted__nav-container {
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
  gap: 10px;
  max-width: calc(384px + 234px);
  width: 100%;
  position: relative;
  top: -75px;
  z-index: 2;
}
.trusted__nav {
  display: block;
  line-height: 1;
}
.trusted__nav svg {
  --arrow-rect-stroke: var(--main-black);
  --arrow-path-stroke: var(--main-black);
}
.trusted__nav-l {
  transform: scale(-1);
}
.trusted__nav-r {
  display: block;
}
.footer {
  background-color: #313332;
  padding: 8px 0 0;
}
.footer__container {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  position: relative;
  max-width: 1563px;
  padding: 0 60px 0 120px;
}
.footer__col {
  padding-top: 51px;
}
.footer__col-first {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 20px;
  flex-direction: column;
  max-height: 411px;
}
.footer__logo {
  display: block;
  margin-bottom: auto;
  filter: grayscale(1);
}
.footer__info {
  display: block;
  text-transform: uppercase;
}
.footer__info p {
  display: block;
  color: #fff;
  margin-bottom: 7px;
  font-weight: 500;
}
.footer__info a {
  display: block;
  color: #fff;
  margin-bottom: 7px;
  font-weight: 600;
}
.footer__menu {
  display: block;
  margin-bottom: 58px;
}
.footer__menu-name {
  font-weight: 700;
  text-transform: uppercase;
  display: block;
  margin-bottom: 17px;
  color: #fff;
}
.footer__menu-list {
  display: block;
}
.footer__menu-list a {
  color: #989999;
  font-size: 12px;
  display: block;
  margin-bottom: 16px;
  font-weight: 500;
  pointer-events: none;
}
.footer-form {
  background-color: #363837;
  margin-top: -59px;
  padding: 60px 61px 33px;
  max-width: 506px;
  width: 100%;
}
.footer-form .text-field::-moz-placeholder {
  color: #727473;
}
.footer-form .text-field::placeholder {
  color: #727473;
}
.footer-form .text-field {
  border-bottom-color: #4a4c4b;
  color: #fff;
}
.footer-form .text-field:focus {
  border-bottom-color: #fff;
}
.footer-form .contact-form__acc-text {
  color: #fff;
}
.footer-form .contact-form__acc-text a {
  color: #fff;
}
.footer-form .toggle-input::before {
  background-color: #3d3d3d;
}
.footer-form .toggle-input {
  background-color: #313332;
}
.footer-form .toggle-input:checked {
  background-color: #313332;
}
.footer-form .toggle-input:checked::before {
  background-color: var(--main-orange);
}
.footer-form-sup-title {
  color: #727473;
  display: block;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 4px;
}
.footer-form-title {
  font-size: 50px;
  line-height: 55px;
  color: #fff;
  text-transform: uppercase;
  margin-bottom: 40px;
  display: block;
}
.copyright {
  font-size: 14px;
  color: #fff;
  position: absolute;
  left: 120px;
  bottom: 0;
  padding: 60px 0;
  border-top: 1px solid #4a4c4b;
  width: calc(100% - 790px);
}
.toggle {
  position: relative;
  display: inline-block;
  width: 38px;
  height: 20px;
  flex-shrink: 0;
}
.toggle-input {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #ccc;
  border-radius: 50px;
  cursor: pointer;
  transition: 0.3s;
  outline: 0;
  box-shadow: none;
}
.toggle-input:checked {
  background-color: var(--main-orange);
}
.toggle-input:checked::before {
  transform: translateX(16px);
}
.toggle-input::before {
  content: '';
  position: absolute;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  top: 2px;
  left: 3px;
  background-color: #fff;
  transition: 0.3s;
}
.toggle-slider {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 50px;
  transition: 0.3s;
  pointer-events: none;
}
.toggle-input:focus-visible {
  border: 2px solid #00f;
}

input:-webkit-autofill,
input:-webkit-autofill:focus,
input:-internal-autofill-selected {
  transition: background-color 0s 600000s, color 0s 600000s !important;
  font-weight: 400 !important;
}

.content {
  padding-bottom: 70px;
  font-size: 16px;
}

.content h1 {
  margin-bottom: 50px;
  font-size: 45px;
}

.content h2,
.content h3,
.content h4,
.content h5 {
  margin-top: 45px;
  margin-bottom: 25px;
  position: relative;
  line-height: normal;
}
.content h2 {
  font-size: 32px;
}
.content h3 {
  font-size: 28px;
}
.content h4 {
  font-size: 26px;
}
.content h5 {
  font-size: 24px;
}
.content p {
  margin: 25px 0;
}
.content a {
  color: var(--orange);
  text-decoration: underline;
}
.content ol,
.content ul {
  margin: 30px 0 30px 30px;
}
.content li {
  margin-bottom: 15px;
}
.content ul li {
  list-style-type: disc;
}
.content ol li {
  list-style-type: auto;
}
.wp-block-quote {
  background-color: #eee;
  padding: 30px;
  margin: 30px 0;
  border-left: 4px solid var(--orange);
}
.wp-block-quote cite {
  display: none;
}
.wp-block-quote p {
  margin-top: 0;
}
.wp-block-quote p:last-child {
  margin-bottom: 0;
}

.content table {
  font-size: 14px;
}

.content figure {
  margin: 0 0 20px;
}

.content iframe {
  width: 100%;
  aspect-ratio: 16/9;
}

.wp-block-gallery.has-nested-images figure.wp-block-image figcaption {
  background: 0 0;
  position: absolute;
  bottom: -35px;
  margin-top: 0;
  color: #000;
}

.page-id-3 .header,
.page-id-106 .header {
  opacity: 0;
}

@media (max-width: 1399px) {
  .container {
    padding: 0 50px;
  }
  .hero__inner {
    padding-left: 30px;
  }
  .header {
    display: block;
    padding: 28px 0;
  }
  .hamburger {
    width: 20px;
  }
  .header__tel {
    font-size: 12px;
    font-weight: 500;
  }
  .hero {
    padding-top: 53px;
    padding-bottom: 0;
  }
  .hero__logo {
    max-width: 690px;
    width: 100%;
    margin-bottom: 74px;
  }
  .hero__title {
    font-size: 58px;
    max-width: 950px;
    line-height: 70px;
  }
  .hero__btn {
    top: -67px;
    gap: 15px;
  }
  .circle-arrow {
    width: 58px;
    height: 58px;
  }
  .mission {
    padding-top: 12px;
    padding-bottom: 12px;
  }
  .double-title {
    font-size: 16px;
    margin-bottom: 54px;
  }
  .mission__item-title {
    font-size: 16px;
    margin-bottom: 10px;
  }
  .mission__item {
    padding: 30px;
    min-height: 365px;
  }
  .mission__item-desc {
    font-size: 12px;
    line-height: 17px;
  }
  .mission__item-num {
    font-size: 175px;
    line-height: 159px;
    bottom: -18px;
  }
  .work-with__item-name {
    font-size: 58px;
    line-height: 67px;
    font-weight: 500;
    letter-spacing: 0;
  }
  .work-with__item {
    padding: 9px 0;
    max-width: 733px;
  }
  .work-with {
    margin-top: -24px;
    padding-bottom: 80px;
  }
  .work-with__title {
    bottom: -90px;
  }
  .work-with__btn-name {
    font-size: 12px;
  }
  .why {
    padding: 79px 0 80px;
  }
  .title {
    font-size: 58px;
    line-height: 60px;
    margin-bottom: 43px;
  }
  .why__item svg {
    width: 42px;
    margin-bottom: 12px;
  }
  .why__item-name {
    font-size: 16px;
    margin-bottom: 10px;
  }
  .why__item-desc {
    line-height: 17px;
  }
  .contact-section {
    padding: 118px 50px 55px;
  }
  .contact-section__title {
    margin-bottom: 44px;
    max-width: 750px;
  }
  .contact-form {
    max-width: 420px;
  }
  .text-field {
    height: 44px;
    padding: 10px 0;
    font-size: 12px;
  }
  .contact-form__acc-wrap {
    margin-top: 17px;
  }
  .contact-form__acc-text {
    font-size: 12px;
  }
  .contact-form__acc {
    margin-bottom: 3px;
  }
  .btn {
    padding: 21px;
    font-size: 12px;
  }
  .contact-form__btn svg {
    width: 27px;
    height: 16px;
  }
  .contact-form__btn-ico-line {
    transform: translateY(0);
    width: 17px;
  }
  .how-work {
    padding: 79px 0 40px;
  }
  .how-work__item__num {
    font-size: 115px;
  }
  .how-work__wrap {
    max-width: 740px;
    width: 100%;
    margin: 0 auto;
  }
  .how-work__item {
    gap: 43px;
    margin-bottom: 20px;
  }
  .how-work__title {
    max-width: 474px;
    line-height: 56px;
    margin-bottom: 32px;
  }
  .how-work__container {
    max-width: 840px;
  }
  .how-work__item-content {
    padding-top: 28px;
    padding-bottom: 23px;
  }
  .how-work__item-name {
    font-size: 16px;
  }
  .cases {
    padding: 79px 0 80px;
  }
  .cases__nav-container {
    margin-top: 0;
  }
  .cases__slider-item {
    padding: 30px;
    min-height: 360px;
  }
  .cases__slider-item-title {
    font-size: 16px;
    margin-bottom: 9px;
  }
  .cases__title {
    margin-bottom: 50px;
  }
  .cases__slider-item-desc {
    line-height: 16px;
  }
  .trusted {
    padding: 79px 0 19px;
  }
  .trusted__slider-item-photo img {
    max-width: 320px;
    height: 320px;
  }
  .trusted__slider-item {
    gap: 30px;
  }
  .trusted__slider-item-name {
    font-size: 20px;
    line-height: 23px;
  }
  .trusted__slider-item-pos {
    font-size: 13px;
    margin-bottom: 28px;
  }
  .trusted__slider-item-desc {
    line-height: 20px;
  }
  .trusted__nav-container {
    max-width: calc(237px + 234px);
    top: -62px;
  }
  .footer {
    padding: 48px 0 0;
  }
  .footer__logo {
    max-width: 166px;
    width: 100%;
  }
  .footer__info a,
  .footer__info p {
    font-weight: 500;
    font-size: 12px;
  }
  .footer__col-first {
    max-height: 318px;
  }
  .footer-form {
    margin-top: -48px;
    padding: 47px 44px 33px;
    max-width: 419px;
  }
  .footer-form-sup-title {
    margin-bottom: 6px;
    font-size: 12px;
  }
  .footer-form-title {
    font-size: 42px;
    line-height: 45px;
    margin-bottom: 34px;
  }
  .footer__container {
    padding-right: 0;
  }
  .copyright {
    left: 50px;
    padding: 47px 0;
    width: calc(100% - 567px);
  }
  .footer__menu-name {
    margin-bottom: 10px;
    font-size: 12px;
  }
  .footer__menu-list a {
    margin-bottom: 9px;
  }
  .mission__title:after {
    width: 8px;
    height: 25px;
    background-color: transparent;
    border-top: 8px solid var(--main-orange);
    top: 0;
  }
  .why__item:after,
  .why__item:before {
    width: 8px;
    height: 8px;
  }
  .contact-section__container:after,
  .contact-section__container:before {
    width: 8px;
    height: 8px;
    left: 180px;
  }
  .how-work__item__num:before {
    width: 8px;
    height: 8px;
  }
  .trusted__container:after {
    width: 8px;
    height: 25px;
    background-color: transparent;
    border-top: 8px solid var(--main-orange);
    border-bottom: 8px solid var(--main-orange);
    left: 60px;
    top: 0;
  }
  .cases__slider-item-logo {
    height: 100px;
  }
  .hamburger {
    display: flex;
  }
  .header__container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
  }

  .header__menu {
    max-width: unset;
    justify-content: center;
  }
}

@media (max-width: 992px) {
  .container {
    padding: 0 30px;
  }
  .hero__inner {
    padding-left: 0;
  }
  .hero {
    padding-top: 102px;
  }
  .hero__logo {
    max-width: 560px;
    margin-bottom: 119px;
  }
  .hero__title {
    font-size: 50px;
    line-height: 56px;
    max-width: 718px;
  }
  .hero__btn {
    top: -58px;
    gap: 10px;
  }
  .circle-arrow {
    width: 54px;
    height: 54px;
  }
  .mission {
    padding-top: 76px;
    padding-bottom: 18px;
  }
  .double-title {
    margin-bottom: 32px;
  }
  .mission__item-title {
    font-size: 12px;
    line-height: 17px;
    margin-bottom: 11px;
  }
  .mission__item {
    padding: 20px 14px;
    min-height: unset;
    height: 229px;
  }
  .mission__item-desc {
    font-size: 10px;
    line-height: 14px;
    opacity: 0;
  }
  .mission__item-num {
    font-size: 75px;
    line-height: 159px;
    bottom: -27px;
    right: 0;
    left: auto;
  }
  .mission__item-more {
    display: inline-block;
  }
  .work-with__item-name {
    font-size: 22px;
    line-height: 26px;
  }
  .work-with__item {
    padding: 5px 0;
    max-width: unset;
    width: 100%;
  }
  .work-with__btn-ico {
    width: 24px;
    height: 24px;
  }
  .work-with__btn {
    top: 7px;
  }
  .work-with {
    padding-bottom: 61px;
  }
  .work-with__title {
    bottom: -65px;
  }
  .work-with__btn-name {
    font-size: 12px;
  }
  .why {
    padding: 60px 0 62px;
  }
  .title {
    font-size: 30px;
    line-height: 33px;
    margin-bottom: 20px;
  }
  .why__item svg {
    width: 51px;
  }
  .why__item-name {
    font-size: 12px;
    margin-bottom: 4px;
  }
  .why__item-desc {
    line-height: 17px;
    font-size: 12px;
  }
  .why__item-desc br {
    display: none;
  }
  .why__wrap {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px 43px;
  }
  .contact-section {
    padding: 60px 50px 33px;
  }
  .contact-section__title {
    margin-bottom: 19px;
    max-width: 306px;
    position: relative;
    left: -14px;
    /* max-width: 335px; */
  }
  .contact-form {
    max-width: 335px;
  }
  .text-field {
    height: 44px;
    padding: 10px 0;
    font-size: 12px;
  }
  .contact-form__acc-wrap {
    margin-top: 11px;
  }
  .contact-form__acc-text {
    font-size: 12px;
  }
  .contact-form__acc {
    margin-bottom: 10px;
  }
  .btn {
    padding: 17px;
    font-size: 12px;
  }
  .contact-form__btn svg {
    width: 27px;
    height: 16px;
  }
  .contact-form__btn-ico-line {
    transform: translateY(0);
    width: 17px;
  }
  .contact-form__btn {
    margin-top: 17px;
    margin-bottom: 0;
  }
  .how-work {
    padding: 56px 0 33px;
  }
  .how-work__item__num {
    font-size: 62px;
    line-height: 62px;
  }
  .how-work__wrap {
    max-width: 740px;
    width: 100%;
    margin: 0 auto;
  }
  .how-work__item {
    gap: 17px;
    margin-bottom: 11px;
  }
  .how-work__title {
    max-width: 242px;
    line-height: 33px;
    margin-bottom: 5px;
  }
  .how-work__container {
    max-width: 555px;
  }
  .how-work__item-content {
    padding-top: 12px;
    padding-bottom: 24px;
  }
  .how-work__item-name {
    font-size: 12px;
    margin-bottom: 5px;
  }
  .cases {
    padding: 59px 0;
  }
  .cases__nav-container {
    margin-top: 0;
    display: none;
  }
  .cases__slider-item {
    padding: 16px 13px;
    min-height: 226px;
    border-radius: 20px;
  }
  .cases__slider-item-title {
    font-size: 12px;
    margin-bottom: 7px;
  }
  .cases__title {
    margin-bottom: 25px;
  }
  .cases__slider-item-desc {
    line-height: 16px;
  }
  .trusted {
    padding: 56px 0 63px;
  }
  .trusted__slider-item-photo img {
    max-width: 223px;
    height: 220px;
  }
  .trusted__slider-item {
    gap: 19px;
  }
  .trusted__slider-item-name {
    font-size: 18px;
    line-height: 23px;
  }
  .trusted__slider-item-pos {
    font-size: 13px;
    margin-bottom: 16px;
  }
  .trusted__slider-item-desc {
    line-height: 20px;
    font-size: 12px;
  }
  .trusted__nav-container {
    max-width: calc(237px + 234px);
    top: -62px;
    display: none;
  }
  .footer {
    padding: 0;
  }
  .footer__logo {
    max-width: 194px;
    width: 100%;
  }
  .footer__info a,
  .footer__info p {
    font-weight: 500;
    font-size: 12px;
  }
  .footer__col-first {
    width: 100%;
    max-height: 100%;
    display: flex;
    justify-content: space-between;
    flex-direction: row;
    padding-top: 60px;
    display: grid;
    display: grid;
    grid-template-columns: 50% 50%;
  }
  .footer-form {
    padding: 58px 0 33px;
    max-width: 419px;
  }
  .footer-form-sup-title {
    margin-bottom: 6px;
    font-size: 12px;
  }
  .footer-form-title {
    font-size: 30px;
    line-height: 32px;
    margin-bottom: 17px;
  }
  .copyright {
    left: 50px;
    padding: 30px;
    position: static;
    width: 100vw;
    margin: 0 -30px;
  }
  .footer__menu-name {
    margin-bottom: 10px;
    font-size: 12px;
  }
  .footer__menu-list a {
    margin-bottom: 9px;
  }
  .mission__title:after {
    width: 4px;
    height: 12px;
    background-color: transparent;
    border-top: 4px solid var(--main-orange);
    border-bottom: 4px solid var(--main-orange);
    top: 4px;
  }
  .why__item:after,
  .why__item:before {
    width: 4px;
    height: 4px;
    bottom: -28px;
  }
  .contact-section__container:after,
  .contact-section__container:before {
    width: 8px;
    height: 8px;
    left: 180px;
    display: none;
  }
  .how-work__item__num:before {
    width: 4px;
    height: 4px;
    bottom: -2px;
  }
  .trusted__container:after {
    display: none;
  }
  .cases__slider-item-logo {
    width: 60px;
    height: 60px;
  }
  .cases__slider-item-logo img {
    width: 100%;
    height: 100%;
  }
  .footer__col-last {
    order: -1;
    max-width: unset;
    background-color: #363837;
    padding-top: 0;
  }
  .footer-form {
    max-width: unset;
    width: 100vw;
    margin: 0 auto;
    max-width: 336px;
  }
  .footer__container {
    flex-wrap: wrap;
    padding: 0 30px;
    gap: 0;
  }
  .footer-form-title br {
    display: none;
  }
  .footer__col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    width: 100%;
    gap: 40px;
  }
  .footer__col-last {
    display: block;
    margin: 0 -30px;
    width: 100vw;
  }
  .how-work__item-desc {
    line-height: 17px;
    font-size: 12px;
  }
  .why__item:after,
  .why__item:nth-child(2):before {
    content: none;
  }
  .mission__item:hover {
    color: initial;
    background-color: #f5f5f5;
  }
  .mission__item:hover .mission__item-desc {
    opacity: 0;
  }
  .mission__item:hover .orange {
    color: initial;
  }
  .mission__item:hover .mission__item-num {
    color: #ddd;
  }
  .mission__item.active {
    color: #fff;
    background-color: var(--main-orange);
  }
  .mission__item.active .mission__item-desc {
    opacity: 1;
  }
  .mission__item.active .orange {
    color: var(--main-black);
  }
  .mission__item.active .mission__item-num {
    color: #c97b4e;
  }
  .mission__item.active .mission__item-more {
    color: #fff;
  }
  .mission__item.active .mission__item-more:after {
    border-top: 1px solid #fff;
    border-right: 1px solid #fff;
    transform: rotate(315deg);
    top: 6px;
  }
  .header {
    padding: 21px 0;
  }
  .header__menu {
    display: none;
  }
  .header__menu.active {
    padding: 85px 30px;
  }
  .hamburger.active {
    left: 30px;
  }
}
@media (max-width: 759px) {
  .container {
    padding: 0 15px;
  }
  .hero__btn {
    position: static;
    margin-top: 41px;
  }
  .hero__title {
    font-size: 30px;
    line-height: 33px;
    max-width: 100%;
  }

  .hero__title-bottom {
    min-width: unset;
    margin-left: 0;
  }
  .hero {
    padding-top: 63px;
  }
  .hero__logo {
    max-width: 560px;
    margin-bottom: 38px;
  }
  .mission__wrap {
    grid-template-columns: 1fr;
  }
  .double-title {
    text-align: left;
    margin-bottom: 24px;
  }
  .mission__item {
    width: 100vw;
    margin: 0 -15px;
    position: relative;
    overflow: hidden;
    height: auto;
  }
  .work-with {
    margin-top: -20px;
    padding-top: 40px;
    padding-bottom: 43px;
  }
  .work-with__title {
    position: static;
  }
  .work-with__item-name {
    font-size: 16px;
    line-height: 20px;
  }
  .work-with__item:nth-child(n) {
    flex-direction: row-reverse;
    width: 100%;
    padding: 9px 0;
  }
  .work-with__btn {
    display: flex;
    align-items: center;
    flex-direction: row-reverse;
    gap: 6px;
    top: 0;
  }
  .work-with__btn-ico {
    transform: scale(1);
  }
  .work-with__btn-name {
    font-size: 10px;
  }
  .work-with__item:hover .work-with__btn-ico {
    width: 30px;
    height: 30px;
    transform: scale(1.05);
  }
  .work-with__item:hover {
    padding: 19px 0;
  }
  .work-with__title span {
    text-align: left;
  }
  .why__wrap {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 20px;
    overflow-y: scroll;
    padding-bottom: 10px;
  }
  .why__item {
    width: 220px;
    flex-shrink: 0;
  }
  .why__item:after,
  .why__item:before {
    content: none;
  }
  .contact-section {
    padding: 40px 0;
  }
  .how-work__title span:last-child {
    text-align: left;
  }
  .how-work__item {
    flex-direction: column;
    gap: 0;
    margin-bottom: 20px;
  }
  .trusted__slider-item {
    max-width: 223px;
    width: 100%;
    flex-direction: column;
  }
  .trusted .swiper-slide {
    width: auto;
    box-sizing: border-box;
  }
  .footer-form {
    padding: 24px 15px 20px;
  }
  .footer__col-last {
    margin: 0 -15px;
    padding-bottom: 20px;
  }
  .footer__col {
    display: flex;
    gap: 25px;
    flex-direction: column;
    padding-top: 15px;
    padding-bottom: 25px;
  }
  .footer__menu {
    margin-bottom: 0;
  }
  .copyright {
    padding: 20px 15px;
    margin: 0 -15px;
    font-size: 12px;
  }
  .mission__item.active {
    max-height: 500px;
    height: auto;
  }
  .mission__item-num {
    right: -5px;
    bottom: auto;
    top: -24px;
  }
  .mission {
    padding-top: 37px;
  }
  .mission__item-more {
    position: relative;
    bottom: 0;
    margin-top: 20px;
  }
  .mission__item-desc {
    max-height: 0;
    transition-duration: 0.3s;
  }
  .mission__item.active .mission__item-desc {
    max-height: 500px;
  }
  .why {
    padding: 40px 0 29px;
  }
  .contact-section__title span:last-child {
    text-align: left;
  }
  .contact-section__title {
    /* left:0; */
    margin-left: auto;
    margin-right: auto;
  }
  .how-work {
    padding: 37px 0 3px;
  }
  .how-work__item-content {
    border-bottom: none;
    position: relative;
  }
  .how-work__item-content:after {
    content: '';
    display: block;
    width: 74%;
    height: 1px;
    background-color: #999797;
    position: absolute;
    right: 0;
    bottom: 0;
  }
  .how-work__item-content:before {
    content: '';
    display: block;
    width: 4px;
    height: 4px;
    background-color: var(--main-orange);
    position: absolute;
    left: 27px;
    bottom: -2px;
  }
  .how-work__item__num:before {
    content: none;
  }
  .how-work__item:last-child .how-work__item-content:after,
  .how-work__item:last-child .how-work__item-content:before {
    content: none;
  }
  .cases {
    padding: 40px 0 49px;
  }
  .trusted {
    padding: 36px 0 39px;
  }
  .trusted__title {
    margin-left: 0;
    margin-bottom: 18px;
  }
  .trusted__slider-item-pos {
    font-size: 12px;
    margin-bottom: 5px;
  }
  .footer__col-first {
    padding-top: 35px;
    padding-bottom: 16px;
  }
  .header__menu.active a {
    font-size: 16px;
  }
  .hero .hero__title-bottom span,
  .hero .hero__title-top {
    pointer-events: none;
  }

  .content h1 {
    font-size: 28px;
  }
  .content h2 {
    font-size: 24px;
  }
  .content h3 {
    font-size: 22px;
  }
  .content h4 {
    font-size: 20px;
  }
  .content h5 {
    font-size: 18px;
  }
}
