/* ---------------------------------------------------
  HOME PAGE STYLES
  Primary green: #62CAB1
  Dark teal: #2D4A56
  Text dark: #254450
---------------------------------------------------*/


/* ---------------------------------------------------
  ADDITIONAL FONT FACES (for home page)
---------------------------------------------------*/

@font-face {
    font-family: "SuisseIntl-Medium";
    src: url("../fonts/SuisseIntl-Medium.otf") format("opentype");
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: "SuisseIntl-Black";
    src: url("../fonts/SuisseIntl-Black.otf") format("opentype");
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: "WorkSans-SemiBold";
    src: url("../fonts/WorkSans-SemiBold.ttf") format("truetype");
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: "WorkSans-ExtraBold";
    src: url("../fonts/WorkSans-ExtraBold.ttf") format("truetype");
    font-weight: normal;
    font-style: normal;
}


/* ---------------------------------------------------
  NAVBAR - transparent on home hero
---------------------------------------------------*/

.home .navbar-light {
    background-color: transparent !important;
    box-shadow: none !important;
}

.home .navbar-light .navbar-toggler {
    border: 0px;
}

.home .navbar-toggler-icon {
    background-image: url("/img/icon-menu-white.svg") !important;
}

.home .navbar-brand img.img-normal {
    display: none;
}

.home .navbar-brand img.img-white {
    display: block;
}

.home .navbar-light .navbar-nav .nav-link {
    color: #fff;
}

.navbar.fixed-top.menu-scroll {
    background-color: #fff !important;
}

.navbar.fixed-top.menu-scroll .navbar-brand img.img-normal {
    display: block;
}

.navbar.fixed-top.menu-scroll .navbar-brand img.img-white {
    display: none;
}

.navbar.fixed-top.menu-scroll .nav-link {
    color: #000;
}

.navbar.fixed-top.menu-scroll .nav-link:hover {
    color: #62CAB1;
}


/* ---------------------------------------------------
  HERO
---------------------------------------------------*/

.hero-home {
    background-color: #62CAB1;
    padding-top: 180px;
    padding-bottom: 80px;
    position: relative;
    overflow: hidden;
}

.hero-home h1 {
    font-family: "SuisseIntl-Medium", sans-serif;
    font-size: 3.6em;
    font-weight: 500;
    color: #254450;
    line-height: 1.08em;
    margin-bottom: 0.6em;
    max-width: 430px;
}

.hero-home .hero-subtitle {
    color: #254450;
    font-size: 1em;
    line-height: 1.6em;
    max-width: 390px;
    margin-bottom: 2em;
}

.hero-home .hero-subtitle strong {
    font-family: "SuisseIntl-Bold", sans-serif;
}

.hero-home .hero-subtitle span {
    font-family: "SuisseIntl-Medium", sans-serif;
}

.hero-home .hero-buttons {
    display: flex;
    gap: 1em;
    flex-wrap: wrap;
}

.btn-hero-outline {
    display: inline-block;
    padding: 0.7em 1.5em;
    border-radius: 25px;
    border: 3px solid #254450;
    background: rgba(37, 68, 80, 0.15);
    color: #254450;
    font-family: "WorkSans-SemiBold", sans-serif;
    font-size: 1em;
    font-weight: 600;
    line-height: 1;
    text-decoration: none;
    transition: all 0.3s;
    cursor: pointer;
}

.btn-hero-outline:hover {
    background: #254450;
    color: #62CAB1;
}

.hero-card-wrapper {
    background: conic-gradient(from 90deg at 50% 50%, rgba(0, 0, 0, 0.15) 9deg, rgba(98, 202, 177, 0.04) 130deg, rgba(37, 68, 80, 0.20) 222deg);
    border-radius: 13px;
    padding: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-card-wrapper video,
.hero-card-wrapper img {
    width: 100%;
    border-radius: 13px;
    display: block;
}


/* ---------------------------------------------------
  DARK SECTION WRAPPER (gradient over all 3 sub-sections)
---------------------------------------------------*/

.dark-section-home {
    background-color: #2D4A56;
    position: relative;
    overflow: hidden;
}

.dark-section-home::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg, rgba(81, 157, 133, 0.30) 26%, rgba(45, 74, 86, 0.30) 100%);
    pointer-events: none;
}


