:root {
    --wa10-primary-color: #007cfb;
    --wa10-secondary-color: #0431b8;
    --wa10-dark-color: #082680;
    --wa10-link-color-active: #0431b8;
}

.wa10-cta-section {
    position: relative;
    width: 100%;
    padding: 55px 0 65px;
    background-position: top center;
    background-size: cover;
    background-repeat: no-repeat;
}

.wa10-cta-overlay {
    position: absolute;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    background-position: center;
    background-size: cover;
    opacity: 1;
    transition: all 0.3s;
}

.wa10-cta-container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 15px;
    position: relative;
    display: flex;
    flex-wrap: wrap;
}

.wa10-cta-column {
    width: 50%;
    padding: 15px;
    position: relative;
}

.wa10-cta-content {
    margin-left: 50px;
}

.wa10-cta-title {
    color: #FFFFFF;
    font-size: 40px;
    line-height: 50px;
    margin-bottom: 14px;
    font-family: 'Rubik', sans-serif;
    font-weight: 700;
}

.wa10-cta-text {
    color: #C0BFBF;
    margin-bottom: 38px;
    font-size: 16px;
    line-height: 1.625;
}

.wa10-cta-button {
    display: inline-block;
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    padding: 0 34px;
    line-height: 51px;
    text-transform: uppercase;
    border-radius: 3px;
    background-color: var(--wa10-primary-color);
    position: relative;
    overflow: hidden;
    transition: all 0.24s linear;
}

.wa10-cta-button:hover {
    background-color: var(--wa10-secondary-color);
    color: #fff;
    text-decoration: none;
}

.wa10-cta-button:after {
    content: '';
    position: absolute;
    top: 0;
    left: -200%;
    width: 200%;
    height: 100%;
    transform: skewX(-20deg);
    background-image: linear-gradient(to right, transparent, rgba(255,255,255,0.4), transparent);
    z-index: 1;
}

.wa10-cta-button:hover:after {
    animation: wa10_btn_shine 1.2s ease 0.1s;
}

@keyframes wa10_btn_shine {
    100% {
        left: 200%;
    }
}

@media (max-width: 767px) {
    .wa10-cta-column {
        width: 100%;
    }
    
    .wa10-cta-content {
        margin-left: 0;
    }
    
    .wa10-cta-title {
        font-size: 32px;
        line-height: 1.3;
    }
}