/* 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;
    }

}

/* THE VIP PROMISE */

.icon-number-container {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 10px;
    min-height: 38px;
}

.icon-number-container .number {
    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;
}

@media (max-width: 768px) {

    .icon-number-container .number {
        font-size: 12px;
    }

}