/* For devices with a minimum width of 768px (Medium) */
@media screen and (max-width: 768px) {
    .our-contact .our-contact-list .our-contact-list-item{
        width: 100%;
        border-bottom: 1px solid var(--ap-primary);

        &::after{
            display: none;
        }
        &:last-child{
            border-bottom: none;
        }

    }
}

/* For devices with a minimum width of 992px (Large) */
@media screen and (min-width: 992px) {

}