@font-face {
  font-family: Jost;
  font-display: swap;
  src: url("../fonts/Jost-300.woff2") format("woff2"), url("../fonts/Jost-300.woff") format("woff");
  font-weight: 300;
  font-style: normal;
}
@font-face {
  font-family: Jost;
  font-display: swap;
  src: url("../fonts/Jost-500.woff2") format("woff2"), url("../fonts/Jost-500.woff") format("woff");
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: Jost;
  font-display: swap;
  src: url("../fonts/Jost-700.woff2") format("woff2"), url("../fonts/Jost-700.woff") format("woff");
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-family: Jost;
  font-display: swap;
  src: url("../fonts/Jost-600.woff2") format("woff2"), url("../fonts/Jost-600.woff") format("woff");
  font-weight: 600;
  font-style: normal;
}
@font-face {
  font-family: Jost;
  font-display: swap;
  src: url("../fonts/Jost-900.woff2") format("woff2"), url("../fonts/Jost-900.woff") format("woff");
  font-weight: 900;
  font-style: normal;
}
@font-face {
  font-family: Jost;
  font-display: swap;
  src: url("../fonts/Jost-400.woff2") format("woff2"), url("../fonts/Jost-400.woff") format("woff");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: Jost;
  font-display: swap;
  src: url("../fonts/Jost-800.woff2") format("woff2"), url("../fonts/Jost-800.woff") format("woff");
  font-weight: 800;
  font-style: normal;
}
* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background: #fff;
  font-family: "Jost", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  color: #21414E;
}

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

svg {
  flex-shrink: 0;
}

a {
  color: inherit;
  text-decoration: none;
  transition: all 0.28s ease;
}

button,
input,
textarea {
  font: inherit;
}

button {
  padding: 0;
  border: none;
  background: none;
  cursor: pointer;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

p,
h1,
h2,
h3,
h4 {
  margin: 0;
}

.container {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  position: relative;
  padding: 0 22px;
}

.row {
  display: flex;
  align-items: stretch;
}

.row-space {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

section {
  position: relative;
  margin-bottom: 70px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 2px 5px 2px 16px;
  min-height: 46px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
  white-space: nowrap;
  background: rgba(255, 255, 255, 0.34);
  color: #fff;
  transition: all 0.28s ease;
}
.btn span:last-child {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #ffffff;
  color: #21414E !important;
  font-size: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.28s ease;
}
.btn:hover {
  background: rgba(255, 255, 255, 0.54);
}
.btn:hover span:last-child {
  transform: rotate(45deg);
}

.btn-line {
  border: 1px solid rgba(255, 255, 255, 0.34);
  color: #ffffff;
  background: rgba(255, 255, 255, 0.04);
}
.btn-line:hover {
  background: rgba(255, 255, 255, 0.09);
}
.btn-line .btn-arrow {
  background: rgba(255, 255, 255, 0.12);
  box-shadow: none;
}
.btn-line .btn-arrow path {
  fill: #ffffff;
}

.btn-primary,
.btn-red {
  background: #d82f2a;
  color: #ffffff;
}
.btn-primary:hover,
.btn-red:hover {
  background: #bf2925;
}

.btn-primary {
  padding-left: 18px;
}

h2 {
  font-size: 34px;
  margin-bottom: 28px;
  color: #21414E;
}

.header {
  position: relative;
  padding: 0 0 54px;
  margin-bottom: 18px;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(19, 61, 79, 0.92) 0%, rgba(18, 56, 72, 0.96) 100%);
  margin-bottom: 0px;
  border-radius: 0 0 50px 50px;
  z-index: 1;
}
.header__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 0 0 50px 50px;
  object-fit: cover;
}
.header::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 82% 22%, rgba(255, 255, 255, 0.16) 0%, rgba(255, 255, 255, 0) 24%), radial-gradient(circle at 18% 78%, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0) 28%), linear-gradient(180deg, rgba(9, 31, 42, 0.18) 0%, rgba(9, 31, 42, 0.38) 100%);
  pointer-events: none;
}
.header > .container.row {
  position: relative;
  z-index: 2;
}
.header__contacts {
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.header__contacts a {
  display: flex;
}

.header__top {
  position: relative;
  z-index: 3;
  padding: 14px 0 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.header__top-inner {
  gap: 24px;
}

.header__brand {
  display: flex;
  gap: 18px;
  min-width: 250px;
}

.header__logo {
  width: 70px;
  flex-shrink: 0;
}
.header__logo img {
  width: 100%;
}

.header__brand-info {
  display: flex;
  flex-direction: column;
  gap: 3px;
  font-size: 11px;
  line-height: 1.35;
  color: rgba(255, 255, 255, 0.78);
  letter-spacing: 0.01em;
}

.header__nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  min-width: 0;
  margin-left: auto;
}
.header__nav a {
  font-size: 14px;
  font-weight: 400;
  line-height: 1;
  color: rgba(255, 255, 255, 0.78);
}
.header__nav a:hover {
  color: #ffffff;
}

.header__top-actions {
  gap: 10px;
  flex-shrink: 0;
}

.header__contact {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  line-height: 1;
  color: rgba(255, 255, 255, 0.88);
  white-space: nowrap;
}
.header__contact img {
  width: 12px;
  height: 12px;
}

.header__services-btn {
  padding: 5px 14px;
  min-height: 34px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
}
.header__services-btn img {
  width: 25px;
  height: 25px;
}

.header__calc-btn {
  padding: 5px 5px 5px 16px;
  min-height: 34px;
  font-size: 14px;
  font-weight: 500;
  color: #ffffff;
}
.header__calc-btn span:last-child {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #ffffff;
  color: #d82f2a;
  font-size: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.header__main {
  display: flex;
  gap: 28px;
  align-items: center;
  height: 100%;
  padding-top: 54px;
}

.header__left {
  width: 50%;
}

.header__title, h1 {
  font-size: 45px;
  line-height: 117%;
  font-weight: 500;
  text-transform: uppercase;
  color: #ffffff;
  margin-bottom: 29px;
}

.header__text {
  font-size: 24px;
  color: #ffffff;
  margin-bottom: 29px;
}

.header__prefs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  max-width: 615px;
}

.header__prefs__item {
  padding: 10px 14px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.34);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  font-size: 16px;
  color: #ffffff;
}

.header__right {
  width: 50%;
  max-width: 564px;
  flex-shrink: 0;
  margin-left: auto;
}

.form-big {
  padding: 37px;
  padding-bottom: 20px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.34);
  border: 1px solid rgba(255, 255, 255, 0.28);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.main-form__field {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 10px;
}

.main-form__field--small {
  width: calc(33.333% - 7px);
  margin-bottom: 0;
}

.main-form__row {
  display: flex;
  gap: 10px;
  margin-bottom: 10px;
}

.main-form__label {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
}

.main-form__input {
  width: 100%;
  height: 58px;
  padding: 0 20px;
  border: 1px solid rgba(32, 67, 83, 0.08);
  border-radius: 6px;
  background: #ffffff;
  font-size: 16px;
  line-height: 1;
  font-weight: 400;
  color: #21414E;
  outline: none;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.4);
  transition: border-color 0.28s ease;
}
.main-form__input::placeholder {
  color: #8ca0ad;
}
.main-form__input:focus {
  border-color: rgba(216, 47, 42, 0.45);
}

.main-form__button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  min-width: 164px;
  height: 53px;
  margin: 20px auto 0;
  padding: 0 10px 0 20px;
  border-radius: 999px;
  background: #d82f2a;
  color: #ffffff;
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
  transition: background 0.28s ease;
}
.main-form__button:hover {
  background: #bf2925;
}

.main-form__button-icon {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #ffffff;
  color: #d82f2a;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
}

.main-text {
  margin-bottom: 50px;
}
.main-text .container * {
  max-width: 951px;
}
.main-text h2 {
  margin: 0 0 16px;
  font-size: 30px;
  line-height: 1.05;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: #21414E;
}
.main-text p {
  font-size: 24px;
  color: #21414E;
}
.main-text ul {
  margin-top: 14px;
  display: grid;
  gap: 8px;
  padding-left: 18px;
  list-style: disc;
}
.main-text ul li {
  font-size: 13px;
  line-height: 1.58;
  color: #21414E;
}
.main-text ul li strong {
  font-weight: 500;
  color: #21414E;
}

.services h2 {
  color: #ffffff;
  margin-bottom: 30px;
}
.services .container {
  position: relative;
  padding: 28px;
  border-radius: 20px;
  background: url("../img/bg2.png") no-repeat center;
  background-size: cover;
  overflow: hidden;
}
.services .container::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 18%, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0) 25%), radial-gradient(circle at 18% 78%, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0) 28%);
  pointer-events: none;
}
.services .container h2,
.services .container .services__list {
  position: relative;
  z-index: 2;
}

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

.services__item {
  position: relative;
  height: 228px;
  border-radius: 10px;
  overflow: hidden;
  background: #dce3e8;
  box-shadow: 0 8px 20px rgba(7, 31, 43, 0.12);
}
.services__item .services__item-icon {
  width: 100%;
  height: 100%;
}
.services__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.services__item-title {
  position: absolute;
  left: 5px;
  right: 5px;
  bottom: 10px;
  margin: 0;
  padding: 13px 5px;
  border-radius: 12px;
  background: rgba(240, 245, 248, 0.34);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  font-size: 16px;
  font-weight: 600;
  color: #ffffff;
  text-align: center;
}

.prefs {
  padding: 2px 0 18px;
}

.prefs__main {
  display: flex;
  align-items: center;
  margin-bottom: 28px;
}
.prefs__main:nth-of-type(2) .prefs__main__left {
  order: 2;
  margin-left: -44px;
  margin-right: 0;
  padding-left: 50px;
}
.prefs__main:nth-of-type(2) .prefs__main__right {
  order: 1;
}

.standart-item {
  background: rgba(211, 234, 255, 0.32);
  border: 1px solid #D3EAFF;
  border-radius: 8px;
  backdrop-filter: blur(11px);
  -webkit-backdrop-filter: blur(11px);
  padding: 10px;
}
.standart-item__inner {
  background: #fff;
  border-radius: 8px;
  height: 100%;
  width: 100%;
  padding: 20px 15px;
}
.standart-item p,
.standart-item .standart-item__text {
  font-size: 13px;
  line-height: 1.58;
  color: #21414E;
}

