main {
  overflow: hidden;
  position: relative;
  --tiles-img-aspect-ration: 2.1645;
}

.tiles {
  /* --tiles-height: 38vw; */
  --tiles-height: 40vw; 
  height: var(--tiles-height);
  position: relative;
  overflow: hidden;
}

.tiles--columns-rotated {
  /* --tiles-height: 180vmax; */
}

.tiles__wrap {
  width: 150%;
  --tileswrap-height: var(--tiles-height);
  height: var(--tileswrap-height);
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate3d(-50%, -50%, 0);
}

.tiles--columns-rotated .tiles__wrap {
  width: 150%;
  display: flex;
  /* transform: translate3d(-50%,-50%,0) rotate(-22.5deg); */
  /* transform: translate3d(-50%, -50%, 0) rotate(-32.5deg); */
  transform: translate3d(-50%, -50%, 0) rotate(-37.5deg);
  /* transform:translate3d(-50%,-50%,0)  translateZ(100px) rotateX(35.5deg) rotateZ(-22deg); */
  left: 50%;
  top: 50%;
  align-items: center;
  justify-content: center;
}

.tiles__line {
  display: flex;
}

.tiles__line-img {
  --tile-margin: 2vw;
  flex: none;
  width: calc(16.6666% - var(--tile-margin) * 2);
  height: calc(var(--tileswrap-height) / 3 - (3 * var(--tile-margin) / 2));
  margin: var(--tile-margin);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  box-shadow: -40px 40px 60px rgba(0, 0, 0, 1);
}

.tiles--darker .tiles__line-img {
  /* opacity: 0.9; */
}

.backtop {
  align-self: center;
  margin: auto 0;
  font-size: 6vw;
  cursor: pointer;
  text-decoration: none;
}

.backtop::after {
  content: "\2934";
  font-size: 3vw;
  vertical-align: top;
  margin-left: 1rem;
}

/*! locomotive-scroll v3.5.4 | MIT License | https://github.com/locomotivemtl/locomotive-scroll */
html.has-scroll-smooth {
  overflow: hidden;
}

html.has-scroll-dragging {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.has-scroll-smooth body {
  overflow: hidden;
}

.has-scroll-smooth [data-scroll-container] {
  min-height: 100vh;
}

.c-scrollbar {
  position: absolute;
  right: 0;
  top: 0;
  width: 11px;
  height: 100vh;
  /*transform-origin: center right;*/
  transition: transform 0.3s, opacity 0.3s;
  opacity: 0;
}
.c-scrollbar:hover {
  transform: scaleX(1.45);
}
.c-scrollbar:hover,
.has-scroll-scrolling .c-scrollbar,
.has-scroll-dragging .c-scrollbar {
  opacity: 1;
}

.c-scrollbar_thumb {
  position: absolute;
  top: 0;
  right: 0;
  background-color: black;
  opacity: 0.5;
  width: 7px;
  border-radius: 10px;
  margin: 2px;
  cursor: -webkit-grab;
  cursor: grab;
}
.has-scroll-dragging .c-scrollbar_thumb {
  cursor: -webkit-grabbing;
  cursor: grabbing;
}

/* ## SIZES ## */

.tiles--columns-rotated .tiles__line {
  /* width: 20vmax; */
  flex: none;
  padding: 0 1.5vw;
  display: block;
}
.tiles--columns-rotated .tiles__line:nth-child(even) {
  margin-top: -20vmax;
}
.tiles--columns-rotated .tiles__line-img {
  /* height: 40vmax; */
  /* height: 35vmax; */
  --tile-margin: 3vw 0;
  width: 15vmax;
  height: calc(15vmax / 0.462);
}
@media screen and (max-width: 990px) {
  .tiles {
    height: 42vw;
  }

  .tiles__line-img {
    box-shadow: -20px 20px 30px rgba(0, 0, 0, 1);
  }
  .tiles--columns-rotated .tiles__line {
    padding: 0 1.5vw;
  }

  .tiles--columns-rotated .tiles__line-img {
    width: 12vmax;
    height: calc(12vmax * var(--tiles-img-aspect-ration));
  }
}

@media screen and (max-width: 500px) {
  .tiles {
    height: 55vw;
  }
  .tiles__line-img {
    box-shadow: -10px 10px 15px rgba(0, 0, 0, 1);
  }
  .tiles--columns-rotated .tiles__line {
    padding: 0 2.5vw;
  }

  .tiles--columns-rotated .tiles__line-img {
    width: 10vmax;
    height: calc(10vmax * var(--tiles-img-aspect-ration));
  }
}


/*# sourceMappingURL=/tile-scroll-base.a790ce87.css.map */