:root {
  --AMOUNT_OF_IMGS_ON_SCREEN_HOR: 5;
  --WIDTH_BAND_DIVS: calc(100% / var(--AMOUNT_OF_IMGS_ON_SCREEN_HOR));
  --AMOUNT_OF_IMGS_ON_SCREEN_VERT: 2;
  --HEIGHT_BAND_DIVS: calc(100% / var(--AMOUNT_OF_IMGS_ON_SCREEN_VERT));
}

html,
body {
  margin: 0;
  padding: 0;
  height: 100%;
  width: 100%;
  background-color: #ffffff;
  overflow: hidden;
}

.band {
  height: 50%;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.under-text-band {
  height: 20%;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
}

.band-div-slide {
  position: absolute;
  width: var(--WIDTH_BAND_DIVS);
  height: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translateX(0%);
}

div.band-div-slide[dir="left"] {
  left: 100%;
}

div.band-div-slide[dir="right"] {
  left: calc(var(--WIDTH_BAND_DIVS) * -1);
}

div.band-div-slide[dir="up"] {
  top: 100%;
}

div.band-div-slide[dir="down"] {
  top: calc(var(--HEIGHT_BAND_DIVS) * -1);
}

.band-div-slide img {
  max-width: 95%;
  max-height: 95%;
  object-fit: contain;
}

.vauterin-thirry-card {
  font-family: "Hiragino Sans GB", sans-serif;
  text-align: center;
  color: #555;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}

.vt-contact-wrapper {
  display: flex;
  justify-content: space-between;
  font-size: clamp(0.1rem, 2vw, 0.9rem);
  width: 95%;
}

.vt-title {
  font-size: clamp(1rem, 2vw, 1.8rem);
  font-weight: bold;
}

.vt-subtitle {
  font-size: clamp(0.1rem, 0rem + 2vw, 1.1rem);
  font-weight: normal;
}

.vt-office-left {
  width: 28.5%;
  text-align: left;
  line-height: 1.3;
}

.vt-office-right {
  width: 28.5%;
  text-align: right;
  line-height: 1.3;
}

.webdev-card {
  width: 5%;
}

@media (max-width: 650px) {
  #band-2 {
    height: 0%;
  }

  #band-1 {
    height: 100%;
  }

  .band-div-slide {
    position: absolute;
    width: 100%;
    height: var(--HEIGHT_BAND_DIVS);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translateY(0%);
  }

  .vt-contact-wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: auto;
  }

  .vt-title-block {
    order: -1;
    grid-column: 1 / -1;
  }

  .vt-office-right {
    width: 100%;
  }

  .vt-office-left {
    width: 100%;
  }
}
