/*.logo {
    margin-top: 0px;
    max-width: 350px;
}*/
/***********************************************
               ANIMAÇÃO-LOGO-HOME
***********************************************/
.path {
  stroke-dasharray: 2200;
  stroke-dashoffset: 2200;
  animation: draw 5s linear alternate infinite;
}

@keyframes draw {
  from {
    fill-opacity: 0;
    stroke-dashoffset: 2200;
    stroke-width: 2;
  }
  to {
    stroke-dashoffset: 0;
    stroke-width: 2;
/*    stroke: #F5B111;*/
  }
}

.svg-circle {
  width: 20px;
  height: 20px;
  padding-top: 4px;
/*  background: #eee;*/
}
.svg-circle #shape {
  fill: none;
  stroke: white;
  stroke-width: 5;
/*  transition: all 15s ease-in-out;*/
  animation: draw 30s linear infinite;
}

/*path {
    stroke: #0092D5;
    stroke-width: 2px!important;
    stroke-dasharray: 10;
    animation: 4s draw;
}*/
/*
@keyframes draw{
0% {
    fill-opacity: 0;
    stroke-dashoffset: 300;
}
70% {
    fill-opacity: 0;
    stroke: #0092D5;
}
100% {
    fill-opacity: 1;
    stroke-dashoffset: 0;
    stroke: none!important;
}
}*/
