    .wave-down {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    transform: rotate(180deg);
    }

    .wave-down svg {
        position: relative;
        display: block;
        width: calc(155% + 1.3px);
        height: 130px;
    }

    .wave-down .shape-fill {
        fill: #FFFFFF;
    }

    /** For mobile devices **/
    @media (max-width: 767px) {
        .wave-down svg {
            width: calc(100% + 1.3px);
            height: 45px;
        }
    }
        .wave-top {
        position: absolute;
        top: 0;
        left: -1px;
        width: 100%;
        overflow: hidden;
        line-height: 0;
    }

    .wave-top svg {
        position: relative;
        display: block;
        width: calc(155% + 1.3px);
        height: 130px;
    }

    .wave-top .shape-fill {
        fill: #FFFFFF;
    }

    /** For mobile devices **/
    @media (max-width: 767px) {
        .wave-top svg {
            width: calc(100% + 1.3px);
            height: 45px;
        }
    }

   /* Custom Scroll Bar */

   /* For Firfox */
    :root{
        scrollbar-color: #A01313 #ffffff  !important;
        scrollbar-width: thin !important;
        scrollbar-track-color: #ffffff !important;
    }
    /* For Others */
    ::-webkit-scrollbar {
        width:8px
    }
    ::-webkit-scrollbar-track {
        background-color:#ffffff;
        /* box-shadow:0 0 10px #ddd inset */
    }
    ::-webkit-scrollbar-thumb {
        background-color:#A01313;
        border-radius:10px;
        -webkit-border-radius:10px;
        -moz-border-radius:10px;
        -ms-border-radius:10px;
        -o-border-radius:10px
    }


