/*
 * OctaTrip Public — last-loaded responsive overlay
 * Load AFTER responsive.css. Do not reintroduce bordered .navbar-nav li cards.
 */

/* ========================================
   SHARED: below navbar-expand-lg (< 992px)
   ======================================== */
@media only screen and (max-width: 991.98px) {
    body {
        overflow-x: hidden;
    }

    .container,
    .container-fluid {
        max-width: 100%;
    }

    .hero-content-landing,
    .hero-landing .container,
    .hero-landing .row,
    .hero-landing .col-lg-7 {
        max-width: 100%;
        min-width: 0;
    }

    .page-header,
    .main-header {
        position: sticky;
        top: 0;
        z-index: 1000;
        background: rgba(255, 255, 255, 0.97);
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
        box-shadow: 0 1px 0 rgba(0, 0, 0, 0.06), 0 8px 24px rgba(0, 0, 0, 0.04);
    }

    .navbar {
        padding: 0.7rem 1.2rem !important;
    }

    .navbar .container-fluid {
        padding-left: 0.75rem !important;
        padding-right: 0.75rem !important;
        align-items: center;
    }

    .navbar-brand {
        padding: 0.15rem 0;
        max-width: calc(100% - 52px);
    }

    .navbar .brand-logo,
    .brand-logo {
        max-height: 34px !important;
        width: auto !important;
        max-width: 150px;
        height: auto !important;
    }

    /* Minimal modern toggler */
    .navbar-toggler {
        width: 42px;
        height: 42px;
        padding: 0 !important;
        border: 1px solid rgba(33, 61, 74, 0.1) !important;
        border-radius: 12px !important;
        background: #ffffff !important;
        display: inline-flex !important;
        align-items: center;
        justify-content: center;
        box-shadow: 0 1px 4px rgba(33, 61, 74, 0.06) !important;
        transition: background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
    }

    .navbar-toggler:focus,
    .navbar-toggler:active,
    .navbar-toggler[aria-expanded="true"] {
        outline: none;
        border-color: rgba(186, 71, 144, 0.35) !important;
        box-shadow: 0 0 0 3px rgba(186, 71, 144, 0.16) !important;
        background: rgba(186, 71, 144, 0.06) !important;
    }

    .navbar-toggler-icon {
        width: 1.1em;
        height: 1.1em;
        background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%2845, 55, 72, 0.85%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2.4' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
    }

    .navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
        background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28186, 71, 144, 0.95%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2.4' d='M8 8l14 14M22 8L8 22'/%3e%3c/svg%3e") !important;
    }

    /* Compact card-style collapse panel */
    .navbar-collapse {
        width: 100%;
        flex-basis: 100%;
        background: #ffffff;
        margin-top: 0.65rem;
        padding: 0.45rem;
        border: 1px solid rgba(33, 61, 74, 0.08);
        border-radius: 16px;
        box-shadow:
            0 10px 28px rgba(33, 61, 74, 0.1),
            0 2px 6px rgba(33, 61, 74, 0.04);
    }

    .navbar-collapse.show,
    .navbar-collapse.collapsing {
        animation: none;
    }

    .navbar-collapse.show {
        animation: mobileNavIn 0.2s ease-out;
    }

    @keyframes mobileNavIn {
        from { opacity: 0; transform: translateY(-8px); }
        to { opacity: 1; transform: translateY(0); }
    }

    .navbar-nav.main-nav,
    .navbar-nav {
        width: 100% !important;
        align-items: stretch !important;
        gap: 0.2rem !important;
        padding: 0.15rem 0 0.35rem !important;
        margin: 0 !important;
        height: auto !important;
        max-height: none !important;
        background: transparent !important;
        border-radius: 0 !important;
        box-shadow: none !important;
    }

    .navbar-nav .nav-item {
        width: 100%;
        margin: 0 !important;
        border: none !important;
        border-radius: 0 !important;
        background: transparent !important;
        padding: 0 !important;
    }

    .navbar-nav .nav-link {
        display: flex !important;
        align-items: center;
        width: 100% !important;
        max-width: 100% !important;
        text-align: left !important;
        margin: 0 !important;
        padding: 0.72rem 0.95rem !important;
        font-size: 1.38rem !important;
        font-weight: 600;
        letter-spacing: 0.01em;
        border-radius: 12px !important;
        min-height: 44px;
        line-height: 1.25;
        color: #3B3E43 !important;
        border: none !important;
        border-bottom: none !important;
        border-left: 3px solid transparent !important;
        transition: background 0.18s ease, color 0.18s ease, border-color 0.18s ease;
    }

    .navbar-nav .nav-link::after {
        display: none !important;
        width: 0 !important;
        height: 0 !important;
        content: none !important;
    }

    .navbar-nav .nav-link.active {
        background: linear-gradient(90deg, rgba(186, 71, 144, 0.12) 0%, rgba(51, 146, 208, 0.06) 100%) !important;
        color: #BA4790 !important;
        font-weight: 700;
        border-left-color: #BA4790 !important;
    }

    .navbar-nav .nav-link:hover,
    .navbar-nav .nav-link:focus {
        background: rgba(51, 146, 208, 0.07) !important;
        color: #2680C0 !important;
    }

    .navbar-nav .nav-link.active:hover,
    .navbar-nav .nav-link.active:focus {
        color: #BA4790 !important;
        background: linear-gradient(90deg, rgba(186, 71, 144, 0.14) 0%, rgba(51, 146, 208, 0.08) 100%) !important;
    }

    .btn-login-header {
        display: flex !important;
        width: calc(100% - 0.3rem);
        margin: 0.35rem 0.15rem 0.15rem !important;
        padding: 0.8rem 1.15rem !important;
        justify-content: center;
        align-items: center;
        gap: 0.55rem !important;
        font-size: 1.3rem !important;
        font-weight: 600;
        min-height: 46px;
        border-radius: 12px !important;
        background: linear-gradient(90deg, #BA4790 0%, #3392D0 100%) !important;
        box-shadow: 0 8px 18px rgba(51, 146, 208, 0.28) !important;
        border-top: 1px solid rgba(33, 61, 74, 0.06);
        position: relative;
    }

    .btn-login-header::before {
        content: '';
        position: absolute;
        left: 0.85rem;
        right: 0.85rem;
        top: -0.45rem;
        height: 1px;
        background: rgba(33, 61, 74, 0.08);
    }

    .btn-login-header:hover,
    .btn-login-header:focus {
        background: linear-gradient(90deg, #a33d7f 0%, #2680C0 100%) !important;
        transform: none;
        box-shadow: 0 10px 22px rgba(51, 146, 208, 0.34) !important;
    }

    /* Homepage hero */
    .hero-visual,
    .floating-element {
        display: none !important;
    }

    .hero-landing {
        min-height: auto !important;
        overflow: visible !important;
        padding: 36px 0 32px !important;
        align-items: flex-start !important;
        text-align: center;
    }

    .hero-landing::before,
    .hero-landing::after {
        display: none !important;
    }

    .hero-content-landing {
        text-align: center;
        margin: 0 auto;
    }

    .hero-title-main {
        font-size: 3rem !important;
        margin-bottom: 1.1rem !important;
        line-height: 1.15 !important;
    }

    .hero-title-main .first-line {
        font-size: 1.7rem !important;
        margin-bottom: 0.35rem !important;
        font-weight: 600 !important;
        color: #4a5568 !important;
    }

    .hero-title-main .highlight {
        font-size: 2.6rem !important;
        letter-spacing: -0.6px !important;
        color: #BA4790 !important;
        -webkit-text-fill-color: #BA4790 !important;
        background: none !important;
        filter: none !important;
        animation: none !important;
        line-height: 1.15 !important;
    }

    .hero-subtitle-main {
        font-size: 1.45rem !important;
        margin: 0 auto 1.75rem !important;
        max-width: 36em;
        line-height: 1.55 !important;
        color: #4a5568 !important;
    }

    .hero-buttons-main {
        flex-direction: column !important;
        gap: 0.7rem !important;
        width: 100%;
        max-width: 360px;
        margin-left: auto !important;
        margin-right: auto !important;
        margin-bottom: 2rem !important;
    }

    .hero-buttons-main .btn {
        width: 100% !important;
        min-height: 48px;
        justify-content: center;
        align-items: center;
        display: inline-flex !important;
        padding: 0.85rem 1.4rem !important;
        font-size: 1.45rem !important;
        letter-spacing: 0.2px !important;
        border-radius: 999px !important;
    }

    .btn-hero-primary {
        box-shadow: 0 8px 20px rgba(186, 71, 144, 0.35) !important;
    }

    .btn-hero-outline {
        border: 2px solid #BA4790 !important;
        color: #BA4790 !important;
        background: #ffffff !important;
        box-shadow: 0 4px 14px rgba(186, 71, 144, 0.12) !important;
    }

    .trust-badges {
        display: grid !important;
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        gap: 1rem 0.75rem !important;
        margin-top: 0.5rem !important;
        width: 100%;
        max-width: 100%;
        justify-content: stretch !important;
        box-sizing: border-box;
        padding: 1.25rem 0.5rem 0;
        border-top: 1px solid rgba(0, 0, 0, 0.06);
    }

    .trust-badge {
        text-align: center;
        padding: 0.6rem 0.35rem 0.35rem;
        min-width: 0;
        background: rgba(255, 255, 255, 0.55);
        border-radius: 14px;
    }

    .trust-badge::before {
        display: none !important;
    }

    .trust-number {
        font-size: 2.35rem !important;
        letter-spacing: -0.5px !important;
        margin-bottom: 0.25rem !important;
        line-height: 1.1 !important;
    }

    .trust-label {
        font-size: 1.15rem !important;
        color: #4a5568 !important;
    }

    /* Service cards — denser 2-col grid */
    .services-showcase {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        gap: 0.85rem !important;
        margin-top: 2rem !important;
    }

    .service-box {
        padding: 1.25rem 0.85rem !important;
        border-radius: 16px !important;
        border-width: 1.5px !important;
        box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1) !important;
    }

    .service-icon {
        width: 56px !important;
        height: 56px !important;
        margin: 0 auto 0.85rem !important;
    }

    .service-icon svg {
        width: 28px !important;
        height: 28px !important;
    }

    .service-name {
        font-size: 1.25rem !important;
        line-height: 1.3 !important;
    }

    /* Feature cards */
    .features-grid {
        grid-template-columns: 1fr !important;
        gap: 1.1rem !important;
    }

    .feature-box-enhanced {
        padding: 1.75rem 1.35rem !important;
        border-radius: 16px !important;
    }

    .feature-icon-enhanced {
        width: 64px !important;
        height: 64px !important;
        font-size: 2rem !important;
        margin-bottom: 1.1rem !important;
    }

    .feature-title {
        font-size: 1.7rem !important;
        margin-bottom: 0.6rem !important;
    }

    .feature-description {
        font-size: 1.35rem !important;
        line-height: 1.55 !important;
    }

    .section-title {
        font-size: 2.4rem !important;
    }

    .section-subtitle {
        font-size: 1.4rem !important;
    }

    /* Inner page headers */
    .page-header-section,
    .about-header,
    .api-header,
    .agency-header {
        padding: 36px 0 !important;
        min-height: auto !important;
    }

    .page-header-section .page-title,
    .about-header .page-title,
    .api-header .page-title,
    .agency-header .page-title {
        font-size: 2.6rem !important;
    }

    .page-header-section .page-subtitle,
    .about-header .page-subtitle,
    .api-header .page-subtitle,
    .agency-header .page-subtitle {
        font-size: 1.45rem !important;
    }

    .header-buttons {
        display: flex;
        flex-direction: column;
        gap: 0.7rem;
        width: 100%;
        max-width: 360px;
    }

    .header-buttons .btn {
        width: 100%;
        min-height: 44px;
    }

    /* About page — denser mobile content */
    .about-page .about-header {
        padding: 28px 0 24px !important;
    }

    .about-page .about-eyebrow {
        font-size: 1.05rem;
        margin-bottom: 0.5rem;
    }

    .about-page .hero-description {
        font-size: 1.35rem !important;
        line-height: 1.55 !important;
        margin-bottom: 0;
    }

    .about-page .about-stat-row {
        margin-top: 1.15rem;
        gap: 0.55rem;
    }

    .about-page .about-stat {
        flex: 1 1 calc(33.333% - 0.55rem);
        min-width: 0;
        padding: 0.7rem 0.65rem;
        text-align: center;
    }

    .about-page .about-stat-value {
        font-size: 1.45rem;
    }

    .about-page .about-stat-label {
        font-size: 1.05rem;
        line-height: 1.25;
    }

    .about-page .about-offer-section {
        padding-top: 2rem !important;
        padding-bottom: 2rem !important;
    }

    .about-page .about-offer-card {
        padding: 1.25rem 0.9rem !important;
        border-radius: 14px;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
    }

    .about-page .about-offer-card .feature-icon {
        margin-bottom: 0.75rem !important;
    }

    .about-page .about-offer-card .feature-icon svg {
        width: 40px;
        height: 40px;
    }

    .about-page .about-offer-card h3 {
        font-size: 1.35rem !important;
    }

    .about-page .about-offer-card p {
        font-size: 1.15rem !important;
        line-height: 1.45 !important;
    }

    .about-page .why-choose-about-section {
        padding-top: 2rem !important;
        padding-bottom: 2rem !important;
    }

    .about-page .about-lead {
        font-size: 1.4rem !important;
        line-height: 1.55 !important;
    }

    .about-page .about-feature-list .about-feature-item {
        gap: 0.75rem;
        margin-bottom: 0.75rem !important;
        padding: 0.85rem 0.9rem;
    }

    .about-page .about-feature-list .about-feature-item h5 {
        font-size: 1.35rem;
    }

    .about-page .about-feature-list .about-feature-item p {
        font-size: 1.2rem;
    }

    .about-page .mission-section-about {
        padding: 1.75rem 0 2.25rem !important;
    }

    .about-page .about-mission-card {
        padding: 1.5rem 1.2rem;
        border-radius: 18px;
    }

    .about-page .about-mission-point {
        padding: 0.95rem 1rem;
    }

    .about-page .about-mission-actions {
        flex-direction: column;
        margin-top: 1.25rem;
    }

    .about-page .about-mission-actions .btn {
        width: 100%;
        min-height: 44px;
    }

    /* Forms */
    .contact-form-wrapper,
    .contact-info-wrapper,
    .registration-form-wrapper {
        padding: 1.5rem !important;
        margin-bottom: 1.5rem;
        border-radius: 14px;
    }

    .contact-form .form-control,
    .registration-form .form-control,
    .registration-form .form-select,
    .contact-form .form-select {
        font-size: 16px !important;
        padding: 0.85rem 1rem !important;
    }

    .form-section {
        margin-bottom: 1.75rem;
        padding-bottom: 1.75rem;
    }

    .agency-type-radio,
    .api-plan-option {
        padding: 1.15rem !important;
    }

    /* Partners */
    .partner-logo-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        gap: 0.85rem !important;
    }

    .partner-logo {
        height: auto !important;
        min-height: 100px;
        padding: 1.5rem 1rem !important;
    }

    /* Footer — polished mobile layout */
    .footer {
        padding: 0 !important;
        overflow-x: hidden;
        background:
            linear-gradient(180deg, rgba(186, 71, 144, 0.18) 0%, transparent 120px),
            #213D4A !important;
    }

    .footer > .container {
        padding: 2rem 1.35rem 0.5rem !important;
    }

    .footer-main-row {
        --bs-gutter-x: 1rem;
        --bs-gutter-y: 0;
    }

    .footer .footer-col {
        margin-bottom: 0 !important;
    }

    .footer .footer-col h4 {
        position: relative;
        display: inline-block;
        margin-bottom: 1rem !important;
        font-size: 1.45rem !important;
        letter-spacing: 0.3px;
        padding-bottom: 0.45rem;
    }

    .footer .footer-col h4::after {
        content: '';
        position: absolute;
        left: 0;
        bottom: 0;
        width: 28px;
        height: 2px;
        border-radius: 2px;
        background: linear-gradient(90deg, #F7941D 0%, #BA4790 100%);
    }

    /* Brand block — full width even when Bootstrap col-md-3 applies */
    .footer .footer-col--brand,
    .footer .footer-col--contact {
        width: 100% !important;
        max-width: 100% !important;
        flex: 0 0 100% !important;
    }

    .footer .footer-col--brand {
        text-align: center !important;
        padding: 0 0.5rem 1.5rem !important;
        margin-bottom: 1.35rem !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
    }

    .footer .footer-col--brand h4::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer .footer-col--brand p {
        font-size: 1.28rem !important;
        line-height: 1.55 !important;
        max-width: 32em;
        margin: 0 auto;
        color: rgba(176, 196, 205, 0.95) !important;
    }

    .footer .footer-col--brand .footer-social-icons {
        justify-content: center !important;
        margin-top: 1.15rem !important;
        gap: 0.75rem !important;
    }

    .footer .footer-col--brand .footer-social-link {
        width: 42px !important;
        height: 42px !important;
        background: rgba(255, 255, 255, 0.08) !important;
        border: 1px solid rgba(255, 255, 255, 0.14);
        border-radius: 12px !important;
    }

    .footer .footer-col--brand .footer-social-link:hover {
        background: #F7941D !important;
        border-color: #F7941D;
        transform: translateY(-2px);
    }

    /* Contact cards */
    .footer .footer-col--contact {
        padding: 0 0.25rem 1.35rem !important;
        margin-bottom: 1.25rem !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
    }

    .footer .footer-col--contact ul {
        display: flex;
        flex-direction: column;
        gap: 0.55rem;
        margin: 0;
    }

    .footer .footer-col--contact ul li {
        display: flex !important;
        margin: 0 !important;
        padding: 0.7rem 0.85rem !important;
        background: rgba(255, 255, 255, 0.05);
        border: 1px solid rgba(255, 255, 255, 0.08);
        border-radius: 12px;
        gap: 0.65rem;
        align-items: center;
    }

    .footer .footer-col--contact ul li svg {
        width: 15px;
        height: 15px;
        opacity: 0.95;
    }

    .footer .footer-col--contact ul li a {
        min-height: auto !important;
        font-size: 1.28rem !important;
        color: #E8F0F3 !important;
        word-break: break-word;
    }

    /* Link columns side-by-side */
    .footer .footer-col--links,
    .footer .footer-col--start {
        width: 50% !important;
        max-width: 50% !important;
        flex: 0 0 50% !important;
        padding-bottom: 1.25rem !important;
    }

    .footer .footer-col--links {
        padding-right: 0.65rem !important;
    }

    .footer .footer-col--start {
        padding-left: 0.65rem !important;
        border-left: 1px solid rgba(255, 255, 255, 0.1);
    }

    .footer .footer-col--links ul li,
    .footer .footer-col--start ul li {
        margin: 0 !important;
        display: block !important;
    }

    .footer .footer-col--links ul li a,
    .footer .footer-col--start ul li a {
        min-height: 32px !important;
        font-size: 1.25rem !important;
        padding: 0.2rem 0 !important;
        color: #B0C4CD !important;
        width: 100%;
    }

    .footer .footer-col--links ul li a:hover,
    .footer .footer-col--start ul li a:hover,
    .footer .footer-col--links ul li a:active,
    .footer .footer-col--start ul li a:active {
        color: #ffffff !important;
        padding-left: 0 !important;
    }

    .footer-bottom {
        margin-top: 0 !important;
        padding: 1rem 1.35rem !important;
        background: rgba(0, 0, 0, 0.22) !important;
        border-top: 1px solid rgba(255, 255, 255, 0.08);
    }

    .footer-bottom .container {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }

    .copyright {
        font-size: 1.15rem !important;
        letter-spacing: 0.2px;
        opacity: 0.85;
        margin: 0 !important;
    }
}

