/* ******************************************** */
/** Contact Stores BTN
/* ******************************************** */

.c-contact__stores{
    display: inline-block;
    position: relative;
    width: 100%;
    color: var(--color-lightest);
    font-size: 1.4rem;
    font-weight: 500;
    padding: 30px 22px 28px;
    border-radius: 12px;
    overflow: hidden;
    text-align: center;
    transition: box-shadow 250ms ease-out;
}

.c-contact__stores-bg:before{
    content: "";
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgb(var(--color-darkest-rgb)/55%);
    z-index: 1;
    transition: background-color 250ms ease-out;
}

.c-contact__stores-kicker,
.c-contact__stores-text{
    display: block;
    position: relative;
    z-index: 2;
}

.c-contact__stores-icon{
    display: inline-block;
    color: var(--color-yellow);
    margin-right: 0.1em;
    font-size: 1.1em;
    vertical-align: middle;
    margin-top: -0.25em;
}

.c-contact__stores-text{
    display: inline-block;
    vertical-align: middle;
    font-size: 1.8em;
    font-weight: 600;
    margin-top: 0.6em;
    margin-left: -4px;
    transition: color 250ms ease-out;
}

/* ********************** de Tablet a DESKTOP ********************** */

@media (min-width: 980px) {
    
    .c-contact__stores:hover,
    .c-contact__stores:focus{
        box-shadow: rgb(0 0 0 / 25%) 0px 30px 80px -20px, rgb(0 0 0 / 30%) 0px 25px 40px -30px;
        transition: box-shadow 250ms ease-out;
    }
    
    .c-contact__stores:hover .c-contact__stores-bg:before,
    .c-contact__stores:focus .c-contact__stores-bg:before{
        background-color: rgb(var(--color-darkest-rgb)/75%);
        transition: background-color 250ms ease-out;
    }
    
    .c-contact__stores:hover .c-contact__stores-text,
    .c-contact__stores:focus .c-contact__stores-text{
        color: var(--color-hover);
        transition: color 250ms ease-out;
    }

}

/* ********************** de Desktop a DESKTOP 2 ********************** */

@media (min-width: 1200px) {

    .c-contact__stores{
        font-size: 1.5rem;
    }

}

/* ********************** de Desktop 2 a HD ********************** */

@media (min-width: 1400px) {

    .c-contact__stores {
        padding: 34px 22px 32px;
    }

}