.group {
  width: 80%;
  margin: 0 auto;
}

.group > div {
  border: 5px solid rgba(38, 26, 43, 0.2);
  box-sizing: border-box;
}

.group > div:not(:last-child) {
  border-right: none;
}

.vultext {
  margin-bottom: 50px;
}

.vultext2 {
  height: 600px;
}

@keyframes hide {
    0% {opacity: 0;}
    100% {opacity: 0;}
}

@keyframes text-easeIn {
    0% {opacity: 0;}
    50% {opacity: 0;}
    100% {opacity: 1;}
}

@keyframes ani-one {
    0% {width: 0%;}
    1% {width: 0%;}
    100% {width: 50%;}
}

@keyframes ani-two {
    0% {width: 0%;}
    1% {width: 0%;}
    100% {width: 30%;}
}

@keyframes ani-three {
    0% {width: 0%;}
    1% {width: 0%;}
    100% {width: 20%;}
}

.one {
  width: 40%;
  height: 100px;
  /*background-color: rgba(38, 26, 43, 0.2);*/
  background-color: #2eac66;
  border-radius: 5px 0 0 5px;
  float: left;
  animation-name: hide, ani-one;
  animation-duration: 0s, 1s;
  animation-delay: 0s, 0s;
}

.two {
  width: 37%;
  height: 100px;
  /*background-color: rgba(38, 26, 43, 0.4);*/
  background-color: #006633;
  float: left;
  animation-name: hide, ani-two;
  animation-duration: 1s, 1s;
  animation-delay: 0s, 1s;
}

.three {
  width: 23%;
  height: 100px;
  /*background-color: rgba(38, 26, 43, 0.6);*/
  background-color: #6d757a;
  border-radius: 0 5px 5px 0;
  float: left;
  animation-name: hide, ani-three;
  animation-duration: 2s, 1s;
  animation-delay: 0s, 2s;
}

h3 {
  font-family: arial;
  text-align: center;
  font-size: 20px;
  line-height: 60px;
  color: white;
  opacity: 0.7;
}

/* Below code is purely for aesthetics */

body {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100vw;
  height: 100vh;
  margin: 0;
  box-sizing: border-box;
  /*background-color: #8EC5FC;*/
  /*background-image: linear-gradient(62deg, #8EC5FC 26%, #E0C3FC 100%);*/
  padding: 40px;
}