/* =========================================
   GLOBAL RESET
========================================= */

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


/* =========================================
   HTML
========================================= */

html {
    width: 100%;

    scroll-behavior: smooth;
}


/* =========================================
   BODY
========================================= */

body {
    width: 100%;
    min-height: 100vh;

    background-color: #f8f8ff;

    color: #000;

    font-family: 'Lato', 'Arial', sans-serif;

    font-size: 1rem;
    line-height: 1.6;

    overflow-x: hidden;
}


/* =========================================
   FORM ELEMENTS
========================================= */

button,
input,
textarea,
select {
    font: inherit;
}


/* =========================================
   GLOBAL IMAGES
========================================= */

img {
    max-width: 100%;
}


/* =========================================
   GLOBAL LINKS
========================================= */

a {
    color: inherit;
}


/* =========================================
   ACCESSIBILITY - SKIP LINK
========================================= */

.skip-link {
    position: fixed;

    top: -100px;
    left: 20px;

    padding: 12px 18px;

    background-color: #fff;

    color: #03273F;

    font-size: 1rem;
    font-weight: 700;

    text-decoration: none;

    border-radius: 6px;

    box-shadow:
        0 4px 12px
        rgba(0, 0, 0, 0.2);

    z-index: 10000;

    transition: top 0.2s ease;
}


.skip-link:focus {
    top: 15px;
}


/* =========================================
   ACCESSIBILITY - KEYBOARD FOCUS
========================================= */

a:focus-visible,
button:focus-visible {
    outline: 3px solid #0A5A8F;

    outline-offset: 4px;
}


/* White / dark-background controls */

.navbar a:focus-visible,
#footer a:focus-visible,
.whatsapp-chat:focus-visible {
    outline-color: #fff;
}


/* =========================================
   MAIN CONTENT
========================================= */

main {
    width: 100%;
}


#main-content:focus {
    outline: none;
}


/* =========================================
   BASIC SETUP
========================================= */

.page-wrapper {
    width: 100%;
}


/* =========================================
   NAVIGATION WRAPPER
========================================= */

.nav-wrapper {
    width: 100%;

    min-height: 90px;

    position: sticky;

    top: 0;

    background-color: #03273F;

    z-index: 1000;
}


/* =========================================
   NAVIGATION DESKTOP
========================================= */

.navbar {
    width: 100%;

    min-height: 90px;

    display: grid;

    grid-template-columns: auto 1fr;

    align-items: center;

    padding: 10px 30px;
}


/* =========================================
   LOGO
========================================= */

#logo {
    height: 60px;
    width: 60px;

    border-radius: 50%;

    justify-self: start;

    display: block;

    object-fit: cover;
}


/* =========================================
   DESKTOP MENU
========================================= */

.navbar ul {
    list-style: none;

    display: flex;

    align-items: center;

    justify-self: end;

    gap: 30px;

    margin: 0;
}


/* =========================================
   NAVIGATION LINKS
========================================= */

.nav-item a {
    color: #fff;

    font-size: 1.1rem;
    font-weight: 500;

    text-decoration: none;

    padding: 8px 0;

    position: relative;

    transition:
        color 0.3s ease;
}


/* =========================================
   NAVIGATION UNDERLINE
========================================= */

.nav-item a::after {
    content: "";

    position: absolute;

    left: 0;
    bottom: 2px;

    width: 0;
    height: 2px;

    background-color: #fff;

    transition:
        width 0.3s ease;
}


.nav-item a:hover {
    color: #fff;
}


.nav-item a:hover::after {
    width: 100%;
}


/* Keyboard navigation gets underline too */

.nav-item a:focus-visible::after {
    width: 100%;
}


/* =========================================
   BURGER BUTTON
========================================= */

.menu-toggle {
    display: none;

    cursor: pointer;

    justify-self: end;

    padding: 8px;

    border: none;

    background: transparent;

    color: #fff;

    border-radius: 6px;
}


/* =========================================
   BURGER BARS
========================================= */

.menu-toggle .bar {
    display: block;

    width: 28px;
    height: 3px;

    margin: 5px auto;

    background-color: #fff;

    border-radius: 2px;

    transition:
        transform 0.3s ease,
        opacity 0.3s ease;
}


/* =========================================
   OPTIONAL OPEN BURGER ANIMATION
========================================= */

.menu-toggle[aria-expanded="true"] .bar:nth-child(1) {
    transform:
        translateY(8px)
        rotate(45deg);
}


.menu-toggle[aria-expanded="true"] .bar:nth-child(2) {
    opacity: 0;
}


.menu-toggle[aria-expanded="true"] .bar:nth-child(3) {
    transform:
        translateY(-8px)
        rotate(-45deg);
}


/* =========================================
   FOOTER
========================================= */

#footer {
    position: relative;

    width: 100%;

    background-color: #03273F;

    color: #fff;

    display: flex;

    flex-wrap: wrap;

    justify-content: space-between;

    align-items: flex-start;

    padding:
        40px
        50px
        25px;

    gap: 50px;

    z-index: 10;
}