.prefs__main:first-of-type .prefs__main__left {
  margin-right: -48px;
}

.prefs__main__left {
  position: relative;
  z-index: 3;
  width: 620px;
  min-width: 620px;
  height: 292px;
  padding: 20px 20px 38px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: rgba(211, 234, 255, 0.32);
  border: 1px solid #D3EAFF;
  border-radius: 8px;
  backdrop-filter: blur(11px);
  -webkit-backdrop-filter: blur(11px);
}
.prefs__main__left svg {
  width: 43px;
  height: 43px;
}
.prefs__main__left p {
  max-width: 515px;
  font-size: 22px;
  line-height: 1.38;
  font-weight: 400;
  color: #21414E;
  letter-spacing: -0.01em;
}

.prefs__main__right {
  position: relative;
  flex: 1 1 auto;
  height: 347px;
  border-radius: 8px;
  overflow: hidden;
}
.prefs__main__right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.prefs__list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.prefs__list__item {
  min-height: 240px;
  display: flex;
  flex-direction: column;
}
.prefs__list__item svg {
  width: 32px;
  height: 32px;
  margin-bottom: 22px;
}
.prefs__list__item p {
  font-size: 17px;
  line-height: 1.48;
  color: #456171;
}

.geography__list {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
  align-items: start;
}

.geography__item {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.geography__item .services__item {
  height: 143px;
  background: #ffffff;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(23, 57, 75, 0.06);
  overflow: hidden;
}
.geography__item .services__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.geography__item .services__item p {
  position: absolute;
  left: 10px;
  right: 10px;
  bottom: 10px;
  margin: 0;
  padding: 8px 10px;
  border-radius: 8px;
  background: rgba(245, 248, 249, 0.34);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  font-size: 15px;
  line-height: 1.15;
  font-weight: 500;
  text-align: center;
  color: #ffffff;
}

.geography__item__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 25px;
}

.geography__item__city {
  padding: 8px 15px;
  border-radius: 8px;
  background: #FEF8F8;
  border: 1px solid #FFD3D4;
  font-size: 18px;
  color: #21414E;
}

.geography-ru .geography__item__city {
  background: #EEF7FF;
  border: 1px solid #D3EAFF;
}

.geography-kz .geography__item__city {
  background: #FEFFEE;
  border: 1px solid #FFEFD3;
}

.geography-by .geography__item__city {
  background: #EEFFFC;
  border: 1px solid #BBF4EF;
}

.geography__icon {
  align-items: center;
  justify-content: center;
  width: 97px;
  height: 56px;
  display: flex;
  margin-top: 26px;
  margin-left: auto;
  margin-right: auto;
}

.types__wrapper {
  padding: 20px;
  border-radius: 20px;
  background: #21414E;
}
.types__wrapper h2 {
  margin-bottom: 20px;
  font-size: 20px;
  color: #ffffff;
}

.types__list {
  display: flex;
  flex-wrap: wrap;
  gap: 15px 20px;
}
.types__list li {
  position: relative;
  display: flex;
}
.types__list li a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  color: white;
}
.types__list li a img {
  width: 20px;
  height: 20px;
}
.types__list li a:hover {
  color: rgba(255, 255, 255, 0.7);
}

.steps__wrapper {
  display: grid;
  grid-template-columns: 584px minmax(0, 1fr);
  gap: 14px;
  background: #EEF7FF;
  border-radius: 8px;
  border: 1px solid #D3EAFF;
  padding: 20px;
}

.steps__left {
  background: #fff;
  border-radius: 8px;
  position: relative;
  overflow: hidden;
  padding: 20px;
}
.steps__left h2 {
  position: absolute;
  top: 50px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  font-size: 26px;
  backdrop-filter: blur(11px);
  -webkit-backdrop-filter: blur(11px);
  background: rgba(255, 255, 255, 0.7);
  border-radius: 8px;
  padding: 20px;
  width: 80%;
  text-align: center;
}
.steps__left img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
}

.steps__right {
  padding-top: 20px;
  padding-bottom: 20px;
  max-width: 619px;
  margin-left: auto;
}

.steps__num {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: flex;
  border-radius: 50%;
  background: #ffffff;
  color: #21414E;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 600;
  line-height: 1;
  border: 1px solid #D3EAFF;
}

.steps__item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding-bottom: 14px;
  margin-bottom: 14px;
  position: relative;
}
.steps__item:not(:last-child)::after {
  content: "";
  position: absolute;
  left: 20px;
  top: 44px;
  height: calc(100% - 12px);
  width: 1px;
  background-image: repeating-linear-gradient(to bottom, #1f4a59 0 6px, transparent 6px 12px);
  opacity: 0.3;
}
.steps__item:not(:last-child):last-child {
  padding-bottom: 0;
}
.steps__item:last-child {
  padding-bottom: 0;
  margin-bottom: 0;
  border-bottom: none;
}
.steps__item:last-child .steps__num {
  background: #d82f2a;
  color: #fff;
  border: 1px solid #d82f2a;
}

.steps__title {
  margin-bottom: 10px;
  font-size: 24px;
  font-weight: 500;
  color: #21414E;
}

.steps__descr {
  font-size: 16px;
  color: #21414E;
  margin: 0;
}

.main-form {
  position: relative;
}

.main-form__wrapper {
  display: flex;
  z-index: 1;
  padding: 0;
  background: #21414E;
  border-radius: 0 0 30px 30px;
  overflow: hidden;
}
.main-form__wrapper .container {
  display: flex;
}

.main-form__left {
  position: relative;
  padding: 50px 20px;
  padding-top: 70px;
  min-height: 333px;
  background: url("../img/bg3.png") no-repeat center;
  background-size: cover;
  width: 50%;
}
.main-form__left h2 {
  font-size: 34px;
  color: #ffffff;
  max-width: 700px;
  margin-left: auto;
  line-height: 120%;
  margin-bottom: 50px;
}

.main-form__item {
  position: relative;
  z-index: 2;
  margin-left: auto;
  max-width: 700px;
  display: flex;
  flex-direction: column;
  gap: 27px;
}

.main-form__texts {
  display: flex;
  flex-wrap: wrap;
  gap: 0 20px;
}
.main-form__texts svg {
  width: 36px;
  height: 36px;
  margin-bottom: 12px;
}
.main-form__texts .main-form__title {
  margin-bottom: 8px;
  font-size: 20px;
  line-height: 1.3;
  font-weight: 500;
  color: #ffffff;
}
.main-form__texts p {
  width: 100%;
  font-size: 16px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.84);
}

.main-form__right {
  width: 50%;
  padding: 50px;
  padding-top: 70px;
  background: rgba(235, 240, 244, 0.12);
}
.main-form__right .form-big {
  max-width: 564px;
  margin-left: auto;
  margin-right: auto;
  height: 100%;
  width: 100%;
  background: rgba(236, 241, 245, 0.84);
  box-shadow: none;
}

.customers h2 {
  margin-bottom: 18px;
}
.customers > .container > p {
  margin-bottom: 30px;
  font-size: 18px;
  line-height: 1.55;
  color: #21414E;
}

.customers__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.customers__item {
  min-height: 120px;
}
.customers__item img {
  margin-bottom: 22px;
}
.customers__item p {
  margin-bottom: 11px;
  font-size: 20px;
  font-weight: 600;
}

.standart-item__text {
  display: block;
  font-size: 16px;
  max-width: 80%;
  color: #21414E;
}

.swiper-navs {
  display: flex;
  justify-content: flex-end;
  gap: 8px;
  position: absolute;
  right: 20px;
  top: 10px;
}

.swiper-prev,
.swiper-next {
  width: 40px;
  cursor: pointer;
  height: 40px;
  border-radius: 8px;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.28s ease;
  box-shadow: 0 18px 48px rgba(17, 45, 58, 0.22);
}
.swiper-prev:hover,
.swiper-next:hover {
  background: #d82f2a;
}
.swiper-prev:hover svg path,
.swiper-next:hover svg path {
  stroke: #fff;
}

.portfolio__item {
  display: block;
  padding: 8px;
  border-radius: 10px;
  background: #F1F8FF;
  border: 1px solid #D3EAFF;
}
.portfolio__item img {
  width: 100%;
  height: 203px;
  object-fit: cover;
  border-radius: 8px 8px 0 0;
  margin-bottom: 0px;
}
.portfolio__item:hover .portfolio__item-title {
  color: #d82f2a;
}

.portfolio__item-title {
  font-size: 18px;
  font-weight: 600;
  line-height: 110%;
  color: #21414E;
  background: #fff;
  padding: 20px 10px;
}

.about__wrapper {
  padding: 0px;
  border-radius: 20px;
  background: #21414E;
  gap: 32px;
}

.about__left {
  width: 45%;
  padding: 20px;
  min-width: 320px;
}
.about__left h2 {
  color: #fff;
}
.about__left p {
  margin-bottom: 18px;
  font-size: 18px;
  line-height: 1.62;
  color: rgba(255, 255, 255, 0.84);
}

.about__right {
  width: 65%;
  background: url("../img/bg4.png") no-repeat top;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0 20px 20px 0;
  background-size: cover;
}

.about__grid {
  width: 90%;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px 24px;
}

.about__item {
  min-height: 84px;
}

.about__num {
  margin-bottom: 6px;
  font-size: 40px;
  line-height: 1;
  font-weight: 600;
  color: #FF7570;
}

.about__descr {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.88);
}

.reviews > .container > p {
  max-width: 905px;
  margin-bottom: 30px;
  font-size: 18px;
  line-height: 1.55;
  color: #21414E;
}
.reviews .swiper-slide {
  height: auto;
  display: flex;
  flex-direction: column;
}
.reviews .standart-item {
  min-height: 190px;
  padding: 20px;
}
.reviews .standart-item__text {
  font-size: 18px;
  margin-bottom: 20px;
}

.reviews__name {
  margin-top: auto;
  font-size: 18px;
  line-height: 1.2;
  font-weight: 600;
  color: #21414E;
}

