:root {
    --primary: #1b2a4a;
    --cassiopeia-color-primary: var(--primary);
    --color-primary: var(--primary);
    --primary-rgb: 27, 42, 74;
    --secondary: #f4b632;
    --color-secondary: var(--secondary);
    --color-dark-red: #800200;
    --color-dark-red-hover: #600100;
    --template-text-dark: #444;
    --modal-width: 80%;
    --border-radius-xl: 1rem;
    --bs-primary: var(--primary);
    --tccu-text: #222222;
    --primary-light: #364E72;
}

/* @import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Lora:ital,wght@0,400..700;1,400..700&display=swap'); */

@font-face {
  font-family: 'Inter';
  src: url('../fonts/fs-Inter.woff2') format('woff2-variations');
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Inter';
  src: url('../fonts/fs-Inter-Italic.woff2') format('woff2-variations');
  font-weight: 100 900;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: 'Lora';
  src: url('../fonts/fs-Lora.woff2') format('woff2-variations');
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Lora';
  src: url('../fonts/fs-Lora-Italic.woff2') format('woff2-variations');
  font-weight: 100 900;
  font-style: italic;
  font-display: swap;
}

b, strong {
  font-weight: 800 !important;
}

* {
    box-sizing: border-box;
}

.site-grid > [class*=" container-"],
.site-grid > [class^="container-"] {
    background-color: #fff;
}

.container-component:has(#full-width-article) {
    grid-column-start: full-start;
    grid-column-end: full-end;
    padding-bottom: 0;
}

main:has(#full-width-article) {
    padding: 0;
    margin-top: 0;
}

:focus {
    outline: 2px solid !important;
}

:focus-visible {
    outline: 2px solid #000;
    outline-offset: 2px;
}

body {
    margin: 0;
    font-family: "Inter", sans-serif;
    color: var(--tccu-text);
    background-color: #ffffff;
    overflow-x: hidden;
}

body:not(.home) .container-component {
    padding: 0 0 3rem;
}

.footer{
    background-image: none !important;
}

h1, h2, h3, .h1, .h2, .h3, .lora-font{
    font-family: "Lora", serif !important;
}

h1, .h1{
    font-size: 2.4rem;
}

h2, .h2{
    font-size: 2rem;
}

a {
    color: var(--primary);
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

.fs-7{
    font-size: 0.875rem !important;
}

.page {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.page-header.has-image {
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    padding: 0;
    position: relative;
    margin-bottom: 2rem;
}

.page-header.has-image img {
    width: 100%;
    max-height: 220px;
    object-fit: cover;
    display: block;
}

.page-header.has-image .page-header-title {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(27, 42, 74, 0.5);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 1rem;
}

.page-header.has-image h1,
.page-header.has-image h2 {
    color: #fff;
    margin: 0;
    text-align: center;
    text-shadow: 1px 1px 2px rgba(27, 42, 74, 0.5);
    text-transform: uppercase;
    font-weight: bold;
    font-size: 2.125rem;
}

.page-header.no-image {
    max-width: 1320px;
    margin: 0 auto; 
}

.page-header.no-image .page-header-title {
    position: relative;
    width: 100%;
    background: transparent;
    display: block;
}

.page-header.no-image h1,
.page-header.no-image h2 {
    color: var(--primary);
    font-weight: bold;
    font-size: 2.4rem !important;
}

.container {
    width: 100%;
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 1.25rem;
}

.metismenu.mod-menu .metismenu-item {
    padding: 0.5rem 0.5rem;
    font-size: 0.99rem;
}

.metismenu.mod-menu .mm-toggler:after {
    color: var(--primary);
    border-left: 0.4em solid transparent;
    border-right: 0.4em solid transparent;
    border-top: 0.4em solid;
}

.metismenu.mod-menu .metismenu-item a:hover{
    color: #293b56;
}

/* HEADER & HERO */

.container-banner {
    margin-block-end: 0;
}

.hero-content {
    display: grid;
    grid-template-columns: minmax(0, 3fr) minmax(0, 2fr);
    gap: 2rem;
    align-items: center;
}

.hero-text h1 {
    font-family: "Lora", serif;
    font-size: 2.1rem;
    margin: 0 0 0.75rem;
}

.hero-text p {
    margin: 0 0 1rem;
    font-size: 1rem;
    max-width: 32rem;
}

.hero-ctas {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    align-items: center;
    margin-bottom: 0.75rem;
}

.btn{
    text-decoration: none;
}

.btn-primary,
.btn-outline,
.btn-outline-primary,
.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.8rem 1.4rem;
    border-radius: 50rem;
    font-weight: 600;
    font-size: 0.95rem;
    border: 2px solid transparent;
    cursor: pointer;
    text-decoration: none;
}

.btn-primary:disabled {
    color: #fff;
    background-color:var(--primary) !important;
    border-color:var(--primary) !important;
}

.btn-primary{
    background: var(--primary-light);
    color:#fff;
}

.btn-primary:hover, .btn-primary:active, .btn-primary:focus {
    background: var(--primary) !important;
    border-color: var(--primary) !important;
    color:#fff !important;
}

.btn-outline {
    background: transparent;
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.8);
}