/* ---------------------------------------------------
  PROVEN PERFORMANCE SECTION
---------------------------------------------------*/

.proven-home {
    padding: 80px 0;
    position: relative;
    z-index: 1;
}

.proven-home h2 {
    font-family: "SuisseIntl-Medium", sans-serif;
    font-size: 3.6em;
    font-weight: 500;
    color: #fff;
    text-transform: capitalize;
    line-height: 1.08em;
    margin-bottom: 0.8em;
}

.badges-box {
    background: rgba(98, 202, 177, 0.06);
    border: 1px solid rgba(98, 202, 177, 0.40);
    border-radius: 30px;
    padding: 30px 40px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1;
}

.badges-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px 60px;
}

.badge-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.badge-circle {
    width: 53px;
    height: 53px;
    min-width: 53px;
    background-color: #62CAB1;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.badge-circle i {
    color: #fff;
    font-size: 1.1em;
}

.badge-item span:not(.badge-circle) {
    font-family: "SuisseIntl-Medium", sans-serif;
    font-weight: 500;
    font-size: 1.8em;
    color: #fff;
    line-height: 1;
}


/* ---------------------------------------------------
  FROM ROBOTICS SUB-SECTION (still on dark)
---------------------------------------------------*/

.fromrobotics-home {
    padding: 80px 0;
    position: relative;
    z-index: 1;
}

.fromrobotics-home h2 {
    font-family: "SuisseIntl-Medium", sans-serif;
    font-size: 3.6em;
    font-weight: 500;
    color: #62CAB1;
    line-height: 1.08em;
    margin-bottom: 0;
}

.fromrobotics-home p {
    font-family: "SuisseIntl-Medium", sans-serif;
    color: #fff;
    font-size: 1em;
    line-height: 1.7em;
    font-weight: 500;
}


/* ---------------------------------------------------
  SPECIALIZED CYBERSECURITY LLM (alias1) - on dark
---------------------------------------------------*/

.alias1-home {
    padding: 0 0 100px 0;
    position: relative;
    z-index: 1;
}

.alias1-logo-block {
    background: rgba(37, 68, 80, 0.20);
    border-radius: 30px;
    min-height: 343px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px;
}

.alias1-home h2 {
    font-family: "SuisseIntl-Medium", sans-serif;
    font-size: 3.6em;
    font-weight: 500;
    color: #62CAB1;
    text-transform: capitalize;
    line-height: 1.08em;
    margin-bottom: 0.5em;
}

.alias1-home .alias1-desc {
    color: #fff;
    font-family: "SuisseIntl-Medium", sans-serif;
    font-size: 1em;
    line-height: 1.7em;
    font-weight: 500;
}

.alias1-highlight {
    display: inline-block;
    background: rgba(98, 202, 177, 0.20);
    border-radius: 32px;
    padding: 3px 12px;
    font-size: 1em;
}

.alias1-home .alias1-buttons {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 1.5em;
}

.btn-cai-pro {
    display: inline-block;
    padding: 0.7em 1.3em;
    border-radius: 25px;
    border: 3px solid #254450;
    background: rgba(98, 202, 177, 0.45);
    color: #254450;
    font-family: "WorkSans-SemiBold", sans-serif;
    font-size: 1em;
    font-weight: 600;
    line-height: 1;
    text-decoration: none;
    transition: all 0.3s;
}

.btn-cai-pro:hover {
    background: rgba(98, 202, 177, 0.7);
    color: #254450;
}

.btn-cai-pro strong {
    font-family: "WorkSans-ExtraBold", sans-serif;
    font-weight: 800;
}

