/*
* Prefixed by https://autoprefixer.github.io
* PostCSS: v8.4.14,
* Autoprefixer: v10.4.7
* Browsers: last 4 version
*/

@import url('https://fonts.googleapis.com/css?family=Exo:400,700');

*
{
    margin: 0;
    padding: 0;
}

body
{
    font-family: 'Exo', sans-serif;
}



#typedtext
{
  font-size: 4.375rem;
  text-align: center;
  color: white;
  font-weight: 700;
}

.area
{
    background-image: url("../images/Background_Hero_Section.jpg"); 
    background-size: cover;
    background-repeat: no-repeat; 
    width: 100%;
    height:100vh;
}

.circles
{
    position: absolute;
    top: 0;
    left: 0;
    width: 60%;
    height: 100%;
    overflow: hidden;
}

.circles li
{
    position: absolute;
    display: block;
    list-style: none;
    width: 1.25rem;
    height: 1.25rem;
    background: rgba(255, 255, 255, 0.2);
    -webkit-animation: animate 25s linear infinite;
            animation: animate 25s linear infinite;
    bottom: -9.375rem;
    
}

.circles li:nth-child(1)
{
    left: 55%;
    width: 5rem;
    height: 5rem;
    -webkit-animation-delay: 0s;
            animation-delay: 0s;
}


.circles li:nth-child(2)
{
    left: 20%;
    width: 1.25rem;
    height: 1.25rem;
    -webkit-animation-delay: 2s;
            animation-delay: 2s;
    -webkit-animation-duration: 12s;
            animation-duration: 12s;
}

.circles li:nth-child(3)
{
    left: 40%;
    width: 1.25rem;
    height: 1.25rem;
    -webkit-animation-delay: 4s;
            animation-delay: 4s;
}

.circles li:nth-child(4)
{
    left: 45%;
    width: 3.75rem;
    height: 3.75rem;
    -webkit-animation-delay: 0s;
            animation-delay: 0s;
    -webkit-animation-duration: 18s;
            animation-duration: 18s;
}

.circles li:nth-child(5)
{
    left: 32%;
    width: 1.25rem;
    height: 1.25rem;
    -webkit-animation-delay: 0s;
            animation-delay: 0s;
}

.circles li:nth-child(7)
{
    left: 35%;
    width: 9.375rem;
    height: 9.375rem;
    -webkit-animation-delay: 7s;
            animation-delay: 7s;
}

.circles li:nth-child(8)
{
    left: 40%;
    width: 1.5625rem;
    height: 1.5625rem;
    -webkit-animation-delay: 15s;
            animation-delay: 15s;
    -webkit-animation-duration: 45s;
            animation-duration: 45s;
}

.circles li:nth-child(9)
{
    left: 25%;
    width: 0.9375rem;
    height: 0.9375rem;
    -webkit-animation-delay: 2s;
            animation-delay: 2s;
    -webkit-animation-duration: 35s;
            animation-duration: 35s;
}

.circles li:nth-child(10)
{
    left: 15%;
    width: 9.375rem;
    height: 9.375rem;
    -webkit-animation-delay: 0s;
            animation-delay: 0s;
    -webkit-animation-duration: 11s;
            animation-duration: 11s;
}



@-webkit-keyframes animate 
{

    0%{
        -webkit-transform: translateY(0) rotate(0deg);
                transform: translateY(0) rotate(0deg);
        opacity: 1;
        border-radius: 50%;
    }
    50%{
    
        border-radius: 30%;
    }

    100%{
        -webkit-transform: translateY(-62.5rem) rotate(720deg);
                transform: translateY(-62.5rem) rotate(720deg);
        opacity: 0;
        border-radius: 50%;
    }

}



@keyframes animate 
{

    0%{
        -webkit-transform: translateY(0) rotate(0deg);
                transform: translateY(0) rotate(0deg);
        opacity: 1;
        border-radius: 50%;
    }
    50%{
    
        border-radius: 30%;
    }

    100%{
        -webkit-transform: translateY(-62.5rem) rotate(720deg);
                transform: translateY(-62.5rem) rotate(720deg);
        opacity: 0;
        border-radius: 50%;
    }

}

@media screen and (max-width: 1200px)
{
    .circles
    {
        width: 100%;
    }
       
}