:root {

    --oydc-green: #00843d;

    --oydc-dark-green: #006b32;

    --oydc-black: #111111;

    --oydc-white: #ffffff;

    --border-color: #eeeeee;

    --text-color: #171717;
}



/* =========================================================
   TOP BAR
========================================================= */

.top-bar {

    height: 50px;

    display: flex;

    justify-content: space-between;

    align-items: center;

    padding: 0 4%;

    border-top: 1px solid #eeeeee;

    border-bottom: 1px solid #eeeeee;

    background: #ffffff;
}

.top-item a {

    color: inherit;

    text-decoration: none;
}

.top-item a:hover {

    color: var(--oydc-green);
}



/* =========================================================
   TOP BAR - LEFT
========================================================= */

.top-left {

    display: flex;

    align-items: center;

    gap: 42px;
}

.top-item {

    display: flex;

    align-items: center;

    gap: 11px;

    font-size: 14px;

    font-weight: 600;
}

.top-item i {

    font-size: 14px;

    color: var(--oydc-green);
}



/* =========================================================
   SOCIAL LINKS
========================================================= */

.social-links {

    display: flex;

    height: 70px;
}

.social-links a {

    width: 58px;

    display: flex;

    justify-content: center;

    align-items: center;

    color: var(--oydc-black);

    border-left: 1px solid #eeeeee;

    text-decoration: none;

    transition: 0.3s;
}

.social-links a:last-child {

    border-right: 1px solid #eeeeee;
}

.social-links a:hover {

    color: var(--oydc-green);
}



/* =========================================================
   MAIN HEADER
========================================================= */

.main-header {

    background: var(--oydc-white);

    border-bottom: 1px solid #eeeeee;

    position: relative;

    z-index: 1000;
}

.header-container {

    min-height: 112px;

    padding: 0 4%;

    display: flex;

    align-items: center;
}



/* =========================================================
   LOGO
========================================================= */

.logo {

    display: flex;

    align-items: center;

    margin-right: auto;

    margin-left: 120px;
}

.logo img {

    width: 170px;

    max-width: 100%;

    height: auto;

    display: block;

    transform: translateY(8px);
}



/* =========================================================
   NAVIGATION
========================================================= */

.navigation {

    display: flex;

    align-items: center;
}

.nav-list {

    display: flex;

    align-items: center;

    list-style: none;

    gap: 42px;

    margin: 0;

    padding: 0;
}

.nav-item {

    position: relative;
}

.nav-link {

    display: flex;

    align-items: center;

    gap: 9px;

    height: 112px;

    color: var(--oydc-black);

    text-decoration: none;

    font-size: 16px;

    font-weight: 600;

    position: relative;

    transition: 0.3s;
}



/* =========================================================
   ACTIVE NAVIGATION
========================================================= */

.nav-link.active {

    color: var(--oydc-green);
}

.nav-link.active::after {

    content: "";

    position: absolute;

    left: 0;

    right: 0;

    bottom: 27px;

    height: 3px;

    background: var(--oydc-green);
}



/* =========================================================
   NAVIGATION HOVER
========================================================= */

.nav-link:hover {

    color: var(--oydc-green);
}



/* =========================================================
   DROPDOWN ICON
========================================================= */

.dropdown-icon {

    font-size: 11px;

    transition: transform 0.3s ease;
}

.dropdown:hover .dropdown-icon {

    transform: rotate(180deg);
}



/* =========================================================
   DROPDOWN MENU
========================================================= */

.dropdown-menu {

    position: absolute;

    top: calc(100% - 1px);

    left: 50%;

    transform: translateX(-50%) translateY(15px);

    width: 270px;

    background: var(--oydc-white);

    list-style: none;

    padding: 10px 0;

    margin: 0;

    border: 1px solid #e5e5e5;

    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.10);

    opacity: 0;

    visibility: hidden;

    transition:
        opacity 0.25s ease,
        transform 0.25s ease,
        visibility 0.25s ease;
}



/* =========================================================
   GREEN TOP LINE
========================================================= */

.dropdown-menu::before,
.dropdown-submenu-menu::before {

    content: "";

    position: absolute;

    top: 0;

    left: 0;

    right: 0;

    height: 3px;

    background: var(--oydc-green);
}