.btn-learn-outline {
    display: inline-block;
    padding: 0.7em 1.3em;
    border-radius: 25px;
    border: 3px solid #62CAB1;
    background: rgba(255, 255, 255, 0.30);
    color: #fff;
    font-family: "WorkSans-SemiBold", sans-serif;
    font-size: 1em;
    font-weight: 600;
    line-height: 1;
    text-decoration: none;
    transition: all 0.3s;
}

.btn-learn-outline:hover {
    background: rgba(255, 255, 255, 0.5);
    color: #fff;
}


/* ---------------------------------------------------
  SECURITY AGENTS SECTION (white bg)
---------------------------------------------------*/

.agents-home {
    background-color: #fff;
    padding: 80px 0;
}

.agents-home h2 {
    font-family: "SuisseIntl-Medium", sans-serif;
    font-size: 3.6em;
    font-weight: 500;
    color: #62CAB1;
    line-height: 1.08em;
    margin-bottom: 0.3em;
}

.agents-home .agents-subtitle {
    font-family: "SuisseIntl-Bold", sans-serif;
    color: #254450;
    font-size: 1em;
    font-weight: 700;
    max-width: 508px;
    line-height: 1.5em;
    margin-bottom: 2.5em;
}

.agent-card-home {
    margin-bottom: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    height: 100%;
}

.agent-card-home .agent-img-wrapper {
    width: 100%;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    overflow: hidden;
}

.agent-card-home .agent-img {
    max-width: 100%;
    max-height: 300px;
    width: auto;
    height: auto;
    display: block;
    object-fit: contain;
}

.agent-card-home .agent-img.agent-img-scale-up {
    transform: scale(1.45);
}

.agent-card-home .agent-img.agent-img-scale-md {
    transform: scale(1.2);
}

.agent-card-home .agent-name-home {
    font-family: "SuisseIntl-Bold", sans-serif;
    font-size: 2.5em;
    font-weight: 700;
    color: #254450;
    line-height: 1;
    margin-bottom: 12px;
}

.agent-card-home .agent-desc-home {
    font-family: "Inter", "WorkSans", sans-serif;
    font-size: 1em;
    color: #254450;
    font-weight: 500;
    line-height: 1.5em;
    margin-bottom: 20px;
    max-width: 316px;
    flex: 1;
}

.btn-buy-now {
    display: inline-block;
    padding: 0.7em 1.3em;
    border-radius: 25px;
    border: 3px solid #254450;
    background: rgba(98, 202, 177, 0.45);
    color: #254450;
    font-family: "WorkSans-SemiBold", sans-serif;
    font-size: 1em;
    font-weight: 600;
    line-height: 1;
    text-decoration: none;
    transition: all 0.3s;
    margin-top: auto;
}

.btn-buy-now:hover {
    background: rgba(98, 202, 177, 0.7);
    color: #254450;
}

.btn-buy-now strong {
    font-family: "WorkSans-ExtraBold", sans-serif;
    font-weight: 800;
}

.agent-more-home .coming-soon-label {
    font-family: "SuisseIntl-Black", sans-serif;
    font-size: 1.2em;
    font-weight: 900;
    color: #62CAB1;
}


/* ---------------------------------------------------
  WORLD LEADERS SECTION (bg image)
---------------------------------------------------*/

