/* ============================================
   PREMIUM HEADER - BLACK & BLUE
   ============================================ */

/* ---------- HEADER WRAPPER ---------- */
.custom-header-wrapper {
    position: relative;
    z-index: 999;
    background: #ffffff;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

.custom-header-wrapper.header-scrolled {
    box-shadow: 0 4px 40px rgba(0, 0, 0, 0.1);
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
}

/* ---------- CONTAINER FLUID WITH PADDING ---------- */
.container-fluid {
    padding-left: 60px !important;
    padding-right: 60px !important;
    width: 100%;
    margin: 0 auto;
}

/* ---------- TOP BAR ---------- */
.custom-topbar {
    background: #000000;
    padding: 8px 0;
    border-bottom: 2px solid #00aeef;
}

.custom-topbar-inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}

.custom-topbar-left {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 25px;
}

.custom-topbar-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 13px;
    transition: all 0.3s ease;
}

.custom-topbar-item:hover {
    color: #00aeef;
    transform: translateY(-1px);
}

.custom-topbar-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    background: rgba(0, 174, 239, 0.12);
    border-radius: 50%;
    color: #00aeef;
    font-size: 12px;
    transition: all 0.3s ease;
}

.custom-topbar-item:hover .custom-topbar-icon {
    background: #00aeef;
    color: #000000;
    transform: rotate(360deg) scale(1.1);
    box-shadow: 0 0 25px rgba(0, 174, 239, 0.3);
}

.custom-topbar-item a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.custom-topbar-item a:hover {
    color: #00aeef;
}

/* Social Icons */
.custom-social-icons {
    display: flex;
    gap: 6px;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    color: rgba(255, 255, 255, 0.6);
    font-size: 13px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.social-icon:hover {
    background: #00aeef;
    color: #000000;
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 8px 25px rgba(0, 174, 239, 0.3);
    border-color: #00aeef;
}

/* ---------- MAIN HEADER ---------- */
.custom-main-header {
    background: #ffffff;
    padding: 12px 0;
    position: relative;
}

.custom-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 70px;
}

/* ---------- LOGO ---------- */
.footer-logo .custom-logo {
    flex-shrink: 0;
    z-index: 1001;
    padding: 15px;
    background-color: #fff;
	width:200px;
	height:90px;
}

.custom-logo img {
    max-height: 50px;
    width: auto;
    transition: all 0.3s ease;
}

.custom-logo-text {
    display: flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
}

.logo-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: #000000;
    border-radius: 12px;
    color: #00aeef;
    font-size: 22px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid #00aeef;
    animation: pulseIcon 3s ease-in-out infinite;
}

@keyframes pulseIcon {
    0%, 100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(0, 174, 239, 0.3); }
    50% { transform: scale(1.05); box-shadow: 0 0 30px rgba(0, 174, 239, 0.2); }
}

.custom-logo-text:hover .logo-icon {
    transform: rotate(-10deg) scale(1.1);
    box-shadow: 0 8px 30px rgba(0, 174, 239, 0.3);
}

.logo-text-wrap {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.logo-main {
    font-size: 26px;
    font-weight: 700;
    color: #000000;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
}

.custom-logo-text:hover .logo-main {
    color: #00aeef;
}

.logo-sub {
    font-size: 10px;
    font-weight: 400;
    color: #00aeef;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-top: 2px;
    position: relative;
}

.logo-sub::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 35px;
    height: 2px;
    background: #00aeef;
}

/* ---------- DESKTOP NAVIGATION ---------- */
.custom-nav-desktop {
    flex: 1;
    display: flex;
    justify-content: center;
    margin: 0 30px;
}

.custom-nav-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 2px;
}

.custom-nav-menu > li {
    position: relative;
    margin: 0;
}

.custom-nav-menu > li > a {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 10px 20px;
    color: #000000;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    letter-spacing: 0.3px;
}

.custom-nav-menu > li > a::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 8px;
    background: rgba(0, 174, 239, 0.06);
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.custom-nav-menu > li > a:hover::before,
.custom-nav-menu > li.current-menu-item > a::before,
.custom-nav-menu > li.current-page-item > a::before {
    opacity: 1;
    transform: scale(1);
}

.custom-nav-menu > li > a:hover,
.custom-nav-menu > li.current-menu-item > a,
.custom-nav-menu > li.current-page-item > a {
    color: #00aeef;
}

.custom-nav-menu > li > a::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: #00aeef;
    border-radius: 2px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.custom-nav-menu > li > a:hover::after,
.custom-nav-menu > li.current-menu-item > a::after,
.custom-nav-menu > li.current-page-item > a::after {
    width: 50%;
}

