@charset "UTF-8";

.seq {
  position: relative;
  max-height: 75vh;
  width: 100%;
  overflow: hidden;
  margin: 0 auto;
  padding: 0;
}

.seq.seq-active .seq-preloader {
  background: black;
}

.seq .seq-preload-circle {
  fill: #F7DB15;
}

.seq .seq-pagination {
  visibility: hidden;
  position: absolute;
  z-index: 10;
  bottom: 10px;
  left: 0;
  right: 0;
  padding: 0;
  margin: 0;
  font-size: 0;
  font-weight: 600;
  text-align: center;
}

.seq .seq-pagination > * {
  position: relative;
  display: inline-block;
  width: 40px;
  height: 40px;
  margin: 0 1%;
  cursor: pointer;
  background: #3e3432;
  /* Image replacement */
  border: 0;
  font: 0/0 a;
  text-shadow: none;
  /* Hardware accel */
  -webkit-transform: translateZ(0);
  -ms-transform: translateZ(0);
  transform: translateZ(0);
}

.seq .seq-pagination > *.seq-current {
  background: #F7DB15;
}

.seq .seq-pagination > * a {
  display: block;
  width: 100%;
  height: 100%;
}

.seq .seq-screen,
.seq .seq-canvas,
.seq .seq-canvas > * {
  margin: 0;
  padding: 0;
  list-style: none;
}

.seq .seq-canvas {
  position: absolute;
  z-index: 1;
  height: 100%;
  width: 100%;
  white-space: nowrap;
  font-size: 0;
}

.seq .seq-canvas > * {
  overflow: hidden;
  position: relative;
  display: inline-block;
  vertical-align: top;
  width: 100%;
  height: 100%;
  white-space: normal;
  font-size: 16px;
  background-size: cover;
  background-position: 50% 50%;
  -webkit-transform: translateZ(0);
  -ms-transform: translateZ(0);
  transform: translateZ(0);
}

.seq .seq-step1 {
  background-image: url("../images/slider/01.jpg");
}

.seq .seq-step2 {
  background-image: url("../images/slider/02.jpg");
}

.seq .seq-step3 {
  background-image: url("../images/slider/03.jpg");
}

.seq .seq-step4 {
  background-image: url("../images/slider/04.jpg");
}

.seq .seq-step5 {
  background-image: url("../images/slider/05.jpg");
}

.seq small {
  position: absolute;
  z-index: 2;
  bottom: 150px;
  right: 5%;
  color: #FFF;
  width:90%;
  text-align:center;
  text-shadow:1px 1px 2px #000000;
  height:auto;
}

.seq .seq-title {
  display: inline-block;
  position: absolute;
  z-index: 3;
  bottom: 20px;
  left: 50%;
  width: 90%;
  margin-left: -47%;
  padding: 0 2%;
  line-height: 1.2;
  text-align: center;
  border-radius:6px;
}

.seq .seq-title h2 {
  margin: .6em 0 .4em 0;
  text-shadow:2px 2px 2px #000;
  color:#FC0;
}

.seq .seq-title .seq-button {
  position: relative;
  bottom: -6px;
  padding: .2em .6em;
  background: #F7DB15;
  color: black;
  font-family: 'Dosis', sans-serif;
  font-weight: 700;
  text-decoration: none;
  border-radius:4px;
}

.seq .seq-title .seq-button:focus,
.seq .seq-title .seq-button:hover {
  background: #3e3432;
  color:#FFF;
}

.seq.seq-active {
	
}

.seq.seq-active .seq-pagination {
  visibility: visible;
}

.seq.seq-active .seq-title {
  bottom: 70px;
}

@media only screen and (min-width: 480px) {
  .seq .seq-title {
    width: 65%;
    margin-left: -33.5%;
  }
}

@media only screen and (min-width: 640px) {
  .seq {
    /* Make the container 16:9 but no bigger than 90% of the screen height */
    position: relative;
    height: auto;
    max-height: 75vh;
    /*max-height: 90vh;*/
    min-height: 360px;
  }

  .seq:before {
    /* Make an element a certain aspect ratio */
    display: block;
    content: "";
    width: 100%;
    padding-top: 56.25%;
  }

  .seq .seq-screen {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
  }

  .seq .seq-pagination > * {
    position: relative;
    display: inline-block;
    vertical-align: bottom;
    list-style: none;
    width: 14%;
    height: auto;
    margin: 0 1%;
    padding: .625em 1%;
    cursor: pointer;
	border:1px solid #FC0;
    border-bottom:4px solid #FC0;
	text-shadow:1px 1px 3px #000000;
    font-family: 'Dosis', sans-serif;
    line-height: 1.4;
    font-size: 16px;
    font-weight: bold;
    background: #3e3432;
    -webkit-transition-duration: .35s;
    transition-duration: .35s;
    -webkit-transform-origin: 0 100%;
    -ms-transform-origin: 0 100%;
    transform-origin: 0 100%;
    -webkit-transform: translateZ(0);
    -ms-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-transition-property: width;
    transition-property: width;
  }

  .seq .seq-pagination > * a {
    /* Overflow text with an ellipsis (...) */
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    color: white;
    text-decoration: none;
  }

  .seq .seq-pagination > *.seq-current {
    width: 22%;
    background: #FFCC00;
    border-bottom-color: #FFCC00;
  }
}

@media only screen and (min-width: 720px) {
  .seq.seq-active .seq-title {
    bottom: auto;
    -webkit-transform: translateY(-200%) translateZ(0);
    -ms-transform: translateY(-200%) translateZ(0);
    transform: translateY(-200%) translateZ(0);
  }

  .seq .seq-title {
    width: 50%;
    top: 40%;
    left: auto;
    right: 20%;
    margin-left: auto;
    bottom: auto;
	
    -webkit-transition-duration: .35s;
    transition-duration: .35s;
    -webkit-transition-property: -webkit-transform;
    transition-property: transform;
    -webkit-transition-timing-function: cubic-bezier(0.230, 1.000, 0.320, 1.000);
    transition-timing-function: cubic-bezier(0.230, 1.000, 0.320, 1.000);
  }

  .seq .seq-title .seq-button {
    position: absolute;
    right: -10px;
    bottom: -10px;
    display: inline-block;
  }

  .seq .seq-title h2 {
    font-size: 4.0em;
    text-align: center;
	text-transform:uppercase;
  }


  .seq small {
    top: auto;
    bottom: -50px;
  }

  .seq.seq-active small {
    bottom: 170px;
  }

  .seq .seq-in {
    /* Animate in positions for content */
  }

  .seq .seq-in .seq-title {
    -webkit-transform: translateY(0) translateZ(0);
    -ms-transform: translateY(0) translateZ(0);
    transform: translateY(0) translateZ(0);
  }

  .seq .seq-out {
    /* Animate out positions for content */
  }

  .seq .seq-out .seq-title {
    -webkit-transform: translateY(0) translateZ(0);
    -ms-transform: translateY(0) translateZ(0);
    transform: translateY(0) translateZ(0);
  }
}

/*# sourceMappingURL=sequence-theme.pop-slide.css.map */