/*DJ*/

:root {
  --site-color: #e0e7fd;
  --site-text-color: #000;
  --site-background-color: #e0e7fd;
  --site-hover-color: #e0e7fd;
  --site-button-color: #000;
  --site-primary-font: "Inter", sans-serif;
  --site-white-color: #e0e7fd;
  --site-black-color: #000000;
}
* {
  cursor: none;
}
body::-webkit-scrollbar {
  width: 0 !important;
}

body {
  overflow: -moz-scrollbars-none;
}

body {
  -ms-overflow-style: none;
}

body {
  margin: 0;
  font-family: var(--site-primary-font);
  font-weight: 200;
  line-height: 1;
  position: relative;
  width: 100%;
  background-color: #000;
  color: #e0e7fd;
  height: auto;
}

body.black .canvas-bg.js-animate {
  color: #e0e7fd;
  background: #000;
}
body.white .canvas-bg.js-animate {
  color: #000;
  background: #e0e7fd;
}
.canvas-bg.js-animate {
  opacity: 1;
}

ul,
li {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
body.black {
  color: #e0e7fd;
  background: #000;
}
body.white {
  color: #000;
  background: #e0e7fd;
}

.black img.black {
  display: block;
}
.black img.white {
  display: none;
}

.white img.black {
  display: none;
}
.white img.white {
  display: block;
}
img {
  max-width: 100%;
  height: auto;
  width: 100%;
}

a {
  color: #e0e7fd;
  text-decoration: none;
}

#no-cookie-banner {
  position: fixed;
    bottom: 0;
    width: 95%;
    background-color: rgba(0, 0, 0, 0.75);
    color: #fff;
    text-align: center;
    padding: 0% 2.5%;
    font-size: 11px;
    z-index: 1000;
    display: flex
;
    align-items: center;
    justify-content: space-between;
}
#no-cookie-banner a {
    color: #e0e7fd;
    text-decoration: underline;
}

#no-cookie-banner a.close {
  color: #e0e7fd;
  text-decoration: none;
}

.black a {
  color: #e0e7fd;
}

.white a {
  color: #000;
}

a:hover {
  /* opacity: 0.5; */
  cursor: pointer;
}

section {
  position: relative;
}
button {
  background-color: var(--site-button-color);
  color: var(--site-text-color);
  width: 100%;
  display: block;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  border: 1px solid var(--site-color);
}

.overlayload {
  width: 100%;
  height: 100vh;
  background: #000;
  position: fixed;
  z-index: 20;
}
.overgifwrap {
  width: 12.5vw;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* lOADING VIDEO :start */
.loader {
  position: relative;
  z-index: 99999;
}
.loading-bar {
  display: block;
  height: 0.3vw;
  width: 100%;
  background: #000;
  box-shadow: inset 0px 0px 0px 1px #000;
  border-radius: 50px;
  overflow: hidden;
  margin-top: 1.5vw;
}

.loading-bar .progress-bar {
  display: block;
  height: 100%;
  width: 100%;
  background: #e0e7fd;
  border-radius: 50px;

  -webkit-animation: progress-animation 5s ease-in-out;
  animation: progress-animation 5s ease-in-out;
}

body .cursor {
  pointer-events: none;
}

#circle {
  position: fixed;
  z-index: 100;
  width: 32px;
  height: 32px;
  background-color: white;
  background: url('../img/hubbergraphiclogo.svg') no-repeat scroll center top / cover;

  pointer-events: none;
  transition: background ease-in 10ms, box-shadow ease-in 150ms,
    transform ease-in 150ms;
  transform: translate3d(0, 0, 0) scale(1);
  /* mix-blend-mode: difference; */
}
#circle.active {
  transform: translate3d(0, 0, 0) scale(3);
}

section {
  opacity: 0;
  transition: translate 1500ms ease-in-out, opacity 1500ms ease-in-out;
  translate: 0 0.1vw;
}
section.active {
  opacity: 1;
  translate: 0;
}
.nav a {
  font-size: 1.5vw;
  text-transform: lowercase;
}
.mission {
  margin-right: 2vw;
}
.headerWrap {
  display: flex;
      width: 95%;
      margin: 0 auto;
      padding: 6vh 0px 4vh;
      align-items: end;
      justify-content: space-between;
}
.mainlogo {
  display: block;
  width: 17vw;
  margin-right: 1vw;
}

