@font-face {
  font-family: "Avenir";
  src: url("./../fonts/AvenirNextCyr-Medium.woff");
  font-weight: normal;
}

@font-face {
  font-family: "Avenir";
  src: url("./../fonts/AvenirNextCyr-Demi.woff");
  font-weight: 600;
}

@font-face {
  font-family: "Avenir";
  src: url("./../fonts/AvenirNextCyr-Bold.woff");
  font-weight: 700;
}

* {
  padding: 0;
  margin: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html {
  overflow-x: hidden;
}

body {
  min-height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  font-family: 'Avenir';
  font-size: 16px;
  font-weight: 600;
  overflow-x: hidden;
  position: relative;
  cursor: default;
}

body[menu_state="open"] {
  max-height: 100vh;
  overflow-y: hidden;
}

ul, ol {
  list-style: none;
}

a,
a:visited,
a:focus,
a:hover,
a:active {
  text-decoration: none;
  color: inherit;
}

h1 {
  font-size: 2.05rem;
}

h2 {
  font-size: 1.5rem;
}

h3 {
  font-size: 1.17rem;
}

p {
  font-size: 0.9375rem;
}

p:not(:last-child) {
  margin-bottom: 14px;
}

input,
button,
.btn {
  font: inherit;
  font-size: 11px;
  letter-spacing: inherit;
  color: #fff;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
  -webkit-animation-name: mui-auto-fill-cancel;
          animation-name: mui-auto-fill-cancel;
  -webkit-animation-duration: 10ms;
          animation-duration: 10ms;
}

input:hover, input:active, input:focus, input:focus-visible,
button:hover,
button:active,
button:focus,
button:focus-visible,
.btn:hover,
.btn:active,
.btn:focus,
.btn:focus-visible {
  border: none;
  -webkit-box-shadow: none;
          box-shadow: none;
  outline: transparent;
}

/* Change autocomplete styles in WebKit */
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus {
  border: none;
  -webkit-text-fill-color: #fff;
  -webkit-box-shadow: 0 0 0px 1000px #000 inset;
}

/* Autocomplete styles end */
.btn-wrapper {
  color: #fff;
}

.btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border: none;
  text-transform: uppercase;
}

.btn--grey {
  width: 120px;
  height: 42px;
  background: #494949;
}

.btn--red {
  width: 78px;
  height: 38px;
  background: #f00c17;
}

.page {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}

.page__img {
  width: 100%;
  height: 243px;
  -o-object-fit: cover;
     object-fit: cover;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin-right: auto;
  margin-left: auto;
}

.row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.red_header {
  margin-bottom: 20px;
  text-transform: uppercase;
  color: #f00c17;
}

.black_header {
  text-transform: uppercase;
}

.section-padding {
  padding-top: 52px;
  padding-bottom: 52px;
}

.section-padding-s {
  padding-top: 42px;
  padding-bottom: 42px;
}

.section-padding-top {
  padding-top: 52px;
}

.subtitle-margin-s {
  margin-bottom: 3px;
}

.subtitle-margin-m {
  margin-bottom: 14px;
}

.subtitle-margin-l {
  margin-bottom: 26px !important;
}

.arrow-list,
.ordered-list {
  font-size: 0.9375rem;
}

.arrow-item,
.ordered-item {
  position: relative;
  padding-left: 22px;
}

.arrow-item:first-of-type,
.ordered-item:first-of-type {
  margin-top: 18px;
}

.arrow-item:not(:last-of-type),
.ordered-item:not(:last-of-type) {
  margin-bottom: 14px;
}

.arrow-item:last-of-type,
.ordered-item:last-of-type {
  margin-bottom: 18px;
}

.arrow-item::before,
.ordered-item::before {
  color: #f00c17;
  position: absolute;
  left: 0;
}

.arrow-item {
  padding-left: 28px;
}

.arrow-item::before {
  content: '';
  display: block;
  margin-top: -0.18em;
  width: 1.62em;
  height: 1.5em;
  background: url(../img/ar.png) left/contain no-repeat;
}

.ordered-item::before {
  content: counter(li, decimal-leading-zero);
  counter-increment: li;
  -webkit-transform: scaleX(0.9) translateX(-5.5%);
      -ms-transform: scaleX(0.9) translateX(-5.5%);
          transform: scaleX(0.9) translateX(-5.5%);
}

