.job-category-title {
    font-family: 'Nasalization', 'Poppins';
    font-size: 30px;
    font-weight: 400;
    color: #15294B;
    line-height: 120%;
}

.job-category-description {
    font-size: 18px;
    font-weight: 400;
    color: #5D6B82;
    line-height: 140%;
}


.job-category-card {
    height: 350px;
    position: relative;
    border-radius: 15px;
    cursor: pointer;
    transition: 0.4s ease;
}

@media (min-width: 1024px) {
    .job-category-card {
        height: 300px;
    }
}


.job-category-card .number {
    font-family: 'Nasalization', 'Poppins';
    font-size: 40px;
    font-weight: 400;
    transition: opacity 0.4s ease;
}


.job-category-card .icon-box {
    display: flex;
    justify-content: center;
    opacity: 0.1;
    transition: opacity 0.4s ease;
    margin: 20px 0 30px 0;
}

.job-category-card:hover .number,
.job-category-card:hover .icon-box {
    opacity: 0;
}

.job-category-card .text {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 20px;
    line-height: 130%;
    font-weight: 500;
    color: #15294B;
    transition: 0.4s ease;
}

.job-category-card:hover .text {
    top: 50%;
    bottom: auto;
    transform: translate(-50%, -50%);
}