.marquee-container {
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
    background-color: #E10069;
    padding: 10px 0;
    color: #fff;
}

.marquee-content {
    display: inline-block;
    padding-left: 100%;
    animation: marquee 15s linear infinite;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-100%);
    }
}


.marquee-container:hover .marquee-content {
    animation-play-state: paused;
}


.dk-callback-btn {
    margin: 0.5vw 1vw 0 1vw;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 6px 12px;
    background-color: #E10069;
    color: white;
    border: none;
    border-radius: 15px;
    font-family: Arial, sans-serif;
    font-size: 13px;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    max-width: max-content;
}

.dk-callback-btn:hover {
    background-color: #B50054;
    transform: translateY(-2px);
    box-shadow: 0 6px 8px rgba(0, 0, 0, 0.15);
}

.dk-callback-btn:active {
    transform: translateY(0);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.dk-callback-btn i {
    margin-right: 10px;
    font-size: 12px;
}

.callback-view {
    opacity: 0;
}

@media (max-width: 1200px) {
    .dk-callback-btn {
        display: none;
    }

    .callback-view {
        opacity: 1;
    }
}

