.animation-item {
    opacity: 0;
}

.animation-item.show {
    animation: fadeInUp 1s ease forwards;
}

.careers-link .icon {
    transition: all 0.5s ease;
}

.careers-link:hover .icon {
    margin-left: 10px;
}

.news-item1 {
    opacity: 0;
}

.news-item1.show {
    animation: fadeInUp 1s ease forwards;
}

.news-item2 {
    opacity: 0;
}

.news-item2.show {
    animation: fadeInUp 1s ease forwards;
}



.new-text {
    white-space: normal;
    word-wrap: break-word;
    word-break: break-all;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    overflow: hidden;
    line-height: 1.5;
}


.new-img img {
    transition: all 0.5s ease;
}

.new-img:hover img {
    transform: scale(1.1);
}

.new-content h4:hover {
    text-decoration: underline;
    text-underline-offset: 5px;
}





.careers-item {
    transition: all 0.5s ease;
    overflow: hidden;
    cursor: pointer;
}



.careers-content {
    width: 100%;
    overflow: hidden;
    transition: height 0.3s ease-out;
}

.careers-item:hover {
    box-shadow: 0 0 25px rgba(0, 0, 0, 0.1);
    z-index: 10;
}

.careers-item:hover .careers-content {
    height: auto;
    padding: 24px;
}

.careers-item.active {
    box-shadow: 0 0 25px rgba(0, 0, 0, 0.1);
    z-index: 10;
}

.careers-item.active .careers-content {
    height: auto;
    padding: 24px;
}