style.css 1.03 KB
.call-out-block{
    background-color: #0484B8;
    min-height: 300px;
    position: relative;
    overflow: hidden;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    color:#fff;
    margin:40px -50% 0px -50%;
    padding:0px 50%;

}
@media only screen and (max-width: 768px) {
.call-out-block{
padding: 40px 50%;
}
}

  .call-out-block h2{
    text-align: center;
    color: #fff !important;
    font-size: 30px;
    line-height: 45px;
}
.call-out-block p{
    text-align: center;
    color:#fff;
    font-size: 20px;
    line-height: 30px;
}
.call-out-block a{
    border-radius: 0!important;
    transition: background-color .2s;
    background-color: #E8D44B;
    color: #2C2C2C;
    border: none;
    font-size: 19px;
    font-weight: 500;
    margin: 10px 0 0px 0;
    padding: 12px 30px;
    line-height: 26px;
    text-decoration: none;
    text-transform: uppercase;
    display: inline-block;
    width: unset;

}    

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

}