/* =========================================================
   SHOW DROPDOWN
========================================================= */

.dropdown:hover .dropdown-menu {

    opacity: 1;

    visibility: visible;

    transform: translateX(-50%) translateY(0);
}



/* =========================================================
   DROPDOWN ITEMS
========================================================= */

.dropdown-menu li {

    border-bottom: 1px solid #eeeeee;
}

.dropdown-menu li:last-child {

    border-bottom: none;
}

.dropdown-menu a {

    display: block;

    padding: 18px 22px;

    color: #151515;

    text-decoration: none;

    font-size: 15px;

    font-weight: 500;

    transition: 0.25s;
}

.dropdown-menu a:hover {

    background: #f5faf7;

    color: var(--oydc-green);

    padding-left: 27px;
}



/* =========================================================
   SUBMENU
========================================================= */

.dropdown-submenu {

    position: relative;
}

.dropdown-submenu-menu {

    position: absolute;

    top: 0;

    left: 100%;

    width: 250px;

    background: #ffffff;

    list-style: none;

    padding: 10px 0;

    margin: 0;

    border: 1px solid #e5e5e5;

    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.10);

    opacity: 0;

    visibility: hidden;

    transform: translateX(10px);

    transition: all 0.25s ease;
}

.dropdown-submenu:hover .dropdown-submenu-menu {

    opacity: 1;

    visibility: visible;

    transform: translateX(0);
}

.dropdown-submenu-menu li {

    border-bottom: 1px solid #eeeeee;
}

.dropdown-submenu-menu li:last-child {

    border-bottom: none;
}

.dropdown-submenu-menu a {

    display: block;

    padding: 15px 20px;

    color: #151515;

    text-decoration: none;

    font-size: 15px;

    font-weight: 500;
}

.dropdown-submenu-menu a:hover {

    background: #f5faf7;

    color: var(--oydc-green);
}



/* =========================================================
   DONATION BUTTON
========================================================= */

.nav-button-item {

    margin-left: 5px;

    list-style: none;
}

.contact-button {

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 8px;

    width: 190px;

    height: 50px;

    background: var(--oydc-green);

    color: #ffffff !important;

    text-decoration: none;

    font-size: 17px;

    font-weight: 700;

    border-radius: 3px;

    transition:
        background 0.3s ease,
        transform 0.3s ease;
}



/* =========================================================
   DONATION ICON
========================================================= */

.contact-button i {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    font-size: 17px;

    line-height: 1;

    flex-shrink: 0;
}



/* =========================================================
   DONATION HOVER
========================================================= */

.contact-button:hover {

    background: var(--oydc-dark-green);

    color: #ffffff !important;

    transform: translateY(-2px);
}



/* =========================================================
   MOBILE MENU BUTTON
========================================================= */

.menu-toggle {

    display: none;

    background: none;

    border: none;

    font-size: 25px;

    cursor: pointer;

    color: var(--oydc-black);

    padding: 8px;
}



/* =========================================================
   FOOTER
========================================================= */

.site-footer {

    background: #111111;

    color: #ffffff;
}



/* =========================================================
   FOOTER CONTAINER
========================================================= */

.footer-container {

    max-width: 1400px;

    margin: 0 auto;

    padding: 55px 30px;

    display: grid;

    grid-template-columns:
        1.7fr
        1.5fr
        1.4fr
        1fr
        1.5fr;

    gap: 40px;
}



/* =========================================================
   FOOTER COLUMN
========================================================= */

.footer-column {

    min-width: 0;
}



/* =========================================================
   FOOTER HEADINGS
========================================================= */

.footer-column h3 {

    margin: 0 0 20px;

    font-size: 16px;

    font-weight: 600;

    color: #ffffff;

    line-height: 1.4;
}



/* =========================================================
   FOOTER BRAND
========================================================= */

.footer-brand {

    max-width: 300px;
}

.footer-logo {

    width: 250px;

    height: auto;

    display: block;
}



/* =========================================================
   FOOTER TEXT
========================================================= */

.footer-column p {

    margin: 0 0 12px;

    line-height: 1.7;

    font-size: 14px;

    color: #cccccc;
}

.footer-column p i {

    width: 20px;

    margin-right: 8px;
}

.footer-column a {

    color: #cccccc;

    text-decoration: none;

    transition: color 0.3s ease;
}

