
.card {
	cursor: pointer
}

.hd {
	font-size: 25px;
	font-weight: 550
}

.card.hover,
.card:hover {
	box-shadow: 0 20px 40px rgba(0, 0, 0, .2)
}

.img {
	margin-bottom: 35px;
	-webkit-filter: drop-shadow(5px 5px 5px #222);
	filter: drop-shadow(5px 5px 5px #222)
}

.card-title {
	font-weight: 600
}

button.focus,
button:focus {
	outline: 0;
	box-shadow: none !important
}

.ft {
	margin-top: 25px
}

.chk {
	margin-bottom: 5px
}

.rck {
	margin-top: 20px;
	padding-bottom: 15px
}


.float{
	position:fixed;
	width:60px;
	height:60px;
	bottom:40px;
	left:40px;
	background-color:#25d366;
	color:#FFF;
	border-radius:50px;
	text-align:center;
  font-size:30px;
	box-shadow: 2px 2px 3px #999;
  z-index:100;
}

.my-float{
	margin-top:16px;
}

.custom-navbar {
            background-color: #f8f9fa; /* Light background color */
        }

        .custom-navbar-text {
            display: block;
            white-space: nowrap;
            overflow: hidden;
            color: #333; /* Text color */
            font-size: 18px; /* Adjust font size as needed */
        }

        .marquee-container {
            width: 100%;
            overflow: hidden;
        }

        .marquee-content {
            display: inline-block;
            animation: marquee 30s linear infinite;
        }

        @keyframes marquee {
            from {
                transform: translateX(100%);
            }
            to {
                transform: translateX(-100%);
            }
        }
    .sticky-apply-btn {
        position: fixed;
        right: 0px; /* Distance from the right edge */
        top: 50%; /* Center vertically */
        transform: translateY(-50%); /* Adjust for the height of the button */
        background-color: #007bff; /* Button color */
        color: white !important; /* Text color */
        padding: 10px 20px; /* Padding */
        border-radius: 5px; /* Rounded corners */
        text-decoration: none; /* Remove underline */
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Shadow effect */
        z-index: 1000; /* Ensure it appears above other elements */
    }

    .sticky-apply-btn:hover {
        background-color: #0056b3; /* Darker shade on hover */
    }




    .blink-button {
        display: inline-block;
        padding: 10px 20px;
        font-size: 18px;
        font-weight: bold;
        color: #fff !important; /* Text remains visible */
        border: none;
        border-radius: 5px;
        text-align: center;
        cursor: pointer;
        text-decoration: none;
        background-color: #e3ba23; /* Initial Background Color */
        animation: blink-animation 1.5s infinite; /* Alternates colors */
        transition: background-color 0.3s ease;
        border: 2px solid black;
    }
    
    .blink-button:hover {
        background-color: #2a0de9; /* Hover State */
    }
    
    @keyframes blink-animation {
        0%, 100% {
            background-color: #0996a2; /* First Color */
        }
        50% {
            background-color: #ff5733; /* Second Color */
        }
    }
    