.btn-outline:hover {
    background: #fff;
    color: var(--primary)
}

.btn-outline-primary {
    color: var(--primary-light);
    border-color: var(--primary-light);
}

.btn-outline-primary:hover {
    background: var(--primary-light);
    border-color: var(--primary-light);
    color:#fff;
}

.btn-secondary{
    background: var(--secondary);
    border: 2px solid var(--secondary);
    color: var(--primary);
    font-weight: 700;
}

.btn-secondary:hover{
    background: #ca9524;
    border-color: #ca9524;
}

.text-bg-secondary{
    background-color:rgb(244, 182, 50) !important;
    color: #000 !important;
}

.hero-secondary-text {
    font-size: 0.75rem;
    opacity: 0.9;
    max-width: 40rem;
}

.bg-dark{
background-color:#191D26 !important;
}
.djslider-default .navigation-container img {
z-index: 1;
}

.djslider-default .slide-desc-bg {
    display: none !important;
}

.djslider-default .djslider-in li {
    position: relative;
    height: 550px !important;
}

.djslider-default,
.djslider-default ul.djslider-in > li {
    height: 550px !important;
}

.container-banner .djslider-default img.dj-image{
    height: 100% !important;
}

.container-banner .djslider-default img.dj-image {
    aspect-ratio: 11/16;
    object-fit: cover;
    object-position: 25% 50%;
    width: 100% !important;
    filter: brightness(40%);
    height: 100%;
}

.djslider-default .slide-desc {
    position: absolute !important;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 30px 8vw;
    background: none;
}

.djslider-default .slide-desc-text {
    width: 100%;
}

.djslider-default .slide-desc h1,
.djslider-default .slide-desc h2,
.djslider-default .slide-desc h3 {
    color: #fff;
    margin: 0 0 10px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    font-weight: bold;
    font-size: 1.6rem;
}

.djslider-default .slide-desc p {
    font-size: 1rem;
    margin-top: 1rem;
    color: #c8bcbc;
}

.featured-rates-section {
    background: linear-gradient(103deg, #191D26 0%, #1B2A4A 40%, #364E72 100%);
    padding: 40px 0 30px;
    position: relative;
}

.hero-offer-card {
    background: white;
    border-radius: 24px;
    overflow: hidden;
    margin: 0 auto 50px;
    padding:0;
    border:none;
}

.offer-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    max-height: 200px;
    object-position: 50% 20%;
}

.offer-label {
    color: #9f6d01;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    display: inline-block;
    margin-bottom: 16px;
    text-transform: uppercase;
}

.offer-content h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1B2A4A;
    margin-bottom: 20px;
}

