/* Marquee CSS */
.custom-marquee {
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
    box-sizing: border-box;
    background-color: #dc3545;
    color: #fff;
    padding: 2px 0px;
    font-size: 16px;
    position: relative;
}

.custom-marquee span {
    display: inline-block;
    padding-left: 100%;
    animation: marquee 30s linear infinite;
}

@keyframes marquee {
    from {
        transform: translateX(0%);
    }
    to {
        transform: translateX(-100%);
    }
}
/* Marquee CSS */
.menu-desktop{
    display: block;
}
.menu-mobile{
    display: none;
}
.about-imge-desktop{
    display: block;
}
.about-imge-mobile{
    display: none;
}

@media (max-width: 768px) { 
    .mb-78 {
        margin-bottom: -78%;
    }

    .mt-29 {
        margin-top: -29%;
    }
    .mt-40 {
        margin-top: -40%;
    }
    .mt-19 {
        margin-top: -19%;
    }
}
