.block-testimonials .owl-carousel .owl-nav [class*=owl-] {
    opacity: 1 !important;
}
.block-testimonials .owl-carousel .owl-nav .owl-next {
    right: -20px !important;
}
.block-testimonials .owl-carousel .owl-nav .owl-prev {
    left: -20px !important;
}

@media (min-width: 576px) {
    .card-columns {
        -webkit-column-count: 3;
        -moz-column-count: 3;
        column-count: 3;
        -webkit-column-gap: 1.25rem;
        -moz-column-gap: 1.25rem;
        column-gap: 1.25rem;
        orphans: 1;
        widows: 1;
    }
    .card-columns.grid-2 {
        -webkit-column-count: 2;
        -moz-column-count: 2;
        column-count: 2;
    }
    .card-columns > * {
        display: inline-block;
        width: 100%;
    }
}

       /* new menu changes */

.dropdown-toggle::after {
    content: none;
}

.primary-menu .dropdown-menu {
    display: none;
    position: absolute;
    background-color: rgba(255, 255, 255, 0.8); /* Semi-transparent white */
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
}

.primary-menu .dropdown-menu a {
    color: black; /* Ensure this is readable against your site's background */
    padding: 12px 16px;
    text-decoration: none;
    display: block;
}

.primary-menu .dropdown:hover .dropdown-menu {
    display: block;
}

.primary-menu .dropdown-menu a:hover {
    background-color: rgba(245, 245, 245, 0.8); /* Semi-transparent hover */
}