/*
  
  Responsive View

*/

/* Smartphones */
@media only screen and (max-width:768px) {
  .wrapper span a, .strip-carousel .frames { margin: 10px 0 0 2%; }
  .strip-carousel .arrow-left, .strip-carousel .arrow-right { width: 5%; }
}

/* Tablets (potrait) */
@media only screen and (min-width:768px) and (max-width:1024px) {
  .wrapper span a, .strip-carousel .frames { margin: 10px 0 0 5%; }
  .strip-carousel .arrow-left, .strip-carousel .arrow-right { width: 3%; }
}

/* Tablets (landscape) */
@media only screen and (min-width:1024px) and (max-width:1440px) {
  .wrapper span a, .strip-carousel .frames { margin: 10px 0 0 5%; }
  .strip-carousel .arrow-left, .strip-carousel .arrow-right { width: 3%; }
}

/* Desktop and above */
@media only screen and (min-width:1440px) {
  .wrapper span a, .strip-carousel .frames { margin: 10px 0 0 5%; }
  .strip-carousel .arrow-left, .strip-carousel .arrow-right { width: 3%; }
}



/*

  html, body

*/

/* No Select */
.noselect {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}





/*

  Strip Carousel

*/

/* Strip Carousel */
.strip-carousel {  
  width: 100%;
  
  display: inline-block;
  position: relative;
        
  overflow: hidden;
  margin-bottom: 30px;
}

/* Strip Carousel Frames */
.frames {
  width: 100%;
  height: 80%;
  
  display: inline-block;
  position: relative;

  padding: 0;
}

.frames a:hover{
  opacity: 1;
}

.frame figure {
  width: 100%;
  height: 100%;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}



/* Strip Carousel Frame */
.frame {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  /*padding: 5px;*/
  box-sizing: border-box;
  float: left;
  margin-right: 15px;
  
  transition: transform 0.8s;
  
  border-radius: 8px;
  
  background: #fff;
  
  /*
  -webkit-box-shadow: inset 0px 0px 0px 3px rgba(255,255,255,0.1), 0px 10px 10px -7px rgba(0,0,0,1);
  -moz-box-shadow: inset 0px 0px 0px 3px rgba(255,255,255,0.1), 0px 10px 10px -7px rgba(0,0,0,1);
  box-shadow: inset 0px 0px 0px 3px rgba(255,255,255,0.1), 0px 10px 10px -7px rgba(0,0,0,1);
  */
  -webkit-box-shadow: 0px 10px 10px -7px rgba(0,0,0,1);
  -moz-box-shadow: 0px 10px 10px -7px rgba(0,0,0,1);
  box-shadow: 0px 10px 10px -7px rgba(0,0,0,1);
}

/* Strip Carousel Frame Hover */
.frame:hover {  
  /*transform: scale(1.04);*/
  opacity: 1;
  cursor: pointer;

  -webkit-box-shadow: inset 0px 0px 0px 3px rgba(255,255,255,0.6), 0px 10px 10px -7px rgba(0,0,0,1);
  -moz-box-shadow: inset 0px 0px 0px 3px rgba(255,255,255,0.6), 0px 10px 10px -7px rgba(0,0,0,1);
  box-shadow: inset 0px 0px 0px 3px rgba(255,255,255,0.6), 0px 10px 10px -7px rgba(0,0,0,1);
}

.frame img{
  max-width: 100%;
  max-height: 100%;
}


/* Navigation Arrow Left */
.strip-carousel .arrow-left {
  float: left;
  left: 0;
}

/* Navigation Arrow Right */
.strip-carousel .arrow-right {
  float: right;
  right: 0;
}

/* Navigation Arrow Left & Right Hover */
.strip-carousel .arrow-left:hover , 
.strip-carousel .arrow-right:hover {
  cursor: pointer;
}



/* Section Title Hover */
.wrapper span a:hover {
  text-decoration: none;
  cursor: default;
}

