   <style>
   
   

:root {
    --primary: #3861d8;
    --primary-dark: #294db8;
    --primary-light: #eef3ff;

    --indigo: #6266d9;
    --navy: #17213b;
    --navy-2: #202b4a;

    --text: #253149;
    --text-light: #667085;
    --text-muted: #8993a5;

    --white: #ffffff;
    --background: #f7f9fd;
    --section-light: #f3f6fc;

    --border: #e2e7f0;
    --border-light: #edf0f5;

    --green: #20a66a;

    --shadow-small:
        0 5px 20px rgba(30, 48, 90, .045);

    --shadow:
        0 12px 35px rgba(30, 48, 90, .075);

    --shadow-large:
        0 20px 55px rgba(30, 48, 90, .11);
}


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

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, Helvetica, sans-serif;

    background: var(--background);

    color: var(--text);

    line-height: 1.6;

    -webkit-font-smoothing: antialiased;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    width: 92%;
    max-width: 1200px;
    margin: auto;
}


/* =========================================================
   TOP BAR
========================================================= */

.top-bar {

    background:
        linear-gradient(
            100deg,
            #17213b,
            #26345b
        );

    color: #dce3f2;

    font-size: 13px;
}

.top-bar-inner {

    min-height: 38px;

    display: flex;

    justify-content: space-between;

    align-items: center;

    gap: 20px;
}

.top-bar a {
    color: #eef2fa;

    transition: .2s;
}

.top-bar a:hover {
    color: #ffffff;
}

.top-right {

    display: flex;

    gap: 22px;
}


/* =========================================================
   HEADER
========================================================= */

header {

    background:
        rgba(255,255,255,.97);

    border-bottom:
        1px solid
        var(--border);

    position: sticky;

    top: 0;

    z-index: 999;

    box-shadow:
        0 4px 20px
        rgba(30,48,90,.035);

    backdrop-filter:
        blur(12px);
}

.header-inner {

    height: 82px;

    display: flex;

    align-items: center;

    justify-content: space-between;
}


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

.logo {

    display: flex;

    align-items: center;

    gap: 12px;
}

.logo img {

    width: 55px;

    height: 55px;

    object-fit: contain;
}

.logo-text {

    line-height: 1.05;
}

.logo-text strong {

    font-size: 25px;

    letter-spacing: -1px;

    color: var(--navy);
}

.logo-text span {

    display: block;

    color: #7b8598;

    font-size: 10px;

    letter-spacing: 3px;

    margin-top: 5px;
}


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

nav {

    display: flex;

    align-items: center;

    gap: 28px;
}

nav a {

    font-size: 14px;

    font-weight: 600;

    color: #59657a;

    transition: .25s;
}

nav a:hover {

    color: var(--primary);
}

.nav-contact {

    background:
        linear-gradient(
            135deg,
            var(--primary),
            var(--indigo)
        );

    color: #fff !important;

    padding: 11px 19px;

    border-radius: 7px;

    box-shadow:
        0 7px 18px
        rgba(56,97,216,.18);

    transition: .25s;
}

.nav-contact:hover {

    transform: translateY(-2px);

    box-shadow:
        0 10px 24px
        rgba(56,97,216,.25);
}


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

