html {
  scroll-behavior: smooth;
}

.rl-contacts-page,
.rl-contacts-page * {
  box-sizing: border-box;
}

.rl-contacts-page {
  width: 100%;
  margin: 18px 0 14px;
  font-family: "Open Sans", Arial, sans-serif;
}

.rl-contacts-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 22px;
  align-items: end;
  margin-bottom: 18px;
}

.rl-contacts-head__text h1 {
  margin: 0 0 9px;
  color: #1f2528;
  font-size: 34px;
  line-height: 1.12;
  font-weight: 800;
  letter-spacing: -0.4px;
}

.rl-contacts-head__text p {
  max-width: 720px;
  margin: 0;
  color: #374151;
  font-size: 15.5px;
  line-height: 1.5;
  font-weight: 400;
}

.rl-contacts-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  flex-wrap: wrap;
  max-width: 620px;
}

.rl-contacts-actions a {
  min-height: 38px;
  padding: 0 12px 0 8px;
  border-radius: 999px;
  border: 1px solid #e1ecef;
  background: #ffffff;
  color: #1f2528;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  font-size: 13px;
  line-height: 1;
  font-weight: 800;
  box-shadow: 0 4px 14px rgba(20, 52, 60, 0.045);
  transition: background .18s ease, color .18s ease, border-color .18s ease, transform .18s ease;
}

.rl-contacts-actions__phone {
  display: none !important;
}

.rl-contacts-actions a:hover {
  color: #08788b;
  border-color: rgba(8, 120, 139, 0.28);
  background: #f8fdfe;
  transform: translateY(-1px);
}

.rl-contacts-actions__icon {
  width: 28px;
  height: 28px;
  min-width: 28px;
  border-radius: 50%;
  background: rgba(8, 120, 139, 0.08);
  color: #08788b;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background .18s ease, color .18s ease;
}

.rl-contacts-actions__icon svg {
  width: 16px;
  height: 16px;
  display: block;
}

.rl-contacts-actions a:hover .rl-contacts-actions__icon {
  background: #08788b;
  color: #ffffff;
}

.rl-contacts-cards {
  display: grid;
  grid-template-columns: minmax(320px, 0.95fr) minmax(320px, 0.95fr) minmax(320px, 1.1fr);
  gap: 18px;
  align-items: stretch;
}

.rl-contact-card {
  min-height: 255px;
  padding: 24px 24px;
  border: 1px solid #e5edf1;
  border-radius: 16px;
  background: #ffffff;
  box-shadow: 0 8px 24px rgba(20, 52, 60, 0.055);
}

.rl-contact-card__top {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 18px;
}

