/*
Theme Name: MECKIDS
Theme URI: https://example.com
Author: scott
Description:
Version: 6.8.5
*/
:root {
    --primary-color: #002443;
    --secondary-color: #e5f4ff;
    --third-color: #193b54;
    --fourth-color: #509bd2;
    --page-width: 1440px;
    --red-color: #ec2232;
}

a:-webkit-any-link {
    color: inherit;
}

a:hover {
    opacity: .7;
}

@font-face {
    font-family: 'FontAwesome';
    src: url('https://use.fontawesome.com/releases/v4.7.0/fonts/fontawesome-webfont.woff2') format('woff2'),
    url('https://use.fontawesome.com/releases/v4.7.0/fonts/fontawesome-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}


@font-face {
    font-family: ETmodules;
    font-display: block;
    src: url('./assets/fonts/modules.woff') format("woff"),
    url('./assets/fonts/modules.ttf') format("truetype");
    font-weight: 400;
    font-style: normal;
}

.container {
    max-width: var(--page-width);
    margin: 0 auto;
    box-sizing: border-box;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Source Sans Pro", sans-serif;
    line-height: 1.6;
    color: var(--third-color);
    background-color: #ffffff;
    /* min-width: 1440px; */
}

.header-mobile {
    display: none;
}

.custom-header .btn-primary {
    background: var(--fourth-color);
    color: #ffffff;
    border: none;
    padding: 9px 20px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.custom-header .btn-secondary {
    background: transparent;
    color: var(--fourth-color);
    border: 1.5px solid var(--fourth-color);
    padding: 9px 20px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.custom-header .btn-primary:hover {
    background: #4085b8;
    transform: translateY(-1px);
}

.custom-header .btn-secondary:hover {
    background: var(--fourth-color);
    color: #ffffff;
}

/* Header Styles */
.custom-header {
    background: #ffffff;
    padding: 0;
    position: relative;
}

.custom-header .nav-container {
    max-width: 1440px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0px 64px;

}


.custom-header .nav-left {
    display: flex;
    align-items: center;
    gap: 28px;
    justify-self: start;
}

.custom-header .logo {
    width: 250px;
    /* height: 44.977px; */
    justify-self: center;
}

.custom-header .nav-actions {
    display: flex;
    align-items: center;
    gap: 14px;
    justify-self: end;
}

.custom-header .nav-actions .nav-menu {
    margin-right: 14px;
}

.custom-header .nav-menu {
    display: flex;
    align-items: center;
    gap: 28px;
    position: relative;
}

.custom-header a {
    text-decoration: none;
}

.custom-header .sub-menu {
    display: none;
    position: absolute;
    left: 50%;
    top: 95%;
    transform: translateX(-50%);
    box-shadow: 0px 0px 12px rgba(0, 0, 0, 0.12);
    background-color: #fff;
    padding: 6px 0px;
    min-width: 170px;
    border: 1px solid #e4e7ed;
    border-radius: 4px;
    font-size: 14px;
    z-index: 100;
    width: max-content;
}

.custom-header .locations-sub-menu {
    width: 860px;
    height: 350px;
}

.custom-header .locations-sub-menu .sub-sub-menu {
    position: absolute;
    left: 100px;
    top: 40px;
}

.custom-header .sub-menu.locations-sub-menu:after {
    content: " ";
    position: absolute;
    left: 100px;
    top: 25px;
    right: 20px;
    /*border: 1px solid var(--primary-color);*/
    border: 1px solid #41769c;
    z-index: 1;
}

.custom-header .locations-sub-menu .sub-sub-menu {
    position: absolute;
    left: 100px;
    top: 40px;
}

.custom-header .locations-sub-menu .sub-menu-item {
    width: 100px;
    display: flex;
    align-items: center;
    gap: 5px;
    font-weight: 600;
}

.custom-header .locations-sub-menu .sub-menu-item img {
    width: 20px;
    height: 20px;
}

.custom-header .nav-item:hover .sub-menu {
    display: block;
}

.custom-header .locations-sub-menu-active .sub-menu {
    display: block !important;
}

.sub-sub-menu-item-title {
    /*color: #509bd2;*/
    font-size: 25px;
    padding-left: 20px;
    position: absolute;
    top: -35px;
    background: #fff;
    padding-right: 20px;
    z-index: 2;
    color: #e62434;
    font-weight: 600;
}

.custom-header .sub-menu::before {
    position: absolute;
    width: 10px;
    height: 10px;
    content: " ";
    background-color: #fff;
    transform: rotate(45deg) translateX(-50%);
    box-sizing: border-box;
    border-bottom-color: transparent !important;
    border-right-color: transparent !important;
    top: -2px;
    left: 50%;
    border-top-left-radius: 2px;
    border: 1px solid #e4e7ed;
    z-index: 10;
}

.nav-item:hover {
    .nav-expand-icon {
        transform: rotate(180deg);
    }
}

.sub-menu-item {
    padding: 4px 14px;
    cursor: pointer;
}

.sub-menu-item:hover {
    background-color: #509cd22a;
}

.sub-sub-menu {
    display: none;
    flex-flow: column wrap;
    height: 275px;
    min-width: 700px;
}

.sub-menu-item-active {
    /*color: #509bd2;*/
    background-color: #509cd22a;
    color: #e62434;
}

.sub-sub-menu-item {
    padding: 4px 20px 4px 30px;
    white-space: nowrap;
    position: relative;
}

.sub-sub-menu-item:before {
    content: " ";
    position: absolute;
    width: 4px;
    height: 4px;
    border: 1px solid var(--primary-color);
    top: 50%;
    left: 15px;
    border-radius: 2px;
}

.sub-sub-menu-item:hover {
    color: var(--fourth-color);
    text-decoration-line: underline;
    text-decoration-style: solid;
    text-decoration-skip-ink: auto;
    text-decoration-thickness: auto;
    text-underline-offset: auto;
    text-underline-position: from-font;
}

.custom-header .nav-item {
    position: relative;
    cursor: pointer;
    display: flex;
    align-items: center;
    cursor: pointer;
    height: 40px;

    .nav-expand-icon {
        transition: all 0.3s ease;
    }
}

.custom-header .nav-item span {
    font-size: 14px;
    font-weight: 400;
    color: #000;
    display: flex;
    align-items: center;
    gap: 4px;
}

.custom-header .nav-expand-icon {
    margin-left: 4px;
    width: 12px;
    height: 12px;
}


/*add the mega menu css*/
.nav-container-wrapper {
    max-width: 1440px;
    margin: 0 auto;
    align-items: center;
    padding: 0px 12px;
}
#mega-menu-wrap-main_menu #mega-menu-main_menu
{
    padding: 20px 0px !important;
}
.menu-item-title {
    font-size: 26px;
    color: #e62434;
    overflow: hidden;
    font-weight: 600;
}

.menu-item-title:after {
    content: '';
    background: #41769c;
    width: -webkit-fill-available;
    height: 3px;
    position: absolute;
    top: calc(50% + 3px);
    margin-left: 15px;
}


#mega-menu-wrap-main_menu #mega-menu-main_menu {
    text-align: center;
}

#mega-menu-wrap-main_menu #mega-menu-main_menu #mega-menu-item-1928 {
    padding-left: 100px;
    padding-right: 100px;

}
#mega-menu-wrap-main_menu #mega-menu-main_menu #mega-menu-item-1928 a {
    height: auto !important;
}

@media screen and (max-width: 1420px) {
    #mega-menu-wrap-main_menu #mega-menu-main_menu #mega-menu-item-1928 {
        padding-left: 100px;
        padding-right: 100px;
    }
}

