.banner-background {
    background: linear-gradient(-45deg, #F177FC, #20D1FB, #F177FC, #20D1FB);
    background-size: 400% 400%;
    animation: gradient 5s ease infinite;
    height: auto; 
    padding-bottom: 1px;
    padding-top: 5px;
}
    @keyframes gradient{
    0%{
        background-position:0% 50%;
    }
    50%{background-position:100% 50%;
    }
    100%{
        background-position:0% 50%;
    }
}
.banner-text{
    display: flex;
    justify-content: center;
    align-items: center;
    color: #ffffff;
    text-transform:uppercase;
    font-weight:500; 
    font-size:40px !important;
}
.greater-than{
    border-right: 2px solid white;
    border-bottom: 2px solid white;
    width: 9px;
    height: 9px;
    transform: rotate(-45deg);
    margin-right: 10px;
}
section.manual-content h1:first-child, section.manual-content h2:first-child, section.manual-content h3:first-child {
    margin-top:-75px !important;
   padding-top: 0 !important;
}
@media only screen and (max-width: 480px){
    .banner-text{
        font-size: 20px !important;
        margin-bottom: 5px;
    }
    .greater-than{
        width: 7px;
        height: 7px;
        margin-right: 7px;
    }
section.manual-content h1:first-child, section.manual-content h2:first-child, section.manual-content h3:first-child {
    margin-top:20px !important;
     }
.manual-content li, .manual-content ul {
        margin-left: -5px !important;
    }
}
@media only screen and (min-width: 768px){
.manual-content {
  width:67% !important;
  }
}
