body{
    overflow:hidden;
    margin: 0;
}

.index_lg {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    height: calc(100vh - 80px - 50px);
    overflow: hidden;
}


.index_lg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


.job-marquee {
    background-color: #000;
    color: #fff;
    overflow: hidden;
    white-space: nowrap;
    box-sizing: border-box;
    padding: 10px 0;
    font-size: 18px;
    font-weight: bold;
    text-align: center;
    position: relative;  
    z-index: 1;
}

.job-marquee p {
    display: inline-block;
    padding-left: 100%;
    animation: scroll-left 15s linear infinite;
    margin: 0;
}

.job-marquee a {
    color: white;
    text-decoration: none;
    display: block;
    width: 100%;
    height: 100%;
}

.job-marquee a:hover {
    text-decoration: underline;
}

@keyframes scroll-left {
    0% {
        transform: translateX(0%);
    }
    100% {
        transform: translateX(-100%);
    }
}
