.page-header {
    background-image: url(../images/header.jpg);
    background-repeat: no-repeat;
    background-size: cover;
}

.text-underline:hover {
    text-decoration: underline;
}

.service-item {
    transition: all 0.5s ease;
}

.service-item img {
    transition: all 1s ease;
}

.service-item:hover {
    transform: translateY(-10px);
}

.service-item:hover img {
    transform: scale(1.1);
}

.service-item:hover svg {
    margin-left: 30px;
}

.people-detail {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    word-break: break-all;
    line-height: 1.5;
}

.link-btn:hover svg {
    margin-left: 25px;
}

.linear-gradient::after {
    content: "";
    display: block;
    position: absolute;
    width: 100%;
    height: 28px;
    bottom: 0;
    left: 0;
    background: #e1e1e1;
    background: -moz-linear-gradient(top, #e1e1e1 0, #fff 100%);
    background: -webkit-linear-gradient(top, #e1e1e1 0, #fff 100%);
    background: linear-gradient(to bottom, #e1e1e1 0, #fff 100%);
}

.career-title::after {
    content: '';
    width: 20%;
    height: 1px;
    background-color: #fff;
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
}

.service-items.active {
    animation: fadeInUp 1s ease forwards;
}

.people-img img {
    max-width: 300px;
}

.list-disc li {
    list-style: disc;
}

.job-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-in-out;
}

.job-content.open {
    max-height: 1100px;
}

.job-icon {
    transition: transform 0.5s ease-in-out;
}

.job-icon.minus {
    transform: rotate(45deg);
}