.leaders-home {
    background-color: #2D4A56;
    background-image:
        repeating-linear-gradient(
            0deg,
            rgba(98, 202, 177, 0.07) 0px,
            rgba(98, 202, 177, 0.07) 1px,
            transparent 1px,
            transparent 48px
        ),
        repeating-linear-gradient(
            90deg,
            rgba(98, 202, 177, 0.05) 0px,
            rgba(98, 202, 177, 0.05) 1px,
            transparent 1px,
            transparent 48px
        );
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.leaders-home::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        linear-gradient(0deg, rgba(81, 157, 133, 0.30) 26%, rgba(45, 74, 86, 0.30) 100%),
        radial-gradient(ellipse at 10% 90%, rgba(98, 202, 177, 0.25) 0%, transparent 45%),
        radial-gradient(ellipse at 90% 10%, rgba(98, 202, 177, 0.18) 0%, transparent 40%),
        radial-gradient(circle at 50% 50%, rgba(45, 74, 86, 0.50) 0%, transparent 65%),
        radial-gradient(circle at 25% 30%, rgba(98, 202, 177, 0.12) 0%, transparent 35%),
        radial-gradient(circle at 75% 70%, rgba(98, 202, 177, 0.10) 0%, transparent 30%),
        conic-gradient(from 160deg at 50% 50%, rgba(45, 74, 86, 0.00) 0deg, rgba(98, 202, 177, 0.08) 60deg, rgba(45, 74, 86, 0.00) 120deg, rgba(98, 202, 177, 0.06) 200deg, rgba(45, 74, 86, 0.00) 280deg, rgba(98, 202, 177, 0.08) 360deg);
    pointer-events: none;
}

.leaders-home::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60%;
    background:
        linear-gradient(0deg, rgba(81, 157, 133, 0.30) 0%, transparent 100%),
        radial-gradient(ellipse at 30% 100%, rgba(98, 202, 177, 0.20) 0%, transparent 50%),
        radial-gradient(ellipse at 70% 100%, rgba(98, 202, 177, 0.15) 0%, transparent 45%);
    pointer-events: none;
}

.leaders-home .container {
    position: relative;
    z-index: 1;
}

.leaders-home h2 {
    font-family: "SuisseIntl-Medium", sans-serif;
    font-size: 3.6em;
    font-weight: 500;
    color: #fff;
    text-transform: capitalize;
    line-height: 1.08em;
    margin-bottom: 0.3em;
}

.leaders-home .leaders-intro {
    font-family: "SuisseIntl-Medium", sans-serif;
    color: #fff;
    font-size: 1em;
    line-height: 1.7em;
    font-weight: 500;
    max-width: 625px;
    margin: 0 auto 3em auto;
}

.leaders-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-top: 2em;
}

.leader-col h3 {
    font-family: "SuisseIntl-Medium", sans-serif;
    font-size: 1.8em;
    font-weight: 500;
    color: #fff;
    line-height: 1;
    margin-bottom: 0.8em;
}

.leader-col p {
    font-family: "SuisseIntl-Medium", sans-serif;
    color: #fff;
    font-size: 1em;
    line-height: 1.7em;
    font-weight: 500;
    margin-bottom: 1.5em;
}

.btn-explore {
    display: inline-block;
    padding: 0.7em 1.5em;
    border-radius: 25px;
    border: 3px solid #254450;
    background: rgba(98, 202, 177, 0.45);
    color: #fff;
    font-family: "WorkSans-SemiBold", sans-serif;
    font-size: 1em;
    font-weight: 600;
    line-height: 1;
    text-decoration: none;
    transition: all 0.3s;
}

.btn-explore:hover {
    background: rgba(98, 202, 177, 0.7);
    color: #fff;
}


/* ---------------------------------------------------
  TRUSTED BY INDUSTRY (green bg)
---------------------------------------------------*/

.trusted-home {
    background-color: #62CAB1;
    padding: 80px 0;
}

.trusted-home h2 {
    font-family: "SuisseIntl-Medium", sans-serif;
    font-size: 3.6em;
    font-weight: 500;
    color: #254450;
    line-height: 1.08em;
    margin-bottom: 0.5em;
    max-width: 562px;
}

.trusted-home .trusted-desc {
    font-family: "SuisseIntl-Medium", sans-serif;
    color: #254450;
    font-size: 1em;
    line-height: 1.7em;
    font-weight: 500;
    max-width: 551px;
    margin-bottom: 2em;
}

.logo-marquee {
    overflow: hidden;
    width: 100%;
}

.marquee-row {
    display: flex;
    width: 100%;
    overflow: hidden;
    margin-bottom: 10px;
    -webkit-mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
    mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
}

