.cta-box {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: nowrap;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -moz-box-orient: horizontal;
    -moz-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

.cta-box--primary {
    background-color: #006aac
}

.cta-box--primary p {
    color: #fff
}

.cta-box--secondary {
    background-color: #a8c930
}

.cta-box--secondary p {
    color: #fff
}

.cta-box--white {
    background-color: #f2f6f8
}

.cta-box--white p {
    color: #252525
}

.cta-box--padding-small {
    padding: 40px 15px
}

.cta-box--padding-default {
    padding: 60px 15px
}

.cta-box--padding-large {
    padding: 80px 15px
}

.cta-box p {
    font-size: 30px;
    font-weight: 400;
    text-align: center
}

.cta-box p a {
    display: inline-block;
    min-width: 150px;
    font-size: 30px;
    font-weight: 700;
    line-height: normal;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
    padding: 15px 30px;
    text-transform: uppercase;
    font-style: normal;
    background-color: #a8c930;
    color: #252525;
    margin: 10px
}

.cta-box p a:active,
.cta-box p a:focus,
.cta-box p a:hover {
    background-color: #b7da35
}

@media (max-width:583px) {
    .cta-box p span {
        display: block;
        margin-top: 20px
    }
}

@media (min-width:768px) {
    .cta-box p {
        text-align: left
    }
}