.ordered-item:not(:last-child)::after {
  content: '';
  position: absolute;
  display: block;
  top: 17px;
  left: 8px;
  width: 2px;
  height: 86%;
  background-image: -o-repeating-linear-gradient(top, #fff 2px, #d4d4d4 2px 8px, #fff 8px 10px);
  background-image: repeating-linear-gradient(to bottom, #fff 2px, #d4d4d4 2px 8px, #fff 8px 10px);
}

.ordered-list {
  counter-reset: li;
}

.col-2-extra-gap {
  display: grid;
  grid-template-columns: repeat(2, auto);
  grid-gap: 60px 20px;
}

.col-2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  grid-gap: 20px;
}

.col-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  grid-gap: 20px;
}

.col-7 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(80px, 1fr));
  grid-gap: 20px;
}

.align-by-title {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  grid-column-gap: 20px;
  grid-template-areas: 'title1 title2' 'content1 content2';
}

.align-by-title__title-1 {
  grid-area: title1;
}

.align-by-title__title-2 {
  grid-area: title2;
}

.align-by-title__content-1 {
  grid-area: content1;
}

.align-by-title__content-2 {
  grid-area: content2;
}

.grey-bg {
  background-color: #f0f0f0;
}

.scaleText {
  -webkit-transform: scaleX(0.8);
      -ms-transform: scaleX(0.8);
          transform: scaleX(0.8);
}

.scaleTextLefted {
  -webkit-transform: scaleX(0.8) translateX(-12.5%);
      -ms-transform: scaleX(0.8) translateX(-12.5%);
          transform: scaleX(0.8) translateX(-12.5%);
  width: 120%;
}

.scaleTextRighted {
  -webkit-transform: scaleX(0.8) translateX(12.5%);
      -ms-transform: scaleX(0.8) translateX(12.5%);
          transform: scaleX(0.8) translateX(12.5%);
}

.scaleTextLight {
  -webkit-transform: scaleX(0.9);
      -ms-transform: scaleX(0.9);
          transform: scaleX(0.9);
}

.scaleTextLightLefted {
  -webkit-transform: scaleX(0.9) translateX(-5.5%);
      -ms-transform: scaleX(0.9) translateX(-5.5%);
          transform: scaleX(0.9) translateX(-5.5%);
  width: 110%;
}

.scaleTextLightRighted {
  -webkit-transform: scaleX(0.9) translateX(5.5%);
      -ms-transform: scaleX(0.9) translateX(5.5%);
          transform: scaleX(0.9) translateX(5.5%);
}

.d-ib {
  display: inline-block;
}

.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding-top: 5em;
  display: none;
}

.modal__wrap {
  background-color: white;
  width: 80%;
  padding: 19px 0 19px 19px;
  position: relative;
  height: calc(100vh - 60px - 56px);
}

.modal__content {
  padding-right: 19px;
  max-height: 100%;
  overflow-y: scroll;
  overflow-x: hidden;
}

.close-modal {
  position: absolute;
  top: 5px;
  right: 5px;
  width: 30px;
  height: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  cursor: pointer;
}

.close-modal__icon {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 36 36' style='enable-background:new 0 0 36 36' xml:space='preserve'%3E%3Cpath d='M21.2 18 35.8 3.4c.3-.3.3-.8 0-1.1L33.7.2c-.2-.1-.4-.2-.6-.2-.2 0-.4.1-.6.2L18 14.8 3.4.2c-.3-.3-.8-.3-1.1 0L.2 2.3c-.3.3-.3.8 0 1.1L14.8 18 .2 32.6c-.3.3-.3.8 0 1.1l2.1 2.1c.2.1.4.2.6.2s.4-.1.6-.2L18 21.2l14.6 14.6c.2.2.4.2.6.2.2 0 .4-.1.6-.2l2.1-2.1c.3-.3.3-.8 0-1.1L21.2 18z' style='fill:%238e8a8c'/%3E%3C/svg%3E");
          mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 36 36' style='enable-background:new 0 0 36 36' xml:space='preserve'%3E%3Cpath d='M21.2 18 35.8 3.4c.3-.3.3-.8 0-1.1L33.7.2c-.2-.1-.4-.2-.6-.2-.2 0-.4.1-.6.2L18 14.8 3.4.2c-.3-.3-.8-.3-1.1 0L.2 2.3c-.3.3-.3.8 0 1.1L14.8 18 .2 32.6c-.3.3-.3.8 0 1.1l2.1 2.1c.2.1.4.2.6.2s.4-.1.6-.2L18 21.2l14.6 14.6c.2.2.4.2.6.2.2 0 .4-.1.6-.2l2.1-2.1c.3-.3.3-.8 0-1.1L21.2 18z' style='fill:%238e8a8c'/%3E%3C/svg%3E");
  background-color: #000;
  width: 15px;
  height: 15px;
}