@media screen and (max-width: 1420px) {
    #mega-menu-wrap-main_menu #mega-menu-main_menu #mega-menu-item-1928 {
        padding-left: 80px;
        padding-right: 80px;
    }

    .custom-header .logo {
        width: 220px;
    }
}


@media screen and (max-width: 1280px) {
    #mega-menu-wrap-main_menu #mega-menu-main_menu #mega-menu-item-1928 {
        padding-left: 40px;
        padding-right: 40px;
    }

    .custom-header .logo {
        width: 170px;
    }
}

@media screen and (max-width: 1190px) {
    #mega-menu-wrap-main_menu #mega-menu-main_menu #mega-menu-item-1928 {
        padding-left: 10px;
        padding-right: 10px;
    }

    .custom-header .logo {
        width: 170px;
    }
}

@media screen and (max-width: 1080px) {
    #mega-menu-wrap-main_menu #mega-menu-main_menu #mega-menu-item-1928 {
        padding-left: 10px;
        padding-right: 10px;
    }

    .custom-header .logo {
        width: 170px;
    }

    #mega-menu-wrap-main_menu #mega-menu-main_menu > li.mega-menu-item > a.mega-menu-link {
        padding: 0px 7px !important;
    }
}


#mega-menu-wrap-main_menu #mega-menu-main_menu > li.mega-menu-flyout ul.mega-sub-menu {
    border-radius: 15px;
    overflow: hidden
}