.offer-content p {
    font-size: 0.9rem;
    color: #5f6777;
    line-height: 1.6;
    margin-bottom: 28px;
}

.rates-wrapper {
    margin-top: 30px;
}

.rates-title {
    font-size: 1.3rem;
    font-weight: 700;
    line-height: 1;
}

.rate-item {
    border-right: 1px solid rgba(255,255,255,.2);
    padding-left: 24px;
    text-align:center;
}
.rate-item:nth-child(3){
    border-right: none;
}

.rate-item small {
    display: block;
    color: #F0B02D;
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 6px;
}

.rate-item span.sub{
    display: block;
    opacity: .8;
    font-size: .9rem;
    margin-bottom: 8px;
}

.rate-number {
    display:flex;
    align-items:center;
    font-size: 2.25rem;
    font-weight: 700;
    line-height: 1;
    justify-content:center;
}

.rate-number .apr{
    color:#fff;
    font-size:0.8125rem;
    opacity:.8;
}

.text-primary{
    color: var(--primary) !important;
}
.text-primary-light{
    color: var(--primary-light) !important;
}
.text-light{
    color:#5A6677 !important;
}
.text-gray{
    color:#FFFFFF8C !important;
}

.product-links {
    border-top: 1px solid #dde2ea;
}

.product-link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 0;
    text-decoration: none;
    color: #1B2A4A;
    border-bottom: 1px solid #dde2ea;
    font-size: 1rem;
    transition: all .2s ease;
}

.product-link:hover {
    color: #986902;
}

.product-link.active {
    color: #986902;
    font-weight: 600;
}

.feature-card {
    border-radius: 24px;
    overflow: hidden;
    position: relative;
}

.feature-card img {
    display: block;
    width: 100%;
    max-height: 400px;
    object-fit: cover;
}

.feature-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    padding: 20px;
    background: linear-gradient(
        to top,
        rgba(0,0,0,0.75) 0%,
        rgba(0,0,0,0.4) 50%,
        rgba(0,0,0,0) 100%
    );

    color: #fff;
}

.feature-overlay p {
    margin: 0;
}

.feature-arrow {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: #f0b02d;
    color: #1B2A4A;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-weight: bold;
    flex-shrink: 0;
}

.stats-row {
    padding-bottom: 10px;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: #1B2A4A;
    line-height: 1;
    font-family: "Lora", serif;
}

.stat-number span {
    color: #ba7e00;
}

.stat-label {
    margin-top: 10px;
    color: #6b7280;
    font-size: .95rem;
}

.custom-bullets {
    list-style: none;
    padding: 0;
    margin: 0;
}

.custom-bullets li {
    position: relative;
    padding-left: 18px;
    margin-bottom: 16px;
    color: #6b7280;
    line-height: 1.7;
}

.custom-bullets li::before {
    content: "";
    width: 6px;
    height: 6px;
    background: #d69b1d;
    border-radius: 50%;
    position: absolute;
    left: 0;
    top: 11px;
}

.page-header.has-image p {
    color:rgba(255, 255, 255, 0.6);
}