.switch input {
  display: none;
}

.switch label {
  display: block;
  width: 2.65vw;
  height: 1.4vw;
  padding: 2px 4px;
  border-radius: 5vw;
  border: 1px solid #000;
  cursor: pointer;
  transition: 0.3s;
}

.switch label::after {
  content: "";
  display: inherit;
  width: 1.2vw;
  height: 1.25vw;
  border: 1px solid;
  border-radius: 50%;
  background: #e0e7fd;
  transition: 0.3s;
}

.switch input:checked ~ label {
  border-color: #000;
  background: #e0e7fd;
}

.switch input:checked ~ label::after {
  translate: 1.25vw 0;
  background: #000;
}

.black .switch input ~ label {
  border-color: #e0e7fd;
  /* background: #E0E7FD; */
}
section#header {
  height: 100vh;
}

.headerAnimation,
.midAnimation {
  display: grid;
  justify-items: center;
  align-items: center;
  width: 95%;
  margin: 0 auto;
  grid-template-columns: repeat(18, 1fr);
  column-gap: 1vw;
  row-gap: 2vh;
}

.midAnimation {
  /* width: 90%; */
  margin: 0 auto;
  min-height: 10vw;
  margin-bottom: 3vw;
}
.midAnimation.two {
  width: 100%;
  margin-bottom: 4vw;
}
.headerAnimation .colour {
  width: 0;
  height: 0;
  background: #e0e7fd;
  cursor: pointer;
  color: transparent;
  animation: fly-in 0.33s ease;
  animation-fill-mode: forwards;
  transition-property: background-color;
  transition-duration: 5s;
}

.midAnimation.active .colour {
  background: #e0e7fd;
  width: 0;
  height: 0;
  animation: fly-in 0.33s ease;
  animation-fill-mode: forwards;
  transition-property: background-color;
  transition-duration: 1s;
}
.white .midAnimation.active .colour {
  background: #000;
}
.midAnimation.one .colour {
  /* border-radius: 50%; */
}
.white .colour {
  background: #000;
}
.colour:hover,
.midAnimation.active .colour:hover {
  background: url("../img/logo-white.svg") no-repeat scroll center top / cover;

  transition-duration: 100ms;
  cursor: none;
}

.white .colour:hover,
.white .midAnimation.active .colour:hover {
  background: url("../img/logo-black.svg") no-repeat scroll center top / cover;
  transition-duration: 100ms;
}
@keyframes fly-in {
  100% {
    width: 4vw;
    height: 4vw;
  }
}
.lineWrap {
  position: relative;
}

.lineWrap:before {
  content: "";
  height: 100%;
  width: 0.5px;
  position: absolute;
  left: 2.5%;
  background: #fff;
  z-index: 10;
}

.white .lineWrap:before {
  background: #000;
}
ul.missionul {
  padding-top: 5vw;
}
.missionSection {
  position: relative;

  width: 90%;
  margin: 0 auto;
  padding: 10vh 0;
  display: flex;
  flex-direction: column;
  align-items: start;
  opacity: 0;
}

.missionrightWrap {
  /* width: 55%; */
  z-index: 1;
}

.artistImage {
  margin-bottom: 15vh;
}
.chargehubs .artistImage1 {
  opacity: 0;
}

.missionSection .missionleftWrap {
  width: 72%;
  z-index: 2;
  margin: 0 0 0 auto;
}

.missionSection .mission-content {
  text-transform: initial;

  margin-bottom: 2vw;
}
.missionSection .mission-content.two {
  margin-bottom: 0;
}

.chargehubs .missionSection .mission-content.two {
  color: #e0e7fd;
}

ul.missionul li:nth-child(2n) .missionSection {
  display: flex;
}

ul.missionul li.mission1 .missionSection.aniOne {
  animation: fadeInUp 2s ease-in-out;
  opacity: 1;
}

ul.missionul li.mission2 .missionSection.aniTwo {
  animation: fadeInUp 2s ease-in-out;
  opacity: 1;
}

