/*Results*/
.legal-item {
    text-align: center;
    margin-bottom: 30px;
}
.legal-item a {
    display: inline-block;
    position: relative;
    padding-left: 30px;
    font-size: 35px;
    font-weight: bold;
    color: #253d8d;
}
.legal-item a::before {
    content: "";
    border-left: 8px solid #98c93f;
    position: absolute;
    display: block;
    top: 0;
    bottom: 0;
    left: 0;
    -webkit-transition: all .35s ease;
    -moz-transition: all .35s ease;
    -o-transition: all .35s ease;
    transition: all .35s ease;
}
.legal-item a:hover::before {
    top: -30px;
    bottom: -30px;
}
/*Publish*/
.legal-single h1 {
    font-size: 35px;
    font-weight: bold;
    color: #253d8d;
}
.legal-single p img {
    max-height: 20px;
    position: relative;
    top: 4px;
}
/*Responsive*/
@media only screen and (max-width:1024px) {
    /*Results*/
    .legal-item a {
        font-size: 25px;
    }
    .legal-item a::before {
        border-left: 4px solid #98c93f;
    }
    /*Publish*/
    .legal-single h1 {
        font-size: 30px;
    }
}
@media only screen and (max-width:769px) {
    /*Results*/
    .legal-item a {
        font-size: 20px;
    }
    /*Publish*/
    .legal-single h1 {
        font-size: 20px;
    }
    .legal-single p img {
        max-height: 16px;
    }
}