.slider-full-screen {
width: 100%;
}

.carousel-control-prev, .carousel-control-next {width: 5%;}

.carousel-control-prev-icon{background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23f00' viewBox='0 0 8 8'%3E%3Cpath d='M5.25 0l-4 4 4 4 1.5-1.5-2.5-2.5 2.5-2.5-1.5-1.5z'/%3E%3C/svg%3E"); }

.carousel-control-next-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%23f00' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath d='M2.75 0l-1.5 1.5L3.75 4l-2.5 2.5L2.75 8l4-4-4-4z'/%3e%3c/svg%3e");
}

.slide-next {
    position:absolute;
    top:400px;
    right:0;
    z-index:100;
}





 /* Styles for the notification ticker container */
.ticker-container {
    background-color: #ee2c3c;
    color: #ffffff;
    white-space: nowrap; /* Prevent text from wrapping */
    overflow: hidden;
    position: relative;
}

/* Styles for the ticker text */
.ticker-text {
    display: inline-block;
    padding: 10px;
}

/* Animation for scrolling */
.ticker-text.move {
    animation: ticker 20s linear infinite; /* Adjust the animation speed here */
}

/* Apply Now button styles */
.apply-button {
    color: #ffffff;
    background-color: #333333;
    padding: 5px 10px;
    border: none;
    text-decoration: none;
    margin-left: 10px;
    margin-right: 100px;
    cursor: pointer;
    transition: color 0.3s; /* Add a smooth color transition effect */
}

/* Change text color on hover */
.apply-button:hover {
    color: #c0c0c0;
}

/* Keyframes for scrolling */
@keyframes ticker {
    0% {
        transform: translateX(100%);
    }
    100% {
        transform: translateX(-100%);
    }
}

/* Pause the animation on hover */
.ticker-container:hover .ticker-text.move {
    animation-play-state: paused;
}