section#concept {
  width: 90%;
  margin: 0 auto;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  margin-top: 8vw;
}
.conceptTit {
  text-align: right;
}
.conceptImg {
  width: 80%;
  margin: 2vw auto;
  opacity: 0;
}
.aniThree .conceptImg {
  animation: fadeInUp 2s ease-in-out;
  opacity: 1;
}
.cdisclaimer {
  font-size: 0.7vw;
}
.matterContentWrap {
  position: relative;
  width: 90%;

  margin: 5vw auto;
}

.matterTitlemain {
  font-size: 5vw;

  margin-bottom:6vw;
  font-weight: 300;
}
.aniTwo .eline {
  position: absolute;
  height: 0px;
  width: 1px;
  border-right: 1px solid;
  border-top: 1px solid;
  -webkit-animation: inc 3s;
  -moz-animation: inc 3s;
  -o-animation: inc 3s;
  animation: inc 3s;
  animation-fill-mode: forwards;
  left: -2.75%;
  top:47%;
}
.aniTwo .eline:after {
  content: "";
  position: absolute;
  height: 0;
  width: 0px;
  border-top: 1px solid;
  /* border-bottom: 1px solid #fff; */
  border-right: 1px solid;
  -webkit-animation: inc1 1s;
  -moz-animation: inc1 3s;
  -o-animation: inc1 3s;
  animation: inc1 3s;
  animation-fill-mode: forwards;
  left: 100%;
  top: 100%;
  animation-delay: 3s;
}
.aniFour .eline {
  position: absolute;
  height: 0px;
  width: 1px;
  border-right: 1px solid;
  border-top: 1px solid;
  -webkit-animation: increase 3s;
  -moz-animation: increase 3s;
  -o-animation: increase 3s;
  animation: increase 3s;
  animation-fill-mode: forwards;
  left: -2.75%;
}

.aniFour .eline:after {
  content: "";
  position: absolute;
  height: 10vw;
  width: 0px;
  border-bottom: 1px solid;
  -webkit-animation: increase1 1s;
  -moz-animation: increase1 3s;
  -o-animation: increase1 3s;
  animation: increase1 3s;
  animation-fill-mode: forwards;
  left: 100%;

  animation-delay: 1.5s;
}
@keyframes inc {
  50% {
    height: 1px;
    width: 28.5%;
  }

  100% {
    height: 13vw;
    width: 28.5%;
  }
}

@keyframes inc1 {
  50% {
    height: 1px;
    width: 70vw;
  }

  100% {
    height: 25vw;
    width: 70vw;
  }
}

@keyframes increase {
  50% {
    height: 1px;
    width: 65%;
  }

  100% {
    height: 10vw;
    width: 65%;
  }
}

@keyframes increase1 {
  50% {
    width: 0vw;
  }

  100% {
    width: 58%;
  }
}

section#matter .matterContent {
  display: flex;
  align-items: start;
  flex-direction: column;
  opacity: 0;
}

section#matter.aniFour .matterContent {
  animation: fadeInUp 2s ease-in-out;
  opacity: 1;
}
.matterDesc1 {
  width: 60%;

  font-size: 1.3vw;
  line-height: 1.3;

  text-align: left;
  margin-top: 3vw;
}
.matterDesc2 {
  width: 30%;
  margin: 0 0 0 auto;
  font-size: 1.3vw;
  line-height: 1.3;
  text-align: left;
  font-style: italic;
  background: #e0e7fd;
  color: #000;
  padding: 5% 3.9%;
  font-weight: 300;
  margin-top: 5vw;
}
.matterDesc2 div {
  text-align: right;
}
#container {
  width: 85%;
  margin: 0 auto;
  position: relative;
}

.miniTitMain {
  font-size: 4vw;
  font-weight: 300;
}

.miniTitSub {
  font-size: 2vw;
  opacity: 0;
}

.aniThree .miniTitSub{
  animation: fadeInLeft 2s ease-in-out;
  opacity: 1;
}
.missionConDesc {
  font-size: 1.3vw;
  line-height: 1.3;

  width: 67%;
  color: #fff;
}
.white .missionConDesc {
  color: #000;
}
#team .carousel-contents {
  opacity: 0;
}
#team.aniFive .carousel-contents {
  animation: fadeInUp 2s ease-in-out;
  opacity: 1;
}
.teamTitle {
  font-size: 4vw;
  margin-bottom: 4%;

  text-align: right;
  font-weight: 300;
}