#mega-menu-wrap-main_menu #mega-menu-main_menu > li.mega-menu-item.mega-menu-megamenu > ul.mega-sub-menu {
    padding: 25px 15px;
    background: -o-linear-gradient(left, #ebeff2 calc(25% - 7px), #f9f9f9 calc(25% - 7px));
    background: linear-gradient(to right, #ebeff2 calc(25% - 7px), #f9f9f9 calc(25% - 7px));
    border-radius: 30px !important
}

@media screen and (max-width: 1400px) {
    #mega-menu-wrap-main_menu #mega-menu-main_menu > li.mega-menu-item.mega-menu-megamenu > ul.mega-sub-menu {
        max-height: 465px;
        overflow-y: scroll !important
    }
}

#mega-menu-wrap-main_menu #mega-menu-main_menu > li.mega-menu-tabbed > ul.mega-sub-menu > li.mega-menu-item > ul.mega-sub-menu {
    padding: 15px;
    background: #f9f9f9
}

#mega-menu-wrap-main_menu #mega-menu-main_menu > li.mega-menu-item > a.mega-menu-link {
    letter-spacing: .025em
}

#mega-menu-wrap-main_menu #mega-menu-main_menu > li.mega-menu-tabbed > ul.mega-sub-menu > li.mega-menu-item.mega-toggle-on > a.mega-menu-link, #mega-menu-wrap-main_menu #mega-menu-main_menu > li.mega-menu-tabbed > ul.mega-sub-menu > li.mega-menu-item > a.mega-menu-link:hover, #mega-menu-wrap-main_menu #mega-menu-main_menu > li.mega-menu-tabbed > ul.mega-sub-menu > li.mega-menu-item > a.mega-menu-link:focus {
    z-index: 1
}

#mega-menu-wrap-main_menu #mega-menu-main_menu > li.mega-menu-tabbed > ul.mega-sub-menu > li.mega-menu-item > a.mega-menu-link {
    width: calc(25% - 15px)
}

#mega-menu-wrap-main_menu #mega-menu-main_menu li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-1-of-3 {
    background: #fff;
    border-radius: 20px;
    padding: 15px;
    margin-right: 15px;
    width: calc(33.33333% - 10px);
    -webkit-box-shadow: 3px 5px 15px rgb(0 0 0 / 0.05);
    box-shadow: 3px 5px 15px rgb(0 0 0 / 0.05)
}

/*#mega-menu-wrap-main_menu #mega-menu-main_menu li.mega-menu-megamenu>ul.mega-sub-menu>li.mega-menu-row>ul.mega-sub-menu>li.mega-menu-columns-1-of-3:last-child {*/
/*    padding: 0!important;*/
/*    background: transparent!important;*/
/*    -webkit-box-shadow: none;*/
/*    box-shadow: none*/
/*}*/

#mega-menu-wrap-main_menu #mega-menu-main_menu li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row .mega-menu-column:last-child > ul.mega-sub-menu > li.mega-menu-item {
    padding: 0
}

#mega-menu-wrap-main_menu #mega-menu-main_menu > li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-item .mega-menu-row > ul.mega-sub-menu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: 100%;
    margin: auto;
    position: relative;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap
}