.financial-goals-cta {
    min-height: 520px;
    background:
        linear-gradient(90deg, #1B2A4A 0%, #1B2A4A 30%, rgba(27, 42, 74, 0.85) 50%, rgba(27, 42, 74, 0.4) 75%, rgba(27, 42, 74, 0.15) 100%),
        url('/images/bg-hero.webp') center center / cover no-repeat;
    display: flex;
    align-items: center;
}

.cta-content {
    max-width: 5300px;
}

.cta-content h2 {
    font-size: 2.625rem;
    line-height: 1.15;
    font-weight: 400;
    margin-bottom: 24px;
    font-style: italic;
}

.cta-content p {
    font-size: 1rem;
    line-height: 1.8;
    opacity: .8;
    margin-bottom: 28px;
}

.cta-btn {
    background: #f0b02d;
    color: #1B2A4A;
    font-weight: 600;
    border: none;
    min-width: 210px;
}

.cta-btn:hover {
    background: #f0b02d;
    color: #1B2A4A;
    opacity: .9;
}

.table-base {
    width: 100%;
    min-width: 900px;
}

.table-base thead th {
    color: var(--color-primary);
    font-weight: 700;
    font-size: 1.1rem;
    padding-bottom: 1.5rem;
    vertical-align: bottom;
    border-bottom: 2px solid var(--color-primary);
}

.table-base td {
    padding: 1.5rem 0.5rem;
    color: #555;
    font-size: 0.95rem;
    vertical-align: top;
}

.table-base .label-col {
    text-align: left;
    font-weight: 700;
    color: #333;
    width: 20%;
    background-color: #fff;
}

.table-hover > tbody > tr:hover > * {
    --table-bg-state: rgba(0, 0, 0, 0.015);
}

.hero-offer-chip {
    background: var(--tccu-light);
    border-radius: 0.75rem;
    padding: 0.4rem 0.6rem;
    text-align: center;
    border: 1px solid #e1e6f0;
    font-size: 0.85rem;
}

.hero-offer-chip strong {
    display: block;
    font-size: 1rem;
    color: var(--tccu-blue-dark);
}

.hero-offer-card p {
    margin: 0 0 0.4rem;
}

/* SECTION GENERIC */

.section {
    padding: 2.5rem 0;
}

.section-alt {
    background: var(--tccu-light);
}

.section-header {
    text-align: center;
    max-width: 40rem;
    margin: 0 auto 2rem;
}

.section-header h2 {
    font-size: 1.6rem;
    margin: 0 0 0.5rem;
    color: var(--tccu-blue-dark);
    font-weight: bold;
}

.section-header p {
    margin: 0;
    font-size: 0.95rem;
    color: #555;
}

/* FORM SECTION */

.form-wrapper {
    max-width: 720px;
    margin: 0 auto;
}

.form-grid {
    display: grid;
    gap: 1rem;
    grid-template-columns: 1fr 1fr;
}

.rsfp-signature-footer .description{
    color:#000 !important;
}

label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

input[type="text"],
input[type="email"],
input[type="tel"] {
    width: 100%;
    padding: 0.55rem 0.6rem;
    border-radius: 0.5rem;
    border: 1px solid #cbd4e6;
    font-size: 0.9rem;
    font-family: inherit;
}

.form-footer {
    margin-top: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    font-size: 0.75rem;
    color: #555555;
}

.form-footer .btn-primary {
    align-self: flex-start;
    margin-bottom: 0.25rem;
}

/* FOOTER */

.footer-brand, .footer-left {
    width: 100%;
    font-size: clamp(0.875rem, 13.4px + 0.125vw, 0.9375rem);
    display: flex;
    flex-direction: column;
    gap: 35px;
    flex-shrink: 0;
}

.footer .grid-child {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: start;
    justify-content: center;
    margin-inline: auto;
} 
  .footer-right {
    overflow: visible;
}

.footer-menu p {
    margin-bottom: 10px;
    font-size: 0.95rem;
}

.footer-menu .nav-item, .footer-menu a:not(.btn), .footer-menu span{
    color: #FFFFFF8C;
}

.footer-menu ul li {
    margin-bottom: 6px;
}

.footer-right .row.g-5 {
    display: flex;
    flex-wrap: wrap;
}

.footer-inner {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem 1.5rem;
    align-items: baseline;
    justify-content: space-between;
}

.container-header .navbar-toggler {
    color: #000;
    margin-inline: 6px;
    border: 1px solid #444;
}

.container-header .navbar-toggler:focus-visible,
.container-header .navbar-toggler:focus {
    outline-offset: -1px;
}

.mobile-menu .navbar-toggler {
    display: none;
}

.row {
    margin-left: 0;
    margin-right: 0;
}

.login-card {
    background: #ffffff;
    width: 100%;
    max-width: 420px;
    padding: 2.5rem;
    border-radius: 6px;
    border: 1px solid #e3e6eb;
}

.login-form .form-label {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--primary);
}

