@charset "UTF-8";

/* ==========================================================================
   Plugin
   ========================================================================== */


/**
 * Juicy Slider styles sheet
 *
 * (c) 2013 by Van Ting
 *
 */

html,
body {
  /* CSS reset */
  margin: 0;
  padding: 0;
  border: 0;
}

.juicyslider {
  position: relative;
  padding: 0;
  margin: 0;
  border: 0;
}

.juicyslider ul {
  width: 100%;
  height: 100%;
  position: absolute;
  overflow: hidden;
  list-style: none outside none;
  padding: 0;
  margin: 0;
}

.juicyslider li {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0px;
  left: 0px;
  display: none;
  /* all hidden initially */
}

.juicyslider li:first-child {
  display: block;
}

.juicyslider .nav {
  position: absolute;
  top: 45%;
  padding: 20px;
  cursor: pointer;
  z-index: 1000;
  -webkit-transition: all 200ms ease-in-out;
  -o-transition: all 200ms ease-in-out;
  transition: all 200ms ease-in-out;
  background-image: url(../img/nav-40.png);
}

.juicyslider .nav.next {
  right: 3%;
}

.juicyslider .nav.prev {
  left: 3%;
  background-position: 40px 0;
}

.juicyslider .mask {
  background-image: none;
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 100;
}

.juicyslider img.maxw {
  width: 100%;
  height: auto;
  max-height: none;
  position: absolute;
  -webkit-filter: inherit;
  filter: inherit;
  /* for ie8 to inherit parent opacity */
}

.juicyslider img.maxh {
  width: auto;
  max-width: none;
  height: 100%;
  position: absolute;
  -webkit-filter: inherit;
  filter: inherit;
  /* for ie8 to inherit parent opacity */
}

@-webkit-keyframes modal-video {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes modal-video {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@-webkit-keyframes modal-video-inner {
  from {
    -webkit-transform: translate(0, 100px);
    transform: translate(0, 100px);
  }
  to {
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
  }
}

@keyframes modal-video-inner {
  from {
    -webkit-transform: translate(0, 100px);
    transform: translate(0, 100px);
  }
  to {
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
  }
}

.modal-video {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 8em 1em;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1000000;
  cursor: pointer;
  opacity: 1;
  -webkit-animation-timing-function: ease-out;
  animation-timing-function: ease-out;
  -webkit-animation-duration: .2s;
  animation-duration: .2s;
  -webkit-animation-name: modal-video;
  animation-name: modal-video;
  -webkit-transition: opacity .2s ease-out;
  -o-transition: opacity .2s ease-out;
  transition: opacity .2s ease-out;
  overflow: scroll;
  -webkit-overflow-scrolling: touch;
}

.modal-video-close {
  opacity: 0;
}

.modal-video-body {
  max-width: 1200px;
  width: 100%;
  height: 100%;
  margin: 0 auto;
  display: table;
}

.modal-video-inner {
  display: table-cell;
  vertical-align: middle;
  width: 100%;
  height: 100%;
}

.modal-video-movie-wrap {
  width: 100%;
  height: 0;
  position: relative;
  padding-bottom: 56.25%;
  background-color: #010105;
}

.modal-video-movie-wrap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.modal-video-close-btn {
  position: absolute;
  z-index: 2;
  top: -60px;
  right: 0;
  display: inline-block;
  width: 50px;
  height: 50px;
  overflow: hidden;
  border: none;
  background: #d2a116;
  cursor: pointer;
  outline: none;
}

.modal-video-close-btn:before {
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

.modal-video-close-btn:after {
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.modal-video-close-btn:before,
.modal-video-close-btn:after {
  content: '';
  position: absolute;
  height: 1px;
  width: 70%;
  top: 50%;
  left: 0;
  right: 0;
  margin: auto;
  background: #fff;
  border-radius: 5px;
}

@media screen and (max-width: 1600px) {
  .modal-video-body {
    max-width: 70%;
  }
}

@media screen and (max-width: 1400px) {
  .modal-video-close-btn {
    top: -65px;
    right: 0;
  }
  .modal-video-body {
    max-width: 55%;
  }
}

@media screen and (max-width: 768px) {
  .modal-video-body {
    max-width: 100%;
  }
}