:root {
    --home-blue: #1268df;
    --home-blue-dark: #153bb8;
    --home-indigo: #192fa6;
    --home-ink: #1d2636;
    --home-muted: #687387;
    --home-line: #dfe5ee;
    --home-canvas: #f5f7fb;
    --home-card: #ffffff;
}

html {
    scroll-behavior: smooth;
}

body.home-modern {
    min-height: 100vh;
    margin: 0;
    overflow-x: hidden;
    background: var(--home-canvas);
    color: var(--home-ink);
    font-family: "Prompt", "Sarabun", Tahoma, sans-serif;
}

.home-modern #form1 {
    width: 100%;
    min-width: 0;
    margin: 0;
}

.home-modern *,
.home-modern *::before,
.home-modern *::after {
    box-sizing: border-box;
}

.home-shell {
    min-height: 0;
    background: var(--home-canvas);
}

.home-header {
    position: relative;
    z-index: 30;
    border-bottom: 1px solid #e9edf3;
    background: rgba(255, 255, 255, .98);
    box-shadow: 0 2px 12px rgba(28, 45, 78, .04);
}

.home-header-inner {
    width: min(100%, 1480px);
    min-height: 86px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    align-items: center;
    gap: 34px;
}

.home-brand {
    flex: 0 0 auto;
}

.home-brand img {
    display: block;
    width: 218px;
    max-width: 100%;
    height: auto;
}

.home-nav {
    display: flex;
    align-items: center;
    gap: 38px;
    margin-left: 32px;
}

.home-nav a,
.home-phone,
.home-login-link {
    text-decoration: none !important;
}

.home-nav a {
    position: relative;
    padding: 30px 0 27px;
    color: #2e3747;
    font-size: 15px;
    font-weight: 600;
    transition: color .2s ease;
}

.home-nav a::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 21px;
    left: 0;
    height: 2px;
    border-radius: 2px;
    background: var(--home-blue);
    transform: scaleX(0);
    transition: transform .2s ease;
}

.home-nav a:hover,
.home-nav a:focus {
    color: var(--home-blue);
}

.home-nav a:hover::after,
.home-nav a:focus::after {
    transform: scaleX(1);
}

.home-header-actions {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 22px;
}

.home-phone {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: #155fce !important;
    font-size: 16px;
    font-weight: 600;
    white-space: nowrap;
}

.home-phone i {
    font-size: 18px;
}

.home-phone-copy {
    display: inline-flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
    line-height: 1.1;
}

.home-phone-copy strong {
    font-size: 16px;
    font-weight: 600;
}

.home-phone-copy small {
    color: #65758a;
    font-size: 10.5px;
    font-weight: 500;
    line-height: 1.2;
}

.home-login-link {
    min-height: 44px;
    padding: 10px 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    border: 1px solid #246ee1;
    border-radius: 9px;
    background: #fff;
    color: #155fce !important;
    font-size: 15px;
    font-weight: 600;
    transition: background .2s ease, color .2s ease, box-shadow .2s ease;
}

.home-login-link:hover,
.home-login-link:focus {
    background: #1268df;
    color: #fff !important;
    box-shadow: 0 8px 20px rgba(18, 104, 223, .18);
}

.home-main {
    min-height: 690px;
    display: grid;
    grid-template-columns: minmax(0, 62fr) minmax(0, 38fr);
}

.home-main > *,
.home-hero-inner,
.home-action-panel,
.home-card {
    min-width: 0;
}

.home-hero {
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    background-color: #1e48cb;
    background-image:
        linear-gradient(90deg, rgba(20, 48, 151, .97) 0%, rgba(25, 63, 183, .91) 52%, rgba(14, 40, 126, .7) 100%),
        url("../images/home-translation-office-hero.png");
    background-position: center, 68% center;
    background-size: cover, cover;
    background-repeat: no-repeat;
    color: #fff;
}

.home-hero::before,
.home-hero::after {
    display: none;
}

