.angar{
    display:flex;
    width:100%;
    /* background:red; */
    height:400px;
    position:absolute;
    z-index:99;
    justify-content: center;
    align-items: center;
    top:50px;
}
.cohete {
    width: 32px;
    height: 90px;
    display: block;
    margin: 20px auto;
    position: relative;
    border-radius: 50% 50% 0 0;
    border-bottom: 10px solid #C8742F;
    background-color: #FFF;
    background-image: radial-gradient(ellipse at center, #FFF 34%, #C8742F 35%, #C8742F 54%, #FFF 55%), linear-gradient(#C8742F 10px, transparent 0);
    background-size: 28px 28px;
    background-position: center 20px , center 2px;
    background-repeat: no-repeat;
    box-sizing: border-box;
    animation: animcoheteBack 1s linear infinite alternate;
    z-index:99;
  }
  .cohete::before {
    content: '';  
    box-sizing: border-box;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 64px;
    height: 44px;
    border-radius: 50%;
    box-shadow: 0px 15px #C8742F inset;
    top: 67px;
  }
  .cohete::after {
    content: '';  
    position: absolute;
    left: 50%;
    transform: translateX(-50%) rotate(45deg);
    width: 34px;
    height: 34px;
    top: 112%;
    background: radial-gradient(ellipse at center, #ffdf00 8%, rgba(249, 62, 0, 0.6) 24%, rgba(0, 0, 0, 0) 100%);
    border-radius: 50% 50% 0;
    background-repeat: no-repeat;
    background-position: -44px -44px;
    background-size: 100px 100px;
    box-shadow: 4px 4px 12px 0px rgba(255, 61, 0, 0.5);
    box-sizing: border-box;
    animation: animcohete 1s linear infinite alternate;
  }
  .c-logo{
    position: absolute;
    width: 20px;
    height: 20px;
    background-image: url(/img/150x150-1.png);
    background-position: center;
    border-radius: 100px;
    margin-top: 24px;
    margin-left: 6.5px;
    background-size: contain;
  }
  
  @keyframes animcoheteBack {
    0%, 30%, 70% {
      transform: translateY(0px);
    }
    20%, 40%, 100% {
      transform: translateY(-5px);
    }
  }
  
  @keyframes animcohete {
    0% {
      box-shadow: 4px 4px 12px 2px rgba(255, 61, 0, 0.75);
      width: 34px;
      height: 34px;
      background-position: -44px -44px;
      background-size: 100px 100px;
    }
    100% {
      box-shadow: 2px 2px 8px 0px rgba(255, 61, 0, 0.5);
      width: 30px;
      height: 28px;
      background-position: -36px -36px;
      background-size: 80px 80px;
    }
  }