style.css 890 Bytes
.call-out-block{
    background-size: cover;
    min-height: 300px;
    position: relative;
    overflow: hidden;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    color:#fff;
    margin-left:-50%;
    margin-right:-50%;
    padding-left:50%;
    padding-right:50%;
    box-shadow: inset 0 0 0 2000px rgba(0, 0, 0, 0.3);
}

  .call-out-block h2{
    text-align: center;
}
.call-out-block p{
    text-align: center;
}
.call-out-block a{
    border-radius: 0!important;
    background-color: #EE0000;
    color: #fff;
    border: none;
    font-size: 19px;
    font-weight: 500;
    margin: 10px 0 0px 0;
    padding: 15px 60px;
    line-height: 26px;
    text-decoration: none;
    text-transform: uppercase;
    display: inline-block;
    width: unset;

}    

.call-out-block a:hover{
    color: #fff;
    background-color:#669999;

}