.marquee-row:last-child {
    margin-bottom: 0;
}

.marquee-track {
    display: flex;
    align-items: center;
    animation: marquee-left 45s linear infinite;
    width: max-content;
}

.marquee-right .marquee-track {
    animation: marquee-right 45s linear infinite;
}

.marquee-row:hover .marquee-track {
    animation-play-state: paused;
}

.marquee-track .logo-item {
    flex: 0 0 auto;
    width: 170px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 25px;
}

.marquee-track .logo-item img {
    max-width: 100%;
    max-height: 50px;
    object-fit: contain;
    filter: grayscale(100%) brightness(0.3);
    opacity: 0.6;
    transition: all 0.3s;
}

.marquee-track .logo-item img:hover {
    filter: grayscale(0%) brightness(1);
    opacity: 1;
}

@keyframes marquee-left {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

@keyframes marquee-right {
    0% { transform: translateX(-50%); }
    100% { transform: translateX(0); }
}


/* ---------------------------------------------------
  CTA SECTION (dark)
---------------------------------------------------*/

.cta-home {
    background-color: #2D4A56;
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-home::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg, rgba(81, 157, 133, 0.30) 26%, rgba(45, 74, 86, 0.30) 100%);
    pointer-events: none;
}

.cta-home .container {
    position: relative;
    z-index: 1;
}

