.ribbonSvg{
	position: absolute;
	top:150px;
	display:block;
	width:100vw;
	height:auto;
}

.line{
	z-index: 10;
	fill:none;
	stroke-width: 2;
	stroke-linecap: round;
	stroke-dasharray: 2000;
	stroke-dashoffset: 2000;
	animation: draw 2.6s ease-out forwards;
}

@keyframes draw{ to { stroke-dashoffset: 0; } }

@media screen and (max-width: 480px) {
	
	.ribbonSvg{
		top:700px;
	}

	.line{
	  stroke-width: 6;
	  animation: draw 1.8s ease-out forwards;
  }
}