.home-hero-inner {
    position: relative;
    z-index: 1;
    width: min(100%, 700px);
    margin: 0 auto;
    padding: 42px 56px 36px;
}

.home-trust-badge {
    width: fit-content;
    margin-bottom: 20px;
    padding: 9px 14px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: 1px solid rgba(255, 255, 255, .7);
    border-radius: 9px;
    background: rgba(255, 255, 255, .08);
    color: #fff !important;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none !important;
    backdrop-filter: blur(6px);
}

.home-trust-badge i {
    font-size: 18px;
}

.home-hero h1 {
    margin: 0;
    color: #fff;
    font-size: clamp(42px, 4.2vw, 62px);
    font-weight: 600;
    letter-spacing: -.025em;
    line-height: 1.12;
}

.home-hero h1 strong {
    color: #fff;
    font-weight: 700;
}

.home-hero > .home-hero-inner > p {
    max-width: 570px;
    margin: 17px 0 0;
    color: rgba(255, 255, 255, .9);
    font-size: 18px;
    font-weight: 400;
    line-height: 1.65;
}

.home-primary-cta {
    min-height: 50px;
    margin-top: 24px;
    padding: 11px 21px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    border: 1px solid rgba(255, 255, 255, .72);
    border-radius: 9px;
    background: linear-gradient(110deg, #e95312 0%, #ff8a1f 42%, #f06416 68%, #e95312 100%);
    background-size: 220% 100%;
    box-shadow: 0 12px 28px rgba(145, 43, 0, .34), inset 0 1px 0 rgba(255, 255, 255, .28);
    color: #fff !important;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none !important;
    animation: home-cta-attention 3.2s ease-in-out infinite;
    transition: background .2s ease, box-shadow .2s ease, transform .2s ease;
}

.home-primary-cta:hover,
.home-primary-cta:focus {
    background: linear-gradient(110deg, #ff9b2f 0%, #f56b17 55%, #e95312 100%);
    box-shadow: 0 16px 34px rgba(145, 43, 0, .44), inset 0 1px 0 rgba(255, 255, 255, .34);
    color: #fff !important;
    transform: translateY(-2px) scale(1.02);
    animation-play-state: paused;
}

.home-primary-cta:focus-visible {
    outline: 3px solid rgba(255, 205, 137, .72);
    outline-offset: 3px;
}

@keyframes home-cta-attention {
    0%,
    100% {
        background-position: 0% 50%;
        box-shadow: 0 12px 28px rgba(145, 43, 0, .34), inset 0 1px 0 rgba(255, 255, 255, .28);
    }

    50% {
        background-position: 100% 50%;
        box-shadow: 0 15px 32px rgba(145, 43, 0, .42), 0 0 0 6px rgba(255, 154, 47, .12), inset 0 1px 0 rgba(255, 255, 255, .3);
    }
}

.home-trust-grid {
    margin-top: 42px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.home-trust-item {
    min-width: 0;
    padding: 0 22px;
    display: flex;
    align-items: center;
    gap: 12px;
    border-left: 1px solid rgba(255, 255, 255, .25);
}

.home-trust-item:first-child {
    padding-left: 0;
    border-left: 0;
}

.home-trust-item:last-child {
    padding-right: 0;
}

.home-trust-icon {
    width: 42px;
    height: 42px;
    flex: 0 0 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(255, 255, 255, .88);
    border-radius: 50%;
    color: #fff;
    font-size: 18px;
}

.home-trust-item div {
    min-width: 0;
}

.home-trust-item strong,
.home-trust-item small {
    display: block;
}

.home-trust-item strong {
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    white-space: nowrap;
}

.home-trust-item small {
    margin-top: 3px;
    color: rgba(255, 255, 255, .72);
    font-size: 10px;
    line-height: 1.4;
}

.home-action-panel {
    padding: 24px clamp(30px, 3.5vw, 58px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 14px;
    background: #f4f6fa;
}

.home-card {
    width: 100%;
    max-width: 760px;
    margin: 0 auto;
    border: 1px solid rgba(215, 222, 232, .9);
    border-radius: 15px;
    background: var(--home-card);
    box-shadow: 0 12px 34px rgba(34, 52, 84, .08);
}

.tracking-card {
    padding: 22px 28px 18px;
}

.home-card-heading {
    display: flex;
    align-items: center;
    gap: 13px;
}

.home-card-icon {
    width: 44px;
    height: 44px;
    flex: 0 0 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 13px;
    background: #eef5ff;
    color: #1268df;
    font-size: 21px;
}

.home-card-heading h2 {
    margin: 0;
    color: #1f2837;
    font-size: 22px;
    font-weight: 700;
    line-height: 1.3;
}

.home-card-heading p {
    margin: 4px 0 0;
    color: var(--home-muted);
    font-size: 13px;
    line-height: 1.5;
}

.tracking-entry {
    margin-top: 16px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: end;
    gap: 14px;
}

.tracking-field label {
    display: block;
    margin-bottom: 7px;
    color: #30394a;
    font-size: 13px;
    font-weight: 600;
}

.tracking-input-wrap {
    position: relative;
}

.tracking-input-wrap i {
    position: absolute;
    top: 50%;
    left: 15px;
    color: #8792a4;
    font-size: 15px;
    transform: translateY(-50%);
}

.tracking-input-wrap input {
    width: 100%;
    height: 46px;
    padding: 10px 15px 10px 42px;
    border: 1px solid #ccd4df;
    border-radius: 9px;
    outline: 0;
    background: #fff;
    color: #202a3b;
    font: inherit;
    font-size: 15px;
    text-transform: uppercase;
    transition: border-color .2s ease, box-shadow .2s ease;
}

.tracking-input-wrap input:focus {
    border-color: #2b7be9;
    box-shadow: 0 0 0 4px rgba(43, 123, 233, .12);
}

.tracking-input-wrap input[aria-invalid="true"] {
    border-color: #df3e4d;
    box-shadow: 0 0 0 4px rgba(223, 62, 77, .1);
}

.tracking-submit {
    height: 46px;
    padding: 10px 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border: 0;
    border-radius: 9px;
    background: linear-gradient(135deg, #1374e8 0%, #075dcc 100%);
    color: #fff;
    font-family: inherit;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 8px 18px rgba(18, 104, 223, .2);
    transition: box-shadow .2s ease, transform .2s ease;
    white-space: nowrap;
}

.tracking-submit:hover,
.tracking-submit:focus {
    transform: translateY(-1px);
    box-shadow: 0 11px 24px rgba(18, 104, 223, .27);
}

.tracking-error {
    min-height: 16px;
    margin: 4px 0 0;
    color: #c62e3c;
    font-size: 12px;
}

.tracking-security {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: #6d7788;
    font-size: 12px;
}

.tracking-security i {
    color: #2876df;
}

.tracking-steps {
    margin-top: 15px;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.tracking-step {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #7c8797;
    text-align: center;
}

.tracking-step::after {
    content: "";
    position: absolute;
    z-index: 0;
    top: 14px;
    left: calc(50% + 18px);
    width: calc(100% - 36px);
    height: 2px;
    background: #d8dee7;
}

.tracking-step:last-child::after {
    display: none;
}

.tracking-step.is-active::after {
    background: #2477df;
}

.tracking-step > span {
    position: relative;
    z-index: 1;
    width: 29px;
    height: 29px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #c7cfdb;
    border-radius: 50%;
    background: #fff;
    color: #6e7786;
    font-size: 12px;
    font-weight: 600;
}

.tracking-step.is-active > span {
    border-color: #1268df;
    background: #1268df;
    color: #fff;
    box-shadow: 0 3px 9px rgba(18, 104, 223, .24);
}

.tracking-step > i {
    min-height: 18px;
    margin-top: 7px;
    color: #8892a1;
    font-size: 18px;
}

.tracking-step.is-active > i,
.tracking-step.is-active > strong {
    color: #1268df;
}

.tracking-step > strong {
    margin-top: 3px;
    font-size: 11px;
    font-weight: 500;
}

.login-card {
    overflow: hidden;
}

.login-card-heading {
    padding: 16px 28px 12px;
}

.login-card .wizard-container,
.login-card .wizard-container .wizard-body {
    width: 100%;
    margin: 0;
    padding: 0;
    border: 0;
    background: transparent;
}

.login-card .wizard-container .wizard-body > .row {
    margin: 0;
}

.login-card .wizard-container .wizard-menu {
    width: 100%;
    margin: 0;
    display: flex;
    border-top: 1px solid #e3e8ef;
    border-bottom: 1px solid #e3e8ef;
    background: #fbfcfe;
}

.login-card .wizard-container .wizard-menu li {
    margin: 0;
}

.login-card .wizard-container .wizard-menu li a,
.login-card .wizard-container .wizard-menu .moving-tab {
    min-height: 46px;
    padding: 12px 12px;
    border-radius: 0;
    font-family: "Prompt", sans-serif;
    font-size: 14px;
    font-weight: 500;
}

.login-card .wizard-container .wizard-menu li a {
    color: #59708d;
}

.login-card .wizard-container .wizard-menu li a.active,
.login-card .wizard-container .wizard-menu .moving-tab {
    background: #eef5ff;
    color: #1268df;
    box-shadow: inset 0 -2px 0 #1268df;
}

.login-card .wizard-container .wizard-menu .tt01 .moving-tab,
.login-card .wizard-container .wizard-menu .moving-tab {
    margin-left: 0;
}

.login-card .wizard-container .wizard-body .tab-content {
    min-height: 166px;
    padding: 12px 24px 7px;
}

.login-card .tab-pane-h {
    height: auto;
    min-height: 145px;
}

.login-card .modal_s-body {
    padding: 0;
}

.login-card .modal_s-body h3 {
    margin: 4px 0 16px;
    color: #263247;
    font-family: "Prompt", sans-serif;
    font-size: 18px;
}

.login-card #my-signin2,
.login-card #btn_signin_1 {
    width: 100% !important;
    max-width: 430px;
    margin-right: auto;
    margin-left: auto;
}

.login-card #my-signin2 {
    display: block;
}

.login-card #my-signin2 > div,
.login-card .abcRioButton {
    width: 100% !important;
    max-width: 430px !important;
}

.login-card span[id^=t_set_btn]:before {
    content: none;
    padding: 0;
}

.login-card .form-group {
    margin-bottom: 15px;
}

.login-card .form-control {
    min-height: 46px;
    border-color: #ccd4df;
    font-family: "Prompt", sans-serif;
}

.login-card .form-sub {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    font-size: 12px;
}

.login-card .form-action {
    margin-top: 16px;
    text-align: center;
}

.login-card .btn-login {
    min-width: 200px;
    font-family: "Prompt", sans-serif;
}

/* Footer copied from the tracking page */
.pasa-footer {
    position: relative;
    margin: 0 !important;
    padding: 0 !important;
    border: 0 !important;
    background: #072940 !important;
    color: #b9cad5 !important;
    font-family: "Open Sans", Tahoma, sans-serif;
}

.pasa-footer::before {
    content: "";
    display: block;
    height: 5px;
    background: linear-gradient(90deg, #86bd24 0%, #86bd24 55%, #e32827 100%);
}

.pasa-footer-main {
    padding: 50px 0 28px;
}

.pasa-footer-grid {
    display: grid;
    grid-template-columns: 1.05fr .75fr 1.5fr 1.1fr;
    gap: 0;
}

.pasa-footer-column {
    min-width: 0;
    margin: 0 !important;
    padding: 0 28px;
    border-left: 1px solid rgba(255, 255, 255, .12);
    background: transparent !important;
    color: inherit !important;
}

.pasa-footer-column:first-child {
    padding-left: 0;
    border-left: 0;
}

.pasa-footer-column:last-child {
    padding-right: 0;
}

.pasa-footer-brand-logo {
    display: block;
    width: 226px;
    max-width: 100%;
    height: auto;
    margin-bottom: 10px;
    padding: 10px 12px;
    border-radius: 10px;
    background: #fff;
}

.pasa-footer-domain {
    color: #91a9b8;
    font-size: 13px;
}

.pasa-footer-tagline {
    margin: 22px 0 13px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #a6cc43;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
}

.pasa-footer-tagline::before {
    content: "";
    width: 28px;
    height: 2px;
    background: #e32827;
}

.pasa-footer-description {
    margin: 0;
    color: #c3d0d8;
    font-size: 14px;
    line-height: 1.8;
}

.pasa-footer-heading {
    margin: 0 0 18px !important;
    color: #fff !important;
    font-size: 19px !important;
    font-weight: 700 !important;
    line-height: 1.35 !important;
}

.pasa-footer-heading small {
    display: block;
    margin-top: 2px;
    color: #8fa6b5;
    font-size: 12px;
    font-weight: 400;
}

.pasa-footer-qr-link {
    width: 146px;
    max-width: 100%;
    padding: 10px;
    display: block;
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: 14px;
    background: rgba(255, 255, 255, .06);
    text-align: center;
    text-decoration: none !important;
}

.pasa-footer-qr-link img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 8px;
    background: #fff;
}

.pasa-footer-qr-link span {
    display: block;
    margin-top: 8px;
    color: #cfe3d7;
    font-size: 12px;
    font-weight: 600;
}

.pasa-footer address {
    margin: 0;
    font-style: normal;
}

.pasa-footer-list,
.pasa-footer-links {
    margin: 0;
    padding: 0;
    list-style: none;
}

.pasa-footer-list li + li,
.pasa-footer-links li + li {
    margin-top: 11px;
}

.pasa-footer-list a,
.pasa-footer-links a {
    display: inline-flex;
    align-items: flex-start;
    gap: 10px;
    color: #c4d2da !important;
    font-size: 14px;
    line-height: 1.5;
    text-decoration: none !important;
    transition: color .2s ease, transform .2s ease;
}

.pasa-footer-list a:hover,
.pasa-footer-list a:focus,
.pasa-footer-links a:hover,
.pasa-footer-links a:focus {
    color: #fff !important;
    transform: translateX(3px);
}

.pasa-footer-list i {
    width: 18px;
    margin-top: 3px;
    color: #76c4b3;
    text-align: center;
}

.pasa-footer-links a::before {
    content: "";
    width: 7px;
    height: 7px;
    flex: 0 0 7px;
    margin-top: 7px;
    border-radius: 50%;
    background: #3db5a6;
    box-shadow: 0 0 0 4px rgba(61, 181, 166, .1);
}

.pasa-footer-bottom {
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, .12);
    color: #849aa8;
    font-size: 12px;
}

.pasa-footer-bottom-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.pasa-footer-social {
    display: flex;
    gap: 9px;
}

.pasa-footer-social a {
    width: 34px;
    height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 50%;
    color: #c4d2da !important;
    text-decoration: none !important;
}

.pasa-footer-social a:hover,
.pasa-footer-social a:focus {
    border-color: #86bd24;
    background: #86bd24;
    color: #072940 !important;
}

@media (max-width: 1180px) {
    .home-header-inner {
        padding: 0 26px;
    }

    .home-nav {
        gap: 22px;
        margin-left: 10px;
    }

    .home-main {
        grid-template-columns: minmax(0, 61fr) minmax(0, 39fr);
    }

    .home-action-panel {
        padding-right: 22px;
        padding-left: 22px;
    }

    .tracking-entry {
        grid-template-columns: minmax(0, 1fr);
    }

    .tracking-submit {
        width: 100%;
    }

    .home-hero-inner {
        padding: 44px 40px 36px;
    }

    .home-trust-grid {
        margin-top: 38px;
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .home-trust-item,
    .home-trust-item:first-child,
    .home-trust-item:last-child {
        padding: 0;
        border: 0;
    }
}

@media (max-width: 991px) {
    .home-nav {
        display: none;
    }

    .home-main {
        grid-template-columns: minmax(0, 1fr);
    }

    .home-hero-inner {
        width: 100%;
        padding: 48px 40px 40px;
    }

    .home-hero h1 {
        font-size: 52px;
    }

    .home-trust-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 0;
    }

    .home-trust-item,
    .home-trust-item:first-child,
    .home-trust-item:last-child {
        padding: 0 18px;
        border-left: 1px solid rgba(255, 255, 255, .25);
    }

    .home-trust-item:first-child {
        padding-left: 0;
        border-left: 0;
    }

    .home-action-panel {
        padding: 28px 30px 34px;
    }

    .pasa-footer-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        row-gap: 36px;
    }

    .pasa-footer-column:nth-child(3) {
        padding-left: 0;
        border-left: 0;
    }
}

@media (max-width: 640px) {
    .home-header-inner {
        min-height: 72px;
        padding: 0 18px;
        gap: 12px;
    }

    .home-brand img {
        width: 168px;
    }

    .home-header-actions {
        gap: 8px;
    }

    .home-phone span {
        display: none;
    }

    .home-phone {
        width: 38px;
        height: 38px;
        justify-content: center;
        border: 1px solid #dbe5f2;
        border-radius: 9px;
    }

    .home-login-link {
        min-height: 38px;
        padding: 8px 11px;
        font-size: 12px;
    }

    .home-hero-inner {
        padding: 44px 24px 36px;
    }

    .home-hero {
        background-image:
            linear-gradient(90deg, rgba(20, 48, 151, .98) 0%, rgba(25, 63, 183, .94) 58%, rgba(14, 40, 126, .86) 100%),
            url("../images/home-translation-office-hero.png");
        background-position: center, 76% center;
    }

    .home-hero h1 {
        font-size: clamp(36px, 10vw, 40px);
    }

    .home-hero > .home-hero-inner > p {
        font-size: 17px;
        line-height: 1.65;
    }

    .home-trust-grid {
        margin-top: 36px;
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .home-trust-item,
    .home-trust-item:first-child,
    .home-trust-item:last-child {
        padding: 0;
        border: 0;
    }

    .home-action-panel {
        padding: 20px 14px 28px;
        gap: 16px;
    }

    .tracking-card {
        padding: 24px 18px 21px;
    }

    .home-card-heading {
        align-items: flex-start;
    }

    .home-card-heading h2 {
        font-size: 21px;
    }

    .tracking-entry {
        grid-template-columns: 1fr;
    }

    .tracking-submit {
        width: 100%;
    }

    .tracking-step > strong {
        font-size: 9px;
    }

    .login-card-heading {
        padding: 22px 18px 17px;
    }

    .login-card .wizard-container .wizard-body .tab-content {
        padding: 18px 17px 10px;
    }

    .login-card .wizard-container .wizard-menu li a,
    .login-card .wizard-container .wizard-menu .moving-tab {
        padding: 14px 5px;
        font-size: 12px;
    }

    .login-card .form-sub {
        align-items: flex-start;
        flex-direction: column;
    }

    .pasa-footer-main {
        padding: 38px 0 22px;
    }

    .pasa-footer-grid {
        grid-template-columns: 1fr;
        row-gap: 0;
    }

    .pasa-footer-column,
    .pasa-footer-column:first-child,
    .pasa-footer-column:nth-child(3),
    .pasa-footer-column:last-child {
        padding: 24px 0;
        border: 0;
        border-bottom: 1px solid rgba(255, 255, 255, .1);
    }

    .pasa-footer-column:first-child {
        padding-top: 0;
    }

    .pasa-footer-column:last-child {
        border-bottom: 0;
    }

    .pasa-footer-bottom-row {
        display: block;
    }

    .pasa-footer-social {
        margin-top: 16px;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    .home-modern *,
    .home-modern *::before,
    .home-modern *::after {
        scroll-behavior: auto !important;
        transition-duration: .01ms !important;
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
    }
}