.cta-home h2 {
    font-family: "SuisseIntl-Medium", sans-serif;
    font-size: 3.6em;
    font-weight: 500;
    color: #fff;
    line-height: 1.08em;
    margin-bottom: 0.5em;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.cta-home p {
    font-family: "SuisseIntl-Medium", sans-serif;
    color: #fff;
    font-size: 1em;
    max-width: 500px;
    margin: 0 auto 2em auto;
    line-height: 1.7em;
    font-weight: 500;
}

.cta-home .alias1-highlight {
    display: inline-block;
    background: rgba(98, 202, 177, 0.20);
    border-radius: 32px;
    padding: 3px 12px;
}

.btn-cta-gradient {
    display: inline-block;
    padding: 0.7em 1.5em;
    border-radius: 25px;
    border: 3px solid #62CAB1;
    background: conic-gradient(from 90deg at 50% 50%, rgba(98, 202, 177, 0.45) 40deg, rgba(49, 100, 88, 0.45) 93deg);
    color: #fff;
    font-family: "WorkSans-SemiBold", sans-serif;
    font-size: 1em;
    font-weight: 600;
    line-height: 1;
    text-decoration: none;
    transition: all 0.3s;
}

.btn-cta-gradient:hover {
    background: rgba(98, 202, 177, 0.6);
    color: #fff;
}

.btn-cta-gradient strong {
    font-family: "WorkSans-ExtraBold", sans-serif;
    font-weight: 800;
}


/* ---------------------------------------------------
  RESPONSIVE
---------------------------------------------------*/

@media only screen and (min-width: 1920px) {
    .hero-home {
        padding-top: 220px;
        padding-bottom: 100px;
    }
    .hero-home h1 {
        font-size: 4.2em;
        max-width: 500px;
    }
}

@media only screen and (min-width: 993px) and (max-width: 1199px) {
    .hero-home h1 {
        font-size: 2.8em;
    }
    .proven-home h2,
    .fromrobotics-home h2,
    .alias1-home h2,
    .agents-home h2,
    .leaders-home h2,
    .trusted-home h2,
    .cta-home h2 {
        font-size: 2.8em;
    }
    .badge-item span:not(.badge-circle) {
        font-size: 1.4em;
    }
    .agent-card-home .agent-name-home {
        font-size: 2em;
    }
}

@media only screen and (min-width: 768px) and (max-width: 992px) {
    .hero-home {
        padding-top: 150px;
        padding-bottom: 60px;
        text-align: center;
    }
    .hero-home h1 {
        font-size: 2.5em;
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }
    .hero-home .hero-subtitle {
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }
    .hero-home .hero-buttons {
        justify-content: center;
    }
    .proven-home h2,
    .fromrobotics-home h2,
    .alias1-home h2,
    .agents-home h2,
    .leaders-home h2,
    .trusted-home h2,
    .cta-home h2 {
        font-size: 2.2em;
    }
    .badges-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .badge-item span:not(.badge-circle) {
        font-size: 1.3em;
    }
    .leaders-columns {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .home .navbar-light .navbar-nav .nav-link {
        color: #000;
    }
    .navbar.fixed-top.menu-scroll {
        height: 75px !important;
        margin: 0em !important;
        padding: 0em !important;
    }
    .navbar.fixed-top.menu-scroll .navbar-brand img {
        width: 37px;
        height: 38px;
    }
    .navbar.fixed-top.menu-scroll .navbar-toggler-icon {
        background-image: url(/img/icon-menu.svg) !important;
    }
    .navbar.fixed-top.menu-scroll .navbar-brand img.img-normal {
        display: block;
    }
    .navbar.fixed-top.menu-scroll .navbar-brand img.img-white {
        display: none;
    }
}

@media only screen and (max-width: 767px) {
    .hero-home {
        padding-top: 120px;
        padding-bottom: 50px;
        text-align: center;
    }
    .hero-home h1 {
        font-size: 2em;
        max-width: 100%;
    }
    .hero-home .hero-subtitle {
        max-width: 100%;
        font-size: 0.95em;
        margin-left: auto;
        margin-right: auto;
    }
    .hero-home .hero-buttons {
        justify-content: center;
    }
    .proven-home {
        padding: 3em 0 0 0;
    }
    .proven-home h2 {
        font-size: 2em;
    }
    .badges-box {
        padding: 20px;
    }
    .badges-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    .badge-circle {
        width: 40px;
        height: 40px;
        min-width: 40px;
    }
    .badge-item span:not(.badge-circle) {
        font-size: 1.1em;
    }
    .fromrobotics-home {
        padding: 3em 0;
    }
    .fromrobotics-home h2 {
        font-size: 1.8em;
        margin-bottom: 0.5em;
    }
    .alias1-home {
        padding: 0 0 3em 0;
    }
    .alias1-home h2 {
        font-size: 2em;
    }
    .alias1-logo-block {
        min-height: 250px;
        margin-bottom: 2em;
    }
    .agents-home {
        padding: 3em 0;
    }
    .agents-home h2 {
        font-size: 2em;
    }
    .agent-card-home .agent-name-home {
        font-size: 1.8em;
    }
    .agent-card-home .agent-img-wrapper {
        height: 220px;
    }
    .agent-card-home .agent-img {
        max-width: 100%;
        max-height: 220px;
    }
    .leaders-home {
        padding: 3em 0;
    }
    .leaders-home h2 {
        font-size: 2em;
    }
    .leaders-columns {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .trusted-home {
        padding: 3em 0;
    }
    .trusted-home h2 {
        font-size: 2em;
    }
    .cta-home {
        padding: 3em 0;
    }
    .cta-home h2 {
        font-size: 1.8em;
    }
    .marquee-track .logo-item {
        width: 140px;
        padding: 0 15px;
    }
    .marquee-track .logo-item img {
        max-height: 40px;
    }
    .home .navbar-light .navbar-nav .nav-link {
        color: #000;
    }
    .navbar.fixed-top.menu-scroll {
        height: 75px !important;
        margin: 0em !important;
        padding: 0em !important;
    }
    .navbar.fixed-top.menu-scroll .navbar-brand img {
        width: 37px;
        height: 38px;
    }
    .navbar.fixed-top.menu-scroll .navbar-toggler-icon {
        background-image: url(/img/icon-menu.svg) !important;
    }
    .navbar.fixed-top.menu-scroll .navbar-brand img.img-normal {
        display: block;
    }
    .navbar.fixed-top.menu-scroll .navbar-brand img.img-white {
        display: none;
    }
}
