/* =============== */
/*       CTA       */
/* =============== */

.chen_cta_wrapper {
    display: flex;
    width: 100%;
    padding: 16px;
}

.chen_cta_wrapper--left {
    justify-content: flex-start;
}

.chen_cta_wrapper--center {
    justify-content: center;
}

.chen_cta_wrapper--right {
    justify-content: flex-end;
}

.chen_cta {
    background-color: #f25f70;
    color: #fff;
    padding: 10px 30px;
    text-decoration: none;
    border-radius: 10px;
    font-size: 16px;
    font-family: 'Quicksand', "Roboto", serif;
    font-weight: 500;
    transform: scale(1);
    transition: all 0.3s ease;
}

.chen_cta:hover {
    opacity: .9;
    color: #fff;
    transform: scale(0.98);
}

.chen_cta--olive {
    background: #808000;
}

.chen_cta--rose {
    background: #f25f70;
}

.chen_cta--teal {
    background: #008080;
}

.chen_cta--shadow {
    box-shadow: 0px 10px 10px rgba(0,0,0,0.25);
}