body{
   margin: 0;
}

#background{
   background-color:#E4F6FF;
   height: 150px;
}

#Line_1222, #Line_1223,#Line_1224,#Line_1225,#Line_1226,#Line_1227{
    color: black;
    opacity: 0.6;
      stroke-width: 5;
      stroke-linecap: round;
      stroke-dasharray: 0.5 10;
      animation: animation_bfcj4x 400ms linear infinite;
  }
  @keyframes animation_bfcj4x{to{stroke-dashoffset:10;}}

  svg g circle {
   animation: pulse 4s infinite;
   transform-origin: center center;
   overflow: visible;
   background-color: black;
  }

  #Ellipse_318,#Ellipse_318-2,#Ellipse_318-3,#Ellipse_318-4,#Ellipse_318-5,.icon-circle-first {
    transform-origin: center center;
    animation: pulse-me 3s linear infinite;
  }

  #Ellipse_319,#Ellipse_319-2,#Ellipse_319-3,#Ellipse_319-4,#Ellipse_319-5{
     r:40;
     animation: pulse 4s infinite;
     transition: 0.5s;
  }

  #Ellipse_319:hover,#Ellipse_319-2:hover,#Ellipse_319-3:hover,#Ellipse_319-4:hover,#Ellipse_319-5:hover{
   r:50;
}

.linkovi:hover{
   transform: translateY(-15px);
}

.linkovi{
   transition: all 0.2s;
   transform-origin: -100%;
   width: 100;
}

  @keyframes pulse {
    0%   { opacity: 0.2 }
    25%  { opacity: 0.275 }
    50%  { opacity: 0.35 }
    75%  { opacity: 0.275 }
    100% { opacity: 0.2 }
  }

  @keyframes pulse-me{
      0%{ r: 30; opacity: 0; }
      50%{ opacity: 0.1; }
      70%{ opacity: 0.09; }
      100%{ r: 75; opacity: 0; }
  }