.faq__item {
  overflow: hidden;
  border: 1px solid #D3EAFF;
  border-radius: 8px;
  background: #F0F8FF;
  margin-bottom: 10px;
  padding: 14px 16px;
  max-width: 880px;
}
.faq__item:last-child {
  margin-bottom: 0;
}

.faq__item__show {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  cursor: pointer;
}
.faq__item__show p {
  font-size: 22px;
  line-height: 1.35;
  font-weight: 500;
  color: #21414E;
}
.faq__item__show.active .faq__trigger div:last-child {
  transform: translate(-50%, -50%) rotate(180deg);
}

.faq__trigger {
  position: relative;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #ffffff;
  border: 1px solid #D3EAFF;
  flex-shrink: 0;
}
.faq__trigger div {
  transition: all 0.28s ease;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 1.5px;
  background: #21414E;
  transform: translate(-50%, -50%);
}
.faq__trigger div:last-child {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq__item__hide {
  padding: 0 16px 14px;
  font-size: 16px;
  line-height: 1.58;
  color: #21414E;
  background: #fff;
  margin-top: 20px;
  border-radius: 8px;
  padding: 20px;
  display: none;
}

.news__list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.news__item {
  padding: 8px;
}
.news__item img {
  width: 100%;
  height: 203px;
  object-fit: cover;
  border-radius: 8px 8px 0 0;
}

.news__item-title {
  margin-bottom: 20px;
  font-size: 18px;
  line-height: 1.42;
  font-weight: 500;
  color: #21414E;
}

.news__bottom {
  background: #fff;
  padding: 10px;
}

.news__item__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-top: auto;
}
.news__item__bottom a,
.news__item__bottom .news__date {
  font-size: 14px;
  line-height: 1;
}
.news__item__bottom a {
  color: #d82f2a;
  font-size: 20px;
}
.news__item__bottom a:hover {
  color: #FF7570;
}

.news__date {
  color: #AFAFAF;
}

.standart-text p, .standart-text li {
  font-size: 18px;
  margin-bottom: 15px;
}
.standart-text ul {
  padding-left: 20px;
}
.standart-text li {
  padding-left: 20px;
  position: relative;
}
.standart-text li::after {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 10px;
  height: 10px;
  border-radius: 50px;
  background: #21414E;
}
.standart-text h3 {
  font-size: 22px;
  margin-bottom: 20px;
}
.standart-text h4 {
  font-size: 20px;
  margin-bottom: 20px;
}

.pre-footer {
  margin-bottom: 0;
  height: 441px;
  position: relative;
  z-index: 1;
}

.pre-footer__wrapper {
  position: relative;
  display: flex;
  justify-content: flex-end;
  align-items: stretch;
  min-height: 278px;
  padding: 26px 26px 26px 0;
  border-radius: 18px 18px 0 0;
  overflow: hidden;
  height: 100%;
  background: #91C3C4;
}

.pre-footer__bg {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  object-fit: contain;
  object-position: left top;
  height: 100%;
}

.pre-footer__right {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 390px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  flex-direction: column;
  max-width: 1440px;
}
.pre-footer__right h2 {
  margin: 0 0 14px;
  font-size: 28px;
  line-height: 1.3;
  font-weight: 500;
  color: #ffffff;
  text-align: center;
  margin-left: auto;
  margin-right: 10px;
}
.pre-footer__right .pre-footer__form {
  max-width: 554px;
}

.pre-footer__form {
  padding: 18px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  margin-left: auto;
  width: 100%;
}
.pre-footer__form form {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
}
.pre-footer__form .main-form__field {
  margin-bottom: 0;
}
.pre-footer__form .btn-red {
  align-self: center;
  padding-left: 18px;
  font-size: 16px;
  min-height: 53px;
}

.footer {
  padding: 28px 0 16px;
  background: linear-gradient(180deg, #173b4d 0%, #143344 100%);
  color: #ffffff;
  margin-top: -100px;
  position: relative;
  z-index: 2;
  border-radius: 20px 20px 0 0;
}

.footer__top {
  align-items: flex-start;
  gap: 26px;
  padding-bottom: 20px;
}

.footer__brand {
  width: 23%;
  min-width: 250px;
}

.footer__brand-info {
  margin: 14px 0 18px;
  display: grid;
  gap: 4px;
  font-size: 11px;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.76);
  font-size: 14px;
}

.footer__contacts {
  display: grid;
  gap: 8px;
}
.footer__contacts a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  line-height: 1.2;
  color: #ffffff;
  opacity: 0.8;
}
.footer__contacts a img {
  width: 13px;
  height: 13px;
}
.footer__contacts a:hover {
  opacity: 1;
}

.footer__column {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 17%;
  min-width: 170px;
}
.footer__column h3 {
  margin: 0 0 3px;
  font-size: 20px;
  line-height: 1.2;
  font-weight: 500;
  color: #ffffff;
}
.footer__column a {
  font-size: 14px;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.78);
}
.footer__column a:hover {
  color: #ffffff;
}

.footer__bottom {
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  gap: 16px;
}

.footer__bottom-left {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
}
.footer__bottom-left span,
.footer__bottom-left a {
  font-size: 14px;
  line-height: 1.2;
  color: rgba(255, 255, 255, 0.64);
}
.footer__bottom-left a {
  opacity: 0.8;
}
.footer__bottom-left a:hover {
  opacity: 1;
}

.footer__bottom-right {
  align-items: center;
  gap: 12px;
}

.footer__call-btn {
  min-height: 34px;
  padding: 0 16px;
  font-size: 14px;
}

.footer__search {
  display: flex;
  align-items: center;
  height: 36px;
  border-radius: 999px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
}
.footer__search input {
  width: 170px;
  height: 100%;
  padding: 0 14px;
  border: none;
  background: transparent;
  font-size: 14px;
  color: #ffffff;
  outline: none;
}
.footer__search input::placeholder {
  color: rgba(255, 255, 255, 0.56);
}
.footer__search button {
  width: 34px;
  height: 34px;
  margin-right: 1px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
  font-size: 14px;
}

.swiper-container-portfolio,
.swiper-container-reviews {
  overflow: hidden;
}

.swiper-wrapper {
  align-items: stretch;
}

.swiper-slide {
  height: auto;
}

@media (max-width: 1080px) {
  .container {
    padding: 0 14px;
  }

  .header > .container.row {
    flex-direction: column;
  }

  .header__left,
.header__right {
    max-width: 100%;
    width: 100%;
  }

  .header__title {
    font-size: 40px;
  }

  .header__right .form-big {
    max-width: 420px;
  }

  .prefs__main {
    flex-direction: column;
    gap: 16px;
  }
  .prefs__main:nth-of-type(2) .prefs__main__left,
.prefs__main:nth-of-type(2) .prefs__main__right {
    order: initial;
  }
  .prefs__main:nth-of-type(2) .prefs__main__left {
    margin-left: 0;
  }
  .prefs__main:nth-of-type(2) .prefs__main__left::before {
    display: none;
  }

  .prefs__main:first-of-type .prefs__main__left {
    margin-right: 0;
  }

  .prefs__main__left {
    width: 100%;
    min-width: 0;
    height: auto;
    min-height: 240px;
  }
  .prefs__main__left::after {
    display: none;
  }

  .prefs__main__right {
    width: 100%;
  }

  .prefs__list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .types__list {
    gap: 10px 12px;
  }

  .main-form__item,
.about__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer__top {
    flex-wrap: wrap;
  }

  .footer__brand,
.footer__column {
    width: calc(50% - 13px);
  }
}
@media (max-width: 767px) {
  body {
    font-size: 15px;
  }

  .btn {
    padding-left: 16px;
  }

  .header {
    padding-bottom: 18px;
    border-radius: 0 0 14px 14px;
  }

  .header__top {
    padding: 12px 0 14px;
  }

  .header__brand {
    flex-direction: column;
    text-align: center;
  }

  .header__top-actions {
    flex-wrap: wrap;
  }

  .header__contact {
    font-size: 10px;
  }

  .header__title {
    font-size: 31px;
  }

  .header__text {
    font-size: 12px;
  }

  .header__prefs {
    max-width: 100%;
  }

  .header__prefs__item {
    width: 100%;
  }

  .services__list,
.prefs__list,
.customers__grid,
.news__list,
.main-form__item,
.about__grid {
    grid-template-columns: 1fr;
  }

  .services__item:first-child {
    grid-column: auto;
  }

  .prefs h2 {
    font-size: 34px;
  }

  .prefs__main__left p {
    font-size: 18px;
  }

  .geography__list {
    grid-template-columns: 1fr;
  }

  .steps__wrapper {
    gap: 12px;
  }

  .steps__left img {
    height: 220px;
  }

  .main-form__left h2 {
    font-size: 22px;
  }

  .main-form__wrapper {
    border-radius: 12px;
  }

  .main-form__left,
.main-form__right,
.footer,
.about__wrapper,
.types__wrapper,
.pre-footer__form {
    padding-left: 14px;
    padding-right: 14px;
  }

  .pre-footer__wrapper {
    justify-content: stretch;
    padding: 20px 14px;
    min-height: 0;
  }

  .pre-footer__bg {
    position: relative;
    left: auto;
    bottom: auto;
    width: 100%;
    max-width: 100%;
    margin-bottom: 14px;
  }

  .pre-footer__wrapper {
    flex-direction: column;
  }

  .pre-footer__right {
    max-width: 100%;
  }

  .footer__top {
    flex-direction: column;
  }

  .footer__brand,
.footer__column {
    width: 100%;
    min-width: 0;
  }

  .footer__bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}
@media (max-width: 560px) {
  .container {
    padding: 0 12px;
  }

  .services .container,
.types__wrapper,
.about__wrapper,
.pre-footer__wrapper {
    border-radius: 12px;
  }

  .header__right .form-big,
.form-big {
    padding: 14px;
  }

  .main-form__row {
    flex-direction: column;
  }

  .main-form__field--small {
    width: 100%;
  }

  .prefs h2 {
    font-size: 30px;
  }

  .pre-footer__right h2,
.main-form__left h2 {
    font-size: 20px;
  }

  .swiper-navs {
    margin-top: 10px;
    justify-content: flex-start;
  }

  .footer__search {
    width: 100%;
  }
  .footer__search input {
    width: calc(100% - 35px);
  }
}
.header__top {
  position: relative;
  z-index: 30;
}

