#why-us .benefit {
    position: relative;
    background-color: rgb(var(--brand-clr-2));
    /* padding: 1rem; */
    border-radius: 0.5rem;
    color: rgb(var(--text-clr-2));
    width: calc(100vw - 2rem);
    max-width: 450px;
    transition: background-color ease 300ms, padding ease 300ms;
}

#why-us .benefits img {
    opacity: 0.5;
    filter: brightness(0.2);
    max-width: 450px;
    z-index: 0;
    object-fit: cover;
    height: 100%;
    width: 100%;
    border-radius: 0.5rem;
    transition: all ease 300ms;
}

#why-us .benefit::after {
    content: "";
    position: absolute;
    top: 0.25rem;
    left: 0.25rem;
    width: 100%;
    height: 100%;
    border-radius: 0.75rem;
    border: 2px solid rgb(var(--card-bg-clr));
    z-index: -1;
}

#why-us .benefit:hover {
    background-color: rgb(var(--brand-clr-2));
    color: rgb(var(--text-clr-2));
}

#why-us .benefit:hover::after {
    border-color: rgb(var(--brand-clr-3));
}

#why-us .benefit-card {
    position: relative;
    padding: 1rem;
    z-index: 1;
    overflow: hidden;
    width: 100%;
}

#why-us .benefit:hover .benefit-card .benefit-title img,
#why-us .benefit:hover .benefit-card .benefit-title h2 {
    transform: translateY(-100%);
    opacity: 0;
}

#why-us .benefit-card .benefit-content ul {
    text-align: left;
}

#why-us .benefit:hover img {
    opacity: 0.5;
    filter: brightness(0.2);
}

#why-us .benefit-card img {
    aspect-ratio: 3/2;
}

#why-us .benefit-card .fg-img {
    opacity: 1;
    filter: none;
}

#why-us .benefit:hover span.bi {
    transition: all ease 300ms;
}

#why-us .benefit:hover span.bi::before {
    opacity: 0;
    transform: rotate(180deg);
    transition: all ease 300ms;
}

#why-us .benefit .benefit-card .benefit-content {
    position: absolute;
    top: 100%;
    left: 0%;
    transition: all ease 300ms 100ms;
}

#why-us .benefit:hover .benefit-card .benefit-content {
    top: 0%;
}

#why-us .benefit-content h2.border-bottom {
    border-color: var(--bs-dark)! important;
}