.login-form .form-control {
    border-radius: 4px;
    padding: 0.6rem 0.75rem;
    font-size: 0.9rem;
}

.login-form .btn-primary {
    padding: 0.6rem;
    font-size: 0.95rem;
}

.login-links {
    margin-top: 1.5rem;
    text-align: center;
    font-size: 0.85rem;
    color: var(--primary-light);
}

.login-links a {
    text-decoration: none;
}

.login-links a:hover {
    text-decoration: underline;
}

.login-links span {
    margin: 0 0.5rem;
    color: #434649;
}

.grid-child.container-top-a:has(.submission-menu) {
    max-width:1320px !important;
}

.metismenu.mod-menu.submission-menu {
    display: flex;
    flex-direction: row;
    padding-block: 0.8rem;
}

.metismenu.mod-menu.submission-menu .mm-toggler:after {
    border-left: 0.4rem solid transparent;
    border-right: 0.4em solid transparent;
    border-top: 0.6em solid;
    margin-inline-start: 0.7rem;
    color:var(--primary);
}

/* Custom overrides for specific brand aesthetics */
.error-page-wrapper .text-primary {
    color: var(--bs-primary) !important;
}

.error-page-wrapper .btn-primary {
    background-color: var(--bs-primary);
    border-color: var(--bs-primary);
}

.error-page-wrapper .btn-primary:hover,
.error-page-wrapper .btn-primary:focus {
    background-color: var(--secondary);
    border-color: var(--secondary);
}

.error-page-wrapper .btn-outline-primary {
    color: var(--bs-primary);
    border-color: var(--bs-primary);
}

.error-page-wrapper .btn-outline-primary:hover,
.error-page-wrapper .btn-outline-primary:focus {
    background-color: var(--bs-primary);
    border-color: var(--bs-primary);
    color: #ffffff;
}

/* Thick top border for the card to anchor the design */
.error-card {
    border-top: 5px solid var(--bs-primary) !important;
}

/* Grid for the helpful links */
.helpful-links-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.helpful-links-grid a {
    color: var(--bs-primary);
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
    font-weight: 600;
    transition: all 0.2s ease-in-out;
}

.helpful-links-grid a:hover,
.helpful-links-grid a:focus {
    color: var(--p1-secondary);
    text-decoration-thickness: 2px;
}

/* ================================  min 768px (Tablets) ================================ */
@media (min-width: 768px) {

    .w-md-auto{
        width: auto !important;
    }

    .rate-item:nth-child(3){
        border-right: 1px solid rgba(255,255,255,.2);
    }

    .login-card {
        max-width: 100%;
        border: none;
    }

    .menu-image img {
        width: 25px;
        height: 25px;
    }

    .apr-title {
        font-size: 4.5rem;
    }

    .insta img {
        width: 30px;
        height: 30px;
    }
    .footer-cards .card-footer {
        font-size: 0.8rem;
    }

    .metismenu.mod-menu {
        margin: 0;
    }

    .djslider-default,
    .djslider-default ul.djslider-in > li {
        height: 450px !important;
    }

    li.item-269,
    li.item-270,
    li.item-271 {
        display: none !important;
    }

    li.item-272,
    li.item-273 {
        display: block !important;
    }

    .horizontal-menu {
        flex-direction: row;
        display: flex;
        flex-grow: 1;
        flex-wrap: wrap;
        justify-content: flex-end;
    }

    .horizontal-menu .mod-menu__heading {
        text-transform: uppercase;
    }

    .metismenu.mod-menu .item-287 {
        padding-right: 0;
    }

    .metismenu.mod-menu .metismenu-item:not(.level-2) > ul {
        right: 0;
    }

    .metismenu.mod-menu .metismenu-item:not(.level-2) .first-item + ul {
        left: 0;
        right: auto;
    }

    .offer-image{
        max-height: 240px;
        object-fit: cover;
        object-position: 50% 9%;
    }

    .hero-offer-card{
        max-width: 700px;
    }

    .page-header.has-image h1,
    .page-header.has-image h2 {
        font-size: clamp(1.9rem, 6vw, 2.375rem);
    }
}