.rl-contact-card__icon {
  width: 54px;
  height: 54px;
  min-width: 54px;
  max-width: 54px;
  max-height: 54px;
  border-radius: 50%;
  background: #08788b;
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.rl-contact-card__icon svg {
  width: 27px !important;
  height: 27px !important;
  min-width: 27px !important;
  max-width: 27px !important;
  display: block;
}

.rl-contact-card__label {
  margin-bottom: 4px;
  color: #1f2528;
  font-size: 17px;
  line-height: 1.25;
  font-weight: 800;
}

.rl-contact-card__strong {
  color: #1f2528;
  font-size: 14px;
  line-height: 1.35;
  font-weight: 800;
}

.rl-contact-card__text p {
  margin: 0 0 10px;
  color: #374151;
  font-size: 14px;
  line-height: 1.52;
  font-weight: 400;
}

.rl-contact-card__text p:last-child {
  margin-bottom: 0;
}

.rl-contact-card__text a {
  color: #1f2528;
  text-decoration: none;
  font-weight: 700;
}

.rl-contact-card__text a:hover {
  color: #08788b;
}

.rl-contact-card__actions {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
  margin-top: 16px;
}

.rl-contact-card__link {
  width: 100%;
  min-height: 36px;
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 13px;
  line-height: 1;
  font-weight: 800;
  transition: background .18s ease, color .18s ease, border-color .18s ease, transform .18s ease;
}

.rl-contact-card__link:hover {
  transform: translateY(-1px);
}

.rl-contact-card__link--primary {
  background: #08788b;
  border: 1px solid #08788b;
  color: #ffffff;
}

.rl-contact-card__link--primary:hover {
  background: #066879;
  border-color: #066879;
  color: #ffffff;
}

@media (max-width: 1100px) {
  .rl-contacts-head {
    grid-template-columns: 1fr;
    gap: 14px;
    align-items: start;
  }

  .rl-contacts-actions {
    justify-content: flex-start;
    max-width: none;
  }

  .rl-contacts-cards {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .rl-contact-card {
    min-height: auto;
  }
}

@media (max-width: 650px) {
  .rl-contacts-page {
    margin: 22px 0 22px;
  }

  .rl-contacts-head {
    gap: 12px;
    margin-bottom: 14px;
  }

  .rl-contacts-head__text h1 {
    font-size: 28px;
    margin-bottom: 8px;
  }

  .rl-contacts-head__text p {
    font-size: 14px;
    line-height: 1.5;
  }

  .rl-contacts-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .rl-contacts-actions a {
    min-height: 38px;
    padding: 0 9px;
    justify-content: flex-start;
    font-size: 12.5px;
  }

  .rl-contacts-actions__phone {
    display: inline-flex !important;
  }

  .rl-contacts-actions__icon {
    width: 28px;
    height: 28px;
    min-width: 28px;
  }

  .rl-contacts-actions__icon svg {
    width: 16px;
    height: 16px;
  }

  .rl-contact-card {
    padding: 18px 16px;
    border-radius: 14px;
  }

  .rl-contact-card__top {
    gap: 12px;
    margin-bottom: 13px;
  }

  .rl-contact-card__icon {
    width: 42px;
    height: 42px;
    min-width: 42px;
    max-width: 42px;
    max-height: 42px;
  }

  .rl-contact-card__icon svg {
    width: 22px !important;
    height: 22px !important;
    min-width: 22px !important;
    max-width: 22px !important;
  }

  .rl-contact-card__label {
    font-size: 15px;
  }

  .rl-contact-card__strong {
    font-size: 13.5px;
  }

  .rl-contact-card__text p {
    font-size: 13px;
    line-height: 1.48;
  }

  .rl-contact-card__link {
    min-height: 34px;
    font-size: 12.5px;
  }
}

.rl-partner-note,
.rl-partner-note * {
  box-sizing: border-box;
}

.rl-partner-note {
  width: 100%;
  margin: 18px 0 22px;
  font-family: "Open Sans", Arial, sans-serif;
}

.rl-partner-note__inner {
  display: grid;
  grid-template-columns: minmax(270px, 0.9fr) minmax(0, 1.4fr) auto;
  align-items: center;
  gap: 18px;
  min-height: 112px;
  padding: 22px 24px;
  border: 1px solid #e5edf1;
  border-radius: 16px;
  background: #ffffff;
  box-shadow: 0 8px 24px rgba(20, 52, 60, 0.055);
}

.rl-partner-note__top {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  min-width: 0;
}

.rl-partner-note__icon {
  width: 46px;
  height: 46px;
  min-width: 46px;
  max-width: 46px;
  max-height: 46px;
  border-radius: 50%;
  background: #08788b;
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.rl-partner-note__icon svg {
  width: 24px !important;
  height: 24px !important;
  min-width: 24px !important;
  max-width: 24px !important;
  display: block;
}

.rl-partner-note__label {
  margin-bottom: 4px;
  color: #1f2528;
  font-size: 15px;
  line-height: 1.25;
  font-weight: 800;
}

.rl-partner-note__strong {
  color: #1f2528;
  font-size: 14px;
  line-height: 1.35;
  font-weight: 700;
}

.rl-partner-note__text {
  min-width: 0;
}

.rl-partner-note__text p {
  margin: 0;
  color: #374151;
  font-size: 14px;
  line-height: 1.55;
  font-weight: 400;
}

.rl-partner-note__btn {
  min-height: 36px;
  padding: 0 18px;
  border-radius: 6px;
  border: 1px solid rgba(8, 120, 139, 0.35);
  background: #ffffff;
  color: #08788b;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 13px;
  line-height: 1;
  font-weight: 800;
  white-space: nowrap;
  transition: background .18s ease, color .18s ease, border-color .18s ease, transform .18s ease;
}

.rl-partner-note__btn:hover {
  background: #08788b;
  border-color: #08788b;
  color: #ffffff;
  transform: translateY(-1px);
}

@media (max-width: 1000px) {
  .rl-partner-note__inner {
    grid-template-columns: 1fr;
    gap: 12px;
    min-height: auto;
  }

  .rl-partner-note__btn {
    width: fit-content;
  }
}

@media (max-width: 650px) {
  .rl-partner-note {
    margin: 16px 0 18px;
  }

  .rl-partner-note__inner {
    padding: 18px 16px;
    border-radius: 14px;
    gap: 10px;
  }

  .rl-partner-note__top {
    gap: 12px;
  }

  .rl-partner-note__icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
    max-width: 40px;
    max-height: 40px;
  }

  .rl-partner-note__icon svg {
    width: 21px !important;
    height: 21px !important;
    min-width: 21px !important;
    max-width: 21px !important;
  }

  .rl-partner-note__label {
    font-size: 14.5px;
  }

  .rl-partner-note__strong {
    font-size: 13.5px;
  }

  .rl-partner-note__text p {
    font-size: 13px;
    line-height: 1.48;
  }

  .rl-partner-note__btn {
    min-height: 32px;
    padding: 0 16px;
    font-size: 12px;
  }
}

.rl-map-section,
.rl-map-section * {
  box-sizing: border-box;
}

.rl-map-section {
  width: 100%;
  margin: 14px 0 18px;
  font-family: "Open Sans", Arial, sans-serif;
}

.rl-map-card {
  overflow: hidden;
  border: 1px solid #e5edf1;
  border-radius: 16px;
  background: #ffffff;
  box-shadow: 0 8px 24px rgba(20, 52, 60, 0.055);
}

.rl-map-card__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 16px 20px;
}

.rl-map-card__head h2 {
  margin: 0 0 4px;
  color: #1f2528;
  font-size: 21px;
  line-height: 1.2;
  font-weight: 800;
  letter-spacing: -0.25px;
}

.rl-map-card__head p {
  margin: 0;
  color: #586469;
  font-size: 13.5px;
  line-height: 1.4;
}

.rl-map-card__btn {
  flex: 0 0 auto;
  min-height: 36px;
  padding: 0 18px;
  border-radius: 6px;
  border: 1px solid rgba(8, 120, 139, 0.35);
  background: rgba(8, 120, 139, 0.08);
  color: #08788b;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 13px;
  line-height: 1;
  font-weight: 800;
  white-space: nowrap;
  transition: background .18s ease, color .18s ease, border-color .18s ease, transform .18s ease;
}

.rl-map-card__btn:hover {
  background: #08788b;
  border-color: #08788b;
  color: #ffffff;
  transform: translateY(-1px);
}

@media (max-width: 760px) {
  .rl-map-section {
    margin: 12px 0 16px;
  }

  .rl-map-card {
    border-radius: 14px;
  }

  .rl-map-card__head {
    display: block;
    padding: 14px 14px;
  }

  .rl-map-card__head h2 {
    font-size: 20px;
  }

  .rl-map-card__head p {
    font-size: 13px;
  }

  .rl-map-card__btn {
    width: 100%;
    margin-top: 12px;
    min-height: 34px;
    font-size: 12.5px;
  }
}

.rl-contact-strip,
.rl-contact-strip * {
  box-sizing: border-box;
}

.rl-contact-strip {
  width: 100%;
  margin: 10px 0 14px;
  font-family: "Open Sans", Arial, sans-serif;
}

.rl-contact-strip__wrap {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  overflow: hidden;
  border: 1px solid #e7edf1;
  border-radius: 16px;
  background: #ffffff;
  box-shadow: 0 8px 24px rgba(20, 52, 60, 0.045);
}

.rl-contact-strip__item {
  position: relative;
  display: flex;
  align-items: center;
  gap: 16px;
  min-width: 0;
  padding: 18px 24px;
}

.rl-contact-strip__item:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 18px;
  right: 0;
  bottom: 18px;
  width: 1px;
  background: #e8eef2;
}

