.box {
  width: 100%;
  height: 100%;
  text-align: center; }

.logo {
  width: 518px;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto; }

.logo path, .logo rect, .logo circle, .logo ellipse {
  stroke: transparent;
  fill: transparent; }

.logo.start .black2 {
  fill: #000;
  stroke: #000;
  stroke-dasharray: 2000;
  stroke-dashoffset: 0;
  stroke-width: 0;
  -webkit-animation: logo_colored 4s ease-in 0s;
  animation: logo_colored 4s ease-in 0s; }

.logo.start .black {
  stroke: #fff;
  fill: #fff;
  stroke-dasharray: 2000;
  stroke-dashoffset: 0;
  stroke-width: 1;
  -webkit-animation: logo_white 4s ease-in 0s;
  animation: logo_white 4s ease-in 0s; }

.logo.addAnima {
  transform: rotate(0deg);
  -webkit-animation: addAnimation 1s ease-out 0s;
  animation: addAnimation 1s ease-out 0s; }

@keyframes logo_colored {
  0% {
    stroke-dashoffset: 2000;
    fill: transparent; }
  50% {
    fill: transparent; }
  100% {
    stroke-dashoffset: 0;
    fill: #aacc03; } }
@-webkit-keyframes logo_colored {
  0% {
    stroke-dashoffset: 2000;
    fill: transparent; }
  50% {
    fill: transparent; }
  100% {
    stroke-dashoffset: 0;
    fill: #aacc03; } }
@keyframes logo_black {
  0% {
    stroke-dashoffset: 2000;
    fill: transparent; }
  50% {
    fill: transparent; }
  100% {
    stroke-dashoffset: 0;
    fill: #000; } }
@-webkit-keyframes logo_black {
  0% {
    stroke-dashoffset: 2000;
    fill: transparent; }
  50% {
    fill: transparent; }
  100% {
    stroke-dashoffset: 0;
    fill: #000; } }
@keyframes logo_white {
  0% {
    stroke-dashoffset: 2000;
    fill: transparent; }
  50% {
    fill: transparent; }
  100% {
    stroke-dashoffset: 0;
    fill: #fff; } }
@-webkit-keyframes logo_white {
  0% {
    stroke-dashoffset: 2000;
    fill: transparent; }
  50% {
    fill: transparent; }
  100% {
    stroke-dashoffset: 0;
    fill: #fff; } }
@keyframes addAnimation {
  0% {
    transform: rotate(0deg); }
  100% {
    transform: rotate(360deg); } }
@-webkit-keyframes addAnimation {
  0% {
    transform: rotate(0deg); }
  100% {
    transform: rotate(360deg); } }
/* BreakPoint 641px
=============================================================*/
@media only screen and (max-width: 641px) {
	.logo {
  width: 88%;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
  padding-bottom:20vw;
	}
	
}