@media (min-width: 992px) {

    /* .footer-brand {
        width: 90%;
    } */

    .footer .grid-child {
        grid-template-columns: auto 1fr;
        /* gap: 20px clamp(3rem, -10rem + 0.203125 * 100vw, 6.25rem); */
        align-items: start;
    }

  .footer-right .row.g-5 {
        display: flex;
        flex-wrap: nowrap;
    }

    .footer-right .row.g-5 > .footer-menu {
        width: auto !important;
        flex: 1;
        padding: 0 0.5rem;
    }

    .offer-image{
        max-height: 100%;
        object-fit: cover;
        object-position: top;
        min-height: 320px;
    }

    .hero-offer-card{
        max-width: 800px;
    }

    .container-banner .djslider-default,
    .container-banner .djslider-default ul.djslider-in > li {
        height: 686.5px !important;
        width: 100% !important;
    }

    .container-banner .djslider-default img.dj-image {
        width: 100% !important;
        height: 100% !important;
        object-fit: cover;
        object-position: center center;
        aspect-ratio: unset;
        filter: none;
    }

    .djslider-default .slide-desc {
        width: 60%;
        left: 0;
        right: auto;
        background: linear-gradient(90deg, #1B2A4A 0%, #1B2A4A 30%, rgba(27, 42, 74, 0.85) 50%, rgba(27, 42, 74, 0.4) 75%, rgba(27, 42, 74, 0.15) 100%);
        align-items: flex-start;
        padding-right: 4vw;
        padding-left: 4vw;
    }

    .djslider-default .slide-desc-text {
        margin-left: auto;
        margin-right: 0;
        width: 644px;
    }

    .djslider-default .slide-desc h1,
    .djslider-default .slide-desc h2,
    .djslider-default .slide-desc h3 {
        font-size: 3.25rem;
    }

    .hero-text{
        min-width: 625px;
    }

    .djslider-default .slide-desc-in {
        padding-left: calc(50% - 660px);
    }

    .djslider-default .slide-desc p {
        font-size: 1.3rem;
    }

    .page-header.has-image .page-header-title {
        width: 75%;
        left: 0;
        right: auto;
        background: linear-gradient(
            to left,
            transparent 0%,
            rgb(27 42 74 / 88%) 50%,
            #1b2a4a 100%
        );
        align-items: start;
    }

    .page-header.has-image h1,
    .page-header.has-image h2 {
        text-align: left;
        font-size: clamp(1.9rem, 6vw, 2.375rem);
        font-weight: 700;
        text-transform: capitalize;
    }

    .page-header.has-image p {
        max-width: 500px;
    }

    .hero-offer-card{
        position: relative;
        bottom: 125px;
        margin-bottom: 0;
    }

    .rates-wrapper{
        margin-top: 0;
    }

}

/* ================================ Large desktop breakpoint (xl, >= 1200px) =============================== */
@media (min-width: 1200px) {
    .apr-title {
        font-size: 3.5rem;
    }

    .page-header.has-image .page-header-title {
        padding-left: calc((100vw - 1320px) / 2 + 15px);
    }

    .w-xl-auto{
        width: auto !important;
    }
}

/* =====  max 480px ===== */
@media (max-width: 480px) {
    .djslider-default .slide-desc {
        padding: 20px 6vw;
    }
}

/* =====  max 1200px ===== */
@media (max-width: 1200px) {
    .footer .grid-child {
        gap: 40px;
    }
}