/* ========================================
   PHONE (< 576px)
   ======================================== */
@media only screen and (max-width: 575.98px) {
    .navbar {
        padding: 0.55rem 0.9rem !important;
    }

    .navbar .container-fluid {
        padding-left: 0.5rem !important;
        padding-right: 0.5rem !important;
    }

    .navbar .brand-logo,
    .brand-logo {
        max-height: 30px !important;
        max-width: 132px;
    }

    .navbar-toggler {
        width: 40px;
        height: 40px;
        border-radius: 11px !important;
    }

    .navbar-nav .nav-link {
        padding: 0.62rem 0.85rem !important;
        font-size: 1.32rem !important;
        min-height: 42px;
    }

    .btn-login-header {
        padding: 0.72rem 1rem !important;
        font-size: 1.25rem !important;
        min-height: 44px;
    }

    .hero-landing {
        padding: 28px 0 24px !important;
    }

    .hero-title-main .first-line {
        font-size: 1.55rem !important;
    }

    .hero-title-main .highlight {
        font-size: 2.25rem !important;
    }

    .hero-subtitle-main {
        font-size: 1.35rem !important;
        margin-bottom: 1.5rem !important;
    }

    .hero-buttons-main {
        gap: 0.6rem !important;
        margin-bottom: 1.5rem !important;
    }

    .hero-buttons-main .btn {
        min-height: 46px;
        padding: 0.75rem 1.2rem !important;
        font-size: 1.35rem !important;
    }

    .trust-badges {
        gap: 0.7rem 0.55rem !important;
        padding-top: 1rem;
    }

    .trust-number {
        font-size: 2.1rem !important;
    }

    .trust-label {
        font-size: 1.05rem !important;
    }

    .services-showcase {
        gap: 0.7rem !important;
    }

    .service-box {
        padding: 1.05rem 0.65rem !important;
    }

    .service-icon {
        width: 48px !important;
        height: 48px !important;
        margin-bottom: 0.65rem !important;
    }

    .service-icon svg {
        width: 24px !important;
        height: 24px !important;
    }

    .service-name {
        font-size: 1.15rem !important;
    }

    .page-header-section .page-title,
    .about-header .page-title,
    .api-header .page-title,
    .agency-header .page-title {
        font-size: 2.3rem !important;
    }

    .contact-form-wrapper,
    .contact-info-wrapper,
    .registration-form-wrapper {
        padding: 1.2rem !important;
        border-radius: 12px;
    }

    .contact-info-item {
        gap: 1rem;
        margin-bottom: 1.35rem;
    }

    section.py-5 {
        padding-top: 2.5rem !important;
        padding-bottom: 2.5rem !important;
    }

    .footer > .container {
        padding-left: 1.15rem;
        padding-right: 1.15rem;
    }

    .footer-col--brand p {
        font-size: 1.25rem !important;
    }

    .footer-col--links,
    .footer-col--start {
        flex: 0 0 50%;
        max-width: 50%;
    }

    .footer-col h4 {
        font-size: 1.4rem !important;
    }

    .footer-col ul li a {
        font-size: 1.25rem !important;
        min-height: 32px;
    }
}

/* ========================================
   TABLET / LARGE PHONE (576–991)
   ======================================== */
@media only screen and (min-width: 576px) and (max-width: 991.98px) {
    .hero-title-main .highlight {
        font-size: 3rem !important;
    }

    .trust-badges {
        gap: 1.1rem !important;
        max-width: 480px;
        margin-left: auto;
        margin-right: auto;
    }

    .trust-number {
        font-size: 2.6rem !important;
    }

    .services-showcase {
        grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    }

    .features-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    }
}

/* ========================================
   DESKTOP (>= 992): leave Bootstrap expand alone
   ======================================== */
@media only screen and (min-width: 992px) {
    .navbar-toggler {
        display: none !important;
    }

    .navbar-collapse {
        display: flex !important;
        flex-basis: auto;
    }
}