/* ---------- DROPDOWN ---------- */
.custom-nav-menu li ul {
    position: absolute;
    top: calc(100% + 10px);
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    min-width: 220px;
    background: #ffffff;
    padding: 8px 0;
    margin: 0;
    list-style: none;
    border-radius: 12px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
    opacity: 0;
    visibility: hidden;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
    border: 1px solid rgba(0, 0, 0, 0.06);
}

.custom-nav-menu li:hover > ul {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.custom-nav-menu li ul::before {
    content: '';
    position: absolute;
    top: -6px;
    left: 50%;
    transform: translateX(-50%) rotate(45deg);
    width: 12px;
    height: 12px;
    background: #ffffff;
    border-left: 1px solid rgba(0, 0, 0, 0.06);
    border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.custom-nav-menu li ul li a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 22px;
    color: #000000;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
}

.custom-nav-menu li ul li a::before {
    content: '›';
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s ease;
    color: #00aeef;
    font-size: 18px;
}

.custom-nav-menu li ul li a:hover {
    color: #00aeef;
    padding-left: 28px;
    background: rgba(0, 174, 239, 0.04);
}

.custom-nav-menu li ul li a:hover::before {
    opacity: 1;
    transform: translateX(0);
}

.custom-nav-menu li ul li ul {
    top: -8px;
    left: calc(100% + 10px);
}

/* ---------- CTA BUTTON ---------- */
.custom-header-cta {
    flex-shrink: 0;
    z-index: 1001;
}

.button-borders {
    position: relative;
    width: fit-content;
    height: fit-content;
}

.button-borders:before {
    content: "";
    position: absolute;
    width: calc(100% + 0.5em);
    height: 50%;
    left: -0.3em;
    top: -0.3em;
    border: 1px solid #0E1822;
    border-bottom: 0px;
    transition: all 0.3s ease;
}

.button-borders:after {
    content: "";
    position: absolute;
    width: calc(100% + 0.5em);
    height: 50%;
    left: -0.3em;
    bottom: -0.3em;
    border: 1px solid #0E1822;
    border-top: 0px;
    z-index: 0;
    transition: all 0.3s ease;
}

.button-borders:hover:before {
    border-color: #00aeef;
    transform: scaleX(1.05);
}

.button-borders:hover:after {
    border-color: #00aeef;
    transform: scaleX(1.05);
}

.primary-button {
    color: white;
    cursor: pointer;
    font-size: 13px;
    font-weight: bold;
    letter-spacing: 0.05rem;
    border: 1px solid #0E1822;
    padding: 0.8rem 2.1rem;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 531.28 200'%3E%3Cdefs%3E%3Cstyle%3E .shape %7B fill: %230E1822 %7D %3C/style%3E%3C/defs%3E%3Cg id='Layer_2' data-name='Layer 2'%3E%3Cg id='Layer_1-2' data-name='Layer 1'%3E%3Cpolygon class='shape' points='415.81 200 0 200 115.47 0 531.28 0 415.81 200' /%3E%3C/g%3E%3C/g%3E%3C/svg%3E%0A");
    background-color: #0E1822;
    background-size: 200%;
    background-position: 200%;
    background-repeat: no-repeat;
    transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transition-property: background-position, border, color, transform, box-shadow;
    position: relative;
    z-index: 1;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.primary-button i {
    font-size: 14px;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.primary-button:hover {
    border: 1px solid #00aeef;
    color: white;
    background-position: 40%;
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 40px rgba(0, 174, 239, 0.3);
}

.primary-button:hover i {
    transform: rotate(20deg) scale(1.1);
}

.primary-button::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent 30%,
        rgba(0, 174, 239, 0.08) 50%,
        transparent 70%
    );
    transform: rotate(45deg) translateX(-100%);
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: -1;
}

.primary-button:hover::after {
    transform: rotate(45deg) translateX(100%);
}

.primary-button:before {
    content: "";
    position: absolute;
    background-color: #0E1822;
    width: 0.2rem;
    height: 0.2rem;
    top: -1px;
    left: -1px;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.primary-button:hover:before {
    background-color: #00aeef;
    transform: scale(2);
}

.primary-button:after {
    content: "";
    position: absolute;
    background-color: #00aeef;
    width: 0.3rem;
    height: 0.3rem;
    bottom: -1px;
    right: -1px;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.primary-button:hover:after {
    background-color: #00aeef;
    transform: scale(2);
}

@keyframes btnPulse {
    0% { box-shadow: 0 0 0 0 rgba(0, 174, 239, 0.4); }
    100% { box-shadow: 0 0 0 20px rgba(0, 174, 239, 0); }
}

.primary-button:hover {
    animation: btnPulse 0.8s ease-out;
}

/* ---------- HAMBURGER ---------- */
.custom-hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    padding: 8px;
    cursor: pointer;
    z-index: 1001;
}

.hamburger-line {
    display: block;
    width: 28px;
    height: 3px;
    background: #000000;
    border-radius: 2px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.custom-hamburger:hover .hamburger-line {
    background: #00aeef;
}

.custom-hamburger.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
    background: #00aeef;
}

.custom-hamburger.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.custom-hamburger.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
    background: #00aeef;
}

/* ============================================
   MOBILE FLYOUT MENU
   ============================================ */
.custom-mobile-flyout {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    pointer-events: none;
    visibility: hidden;
}

.custom-mobile-flyout.active {
    pointer-events: all;
    visibility: visible;
}

.flyout-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.custom-mobile-flyout.active .flyout-overlay {
    opacity: 1;
}

.flyout-content {
    position: absolute;
    top: 0;
    left: -100%;
    width: 85%;
    max-width: 380px;
    height: 100%;
    background: #ffffff;
    padding: 30px 25px 40px;
    overflow-y: auto;
    transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    box-shadow: 0 0 60px rgba(0, 0, 0, 0.2);
}

.custom-mobile-flyout.active .flyout-content {
    left: 0;
}

/* Flyout Logo */
.flyout-logo {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 20px;
    border-bottom: 2px solid #00aeef;
    margin-bottom: 25px;
}

.flyout-logo-brand {
    flex-shrink: 0;
}

.flyout-logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.flyout-logo-link img {
    max-height: 45px;
    width: auto;
    transition: all 0.3s ease;
}

.flyout-logo-link:hover img {
    transform: scale(1.05);
}

.flyout-logo-text {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.flyout-logo-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: #000000;
    border-radius: 10px;
    color: #00aeef;
    font-size: 20px;
    border: 2px solid #00aeef;
}

.flyout-logo-wrap {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.flyout-logo-main {
    font-size: 20px;
    font-weight: 700;
    color: #000000;
}

.flyout-logo-sub {
    font-size: 9px;
    font-weight: 400;
    color: #00aeef;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.flyout-close {
    background: none;
    border: none;
    font-size: 24px;
    color: #000000;
    cursor: pointer;
    padding: 5px;
    transition: all 0.3s ease;
}

.flyout-close:hover {
    color: #00aeef;
    transform: rotate(90deg);
}

/* Flyout Navigation */
.flyout-nav {
    flex: 1;
    margin-bottom: 25px;
}

.flyout-nav-menu {
    list-style: none;
    margin: 0;
    padding: 0;
}

.flyout-nav-menu > li {
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

.flyout-nav-menu > li > a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 0;
    color: #000000;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.flyout-nav-menu > li > a:hover {
    color: #00aeef;
    padding-left: 10px;
}

.flyout-nav-menu li ul {
    list-style: none;
    margin: 0;
    padding: 0 0 0 20px;
    display: none;
}

.flyout-nav-menu li ul.open {
    display: block;
    animation: slideDown 0.3s ease forwards;
}

.flyout-nav-menu li ul li a {
    display: block;
    padding: 10px 0;
    color: #555;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
}

.flyout-nav-menu li ul li a:hover {
    color: #00aeef;
    padding-left: 10px;
}

@keyframes slideDown {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

.flyout-nav-menu .dropdown-arrow {
    padding: 5px 10px;
    background: rgba(0, 174, 239, 0.06);
    border-radius: 6px;
    transition: all 0.3s ease;
}

.flyout-nav-menu .dropdown-arrow i {
    font-size: 14px;
    color: #000000;
    transition: transform 0.3s ease;
}

.flyout-nav-menu .dropdown-arrow i.fa-chevron-up {
    transform: rotate(180deg);
}

/* Flyout CTA */
.flyout-cta {
    padding-top: 20px;
    border-top: 2px solid #00aeef;
}

.flyout-cta .button-borders {
    width: 100%;
    margin-bottom: 20px;
}

.flyout-cta .primary-button {
    width: 100%;
    justify-content: center;
}

.flyout-contact {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
}

.flyout-contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #555;
    font-size: 13px;
    text-decoration: none;
    transition: color 0.3s ease;
}

.flyout-contact-item i {
    color: #00aeef;
    width: 20px;
    font-size: 14px;
}

.flyout-contact-item:hover {
    color: #00aeef;
}

.flyout-social {
    display: flex;
    gap: 10px;
}

.flyout-social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #000000;
    color: #ffffff;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.flyout-social-icon:hover {
    background: #00aeef;
    color: #000000;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 174, 239, 0.3);
}

/* ============================================
   RESPONSIVE - CONTAINER FLUID PADDING
   ============================================ */

/* 1440px and above */
@media (min-width: 1441px) {
    .container-fluid {
        padding-left: 80px !important;
        padding-right: 80px !important;
        max-width: 1600px;
    }
}

/* 1440px - 1200px */
@media (min-width: 1200px) and (max-width: 1440px) {
    .container-fluid {
        padding-left: 60px !important;
        padding-right: 60px !important;
    }
}

/* 1200px - 1024px */
@media (min-width: 1024px) and (max-width: 1199px) {
    .container-fluid {
        padding-left: 50px !important;
        padding-right: 50px !important;
    }
}

/* 1024px - 991px */
@media (max-width: 1023px) {
    .container-fluid {
        padding-left: 40px !important;
        padding-right: 40px !important;
    }
    
    .custom-nav-desktop {
        display: none !important;
    }
    
    .custom-header-cta {
        display: none !important;
    }
    
    .custom-hamburger {
        display: flex !important;
    }
    
    .custom-topbar-left {
        gap: 15px;
        width: 100%;
        justify-content: center;
    }
    
    .custom-topbar-right {
        display: none;
    }
    
    .custom-topbar-item {
        font-size: 12px;
    }
    
    .custom-topbar-icon {
        width: 26px;
        height: 26px;
        font-size: 11px;
    }
    
    .logo-main {
        font-size: 22px;
    }
    
    .logo-icon {
        width: 42px;
        height: 42px;
        font-size: 18px;
    }
}

/* 991px - 768px */
@media (min-width: 768px) and (max-width: 991px) {
    .container-fluid {
        padding-left: 35px !important;
        padding-right: 35px !important;
    }
}

/* 768px - 676px */
@media (max-width: 767px) {
    .container-fluid {
        padding-left: 25px !important;
        padding-right: 25px !important;
    }
    
    .custom-topbar {
        padding: 6px 0;
    }
    
    .custom-topbar-left {
        gap: 10px;
        flex-wrap: wrap;
    }
    
    .custom-topbar-item {
        font-size: 11px;
    }
    
    .custom-topbar-icon {
        width: 22px;
        height: 22px;
        font-size: 10px;
    }
    
    .custom-main-header {
        padding: 8px 0;
    }
    
    .logo-main {
        font-size: 18px;
    }
    
    .logo-sub {
        font-size: 8px;
        letter-spacing: 2px;
    }
    
    .logo-icon {
        width: 36px;
        height: 36px;
        font-size: 16px;
    }
    
    .custom-logo img {
        max-height: 38px;
    }
    
    .flyout-content {
        width: 90%;
        max-width: 320px;
        padding: 25px 20px 30px;
    }
    
    .flyout-logo-main {
        font-size: 18px;
    }
    
    .flyout-nav-menu > li > a {
        font-size: 15px;
        padding: 12px 0;
    }
}

/* 676px - 525px */
@media (max-width: 675px) {
    .container-fluid {
        padding-left: 20px !important;
        padding-right: 20px !important;
    }
    
    .custom-topbar-item {
        font-size: 10px;
    }
    
    .custom-topbar-icon {
        width: 20px;
        height: 20px;
        font-size: 9px;
    }
}

/* 525px - 425px */
@media (max-width: 525px) {
    .container-fluid {
        padding-left: 18px !important;
        padding-right: 18px !important;
    }
    
    .logo-main {
        font-size: 16px;
    }
    
    .logo-icon {
        width: 32px;
        height: 32px;
        font-size: 14px;
    }
	.custom-hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: left;
    background-repeat: no-repeat;
    transform: scale(1);
    transition: transform 8s ease;
}
}

