@font-face {
    font-family: 'Maison Neue';
    src: url('../fonts/MaisonNeue-Medium.woff2') format('woff2'),
        url('../fonts/MaisonNeue-Medium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Maison Neue';
    src: url('../fonts/MaisonNeue-DemiBold.woff2') format('woff2'),
        url('../fonts/MaisonNeue-DemiBold.woff') format('woff');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Maison Neue';
    src: url('../fonts/MaisonNeue-Bold.woff2') format('woff2'),
        url('../fonts/MaisonNeue-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Maison Neue';
    src: url('../fonts/MaisonNeue-Book.woff2') format('woff2'),
        url('../fonts/MaisonNeue-Book.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}


:root{
    --h1-size: 70px;
    --h2-size: 60px;
    --h3-size-lg: 42px;
    --h3-size: 38px;
    --h4-size: 32px;
    --h5-size: 24px;
    --h6-size: 20px;
    --body-size: 16px;
    --nav-size: 14px;
    --black-color: rgba(0, 0, 0, 1);
    --white-color: rgba(255, 255, 255, 1);
    --body-color: rgba(255, 255, 255, 0.7);
    --bs-gutter-x: 40px;
    --pad-sec: 120px;
    --pad-sec-half: 60px;
}

/* Hide scrollbar for Chrome, Safari and Opera */
html::-webkit-scrollbar,
body::-webkit-scrollbar {
    display: none;
}

/* Hide scrollbar for IE, Edge and Firefox */
html,
body {
  -ms-overflow-style: none;  /* IE and Edge */
  scrollbar-width: none;  /* Firefox */
}
*, *::before, *::after {
    box-sizing: border-box;
}
.icon{
    line-height: 1;
}
.icon svg {
    width: 1em;
    height: 1em;
}
.pad-sec{
    overflow: hidden;
    padding: var(--pad-sec) 0;
}

.press-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.no-press-message {
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 60px 40px;
    margin-top: 40px;
}

.no-press-message h3 {
    color: var(--white-color);
    margin-bottom: 20px;
    font-size: var(--h4-size);
    font-weight: 600;
}

.no-press-message p {
    color: var(--body-color);
    font-size: var(--body-size);
    line-height: 1.6;
    margin-bottom: 20px;
}

.no-press-message p:last-child {
    margin-bottom: 0;
}

.no-press-message a {
    color: var(--white-color);
    text-decoration: underline;
    transition: color 0.3s ease;
}

.no-press-message a:hover {
    color: var(--body-color);
    text-decoration: none;
}

/* Press Release Card Styles */
.press-release-card {
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 40px;
    margin-bottom: 30px;
    border-left: 4px solid var(--white-color);
}

.press-date {
    color: var(--body-color);
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.press-release-card h3 {
    color: var(--white-color);
    margin-bottom: 20px;
    font-size: var(--h4-size);
    font-weight: 600;
    line-height: 1.3;
}

.press-summary {
    color: var(--body-color);
    font-size: var(--body-size);
    line-height: 1.6;
    margin-bottom: 25px;
}

.press-highlights {
    margin-bottom: 25px;
}

.press-highlights ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.press-highlights li {
    color: var(--body-color);
    font-size: var(--body-size);
    line-height: 1.6;
    margin-bottom: 12px;
    padding-left: 0;
}

.press-highlights li strong {
    color: var(--white-color);
}

.press-link {
    display: inline-block;
    background-color: var(--white-color);
    color: var(--black-color);
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: background-color 0.3s, color 0.3s, transform 0.3s;
    cursor: pointer !important;
}

.press-link:hover {
    background-color: var(--body-color);
    color: var(--black-color);
    text-decoration: none;
    transform: translateY(-2px);
    cursor: pointer !important;
}

.media-contact {
    background-color: rgba(255, 255, 255, 0.03);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
}

.media-contact h4 {
    color: var(--white-color);
    margin-bottom: 15px;
    font-size: 18px;
    font-weight: 600;
}

.media-contact p {
    color: var(--body-color);
    font-size: var(--body-size);
    margin: 0;
}

.media-contact a {
    color: var(--white-color);
    text-decoration: underline;
    transition: color 0.3s ease;
}

.media-contact a:hover {
    color: var(--body-color);
    text-decoration: none;
}

/* Mobile Responsive for Press */
@media (max-width: 767px) {
    .press-release-card {
        padding: 30px 25px;
    }
    
    .press-release-card h3 {
        font-size: 22px;
    }
    
    .media-contact {
        padding: 25px 20px;
    }
}

/* Dashboard Styles */
.dashboard-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.no-dashboard-message {
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 60px 40px;
    margin-top: 40px;
}

.no-dashboard-message h3 {
    color: var(--white-color);
    margin-bottom: 20px;
    font-size: var(--h4-size);
    font-weight: 600;
}

.no-dashboard-message p {
    color: var(--body-color);
    font-size: var(--body-size);
    line-height: 1.6;
    margin-bottom: 20px;
}

.no-dashboard-message p:last-child {
    margin-bottom: 0;
}

.no-dashboard-message a {
    color: var(--white-color);
    text-decoration: underline;
    transition: color 0.3s ease;
}

.no-dashboard-message a:hover {
    color: var(--body-color);
    text-decoration: none;
}

/* Contact Modal Styles */
.contact-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(29, 29, 29, 0.9);
    backdrop-filter: blur(5px);
    overflow: auto;
    -webkit-overflow-scrolling: touch;
}

/* Prevent body scroll when modal is open */
body.modal-open {
    overflow: hidden !important;
    position: fixed;
    width: 100%;
    height: 100%;
}

.modal-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #1d1d1d;
    border-radius: 15px;
    padding: 40px;
    min-width: 400px;
    max-width: 500px;
    width: 90%;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    max-height: 90vh;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

.modal-header {
    position: relative;
    margin-bottom: 5px;
}

.modal-header h3 {
    color: white;
    margin: 0;
    font-size: var(--h4-size);
    font-weight: 600;
}

.close-btn {
    position: absolute;
    top: -15px;
    right: -15px;
    background: none;
    border: none;
    color: white;
    font-size: 30px;
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background-color 0.3s ease;
}

.close-btn:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    background-color: #2b2b2b;
    border: none;
    border-radius: 8px;
    padding: 15px;
    color: white;
    font-size: 14px;
    font-family: inherit;
    transition: background-color 0.3s ease;
    box-sizing: border-box;
    -webkit-appearance: none;
    appearance: none;
    -webkit-border-radius: 8px;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #6b6b6b;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    background-color: #363636;
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.submit-btn {
    width: 100%;
    background-color: white;
    border: none;
    border-radius: 8px;
    padding: 15px;
    color: black;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
    margin-top: 10px;
}

.submit-btn:hover {
    background-color: #f0f0f0;
    transform: translateY(-2px);
}

.submit-btn:active {
    transform: translateY(0);
}

/* Form Messages */
.form-message {
    padding: 12px 15px;
    border-radius: 8px;
    margin-bottom: 15px;
    font-size: 14px;
    font-weight: 500;
}

.form-message-success {
    background-color: rgba(34, 197, 94, 0.1);
    color: #22c55e;
    border: 1px solid rgba(34, 197, 94, 0.3);
}

.form-message-error {
    background-color: rgba(239, 68, 68, 0.1);
    color: #ef4444;
    border: 1px solid rgba(239, 68, 68, 0.3);
}

/* Mobile Responsive */
@media (max-width: 767px) {
    .modal-content {
        min-width: auto;
        width: calc(100% - 40px);
        max-width: 400px;
        padding: 30px 25px;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
        position: fixed;
        margin: 0;
    }
    
    .modal-header h3 {
        font-size: 24px;
    }
    
    .close-btn {
        top: -10px;
        right: -10px;
        font-size: 24px;
        width: 26px;
        height: 26px;
    }
}

/* Extra small devices */
@media (max-width: 480px) {
    .modal-content {
        width: calc(100% - 20px);
        padding: 25px 20px;
    }
    
    .form-group input,
    .form-group textarea {
        padding: 12px;
        font-size: 16px; /* Prevents zoom on iOS */
    }
    
    .submit-btn {
        padding: 12px;
        font-size: 16px;
    }
}

img{
    max-width: 100%;
}
body{
    font-family: 'Maison Neue';
    margin: 0;
    padding: 0;
    font-size: var(--body-size);
    line-height: 1.2;
    color: var(--body-color);
    background-color: var(--black-color);
    font-weight: 400;
}
.container{
    max-width: 680px;
}
h1, h2, h3, h4, h5, h6{
    font-family: 'Maison Neue';
    color: var(--white-color);
    line-height: 1.2;
    margin: 0 0 16px 0;
    font-weight: 500;
}
h1{
    font-size: var(--h1-size);
    font-weight: 700;
    margin: 0 0 24px 0;
}
h2{
    font-size: var(--h2-size);
    font-weight: 700;
    margin: 0 0 24px 0;
}
h3{
    font-size: var(--h3-size);
}
h4{
    font-size: var(--h4-size);
}
h5{
    font-size: var(--h5-size);
}
h6{
    font-size: var(--h6-size);
}
p{
    margin: 0 0 24px 0;
}
a {
    cursor: pointer;
}
h1:last-child, h2:last-child, h3:last-child, h4:last-child, h5:last-child, h6:last-child,
p:last-child{
    margin-bottom: 0;
}
.btn,
.work-tab .nav.nav-pills li.nav-item .nav-link {
    font-size: var(--body-size);
    padding: 16px 32px;
    border-radius: 100px;
    border: none;
    transition: background-color 0.3s, color 0.3s, transform 0.3s;
    line-height: 1.2;
    font-weight: 600;
    cursor: pointer !important;
    pointer-events: auto;
}
.btn-primary {
    background-color: var(--white-color);
    color: var(--black-color);
    cursor: pointer !important;
}
.btn-primary:hover,
.btn-primary:focus {
    background-color: var(--body-color);
    color: var(--black-color);
    cursor: pointer !important;
}
button.navbar-toggler {
    padding: 0;
}
.navbar-toggler, button.navbar-toggler:focus {
    font-size: 22px;
    color: var(--white-color);
    border-radius: revert-layer;
    border: 0.12em solid currentColor;
    width: 1em;
    height: 0.9em;
    border-right: 0;
    border-left: 0;
    position: relative;
    display: flex;
    align-items: center;
    background-blend-mode: color;
    box-shadow: none;
}

.navbar-toggler:after {
    content: '';
    width: 75%;
    position: absolute;
    height: 0.12em;
    background-color: currentColor;
}
header.main-nav {
    padding: 40px 0;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999;
    transition: all 0.3s;
}
header.main-nav.sticky {
    position: fixed;
    animation: slide 0.6s ease-in-out;
}


@keyframes slide {
    0% {
        opacity: 0;
        transform: translateY(-100px);
    }

    100% {
        opacity: 1;
        transform: translateY(0px);
    }
}

header.main-nav.sticky {
    background-color: var(--black-color);
    padding: 20px 0;
}
.navbar-expand-lg {
    padding: 0;
}

a.navbar-brand {
    max-width: 116px;
    padding: 0;
    font-size: inherit; 
}

.navbar-expand-lg .navbar-collapse {
    justify-content: flex-end;
}

.navbar-expand-lg .navbar-nav,
footer .top .navbar-nav {
    gap: 40px;
}

.navbar-expand-lg .navbar-nav .nav-link,
.nav-link {
    padding: 0;
    color: var(--white-color);
    font-weight: 500;
    position: relative;
    font-size: var(--nav-size);
    cursor: pointer;
}
.navbar-expand-lg .navbar-nav .nav-link:hover,
.nav-link:hover{
    color: var(--body-color);
}

.social-links {
    display: flex;
    align-items: center;
    margin-left: 20px;
}

.twitter-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--white-color);
    transition: all 0.3s ease;
    text-decoration: none;
}

.twitter-link:hover {
    background-color: rgba(255, 255, 255, 0.2);
    color: var(--white-color);
    text-decoration: none;
    transform: translateY(-2px);
}

.twitter-link svg {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.twitter-link:hover svg {
    transform: scale(1.1);
}



section.main-section {
    position: relative;
    min-height: 90vh;
    padding: var(--pad-sec-half) 0 var(--pad-sec);
    display: flex;
    align-items: center;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 2;
    backdrop-filter: blur(100px);
}
section.main-section>.container {
    padding-top: var(--pad-sec-half);
}

/* Learn more button in main section needs higher z-index */
section.main-section .btn {
    position: relative;
    z-index: 25;
    cursor: pointer !important;
}

.scroll-down {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
}

section.main-section {
    position: relative;
}

.scroll-down>.arrow {
    width: 20px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(255,255,255,0.2);
    border-radius: 100px;
    font-size: 12px;
}

.scroll-down>.arrow>svg {
    width: 1em;
    height: 1em;
    animation: scrolling 1.5s linear infinite;
  }
  
  
@keyframes scrolling {
    0% {
      opacity: 1;
      transform: translateY(-10px);
    }
  
    100% {
      opacity: 0;
      transform: translateY(10px);
    }
  }

section.coin-flip {
    position: relative;
    min-height: 250vh;
    margin-top: -28vh;
}

section.coin-flip>.figure {
    width: 70%;
    max-width: 450px;
    margin: 0 auto;
    display: block;
    position: sticky;
    top: 0;
    z-index: 10;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Partners section needs higher z-index to be above coin animation */
.pad-sec {
    position: relative;
    z-index: 15;
}

#coinImage {
    width: 100%;
    height: auto;
    max-width: 100%;
    display: block;
    object-fit: contain;
}
.text-shape {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
}

.text-shape svg {
    height: auto;
    width: 100%;
    max-width: 1240px;
}
  .logo-slider button.slick-arrow {
    display: none !important;
}

.logo-slider {
    padding: 30px 0 60px;
}
.logo-slider .slick-list {
    overflow: visible;
    margin: 0 -20px;
}
.logo-slider .logo-list {
    padding: 0 20px;
}

.logo-slider .logo-list img,
.logo-slider .logo-list svg {
    max-width: 80%;
    width: 100%;
    margin: 0 auto;
    max-height: 45px;
    object-fit: contain;
}


.benefits-lists {
    display: flex;
    flex-wrap: wrap;
    margin: 60px -19px -48px;
}

.benefits-lists>.list {
    width: 50%;
    padding: 0 19px 48px;
    text-align: center;
}
.benefits-lists>.list .icon h6.title {
    margin-bottom: 24px;
}

.benefits-lists>.list .icon {
    font-size: 60px;
    margin: 0 0 34px;
}
.benefits-lists>.list h6.title {
    margin: 0 0 24px;
}

.card-lists {
    display: flex;
    margin: 60px -8px -8px;
    flex-wrap: wrap;
}

.cardbox {
    margin: 8px;
    width: calc(50% - 16px);
    padding: 40px;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 20px;
    min-height: 200px;
    position: relative;
}
.cardbox>.icon {
    font-size: 40px;
    margin: 0 0 24px;
}

.cardbox>h5 {
    margin-bottom: 32px;
}

.cardbox>p {
    font-size: var(--nav-size);
    line-height: 1.4;
}

.cardbox.full {
    width: 100%;
}

.cardbox.full.with-img .image {
    position: absolute;
    width: 40%;
    right: 0;
    text-align: center;
    top: 10%;
}

.cardbox.full.with-img>*:not(.image) {
    width: 50%;
}

.cardbox.full.with-img h4 {
    margin-bottom: 60px;
}


.work-tab .nav.nav-pills {
    position: relative;
    padding: 8px;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 100px;
    flex-wrap: nowrap;
    margin: 0 0 24px;
}
.work-tab .nav.nav-pills li.nav-item {
    width: 100%;
    z-index: 2;
}

.work-tab .nav.nav-pills li.nav-item .nav-link {
    text-align: center;
    text-decoration: none;
    background-color: transparent;
    border: none;
    color: var(--white-color);
}
.work-tab .nav.nav-pills li.nav-item .nav-link:after{
    display: none;
}
.work-tab .nav.nav-pills li.nav-item .nav-link.active {
    color: var(--black-color);
}
.work-tab .nav.nav-pills:before {
    content: '';
    width: 33.33%;
    border-radius: 100px;
    height: calc(100% - 16px);
    top: 50%;
    transform: translateY(-50%);
    position: absolute;
    background-color: #fff;
    transition: all 0.3s;
}

.work-tab .nav.nav-pills:has(.nav-item:nth-child(1)>.nav-link.active):before {
    left: 8px;
}
.work-tab .nav.nav-pills:has(.nav-item:nth-child(2)>.nav-link.active):before {
    left: 50%;
    transform: translateY(-50%) translateX(-50%);
}
.work-tab .nav.nav-pills:has(.nav-item:nth-child(3)>.nav-link.active):before {
    left: calc(100% - 8px);
    transform: translateY(-50%) translateX(-100%);
}


.faq-main {
    padding: 24px;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 20px;
}

.faq-main h4 {
    text-align: center;
    margin: 0 0 24px;
}

.faq-item:not(:last-child) {
    margin-bottom: 24px;
}

.faq-content {
    padding: 16px 0 0;
    display: none;
}
.faq-content ul>li:not(:last-child) {
    margin-bottom: 0.5em;
}
.faq-item-title {
    position: relative;
    cursor: pointer;
}
.faq-item-title h6{
    font-size: var(--body-size);
    font-weight: 600
}
.faq-item-title:after, .faq-item-title:before {
    content: '';
    position: absolute;
    right: 0;
    width: 1em;
    height: 2px;
    background-color: currentColor;
    top: 50%;
    margin-top: -1px;
    transition: all 0.3s;
}

.faq-item-title:before {
    transform: rotate(90deg);
}
.faq-item-title.active:before{
    transform: rotate(0deg);
    
}

footer {
    padding: 0 0 40px;
}

footer .top {
    justify-content: space-between;
    margin: 0 0 60px;
}

p.copyright {
    font-size: var(--nav-size);
}

@media (max-width: 991px){
    .navbar-expand-lg:before {
        content: '';
        position: fixed;
        left: 0;
        right: 0;
        top: 0;
        bottom: 0;
        background-color: rgba(0, 0, 0, 0.5);
        transition: all 0.3s;
        opacity: 0;
        visibility: hidden;
    }

    .navbar-expand-lg:has(.show):before {
        visibility: visible;
        opacity: 1;
    }
    
    .navbar-expand-lg .navbar-collapse {
        margin: 0;
        position: fixed;
        width: 60%;
        max-width: 400px;
        right: 0;
        top: 0;
        bottom: 0;
        display: block;
        opacity: 0;
        visibility: hidden;
        transform: translateX(100%);
        padding: 20px 25px;
        transition: all 0.3s;
    }
    .main-nav:not(.sticky) .navbar-expand-lg .navbar-collapse{
        padding-top: 40px;
    }
    .navbar-expand-lg .navbar-collapse.show {
        opacity: 1;
        visibility: visible;
        transform: translateX(0);
    }
    
    .navbar-expand-lg .navbar-nav .nav-link {
        margin: 0;
        font-size: var(--h6-size);
    }
    .navbar-expand-lg .navbar-collapse {
        background-color: var(--black-color);
    }
    .navbar-expand-lg {
        position: relative;
    }
    li.close {
        width: 1em;
        height: 1em;
        color: #fff;
        position: relative;
        float: none;
        display: flex;
        align-items: center;
        justify-content: center;
        opacity: 1;
        cursor: pointer;
        font-size: 30px;
        margin: 4px 0 0 auto;
    }
    .close:hover {
        color: #fff;
    }
    .close:before, .close:after {
        position: absolute;
        height: 2px;
        width: 71%;
        background-color: currentColor;
        content: '';
        transform: rotate(45deg);
    }
    
    .close:after {
        transform: rotate(-45deg);
    }
    
    .social-links {
        margin-left: 0;
        margin-top: 20px;
        justify-content: center;
    }
    
    .twitter-link {
        width: 45px;
        height: 45px;
    }
    
    .twitter-link svg {
        width: 22px;
        height: 22px;
    }
}
@media (max-width: 767px){
    :root {
        --h1-size: 54px;
        --h2-size: 40px;
        --h3-size-lg: 34px;
        --h3-size: 34px;
        --h4-size: 24px;
        --h5-size: 20px;
        --h6-size: 18px;
        --body-size: 15px;
        --nav-size: 14px;
        --bs-gutter-x: 25px;
        --pad-sec: 80px;
        --pad-sec-half: 40px;
    }
    .logo-slider {
        padding: 20px 0 40px;
    }
    section.coin-flip {
        margin-bottom: -30vh;
    }
    .benefits-lists>.list {
        width: 100%;
        text-align: left;
    }
    .benefits-lists {
        margin-top: 40px;
    }
    .benefits-lists>.list .icon {
        margin: 0 0 20px;
    }
    .cardbox {
        padding: 25px;
        width: 100%;
        margin: 0 0 25px;
    }
    
    .card-lists {
        margin: 40px 0 -25px;
    }
    
    .cardbox.full.with-img>*:not(.image) {
        width: 100%;
    }
    
    .cardbox.full.with-img h4 {
        margin-bottom: 24px;
    }
    
    .cardbox.full.with-img .image {
        position: static;
        margin: 0 0 20px;
    }
    .work-tab .nav.nav-pills li.nav-item .nav-link {
        padding: 14px 10px;
    }
    footer .top {
        flex-direction: column;
        gap: 24px;
        margin: 0 0 24px;
    }
    
    .navbar-expand-lg .navbar-nav, footer .top .navbar-nav {
        gap: 24px;
    }
    
    .no-press-message {
        padding: 40px 25px;
        margin-top: 30px;
    }
    
    .no-press-message h3 {
        font-size: var(--h5-size);
    }
}