.storage-location {
  padding: 72px 0 96px;
}
.storage-location .heading {
  text-align: center;
  margin: 0 0 72px;
}
.storage-location .heading h2 {
  color: #000000;
  font-size: 45px;
  line-height: 50px;
  font-weight: 700;
  font-family: 'Poppins', sans-serif;
  margin: 0;
}
.storage-location .flex-layout {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
}
.storage-location .flex-layout .name-holder {
  width: calc(100%/4 - 24px);
  display: flex;
  justify-content: center;
  align-items: center;
}
.storage-location .flex-layout .name-holder a {
  display: inline-block;
  color: #333f48;
  font-size: 18px;
  line-height: 25px;
  font-weight: 500;
  font-family: 'Poppins', sans-serif;
  text-align: center;
  transition: all 0.25s ease;
  position: relative;
}
.storage-location .flex-layout .name-holder a:hover {
  color: #0553ac;
}
.storage-location .flex-layout .name-holder a:hover::before {
  background-color: #0553ac;
}
.storage-location .flex-layout .name-holder a::before {
  content: '';
  display: block;
  width: 100%;
  height: 2px;
  background-color: #333f48;
  position: absolute;
  left: 0;
  right; 0;
  bottom: -1px;
}

@media (max-width: 1152px) {
  .storage-location {
    padding: 50px 0;
  }
  .storage-location .heading {
    margin: 0 0 35px;
  }
  .storage-location .heading h2 {
    font-size: 30px;
    line-height: 36px;
  }
  .storage-location .flex-layout .name-holder {
    width: calc(100%/3 - 24px);
  }
  .storage-location .flex-layout .name-holder a {
    font-size: 15px;
    line-height: 21px;
  }
}

@media (max-width: 767px) {
  .storage-location .flex-layout .name-holder {
    width: calc(100%/2 - 24px);
  }
}

@media (max-width: 479px) {
  .storage-location .flex-layout .name-holder {
    width: 100%;
  }
}