/* Hero Section */

#hero-cta {
    display: flex;
    gap: 15px;
}

#hero-cta .phone-button,
#hero-cta .get-a-quote {
    color: #FFFFFF;
    font-family: 'Source Sans 3', Arial, Helvetica, sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0%;
    padding: 11px 23px;
}

#hero-cta .phone-button:hover,
#hero-cta .get-a-quote:hover {
    opacity: 0.7;
}

#hero-cta .phone-button {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    border: 1px solid #B23A2D;
    background-color: #B23A2D;
}

#hero-cta .phone-button .image {
    line-height: 1em;
}

#hero-cta .get-a-quote {
    border: 1px solid #FFFFFF;
    background-color: transparent;
    border-radius: 2px;
    text-align: center;
}

@media (max-width: 768px) {

    #hero-cta {
        gap: 3px;
        flex-direction: column;
    }

    #hero-cta > a {
        width: 100%;
    }

    #hero-cta > p {
        height: 0;
    }

}

/* Index - Links */

#locations-index {
    display: flex;
    gap: 20px;
    justify-content: flex-end;
}

#locations-index a {
    color: #0F2845;
}

#locations-index a.active {
    color: #3A5874;
    text-decoration: underline;
}

@media (max-width: 768px) {

    #locations-index {
        flex-direction: column;
        gap: 5px;
        align-items: center;
    }

}

/* Regional Base */

.region-row1 p {
    display: flex;
    gap: 10px;
    align-items: center;
}

.locations-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.location-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
    background: #FFFFFF;
    border: 1px solid #c8c8c8;
    width: 49.5%;
    margin-bottom: 1%;
}

.location-details-row .et_pb_text_inner {
    display: flex;
}

.location-details {
    border: 1px solid #B8B5AB;
    background-color: #FFFFFF;
    padding: 30px;
    width: 33.33%;
}

.location-details > p:first-child {
    color: #7A1F1A;
    font-family: 'Source Sans 3', Arial, Helvetica, sans-serif;
    font-weight: 600;
    font-size: 16px;
    line-height: 13.2px;
    letter-spacing: 16%;
    text-transform: uppercase;
}

.location-details > p:last-child {
    color: #0F2845;
    font-family: 'Source Serif 4', Arial, Helvetica, sans-serif;
    font-weight: 600;
    font-size: 28px;
    line-height: 32.2px;
    letter-spacing: 0%;
}

@media (max-width: 768px) {

    .location-details-row .et_pb_text_inner {
        flex-direction: column;
    }

    .location-details {
        width: 100%;
    }

    .location-details > p:firs-child {
        font-size: 12px;
    }

    .location-details > p:last-child {
        font-size: 22px;
        line-height: 26.4px;
    }

}