@charset "UTF-8";
/* CSS Document */

.contentCTA {
    display: block;
    background-color: #ff0000;
    background: rgb(255,0,0);
    background: linear-gradient(45deg, rgba(255,0,0,1) 0%, rgba(167,37,37,1) 100%);
    border-bottom: none;
    padding: 10px;
    color: #fff !important;
    font-weight: 700;
    text-transform: uppercase;
    text-align: center;
    margin: 1em auto;
    transition: all ease .5s;
}
.contentCTA:hover, article a.contentCTA:hover {
    background-color: #D60000;
    background: rgb(167,37,37);
    background: linear-gradient(45deg, rgba(167,37,37,1) 0%, rgba(255,0,0,1) 100%);
    color: #fff;
    border-bottom: none;
} 
.contentCTA i {
    color: #fff;
    font-size: 1.2rem;
    padding-right: 0.6rem;
    transition: all ease .5s;
}
.contentCTA:hover i {
    color: #fff;
}
.anchorContainer a {
    display: block;
}
.contentAnchor {
    background-color: #fff;
    color: #004f92;
    padding: 30px 0;
    display: flex;
    align-items: center;
    line-height: 40px;
}
.contentAnchor:after {
    background-color: #d5d5d5;
    content: "";
    display: block;
    flex: auto;
    height: 1px;
    margin-left: 20px;
}
.contentAnchor:before {
    background-color: #d5d5d5;
    content: "";
    display: block;
    flex: auto;
    height: 1px;
    margin-right: 20px;
}
.anchorContainer a:hover, article .anchorContainer a:hover {
    border: none;
}
.contentAnchor i {
    color: #004f92;
    font-size: 2rem;
}
.anchorContainer a:hover i, article .anchorContainer a:hover i {
    color: #028101;
}
