

.inner-image {
  position: relative;
}

.animatedBox {
    position: absolute;
    top: 10%;
    right: 10%;
    background: #00000000;
    width: 38%;
    height: 240px;
}


/* FIRST LINE ANIMATION */
#a1 {
  position: absolute;
  top: 268px;
  left: 8%;
  width: 0px;
  height: 12px;
  background-color: #FFEE50;
}

#a1::before {
    content: '';
    display: block;
    width: 102%;
    height: 7px;
    transform: translate(-5px,-7px) skew(55deg);
    right: -10px;
    position: absolute;
    top: 5px;
}

#a1::after {
    content: '';
    display: block;
    width: 102%;
    height: 7px;
    transform: translate(-5px,0px) skew(-55deg);
    right: -10px;
    position: absolute;
    top: 5px;
}

.grow#a1 {
  width: 40%;
  transition: 1s;
}

/* SECOND LINE ANIMATION */


#a2 {
  position: absolute;
  background-color: #FFEE50;
  height: 12px;
  bottom: 0;
  left: 15%;
  height: 14px !important;
  width: 0px;
}
.grow#a2 {
  width: 85%;
  transition: 1s;
}

#a2::before {
    content: '';
    display: block;
    width: 98.5%;
    height: 7px;
    transform: translate(-5px,-7px) skew(55deg);
    right: 6px;
    top: 7px;
    position: absolute;
}

#a2::after {
    content: '';
    display: block;
    width: 98.5%;
    height: 7px;
    transform: translate(-5px,0px) skew(-55deg);
    right: 6px;
    position: absolute;
    top: 7px;
}

/* THIRD LINE ANIMATION  */

#a3 {
  position: absolute;
  background-color: #FFEE50;
  width: 13px;
  bottom: 0;
  right: 0;
  height: 0px;
}
.grow#a3 {
  height: 100%;
  transition: 1s;
}

#a3::before {
    content: '';
    display: block;
    /* width: 7px; */
    height: 100%;
    transform: translate(0,4px);
    right: 0;
    position: absolute;
}

#a3::after {
    content: '';
    display: block;
    /* width: 7px; */
    height: 100%;
    transform: translate(7px,4px);
    right: 0;
    position: absolute;
    top: 0;
}

/* A4 ANIMATION LINE  */

#a4 {
  position: absolute;
  background-color: #FFEE50;
  top: -7px;
  right: 0;
  height: 12px;
  width: 0px;
}
.grow#a4 {
  width: 100%;
  transition: 1s;
}

#a4::before {
    content: '';
    display: block;
    width: 98.5%;
    /* height: 7px; */
    transform: translate(-5px,-7px);
    right: 0;
    position: absolute;
}

#a4::after {
    content: '';
    display: block;
    width: 98.5%;
    /* height: 7px; */
    transform: translate(-5px,0px);
    right: 0;
    position: absolute;
    top: 0;
}
 

 /* A5 ANIMATION LINE   */


#a5 {
  position: absolute;
  background-color: #FFEE50;
  width: 12px;
  top: -7px;
  left: 0;
  height: 0px;
}
.grow#a5 {
  height: 310px;
  transition: 1s;
  background-color: #FFEE50;
}

#a5::before {
    content: '';
    display: block;
    width: 7px;
    height: 100%;
    transform: translate(0,4px) skew(0, 55deg);
    right: 6px;
    position: absolute;
}

#a5::after {
    content: '';
    display: block;
    width: 7px;
    height: 100%;
    transform: translate(7px,4px) skew(0, -55deg);
    right: 6px;
    position: absolute;
    top: 0;
}

.box.animation .line::before,
.box.animation .line::after {
    background-color: #FFEE50;
}

/* @media (min-width: 992px) {

  .grow#a1 {
    width: 38%;
    transition: 1s;
  }

} */