.banner-service {
    position: relative;
    width: 100%;
    height: 80vh;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.banner-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -3;
    /* filter: saturate(10%); */
}

.banner-service::after {
    content: " ";
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: -1;
    /* background-color: rgba(32, 125, 201, 0.9); */
    background-image: linear-gradient(to right, rgba(0, 40, 72, 1) 0%, rgba(32, 125, 201, 0.2) 100%);
}

.mouse-down {
    position: relative;
    width: 22px;
    height: 36px;
    background-color: rgba(255, 255, 255, 0.4);
    border-radius: 100px;
}

.mouse-down::after {
    content: " ";
    width: 6px;
    height: 10px;
    position: absolute;
    background-color: rgba(255, 255, 255, 0.8);
    top: 15%;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 100px;
    animation: bounce 1.8s infinite;
}

@keyframes bounce {
    50% {
        transform: translateY(8px) translateX(-50%);
    }
}

.benefit-image {
    transform: translateY(-24px);
}

#benefit-services ul {
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

#benefit-services li {
    list-style: none;
    padding: .5rem 1rem;
    background-color: var(--dark-10);
    display: flex;
    align-items: center;
    transition: all ease-in-out .3s;
}

#benefit-services li:hover {
    transform: translateY(-8px);
}

.service-divider {
    position: relative;
    min-height: 250px;
}

.service-divider::after {
    content: " ";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: rgba(24, 24, 24, 0.4);
}

.service-divider>img {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: -2;
    object-fit: cover;
}

@media (max-width: 720px) {
    #benefit-services ul {
        grid-template-columns: repeat(1, 1fr);
    }
}