.header-modal {
  color: #f00c17;
  margin-bottom: 23px;
}

.modal__content p {
  margin-bottom: 0;
}

.modal-list {
  margin-bottom: 20px;
}

.modal-txt {
  font-weight: 700;
}

.modal-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 25px;
  cursor: pointer;
}

.contacts {
  padding-top: 10px;
  padding-bottom: 10px;
  background: #000;
  color: #fff;
}

.contacts__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.contacts__item {
  font-size: 12px;
}

.contacts__phone,
.contacts__email {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-preferred-size: max-content;
      flex-basis: max-content;
}

.contacts__phone::before,
.contacts__email::before {
  content: '';
  display: inline-block;
  width: 16px;
  height: 16px;
  margin-right: 10px;
}

.contacts__phone::before {
  background: url(../img/tel-min.png) center/contain no-repeat;
}

.contacts__email {
  padding-right: 25%;
}

.contacts__email::before {
  background: url(../img/email-min.png) center/contain no-repeat;
}

.contacts__langs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  justify-self: flex-end;
  grid-gap: 14px;
}

.langs__item {
  text-transform: uppercase;
}

.active-link {
  color: #f00c17 !important;
  width: auto;
}

.active-link::after {
  content: '';
  display: block;
  width: 100%;
  height: 1px;
  background: #f00c17;
}

.header {
  position: relative;
}

.header__row {
  height: 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.logo__link {
  width: 150px;
  height: 50px;
  display: inline-block;
  background: url(../img/logo-min.png) left/contain no-repeat;
}

.header__nav {
  width: 55%;
}

.nav__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  text-transform: uppercase;
  white-space: nowrap;
  color: #000;
  font-size: 14px;
  font-weight: 700;
  -webkit-transition: .2s;
  -o-transition: .2s;
  transition: .2s;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  overflow-x: hidden;
  overflow-y: auto;
}

.langs__link,
.nav__link {
  display: inline-block;
}

.burger {
  display: none;
  position: relative;
  width: 26px;
  height: 26px;
  justify-self: flex-end;
  cursor: pointer;
  background-color: unset;
}

.burger__line,
.burger__line::before,
.burger__line::after {
  display: block;
  position: absolute;
  width: 100%;
  height: 2px;
  background-color: #000;
  -webkit-transition-duration: 0.2s;
       -o-transition-duration: 0.2s;
          transition-duration: 0.2s;
}

.burger__line::before {
  content: '';
  top: -8px;
}

.burger__line::after {
  content: '';
  top: 8px;
}

.burger[state="open"] .burger__line {
  -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
          transform: rotate(45deg);
  background-color: transparent;
}

.burger[state="open"] .burger__line::before {
  top: 0;
  -webkit-transform: rotate(0deg);
      -ms-transform: rotate(0deg);
          transform: rotate(0deg);
}

.burger[state="open"] .burger__line::after {
  top: 0;
  -webkit-transform: rotate(90deg);
      -ms-transform: rotate(90deg);
          transform: rotate(90deg);
}

.burger[state="open"] ~ .nav__list {
  left: 0;
}

.footer {
  padding-top: 45px;
  padding-bottom: 45px;
  font-size: 11px;
  color: #fff;
  background: #000;
}

.footer__row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.callback-form {
  padding-right: 70px;
}

.callback-form__field {
  position: relative;
}

.callback-form__field::before {
  border-bottom: 1px solid #620509;
  left: 0px;
  bottom: 6px;
  content: " ";
  position: absolute;
  right: 0px;
  -webkit-transition: border-bottom-color 200ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;
  -o-transition: border-bottom-color 200ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;
  transition: border-bottom-color 200ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;
  pointer-events: none;
}

input[type=text],
input[type=tel],
input[type=email] {
  display: block;
  margin: 0px;
  padding: 4px 0px 5px;
  border: 0px;
  background: none;
  min-width: 0px;
  width: 100%;
  height: 32px;
}

