.moving-dot-wrap{
    position: relative;
}
.moving-dot{
    position:absolute;
    padding-left: 100px;
    overflow:hidden;
    height: 100px;
    top: -50px;
    z-index: 90;
    background: transparent linear-gradient(90deg, #B40923 0%, #002B89 59%, #00164547 100%) 0% 0% no-repeat padding-box;
    -webkit-transition: all .5s;
    -moz-transition: all .5s;
    -ms-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    border-radius: 50px;
}

.moving-dot.close{
    width: 100px;
}
.moving-dot .moving-dot-dot{
    height: 100px;
    width: 100px;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    border-radius: 50px;
    background-color: red;
    position: absolute;
    left:0;
}

.moving-dot .moving-dot-text{
    padding: 0 100px 0 30px;
    white-space: nowrap;
    color: white;

}
.moving-dot .moving-dot-text h2{
    font-family: 'Roboto-Condenced', sans-serif;
    font-size: 45px;
}