/* =========================================
   FOOTER COLUMNS
========================================= */

.first-footer,
.second-footer,
.third-footer,
.forth-footer {
    display: flex;

    flex-direction: column;

    flex:
        1 1 200px;

    min-width: 200px;
}


/* =========================================
   FOOTER HEADINGS
========================================= */

.footer-heading {
    color: #fff;

    font-size: 1.3rem;

    line-height: 1.3;

    margin-bottom: 15px;
}


/* Backwards compatibility */

.first-footer h1,
.first-footer h2,
.first-footer h3,
.second-footer h1,
.second-footer h2,
.second-footer h3,
.third-footer h1,
.third-footer h2,
.third-footer h3,
.forth-footer h1,
.forth-footer h2,
.forth-footer h3 {
    color: #fff;

    font-size: 1.3rem;

    line-height: 1.3;

    margin-bottom: 12px;
}


/* =========================================
   FOLLOW TITLE
========================================= */

.follow-title {
    margin-top: 15px;
}


/* =========================================
   FOOTER LOGO
========================================= */

#logo-footer {
    height: 80px;
    width: 80px;

    max-width: 150px;

    margin-bottom: 15px;

    object-fit: contain;

    display: block;
}


/* =========================================
   FIRST FOOTER TEXT
========================================= */

.first-footer p {
    max-width: 320px;

    color: #fff;

    font-size: 1rem;

    line-height: 1.6;
}


/* =========================================
   FOOTER LINKS / TEXT
========================================= */

.second-footer-links {
    list-style: none;
}


.second-footer-links,
.third-footer p,
.forth-footer p {
    padding: 0;

    margin:
        0
        0
        8px
        0;
}


.second-footer-links li {
    margin-bottom: 8px;
}


/* =========================================
   FOOTER LINKS
========================================= */

.second-footer-links li a,
.third-footer p a,
.forth-footer p a,
.footer-address a {
    color: #fff;

    font-size: 1rem;

    text-decoration: none;

    transition:
        opacity 0.3s ease;

    position: relative;
}


/* =========================================
   FOOTER LINK UNDERLINE
========================================= */

.second-footer-links li a::after,
.third-footer p a::after,
.forth-footer p a::after,
.footer-address a::after {
    content: "";

    position: absolute;

    left: 0;
    bottom: -2px;

    width: 0;
    height: 2px;

    background-color: #fff;

    transition:
        width 0.3s ease;
}


.second-footer-links li a:hover::after,
.third-footer p a:hover::after,
.forth-footer p a:hover::after,
.footer-address a:hover::after,
.second-footer-links li a:focus-visible::after,
.third-footer p a:focus-visible::after,
.forth-footer p a:focus-visible::after,
.footer-address a:focus-visible::after {
    width: 100%;
}


/* =========================================
   FOOTER ADDRESS
========================================= */

.footer-address {
    font-style: normal;

    color: #fff;
}


/* =========================================
   SOCIAL CONTAINER
========================================= */

.footer-social {
    display: flex;

    flex-direction: row;

    align-items: center;

    flex-wrap: wrap;

    gap: 8px;
}


/* =========================================
   SOCIAL LINKS
========================================= */

.footer-social a {
    min-width: 44px;
    min-height: 44px;

    display: inline-flex;

    align-items: center;
    justify-content: center;

    border-radius: 8px;

    text-decoration: none;

    transition:
        background-color 0.25s ease,
        transform 0.25s ease;
}


.footer-social a:hover {
    background-color:
        rgba(255, 255, 255, 0.12);

    transform:
        translateY(-2px);
}


/* =========================================
   SOCIAL ICON IMAGES
========================================= */

#facebook,
#instagram,
#tiktok,
#threads {
    margin: 0;

    height: 30px;
    width: 30px;

    object-fit: contain;

    display: block;
}


/* =========================================
   COPYRIGHT BAR
========================================= */

#copyright {
    position: relative;

    width: 100%;

    background-color: #03273F;

    color: #fff;

    text-align: center;

    font-size: 0.9rem;

    padding:
        15px
        10px;

    margin-top: 0;
}


/* =========================================
   WHATSAPP BUTTON
========================================= */

.whatsapp-chat {
    position: fixed;

    bottom: 40px;
    right: 40px;

    z-index: 9999;

    width: 60px;
    height: 60px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    text-decoration: none;

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}


.whatsapp-chat img {
    width: 60px;
    height: 60px;

    display: block;

    border-radius: 50%;
}


.whatsapp-chat:hover {
    transform:
        scale(1.08);

    box-shadow:
        0 4px 12px
        rgba(0, 0, 0, 0.2);
}


/* =========================================
   TABLET / MOBILE ≤900px
========================================= */