.footer-column a:hover {

    color: #ffffff;
}



/* =========================================================
   FOOTER SOCIAL
========================================================= */

.footer-social {

    display: flex;

    gap: 10px;
}

.footer-social a {

    width: 38px;

    height: 38px;

    border: 1px solid #555555;

    border-radius: 50%;

    display: flex;

    align-items: center;

    justify-content: center;

    color: #ffffff;

    text-decoration: none;

    transition:
        background 0.3s ease,
        color 0.3s ease,
        transform 0.3s ease;
}

.footer-social a:hover {

    background: #ffffff;

    color: #111111;

    transform: translateY(-2px);
}



/* =========================================================
   NEWSLETTER COLUMN
========================================================= */

.footer-newsletter-column {

    max-width: 300px;
}

.footer-newsletter-column h3 {

    margin-bottom: 15px;

    line-height: 1.4;
}

.footer-newsletter-column p {

    font-size: 13px;

    line-height: 1.6;

    color: #aaaaaa;

    margin-bottom: 18px;
}



/* =========================================================
   NEWSLETTER FORM
========================================================= */

.newsletter-form {

    display: flex;

    flex-direction: column;

    gap: 10px;
}



/* =========================================================
   NEWSLETTER INPUT
========================================================= */

.newsletter-form input {

    width: 100%;

    height: 44px;

    padding: 0 14px;

    box-sizing: border-box;

    background: #ffffff;

    color: #111111;

    border: 1px solid #555555;

    border-radius: 3px;

    font-size: 13px;

    outline: none;

    font-family: inherit;

    transition:
        border-color 0.3s ease,
        box-shadow 0.3s ease;
}

.newsletter-form input::placeholder {

    color: #888888;
}

.newsletter-form input:focus {

    border-color: var(--oydc-green);

    box-shadow:
        0 0 0 3px rgba(0, 132, 61, 0.08);
}



/* =========================================================
   NEWSLETTER BUTTON
========================================================= */

.newsletter-form button {

    width: 100%;

    height: 44px;

    border: none;

    border-radius: 3px;

    background: var(--oydc-green);

    color: #ffffff;

    font-size: 13px;

    font-weight: 700;

    cursor: pointer;

    font-family: inherit;

    transition:
        background 0.3s ease,
        transform 0.3s ease,
        opacity 0.3s ease;
}

.newsletter-form button:hover {

    background: var(--oydc-dark-green);

    transform: translateY(-1px);
}

.newsletter-form button:active {

    transform: translateY(0);
}



/* =========================================================
   FOOTER BOTTOM
========================================================= */

.footer-bottom {

    border-top: 1px solid #333333;

    text-align: center;

    padding: 18px 20px;
}

.footer-bottom p {

    margin: 0;

    font-size: 15px;

    color: #aaaaaa;
}



/* =========================================================
   NEWSLETTER POPUP
========================================================= */

.newsletter-popup-overlay {

    position: fixed;

    inset: 0;

    background: rgba(0, 0, 0, 0.65);

    display: flex;

    align-items: center;

    justify-content: center;

    padding: 20px;

    opacity: 0;

    visibility: hidden;

    pointer-events: none;

    transition:
        opacity 0.3s ease,
        visibility 0.3s ease;

    z-index: 99999;
}



/* =========================================================
   POPUP ACTIVE
========================================================= */

.newsletter-popup-overlay.active {

    opacity: 1;

    visibility: visible;

    pointer-events: auto;
}



/* =========================================================
   POPUP BOX
========================================================= */

.newsletter-popup {

    position: relative;

    width: 100%;

    max-width: 500px;

    background: #ffffff;

    padding: 45px 40px 40px;

    border-radius: 4px;

    text-align: center;

    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.25);

    transform:
        translateY(20px)
        scale(0.97);

    transition:
        transform 0.3s ease;
}



/* =========================================================
   POPUP ANIMATION
========================================================= */

.newsletter-popup-overlay.active
.newsletter-popup {

    transform:
        translateY(0)
        scale(1);
}



/* =========================================================
   POPUP CLOSE BUTTON
========================================================= */

