﻿/* Waves Animation start*/

.hero_area {
    position: relative;
  /*  height: 100vh;*/
    background: rgb(31,36,160);
    background: linear-gradient(0deg, rgb(31 36 160 / 30%) 17%, rgba(31,36,160,0) 58%);
}

.waves {
    position: absolute;
    width: 100%;
    height: 15vh;
    min-height: 100px;
    max-height: 150px;
    bottom: 0;
    left: 0;
}
.ewaves {
    width: 100%;
    height: 10vh;
    opacity: .5;
    background: #1f5fa0;
}
.parallax > use {
    animation: move-forever 25s cubic-bezier(.55, .5, .45, .5) infinite;
}

    .parallax > use:nth-child(1) {
        animation-delay: -2s;
        animation-duration: 7s;
    }

    .parallax > use:nth-child(2) {
        animation-delay: -3s;
        animation-duration: 10s;
    }

    .parallax > use:nth-child(3) {
        animation-delay: -4s;
        animation-duration: 13s;
    }

    .parallax > use:nth-child(4) {
        animation-delay: -5s;
        animation-duration: 20s;
    }

@keyframes move-forever {
    0% {
        transform: translate3d(-90px, 0, 0);
    }

    100% {
        transform: translate3d(85px, 0, 0);
    }
}


/*Shrinking for mobile*/

@media (max-width: 768px) {
    .waves,.ewaves {
        height: 40px;
        min-height: 40px;
    }
    .agreelabel{
        font-size:11px;
    }
    .headerdiv {
        padding-top: 3rem;
        padding-bottom: 3rem;
    }
   /* .headerdiv{
        margin-top:5rem;
    }*/
}

/* Waves Animation end*/


/* Get started button animation start*/
.getStartedbtn {
/*    margin-top: calc(50% + 25px);
*/    position: relative;
    display: inline-block;
    width: 277px;
    height: 50px;
    font-size: 1em;
    font-weight: bold;
    line-height: 60px;
    text-align: center;
    text-transform: uppercase;
    background-color: transparent;
    cursor: pointer;
    text-decoration: none;
    font-family: 'Roboto', sans-serif;
    font-weight: 900;
    font-size: 17px;
    letter-spacing: 0.045em;
}

    .getStartedbtn svg {
        position: absolute;
        top: 0;
        left: 0;
    }

        .getStartedbtn svg rect {
           /* stroke: #EC0033;*/
            stroke-width: 4;
            stroke-dasharray: 353, 0;
            stroke-dashoffset: 0;
            -webkit-transition: all 600ms ease;
            transition: all 600ms ease;
        }

    .getStartedbtn span {
        background: rgb(255,130,130);
        background: -moz-linear-gradient(left, rgba(35 68 220) 0%, rgba(69 209 50) 100%);
        background: -webkit-linear-gradient(left, rgba(35 68 220) 0%,rgba(69 209 50) 100%);
        background: linear-gradient(to right, rgb(35 68 220) 0%,rgb(69 209 50) 100%);
        filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ff8282', endColorstr='#e178ed',GradientType=1 );
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }

    .getStartedbtn:hover svg rect {
        stroke-width: 4;
        stroke-dasharray: 196, 543;
        stroke-dashoffset: 437;
    }
    /* get started btn animation end */