@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@600;700;800;900&display=swap");

:root {
    --heading-color: #dc2f02;
    --primary-color: #fb5607;
    --secondary-color: #dc2f02;
    --background-color: white;
}

.active {
    font-weight: 500;
    /* border-bottom-width: 2px; */
    color: var(--primary-color);
    border-bottom-color: var(--primary-color);
}

.cp {
    cursor: pointer;
}

.transparent {
    background-color: transparent;
}

.bg-animation {
    transition: background-image 1s ease-in;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-100%);
    }
}

.animate-scroll {
    animation: scroll 30s linear infinite;
}

.hover\:pause-scroll:hover {
    animation-play-state: paused;
}

.scrollbar-hide {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.scrollbar-hide::-webkit-scrollbar {
    display: none;
}

@keyframes slide {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-100%);
    }
}

.animate-slide {
    animation: slide 15s linear infinite;
}