.newsletter-popup-close {

    position: absolute;

    top: 12px;

    right: 15px;

    width: 38px;

    height: 38px;

    border: none;

    background: transparent;

    color: #555555;

    font-size: 30px;

    line-height: 1;

    cursor: pointer;

    transition:
        color 0.3s ease,
        transform 0.3s ease;
}

.newsletter-popup-close:hover {

    color: var(--oydc-green);

    transform: rotate(90deg);
}



/* =========================================================
   POPUP ICON
========================================================= */

.newsletter-popup-icon {

    width: 60px;

    height: 60px;

    margin: 0 auto 20px;

    border-radius: 50%;

    background: var(--oydc-green);

    color: #ffffff;

    display: flex;

    align-items: center;

    justify-content: center;

    font-size: 24px;
}



/* =========================================================
   POPUP TITLE
========================================================= */

.newsletter-popup h2 {

    margin: 0 0 12px;

    color: var(--oydc-black);

    font-size: 22px;

    font-weight: 700;

    line-height: 1.4;
}



/* =========================================================
   POPUP DESCRIPTION
========================================================= */

.newsletter-popup > p {

    margin: 0 auto 25px;

    max-width: 420px;

    color: #666666;

    font-size: 14px;

    line-height: 1.7;
}



/* =========================================================
   POPUP FORM
========================================================= */

#newsletterPopupForm {

    display: flex;

    flex-direction: column;

    gap: 12px;
}



/* =========================================================
   POPUP INPUTS
========================================================= */

#newsletterPopupForm input {

    width: 100%;

    height: 48px;

    padding: 0 15px;

    box-sizing: border-box;

    border: 1px solid #dddddd;

    border-radius: 3px;

    background: #ffffff;

    color: #111111;

    font-family: inherit;

    font-size: 14px;

    outline: none;

    transition:
        border-color 0.3s ease,
        box-shadow 0.3s ease;
}

#newsletterPopupForm input:focus {

    border-color: var(--oydc-green);

    box-shadow:
        0 0 0 3px rgba(0, 132, 61, 0.08);
}

#newsletterPopupForm input::placeholder {

    color: #999999;
}



/* =========================================================
   POPUP SUBSCRIBE BUTTON
========================================================= */

#newsletterPopupForm button {

    width: 100%;

    height: 48px;

    border: none;

    border-radius: 3px;

    background: var(--oydc-green);

    color: #ffffff;

    font-family: inherit;

    font-size: 14px;

    font-weight: 700;

    cursor: pointer;

    transition:
        background 0.3s ease,
        transform 0.3s ease,
        opacity 0.3s ease;
}

#newsletterPopupForm button:hover {

    background: var(--oydc-dark-green);

    transform: translateY(-1px);
}

#newsletterPopupForm button:active {

    transform: translateY(0);
}

#newsletterPopupForm button:disabled {

    opacity: 0.6;

    cursor: not-allowed;

    transform: none;
}



/* =========================================================
   NEWSLETTER SUCCESS MESSAGE
========================================================= */

.newsletter-success {

    display: none;

    margin: 20px 0 0 !important;

    padding: 15px;

    background: #f0faf4;

    border-radius: 3px;

    color: var(--oydc-green) !important;

    font-weight: 600;

    line-height: 1.6;
}

.newsletter-success.show {

    display: block;
}



/* =========================================================
   NEWSLETTER ERROR MESSAGE
========================================================= */

.newsletter-error {

    display: none;

    margin: 15px 0 0 !important;

    padding: 12px;

    background: #fff1f1;

    border-radius: 3px;

    color: #c62828 !important;

    font-size: 13px;

    line-height: 1.5;
}

.newsletter-error.show {

    display: block;
}



/* =========================================================
   RESPONSIVE TABLET
========================================================= */

@media (max-width: 1300px) {

    .nav-list {

        gap: 25px;
    }

    .logo img {

        width: 190px;

        margin-right: 0;
    }

    .contact-button {

        width: 150px;

        font-size: 15px;
    }



    /* Footer */

    .footer-container {

        grid-template-columns:
            1.5fr
            1.4fr
            1.3fr
            1fr
            1.4fr;

        gap: 30px;
    }

}



/* =========================================================
   MOBILE / TABLET NAVIGATION
========================================================= */

