.individual-page-hubdb__image-text{
  display:grid;
  grid-column-gap: 2%;
  grid-row-gap: 25px;
  grid-template-columns: 35% 63%;
}
.individual-page-hubdb__image-container{
  text-align:center;
  line-height:0;
  margin-bottom:35px;
}
.individual-page-hubdb__start-end{
  display: flex;
  flex-direction:column;
  margin-top:30px;
  margin-bottom:20px;
}
.individual-page-hubdb__address ul{
  list-style:none;
  padding-left:0;
}
.individual-page-hubdb__cta{
  margin-top:35px;
}
.individual-page-hubdb__navigation{
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top:200px;
}
.individual-page-hubdb__navigation a{
  border-bottom:none;
}
.individual-page-hubdb__navigation p{
  margin-bottom:5px;
}
.individual-page-hubdb__next{
  text-align:right;
}
@media(max-width:992px){
  .individual-page-hubdb__image-text{
    grid-template-columns: 100%;
  }
  .individual-page-hubdb__navigation{
    flex-direction:column;
    align-items:start;
    gap:40px;
  }
  .individual-page-hubdb__next{
    text-align:left;
  }
}

{#*************** PROGRESS BAR ****************#}
.individual-page-hubdb__progress-container {
  width: 100%;
  position:fixed;
  top:0;
  left:0;
  z-index:20;
}
.individual-page-hubdb__progress-bar {
  width: 0;
  height: 11px;
  background-color: #1d1d1d;
  animation: fillProgress 0.4s ease-in-out forwards;
}

@keyframes fillProgress {
  from {
    width: 0;
  }
  to {
    width: 100%;
    display:none;
  }
}