@font-face {
  font-family: "Vogue";
  src: url("/static/fonts/Vogue.ttf");
}
@font-face {
  font-family: "Futura";
  src: url("/static/fonts/OPTIFutura Demibold It.ttf");
}
@font-face {
  font-family: "FuturaNit";
  src: url("/static/fonts/OPTIFuturaDemiBold.otf");
}
@font-face {
  font-family: "FuturaLight";
  src: url("/static/fonts/SansSerifFLF.otf");
}
@font-face {
  font-family: "FuturaIt";
  src: url("/static/fonts/Futura Medium Italic.otf");
}
.slides-index {
  position: relative;
  display: flex;
  overflow: hidden;
  margin-top: 10vh;
  margin-bottom: 10vh;
}

.slides {
  position: relative;
  left: 0;
  transition: 1s;
}

.slides img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100vw;
  height: 80vh;
}

img.img_contain {
  -o-object-fit: contain;
     object-fit: contain;
}

.img_mobile {
  display: none;
}

@media (max-width: 800px) {
  .img_computer {
    display: none;
  }
  .img_mobile {
    display: flex;
  }
}
@keyframes swipe-left {
  from {
    left: 0;
  }
  to {
    left: -100vw;
  }
}
.slides-index button {
  border: none;
  display: inline-block;
  padding: 8px 16px;
  vertical-align: middle;
  overflow: hidden;
  text-decoration: none;
  color: #fff;
  background-color: #000;
  text-align: center;
  cursor: pointer;
  white-space: nowrap;
}

.slides-index button:hover {
  color: #000;
  background-color: #ccc;
}

.display-left {
  position: absolute;
  top: 50%;
  left: 0%;
  transform: translate(0%, -50%);
  -ms-transform: translate(0%, -50%);
  border-radius: 0 20% 20% 0;
}

.display-right {
  position: absolute;
  top: 50%;
  right: 0%;
  transform: translate(0%, -50%);
  -ms-transform: translate(0%, -50%);
  border-radius: 20% 0 0 20%;
}

.title-slide {
  position: absolute;
  top: 50%;
  left: 20%;
  cursor: pointer;
  transition: 1s;
}

.title-slide h2 {
  padding: 10px 10px;
  text-align: center;
  width: 100%;
  background: none repeat scroll 0 0 rgba(0, 0, 0, 0.5);
  font-size: 3vw;
  color: #fff;
  font-family: "Futura";
  /* line-height: 54px!important; */
  margin-bottom: 15px;
}

.title-slide h3 {
  text-decoration: none;
  padding: 10px;
  text-align: center;
  border: solid gray;
  color: #fff;
  display: inline-block;
  font-size: 2.5vw;
  font-style: normal;
  font-family: "FuturaLight";
  margin-bottom: 15px;
}

.title-slide:hover {
  transform: scale(1.2);
}

@media (max-width: 800px) {
  .title-slide h3 {
    font-size: 6vw;
  }
  .title-slide h2 {
    font-size: 7vw;
  }
  .title-slide {
    animation: grow-animation2 4s ease-in-out infinite;
  }
}
@keyframes grow-animation2 {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}/*# sourceMappingURL=slides-index.css.map */