.header-sub-title {
    font-size: 2.25rem;
    color: #f5e4c3;
}

/* Adjust font-size for small screens */
@media (max-height: 750px) {
    .header-sub-title {
        font-size: 1.5rem;
    }
}

/* Adjust font-size for medium screens */
@media (min-height: 751px) and (max-height: 1023px) {
    .header-sub-title {
        font-size: 2rem;
    }
}

/* Adjust font-size for large screens */
@media (min-height: 1024px) {
    .header-sub-title {
        font-size: 2.25rem;
    }
}

/* Styling for the animated underline */
.underline-animation {
    position: relative;
    display: inline-block;
}

.underline-animation::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 0;
    height: 2px;
    background-color: #000;
    animation: underline 3s ease-in-out infinite;
}

.highlighter-animation {
    position: relative;
    display: inline-block;
}

.highlighter-animation::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 100%;
    height: 2px;
    background-image: linear-gradient(to right, #ffcc00, transparent);
    background-size: 0% 2px;
    animation: highlighter 10s linear infinite; 
}

.spaccer{	
    color: #007122;
    background: #007122;
    box-shadow: 0px 0px 5px 3px #007122;
}

.detail-btn{
	position: absolute;
    right: 16px;
}

.jobs-wrapper {
    background-image: url('/landingAssets/img/jobs_background.png');
    background-size: contain;
}

@keyframes underline {
    0% { width: 0; }
    100% { width: 100%; }
}

@keyframes highlighter {
    0% { background-size: 40% 2px; }
    100% { background-size: 100% 2px; }
}