.header__services-btn {
  position: relative;
  z-index: 35;
  transition: 0.25s ease;
}
.header__services-btn.is-active {
  background: #DD2F28;
  border-color: #DD2F28;
  color: #fff;
}
.header__services-btn.is-active img {
  filter: brightness(0) invert(1);
}

.header__services-dropdown {
  position: absolute;
  top: 87px;
  left: 0;
  width: 100%;
  padding-top: 14px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  pointer-events: none;
  transition: opacity 0.25s ease, visibility 0.25s ease, transform 0.25s ease;
  z-index: 25;
}
.header__services-dropdown.is-open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.header__services-dropdown-inner {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  padding: 18px;
  border-radius: 24px;
  background: rgba(12, 53, 66, 0.96);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
}

.header__services-dropdown-item {
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 112px;
  padding: 14px;
  border-radius: 18px;
  background: #F3F6F8;
  text-decoration: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}
.header__services-dropdown-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
  background: #fff;
}

.header__services-dropdown-thumb {
  width: 84px;
  height: 84px;
  flex: 0 0 84px;
  border-radius: 14px;
  overflow: hidden;
  background: #dbe5eb;
}
.header__services-dropdown-thumb img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.header__services-dropdown-content {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 0;
}

.header__services-dropdown-title {
  font-size: 18px;
  line-height: 1.2;
  font-weight: 700;
  color: #16384A;
}

.header__services-dropdown-text {
  font-size: 14px;
  line-height: 1.45;
  color: #4F697A;
}

@media (max-width: 1200px) {
  .header__services-dropdown-inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 768px) {
  .header__services-dropdown {
    position: static;
    width: 100%;
    padding-top: 10px;
    max-height: 0;
    overflow: hidden;
    opacity: 1;
    visibility: visible;
    transform: none;
    pointer-events: auto;
    transition: max-height 0.3s ease;
  }
  .header__services-dropdown.is-open {
    max-height: 1200px;
  }

  .header__services-dropdown-inner {
    grid-template-columns: 1fr;
    padding: 14px;
    border-radius: 18px;
  }

  .header__services-dropdown-item {
    min-height: 96px;
  }

  .header__services-dropdown-thumb {
    width: 72px;
    height: 72px;
    flex: 0 0 72px;
  }

  .header__services-dropdown-title {
    font-size: 16px;
  }

  .header__services-dropdown-text {
    font-size: 13px;
  }
}
body.menu-open {
  overflow: hidden;
}

.header__top {
  position: relative;
  z-index: 45;
}

.header__top-inner {
  position: relative;
  gap: 18px;
}

.header__burger {
  display: none;
  position: relative;
  width: 36px;
  height: 36px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.06);
  cursor: pointer;
  flex: 0 0 36px;
}
.header__burger span {
  position: absolute;
  left: 10px;
  width: 15px;
  height: 2px;
  background: #fff;
  border-radius: 10px;
  transition: 0.25s ease;
}
.header__burger span:nth-child(1) {
  top: 10px;
}
.header__burger span:nth-child(2) {
  top: 17px;
}
.header__burger span:nth-child(3) {
  top: 24px;
}
.header__burger.is-active span:nth-child(1) {
  top: 22px;
  transform: rotate(45deg);
}
.header__burger.is-active span:nth-child(2) {
  opacity: 0;
}
.header__burger.is-active span:nth-child(3) {
  top: 22px;
  transform: rotate(-45deg);
}

.header__services-btn {
  position: relative;
  z-index: 60;
  transition: 0.25s ease;
}
.header__services-btn.is-active {
  background: #DD2F28;
  border-color: #DD2F28;
  color: #fff;
}
.header__services-btn.is-active img {
  filter: brightness(0) invert(1);
}

.header__mega {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  padding-top: 14px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
  z-index: 55;
}
.header__mega.is-open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.header__mega-inner {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  padding: 18px;
  border-radius: 26px;
  background: rgba(14, 55, 67, 0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.26);
}

.header__mega-item {
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 116px;
  padding: 14px;
  border-radius: 18px;
  background: #F2F6F8;
  text-decoration: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}
.header__mega-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.12);
  background: #fff;
}

.header__mega-thumb {
  width: 84px;
  height: 84px;
  flex: 0 0 84px;
  border-radius: 14px;
  overflow: hidden;
  background: #dbe5eb;
}
.header__mega-thumb img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.header__mega-content {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 0;
}

.header__mega-title {
  font-size: 18px;
  line-height: 1.2;
  font-weight: 700;
  color: #17394B;
}

.header__mega-text {
  font-size: 14px;
  line-height: 1.45;
  color: #4D6777;
}

.header__mobile-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: 0.25s ease;
  z-index: 98;
}
.header__mobile-backdrop.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.header__mobile {
  position: fixed;
  top: 0;
  right: 0;
  width: min(380px, 100%);
  height: 100vh;
  padding: 22px 18px 24px;
  background: #0E3743;
  transform: translateX(100%);
  transition: transform 0.3s ease;
  z-index: 99;
  overflow-y: auto;
  display: none;
}
.header__mobile.is-open {
  transform: translateX(0);
}

.header__mobile-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 28px;
}

.header__mobile-logo {
  display: inline-flex;
  align-items: center;
}
.header__mobile-logo img {
  max-width: 138px;
  height: auto;
  display: block;
}

.header__mobile-close {
  position: relative;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.06);
  cursor: pointer;
  flex: 0 0 42px;
}
.header__mobile-close span {
  position: absolute;
  top: 20px;
  left: 11px;
  width: 18px;
  height: 2px;
  background: #fff;
  border-radius: 10px;
}
.header__mobile-close span:nth-child(1) {
  transform: rotate(45deg);
}
.header__mobile-close span:nth-child(2) {
  transform: rotate(-45deg);
}

.header__mobile-body {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.header__mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.header__mobile-nav a {
  padding: 14px 14px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.04);
  color: #fff;
  text-decoration: none;
  font-size: 16px;
  line-height: 1.35;
  font-weight: 500;
  transition: 0.25s ease;
}
.header__mobile-nav a:hover {
  background: rgba(255, 255, 255, 0.1);
}

.header__mobile-services {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.header__mobile-caption {
  font-size: 13px;
  line-height: 1.2;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.55);
}

.header__mobile-service {
  padding: 12px 14px;
  border-radius: 14px;
  background: #F2F6F8;
  color: #17394B;
  text-decoration: none;
  font-size: 15px;
  line-height: 1.35;
  font-weight: 600;
}

.header__mobile-contacts {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.header__mobile-contacts a {
  color: #fff;
  text-decoration: none;
  font-size: 15px;
  line-height: 1.45;
}

.header__mobile-btn {
  justify-content: space-between;
}

@media (max-width: 1280px) {
  .header__mega-inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 991px) {
  .header__nav {
    display: none;
  }

  .header__top-actions {
    display: none;
  }

  .header__burger {
    display: block;
  }

  .header__mobile {
    display: block;
  }

  .header__mega {
    display: none;
  }
}
@media (max-width: 767px) {
  .header__top-inner {
    min-height: 72px;
  }

  .header__mobile {
    padding: 18px 14px 20px;
  }

  .header__mobile-nav a {
    font-size: 15px;
  }

  .header__mobile-service {
    font-size: 14px;
  }
}
.rail-tariffs {
  padding: 8px 0 72px;
  margin-bottom: 0;
}
.rail-tariffs .container {
  max-width: 1440px;
}

.rail-tariffs__top {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px 18px;
  margin-bottom: 46px;
}

.rail-tariffs__card {
  min-height: 188px;
  padding: 18px 18px 16px;
  background: #F0F8FF;
  border: 1px solid #D3EAFF;
  border-radius: 8px;
  box-sizing: border-box;
}

.rail-tariffs__num {
  margin: 0 0 18px;
  font-size: 29px;
  line-height: 1;
  font-weight: 700;
  color: #bd2626;
}

.rail-tariffs__title {
  margin: 0 0 12px;
  font-size: 18px;
  line-height: 1.45;
  font-weight: 700;
  color: #274656;
}

.rail-tariffs__text {
  font-size: 16px;
  line-height: 1.5;
  font-weight: 400;
  color: #2d4b5a;
}

.rail-tariffs__card--cta {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 14px;
}

.rail-tariffs__btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 6px 6px 6px 18px;
  min-height: 52px;
  border-radius: 999px;
  background: #be2626;
  text-decoration: none;
  transition: 0.25s ease;
}
.rail-tariffs__btn:hover {
  background: #aa1f1f;
}
.rail-tariffs__btn span {
  font-size: 16px;
  line-height: 1;
  font-weight: 500;
  color: #fff;
}

.rail-tariffs__btn-icon {
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #fff;
  font-size: 22px;
  line-height: 1;
  color: #2b2b2b;
}

.rail-tariffs__note {
  margin-bottom: 40px;
}
.rail-tariffs__note p {
  margin: 0;
  font-size: 14px;
  line-height: 1.7;
  font-style: italic;
  font-weight: 400;
  color: #244353;
}
.rail-tariffs__note p:not(:last-child) {
  margin-bottom: 2px;
}

.rail-tariffs__table {
  padding: 38px 32px 44px;
  background: #F0F8FF;
  border: 1px solid #D3EAFF;
  border-radius: 46px;
  box-sizing: border-box;
}

.rail-tariffs__table-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 32px;
}

.rail-tariffs__badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 18px;
  border-radius: 999px;
  flex-shrink: 0;
  background: linear-gradient(180deg, #f0362d 0%, #ea2d26 100%);
}
.rail-tariffs__badge img {
  width: 20px;
  height: 20px;
  display: block;
  flex-shrink: 0;
  object-fit: contain;
  filter: brightness(0) invert(1);
}
.rail-tariffs__badge span {
  font-size: 16px;
  line-height: 1;
  font-weight: 700;
  color: #fff;
  white-space: nowrap;
}

.rail-tariffs__head-price {
  font-size: 23px;
  line-height: 1.2;
  font-weight: 700;
  color: #274656;
  white-space: nowrap;
}