#mega-menu-wrap-main_menu #mega-menu-main_menu > li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row .mega-menu-column:last-child {
    align-items: flex-start
}

#mega-menu-wrap-main_menu #mega-menu-main_menu li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-1-of-3:last-child {
    margin-right: 0
}
#mega-menu-wrap-main_menu #mega-menu-main_menu>li.mega-menu-tabbed>ul.mega-sub-menu>li.mega-menu-item>ul.mega-sub-menu
{
    border-radius: 30px !important;
}


.menu-item-title:after {
    content: '';
    background: #41769c;
    width: 100%;
    height: 3px;
    position: absolute;
    top: calc(50% + 3px);
    margin-left: 15px
}

.mega-menu-item .textwidget.custom-html-widget {
    overflow: hidden;
    position: relative
}

.mega-sub-menu img {
    border-radius: 20px !important;
    object-fit: contain
}

#mega-menu-wrap-main_menu #mega-menu-main_menu > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-column > ul.mega-sub-menu > li.mega-menu-item > a.mega-menu-link:before {
    content: '';
    width: 4px;
    height: 4px;
    border-radius: 10px;
    border: 1px solid #A9C4DA;
    vertical-align: middle;
    margin: -1px 10px 0 0px
}

#mega-menu-wrap-main_menu #mega-menu-main_menu > li.mega-menu-tabbed > ul.mega-sub-menu > li.mega-menu-item > a.mega-menu-link:hover {
    color: #41769c;
    padding-left: 3px;
    cursor: pointer
}

#mega-menu-wrap-main_menu #mega-menu-main_menu > li.mega-menu-tabbed > ul.mega-sub-menu > li.mega-menu-item > a.mega-menu-link {
    -webkit-transition: all .2s ease;
    -o-transition: all .2s ease;
    transition: all .2s ease;
    font-weight: 600 !important
}

#mega-menu-wrap-main_menu #mega-menu-main_menu > li.mega-menu-tabbed > ul.mega-sub-menu > li.mega-menu-item > ul.mega-sub-menu {
    -webkit-transition: all .4s ease !important;
    -o-transition: all .4s ease !important;
    transition: all .4s ease !important
}


/* custom mega  css */


/* Header Styles End */

/* Newsletter Section */
.newsletter {
    background: #5d8eb6;
    border-top: 6px solid #1d597d;
    border-bottom: 6px solid #3b6e8d;
    padding: 30px 0;
    color: #ffffff;
}

.newsletter-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 64px;
}

.newsletter-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.newsletter-title {
    font-size: 18px;
    font-weight: 400;
    line-height: 1.4;
    color: #ffffff;
    max-width: 370px;
    margin-right: 100px;
}

.newsletter-form {
    display: flex;
    gap: 12px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.newsletter-input {
    padding: 12px 20px;
    border: none;
    border-radius: 25px;
    font-size: 14px;
    width: 250px;
    outline: none;
    background: #ffffff;
    color: #333;
}

.newsletter-input::placeholder {
    color: #999;
}

.newsletter-form-wrapper li#field_1_1 {
    width: auto !important;
}

.newsletter-form-wrapper #input_1_1 {
    padding: 12px 20px;
    border: none;
    border-radius: 25px;
    font-size: 14px;
    width: 200px;
    outline: none;
    background: #ffffff;
    color: #333;
}

.newsletter-form-wrapper .gfield_select {
    padding: 12px 20px !important;
    border: none;
    border-radius: 25px;
    font-size: 14px;
    width: 240px !important;
    outline: none;
    color: #333;
    cursor: pointer;
}

.newsletter-form-wrapper #gform_submit_button_1 {
    padding: 12px 30px;
    background: var(--third-color);
    color: #ffffff;
    border: none;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter-submit:hover {
    background: #2c4a61;
    transform: translateY(-1px);
}


/* Footer */
.custom-footer {
    background: var(--third-color);
    color: #ffffff;
    padding: 0px 40px 80px 40px;
    border-top: 10px solid #e72434;
}