@media (max-width: 900px) {

    /* =========================================
       NAVIGATION
    ========================================= */

    .nav-wrapper {
        min-height: 80px;
    }


    .navbar {
        position: relative;

        min-height: 80px;

        grid-template-columns:
            1fr auto;

        padding:
            10px
            20px;
    }


    /* =========================================
       MOBILE MENU BUTTON
    ========================================= */

    .menu-toggle {
        display: block;

        z-index: 1001;
    }


    /* =========================================
       MOBILE MENU
    ========================================= */

    .navbar ul {
        display: none;

        position: absolute;

        top: 100%;

        right: 0;
        left: 0;

        width: 100%;

        background-color: #03273F;

        flex-direction: column;

        align-items: center;

        gap: 10px;

        padding:
            20px
            0;

        z-index: 999;

        box-shadow:
            0 8px 14px
            rgba(0, 0, 0, 0.15);
    }


    /* JS active class */

    .navbar ul.show-menu {
        display: flex;
    }


    .nav-item a {
        font-size: 1.1rem;

        padding:
            8px
            0;
    }


    #logo {
        height: 55px;
        width: 55px;
    }


    /* =========================================
       FOOTER
    ========================================= */

    #footer {
        flex-direction: column;

        gap: 30px;

        padding:
            30px
            25px;
    }


    .first-footer,
    .second-footer,
    .third-footer,
    .forth-footer {
        flex:
            1 1 100%;

        width: 100%;

        min-width: 0;
    }


    /* =========================================
       WHATSAPP
    ========================================= */

    .whatsapp-chat {
        bottom: 30px;
        right: 25px;

        width: 55px;
        height: 55px;
    }


    .whatsapp-chat img {
        width: 55px;
        height: 55px;
    }

}


/* =========================================
   MOBILE ≤600px
========================================= */

@media (max-width: 600px) {

    /* =========================================
       NAVIGATION
    ========================================= */

    .nav-wrapper {
        min-height: 65px;
    }


    .navbar {
        min-height: 65px;

        grid-template-columns:
            1fr auto;

        padding:
            0
            15px;
    }


    #logo {
        height: 52px;
        width: 52px;
    }


    .menu-toggle .bar {
        width: 24px;
    }


    .navbar ul {
        top: 100%;
    }


    .nav-item a {
        font-size: 1rem;
    }


    /* =========================================
       FOOTER
    ========================================= */

    #footer {
        padding:
            30px
            20px;

        gap: 25px;
    }


    #logo-footer {
        height: 65px;
        width: 65px;

        margin-left: auto;
        margin-right: auto;
    }


    .first-footer,
    .second-footer,
    .third-footer,
    .forth-footer {
        text-align: center;

        align-items: center;
    }


    .first-footer p {
        max-width: 400px;
    }


    .second-footer-links li a,
    .third-footer p a,
    .forth-footer p a,
    .footer-address a {
        font-size: 0.95rem;
    }


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


    #facebook,
    #instagram,
    #tiktok,
    #threads {
        height: 24px;
        width: 24px;
    }


    #copyright {
        font-size: 0.85rem;

        padding:
            12px
            10px;
    }


    /* =========================================
       WHATSAPP
    ========================================= */

    .whatsapp-chat {
        bottom: 20px;
        right: 20px;

        width: 50px;
        height: 50px;
    }


    .whatsapp-chat img {
        width: 50px;
        height: 50px;
    }

}


/* =========================================
   VERY SMALL SCREENS ≤420px
========================================= */

@media (max-width: 420px) {

    /* =========================================
       NAVIGATION
    ========================================= */

    .nav-wrapper {
        min-height: 60px;
    }


    .navbar {
        min-height: 60px;

        padding:
            0
            12px;
    }


    #logo {
        height: 45px;
        width: 45px;
    }


    .navbar ul {
        top: 100%;
    }


    .nav-item a {
        font-size: 0.95rem;
    }


    /* =========================================
       FOOTER
    ========================================= */

    #footer {
        gap: 20px;

        padding:
            25px
            15px;
    }


    #logo-footer {
        height: 55px;
        width: 55px;
    }


    .footer-heading {
        font-size: 1.15rem;
    }


    .second-footer-links li a,
    .third-footer p a,
    .forth-footer p a,
    .footer-address a {
        font-size: 0.9rem;
    }


    #copyright {
        font-size: 0.8rem;
    }


    /* =========================================
       WHATSAPP
    ========================================= */

    .whatsapp-chat {
        bottom: 15px;
        right: 15px;

        width: 46px;
        height: 46px;
    }


    .whatsapp-chat img {
        width: 46px;
        height: 46px;
    }

}



/* =========================================
   REDUCED MOTION
========================================= */

@media (prefers-reduced-motion: reduce) {

    html {
        scroll-behavior: auto;
    }

    /*
       Do NOT globally disable animations here.

       Individual page styles can decide how
       their animations should behave.
    */

    .menu-toggle .bar,
    .nav-item a,
    .nav-item a::after,
    .footer-social a,
    .whatsapp-chat,
    .skip-link {
        transition-duration: 0.1s;
    }
}