.rail-tariffs__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px 18px;
}

.rail-tariffs__row {
  min-height: 50px;
  padding: 0 24px 0 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  background: #fff;
  border: 1px solid #D3EAFF;
  border-radius: 10px;
  box-sizing: border-box;
}

.rail-tariffs__route {
  display: flex;
  align-items: center;
  gap: 18px;
  flex: 1 1 auto;
  min-width: 0;
}
.rail-tariffs__route span {
  font-size: 16px;
  line-height: 1;
  font-weight: 600;
  color: #2b4958;
  white-space: nowrap;
}

.rail-tariffs__arrow {
  position: relative;
  width: 92px;
  height: 30px;
  flex: 0 0 92px;
  background: url("../files/arr2.svg") no-repeat center;
  background-size: contain;
}

.rail-tariffs__price {
  font-size: 22px;
  line-height: 1;
  font-weight: 700;
  color: #ef342b;
  white-space: nowrap;
}

@media (max-width: 1270px) {
  .rail-tariffs__top {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
@media (max-width: 1024px) {
  .rail-tariffs__top {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .rail-tariffs__table-head {
    flex-direction: column;
    align-items: flex-start;
  }

  .rail-tariffs__grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 640px) {
  .rail-tariffs {
    padding-bottom: 48px;
  }

  .rail-tariffs__top {
    grid-template-columns: 1fr;
  }

  .rail-tariffs__table {
    padding: 24px 16px 24px;
    border-radius: 28px;
  }

  .rail-tariffs__badge {
    padding: 12px 14px;
  }
  .rail-tariffs__badge span {
    font-size: 14px;
  }

  .rail-tariffs__head-price {
    font-size: 20px;
  }

  .rail-tariffs__row {
    padding: 14px 16px;
    min-height: auto;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .rail-tariffs__route {
    width: 100%;
    justify-content: space-between;
    gap: 10px;
  }
  .rail-tariffs__route span {
    font-size: 15px;
  }

  .rail-tariffs__arrow {
    width: 56px;
    flex: 0 0 56px;
  }
  .rail-tariffs__arrow::before {
    width: 40px;
  }

  .rail-tariffs__price {
    font-size: 20px;
  }
}
.header-inner {
  z-index: 1;
  margin-bottom: 0;
}
.header-inner .header__top {
  background: #fff;
  border-bottom: 1px solid #E4E4E4;
  margin-bottom: 20px;
}
.header-inner .header__top a, .header-inner .header__top p, .header-inner .header__top span {
  color: #21414E;
}
.header-inner .header__services-btn {
  border: 1px solid #21414E;
}
.header-inner .header__calc-btn {
  background: #21414E;
  color: #fff !important;
}
.header-inner .header__nav a:hover {
  opacity: 0.7;
}
.header-inner .header__services-btn.is-active {
  border: 1px solid #d82f2a;
  color: #fff;
}
.header-inner .header__contact:hover {
  opacity: 0.7;
}

.header__bread {
  display: flex;
  gap: 10px;
  margin-bottom: 50px;
}
.header__bread li, .header__bread a {
  color: #C5DCE5;
  opacity: 0.5;
}
.header__bread a:hover {
  opacity: 1;
}

.geography__text {
  margin-top: 20px;
}
.geography__text li {
  padding-left: 20px;
  position: relative;
}
.geography__text li::after {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 10px;
  height: 10px;
  border-radius: 50px;
  background: #21414E;
}
.geography__text p, .geography__text li {
  font-size: 16px;
  font-weight: 350;
  font-style: italic;
  margin-bottom: 20px;
}
.geography__text li {
  margin-bottom: 10px;
}

.article-page {
  margin-bottom: 0;
}

.article-page__head {
  margin: 0 0 26px;
}

.article-page__title {
  margin: 0;
  max-width: 620px;
  font-size: 39px;
  line-height: 0.96;
  font-weight: 500;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  color: #21414E;
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 4px;
  margin-bottom: 30px;
  font-size: 14px;
  line-height: 1.3;
  color: #4c6777;
}
.breadcrumbs a {
  color: inherit;
  text-decoration: none;
  transition: color 0.28s ease;
}
.breadcrumbs a:hover {
  color: #d82f2a;
}

.article-page__hero {
  position: relative;
  margin-bottom: 42px;
  min-height: 420px;
  border-radius: 0 0 44px 44px;
  overflow: hidden;
  background: #21414E;
}
.article-page__hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(18, 48, 63, 0.34);
  pointer-events: none;
}

.article-page__hero-image {
  position: absolute;
  inset: 0;
  opacity: 0.6;
}
.article-page__hero-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.article-page__hero-contact {
  position: absolute;
  top: 56px;
  right: 30px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  text-align: right;
  color: #ffffff;
}

.article-page__hero-note {
  margin-bottom: 8px;
  font-size: 18px;
  line-height: 1.2;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.95);
}

.article-page__hero-phone {
  font-size: 28px;
  line-height: 1;
  font-weight: 400;
  letter-spacing: -0.02em;
  color: #ffffff;
  text-decoration: none;
  transition: opacity 0.28s ease;
}
.article-page__hero-phone:hover {
  opacity: 0.8;
}

.article-page__content {
  margin-bottom: 54px;
}

.article-page__related {
  margin-top: 0;
}

.article-page__related-title {
  margin: 0 0 24px;
  font-size: 32px;
  line-height: 1.05;
  font-weight: 700;
  color: #21414E;
}

.article-page__related-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.article-page__card {
  display: flex;
  flex-direction: column;
  min-height: 368px;
  padding: 10px 10px 14px;
  border: 1px solid #D3EAFF;
  border-radius: 10px;
  background: #EEF7FF;
  text-decoration: none;
  box-sizing: border-box;
  transition: transform box-shadow ease;
}
.article-page__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 34px rgba(18, 48, 63, 0.1);
}

.article-page__card-image {
  display: block;
  width: 100%;
  aspect-ratio: 374/182;
  margin-bottom: 16px;
  border-radius: 8px;
  overflow: hidden;
}
.article-page__card-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.article-page__card-body {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 0 4px;
  flex: 1 1 auto;
}

.article-page__card-title {
  display: block;
  font-size: 18px;
  line-height: 1.3;
  font-weight: 700;
  color: #1f3440;
}

.article-page__card-text {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  font-size: 16px;
  line-height: 1.45;
  font-weight: 400;
  color: #5c7482;
}

.article-page__card-date {
  display: block;
  padding: 22px 4px 0;
  font-size: 16px;
  line-height: 1;
  font-weight: 400;
  color: #bcc8d1;
}

@media (max-width: 1200px) {
  .article-page {
    padding-bottom: 64px;
  }

  .article-page__title {
    max-width: 560px;
    font-size: 48px;
  }

  .article-page__hero {
    min-height: 380px;
  }

  .article-page__hero-contact {
    top: 42px;
    right: 24px;
  }

  .article-page__hero-note {
    font-size: 16px;
  }

  .article-page__hero-phone {
    font-size: 24px;
  }

  .article-page__related-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 768px) {
  .article-page {
    padding-top: 10px;
  }

  .breadcrumbs {
    margin-bottom: 22px;
    font-size: 13px;
  }

  .article-page__head {
    margin-bottom: 20px;
  }

  .article-page__title {
    max-width: 100%;
    font-size: 38px;
    line-height: 0.98;
  }

  .article-page__hero {
    min-height: 320px;
    margin-bottom: 32px;
    border-radius: 0 0 28px 28px;
  }

  .article-page__hero-contact {
    top: auto;
    right: 16px;
    left: 16px;
    bottom: 18px;
    align-items: flex-start;
    text-align: left;
  }

  .article-page__hero-note {
    margin-bottom: 6px;
    font-size: 14px;
  }

  .article-page__hero-phone {
    font-size: 22px;
  }

  .article-page__content {
    margin-bottom: 40px;
  }

  .article-page__related-title {
    margin-bottom: 18px;
    font-size: 26px;
  }

  .article-page__related-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .article-page__card {
    min-height: auto;
  }

  .article-page__card-title {
    font-size: 17px;
  }

  .article-page__card-text {
    font-size: 15px;
  }

  .article-page__card-date {
    padding-top: 18px;
    font-size: 15px;
  }
}
@media (max-width: 480px) {
  .article-page__title {
    font-size: 32px;
  }

  .article-page__hero {
    min-height: 260px;
  }

  .article-page__hero-phone {
    font-size: 20px;
  }

  .article-page__card {
    padding: 8px 8px 12px;
  }
}
.articles-archive__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-bottom: 38px;
}

.articles-archive__card {
  display: flex;
  flex-direction: column;
  height: auto;
  padding: 9px 8px 12px;
  border: 1px solid #d8e3eb;
  border-radius: 10px;
  background: #eaf0f5;
  text-decoration: none;
  box-sizing: border-box;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.articles-archive__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 28px rgba(20, 52, 67, 0.08);
}

.articles-archive__image {
  display: block;
  width: 100%;
  aspect-ratio: 326/189;
  margin-bottom: 16px;
  border-radius: 8px;
  overflow: hidden;
}
.articles-archive__image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.articles-archive__body {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  flex: 1 1 auto;
  padding: 0 0 0 1px;
}

.articles-archive__title {
  display: block;
  margin-bottom: 14px;
  font-size: 17px;
  line-height: 1.24;
  font-weight: 700;
  color: #172d39;
}

.articles-archive__text {
  display: block;
  font-size: 15px;
  line-height: 1.35;
  font-weight: 400;
  color: #476270;
}

.articles-archive__date {
  display: block;
  margin-top: 24px;
  padding-left: 1px;
  font-size: 15px;
  line-height: 1;
  font-weight: 400;
  color: #b5c1ca;
}

.articles-archive__pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.pagination__item {
  width: 40px;
  height: 40px;
  flex: 0 0 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid #d6e1ea;
  background: #fff;
  text-decoration: none;
  font-size: 16px;
  line-height: 1;
  font-weight: 600;
  color: #8ea3b1;
  transition: all 0.25s ease;
}
.pagination__item:hover {
  border-color: #b8cddb;
  color: #17394b;
}
.pagination__item.is-active {
  color: #17394b;
  border-color: #c9d9e6;
  box-shadow: 0 4px 12px rgba(23, 57, 75, 0.08);
}

