*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Roboto', sans-serif; 
}
 
.main-content
{
    position: relative;
    width: 100%;
    height: 610px;
    background-color: #9a1f40;;
    overflow: hidden;
}
h1
{   font-size: xxx-large;
    color: #fff;
    text-align: center;
    position: absolute;
    left: 50%;
    top: 22%;
    transform: translate(-50%, -116%);
    text-align: center;
    width: 60%;
}
.pic-main
{   z-index: 1;
    width: 69%;
    margin-left: 10%;
    margin-top: 5px
}
 .wave-animate{
    width: 100%;
    height: 3%;
    position: absolute;
    bottom: -9%;
    letter-spacing: 0;
    background-color: #fff;
}

 .wave-animate .wave{
    background: url(wave.svg) repeat-x;
    position: absolute;
    top: -198px;
    width: 6400px;
    height: 198px;
    animation: wave 7s cubic-bezier(0.36, 0.45, 0.63, 0.54) infinite;
    transform: translate3d(0,0,0);
}
 .wave-animate .wave:nth-of-type(2){
    top: -175px;
    animation: wave 7s cubic-bezier(0.36, 0.45, 0.63, 0.54) -0.125s infinite, swell 7s ease -1.25s infinite;
    opacity: 1;
}

@keyframes wave{
    0%{
        margin-left: 0;
    }
    100%{
        margin-left: -1600px;
    }
}