input[type=text]::-webkit-input-placeholder, input[type=tel]::-webkit-input-placeholder, input[type=email]::-webkit-input-placeholder {
  color: #fff;
}

input[type=text]::-moz-placeholder, input[type=tel]::-moz-placeholder, input[type=email]::-moz-placeholder {
  color: #fff;
}

input[type=text]:-ms-input-placeholder, input[type=tel]:-ms-input-placeholder, input[type=email]:-ms-input-placeholder {
  color: #fff;
}

input[type=text]::-ms-input-placeholder, input[type=tel]::-ms-input-placeholder, input[type=email]::-ms-input-placeholder {
  color: #fff;
}

input[type=text]::placeholder,
input[type=tel]::placeholder,
input[type=email]::placeholder {
  color: #fff;
}

.callback-form__checkbox {
  margin-top: 8px;
  margin-bottom: 19px;
}

input[type=checkbox] {
  margin-right: 12px;
  width: 1.34em;
  height: 1.34em;
  border-radius: 0.25em;
  vertical-align: top;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  border: 1px solid #f00c17;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  cursor: pointer;
}

input[type=checkbox]:checked {
  background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiIHN0YW5kYWxvbmU9Im5vIj8+DQo8c3ZnIHdpZHRoPSIxMiIgaGVpZ2h0PSI5IiB2aWV3Qm94PSIwIDAgMTIgOSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4NCiAgPHBhdGggZD0iTTQuNTc1IDguOTc3cy0uNDA0LS4wMDctLjUzNi0uMTY1TC4wNTcgNS42NGwuODI5LTEuMjI3TDQuNDcgNy4yNjggMTAuOTIxLjA4NmwuOTIzIDEuMTAzLTYuODYzIDcuNjRjLS4xMzQtLjAwMy0uNDA2LjE0OC0uNDA2LjE0OHoiIGZpbGw9IiNGRkYiIGZpbGwtcnVsZT0iZXZlbm9kZCIvPg0KPC9zdmc+) 50% 40%/80% no-repeat;
}

.agreement__label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.agreement__checkbox {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.agreement__link {
  display: inline-block;
  color: #f00c17 !important;
  cursor: pointer;
}

.footer-contacts__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  height: 32px;
  padding-bottom: 9px;
}

.footer-contacts__row:first-child {
  margin-right: 40px;
}

.bottom_nav_btns {
  padding-top: 40px;
  padding-bottom: 40px;
  background-color: #f0f0f0;
}

.bottom_nav_btns-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-column-gap: 20px;
}

.bottom_nav_btns__btn {
  position: relative;
  padding: 20px 26px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: white;
  text-transform: uppercase;
}

.bottom_nav_btns__btn::after {
  content: '';
  position: absolute;
  display: block;
  right: 20px;
  width: 2.38em;
  height: 2.2em;
  background: url(../img/ar.png) right/contain no-repeat;
}

.bottom_nav_btns__btn--txt {
  width: 96%;
}

.banner {
  color: #fff;
  background: url(../img/banner-main0-min.png) center/cover no-repeat;
}

.banner__content {
  height: 384px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.banner-txt {
  margin-top: 76px;
  text-transform: uppercase;
}

.banner-btn {
  margin-top: 34px;
  font-size: 11px;
}

.main__content {
  display: grid;
  grid-template-columns: auto 37%;
  grid-gap: 28px;
}

.main__img {
  width: 100%;
  max-width: 280px;
  display: block;
  -o-object-fit: contain;
     object-fit: contain;
}

.main__img--indented {
  padding-top: 25px;
}

.right-col {
  -ms-flex-item-align: baseline;
      align-self: baseline;
  justify-self: end;
}

.services__item {
  text-align: center;
}

.services__img {
  display: block;
  width: 100%;
  height: 167px;
  -o-object-fit: contain;
     object-fit: contain;
}

.solutions {
  background-image: url(../img/resh-main-min.png);
  background-position: top right;
  background-size: auto calc(100% - 52px);
  background-repeat: no-repeat;
}

.solutions__item:not(:last-child) {
  width: 68%;
}

.solutions__item:last-child {
  width: 60%;
}

.transport_manage {
  padding-top: 73px;
}

.transport_manage-banner {
  height: 322px;
}

.possibilities {
  background-color: #f0f0f0;
}

.possibilities__list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: repeat(3, auto);
}

