.tilted-banner{
    padding: 10px 0px;
    display: flex;
    background-color: #006EDF;
    transform: rotate(-2deg);
    width: 120%;
    position: relative;
    left: -10%;
    overflow: hidden;
}
.banner-text{
    width: 33%;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
}
.banner-text img{
    width: 25px;
}
.banner-text h5{
    text-transform: uppercase;
    font-weight: 100 !important;
    margin: 0;
    font-size: 1em;
    color: white !important;
}
.tilted-banner-inner{
    transition: all 1s ease;
    width: 100%;
    display: flex;
    height: 100%;
    position: relative;
    
}
@media only screen and (max-width: 1100px){
    .banner-text:nth-child(even){
        display: none;
    }
}
@media only screen and (max-width: 600px){
    .banner-text h5{
        font-size: 10px;
    }

}

@media only screen and (max-width: 474px){
    .tilted-banner-inner{
        left: 0% !important;
    }

}