/*INDEX*/
.index-staff {
  width: 100%;
  height: 25vh;
  background-image: url('../images/staff.jpg');
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  display: flex;
  justify-content: center;
  align-items: center;
}

.index-staff h2 {
  font-family: Catamaran;
  font-size: 60px;
  font-weight: 900;
  line-height: 75px;
  color: #000000;
  text-align: left;
  text-shadow: 2px 2px 8px #7A7A7A;
}

.index-click {
  display: block;
  font-family: Catamaran;
  font-size: 26px;
  color: #FFFFFF;
  text-transform: uppercase;
  line-height: 38px;
  border: 5px solid #252188;
  margin-right: 20px;
  margin-left: 20px;
  margin-top: 30px;
  padding: 0 20px;
}

.index-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.index-links .index-boxlink-staff {
  margin: 16px;
  width: calc(20% - 32px); /* Adjust the width as per your preference */
}

.index-links .index-boxlink-staff .index-staff-square {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 100%;
  overflow: hidden;
}

.index-links .index-boxlink-staff .index-staff-square img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media only screen and (max-width: 1000px) {
  .index-links .index-boxlink-staff {
    width: calc(50% - 32px); /* Adjust the width as per your preference */
  }
}
