:root {
  --pav-contact-orange: #ff7900;
  --pav-contact-black: #020e28;
  --pav-contact-ink: #141414;
  --pav-contact-white: #ffffff;
  --pav-contact-paper: #f5f5f5;
  --pav-contact-line: #e6e6e6;
}

.pav-contact-wrap {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.pav-contact-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 16px;
  color: var(--pav-contact-orange);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.pav-contact-kicker::before {
  content: "";
  width: 34px;
  height: 3px;
  background: var(--pav-contact-orange);
}

.pav-contact-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(68px, 9vw, 126px) 0 clamp(52px, 7vw, 96px);
  background:
    linear-gradient(90deg, rgba(255, 121, 0, 0.1) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255, 121, 0, 0.08) 1px, transparent 1px),
    var(--pav-contact-black);
  background-size: 54px 54px;
  color: var(--pav-contact-white);
}

.pav-contact-hero::before {
  content: "";
  position: absolute;
  inset: 0 0 auto auto;
  width: min(42vw, 560px);
  height: 100%;
  background: var(--pav-contact-orange);
  clip-path: polygon(28% 0, 100% 0, 100% 100%, 0 100%);
}

.pav-contact-hero::after {
  content: "CONTACT";
  position: absolute;
  left: clamp(18px, 5vw, 72px);
  bottom: -22px;
  color: rgba(255, 255, 255, 0.045);
  font-size: clamp(70px, 14vw, 190px);
  font-weight: 900;
  line-height: 1;
  pointer-events: none;
}

.pav-contact-hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 500px);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
}

.pav-contact-hero h1 {
  max-width: 760px;
  margin: 0 0 22px;
  color: var(--pav-contact-white);
  font-size: clamp(44px, 6vw, 82px);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 0.96;
}

.pav-contact-hero__copy > p:not(.pav-contact-kicker) {
  max-width: 660px;
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.5;
}

.pav-contact-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.pav-contact-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 20px;
  border: 2px solid var(--pav-contact-orange);
  border-radius: 4px;
  background: var(--pav-contact-orange);
  color: var(--pav-contact-black);
  font-weight: 900;
  line-height: 1;
  text-decoration: none;
}

.pav-contact-button:hover,
.pav-contact-button:focus {
  border-color: var(--pav-contact-white);
  background: var(--pav-contact-white);
  color: var(--pav-contact-black);
  text-decoration: none;
}

.pav-contact-button--light {
  border-color: var(--pav-contact-white);
  background: transparent;
  color: var(--pav-contact-white);
}

.pav-contact-panel {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(2, 14, 40, 0.94);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.32);
}

.pav-contact-panel__item {
  display: block;
  padding: 24px 22px;
  color: var(--pav-contact-white);
  text-decoration: none;
}

.pav-contact-panel__item + .pav-contact-panel__item {
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.pav-contact-panel__item span {
  display: block;
  margin-bottom: 8px;
  color: var(--pav-contact-orange);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.pav-contact-panel__item strong {
  display: block;
  overflow-wrap: anywhere;
  word-break: break-word;
  color: var(--pav-contact-white);
  font-size: clamp(18px, 1.65vw, 25px);
  line-height: 1.15;
}

.pav-contact-panel__item:hover,
.pav-contact-panel__item:focus {
  background: var(--pav-contact-orange);
  color: var(--pav-contact-black);
  text-decoration: none;
}

.pav-contact-panel__item:hover span,
.pav-contact-panel__item:focus span,
.pav-contact-panel__item:hover strong,
.pav-contact-panel__item:focus strong {
  color: var(--pav-contact-black);
}

.pav-contact-routes {
  padding: clamp(50px, 7vw, 92px) 0;
  background: var(--pav-contact-white);
}

.pav-branch-command {
  position: relative;
  overflow: hidden;
  padding: clamp(58px, 8vw, 104px) 0;
  background: var(--pav-contact-black);
  color: var(--pav-contact-white);
}

.pav-branch-command::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: min(26vw, 340px);
  background: var(--pav-contact-orange);
  clip-path: polygon(0 0, 72% 0, 100% 100%, 0 100%);
}

.pav-branch-command__head,
.pav-branch-command__grid {
  position: relative;
  z-index: 1;
}

.pav-branch-command__head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 380px);
  gap: 28px;
  align-items: end;
  margin-bottom: 34px;
}

.pav-branch-command__head h2 {
  max-width: 780px;
  margin: 0;
  color: var(--pav-contact-white);
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1;
}

.pav-branch-command__head p:last-child {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 18px;
}

.pav-branch-command__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 1.05fr);
  gap: 20px;
  align-items: stretch;
}

.pav-branch-list {
  display: grid;
  gap: 12px;
}

.pav-branch-card {
  display: grid;
  gap: 6px;
  width: 100%;
  padding: 18px 20px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.07);
  color: var(--pav-contact-white);
  text-align: left;
  transition: background-color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.pav-branch-card:hover,
.pav-branch-card:focus,
.pav-branch-card.is-active {
  border-color: var(--pav-contact-orange);
  background: rgba(255, 121, 0, 0.16);
  transform: translateX(4px);
}