@media (max-width: 1000px) {



    /* =====================================================
       TOP BAR
    ===================================================== */

    .top-bar {

        display: none;
    }

    .top-left {

        flex-direction: column;

        align-items: flex-start;

        gap: 10px;
    }

    .social-links {

        display: none;
    }



    /* =====================================================
       HEADER
    ===================================================== */

    .header-container {

        min-height: 85px;

        padding: 0 5%;

        justify-content: space-between;
    }



    /* =====================================================
       MOBILE LOGO
    ===================================================== */

    .logo {

        margin-left: 0;

        margin-right: auto;
    }

    .logo img {

        width: 230px;

        margin-left: 0;

        margin-right: 0;

        transform: translateY(8px);
    }



    /* =====================================================
       MOBILE MENU BUTTON
    ===================================================== */

    .menu-toggle {

        display: block;

        flex-shrink: 0;
    }



    /* =====================================================
       MOBILE NAVIGATION
    ===================================================== */

    .navigation {

        position: absolute;

        top: 100%;

        left: 0;

        right: 0;

        background: #ffffff;

        border-top: 1px solid #eeeeee;

        display: none;

        box-shadow:
            0 10px 25px rgba(0, 0, 0, 0.08);

        max-height: calc(100vh - 85px);

        overflow-y: auto;

        overflow-x: hidden;
    }

    .navigation.active {

        display: block;
    }



    /* =====================================================
       MOBILE NAV LIST
    ===================================================== */

    .nav-list {

        flex-direction: column;

        align-items: stretch;

        gap: 0;

        width: 100%;

        padding: 10px 5%;

        margin: 0;

        box-sizing: border-box;
    }

    .nav-item {

        width: 100%;
    }



    /* =====================================================
       MOBILE NAV LINKS
    ===================================================== */

    .nav-link {

        height: auto;

        min-height: 55px;

        justify-content: space-between;

        border-bottom: 1px solid #eeeeee;

        box-sizing: border-box;
    }

    .nav-link.active::after {

        display: none;
    }



    /* =====================================================
       MOBILE MAIN DROPDOWNS
    ===================================================== */

    .dropdown-menu {

        position: static;

        width: 100%;

        transform: none;

        opacity: 1;

        visibility: visible;

        display: none;

        background: #ffffff;

        box-shadow: none;

        border: none;

        padding: 0 0 0 20px;

        margin: 0;

        box-sizing: border-box;
    }



    /* SHOW MAIN DROPDOWN */

    .dropdown.active > .dropdown-menu {

        display: block;
    }



    /* REMOVE DESKTOP HOVER */

    .dropdown:hover .dropdown-menu {

        transform: none;
    }



    /* REMOVE GREEN DESKTOP LINE */

    .dropdown-menu::before {

        display: none;
    }



    /* =====================================================
       MOBILE DROPDOWN LINKS
    ===================================================== */

    .dropdown-menu a {

        display: flex;

        align-items: center;

        min-height: 50px;

        padding: 14px 15px;

        color: #151515;

        text-decoration: none;

        font-size: 15px;

        font-weight: 500;

        border-bottom: 1px solid #eeeeee;

        transition: 0.25s;

        box-sizing: border-box;
    }

    .dropdown-menu a:hover {

        background: #f5faf7;

        color: var(--oydc-green);

        padding-left: 20px;
    }



    /* =====================================================
       MOBILE SUBMENU
    ===================================================== */

    .dropdown-submenu {

        position: relative;
    }

    .dropdown-submenu-menu {

        position: static;

        width: 100%;

        display: none;

        opacity: 1;

        visibility: visible;

        transform: none;

        background: #f8f8f8;

        list-style: none;

        padding: 0 0 0 15px;

        margin: 0;

        border: none;

        box-shadow: none;

        box-sizing: border-box;
    }



    /* SHOW SUBMENU */

    .dropdown-submenu.active > .dropdown-submenu-menu {

        display: block;
    }



    /* REMOVE DESKTOP HOVER */

    .dropdown-submenu:hover .dropdown-submenu-menu {

        opacity: 1;

        visibility: visible;

        transform: none;
    }



    /* =====================================================
       MOBILE SUBMENU LINKS
    ===================================================== */

    .dropdown-submenu-menu a {

        display: block;

        min-height: 45px;

        padding: 12px 15px;

        color: #333333;

        text-decoration: none;

        font-size: 14px;

        border-bottom: 1px solid #eeeeee;

        box-sizing: border-box;
    }

    .dropdown-submenu-menu a:hover {

        background: #f5faf7;

        color: var(--oydc-green);
    }



    /* =====================================================
       MOBILE DROPDOWN ARROW
    ===================================================== */

    .dropdown-icon {

        transition: transform 0.3s ease;
    }

    .dropdown.active > .nav-link .dropdown-icon {

        transform: rotate(180deg);
    }



    /* =====================================================
       MOBILE DONATION BUTTON
    ===================================================== */

    .nav-button-item {

        display: block;

        width: 100%;

        margin: 12px 0 5px;

        padding: 0;

        box-sizing: border-box;
    }

    .contact-button {

        display: flex;

        align-items: center;

        justify-content: center;

        gap: 8px;

        width: 100%;

        min-height: 52px;

        height: 52px;

        padding: 0 20px;

        background: var(--oydc-green);

        color: #ffffff !important;

        text-decoration: none;

        text-align: center;

        font-size: 16px;

        font-weight: 700;

        border-radius: 3px;

        box-sizing: border-box;

        transition:
            background 0.3s ease,
            transform 0.3s ease;
    }



    /* MOBILE DONATION ICON */

    .contact-button i {

        display: inline-flex;

        align-items: center;

        justify-content: center;

        font-size: 17px;

        line-height: 1;

        flex-shrink: 0;
    }

    .contact-button:hover {

        background: var(--oydc-dark-green);

        color: #ffffff !important;

        transform: none;
    }



    /* =====================================================
       FOOTER TABLET
    ===================================================== */

    .footer-container {

        grid-template-columns: 1fr 1fr;

        gap: 40px;

        padding: 45px 30px;
    }

    .footer-brand {

        max-width: 100%;
    }

    .footer-newsletter-column {

        max-width: 100%;
    }



    /* =====================================================
       NEWSLETTER POPUP TABLET
    ===================================================== */

    .newsletter-popup {

        max-width: 500px;
    }

}



