.promo-wrapper-view a {
        transition: all .5s;
        overflow: hidden;
        position: relative;
}
 
.promo-wrapper-view a::before {
        content: '';
        position: absolute;
        left: 0;
        top: 0;
        height: 100%;
        width: 100%;
        background: rgb(0,96,156);
        background: -moz-linear-gradient(135deg, rgba(283,83,0) 0%, rgba(83,50,120) 100%);
        background: -webkit-linear-gradient(135deg, rgba(283,83,0) 0%, rgba(83,50,120) 100%);
        background: linear-gradient(135deg, rgba(283,83,0) 0%, rgba(83,50,120) 100%);
        filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#ffb71b",endColorstr="#533278",GradientType=1);
        z-index: 10;
        transition: all .5s;
        opacity: .0;
}
 
.promo-wrapper-view a:hover:before {
                opacity: .9;
}

.promo-wrapper-view a:hover {
                color: white;
}

.promo-wrapper-view {
  border-top-width: 4px;
  border-bottom: 0;
  border-right: 0;
  border-left: 0;
  border-top-style: solid;
  /*border-image-source: linear-gradient(90deg, rgba(72,45,90,1) 23%, rgba(192,71,148,1) 100%);*/
  border-image-source: linear-gradient(135deg, rgba(283,83,0, .8) 0%, rgba(63,43,86, .8) 50%);
  border-image-slice: 1

}