/* =========================================
   HERO BLUE STRIP
========================================= */

.hero-quote-fixed {
    background: #1f365c;
    padding: 30px 0;
    position: relative;
    z-index: 5;
}

/* =========================================
   BUTTON WRAPPER
========================================= */

.acm-service-buttons {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 18px;
}

/* =========================================
   BUTTON STYLE
========================================= */

.acm-service-buttons .btn {
    border-width: 2px;
    border-style: solid;
    border-radius: 0;
    text-transform: uppercase;
    padding: 14px 24px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.5px;
    line-height: 1.2;
    transition: all 0.3s ease;
    text-decoration: none;
    min-width: 220px;
    text-align: center;
}

/* =========================================
   OUTLINE LIGHT BUTTON
========================================= */

.acm-service-buttons .btn-outline-light {
    background: transparent;
    color: #fff;
    border-color: #fff;
}

.acm-service-buttons .btn-outline-light:hover {
    background: #fff;
    color: #1f365c;
}

/* =========================================
   OPTIONAL OTHER BUTTON TYPES
========================================= */

.acm-service-buttons .btn-outline-primary:hover,
.acm-service-buttons .btn-outline-secondary:hover,
.acm-service-buttons .btn-outline-success:hover,
.acm-service-buttons .btn-outline-danger:hover,
.acm-service-buttons .btn-outline-warning:hover,
.acm-service-buttons .btn-outline-info:hover,
.acm-service-buttons .btn-outline-dark:hover {
    transform: translateY(-2px);
}

/* =========================================
   MOBILE
========================================= */

@media (max-width: 768px) {

    .hero-quote-fixed {
        padding: 20px 0;
    }

    .acm-service-buttons {
        gap: 12px;
    }

    .acm-service-buttons .btn {
        width: 100%;
        min-width: auto;
        padding: 12px 18px;
        font-size: 13px;
    }

}