.site-header {
    padding-inline-end: 0px;
    padding-inline-start: 0px;
    min-height: 80px;
    margin-bottom: -80px;
    z-index: 9;
    background: rgba(255, 255, 255, 0.01);
    border-bottom: 1px solid #FFFFFF;
    backdrop-filter: blur(5px);
    position: fixed;
    width: 100%;
}
.site-navigation ul.menu li a {
    display: block;
    padding: 8px 15px;
    font-family: 'Inter';
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    color: #FFFFFF;
}
.site-header .header-inner{
    max-width:100%;
    padding: 0 10%;
}
.site-navigation-toggle-holder .site-navigation-toggle {
    color: #fff;
}

.marquee {
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
    background: #1E1E1E;
    padding: 40px 0;
}

.marquee-content {
    display: inline-flex;
    align-items: center;
    gap: 30px;
    animation: marquee 20s linear infinite;
}

.marquee-content span {
    font-style: normal;
    font-weight: 600;
    font-size: 22px;
    line-height: 28px;
    text-align: center;
    color: #FFFFFF;
    flex: none;
    font-family: 'Inter', sans-serif;
}

.yellow_bg_text{
	background:#EBFFB3;
}

@keyframes marquee {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}

/* Pause on hover */
.marquee:hover .marquee-content {
    animation-play-state: paused;
}

@media screen and (max-width: 1024px) {
.site-header .header-inner{
    padding: 0 20px;
}    
}

@media (max-width: 768px) {
    .marquee-content span {
        font-size: 16px;
        gap: 20px;
    }
}

@media (max-width: 768px) {
.mobile-white .elementor-heading-title{
    color:#fff !important;
}
}


@media (max-width: 767px) {
.yellow_bg_text{
	background:transparent;
	color:#263AF0 !important;
}
}

