<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">* {
    font-family: 'Alexandria', sans-serif;
}

body {
    margin: 0;
    padding: 0;
    background-color: white;
}


/* Navigation Bar Styles//////////////////////////////////////////////////////////// */
    nav {
        background-color: #0e86d4ff;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
        position: fixed;
        z-index: 999;
        height: 0px;
        transition: top 0.3s;
    }

    .top-bar {
        background-color: white;
        color: #0e86d4ff;
        align-items: center;
        text-align: center;
        width: 100%;
        padding: 1px;
        display: flex;
        justify-content: space-between;
    }

    .top-bar img {
        height: 50px;
        transition: transform 0.3s;
    }

    .top-bar img:hover {
        cursor: pointer;
        transform: scale(1.2);
    }

    .pages {
        display: flex;
        align-items: center;
        margin-left: auto;
    }

    .pages a {
        display: inline-block;
        color: #0e86d4ff;
        text-align: center;
        padding: 10px 16px;
        text-decoration: none;
    }

    .pages a:hover {
        background-color: #0e86d4ff;
        color: white;
    }

    .top-bar .pages a.active {
        color: #ff0000;
        text-decoration: underline;
    }

    /* Common styles for both dropdowns */
    .dropdown, .dropdown2 {
        display: none;
        position: fixed;
        background-color: white;
        box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
        z-index: 1;
        width: 120px;
        height: auto;
        border-radius: 5px;
    }

    /* Hover styles for links in both dropdowns */
    .dropdown a, .dropdown2 a {
        color: #3498db;
        padding: 10px 16px;
        text-decoration: none;
        display: block;
    }

    /* Hover styles for dropdown links */
    .dropdown a:hover, .dropdown2 a:hover {
        background-color: #3498db;
        color: white;
    }

    /* Hover styles for links in the navigation bar */
    .pages a:hover {
        background-color: #0e86d4ff;
        color: white;
    }

    /* Display dropdowns on hover */
    .about-dropdown:hover .dropdown,
    .products-dropdown:hover .dropdown2 {
        display: block;
    }

    .social-icons {
        display: flex;
        align-items: center;
        background-color: #0e86d4ff;
        color: white;
        padding: 0px;
        width: 100%;
        justify-content: space-between;
        height: 50px;
        transition: background-color 0.3s;
    }

    .social-icons img {
        width: 25px;
        height: 25px;
        margin-right: 2px;
        margin-left: 2px;
        transition: transform 0.3s;
    }

    .social-icons p {
        padding: 10px;
    }

    .social-icons img:hover {
        cursor: pointer;
        transform: scale(1.2);
    }

    /* Dropdown menu */
    .dropdown-menu {
            display: none;
            position: fixed;
            top: 90px;
            width: 100%;
            background-color: rgba(255, 255, 255, 0.9);
            z-index: 1000;
            text-align: center;
        }

        .dropdown-menu a {
            display: block;
            padding: 10px;
            color: white;
            text-decoration: none;
            background-color: #0e86d4ff;
            transition: background-color 0.3s;
        }

        /* Hover effect for dropdown menu items */
        .dropdown-menu a:hover {
            cursor: pointer;
            background-color: #2c3e50;
            color: #ff0000;
            transform: scale(1.2);
        }

        /* Style for the active or current page link */
        .dropdown-menu a.active {
            text-decoration: underline;
            color: #ff0000;
        }

        /* Toggle menu icon */
        .menu-toggle {
            display: flex;
            flex-direction: column;
            align-items: center;
            cursor: pointer;
            margin-top: 5px;
            position: absolute;
        }

        .menu-toggle:hover {
            cursor: pointer;
            transform: scale(1.2);
        }

        .menu-icon {
            width: 30px;
            height: 3px;
            background-color: #0e86d4ff;
            margin: 3px 10px;
            transition: transform 0.3s, opacity 0.3s;
        }

        .menu-icon:hover {
            cursor: pointer;
            transform: scale(1.2);
        }

        .menu-open .menu-icon {
            background-color: #ff0000;
            transition: transform 0.3s, opacity 0.3s;
        }

        .menu-open .menu-icon:nth-child(1) {
            transform: rotate(-45deg) translate(-6px, 6px);
        }

        .menu-open .menu-icon:nth-child(2) {
            opacity: 0;
        }

        .menu-open .menu-icon:nth-child(3) {
            transform: rotate(45deg) translate(-6px, -6px);
        }

    /* For screens smaller than 460px */
    @media (max-width: 460px) {
        .social-icons {
            flex-direction: column;
            align-items: center;
            height: 100px;
        }

        .social-icons img {
            width: 16px;
            height: 16px;
            margin-bottom: -20px;
        }

        .social-icons p {
            font-size: 8px;
            margin-top: -15px;
            margin-bottom: 0;
        }
    }
        
    /* For screens smaller than 600px */
    @media (max-width: 600px) {
        .social-icons img {
            width: 18px;
            height: 18px;
        }

        .social-icons p {
            font-size: 12px;
        }
    }

    /* For screens smaller than 768px */
    @media only screen and (max-width: 768px) {
        .top-bar {
            flex-direction: column;
            align-items: center;
        }

        .top-bar img {
            margin: 1px auto;
        }

        .pages {
            display: none;
        }

        .menu-toggle {
            align-self: flex-end;
            margin-top: 14px;
            margin-right: 10px;
            position: absolute;
        }

        .social-icons {
            height: 40px;
        }

        .social-icons img {
            width: 20px;
            height: 20px;
        }

        .social-icons p {
            padding: 5px;
            font-size: 12px;
            display: block;
            text-align: left;
        }

        .social-icons p:nth-child(2) {
            margin-top: 10px;
        }
    }

    @media only screen and (min-width: 769px) {
        .pages {
            display: flex;
            align-items: center;
            justify-content: flex-end;
        }

        .menu-icon{
            display: none;
        }
    }

    @media only screen and (min-width: 768px) and (max-width: 1023px) {
        .nav {
            height: auto;
        }

        .top-bar img {
            height: 50px;
        }

        .pages {
            display: flex;
        }

        .pages a {
            font-size: 14px;
            padding: 10px 16px;
        }

        .social-icons {
            height: 50px;
        }

        .social-icons img {
            width: 20px;
            height: 20px;
        }

        .social-icons p {
            padding: 12px;
            font-size: 14px;
        }

        .about-dropdown .dropdown,
        .products-dropdown .dropdown2 {
            top: 50px;
            width: 120px;
        }

        .menu-icon{
            display: none;
        }
    }