.pav-branch-card span {
  color: var(--pav-contact-orange);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.pav-branch-card strong {
  color: var(--pav-contact-white);
  font-size: 20px;
  font-weight: 900;
  line-height: 1.15;
}

.pav-branch-card small,
.pav-branch-card em {
  color: rgba(255, 255, 255, 0.74);
  font-style: normal;
  line-height: 1.35;
}

.pav-branch-card em {
  overflow-wrap: anywhere;
  font-weight: 800;
}

.pav-branch-map {
  overflow: hidden;
  min-height: 620px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: #101828;
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.32);
}

.pav-branch-map__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 72px;
  padding: 18px 22px;
  background: var(--pav-contact-orange);
  color: var(--pav-contact-black);
}

.pav-branch-map__bar span {
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.pav-branch-map__bar strong {
  font-size: clamp(18px, 2vw, 25px);
  font-weight: 900;
  line-height: 1.1;
  text-align: right;
}

.pav-branch-map iframe {
  display: block;
  width: 100%;
  height: calc(100% - 72px);
  min-height: 548px;
  border: 0;
  filter: grayscale(0.18) contrast(1.03);
}

body.page-id-1847 .elementor-element-5fc0591,
body.page-id-1847 .elementor-element-02f9ef7,
body.page-id-1847 .elementor-element-3825641,
body.page-id-1847 .elementor-element-9cdcd8e,
body.page-id-1847 .elementor-element-7c1a6a4,
body.page-id-1847 .elementor-element-ac2f7cd {
  display: none !important;
}

.pav-contact-routes__head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 30px;
}

.pav-contact-routes h2 {
  max-width: 760px;
  margin: 0;
  color: var(--pav-contact-ink);
  font-size: clamp(34px, 4vw, 58px);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1;
}

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

.pav-contact-route {
  display: flex;
  min-height: 270px;
  flex-direction: column;
  padding: 26px;
  border: 1px solid var(--pav-contact-line);
  border-radius: 6px;
  background: var(--pav-contact-white);
  color: var(--pav-contact-ink);
  text-decoration: none;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.pav-contact-route:hover,
.pav-contact-route:focus {
  border-color: rgba(255, 121, 0, 0.58);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.1);
  transform: translateY(-4px);
  text-decoration: none;
}

.pav-contact-route span {
  color: var(--pav-contact-orange);
  font-size: 15px;
  font-weight: 900;
}

.pav-contact-route h3 {
  margin: 16px 0 12px;
  color: var(--pav-contact-ink);
  font-size: 25px;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1.08;
}

.pav-contact-route p {
  margin: 0 0 24px;
  color: #454545;
  line-height: 1.55;
}

.pav-contact-route strong {
  margin-top: auto;
  color: var(--pav-contact-ink);
  font-weight: 900;
}

.pav-contact-route strong::after {
  content: "";
  display: inline-block;
  width: 34px;
  height: 3px;
  margin-left: 10px;
  vertical-align: middle;
  background: var(--pav-contact-orange);
}

body.page-id-1850 .elementor-1850 > .elementor-section:not(.elementor-element-19b3452) {
  padding-top: clamp(42px, 6vw, 78px);
  padding-bottom: clamp(42px, 6vw, 78px);
}

body.page-id-1850 .elementor-element-ac2f7cd {
  background: var(--pav-contact-paper);
}

body.page-id-1850 .elementor-widget-transpi-heading .transpi__heading-title {
  letter-spacing: 0 !important;
}

body.page-id-1850 .elementor-button {
  border-radius: 4px !important;
  background: var(--pav-contact-orange) !important;
  color: var(--pav-contact-black) !important;
  font-weight: 900 !important;
}

@media (max-width: 1024px) {
  .pav-contact-hero__grid,
  .pav-contact-route-grid,
  .pav-branch-command__grid,
  .pav-branch-command__head {
    grid-template-columns: 1fr;
  }

  .pav-contact-panel {
    max-width: 620px;
  }

  .pav-contact-routes__head {
    display: block;
  }

  .pav-branch-map {
    min-height: 520px;
  }

  .pav-branch-map iframe {
    min-height: 448px;
  }
}

@media (max-width: 767px) {
  .pav-contact-wrap {
    width: min(100% - 24px, 1180px);
  }

  .pav-contact-hero {
    padding-top: 50px;
  }

  .pav-contact-hero::before {
    width: 100%;
    height: 155px;
    clip-path: polygon(0 0, 100% 0, 100% 62%, 0 100%);
  }

  .pav-contact-hero h1 {
    font-size: clamp(38px, 12vw, 54px);
  }

  .pav-contact-button {
    width: 100%;
  }

  .pav-contact-panel__item {
    padding: 20px;
  }

  .pav-branch-command::before {
    width: 100%;
    height: 150px;
    clip-path: polygon(0 0, 100% 0, 100% 62%, 0 100%);
  }

  .pav-branch-map__bar {
    display: block;
  }

  .pav-branch-map__bar strong {
    display: block;
    margin-top: 6px;
    text-align: left;
  }

  .pav-branch-card:hover,
  .pav-branch-card:focus,
  .pav-branch-card.is-active {
    transform: none;
  }

  .pav-contact-route {
    min-height: 0;
  }
}