.teamTitle:before {
  content: "";
  width: 0;
  height: 0.5px;
  background: #fff;
  position: absolute;
  left: 2.5%;
  top: 8.5%;
  transition: width 1.5s ease-in-out;
}

.white .teamTitle:before {
  background: #000;
}
#team.aniFive .teamTitle:before {
  width: 92.5%;
}
.team-carousel {
  width: 90%;
  margin: 0 auto;
  padding-bottom: 10vw;
}

#team .owl-theme .owl-nav {
  margin-top: 2vw;
  text-align: left;
}
#team .owl-carousel {
  display: block;
}
#team .owl-carousel .owl-nav button.owl-next,
#team .owl-carousel .owl-nav button.owl-prev {
  display: inline-block;
  width: 2vw;
  margin: 0;
}

.memberImg {
  position: relative;
}

.profName {
  font-size: 1.3vw;
  margin: 1vw auto 0.5vw;
  font-weight: 500;
}
.profPosition {
  font-size: 1.3vw;
}
section.footer {
  text-align: center;

  width: 95%;
  margin: 0 auto;
  font-size: 0.8vw;
}
.footerline {
  margin: 2vw auto;
  border-width: 0.1px;
}
.copyright-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  margin-bottom: 2.5vw;
}
.footerlogo {
  width: 8vw;
  margin-bottom: 1vw;
}
.copyright-links span,
.copyright-links a {
  font-size: 1vw;
  line-height: 1;
}
.copyright-links a{
  text-decoration: underline;
}

.contactTitle {
  font-size: 2vw;

  text-align: right;
  margin-bottom: 1vw;
}

.contactLink a {
  font-size: 1vw;
  line-height: 1;
  font-weight: 600;
}
a.linkedin {
  border: 1px solid;
  padding: 0.3vw 0.5vw;
  border-radius: 50%;
  box-sizing: border-box;
  margin-left: 0.5vw;
}
.mob {
  display: none;
}

.VideoWrap {
  width: 100%;
  height: 100vh;
}
.videoText {
  font-size: 7vw;
  position: absolute;
  bottom: 3vw;
  left: 2vw;
  color: #e0e7fd;
  font-weight: 400;
}
video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.carouselWrap .item {
  width: 31%;
  display: inline-block;
  font-size: 0;
  margin-right: 3%;
  position: relative;
  vertical-align: top;
}
.carouselWrap .item:last-child {
  margin-right: 0%;
}

.closed .vertical {
  transition: all 0.5s ease-in-out;
  transform: rotate(-90deg);
}
.closed .horizontal {
  transition: all 0.5s ease-in-out;
  transform: rotate(-90deg);
  opacity: 1;
}

.opened {
  opacity: 1;
}
.opened .vertical {
  transition: all 0.5s ease-in-out;
  transform: rotate(90deg);
}
.opened .horizontal {
  transition: all 0.5s ease-in-out;
  transform: rotate(90deg);
  opacity: 0;
}

.circle-plus {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
}

.circle-plus .circle {
  position: absolute;
  width: 3vw;
  height: 3vw;
  /* border-radius: 50%; */
  background: #e0e7fd;
  bottom: 1vw;
  right: 1vw;
}

.circle-plus .circle .horizontal {
  position: absolute;
  background-color: black;
  width: 1.36vw;
  height: 0.26vw;
  left: 28%;
  top: 45%;
}

.circle-plus .circle .vertical {
  position: absolute;
  background-color: black;
  width: 0.26vw;
  height: 1.36vw;
  left: 47%;
  top: 26%;
}

