.start-wrapper {
    font-family: "Source Sans", sans-serif;
    font-weight: normal;
    height: calc(60vh - 140px);
    z-index: 1;
    position: relative;
    float:left
}


.start-wrapper-left {
    min-width: 840px;
}

.text-container-start {
    margin-left: calc(11vw - 60px);
    margin-top: 200px;
    max-width: 684px;
    background: #f6f6f6;
    padding: 20px;
    padding-top: 34px;
    border: 0px solid;
    border-radius: 24px;
    box-shadow: 5px 0 0 0 rgba(204, 204, 204, 0.3), -5px 0 0 rgba(204, 204, 204, 0.3);
    overflow: hidden;
}

.underlined-anim-text{
    font-family: "dl-prim-font", sans-serif;
    font-weight: bold;
    font-size: 40px;
}

.underlined-anim-text {
    width: calc(100% + 50px);
    background-image: linear-gradient(transparent calc(100% - 16px), rgb(255 176 121) 10px);
    /* background-image: linear-gradient(transparent calc(100% - 16px), #d7eaff 10px); */
    background-repeat: no-repeat;
    background-size: 0% 100%;
    animation: underline 2.2s forwards;
    animation-delay: .8s;
  }

@keyframes underline {
    to {
        background-size: 100% 100%;
    }
}

.introduction-text {
    font-size: 23px;
    margin-top: 40px;
    font-weight: bold;
}

.introduction-text {
    position: relative;
    animation: fadeInMove 2s;
    -webkit-animation: fadeInMove 2s;
    -moz-animation: fadeInMove 2s;
    -o-animation: fadeInMove 2s;
    -ms-animation: fadeInMove 2s;
}

@keyframes fadeInMove {
0% { 
    opacity: 0; 
    bottom: -50px;
}
100% { 
    opacity: 1; 
    bottom: 0;
}
}

@-moz-keyframes fadeInMove {
0% { 
    opacity: 0; 
    bottom: -50px;
}
100% { 
    opacity: 1; 
    bottom: 0;
}
}

@-webkit-keyframes fadeInMove {
0% { 
    opacity: 0; 
    bottom: -50px;
}
100% { 
    opacity: 1; 
    bottom: 0;
}
}

@-o-keyframes fadeInMove {
0% { 
    opacity: 0; 
    bottom: -50px;
}
100% { 
    opacity: 1; 
    bottom: 0;
}
}

@-ms-keyframes fadeInMove {
0% { 
    opacity: 0; 
    bottom: -50px;
}
100% { 
    opacity: 1; 
    bottom: 0;
}
}

#particle-container {
    position: absolute;
    z-index: 0;
    width: 100%;
    height: 95vh;
}

#particle-container {
    opacity: 0;
    transition: opacity 3s;
}

#particle-container.visible {
    opacity: 1;
}

.typed-cursor {
    opacity: 0!important;
}


svg#refresh-circle-svg {
    fill: grey;
    float:right;
    opacity: 0;
}

/* 
section:nth-of-type(2)  {
	background: linear-gradient(-45deg, #ee7752, #e73c7e, #23a6d5, #23d5ab);
	background-size: 400% 400%;
	animation: animated-gradient 15s ease infinite;
}

@keyframes animated-gradient {
	0% {
		background-position: 0% 50%;
	}
	50% {
		background-position: 100% 50%;
	}
	100% {
		background-position: 0% 50%;
	}
} */


/* Waves Animation */

.svg-anim-waves {
    position:absolute;
    width: 100vw;
    height:15vh;
    margin-bottom:-7px; /*Fix for safari gap*/
    min-height:100px;
    max-height:150px;
    bottom: 5px;
    left: 0;
}

.parallax-anim-waves > use {
    animation: move-forever 25s cubic-bezier(.55,.5,.45,.5) infinite;
  }
  .parallax-anim-waves > use:nth-child(1) {
    animation-delay: -2s;
    animation-duration: 17s;
  }
  .parallax-anim-waves > use:nth-child(2) {
    animation-delay: -3s;
    animation-duration: 20s;
  }
  .parallax-anim-waves > use:nth-child(3) {
    animation-delay: -4s;
    animation-duration: 23s;
  }
  .parallax-anim-waves > use:nth-child(4) {
    animation-delay: -5s;
    animation-duration: 30s;
  }
  @keyframes move-forever {
    0% {
     transform: translate3d(-90px,0,0);
    }
    100% { 
      transform: translate3d(85px,0,0);
    }
  }


@media only screen and (max-width:1200px){
    .svg-anim-waves {
        height:10vh;
    }
}

@media only screen and (max-width: 750px) {
    .text-container-start {
        margin-left: 5vw;
        margin-top: 15vh;
        max-width: 90vw;
    }
}

@media only screen and (max-width: 490px){
    .text-container-start {
        padding: 14px;
    }
    .underlined-anim-text {
        font-size: 31px;
    }
    .introduction-text {
        font-size: 18px;
    }
}

/* End Waves Animation */