/* 425px - 350px */
@media (max-width: 425px) {
    .container-fluid {
        padding-left: 15px !important;
        padding-right: 15px !important;
    }
    
    .logo-main {
        font-size: 15px;
    }
    
    .logo-sub {
        font-size: 7px;
        letter-spacing: 1px;
    }
    
    .logo-icon {
        width: 28px;
        height: 28px;
        font-size: 12px;
    }
    
    .custom-topbar-item {
        font-size: 9px;
    }
    
    .custom-topbar-icon {
        width: 18px;
        height: 18px;
        font-size: 8px;
    }
}

/* 350px - 325px */
@media (max-width: 350px) {
    .container-fluid {
        padding-left: 12px !important;
        padding-right: 12px !important;
    }
    
    .logo-main {
        font-size: 13px;
    }
    
    .logo-icon {
        width: 24px;
        height: 24px;
        font-size: 10px;
    }
    
    .custom-hamburger .hamburger-line {
        width: 22px;
    }
    
    .flyout-content {
        padding: 20px 15px 25px;
    }
}

/* ---------- DROPDOWN ARROW (Desktop) ---------- */
.custom-nav-menu .dropdown-arrow {
    margin-left: 5px;
}

.custom-nav-menu .dropdown-arrow i {
    font-size: 11px;
    color: #000000;
}