.circle-plus.opened .bioInfo {
  font-size: 1.25vw;
  line-height: 1.25;
  padding: 3% 5%;
  height: 96%;
  background: rgba(0, 0, 0, 0.5);

  color: #fff;
}
@media only screen and (max-width: 1024px) {
  #circle {
    display: none;
  }
}
@media only screen and (max-width: 768px) and (orientation: portrait) {
  .colour.num154,
  .colour.num155,
  .colour.num156,
    .colour.num157,
    .colour.num158,
    .colour.num159,
    .colour.num160,
    .colour.num161,
    .colour.num162 {

    display: none;
  }
  .lineWrap:before {
    content: "";
   
    left: 5%;

}
  .nav a {
    font-size: 20px;
}
  .mission {
    margin-right: 5px;
   
}
  .headerAnimation,
  .midAnimation {
    display: grid;
    justify-items: center;
    align-items: center;
    width: 80%;
    margin: 0 auto;
    grid-template-columns: repeat(9, 1fr);
    column-gap: 5px;
    row-gap: 10px;
  }
  .headerAnimation{
    width: 95%;
  }
  @keyframes fly-in {
    100% {
      width: 30px;
      height: 30px;
    }
  }
  .headerContent {
    min-height: 80vh;
  }
  #circle {
    display: none;
  }
  .overgifwrap {
    width: 45%;

    top: 45%;
  }
  .mob {
    display: block;
  }
  .desk {
    display: none;
  }

  .videoText {
    font-size: 80px;
    bottom: 5%;
    left: 10%;
    font-weight: 300;
  }
  .headerWrap {
    padding: 6vh 0px 4vh;
    justify-content: space-between;
  }
  .mainlogo {
    width: 55%;
    margin-right: unset;
  }

  .togl .buttonsWrap {
    width: 20vw;

    border-radius: 10vw;

    height: 6vw;
    line-height: 6vw;
    display: flex;
  }
  .togl .buttonsWrap a {
    font-size: 3vw;
  }

  .switch label::after {
    content: "";
    display: inherit;
    width: 13px;
    height: 13px;
  }

  .switch label {
    display: block;

    padding: 2.5px 5px;
    border-radius: 10vw;
    width: 25px;
    height: 15px;

    border-radius: 10vw;
  }
  .switch input:checked ~ label::after {
    translate: 11px 0;
  }

  a.button-down {
    padding: 15px;

    height: 20px;
    width: 20px;

    font-size: 20px;
  }
  .missionSection .mission-content {
    text-transform: initial;
    margin-bottom: 30px;
  }
  .missionSection {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 5vh 0;
    width: 80%;
  }

  .missionConDesc {
    font-size: 25px;
    line-height: 1.5;
    margin-top: 10px;
    width: 100%;
  }
  span.miniImg {
    width: 35px;
    padding-right: 10px;
    padding-bottom: 5px;
  }

  ul.missionul li:nth-child(2n) .missionSection .mission-content span.miniImg {
    padding-right: 0;
    padding-left: 10px;
  }
  .miniTitMain {
    font-size: 50px;
    margin-bottom: 20px;
    position: relative;
  }
  .miniTitMain:before,
  .matterTitlemain:before,
  .matterTitlemain:after {
    content: "";
    width: 0;
    height: 0.5px;
    background: #fff;
    position: absolute;
    left: -6.25%;
    top: 65px;
    transition: width 1.5s ease-in-out;
  }
  .matterTitlemain:before {
    top: -20px;
  }
  .matterTitlemain:after {
    top: 60px;
  }
  .aniOne .miniTitMain:before,
  .aniTwo .miniTitMain:before,
  .aniThree .miniTitMain:before,
  .aniFour .matterTitlemain:before,
  .aniFour .matterTitlemain:after {
    width: 100%;
  }
 .white .miniTitMain:before,
 .white .matterTitlemain:before,
 .white .matterTitlemain:after {
    background: #000;

  }
  span.miniTit {
    font-size: 25px;
  }

  section#concept {
    width: 80%;
    margin: 0 auto;
    min-height: auto;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    margin-top: auto;
  }
  .conceptTit {
    text-align: left;
  }
  .conceptImg {
    width: 100%;
    margin: 50px auto 25px;
  }
  .cdisclaimer {
    font-size: 12px;
  }

  .miniTitSub {
    font-size: 35px;
  }

  .missionrightWrap,
  .missionSection .missionleftWrap {
    width: 100%;
    padding: 0;
  }
  ul.missionul li:nth-child(2n) .missionSection {
    display: flex;
    flex-direction: column;
  }

  .team-carousel {
    width: 80%;
    margin: 0 auto;
    padding-bottom: 0;
    margin-bottom: 75px;
  }
  .teamTitle {
    font-size: 50px;
    margin-bottom: 40px;
  }
  .teamTitle:before {
    top: 65px;
    left: 5%;
  }
  #team.aniFive .teamTitle:before {
    width: 85%;
}
  .profName {
    font-size: 20px;
    margin: 10px auto;
  }
  .profPosition {
    font-size: 20px;
  }

  #team .owl-theme .owl-nav {
    margin-top: 20px;
    text-align: center;
  }
  #team .owl-carousel .owl-nav button.owl-next,
  #team .owl-carousel .owl-nav button.owl-prev {
    width: 30px;
  }
  #team .owl-dots {
    width: 50%;
    margin: 5% auto;
  }
  #team .owl-theme .owl-dots .owl-dot {
    width: 33%;
    margin: 0 auto;
    text-align: center;
  }
  #team .owl-theme .owl-dots .owl-dot span {
    margin: 5px auto;
  }

  .circle-plus .circle {
    width: 60px;
    height: 60px;

    bottom: 10px;
    right: 10px;
  }
  .circle-plus .circle .horizontal {
    width: 30px;
    height: 3px;
    left: 26%;
    top: 50%;
  }
  .circle-plus .circle .vertical {
    width: 3px;
    height: 30px;
    left: 50%;
    top: 26%;
  }
  .circle-plus.opened .bioInfo {
    font-size: 18px;
    line-height: 1.2;
  }
  .carouselWrap .item {
    width: 100%;
    display: block;
    font-size: 0;
    margin-right: unset;
  }
  .contactLink a {
    font-size: 20px;
    line-height: 1.2;
    margin-top: 10px;
  }
  a.linkedin {
    padding: 5px 10px;

    display: block;
    width: 40px;
    margin: 0;
    margin-top: 15px;
  }
  .footerline {
    margin: 20px auto;
    border-width: 0.1px;
  }
  .footerlogo {
    width: 65%;
    margin-bottom: 15px;
  }
  .matterContentWrap {
    position: relative;
    width: 80%;
    margin: 5vh auto;

    display: flex;
    align-items: flex-start;
    flex-direction: column;
  }
  .matterTitlemain {
    font-size: 40px;
    margin-bottom: 20px;
   
  }
  .aniFour .eline,
  .aniTwo .eline {
    display: none;
  }
  .matterDesc1,
  .matterDesc2 {
    width: 100%;
    margin-left: unset;
    font-size: 25px;
    line-height: 1.5;

    margin-top: 20px;
  }
  .matterDesc2 {
    width: 90%;
    padding: 10% 5%;
}
  section#matter .matterContent {
    display: flex;
    align-items: start;
    flex-direction: column;
  }
  .copyright-footer {
    display: flex;
    justify-content: center;
    width: 100%;
    margin-bottom: 20px;
    flex-direction: column-reverse;
    align-items: self-start;
    text-align: left;
  }
  section#contact {
    background: transparent;
    margin: 9vw auto;
  }
  .contactContent {
    display: flex;
    width: 80%;
    align-items: start;
    margin: 0 auto;
    padding: 10% 5%;
    flex-direction: column;
    background-color: #4d5bdf;
    border-radius: 20px;
  }
  .contactTitle {
    font-size: 35px;

    text-align: left;
  }

  .copyright-links span,
  .copyright-links a {
    font-size: 12px;
    color: #606060;
  }
  .copyright-links {
    margin-top: 30px;
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(100px);
  }

  to {
    opacity: 1;
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-100px);
  }

  to {
    opacity: 1;
  }
}

@-webkit-keyframes progress-animation {
  0% {
    width: 0%;
  }
  20% {
    width: 10%;
  }
  40% {
    width: 30%;
  }
  50% {
    width: 60%;
  }
  75% {
    width: 90%;
  }
  100% {
    width: 100%;
  }
}

@keyframes progress-animation {
  0% {
    width: 0%;
  }
  20% {
    width: 10%;
  }
  40% {
    width: 30%;
  }
  50% {
    width: 60%;
  }
  75% {
    width: 90%;
  }
  100% {
    width: 100%;
  }
}