@media (max-width: 1200px) {
  .articles-archive__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
@media (max-width: 992px) {
  .articles-archive__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 640px) {
  .articles-archive {
    padding-bottom: 40px;
  }

  .articles-archive__grid {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-bottom: 28px;
  }

  .articles-archive__card {
    min-height: auto;
  }

  .articles-archive__image {
    margin-bottom: 14px;
  }

  .articles-archive__title {
    margin-bottom: 10px;
    font-size: 16px;
  }

  .articles-archive__text {
    font-size: 14px;
  }

  .articles-archive__date {
    margin-top: 18px;
    font-size: 14px;
  }

  .pagination__item {
    width: 36px;
    height: 36px;
    flex: 0 0 36px;
    font-size: 18px;
  }
}
.about-company-page__hero {
  position: relative;
  margin-top: -20px;
  height: 543px;
  margin-bottom: 0px;
  padding: 38px 18px 43px;
  border-radius: 0 0 36px 36px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.about-company-page__hero .container {
  min-height: 477px;
  border-radius: 0 0 36px 36px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.about-company-page__hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background: #21414E;
}
.about-company-page__hero-bg img {
  width: 100%;
  height: 100%;
  display: block;
  opacity: 0.1;
  object-fit: cover;
}

.about-company-page__hero-content,
.about-company-page__hero-bottom {
  position: relative;
  z-index: 2;
}

.about-company-page__title {
  margin: 0 0 28px;
  font-size: 48px;
  line-height: 0.95;
  font-weight: 600;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  color: #ffffff;
}

.about-company-page__subtitle {
  max-width: 540px;
  font-size: 18px;
  line-height: 1.45;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.95);
}

.about-company-page__hero-bottom {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  margin-top: auto;
}

.about-company-page__btn {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  min-height: 62px;
  padding: 6px 6px 6px 43px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(7px);
  text-decoration: none;
  transition: background 0.25s ease, transform 0.25s ease;
}
.about-company-page__btn:hover {
  background: rgba(255, 255, 255, 0.62);
  transform: translateY(-2px);
}
.about-company-page__btn span {
  font-size: 16px;
  line-height: 1;
  font-weight: 500;
  color: #ffffff;
}

.about-company-page__btn-icon {
  width: 50px;
  height: 50px;
  flex: 0 0 50px;
  border-radius: 50%;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px !important;
  color: #57666f !important;
}

.about-company-page__contact {
  text-align: right;
}

.about-company-page__contact-label {
  margin-bottom: 10px;
  font-size: 16px;
  line-height: 1.25;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.95);
}

.about-company-page__contact-phone {
  font-size: 30px;
  line-height: 1;
  font-weight: 400;
  color: #ffffff;
  text-decoration: none;
  transition: opacity 0.25s ease;
}
.about-company-page__contact-phone:hover {
  opacity: 0.8;
}

.about-company-page__text {
  margin-bottom: 53px;
}

.about-company-page__info .about-company-page__wrapper {
  display: grid;
  grid-template-columns: 1.34fr 0.9fr;
  gap: 34px;
  padding: 20px;
  margin-bottom: 74px;
  border-radius: 8px;
  background: #EEF7FF;
  border: 1px solid #D3EAFF;
}

.about-company-page__info-image {
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
  padding: 10px;
  max-width: 754px;
  max-height: 527px;
}
.about-company-page__info-image img {
  width: 100%;
  border-radius: 8px;
  height: 100%;
  display: block;
  object-fit: cover;
}

.about-company-page__info-content {
  padding: 28px 22px 24px 8px;
}

.about-company-page__info-title {
  margin: 0 0 42px;
  font-size: 28px;
  line-height: 1.2;
  font-weight: 700;
  color: #28414f;
}

.about-company-page__features {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.about-company-page__feature {
  display: flex;
  align-items: center;
  gap: 16px;
}

.about-company-page__feature-icon {
  width: 28px;
  height: 35px;
  flex: 0 0 28px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-company-page__feature-icon img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
}

.about-company-page__feature-text {
  font-size: 19px;
  line-height: 1.3;
  font-weight: 400;
  color: #3d5968;
}

.about-company-page__partners-title {
  margin: 0 0 28px;
  font-size: 30px;
  line-height: 1.05;
  font-weight: 700;
  color: #21414E;
}

.about-company-page__partners-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
}

.about-company-page__partner {
  min-height: 198px;
  padding: 20px;
  border-radius: 6px;
  background: #21485a;
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-company-page__partner img {
  max-width: 140px;
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}

@media (max-width: 1100px) {
  .about-company-page__hero {
    min-height: 420px;
  }

  .about-company-page__title {
    font-size: 46px;
  }

  .about-company-page__subtitle {
    max-width: 470px;
    font-size: 17px;
  }

  .about-company-page__hero-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .about-company-page__contact {
    text-align: left;
  }

  .about-company-page__contact-phone {
    font-size: 28px;
  }

  .about-company-page__info {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-bottom: 56px;
  }

  .about-company-page__info-content {
    padding: 0 10px 8px;
  }

  .about-company-page__info-title {
    margin-bottom: 28px;
  }

  .about-company-page__features {
    gap: 22px;
  }

  .about-company-page__partners-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
@media (max-width: 768px) {
  .about-company-page__hero {
    min-height: 360px;
    padding: 28px 16px 24px;
    margin-bottom: 34px;
    border-radius: 0 0 24px 24px;
  }

  .about-company-page__title {
    margin-bottom: 18px;
    font-size: 38px;
  }

  .about-company-page__subtitle {
    font-size: 16px;
  }

  .about-company-page__btn {
    min-height: 54px;
    padding-left: 24px;
  }

  .about-company-page__btn-icon {
    width: 42px;
    height: 42px;
    flex: 0 0 42px;
    font-size: 18px !important;
  }

  .about-company-page__contact-label {
    margin-bottom: 6px;
    font-size: 14px;
  }

  .about-company-page__contact-phone {
    font-size: 24px;
  }

  .about-company-page__text {
    margin-bottom: 36px;
  }

  .about-company-page__info {
    padding: 12px;
  }

  .about-company-page__info-title {
    font-size: 24px;
  }

  .about-company-page__feature-text {
    font-size: 17px;
  }

  .about-company-page__partners-title {
    margin-bottom: 20px;
    font-size: 26px;
  }

  .about-company-page__partners-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
  }

  .about-company-page__partner {
    min-height: 150px;
  }
}
@media (max-width: 480px) {
  .about-company-page {
    padding-bottom: 42px;
  }

  .about-company-page__hero {
    min-height: 320px;
  }

  .about-company-page__title {
    font-size: 32px;
  }

  .about-company-page__subtitle {
    font-size: 15px;
    line-height: 1.4;
  }

  .about-company-page__btn {
    width: 100%;
    justify-content: space-between;
    padding-left: 18px;
  }

  .about-company-page__contact-phone {
    font-size: 21px;
  }

  .about-company-page__info-content {
    padding: 0 4px 4px;
  }

  .about-company-page__info-title {
    font-size: 22px;
  }

  .about-company-page__features {
    gap: 18px;
  }

  .about-company-page__feature {
    gap: 12px;
    align-items: flex-start;
  }

  .about-company-page__feature-text {
    font-size: 16px;
  }

  .about-company-page__partners-grid {
    grid-template-columns: 1fr;
  }
}
.office-contacts .prefs__list {
  margin-top: 50px;
}

.office-contacts__wrapper {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 420px;
  gap: 58px;
  padding: 22px 22px 24px;
  background: #EEF7FF;
  border: 1px solid #D3EAFF;
  border-radius: 8px;
}

.office-contacts__map-wrap {
  min-width: 0;
}

.office-contacts__map {
  width: 100%;
  height: 360px;
  border-radius: 4px;
  overflow: hidden;
  background: #dfe8ee;
}
.office-contacts__map .ymaps-2-1-79-map {
  border-radius: 4px;
  overflow: hidden;
}

.office-contacts__content {
  padding: 4px 10px 0 0;
}

.office-contacts__title {
  margin: 0 0 48px;
  font-size: 38px;
  line-height: 1.05;
  font-weight: 700;
  color: #26404e;
}

.office-contacts__address {
  max-width: 320px;
  margin: 0 0 42px;
  font-size: 18px;
  line-height: 1.45;
  font-weight: 400;
  color: #86a0b0;
}

.office-contacts__items {
  display: flex;
  flex-direction: column;
  gap: 26px;
}

.office-contacts__item {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  color: #2f4654;
  transition: opacity 0.25s ease;
}
.office-contacts__item:hover {
  opacity: 0.75;
}
.office-contacts__item span:last-child {
  font-size: 21px;
  line-height: 1.3;
  font-weight: 400;
  color: #2f4654;
}

.office-contacts__icon {
  width: 31px;
  height: 31px;
  flex: 0 0 31px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.office-contacts__icon svg {
  width: 31px;
  height: 31px;
  display: block;
}

@media (max-width: 1100px) {
  .office-contacts__wrapper {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .office-contacts__content {
    padding-right: 0;
  }

  .office-contacts__title {
    margin-bottom: 28px;
  }

  .office-contacts__address {
    max-width: 100%;
    margin-bottom: 28px;
  }
}
@media (max-width: 768px) {
  .office-contacts {
    margin-bottom: 40px;
  }

  .office-contacts__wrapper {
    padding: 14px;
    gap: 22px;
  }

  .office-contacts__map {
    height: 280px;
  }

  .office-contacts__title {
    font-size: 30px;
  }

  .office-contacts__address {
    font-size: 16px;
  }

  .office-contacts__item span:last-child {
    font-size: 18px;
  }
}
@media (max-width: 480px) {
  .office-contacts__map {
    height: 240px;
  }

  .office-contacts__title {
    font-size: 26px;
  }

  .office-contacts__items {
    gap: 18px;
  }

  .office-contacts__item {
    align-items: flex-start;
  }
  .office-contacts__item span:last-child {
    font-size: 16px;
  }
}
.cargo-banner {
  background: #1f4a59;
  border-radius: 0 0 40px 40px;
  min-height: 156px;
  padding-top: 100px;
  margin-top: -100px;
  position: relative;
  z-index: 0;
}
.cargo-banner .container {
  padding: 0;
}

.cargo-banner__wrapper {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 34px;
  padding: 30px 28px 30px 28px;
}

.cargo-banner__left {
  width: 248px;
  min-width: 248px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}
.cargo-banner__left h2 {
  margin: 0 0 30px;
  font-size: 24px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: #fff;
}

.cargo-banner__btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 6px 6px 6px 16px;
  min-height: 36px;
  border-radius: 999px;
  background: #aeb9be;
  text-decoration: none;
}
.cargo-banner__btn span {
  font-size: 14px;
  line-height: 1;
  font-weight: 400;
  color: #fff;
}

.cargo-banner__btn-icon {
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #e4e4e1;
  color: #6b6f72;
  font-size: 18px;
  line-height: 1;
  flex: 0 0 30px;
}

.cargo-banner__items {
  flex: 1 1 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.cargo-banner__item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 0;
  position: relative;
}
.cargo-banner__item:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: 1px;
  height: 70px;
  background: rgba(255, 255, 255, 0.75);
}

.cargo-banner__icon {
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cargo-banner__icon img {
  max-width: 100%;
  max-height: 100%;
  display: block;
  object-fit: contain;
}

.cargo-banner__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding-top: 1px;
}

.cargo-banner__title {
  margin: 0 0 8px;
  font-size: 18px;
  line-height: 1.15;
  font-weight: 700;
  color: #fff;
  white-space: nowrap;
}

.cargo-banner__text {
  font-size: 15px;
  line-height: 1.25;
  font-weight: 400;
  color: #fff;
}
.cargo-banner__text:not(:last-child) {
  margin-bottom: 8px;
}

@media (max-width: 900px) {
  .cargo-banner__wrapper {
    flex-direction: column;
    align-items: flex-start;
    border-radius: 0 0 28px 28px;
  }

  .cargo-banner__left {
    width: 100%;
    min-width: 0;
  }
  .cargo-banner__left h2 {
    margin-bottom: 18px;
  }

  .cargo-banner__items {
    width: 100%;
    grid-template-columns: 1fr;
  }

  .cargo-banner__item {
    padding: 0;
    padding-bottom: 18px;
    margin-bottom: 18px;
  }
  .cargo-banner__item:not(:last-child)::after {
    top: auto;
    right: auto;
    left: 0;
    bottom: 0;
    transform: none;
    width: 100%;
    height: 1px;
    background: rgba(255, 255, 255, 0.4);
  }
}
@media (max-width: 576px) {
  .cargo-banner__wrapper {
    padding: 20px 16px;
  }

  .cargo-banner__left h2 {
    font-size: 20px;
  }

  .cargo-banner__btn span {
    font-size: 13px;
  }

  .cargo-banner__item {
    gap: 14px;
  }

  .cargo-banner__icon {
    width: 38px;
    height: 38px;
    flex: 0 0 38px;
  }

  .cargo-banner__title {
    font-size: 15px;
  }

  .cargo-banner__text {
    font-size: 13px;
  }
}
.main-services .services__list {
  margin-bottom: 50px;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 43px;
}
.main-services .services__item {
  height: 315px;
}

.services__list {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 18px;
}

.services__item {
  display: block;
  perspective: 1200px;
  text-decoration: none;
  height: 228px;
}

.services__item-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  transition: transform 0.7s cubic-bezier(0.2, 0.7, 0.2, 1);
}