/* Navigation Bar Styles End /////////////////////////////////////////////////////// */


/* Footer Styles /////////////////////////////////////////////////////////////////// */
    footer {
        background-color: white;
        color: #0e86d4ff;
        padding-left: 10px;
        padding-right: 10px;
        display: flex;
        justify-content: space-around;
        border-top: 2px solid #0e86d4ff;
    }

    .footer-column {
        width: 30%;
        display: flex;
        justify-content: top;
        align-items: left;
        flex-direction: column;
    }

    .footer-column h4 {
        text-align: left;
        border-bottom: 2px solid #0e86d4ff;
        padding-bottom: 10px;
        margin-bottom: 10px;
    }

    .footer-column a {
        display: block;
        color: #0e86d4ff;
        text-decoration: none;
        margin-bottom: 8px;
        text-align: left;
        transition: text-decoration 0.3s;
    }

    .footer-column a:hover {
        text-decoration: underline;
        transform: scale(1.2);
        color: #ff0000;
    }

    .footer-links {
        background-color: white;
        color: #0e86d4ff;
        padding: 0px;
        display: flex;
        justify-content: space-around;
        flex-wrap: wrap;
        width: 100%;
        margin: 0 auto;
        max-width: 1200px;
    }

    .footer-links div {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
    }

    .footer-links a.active {
        color: #ff0000;
        text-decoration: underline;
    }

    .social-icons_footer {
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        padding: 1px;
        width: 100%;
    }

    .social-icons_footer img {
        width: 40px;
        height: 40px;
        margin: 0 8px;
        transition: transform 0.3s;
    }

    .social-icons_footer img:hover {
        transform: scale(1.2);
    }

    .contact-info {
        display: flex;
        align-items: center;
        align-content: center;
        justify-content: center;
        padding-top: 5px;
        padding-bottom: 5px;
    }

    .contact-info .label {
        display: flex;
        align-items: center;
        align-content: center;
        justify-content: center;
        padding-bottom: 8px;
        margin-right: 5px;
    }

    .contact-info a {
        color: #0e86d4ff;
        text-decoration: none;
        transition: color 0.3s, transform 0.3s, text-decoration 0.3s;
    }

    .contact-info a:hover {
        color: #ff0000;
        text-decoration: underline;
        transform: scale(1.2);
    }

    .map-container {
        position: relative;
        width: 100%;
        height: 160px;
        margin-bottom: 20px;
    }

    .map-container iframe {
        width: 100%;
        height: 100%;
        border: 2px solid #ccc;
        transition: border-color 0.3s;
    }

    .map-container:hover iframe {
        border-color: #0e86d4ff;
        border: 4px solid;
    }

    @media screen and (min-width: 769px) {
        .footer-container {
            flex-direction: row;
        }
    }

    @media screen and (max-width: 768px) {
        .footer-container {
            flex-direction: column;
            text-align: center;
        }

        .footer-column,
        .footer-column1,
        .footer-column_logo {
            width: 100%;
        }
    }

    .footer-bar {
        display: flex;
        align-items: center;
        justify-content: space-between;
        height: 80px;
        background-color: #0e86d4ff;
        color: white;
        padding: 0 10px;
    }

    .footer-bar img {
        max-width: 100%;
        height: 40px;
        transition: transform 0.3s;
    }

    .footer-bar p {
        margin: 0;
        padding: 10px;
    }

    /* Hover effect for the image */
    .footer-bar img:hover {
        transform: scale(1.2);
    }

    @media screen and (max-width: 768px) {
        .footer-bar {
            flex-direction: row;
            align-items: center;
            overflow-x: auto;
        }

        .footer-bar div {
            width: auto;
            height: auto;
            text-align: left;
        }

        .footer-bar img {
            max-width: 80px;
            height: 30px;
        }

        .footer-bar p {
            font-size: 14px;
            text-align: center;
        }
        .footer-column h4 {
            font-size: 16px;
        }
    }

    @media screen and (min-width: 769px) and (max-width: 1024px) {
            .footer-column h4 {
            font-size: 15px;
        }

        .footer-column p {
            font-size: 14px;
        }
    }
/* Footer End ////////////////////////////////////////////////////////////////////// */

/* Go back to top button Start ///////////////////////////////////////////////////// */
    #goTopBtn {
        display: none;
        position: fixed;
        bottom: 80px;
        right: 60px;
        z-index: 99;
        border: 4px solid black;
        border-radius: 20%;
        outline: none;
        background-color: transparent;
        cursor: pointer;
    }

    #goTopBtn svg {
        width: 30px;
        height: 30px;
        fill: whitesmoke;
        transition: fill 0.3s;
    }

    #goTopBtn:hover svg {
        fill: #00B0FF;
    }
/* Go back to top button End /////////////////////////////////////////////////////// */</pre></body></html>