.banner-bg {
    background-image: linear-gradient(180deg, #d9e5ff, #f7ece6);
}

.nav-box a:hover {
    text-decoration: underline;
}

.content-title {
    font-weight: 600;
    background: linear-gradient(92deg, #46256a 1.97%, #9b2f4d 32.13%, #46256a 105.06%);
    background-clip: text;
    -webkit-text-fill-color: transparent;
    justify-self: start;
}

.service-item ul li {
    list-style: disc;
}

.career-content ul li {
    list-style: disc;
}

.news-link::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 2px;
    background-color: #000000;
    opacity: 0;
    transition: opacity 0.3s ease;
}


.news-link:hover::after {
    opacity: 1;
}

.careers-link::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 2px;
    background-color: #000000;
    opacity: 0;
    transition: opacity 0.3s ease;
}


.careers-link:hover::after {
    opacity: 1;
}


@media (min-width: 767px) {
    .banner-container:before {
        background-image: url(../images/mesh.svg);
        background-position: 100%;
        background-repeat: no-repeat;
        background-size: contain;
        bottom: -150px;
        content: "";
        display: block;
        height: 1135px;
        pointer-events: none;
        position: absolute;
        right: -125px;
        width: clamp(50vw, 65vw, 1205px);
    }
}