/**************************
@green			 : green;
@black           : #000;
@white           : #FFF;

@link-color      : #000;
@link-hover-color: #000;

@accent-color    : @green;
**************************/
/*****************************************************************************************

*IMPORT FONTS IN CORE FONTS.LESS file
*Only create mixins of font families in here

.roboto(){ font-family: "Roboto", sans-serif; font-style: normal;}
******************************************************************************************/
/*******************************************************************
DIN NEXT Font
*******************************************************************/
@keyframes arrow {
  0% {
    -webkit-transform: translate(0, 0);
    -moz-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    -o-transform: translate(0, 0);
    transform: translate(0, 0);
    opacity: 0;
  }
  25% {
    opacity: 1;
    -webkit-transform: translate(0, 2px);
    -moz-transform: translate(0, 2px);
    -ms-transform: translate(0, 2px);
    -o-transform: translate(0, 2px);
    transform: translate(0, 2px);
  }
  50% {
    opacity: 1;
    -webkit-transform: translate(0, 8px);
    -moz-transform: translate(0, 8px);
    -ms-transform: translate(0, 8px);
    -o-transform: translate(0, 8px);
    transform: translate(0, 8px);
  }
  75%,
  100% {
    -webkit-transform: translate(0, 10px);
    -moz-transform: translate(0, 10px);
    -ms-transform: translate(0, 10px);
    -o-transform: translate(0, 10px);
    transform: translate(0, 10px);
    opacity: 0;
  }
}
#image-marquee {
  padding: 14px 0 60px;
  background: #000;
  overflow: hidden !important;
}
#image-marquee .marquee {
  margin-bottom: 20px;
  position: relative;
  display: flex;
}
@media (min-width: 992px) {
  #image-marquee .marquee {
    margin-bottom: 40px;
  }
}
#image-marquee .marquee__content {
  display: flex;
  justify-content: space-around;
  margin: 0;
  animation: scroll 80s linear infinite;
}
#image-marquee .marquee__content__image {
  transform: scale(1);
  transition: transform 0.2s ease-in-out;
}
#image-marquee .marquee__content__image .caption {
  display: none;
  padding: 10px 40px;
  background: #000;
  color: #9e9e9e;
}
#image-marquee .marquee__content__image:hover {
  transform: scale(1.1);
  transition: transform 0.3s ease-in-out;
  position: relative;
  z-index: 100;
}
#image-marquee .marquee__content__image:hover .caption {
  display: block;
}
#image-marquee .marquee__content__image__frame {
  display: inline-block;
  position: relative;
  width: 300px;
  height: 200px;
  margin: 0 10px;
  padding: 30px 0;
  transition: transform 0.3s ease-in-out;
  clip-path: polygon(0 0, 90% 0%, 100% 15%, 100% 100%, 10% 100%, 0% 85%);
}
@media (min-width: 992px) {
  #image-marquee .marquee__content__image__frame {
    width: 680px;
    height: 365px;
    margin: 0 10px;
  }
}
#image-marquee .marquee__content__image__frame .image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  margin-bottom: 15px;
}
#image-marquee .marquee__content__image__frame .caption {
  color: red;
}
@keyframes scroll {
  from {
    transform: translateX(-100%);
  }
  to {
    transform: translateX(0);
  }
}
#marquee-1:hover .marquee__content {
  animation-play-state: paused;
}
.marquee--reverse .marquee__content {
  animation-direction: reverse;
}