.services__item:hover .services__item-inner,
.services__item:focus-visible .services__item-inner {
  transform: rotateY(180deg);
}

.services__item-front,
.services__item-back {
  position: absolute;
  inset: 0;
  border-radius: 10px;
  overflow: hidden;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

.services__item-front {
  background: #dfe7eb;
}

.services__item-back {
  background: #ef2d25;
  transform: rotateY(180deg);
}

.services__item-back-content {
  position: relative;
  height: 100%;
  padding: 20px 14px 14px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.services__item-desc {
  margin: 0;
  max-width: 154px;
  font-size: 15px;
  line-height: 1.55;
  font-weight: 500;
  color: #fff;
}

.services__item-arrow {
  position: absolute;
  right: 14px;
  bottom: 14px;
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.22);
  font-size: 24px;
  line-height: 1;
  font-weight: 400;
  color: #fff;
}

.services-types .services__list {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

@media (max-width: 1280px) {
  .services__list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
@media (max-width: 900px) {
  .services {
    padding: 24px 16px 28px;
  }
  .services h2 {
    font-size: 38px;
    margin-bottom: 20px;
  }

  .services__list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
  }

  .services__item {
    height: 220px;
  }
}
@media (max-width: 640px) {
  .services__list {
    grid-template-columns: 1fr;
  }

  .services__item {
    height: 220px;
  }

  .services__item-title {
    font-size: 16px;
  }

  .services__item-desc {
    max-width: 100%;
  }
}
@media (max-width: 1080px) {
  h2 {
    font-size: 25px;
  }

  .header__nav,
.header__top-actions {
    display: none;
  }

  .faq__item__show p {
    font-size: 18px;
  }

  .header__burger {
    display: block;
  }

  .header__mobile {
    display: block;
  }

  .header__mega,
.header__services-dropdown {
    display: none;
  }

  .header__top-inner {
    min-height: 76px;
  }

  .header__brand {
    min-width: 0;
  }

  .header__top-inner {
    justify-content: space-between;
  }

  .header__contacts {
    display: none;
  }

  .header__logo img {
    max-width: 132px;
  }

  .header__main {
    flex-direction: column;
    gap: 22px;
    padding-top: 28px;
    padding-bottom: 28px;
  }

  .header__left,
.header__right {
    width: 100%;
    max-width: 100%;
  }

  .header__title {
    font-size: 40px;
    line-height: 1;
  }

  .header__right {
    display: flex;
    justify-content: flex-start;
  }

  .form-big {
    max-width: 100%;
    width: 100%;
  }

  .about-company-page__hero {
    min-height: 380px;
    padding: 28px 0 24px;
    margin-bottom: 32px;
    border-radius: 0 0 24px 24px;
  }

  .about-company-page__hero-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .about-company-page__contact {
    text-align: left;
  }

  .about-company-page__title {
    font-size: 40px;
  }

  .about-company-page__subtitle {
    max-width: 100%;
    font-size: 16px;
  }

  .header__bread,
.breadcrumbs {
    flex-wrap: wrap;
    row-gap: 6px;
  }

  .services {
    padding: 24px 16px 28px;
  }

  .services h2 {
    margin-bottom: 20px;
    font-size: 25px;
  }

  .services__list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
  }

  .services__item {
    height: 220px;
  }

  .main-services .services__list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .prefs {
    margin-bottom: 56px;
    margin-bottom: 30px;
  }

  .geography__item__city {
    font-size: 14px;
  }

  .geography__item__tags {
    margin-top: 0;
  }

  .steps__left h2 {
    font-size: 20px;
  }

  .steps__left {
    padding: 0;
  }

  .steps__wrapper {
    border: none;
  }

  .main-form__wrapper {
    flex-direction: column;
    gap: 0;
  }

  .main-form__left, .main-form__right {
    width: 100%;
  }

  .main-form__right {
    padding: 20px;
  }

  .prefs__main__right {
    display: none;
  }

  .prefs__main:nth-of-type(2) .prefs__main__left {
    padding-left: 20px;
  }

  .prefs__list {
    grid-template-columns: 1fr 1fr;
  }

  .prefs__list__item {
    min-height: 190px;
  }

  .about-company-page__partners-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .about-company-page__partner {
    min-height: 150px;
  }

  .office-contacts__map {
    height: 320px;
  }

  .article-page__title {
    font-size: 40px;
  }

  .articles-archive__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
  }

  .articles-archive__card,
.article-page__card {
    min-height: auto;
  }

  .article-page__related-grid {
    grid-template-columns: 1fr;
  }

  .rail-tariffs__table {
    padding: 24px 16px;
    border-radius: 28px;
  }

  .rail-tariffs__table-head {
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 20px;
  }

  .about__left h2 {
    font-size: 20px;
  }
  .about__left p {
    font-size: 16px;
  }

  .about__wrapper {
    padding: 0px 0;
  }

  .about__right {
    padding: 20px 0;
    width: 100%;
  }

  .main-form__wrapper {
    grid-template-columns: 1fr;
  }

  .customers__item p {
    font-size: 18px;
  }

  .swiper-navs {
    margin-top: 0;
    top: 0;
  }

  .swiper-prev, .swiper-next {
    width: 30px;
    height: 30px;
  }

  .footer__top {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
  }

  .portfolio h2 {
    max-width: 80%;
  }

  .footer__brand {
    grid-column: 1/-1;
  }

  .services {
    padding: 0;
  }

  .pre-footer__bg {
    display: none;
  }
}
@media (max-width: 768px) {
  .container {
    padding-left: 14px;
    padding-right: 14px;
  }

  .main-text p {
    font-size: 16px;
  }

  .header__top-inner {
    min-height: 70px;
  }

  .header__logo img {
    max-width: 118px;
  }

  .header__title {
    font-size: 34px;
  }

  .header__text {
    font-size: 16px;
  }

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

  .main-form__field--small {
    width: 100%;
  }

  .main-form__row {
    flex-direction: column;
    gap: 12px;
  }

  .about-company-page__hero {
    min-height: 320px;
  }

  .about-company-page__title,
.article-page__title {
    font-size: 32px;
  }

  .about-company-page__contact-phone,
.article-page__hero-phone {
    font-size: 22px;
  }

  .about-company-page__text,
.standart-text {
    margin-bottom: 36px;
  }

  .cargo-banner__wrapper {
    padding: 20px 16px;
  }

  .cargo-banner__left h2 {
    font-size: 20px;
  }

  .cargo-banner__item {
    gap: 14px;
  }

  .cargo-banner__title {
    font-size: 15px;
  }

  .cargo-banner__text {
    font-size: 13px;
  }

  .services__list,
.main-services .services__list {
    grid-template-columns: 1fr;
  }

  .services__item {
    height: 210px;
  }

  .services__item:hover .services__item-inner,
.services__item:focus-visible .services__item-inner {
    transform: none;
  }

  .services__item.is-flipped .services__item-inner {
    transform: rotateY(180deg);
  }

  .services__item-title {
    font-size: 16px;
    white-space: normal;
  }

  .services__item-desc {
    max-width: 100%;
  }

  .prefs__main__left {
    padding: 18px;
    min-height: 200px;
  }

  .prefs__main__left p {
    font-size: 18px;
  }

  .prefs__main__right {
    height: 240px;
  }

  .prefs__list__item {
    padding: 10px;
  }

  .prefs__list {
    grid-template-columns: repeat(1, 1fr);
  }

  .prefs__list__item p {
    font-size: 16px;
  }

  .main-services .services__item {
    height: 250px;
  }

  .main-services .services__list {
    grid-gap: 20px;
  }

  .about-company-page__wrapper,
.about-company-page__info {
    padding: 12px;
  }

  .about-company-page__info-title {
    font-size: 24px;
    margin-bottom: 20px;
  }

  .about-company-page__features {
    gap: 18px;
  }

  .about-company-page__feature-text {
    font-size: 16px;
  }

  .office-contacts__wrapper {
    padding: 14px;
  }

  .office-contacts__map {
    height: 260px;
  }

  .office-contacts__title {
    font-size: 28px;
    margin-bottom: 20px;
  }

  .office-contacts__address {
    margin-bottom: 20px;
    font-size: 15px;
  }

  .office-contacts__item span:last-child {
    font-size: 16px;
  }

  .articles-archive {
    padding-bottom: 40px;
  }

  .articles-archive__grid {
    grid-template-columns: 1fr;
  }

  .articles-archive__image,
.article-page__card-image {
    margin-bottom: 14px;
  }

  .articles-archive__title,
.article-page__card-title {
    font-size: 16px;
  }

  .articles-archive__text,
.article-page__card-text {
    font-size: 14px;
  }

  .articles-archive__date,
.article-page__card-date {
    font-size: 14px;
  }

  .pagination__item {
    width: 36px;
    height: 36px;
    flex: 0 0 36px;
  }

  .rail-tariffs__top {
    grid-template-columns: 1fr;
  }

  .rail-tariffs__title {
    font-size: 17px;
  }

  .rail-tariffs__text {
    font-size: 15px;
  }

  .rail-tariffs__row {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    padding: 14px 16px;
  }

  .rail-tariffs__route {
    width: 100%;
    justify-content: space-between;
    gap: 10px;
  }

  .rail-tariffs__route span {
    font-size: 15px;
  }

  .pre-footer__wrapper {
    padding: 16px;
  }

  .pre-footer__right h2 {
    font-size: 24px;
  }

  .footer__top {
    grid-template-columns: 1fr;
  }

  .footer__brand-info span,
.footer__column a,
.footer__contacts a {
    font-size: 14px;
  }

  section {
    margin-bottom: 35px;
  }

  .main-text {
    margin-bottom: 35px;
  }

  .header__brand-info {
    display: none;
  }

  .about-company-page {
    padding-bottom: 0;
  }

  .header-inner .header__top {
    padding: 0;
  }

  .about-company-page__info .about-company-page__wrapper {
    grid-template-columns: repeat(1, 1fr);
  }

  .about-company-page__info {
    margin-bottom: 50px;
  }
  .about-company-page__info .container {
    padding: 0;
  }

  .about-company-page__info .about-company-page__wrapper {
    margin-bottom: 0;
  }

  .steps__wrapper {
    grid-template-columns: repeat(1, 1fr);
  }

  .about__wrapper {
    flex-direction: column;
  }
}
@media (max-width: 576px) {
  .header__mobile {
    width: 100%;
    padding: 18px 14px 20px;
  }

  .header__mobile-nav a {
    font-size: 15px;
  }

  .header__mobile-service {
    font-size: 14px;
  }

  .header__title {
    font-size: 30px;
  }

  .header__prefs__item {
    font-size: 12px;
    padding: 8px 10px;
  }

  .form-big {
    padding: 14px;
  }

  .main-form__input {
    font-size: 14px;
  }

  .main-form__button,
.btn,
.btn-red {
    min-height: 48px;
  }

  .about-company-page__hero {
    min-height: 290px;
    margin-bottom: 26px;
  }

  .about-company-page__title,
.article-page__title {
    font-size: 28px;
  }

  .about-company-page__subtitle {
    font-size: 14px;
  }

  .about-company-page__partners-grid {
    grid-template-columns: 1fr;
  }

  .about-company-page__partner {
    min-height: 132px;
  }

  .office-contacts__map {
    height: 220px;
  }

  .office-contacts__item {
    align-items: flex-start;
  }

  .office-contacts__icon {
    margin-top: 1px;
  }

  .cargo-banner__wrapper {
    border-radius: 0 0 22px 22px;
  }

  .services {
    border-radius: 0 0 22px 22px;
  }

  .rail-tariffs__table {
    border-radius: 22px;
  }

  .rail-tariffs__badge {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  .pre-footer__bg {
    height: 220px;
  }

  .pre-footer__right h2 {
    font-size: 22px;
  }

  .articles-archive__pagination,
.pagination {
    gap: 8px;
  }
}
@media (min-width: 768px) and (max-width: 1080px) {
  .geography__icon {
    display: none;
  }

  .steps__wrapper {
    grid-template-columns: repeat(2, 1fr);
  }

  .steps__title {
    font-size: 20px;
  }

  .pre-footer__right {
    max-width: 500px;
  }

  .pre-footer__bg {
    display: none;
  }

  .pre-footer {
    height: 432px;
  }

  .footer__top {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    padding-bottom: 20px;
  }

  .footer__bottom {
    padding: 16px;
  }

  .cargo-banner__items {
    grid-template-columns: repeat(3, 1fr);
  }

  .cargo-banner__item:not(:last-child)::after {
    display: none;
  }

  .main-text p {
    font-size: 20px;
  }

  .header__top-inner {
    height: 50px;
    min-height: 100%;
  }

  .header {
    padding-bottom: 0;
  }

  .cargo-banner__wrapper {
    padding-bottom: 0;
  }

  .cargo-banner__title {
    white-space: wrap;
  }

  .cargo-banner__wrapper {
    padding-bottom: 20px;
  }

  .cargo-banner__title {
    font-size: 16px;
  }

  .main-services .services__list {
    grid-gap: 20px;
  }

  .article-page__related-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .article-page__related {
    margin-bottom: 0;
  }

  .main-form__left h2 {
    margin-left: 0;
  }

  .main-form__item {
    margin-left: 0;
  }
}
@media (min-width: 1081px) and (max-width: 1400px) {
  .cargo-banner__title {
    white-space: wrap;
  }

  .header__services-btn {
    gap: 5px;
  }

  .header__services-btn img {
    width: 15px;
    height: 15px;
  }

  .header__nav a {
    font-size: 12px;
  }

  .header__brand, .header__nav {
    gap: 10px;
  }

  .header__brand-info {
    width: 130px;
  }

  .steps__wrapper {
    grid-template-columns: 484px minmax(0, 1fr);
    gap: 25px;
  }
}
.header-inner .header__burger {
  border: 1px solid #21414E;
}
.header-inner .header__burger span {
  background: #21414E;
}

body.form-popup-open {
  overflow: hidden;
}

.form-popup {
  position: fixed;
  inset: 0;
  z-index: 300;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}
.form-popup.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.form-popup__overlay {
  position: absolute;
  inset: 0;
  background: rgba(6, 22, 30, 0.72);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.form-popup__dialog {
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(560px, 100vw - 28px);
  max-height: calc(100vh - 28px);
  transform: translate(-50%, -50%) scale(0.96);
  transition: transform 0.25s ease;
  overflow: hidden;
}
.form-popup.is-open .form-popup__dialog {
  transform: translate(-50%, -50%) scale(1);
}

.form-popup__content {
  position: relative;
  max-height: calc(100vh - 28px);
  overflow-y: auto;
  border-radius: 18px;
}

.form-popup__form {
  width: 100%;
  max-width: 100%;
  margin: 0;
  padding: 22px;
  box-sizing: border-box;
}

.form-popup__title {
  margin: 0 0 10px;
  font-size: 30px;
  line-height: 1.05;
  font-weight: 700;
  color: #fff;
}

.form-popup__subtitle {
  margin: 0 0 20px;
  font-size: 15px;
  line-height: 1.45;
  color: #fff;
}

.form-popup__close {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 4;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 12px;
  background: rgba(18, 55, 67, 0.74);
  cursor: pointer;
  transition: background 0.25s ease, border-color 0.25s ease;
}
.form-popup__close:hover {
  background: rgba(18, 55, 67, 0.92);
}
.form-popup__close span {
  position: absolute;
  top: 20px;
  left: 11px;
  width: 18px;
  height: 2px;
  background: #fff;
  border-radius: 10px;
}
.form-popup__close span:first-child {
  transform: rotate(45deg);
}
.form-popup__close span:last-child {
  transform: rotate(-45deg);
}

@media (max-width: 768px) {
  .form-popup__dialog {
    width: calc(100vw - 20px);
    max-height: calc(100vh - 20px);
  }

  .form-popup__content {
    max-height: calc(100vh - 20px);
  }

  .form-popup__form {
    padding: 18px 14px 14px;
  }

  .form-popup__title {
    padding-right: 42px;
    font-size: 24px;
  }

  .form-popup__subtitle {
    margin-bottom: 16px;
    font-size: 14px;
  }

  .form-popup__close {
    top: 10px;
    right: 10px;
    width: 38px;
    height: 38px;
  }
  .form-popup__close span {
    top: 18px;
    left: 10px;
    width: 16px;
  }
}

.main-form__error {
	margin-top: 6px;
	font-size: 12px;
	line-height: 1.3;
	color: #ef2d25;
}

.main-form__message {
	margin: 12px 0 0;
	font-size: 14px;
	line-height: 1.4;
}

.main-form__message--error {
	color: #ef2d25;
}

.main-form__message--success {
	color: #1f8b4c;
}