.possibilities__list .arrow-item {
  margin-top: 0;
}

.delivery__wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-column-gap: 8px;
}

.delivery__item:not(:last-child) {
  margin-bottom: 52px;
}

.delivery-request {
  grid-row-start: 1;
  grid-row-end: 3;
  grid-column-start: 1;
  grid-column-end: 2;
}

.delivery-planning {
  grid-row-start: 3;
  grid-row-end: 5;
  grid-column-start: 1;
  grid-column-end: 2;
}

.opportunities__list {
  -webkit-columns: 2;
     -moz-columns: 2;
          columns: 2;
}

.opportunities__list .arrow-item {
  -webkit-column-break-inside: avoid;
     -moz-column-break-inside: avoid;
          break-inside: avoid-column;
}

.opportunities__list .arrow-item {
  margin-top: 0;
}

.why__item {
  padding: 22px 24px;
  background: #fff;
}

.clients__list {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.clients__item {
  max-width: 98px;
  justify-self: center;
}

.clients__item img {
  display: block;
  width: 100%;
  background-color: #f0f0f0;
}

.moduls__module {
  background-color: white;
  padding: 20px;
}

.moduls-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  grid-gap: 20px;
}

.development__list {
  margin-top: 34px;
}

.development__item {
  padding: 20px 24px 38px;
}

.integration__list {
  margin-top: 48px;
}

.refactor__list {
  margin-top: 45px;
}

.refactor__item {
  padding-left: 35px;
}

.refactor__item:not(:last-child) {
  padding-bottom: 30px;
}

.refactor__item:not(:last-child)::after {
  top: 20px;
  left: 10px;
  width: 1px;
  height: 95%;
}

.refactor__item::before {
  font-size: 1.17rem;
  font-weight: 700;
}

.integration__item {
  background: #fff;
  padding: 20px 24px;
}

.functions__list,
.features__list {
  grid-row-gap: 0;
}

.functions__item:first-of-type,
.features__item:first-of-type {
  margin-top: 0;
}

@media (max-width: 1400px) {
  .container {
    max-width: 1000px;
  }
}

@media (max-width: 1200px) {
  .container {
    max-width: 800px;
  }
}

@media (max-width: 992px) {
  .container {
    max-width: 700px;
    padding-left: 10px;
    padding-right: 10px;
  }
  .solutions {
    background-image: none;
  }
  .solutions__item {
    width: auto !important;
  }
}

@media (max-width: 768px) {
  .container {
    max-width: 720px;
  }
  .transport_manage__manage {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .transport_manage__manage--txt, .transport_manage__manage--img {
    width: 100%;
  }
}

@media (max-width: 576px) {
  .container {
    max-width: 540px;
  }
  .main__content, .moduls-wrap, .accounting__wrap, .bottom_nav_btns-wrap, .possibilities__list, .delivery__wrap, .align-by-title, .footer__row {
    display: block;
  }
  .moduls__module, .accounting__item, .bottom_nav_btns__btn, .delivery__item, .callback-form {
    margin-bottom: 20px;
  }
  .right-col {
    display: none;
  }
  .col-7 {
    grid-gap: 10px;
  }
  .opportunities__list {
    -webkit-columns: unset;
       -moz-columns: unset;
            columns: unset;
  }
  .align-by-title__content-1 {
    margin-bottom: 14px;
  }
  .callback-form {
    padding-right: 30px;
  }
  .contacts__email {
    padding-right: unset;
  }
  .burger {
    display: block;
  }
  .header__nav {
    width: auto;
  }
  .nav__list {
    position: absolute;
    top: 60px;
    left: 100%;
    width: 100%;
    height: calc(100vh - 60px - 36px);
    display: block;
    background: #fff;
    z-index: 1;
  }
  .nav__item {
    padding-top: 20px;
    padding-bottom: 20px;
    padding-left: calc(48px + env(safe-area-inset-left));
    padding-right: calc(48px + env(safe-area-inset-right));
  }
  .nav__link {
    -webkit-transform: scaleX(0.8) translateX(-12.5%);
        -ms-transform: scaleX(0.8) translateX(-12.5%);
            transform: scaleX(0.8) translateX(-12.5%);
  }
}

@media (max-width: 576px) {
  .contacts__item {
    font-size: 11px;
  }
}