.rl-contact-strip__icon {
  flex: 0 0 44px;
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.rl-contact-strip__icon img {
  width: 44px;
  height: 44px;
  display: block;
  object-fit: contain;
}

.rl-contact-strip__text {
  min-width: 0;
}

.rl-contact-strip__title {
  margin: 0;
  color: #1f2528;
  font-size: 14px;
  line-height: 1.22;
  font-weight: 800;
  letter-spacing: -0.12px;
}

.rl-contact-strip__sub {
  margin-top: 3px;
  color: #374151;
  font-size: 12.8px;
  line-height: 1.35;
  font-weight: 400;
}

@media (max-width: 1100px) {
  .rl-contact-strip__wrap {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .rl-contact-strip__item:nth-child(2)::after {
    display: none;
  }

  .rl-contact-strip__item:nth-child(1),
  .rl-contact-strip__item:nth-child(2) {
    border-bottom: 1px solid #e8eef2;
  }
}

@media (max-width: 700px) {
  .rl-contact-strip {
    margin: 10px 0 14px;
  }

  .rl-contact-strip__wrap {
    grid-template-columns: 1fr;
    border-radius: 14px;
  }

  .rl-contact-strip__item {
    gap: 12px;
    padding: 13px 14px;
    border-bottom: none !important;
  }

  .rl-contact-strip__item:not(:last-child)::after {
    display: block;
    top: auto;
    left: 14px;
    right: 14px;
    bottom: 0;
    width: auto;
    height: 1px;
    background: #e8eef2;
  }

  .rl-contact-strip__icon {
    width: 40px;
    height: 40px;
    flex-basis: 40px;
  }

  .rl-contact-strip__icon img {
    width: 40px;
    height: 40px;
  }

  .rl-contact-strip__title {
    font-size: 13px;
  }

  .rl-contact-strip__sub {
    font-size: 12px;
    line-height: 1.3;
  }
}

.rl-route-video-head,
.rl-route-video-head * {
  box-sizing: border-box;
}

.rl-route-video-head {
  scroll-margin-top: 90px;
  margin: 30px 0 18px;
  font-family: "Open Sans", Arial, sans-serif;
}

.rl-route-video-head h2 {
  margin: 0 0 7px;
  color: #1f2528;
  font-size: 24px;
  line-height: 1.2;
  font-weight: 800;
  letter-spacing: -0.25px;
}

.rl-route-video-head p {
  max-width: 680px;
  margin: 0;
  color: #586469;
  font-size: 14px;
  line-height: 1.5;
}

@media (max-width: 760px) {
  .rl-route-video-head {
    scroll-margin-top: 70px;
    margin: 24px 0 14px;
  }

  .rl-route-video-head h2 {
    font-size: 21px;
  }

  .rl-route-video-head p {
    font-size: 13px;
  }
}

.rl-route-video-text {
  margin-top: 12px;
  font-family: "Open Sans", Arial, sans-serif;
}

.rl-route-video-text h3 {
  margin: 0 0 6px;
  color: #1f2528;
  font-size: 17px;
  line-height: 1.25;
  font-weight: 800;
  letter-spacing: -0.15px;
}

.rl-route-video-text p {
  margin: 0;
  color: #586469;
  font-size: 13.5px;
  line-height: 1.45;
  font-weight: 400;
}

@media (max-width: 760px) {
  .rl-route-video-text {
    margin-top: 10px;
  }

  .rl-route-video-text h3 {
    font-size: 15.5px;
  }

  .rl-route-video-text p {
    font-size: 12.5px;
    line-height: 1.42;
  }
}

.rl-contact-form-head,
.rl-contact-form-head * {
  box-sizing: border-box;
}

.rl-contact-form-head {
  margin: 30px 0 18px;
  font-family: "Open Sans", Arial, sans-serif;
}

.rl-contact-form-head h2 {
  margin: 0 0 7px;
  color: #1f2528;
  font-size: 24px;
  line-height: 1.2;
  font-weight: 800;
  letter-spacing: -0.25px;
}

.rl-contact-form-head p {
  max-width: 680px;
  margin: 0;
  color: #586469;
  font-size: 14px;
  line-height: 1.5;
}

@media (max-width: 760px) {
  .rl-contact-form-head {
    margin: 24px 0 14px;
  }

  .rl-contact-form-head h2 {
    font-size: 21px;
  }

  .rl-contact-form-head p {
    font-size: 13px;
  }
}