/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 600px) {



    /* =====================================================
       HEADER
    ===================================================== */

    .header-container {

        min-height: 80px;

        padding: 0 5%;
    }

    .logo img {

        width: 190px;

        margin-left: 0;

        margin-right: 0;
    }

    .navigation {

        max-height: calc(100vh - 80px);
    }

    .menu-toggle {

        font-size: 24px;
    }

    .nav-list {

        padding-left: 5%;

        padding-right: 5%;
    }

    .contact-button {

        gap: 8px;

        min-height: 50px;

        height: 50px;

        font-size: 15px;
    }

    .contact-button i {

        font-size: 16px;
    }



    /* =====================================================
       FOOTER
    ===================================================== */

    .footer-container {

        grid-template-columns: 1fr;

        gap: 30px;

        padding: 40px 25px;
    }

    .footer-brand {

        max-width: 100%;
    }

    .footer-logo {

        width: 220px;
    }

    .footer-newsletter-column {

        max-width: 100%;
    }



    /* =====================================================
       NEWSLETTER
    ===================================================== */

    .newsletter-form input {

        height: 46px;
    }

    .newsletter-form button {

        height: 46px;
    }



    /* =====================================================
       NEWSLETTER POPUP
    ===================================================== */

    .newsletter-popup-overlay {

        padding: 15px;
    }

    .newsletter-popup {

        width: 100%;

        padding: 40px 25px 30px;
    }

    .newsletter-popup-icon {

        width: 55px;

        height: 55px;

        font-size: 22px;

        margin-bottom: 18px;
    }

    .newsletter-popup h2 {

        font-size: 19px;
    }

    .newsletter-popup > p {

        font-size: 13px;
    }

    #newsletterPopupForm input {

        height: 46px;
    }

    #newsletterPopupForm button {

        height: 46px;
    }

}



/* =========================================================
   VERY SMALL MOBILE
========================================================= */

@media (max-width: 400px) {

    .footer-container {

        padding: 35px 20px;
    }

    .footer-logo {

        width: 200px;
    }

    .footer-social a {

        width: 36px;

        height: 36px;
    }

    .newsletter-popup {

        padding: 35px 20px 25px;
    }

    .newsletter-popup h2 {

        font-size: 18px;
    }

}