.custom-footer .footer-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 4px solid #41759a;
    padding: 30px 0;
    margin-bottom: 30px;
}

.custom-footer .footer-top-logo {
    max-height: 50px;
}

.custom-footer .footer-links {
    list-style: none;
    color: #fff;
}

.custom-footer .footer-links a {
    list-style: none;
    color: #fff;
    text-decoration: none;
}

.custom-footer .footer-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 20px;
}

.custom-footer .footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 30px;
}

.custom-footer .footer-brand {
    max-width: 400px;
}

.custom-footer .footer-logo {
    max-height: 50px;
    margin-bottom: 25px;
}

.custom-footer .footer-description {
    font-size: 16px;
    line-height: 1.6;
    color: #ffffff;
    opacity: 0.9;
    margin-bottom: 0;
}

.custom-footer .footer-social-section {
    display: flex;
    justify-content: flex-end;
}

.custom-footer .footer-social {
    display: flex;
    gap: 15px;
}

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

.custom-footer .social-link:hover {
    background: var(--fourth-color);
    transform: translateY(-2px);
}

.custom-footer .footer-certifications {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    padding-top: 40px;
}

.custom-footer .cert-badge {
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.custom-footer .cert-badge:hover {
    opacity: 1;
}

.custom-footer .cert-logo-ada {
    color: var(--third-color);
    padding: 15px 20px;
    border-radius: 8px;
    text-align: center;
    min-width: 80px;
}

.custom-footer .ada-text {
    font-size: 24px;
    font-weight: 700;
    line-height: 1;
}

.custom-footer .ada-subtext {
    font-size: 12px;
    font-weight: 600;
    margin-top: 2px;
}

.custom-footer .cert-logo-bbb {
    color: var(--third-color);
    padding: 15px 20px;
    border-radius: 8px;
    text-align: center;
    min-width: 100px;
}

.custom-footer .bbb-rating {
    font-size: 20px;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 5px;
}

.custom-footer .bbb-text {
    font-size: 14px;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 3px;
}

.custom-footer .bbb-subtext {
    font-size: 10px;
    font-weight: 400;
    opacity: 0.8;
}

.footer-address {
    text-align: center;
    background-color: #5d8eb6;
    color: #fff;
    padding: 10px 14px;
    font-size: 14px;
    font-style: normal;

    a {
        color: #fff;
        text-decoration: none;

    }
}

section.newsletter {
    margin-bottom: 0;
}

section.newsletter .newsletter-form input, section.newsletter .newsletter-form select {
    height: auto;
    width: auto;
    margin-bottom: 0;
}

footer h4 {
    color: #ffffff !important;
}

footer ul.footer-links li {
    list-style: none !important;
}

.faq-item .faq-answer ul {
    margin-block-start: 1em;
    margin-block-end: 1em;
    padding-inline-start: 40px;
}


/* Footer END */

@media (max-width: 1200px) {
    .custom-header .nav-container {
        padding: 0 14px;
    }

    .newsletter-title {
        margin-right: 14px;
    }

    .newsletter-container {
        padding: 0 20px;
    }

    .newsletter-form {
        width: 600px;
        flex: 0 0 600px;
    }

    footer .footer {
        padding: 0 0 40px 0;
    }
}

@media (max-width: 980px) {
    .custom-header {
        display: none;
    }

    .header-mobile {
        position: sticky;
        top: 0;
        background-color: #fff;
        z-index: 100;
        padding: 10px 0px;
        box-shadow: 0px 0px 12px rgba(0, 0, 0, 0.12);
        display: flex;
        justify-content: space-between;
        padding: 0px 14px;
        align-items: center;
    }

    .header-mobile .btn-primary {
        background: var(--fourth-color);
        color: #ffffff;
        border: none;
        padding: 9px 20px;
        border-radius: 12px;
        font-weight: 600;
        font-size: 14px;
        cursor: pointer;
        transition: all 0.3s ease;
    }

    .header-mobile .btn-secondary {
        background: transparent;
        color: var(--fourth-color);
        border: 1.5px solid var(--fourth-color);
        padding: 9px 20px;
        border-radius: 12px;
        font-weight: 600;
        font-size: 14px;
        cursor: pointer;
        transition: all 0.3s ease;
    }

    .header-mobile-logo {
        height: 50px;
        width: auto;
    }

    .header-mobile-buttons {
        width: 30px;
        height: 20px;
        position: relative;

        div {
            width: 100%;
            height: 2px;
            position: absolute;
            background-color: var(--primary-color);
        }

        .header-mobile-button1 {
            opacity: 1;
            transition: all 0.3s ease-in-out;
            top: 0;
        }

        .header-mobile-button2 {
            top: 50%;
            transform: translateY(-50%);
            transition: all 0.3s ease-in-out;
        }

        .header-mobile-button3 {
            bottom: 0;
            transition: all 0.3s ease-in-out;
        }
    }

    .header-mobile-close {
        .header-mobile-button2 {
            opacity: 0;
        }

        .header-mobile-button1 {
            top: 50%;
            transform: rotate(45deg);
            transform-origin: center;
        }

        .header-mobile-button3 {
            transform: rotate(-45deg);
            transform-origin: center;
            top: 50%;
        }
    }

    .header-mobile-menu {
        position: absolute;
        top: 110%;
        right: 10px;
        background-color: #fff;
        padding: 10px;
        border-radius: 4px;
        box-shadow: 0px 0px 12px rgba(0, 0, 0, 0.12);
        min-width: 180px;
        display: none;
        max-height: 80vh;
        overflow-y: auto;

        a {
            text-decoration: none;
            color: #666;
        }

        .header-mobile-menu-buttons {
            margin-top: 14px;
            display: flex;
            gap: 14px;
            align-items: center;
        }

        .header-mobile-menu-item {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 20px;
            padding: 10px 4px;
            border-radius: 4px;
            cursor: pointer;
            border-bottom: 1px solid #eee;
            color: #333;

            .header-mobile-menu-expand {
                transform: rotate(0deg);
                transition: all 0.3s ease-in-out;
            }
        }

        .header-mobile-menu-item-active {
            .header-mobile-menu-expand {
                transform: rotate(180deg);
            }

            .header-mobile-menu-item-text {
                color: var(--primary-color);
            }
        }

        .mobile-submenu {
            padding-left: 14px;
            display: none;

            .mobile-submenu {
                font-size: 16px;
                margin-top: 4px;

                .mobile-submenu-item {
                    padding: 6px 0;
                }
            }

            .mobile-submenu-item {
                color: #666 !important;
                padding: 4px 0;
            }
        }
        #menu-item-1928,#menu-item-1929,#menu-item-1930
        {
            display: none;
        }
    }

}

@media (max-width: 768px) {
    .custom-header .nav-container {
        grid-template-columns: 1fr;
        grid-template-rows: auto auto auto;
        gap: 10px;
        text-align: center;
    }

    .custom-header.nav-actions {
        justify-self: center;
        order: 3;
        gap: 10px;
    }

    .custom-header .nav-menu {
        display: none;
    }

    .custom-header .nav-left {
        justify-self: center;
        order: 2;
    }

    .custom-header .nav-container {
        padding: 0 14px;
        height: 60px;
    }

    .custom-header .logo {
        order: 1;
        width: 100px;
        height: auto;
        display: block;
    }

    .newsletter-content {
        text-align: center;
        flex-direction: column;
    }

    .newsletter-container {
        padding: 0 14px;
    }

    .newsletter-title {
        margin-right: 0;
        margin-bottom: 14px;
        max-width: max-content;
    }

    .newsletter-form {
        flex-direction: column;
        flex: initial;
    }

    .newsletter-form, .newsletter-input, .newsletter-select, .newsletter-submit {
        width: 100%;
    }

    .custom-footer .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }

    .custom-footer .footer-brand {
        max-width: none;
    }

    .custom-footer .footer-social {
        justify-content: center;
    }

    .custom-footer .footer-top {
        flex-direction: column;
    }

    .custom-footer .footer-top-logo {
        margin-bottom: 14px;
    }
}