:root {
    --rw-color-text: #333333;
    --rw-color-accent: #fd8433;
    --rw-color-red: #e64a4a;
    --rw-color-blue: #003c72;
    --rw-footer-top: #1b6fb2;
    --rw-footer-bottom: #1f3063;
    --rw-white: #ffffff;
    --rw-muted-white: rgba(255, 255, 255, 0.7);
    --rw-design-width: 1920;
}

html {
    font-size: calc(1vw / 19.5) !important;
    scroll-behavior: smooth;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    color: var(--rw-color-text);
    background: #ffffff;
    font-family: "Inter", Arial, sans-serif;
    font-size: 16rem;
    line-height: 1.4;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

img,
svg {
    display: block;
    max-width: 100%;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
textarea,
select {
    font: inherit;
}

.screen-reader-text {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.site-main {
    min-height: 100rem;
}

.rw-content-container {
    width: 1480rem;
    margin: 80rem auto;
}

.rw-entry__title {
    margin: 0 0 32rem;
    font-size: 56rem;
    line-height: 1.1;
}

/* Header */
.rw-header {
    position: relative;
    z-index: 100;
    width: 100%;
    height: 133rem;
    background: #fff;
}

.rw-header__desktop {
    display: block;
    height: 100%;
}

.rw-header__container {
    position: relative;
    width: 1460rem;
    height: 133rem;
    margin: 0 auto;
}

.rw-header__logo {
    position: absolute;
    top: 10rem;
    left: 0;
    width: 108rem;
    height: 112rem;
}

.rw-header__logo img {
    width: 108rem;
    height: 112rem;
    object-fit: contain;
}

.rw-header__main {
    width: 1319rem;
    height: 133rem;
    margin-left: auto;
}

.rw-header__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80rem;
}

.rw-header__company {
    color: var(--rw-color-red);
    font-size: 46rem;
    font-weight: 700;
    line-height: 1;
    white-space: nowrap;
}

.rw-header__contacts {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 858rem;
    height: 80rem;
}

.rw-header__email,
.rw-header__phone-group,
.rw-header__languages,
.rw-header__phone-group {
    display: flex;
    align-items: center;
}

.rw-header__email {
    gap: 20rem;
    font-size: 20rem;
    font-weight: 700;
    white-space: nowrap;
}

.rw-header__email-icon {
    width: 35rem;
    height: 35rem;
}

.rw-header__phone-group {
    gap: 30rem;
}

.rw-header__phone {
    font-size: 20rem;
    font-weight: 800;
    white-space: nowrap;
}

.rw-header__languages {
    gap: 7rem;
    font-size: 18rem;
    font-weight: 500;
    text-transform: uppercase;
}

.rw-header__languages > span {
    width: 1px;
    height: 18rem;
    background: rgba(51, 51, 51, 0.3);
}

.rw-header__language--active {
    color: var(--rw-color-accent);
}

.rw-socials {
    display: flex;
    align-items: center;
}

.rw-socials--header {
    gap: 8rem;
}

.rw-socials__item,
.rw-socials__item img {
    display: block;
}

.rw-socials--header .rw-socials__item,
.rw-socials--header .rw-socials__item img {
    width: 35rem;
    height: 35rem;
}

.rw-header__nav {
    height: 53rem;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.rw-menu {
    margin: 0;
    padding: 0;
    list-style: none;
}

.rw-menu--header {
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    height: 53rem;
}

.rw-menu--header > li {
    position: relative;
    display: flex;
    align-items: center;
    height: 53rem;
}

.rw-menu--header > li > a {
    display: flex;
    align-items: center;
    height: 100%;
    font-size: 22rem;
    font-weight: 500;
    white-space: nowrap;
}

.rw-menu--header > li.current-menu-item::after,
.rw-menu--header > li.current-menu-ancestor::after {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    height: 2rem;
    background: #fea560;
    content: "";
}

.rw-menu--header > li.menu-item-has-children > a::after {
    width: 9rem;
    height: 9rem;
    margin-left: 10rem;
    border-right: 1.5rem solid currentColor;
    border-bottom: 1.5rem solid currentColor;
    content: "";
    transform: translateY(-3rem) rotate(45deg);
}

.rw-menu--header .sub-menu {
    position: absolute;
    top: calc(100% - 1rem);
    left: -24rem;
    z-index: 20;
    min-width: 330rem;
    margin: 0;
    padding: 16rem 24rem;
    list-style: none;
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 20rem 45rem rgba(0, 0, 0, 0.12);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10rem);
    transition: opacity .2s ease, transform .2s ease, visibility .2s ease;
}

.rw-menu--header li:hover > .sub-menu,
.rw-menu--header li:focus-within > .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.rw-menu--header .sub-menu a {
    display: block;
    padding: 11rem 0;
    font-size: 16rem;
    line-height: 1.3;
}

.rw-menu--header .sub-menu > li + li {
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.rw-header__mobile {
    display: none;
}

/* Shared buttons */
.rw-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 56rem;
    padding: 16rem 32rem;
    color: #fff;
    font-size: 14rem;
    font-weight: 700;
    letter-spacing: 1.4rem;
    text-transform: uppercase;
    background: linear-gradient(180deg, #faa027 0%, #fc7e29 100%);
    border: 0;
    border-radius: 5rem;
    transition: filter .2s ease, transform .2s ease;
}

.rw-button:hover {
    filter: brightness(1.06);
}

.rw-button:active {
    transform: translateY(1rem);
}

/* Footer base */
.rw-footer {
    position: relative;
    width: 100%;
    color: #fff;
    background: linear-gradient(180deg, var(--rw-footer-top) 0%, var(--rw-footer-bottom) 100%);
    overflow: hidden;
}

.rw-footer__watermark {
    position: absolute;
    top: 44rem;
    right: 92rem;
    z-index: 0;
    color: rgba(255, 255, 255, 0.09);
    font-family: Impact, "Arial Narrow", sans-serif;
    font-size: 184rem;
    font-weight: 400;
    line-height: 0.85;
    white-space: nowrap;
    letter-spacing: -3rem;
}

.rw-footer__columns {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: flex-start;
    gap: 55rem;
    width: 1045rem;
}

.rw-footer__brand {
    width: 220rem;
}

.rw-footer__logo {
    width: 76rem;
    height: 78rem;
    object-fit: contain;
}

.rw-footer__description {
    margin-top: 18rem;
    color: var(--rw-muted-white);
    font-size: 14rem;
    font-weight: 500;
    line-height: 1.25;
}

.rw-footer__separator {
    width: 1px;
    height: 172rem;
    background: rgba(255, 255, 255, 0.14);
}

.rw-footer__menu-column {
    width: 180rem;
}

.rw-footer__directions-column {
    width: 550rem;
}

.rw-footer__column-title {
    position: relative;
    margin: 0 0 20rem;
    padding-bottom: 11rem;
    color: var(--rw-muted-white);
    font-size: 14rem;
    font-weight: 500;
    line-height: 1;
    text-transform: uppercase;
}

.rw-footer__column-title::after {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 25rem;
    height: 2rem;
    background: var(--rw-color-accent);
    content: "";
}

.rw-menu--footer,
.rw-menu--directions {
    display: flex;
    flex-direction: column;
    gap: 20rem;
}

.rw-menu--footer a,
.rw-menu--directions a {
    color: var(--rw-muted-white);
    font-size: 14rem;
    font-weight: 500;
    line-height: 1.25;
    transition: color .2s ease;
}

.rw-menu--footer a:hover,
.rw-menu--directions a:hover {
    color: #fff;
}

.rw-footer__legal {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    margin-top: 43rem;
    padding-top: 32rem;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
    color: rgba(255, 255, 255, 0.5);
    font-size: 14rem;
    font-weight: 500;
    white-space: nowrap;
}

.rw-footer__legal p {
    margin: 0;
}

.rw-footer__legal-links {
    display: flex;
    gap: 55rem;
    color: var(--rw-muted-white);
}

.rw-footer__legal-links a:hover {
    color: #fff;
}

/* Compact footer */
.rw-footer--compact {
    min-height: 410rem;
    padding-top: 40rem;
}

.rw-footer__compact-container {
    position: relative;
    z-index: 1;
    width: 1462rem;
    margin: 0 auto;
}

.rw-footer--compact > .rw-footer__compact-container > .rw-footer__columns {
    min-height: 230rem;
}

/* Full footer */
.rw-footer--full {
    min-height: 1595rem;
}

.rw-footer__full-container {
    position: relative;
    z-index: 1;
    width: 100%;
    padding: 118rem 52rem 0;
}

.rw-footer__contacts-section {
    width: 1481rem;
    margin: 0 auto;
}

.rw-footer__contacts-title {
    margin: 0 0 49rem;
    font-size: 56rem;
    font-weight: 700;
    line-height: 1.2;
}

.rw-footer__contacts-row {
    display: flex;
    align-items: flex-start;
    gap: 113rem;
}

.rw-button--feedback {
    width: 253rem;
    height: 66rem;
    flex: 0 0 253rem;
}

.rw-footer__contact-items {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 37rem;
    width: 1115rem;
}

.rw-footer__contact-item {
    display: flex;
    align-items: flex-start;
    gap: 30rem;
    min-width: 0;
}

.rw-footer__contact-icon {
    flex: 0 0 36rem;
    width: 36rem;
    height: 36rem;
}

.rw-footer__contact-item h3 {
    margin: 0 0 15rem;
    font-size: 18rem;
    font-weight: 700;
    line-height: 1.2;
}

.rw-footer__contact-item > div > div,
.rw-footer__contact-item > div > a,
.rw-footer__phone-list a {
    color: var(--rw-muted-white);
    font-size: 18rem;
    font-weight: 400;
    line-height: 1.4;
}

.rw-footer__phone-list {
    display: flex;
    flex-direction: column;
}

.rw-socials--footer {
    gap: 10rem;
    margin-top: 15rem;
}

.rw-socials--footer .rw-socials__item,
.rw-socials--footer .rw-socials__item img {
    width: 46rem;
    height: 46rem;
}

.rw-footer__map {
    position: relative;
    width: 1816rem;
    height: 635rem;
    margin: 64rem auto 0;
    overflow: hidden;
    background: #e7ebef;
}

.rw-footer__map iframe,
.rw-footer__map-canvas,
.rw-footer__map-placeholder {
    width: 100%;
    height: 100%;
    border: 0;
}

.rw-footer__map iframe {
    filter: grayscale(1) contrast(.88) brightness(1.14);
}

.rw-footer__map-canvas ymaps[class*="ground-pane"] {
    filter: grayscale(1) contrast(.88) brightness(1.14);
}

.rw-footer__map-placeholder {
    background:
        linear-gradient(45deg, rgba(255,255,255,.42) 25%, transparent 25%) 0 0 / 80rem 80rem,
        linear-gradient(-45deg, rgba(255,255,255,.28) 25%, transparent 25%) 0 0 / 80rem 80rem,
        #dfe5ea;
}

.rw-footer--full .rw-footer__bottom {
    position: relative;
    width: 1462rem;
    min-height: 0;
    margin: 140rem auto 0;
    padding: 0 0 42rem;
    background: transparent;
    overflow: visible;
}

.rw-footer--full .rw-footer__bottom .rw-footer__compact-container {
    width: 100%;
}

.rw-footer--full .rw-footer__bottom .rw-footer__watermark {
    top: 2rem;
    right: -155rem;
}

/* 404 */
.rw-error-page {
    display: flex;
    min-height: 600rem;
    padding: 80rem;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.rw-error-page__code {
    margin: 0;
    color: var(--rw-color-red);
    font-size: 160rem;
    font-weight: 800;
    line-height: 1;
}

.rw-error-page h1 {
    margin: 20rem 0 40rem;
    font-size: 44rem;
}

@media (max-width: 1199px) and (min-width: 768px) {
    html {
        font-size: calc(100vw / 1280) !important;
    }
}

@media (max-width: 1023px) {
    .rw-header {
        height: 76rem;
    }

    .rw-header__desktop {
        display: none;
    }

    .rw-header__mobile {
        position: relative;
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        height: 76rem;
        padding: 8rem 24rem;
        background: #fff;
        border-bottom: 1px solid rgba(0, 0, 0, .08);
    }

    .rw-header__mobile-logo,
    .rw-header__mobile-logo img {
        width: 54rem;
        height: 56rem;
    }

    .rw-header__mobile-name {
        color: var(--rw-color-red);
        font-size: 26rem;
        font-weight: 700;
        line-height: 1;
    }

    .rw-header__toggle {
        display: flex;
        width: 42rem;
        height: 42rem;
        padding: 8rem;
        flex-direction: column;
        justify-content: center;
        gap: 5rem;
        background: none;
        border: 0;
    }

    .rw-header__toggle > span:not(.screen-reader-text) {
        width: 100%;
        height: 2rem;
        background: var(--rw-color-text);
        transition: transform .2s ease, opacity .2s ease;
    }

    .rw-header__toggle[aria-expanded="true"] > span:nth-child(1) {
        transform: translateY(7rem) rotate(45deg);
    }

    .rw-header__toggle[aria-expanded="true"] > span:nth-child(2) {
        opacity: 0;
    }

    .rw-header__toggle[aria-expanded="true"] > span:nth-child(3) {
        transform: translateY(-7rem) rotate(-45deg);
    }

    .rw-header__mobile-panel {
        position: absolute;
        top: 76rem;
        right: 0;
        left: 0;
        z-index: 100;
        padding: 24rem;
        background: #fff;
        box-shadow: 0 20rem 50rem rgba(0, 0, 0, .12);
    }

    .rw-menu--mobile {
        display: flex;
        flex-direction: column;
        gap: 0;
    }

    .rw-menu--mobile li {
        border-bottom: 1px solid rgba(0, 0, 0, .08);
    }

    .rw-menu--mobile a {
        display: block;
        padding: 14rem 0;
        font-size: 18rem;
        font-weight: 500;
    }

    .rw-menu--mobile .sub-menu {
        margin: 0;
        padding: 0 0 10rem 18rem;
        list-style: none;
    }

    .rw-header__mobile-contact {
        display: block;
        margin-top: 18rem;
        font-size: 18rem;
        font-weight: 700;
    }

    .rw-socials--mobile {
        gap: 10rem;
        margin-top: 20rem;
    }

    .rw-socials--mobile .rw-socials__item,
    .rw-socials--mobile img {
        width: 38rem;
        height: 38rem;
    }

    .rw-menu-open,
    .rw-page-locked {
        overflow: hidden;
    }

    .rw-footer__watermark {
        right: -45rem;
        font-size: 120rem;
    }

    .rw-footer__columns {
        width: 100%;
        gap: 30rem;
    }

    .rw-footer__compact-container {
        width: calc(100% - 48rem);
    }

    .rw-footer__brand {
        width: 190rem;
    }

    .rw-footer__directions-column {
        width: 470rem;
    }

    .rw-footer__full-container {
        padding-right: 24rem;
        padding-left: 24rem;
    }

    .rw-footer__contacts-section,
    .rw-footer__map {
        width: 100%;
    }

    .rw-footer__contacts-row {
        gap: 60rem;
    }

    .rw-footer__contact-items {
        width: auto;
        flex: 1;
        gap: 24rem;
    }

    .rw-footer--full .rw-footer__bottom {
        width: 100%;
    }
}

@media (max-width: 767px) {
    html {
        font-size: calc(100vw / 390) !important;
    }

    body {
        font-size: 16rem;
    }

    .rw-content-container {
        width: calc(100% - 32rem);
        margin: 40rem auto;
    }

    .rw-header {
        height: 68rem;
    }

    .rw-header__mobile {
        height: 68rem;
        padding: 6rem 16rem;
    }

    .rw-header__mobile-logo,
    .rw-header__mobile-logo img {
        width: 48rem;
        height: 50rem;
    }

    .rw-header__mobile-name {
        max-width: 210rem;
        font-size: 22rem;
    }

    .rw-header__mobile-panel {
        top: 68rem;
        padding: 18rem 16rem 24rem;
    }

    .rw-footer--compact,
    .rw-footer--full {
        min-height: 0;
    }

    .rw-footer--compact {
        padding: 44rem 0 28rem;
    }

    .rw-footer__watermark {
        top: 35rem;
        right: -70rem;
        font-size: 94rem;
        opacity: .8;
    }

    .rw-footer__compact-container {
        width: calc(100% - 32rem);
    }

    .rw-footer__columns {
        display: grid;
        grid-template-columns: 1fr;
        gap: 38rem;
    }

    .rw-footer__brand,
    .rw-footer__menu-column,
    .rw-footer__directions-column {
        width: 100%;
    }

    .rw-footer__brand {
        position: relative;
        z-index: 2;
    }

    .rw-footer__separator {
        display: none;
    }

    .rw-footer__logo {
        width: 72rem;
        height: 74rem;
    }

    .rw-footer__description {
        max-width: 220rem;
        font-size: 14rem;
    }

    .rw-footer__column-title {
        font-size: 13rem;
    }

    .rw-menu--footer,
    .rw-menu--directions {
        gap: 14rem;
    }

    .rw-menu--footer a,
    .rw-menu--directions a {
        font-size: 14rem;
    }

    .rw-footer__legal {
        align-items: flex-start;
        gap: 20rem;
        margin-top: 34rem;
        padding-top: 24rem;
        flex-direction: column;
        font-size: 12rem;
        white-space: normal;
    }

    .rw-footer__legal-links {
        align-items: flex-start;
        gap: 12rem;
        flex-direction: column;
    }

    .rw-footer__full-container {
        padding: 56rem 16rem 0;
    }

    .rw-footer__contacts-title {
        margin-bottom: 32rem;
        font-size: 38rem;
    }

    .rw-footer__contacts-row {
        flex-direction: column;
        gap: 36rem;
    }

    .rw-button--feedback {
        width: 100%;
        height: 58rem;
        flex-basis: auto;
    }

    .rw-footer__contact-items {
        display: flex;
        width: 100%;
        flex-direction: column;
        gap: 34rem;
    }

    .rw-footer__contact-item {
        gap: 18rem;
    }

    .rw-footer__contact-item h3 {
        margin-bottom: 10rem;
        font-size: 17rem;
    }

    .rw-footer__contact-item > div > div,
    .rw-footer__contact-item > div > a,
    .rw-footer__phone-list a {
        font-size: 16rem;
    }

    .rw-footer__map {
        height: 360rem;
        margin-top: 48rem;
    }

    .rw-footer--full .rw-footer__bottom {
        margin-top: 70rem;
        padding-bottom: 28rem;
    }

    .rw-footer--full .rw-footer__bottom .rw-footer__watermark {
        top: 20rem;
        right: -70rem;
    }

    .rw-error-page {
        min-height: 500rem;
        padding: 40rem 16rem;
    }

    .rw-error-page__code {
        font-size: 110rem;
    }

    .rw-error-page h1 {
        font-size: 32rem;
    }
}


/* Footer contact layout correction */
.rw-footer__contacts-row {
    display: block;
}

.rw-footer__contact-items {
    width: 100%;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 70rem;
}

.rw-footer__contact-item--email .rw-button--feedback {
    display: flex;
    margin-top: 30rem;
}

html.rw-menu-open,
body.rw-menu-open,
html.rw-page-locked,
body.rw-page-locked {
    overflow: hidden;
}

body.rw-menu-open,
body.rw-page-locked {
    position: fixed;
    right: 0;
    left: 0;
    width: 100%;
}

@media (max-width: 1023px) {
    .rw-header__mobile {
        justify-content: flex-start;
        gap: 14rem;
    }

    .rw-header__mobile-name {
        min-width: 0;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .rw-header__mobile-actions {
        display: flex;
        align-items: center;
        gap: 12rem;
        margin-left: auto;
    }

    .rw-header__languages--mobile {
        display: flex;
        gap: 6rem;
        font-size: 15rem;
    }

    .rw-header__languages--mobile > span {
        height: 15rem;
    }

    .rw-header__toggle {
        position: relative;
        z-index: 210;
        flex: 0 0 auto;
    }

    .rw-header__overlay {
        position: fixed;
        inset: 0;
        z-index: 190;
        padding: 0;
        background: rgba(5, 20, 35, 0.62);
        border: 0;
    }

    .rw-header__mobile-panel {
        position: fixed;
        top: 0;
        right: 0;
        bottom: auto;
        left: auto;
        z-index: 200;
        width: min(86vw, 430rem);
        height: 100vh;
        height: 100dvh;
        padding: 72rem 24rem 32rem;
        overflow-x: hidden;
        overflow-y: auto;
        overscroll-behavior: contain;
        -webkit-overflow-scrolling: touch;
        box-shadow: -20rem 0 50rem rgba(0, 0, 0, .16);
    }

    .rw-menu--mobile > li {
        position: relative;
    }

    .rw-menu--mobile > li.menu-item-has-children > a {
        padding-right: 52rem;
    }

    .rw-menu--mobile .sub-menu[hidden] {
        display: none;
    }

    .rw-menu--mobile .sub-menu {
        padding: 0 0 12rem 18rem;
    }

    .rw-menu--mobile .sub-menu li {
        border-bottom: 0;
        border-top: 1px solid rgba(0, 0, 0, .06);
    }

    .rw-menu--mobile .sub-menu a {
        padding: 11rem 0;
        font-size: 16rem;
        font-weight: 400;
    }

    .rw-submenu-toggle {
        position: absolute;
        top: 5rem;
        right: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 42rem;
        height: 42rem;
        padding: 0;
        color: var(--rw-color-text);
        background: transparent;
        border: 0;
    }

    .rw-submenu-toggle > span {
        width: 9rem;
        height: 9rem;
        border-right: 1.5rem solid currentColor;
        border-bottom: 1.5rem solid currentColor;
        transform: translateY(-3rem) rotate(45deg);
        transition: transform .2s ease;
    }

    .rw-submenu-toggle[aria-expanded="true"] > span {
        transform: translateY(2rem) rotate(225deg);
    }

    .rw-header__mobile-contacts {
        margin-top: 24rem;
        padding-top: 24rem;
        border-top: 1px solid rgba(0, 0, 0, .12);
    }

    .rw-header__mobile-contact {
        margin-top: 0;
        margin-bottom: 14rem;
    }

    .rw-socials--mobile {
        margin-top: 18rem;
    }

    .rw-socials--mobile .rw-socials__item,
    .rw-socials--mobile .rw-socials__item img {
        width: 32rem;
        height: 32rem;
    }

    .rw-footer__contact-items {
        gap: 24rem;
    }
}

@media (max-width: 767px) {
    .rw-header__mobile {
        gap: 10rem;
    }

    .rw-header__mobile-name {
        max-width: none;
        font-size: 19rem;
    }

    .rw-header__mobile-actions {
        gap: 8rem;
    }

    .rw-header__languages--mobile {
        font-size: 13rem;
    }

    .rw-header__toggle {
        width: 38rem;
        height: 38rem;
        padding: 7rem;
    }

    .rw-header__mobile-panel {
        width: min(87vw, 340rem);
        padding: 66rem 18rem 28rem;
    }

    .rw-footer__contact-items {
        gap: 28rem;
    }

    .rw-footer__contact-icon {
        flex-basis: 24rem;
        width: 24rem;
        height: 24rem;
    }

    .rw-footer__contact-item {
        gap: 14rem;
    }

    .rw-socials--footer {
        gap: 8rem;
        margin-top: 12rem;
    }

    .rw-socials--footer .rw-socials__item,
    .rw-socials--footer .rw-socials__item img {
        width: 31rem;
        height: 31rem;
    }

    .rw-footer__contact-item--email .rw-button--feedback {
        width: 100%;
        max-width: 253rem;
        margin-top: 22rem;
    }

    .rw-footer__directions-column {
        padding-top: 32rem;
        border-top: 1px solid rgba(255, 255, 255, .14);
    }
}

/* Shared inner-page hero */
.rw-page-hero {
    position: relative;
    min-height: 279rem;
    overflow: hidden;
    color: #ffffff;
    background-color: #214b7f;
    background-image: url("../images/bg-page.png");
    background-repeat: no-repeat;
    background-position: top center;
    background-size: cover;
    isolation: isolate;
}

.rw-page-hero__inner {
    position: relative;
    z-index: 2;
    width: 1480rem;
    margin: 0 auto;
    padding: 65rem 0 80rem;
}

.rw-page-hero__breadcrumbs {
    position: relative;
    z-index: 2;
    margin: 0;
    color: rgba(255, 255, 255, .7);
    font-family: "Inter", Arial, sans-serif;
    font-size: 18rem;
    font-weight: 400;
    line-height: 1.4;
}

.rw-page-hero__breadcrumbs #breadcrumbs,
.rw-page-hero__breadcrumbs p {
    margin: 0;
}

.rw-page-hero__breadcrumbs a {
    color: #ffffff;
}

.rw-page-hero__breadcrumbs a:hover,
.rw-page-hero__breadcrumbs a:focus-visible {
    text-decoration: underline;
    text-underline-offset: 3rem;
}

.rw-page-hero__separator {
    display: inline-block;
    margin: 0 18rem;
    color: #ffffff;
}

.rw-page-hero__current,
.rw-page-hero__breadcrumbs .breadcrumb_last {
    color: rgba(255, 255, 255, .7);
}

.rw-page-hero__title {
    position: relative;
    z-index: 2;
    width: 1376rem;
    max-width: 100%;
    margin: 20rem 0 0;
    color: #ffffff;
    font-family: "Inter", Arial, sans-serif;
    font-size: 62rem;
    font-weight: 700;
    line-height: 1.2;
}

.rw-page-hero__pattern {
    position: absolute;
    right: 0;
    bottom: 0;
    z-index: 1;
    width: 720rem;
    height: 109rem;
    object-fit: contain;
    object-position: right bottom;
    pointer-events: none;
}

@media (max-width: 1199px) and (min-width: 768px) {
    .rw-page-hero__inner {
        width: 1120rem;
    }

    .rw-page-hero__title {
        font-size: 52rem;
    }

    .rw-page-hero__pattern {
        width: 600rem;
        height: auto;
    }
}

@media (max-width: 767px) {
    .rw-page-hero {
        min-height: 210rem;
        background-position: top center;
    }

    .rw-page-hero__inner {
        width: calc(100% - 32rem);
        padding: 34rem 0 72rem;
    }

    .rw-page-hero__breadcrumbs {
        font-size: 14rem;
        line-height: 1.35;
    }

    .rw-page-hero__separator {
        margin: 0 9rem;
    }

    .rw-page-hero__title {
        margin-top: 18rem;
        font-size: 38rem;
        line-height: 1.12;
    }

    .rw-page-hero__pattern {
        right: -34rem;
        width: 430rem;
        height: auto;
    }
}


/* Smooth mobile drawer transition. */
@media (max-width: 1023px) {
    .rw-header__overlay {
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transition: opacity .32s ease, visibility 0s linear .38s;
    }

    .rw-header__overlay.is-open {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transition-delay: 0s;
    }

    .rw-header__mobile-panel {
        transform: translate3d(100%, 0, 0);
        visibility: hidden;
        transition: transform .38s cubic-bezier(.22, .61, .36, 1), visibility 0s linear .38s;
        will-change: transform;
    }

    .rw-header__mobile-panel.is-open {
        transform: translate3d(0, 0, 0);
        visibility: visible;
        transition-delay: 0s;
    }
}

@media (prefers-reduced-motion: reduce) {
    .rw-header__overlay,
    .rw-header__mobile-panel {
        transition: none !important;
    }
}

/* Global page lock used by the mobile drawer and bottom contact sheets. */
html.rw-page-locked,
body.rw-page-locked {
    overflow: hidden !important;
}

body.rw-page-locked {
    position: fixed;
    right: 0;
    left: 0;
    width: 100%;
}

/* Mobile fixed contact actions. */
.rw-mobile-dock,
.rw-contact-sheet-layer {
    display: none;
}

@media (max-width: 767px) {
    body {
        padding-bottom: 64rem;
    }

    .rw-mobile-dock {
        position: fixed;
        right: 0;
        bottom: 0;
        left: 0;
        z-index: 170;
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        min-height: 64rem;
        padding: 0;
        background: #ffffff;
        box-shadow: 0 -8rem 28rem rgba(8, 28, 45, .14);
        transition: opacity .26s ease, transform .32s cubic-bezier(.22, .61, .36, 1);
    }

    .rw-mobile-dock__button {
        display: flex;
        min-width: 0;
        height: 64rem;
        padding: 0 18rem;
        border: 0;
        border-radius: 0;
        align-items: center;
        justify-content: center;
        gap: 10rem;
        color: #ffffff;
        background: var(--rw-color-blue);
        font-family: "Inter", Arial, sans-serif;
        font-size: 14rem;
        font-weight: 700;
        line-height: 1;
        cursor: pointer;
        appearance: none;
    }

    .rw-mobile-dock__button + .rw-mobile-dock__button {
        background: linear-gradient(180deg, #faa027 0%, #fc7e29 100%);
    }

    .rw-mobile-dock__icon {
        width: 22rem;
        height: 22rem;
        flex: 0 0 22rem;
        fill: none;
        stroke: currentColor;
        stroke-width: 1.8;
        stroke-linecap: round;
        stroke-linejoin: round;
    }

    html.rw-page-locked .rw-mobile-dock,
    body.rw-page-locked .rw-mobile-dock {
        /* The dock remains available for contact sheets, but stays below the menu overlay. */
    }

    .rw-contact-sheet-layer {
        position: fixed;
        inset: 0;
        z-index: 260;
        display: block;
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transition: opacity .3s ease, visibility 0s linear .38s;
    }

    .rw-contact-sheet-layer.is-open {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transition-delay: 0s;
    }

    .rw-contact-sheet-layer__backdrop {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        padding: 0;
        border: 0;
        background: rgba(5, 20, 35, .58);
        opacity: 0;
        transition: opacity .3s ease;
        cursor: pointer;
    }

    .rw-contact-sheet-layer.is-open .rw-contact-sheet-layer__backdrop {
        opacity: 1;
    }

    .rw-contact-sheet {
        position: absolute;
        right: 0;
        bottom: 0;
        left: 0;
        z-index: 2;
        max-height: min(70dvh, 560rem);
        padding: 11rem 18rem calc(22rem + env(safe-area-inset-bottom));
        overflow-y: auto;
        overscroll-behavior: contain;
        border-radius: 22rem 22rem 0 0;
        background: #ffffff;
        box-shadow: 0 -20rem 55rem rgba(0, 0, 0, .18);
        transform: translate3d(0, 105%, 0);
        transition: transform .36s cubic-bezier(.22, .61, .36, 1);
        will-change: transform;
    }

    .rw-contact-sheet.is-open {
        transform: translate3d(0, 0, 0);
    }

    .rw-contact-sheet__handle {
        width: 44rem;
        height: 4rem;
        margin: 0 auto 15rem;
        border-radius: 999px;
        background: rgba(51, 51, 51, .18);
    }

    .rw-contact-sheet__head {
        display: flex;
        min-height: 40rem;
        padding-bottom: 14rem;
        align-items: center;
        justify-content: space-between;
        gap: 18rem;
    }

    .rw-contact-sheet__title {
        margin: 0;
        color: #333333;
        font-family: "Inter", Arial, sans-serif;
        font-size: 22rem;
        font-weight: 700;
        line-height: 1.15;
    }

    .rw-contact-sheet__close {
        position: relative;
        width: 36rem;
        height: 36rem;
        flex: 0 0 36rem;
        padding: 0;
        border: 0;
        background: transparent;
        cursor: pointer;
    }

    .rw-contact-sheet__close span {
        position: absolute;
        top: 50%;
        left: 50%;
        width: 22rem;
        height: 1.5rem;
        background: #333333;
    }

    .rw-contact-sheet__close span:first-child {
        transform: translate(-50%, -50%) rotate(45deg);
    }

    .rw-contact-sheet__close span:last-child {
        transform: translate(-50%, -50%) rotate(-45deg);
    }

    .rw-contact-sheet__list {
        display: flex;
        flex-direction: column;
        gap: 10rem;
    }

    .rw-contact-sheet__item {
        display: flex;
        min-height: 62rem;
        padding: 11rem 14rem;
        border: 1px solid rgba(51, 51, 51, .08);
        align-items: center;
        gap: 13rem;
        color: #333333;
        background: #f7f8fa;
    }

    .rw-contact-sheet__item-icon {
        display: flex;
        width: 38rem;
        height: 38rem;
        flex: 0 0 38rem;
        border-radius: 50%;
        align-items: center;
        justify-content: center;
        color: #ffffff;
        background: var(--rw-color-blue);
    }

    .rw-contact-sheet__item-icon svg {
        width: 21rem;
        height: 21rem;
        fill: none;
        stroke: currentColor;
        stroke-width: 1.8;
        stroke-linecap: round;
        stroke-linejoin: round;
    }

    .rw-contact-sheet__messenger-icon {
        width: 38rem;
        height: 38rem;
        flex: 0 0 38rem;
        object-fit: contain;
    }

    .rw-contact-sheet__item-copy {
        display: flex;
        min-width: 0;
        flex: 1 1 auto;
        flex-direction: column;
        gap: 3rem;
    }

    .rw-contact-sheet__item-copy strong {
        font-size: 15rem;
        font-weight: 700;
        line-height: 1.25;
    }

    .rw-contact-sheet__item-copy small {
        color: rgba(51, 51, 51, .58);
        font-size: 12rem;
        line-height: 1.2;
    }

    .rw-contact-sheet__empty {
        margin: 0;
        padding: 16rem;
        color: rgba(51, 51, 51, .65);
        background: #f7f8fa;
        font-size: 14rem;
        line-height: 1.4;
    }
}

/* Slightly slower and more tactile mobile drawer. */
@media (max-width: 1023px) {
    .rw-header__overlay {
        transition-duration: .36s;
    }

    .rw-header__mobile-panel {
        transition: transform .42s cubic-bezier(.22, .61, .36, 1), visibility 0s linear .42s;
    }
}

@media (prefers-reduced-motion: reduce) {
    .rw-mobile-dock,
    .rw-contact-sheet-layer,
    .rw-contact-sheet-layer__backdrop,
    .rw-contact-sheet {
        transition: none !important;
    }
}


/* 1.7.0 — compact mobile inner-page hero and tactile contact sheets. */
@media (max-width: 767px) {
    .rw-page-hero {
        min-height: 0;
        height: auto;
    }

    .rw-page-hero__inner {
        padding-top: 28rem;
        padding-bottom: 40rem;
    }

    .rw-page-hero__title {
        margin-top: 14rem;
    }

    body {
        padding-bottom: calc(70rem + env(safe-area-inset-bottom));
    }

    .rw-mobile-dock {
        right: 12rem;
        bottom: calc(10rem + env(safe-area-inset-bottom));
        left: 12rem;
        min-height: 0;
        gap: 8rem;
        padding: 0;
        background: transparent;
        box-shadow: none;
    }

    .rw-mobile-dock__button {
        height: 48rem;
        min-height: 48rem;
        padding: 0 12rem;
        border-radius: 5rem;
        gap: 7rem;
        font-size: 13rem;
        box-shadow: 0 7rem 20rem rgba(8, 28, 45, .12);
    }

    .rw-mobile-dock__icon {
        width: 19rem;
        height: 19rem;
        flex-basis: 19rem;
    }

    .rw-contact-sheet {
        max-height: min(72dvh, 500rem);
        padding: 8rem 14rem calc(18rem + env(safe-area-inset-bottom));
        border-radius: 20rem 20rem 0 0;
        transition: transform .36s cubic-bezier(.22, .61, .36, 1);
        touch-action: pan-y;
    }

    .rw-contact-sheet.is-dragging {
        transition: none;
        user-select: none;
    }

    .rw-contact-sheet__handle {
        width: 42rem;
        height: 4rem;
        margin-bottom: 10rem;
        cursor: grab;
        touch-action: none;
    }

    .rw-contact-sheet__head {
        min-height: 34rem;
        padding-bottom: 10rem;
        justify-content: flex-start;
        touch-action: none;
    }

    .rw-contact-sheet__title {
        width: 100%;
        font-size: 20rem;
        white-space: nowrap;
    }

    .rw-contact-sheet__close {
        display: none !important;
    }

    .rw-contact-sheet__list {
        gap: 7rem;
    }

    .rw-contact-sheet__item {
        min-height: 52rem;
        padding: 8rem 11rem;
        gap: 10rem;
    }

    .rw-contact-sheet__item-icon,
    .rw-contact-sheet__messenger-icon {
        width: 34rem;
        height: 34rem;
        flex-basis: 34rem;
    }

    .rw-contact-sheet__item-icon svg {
        width: 18rem;
        height: 18rem;
    }

    .rw-contact-sheet--chat .rw-contact-sheet__list {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 8rem;
    }

    .rw-contact-sheet--chat .rw-contact-sheet__item {
        min-width: 0;
        min-height: 54rem;
        padding: 8rem;
        justify-content: center;
        background: #f7f8fa;
    }

    .rw-contact-sheet--chat .rw-contact-sheet__item-copy {
        display: none;
    }

    .rw-contact-sheet--chat .rw-contact-sheet__messenger-icon {
        width: 36rem;
        height: 36rem;
        flex-basis: 36rem;
    }
}

/* Lock the document without fixing body position: avoids the jump on sheet close. */
html.rw-page-locked,
body.rw-page-locked {
    overflow: hidden !important;
    overscroll-behavior: none;
}

body.rw-page-locked {
    position: static !important;
    top: auto !important;
}