.menu-button {
    display: none;

    width: 44px;
    height: 44px;

    padding: 0;
    border: 0;
    outline: 0;

    border-radius: 8px;

    background: linear-gradient(135deg, #3861d8, #6266d9);

    cursor: pointer;

    position: relative;
}


/* Three clean hamburger lines */

.hamburger-lines,
.hamburger-lines::before,
.hamburger-lines::after {

    content: "";

    position: absolute;

    width: 21px;
    height: 2px;

    background: #ffffff;

    border-radius: 2px;

    left: 50%;

    transform: translateX(-50%);
}

.hamburger-lines {
    top: 21px;
}

.hamburger-lines::before {
    top: -7px;
}

.hamburger-lines::after {
    top: 7px;
}


/* Mobile */

@media(max-width: 800px) {

    .menu-button {
        display: block;
    }

}
/* =========================================================
   HERO
========================================================= */

/* =========================================================
   Z DEVELOPER - PROFESSIONAL HERO
========================================================= */

.hero {
    position: relative;
    overflow: hidden;

    min-height: 570px;

    display: flex;
    align-items: center;

    color: #ffffff;

    background:
        radial-gradient(
            circle at 88% 18%,
            rgba(76, 145, 220, 0.18),
            transparent 30%
        ),
        radial-gradient(
            circle at 8% 90%,
            rgba(56, 126, 195, 0.12),
            transparent 32%
        ),
        linear-gradient(
            120deg,
            #102746 0%,
            #17365d 50%,
            #1d4774 100%
        );
}


/* subtle background glow */

.hero::before {
    content: "";
    position: absolute;

    width: 500px;
    height: 500px;

    right: -220px;
    top: -250px;

    border-radius: 50%;

    background: rgba(130, 190, 240, 0.08);

    pointer-events: none;
}


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

.hero-content {
    position: relative;
    z-index: 2;

    max-width: 780px;

    padding: 85px 0;
}


/* =========================================================
   SMALL LABEL
========================================================= */

.hero-small {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    padding: 8px 15px;

    background: rgba(255, 255, 255, 0.07);

    border: 1px solid rgba(255, 255, 255, 0.18);

    border-radius: 30px;

    color: #dbeafe;

    font-family: Calibri, Arial, sans-serif;

    font-size: 13px;

    font-weight: 600;

    letter-spacing: 1px;

    margin-bottom: 22px;
}

.hero-small i {
    color: #7db7eb;

    font-size: 13px;
}


/* =========================================================
   HEADING
========================================================= */

.hero h1 {
    font-family: Calibri, Arial, sans-serif;

    font-size: clamp(44px, 6vw, 72px);

    line-height: 1.04;

    letter-spacing: -1.8px;

    font-weight: 700;

    color: #ffffff;

    max-width: 780px;

    margin-bottom: 24px;
}


.hero h1 span {
    display: block;

    color: #bcd8f2;
}


/* =========================================================
   DESCRIPTION
========================================================= */

.hero p {
    max-width: 700px;

    font-family: Calibri, Arial, sans-serif;

    font-size: 19px;

    line-height: 1.65;

    color: #d9e5f1;

    margin-bottom: 34px;
}


/* =========================================================
   BUTTONS
========================================================= */

.hero-buttons {
    display: flex;

    gap: 14px;

    flex-wrap: wrap;
}


.hero-buttons .btn {
    display: inline-flex;

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

    gap: 8px;

    padding: 14px 23px;

    border-radius: 7px;

    font-family: Calibri, Arial, sans-serif;

    font-size: 16px;

    font-weight: 600;

    transition: all .25s ease;
}


.hero-buttons .btn:hover {
    transform: translateY(-2px);
}


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

@media(max-width:800px) {

    .hero {
        min-height: 520px;
    }

    .hero-content {
        padding: 70px 0;
    }

    .hero h1 {
        font-size: clamp(40px, 10vw, 55px);

        letter-spacing: -1px;
    }

    .hero p {
        font-size: 17px;
    }
}


@media(max-width:550px) {

    .hero {
        min-height: 500px;
    }

    .hero-content {
        padding: 60px 0;
    }

    .hero-small {
        font-size: 11px;

        padding: 7px 12px;
    }

    .hero h1 {
        font-size: 41px;
    }

    .hero p {
        font-size: 16px;

        line-height: 1.55;
    }

    .hero-buttons {
        width: 100%;

        flex-direction: column;
    }

    .hero-buttons .btn {
        width: 100%;
    }

}
.btn {

    display: inline-block;

    padding: 14px 24px;

    border-radius: 7px;

    font-weight: bold;

    transition: .25s;
}

.btn:hover {

    transform:
        translateY(-2px);
}

.btn-dark {

    background:
        linear-gradient(
            135deg,
            #ffffff,
            #eef2ff
        );

    color:
        var(--primary);

    box-shadow:
        0 8px 22px
        rgba(0,0,0,.15);
}

.btn-dark:hover {

    background: #ffffff;
}

.btn-outline {

    border:
        1px solid
        rgba(255,255,255,.35);

    color: white;

    background:
        rgba(255,255,255,.04);
}

.btn-outline:hover {

    background:
        rgba(255,255,255,.12);

    border-color:
        rgba(255,255,255,.55);
}


/* =========================================================
   COMPANY INTRO
========================================================= */

.intro {

    padding: 75px 0;

    background:
        #ffffff;
}

.intro-grid {

    display: grid;

    grid-template-columns:
        1.2fr .8fr;

    gap: 60px;

    align-items: center;
}

.section-label {

    font-size: 11px;

    text-transform: uppercase;

    letter-spacing: 3px;

    font-weight: bold;

    color:
        var(--primary);

    margin-bottom: 12px;
}

.intro h2,
.section-heading h2 {

    font-size:
        clamp(30px, 4vw, 45px);

    line-height: 1.15;

    margin-bottom: 20px;

    letter-spacing: -1.2px;

    color: var(--navy);
}

.intro p {

    color: var(--text-light);

    font-size: 17px;

    margin-bottom: 18px;
}


/* =========================================================
   FOUNDER BOX
========================================================= */

.founder-box {

    position: relative;

    border:
        1px solid
        #dfe5f1;

    padding: 30px;

    border-radius: 12px;

    background:

        linear-gradient(
            135deg,
            #f0f4ff,
            #f7f8fc
        );

    box-shadow:
        var(--shadow-small);

    overflow: hidden;
}

.founder-box:after {

    content: "";

    position: absolute;

    width: 150px;

    height: 150px;

    right: -80px;

    bottom: -80px;

    border-radius: 50%;

    background:
        rgba(98,102,217,.08);
}

.founder-box h3 {

    position: relative;

    z-index: 2;

    font-size: 25px;

    color: var(--navy);

    margin-bottom: 8px;
}

.founder-box .role {

    position: relative;

    z-index: 2;

    color: var(--primary);

    font-size: 14px;

    font-weight: 600;

    margin-bottom: 18px;
}

.founder-box p {

    position: relative;

    z-index: 2;

    font-size: 15px;

    color: var(--text-light);
}


/* =========================================================
   SPECIALITIES
========================================================= */

.specialities {

    background:
        linear-gradient(
            180deg,
            #f3f6fc,
            #f8faff
        );

    padding: 80px 0;
}

.section-heading {

    max-width: 750px;

    margin-bottom: 42px;
}

.section-heading p {

    color: var(--text-light);

    font-size: 16px;
}

.speciality-grid {

    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 18px;
}

.speciality {

    position: relative;

    background:
        #ffffff;

    border:
        1px solid
        var(--border);

    padding: 28px 22px;

    border-radius: 10px;

    transition: .3s;

    overflow: hidden;

    box-shadow:
        0 5px 20px
        rgba(30,48,90,.035);
}

.speciality:before {

    content: "";

    position: absolute;

    top: 0;

    left: 0;

    width: 100%;

    height: 3px;

    background:
        linear-gradient(
            90deg,
            var(--primary),
            var(--indigo)
        );
}

.speciality:hover {

    transform:
        translateY(-6px);

    border-color:
        #ced8ef;

    box-shadow:
        var(--shadow);
}

.speciality-number {

    width: 40px;

    height: 40px;

    display: flex;

    align-items: center;

    justify-content: center;

    font-size: 12px;

    color:
        var(--primary);

    background:
        var(--primary-light);

    border-radius: 9px;

    margin-bottom: 20px;

    font-weight: 800;
}

.speciality h3 {

    font-size: 20px;

    margin-bottom: 10px;

    color: var(--navy);
}

.speciality p {

    color: var(--text-light);

    font-size: 14px;
}


/* =========================================================
   PRODUCTS
========================================================= */

.products {

    padding: 85px 0;

    background:
        #ffffff;
}

.product {

    display: grid;

    grid-template-columns:
        1fr 1fr;

    gap: 55px;

    align-items: center;

    padding: 55px 0;

    border-bottom:
        1px solid
        var(--border);
}

.product:last-child {

    border-bottom: none;
}

.product:nth-child(even)
.product-image {

    order: 2;
}

.product-image {

    background:
        linear-gradient(
            135deg,
            #edf2ff,
            #f5f6fc
        );

    border:
        1px solid
        #dfe5f1;

    border-radius: 12px;

    overflow: hidden;

    padding: 8px;

    box-shadow:
        var(--shadow-small);
}

.product-image img {

    width: 100%;

    aspect-ratio: 16/10;

    object-fit: cover;

    border-radius: 7px;
}

.product-tag {

    font-size: 11px;

    letter-spacing: 2px;

    color:
        var(--primary);

    text-transform: uppercase;

    margin-bottom: 10px;

    font-weight: bold;
}

.product h3 {

    font-size: 32px;

    margin-bottom: 15px;

    color: var(--navy);

    letter-spacing: -.8px;
}

.product-description {

    color: var(--text-light);

    font-size: 16px;

    margin-bottom: 20px;
}

.features {

    display: flex;

    flex-wrap: wrap;

    gap: 8px;

    margin-bottom: 25px;
}

.feature {

    background:
        var(--primary-light);

    border:
        1px solid
        #dce5fc;

    border-radius: 30px;

    padding: 7px 12px;

    font-size: 12px;

    color:
        #42568f;
}

.product-links {

    display: flex;

    gap: 10px;

    flex-wrap: wrap;
}

.product-btn {

    display: inline-block;

    background:
        linear-gradient(
            135deg,
            var(--primary),
            var(--indigo)
        );

    color: white;

    padding: 11px 18px;

    border-radius: 7px;

    font-size: 14px;

    font-weight: bold;

    box-shadow:
        0 7px 17px
        rgba(56,97,216,.15);

    transition: .25s;
}

.product-btn:hover {

    transform:
        translateY(-2px);

    box-shadow:
        0 10px 22px
        rgba(56,97,216,.23);
}

.product-btn.secondary {

    background:
        #f1f4f9;

    color:
        #3d4960;

    box-shadow: none;
}


/* =========================================================
   VIDEOS
========================================================= */

.videos {

    background:
        linear-gradient(
            180deg,
            #f3f6fc,
            #f8faff
        );

    padding: 80px 0;
}

.video-grid {

    display: grid;

    grid-template-columns:
        repeat(2, 1fr);

    gap: 25px;
}

.video-card {

    background:
        #ffffff;

    border:
        1px solid
        var(--border);

    border-radius: 12px;

    overflow: hidden;

    box-shadow:
        var(--shadow-small);

    transition: .3s;
}

.video-card:hover {

    transform:
        translateY(-5px);

    box-shadow:
        var(--shadow);
}

.video-frame {

    width: 100%;

    aspect-ratio: 16/9;

    border: 0;

    display: block;
}

.video-info {

    padding: 20px;
}

.video-info h3 {

    font-size: 19px;

    margin-bottom: 5px;

    color: var(--navy);
}

.video-info p {

    color: var(--text-light);

    font-size: 14px;
}


/* =========================================================
   CLIENTS
========================================================= */

.clients {

    padding: 85px 0;

    background:
        #ffffff;
}

.client-grid {

    display: grid;

    grid-template-columns:
        repeat(5, 1fr);

    gap: 15px;
}

.client {

    min-height: 110px;

    border:
        1px solid
        var(--border);

    border-radius: 10px;

    display: flex;

    justify-content: center;

    align-items: center;

    text-align: center;

    padding: 15px;

    background:
        #ffffff;

    transition: .25s;

    box-shadow:
        0 4px 15px
        rgba(30,48,90,.025);
}

.client:hover {

    border-color:
        #cdd7ec;

    box-shadow:
        var(--shadow-small);

    transform:
        translateY(-3px);
}

.client img {

    max-width: 130px;

    max-height: 60px;

    object-fit: contain;
}

.client span {

    font-weight: bold;

    color: #566176;
}


/* =========================================================
   SERVICES
========================================================= */

.services {

    background:
        linear-gradient(
            135deg,
            #17213b,
            #27345a
        );

    color: white;

    padding: 85px 0;

    position: relative;

    overflow: hidden;
}

.services:after {

    content: "";

    position: absolute;

    width: 500px;

    height: 500px;

    right: -280px;

    top: -280px;

    border-radius: 50%;

    border:
        90px solid
        rgba(117,133,220,.07);

    pointer-events: none;
}

.services .section-label {

    color:
        #aab8ee;
}

.services .section-heading p {

    color:
        #bcc5d8;
}

.services .section-heading h2 {

    color: white;
}

.service-grid {

    position: relative;

    z-index: 2;

    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 20px;
}

.service {

    border:
        1px solid
        rgba(255,255,255,.10);

    background:
        rgba(255,255,255,.045);

    padding: 30px;

    border-radius: 11px;

    transition: .3s;
}

.service:hover {

    background:
        rgba(255,255,255,.075);

    border-color:
        rgba(164,178,238,.28);

    transform:
        translateY(-5px);
}

.service h3 {

    font-size: 20px;

    margin-bottom: 10px;

    color: white;
}

.service p {

    color:
        #b8c2d5;

    font-size: 14px;
}


/* =========================================================
   ABOUT
========================================================= */

.about {

    padding: 85px 0;

    background:
        #ffffff;
}

.about-grid {

    display: grid;

    grid-template-columns:
        .8fr 1.2fr;

    gap: 60px;

    align-items: center;
}

.about-box {

    background:
        linear-gradient(
            135deg,
            #edf2ff,
            #f7f8fc
        );

    border-left:
        5px solid
        var(--primary);

    padding: 35px;

    border-radius: 0 12px 12px 0;

    border-top:
        1px solid
        #e0e6f3;

    border-right:
        1px solid
        #e0e6f3;

    border-bottom:
        1px solid
        #e0e6f3;
}

.about-box h3 {

    font-size: 28px;

    margin-bottom: 10px;

    color:
        var(--navy);
}

.about-box p {

    color:
        var(--text-light);
}

.about-text p {

    color:
        var(--text-light);

    margin-bottom: 15px;
}

.about-points {

    margin-top: 20px;
}

.about-point {

    padding: 12px 0;

    border-bottom:
        1px solid
        var(--border);

    font-weight: 600;

    color:
        #445069;
}


/* =========================================================
   CONTACT CTA
========================================================= */

.contact-cta {

    background:
        linear-gradient(
            135deg,
            #eef3ff,
            #f7f9fd
        );

    padding: 70px 0;

    border-top:
        1px solid
        var(--border);
}

.cta-box {

    display: flex;

    justify-content: space-between;

    align-items: center;

    gap: 30px;
}

.cta-box h2 {

    font-size: 35px;

    margin-bottom: 8px;

    color:
        var(--navy);
}

.cta-box p {

    color:
        var(--text-light);
}

.cta-buttons {

    display: flex;

    gap: 10px;

    flex-wrap: wrap;
}

.cta-button {

    background:
        linear-gradient(
            135deg,
            var(--primary),
            var(--indigo)
        );

    color: white;

    padding: 14px 22px;

    border-radius: 7px;

    font-weight: bold;

    box-shadow:
        0 8px 20px
        rgba(56,97,216,.18);

    transition: .25s;
}

.cta-button:hover {

    transform:
        translateY(-2px);
}

.cta-button.light {

    background:
        #ffffff;

    color:
        var(--primary);

    border:
        1px solid
        #d5dcea;

    box-shadow: none;
}


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

footer {

    background:
        linear-gradient(
            135deg,
            #111a30,
            #1c2948
        );

    color: white;

    padding: 60px 0 25px;
}

.footer-grid {

    display: grid;

    grid-template-columns:
        1.5fr 1fr 1fr 1fr;

    gap: 40px;

    padding-bottom: 45px;
}

.footer-brand h2 {

    font-size: 28px;

    margin-bottom: 10px;

    color: white;
}

.footer-brand p {

    color:
        #9ba7bd;

    max-width: 350px;

    font-size: 14px;
}

footer h4 {

    margin-bottom: 15px;

    font-size: 15px;

    color: white;
}

footer ul {

    list-style: none;
}

footer li {

    margin-bottom: 9px;
}

footer li a {

    color:
        #9ba7bd;

    font-size: 14px;

    transition: .2s;
}

footer li a:hover {

    color:
        #dce5ff;
}

.footer-bottom {

    border-top:
        1px solid
        rgba(255,255,255,.09);

    padding-top: 20px;

    display: flex;

    justify-content: space-between;

    gap: 20px;

    color:
        #74819a;

    font-size: 13px;
}


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

.whatsapp {

    position: fixed;

    right: 20px;

    bottom: 20px;

    width: 55px;

    height: 55px;

    background:
        linear-gradient(
            135deg,
            #20b36d,
            #15965b
        );

    color: white;

    border-radius: 50%;

    display: flex;

    align-items: center;

    justify-content: center;

    font-size: 23px;

    font-weight: bold;

    box-shadow:
        0 7px 22px
        rgba(21,150,91,.22);

    z-index: 1000;

    transition: .25s;
}

.whatsapp:hover {

    transform:
        scale(1.08);
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media(max-width: 1000px) {

    .speciality-grid {

        grid-template-columns:
            repeat(2, 1fr);
    }

    .client-grid {

        grid-template-columns:
            repeat(3, 1fr);
    }

    .footer-grid {

        grid-template-columns:
            repeat(2, 1fr);
    }

    .product {

        gap: 30px;
    }
}


@media(max-width: 800px) {

    .top-right {

        display: none;
    }

    .top-bar-inner {

        justify-content: center;
    }

    .header-inner {

        height: 70px;
    }

    .menu-button {

        display: block;
    }

    nav {

        position: absolute;

        left: 0;

        right: 0;

        top: 70px;

        background:
            #ffffff;

        display: none;

        flex-direction: column;

        align-items: stretch;

        gap: 0;

        border-bottom:
            1px solid
            var(--border);

        box-shadow:
            0 12px 25px
            rgba(30,48,90,.08);
    }

    nav.active {

        display: flex;
    }

    nav a {

        padding: 15px 5%;

        border-bottom:
            1px solid
            #edf0f5;
    }

    .nav-contact {

        margin: 10px 5%;

        text-align: center;
    }

    .hero {

        min-height: 500px;
    }

    .intro-grid,
    .about-grid {

        grid-template-columns: 1fr;
    }

    .product {

        grid-template-columns: 1fr;
    }

    .product:nth-child(even)
    .product-image {

        order: initial;
    }

    .video-grid {

        grid-template-columns: 1fr;
    }

    .service-grid {

        grid-template-columns:
            1fr 1fr;
    }

    .cta-box {

        flex-direction: column;

        align-items: flex-start;
    }
}


@media(max-width: 550px) {

    .container {

        width: 90%;
    }

    .logo img {

        width: 45px;

        height: 45px;
    }

    .logo-text strong {

        font-size: 21px;
    }

    .hero h1 {

        font-size: 42px;

        letter-spacing: -1.5px;
    }

    .hero p {

        font-size: 16px;
    }

    .speciality-grid,
    .service-grid,
    .client-grid,
    .footer-grid {

        grid-template-columns: 1fr;
    }

    .product h3 {

        font-size: 27px;
    }

    .footer-bottom {

        flex-direction: column;
    }

    .cta-box h2 {

        font-size: 28px;
    }
}


/* =========================
   MENU HOVER EFFECT
========================= */

#mainNav a {
    transition: all 0.25s ease !important;
}

/* Desktop + mouse devices */
@media (hover: hover) {

    #mainNav a:hover {
        background: #f3f6ff !important;
        color: #3861d8 !important;
        border-radius: 8px;
        transform: translateX(3px);
    }

    #mainNav a:hover span {
        color: #3861d8 !important;
    }

    #mainNav a:hover i {
        transform: scale(1.15);
    }

    /* WhatsApp stays green */
    #mainNav a[href*="wa.me"]:hover {
        background: linear-gradient(
            135deg,
            #25D366,
            #20b85c
        ) !important;

        color: #ffffff !important;

        transform: translateY(-1px);
    }

    #mainNav a[href*="wa.me"]:hover span,
    #mainNav a[href*="wa.me"]:hover i {
        color: #ffffff !important;
    }

}


/* Mobile menu */
@media (max-width: 800px) {

    #mainNav a {
        width: calc(100% - 20px);
        margin: 2px 10px;
    }

    #mainNav a:hover {
        padding-left: 18px !important;
    }

}

</style>