.cta{
    background: #092A72;
    text-align: center;
    margin-bottom: -80px;
}
.cta_inner{
    margin: 60px auto;
    display: inline-block;
}
.cta_button{
    display: inline-flex;
    align-items: center;
    padding: 24px 54px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 4px;
    font-size: 32px;
    font-weight: 400;
    background-color: #FFFF18;
    border-radius: 50px;
}
.cta .chevron{
    display: inline-block;
    width: 8px;
    height: 8px;
    border-right: 2px solid #092A72;
    border-bottom: 2px solid #092A72;
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
    margin-left: 8px;
}
@media screen and (max-width:768px){
    .cta_inner{
        margin: 20px auto;
    }
    .cta_button{
        margin: 5px;
        padding: 12px;
        font-size: 20px;
        font-weight: 400;
        color: #092A72 !important;
        background-color: #FFFF18;
        border-radius: 50px;
    }
}