@charset "UTF-8";

/**
 * Theme Name: Ken Burns Effect
 * Version: 2.0.0
 * Theme URL: http://sequencejs.com/themes/ken-burns-effect/
 *
 * Emulates the famous Ken Burns style of panning and zooming across
 * still images
 *
 * This theme is powered by Sequence.js - The
 * responsive CSS animation framework for creating unique sliders,
 * presentations, banners, and other step-based applications.
 *
 * Author: Ian Lunn
 * Author URL: http://ianlunn.co.uk/
 *
 * Theme License: http://sequencejs.com/licenses/#premium-theme
 * Sequence.js Licenses: http://sequencejs.com/licenses/
 *
 * Copyright © 2015 Ian Lunn Design Limited unless otherwise stated.
 */

@import url("http://fonts.googleapis.com/css?family=PT+Sans:700");

body,
html,
.seq {
  /* Uncomment to make the theme full-screen */
  /* width: 100% !important; */
  /* max-width: 100% !important; */
  /* height: 100% !important; */
  /* max-height: 100% !important; */
}

.seq {
  position: relative;
  margin: 0 auto;
  /* Dimensions */
  height: 420px;
  width: 100%;
  /* Hide anything that goes beyond the boundaries of the Sequence container */
  overflow: hidden;
  /* Center the Sequence container on the page */
  margin: 0 auto;
  padding: 0;
  font-family: 'PT Sans', sans-serif;
  /* Change how the feature image should zoom-in and zoom-out */
}

.seq .seq-screen,
.seq .seq-canvas,
.seq .seq-canvas > * {
  /* Reset the canvas and steps for more browser consistency */
  position: absolute;
  z-index: 1;
  height: 100%;
  width: 100%;
  margin: 0;
  padding: 0;
  list-style: none;
}

.seq.seq-fallback {
  /* Fallback styles for older browsers */
  height: 420px !important;
}

.seq.seq-fallback .seq-pagination a,
.seq.seq-no-touch .seq-pagination a {
  /* Hide tooltips on touch devices or in fallback mode */
  display: none;
}

.seq .seq-preloader {
  background: #ECECEC;
}

.seq .seq-nav,
.seq .seq-pagination {
  /* Hide next/prev navigation for small devices and pagination until JS is enabled */
  display: none;
}

.seq.seq-active .seq-pagination {
  display: block;
  position: absolute;
  z-index: 10;
  left: 0;
  right: 0;
  bottom: 16px;
  bottom: 1rem;
  width: 100%;
  max-width: 200px;
  padding: 0;
  margin: 0 auto;
  text-align: center;
}

.seq.seq-active .seq-pagination li {
  cursor: pointer;
  display: inline-block;
  vertical-align: top;
  width: 16px;
  height: 16px;
  margin: 0 4px;
  background: transparent;
  border: solid 2px white;
  border-radius: 100%;
  -webkit-transition-duration: .25s;
  transition-duration: .25s;
  -webkit-transition-property: background, border-color;
  transition-property: background, border-color;
}

.seq.seq-active .seq-pagination li:focus,
.seq.seq-active .seq-pagination li:hover {
  background: white;
}

.seq.seq-active .seq-pagination a {
  /* Tooltip */
  color: #222;
  display: block;
  pointer-events: none;
  position: absolute;
  bottom: 100%;
  width: 100%;
  max-width: 200px;
  margin-left: 8px;
  margin-bottom: 16px;
  padding: 6px 10px;
  background: white;
  border-radius: 4px;
  opacity: 1;
  visibility: hidden;
  text-decoration: none;
  -webkit-transform: translateX(-50%) translateZ(0);
  -ms-transform: translateX(-50%) translateZ(0);
  transform: translateX(-50%) translateZ(0);
}

.seq.seq-active .seq-pagination a:after {
  /* Add an arrow to the tooltip */
  content: "";
  position: absolute;
  left: 50%;
  top: 100%;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 6px 6px 0 6px;
  border-color: white transparent transparent transparent;
  -webkit-transform: translateX(-50%) translateZ(0);
  -ms-transform: translateX(-50%) translateZ(0);
  transform: translateX(-50%) translateZ(0);
}

.seq.seq-active .seq-pagination .seq-current {
  background: white;
  border: solid 2px transparent;
}

.seq.seq-no-touch .seq-pagination li:focus a,
.seq.seq-no-touch .seq-pagination li:hover a {
  opacity: 0;
  visibility: visible;
  /* Fade the tooltip out after a 2 second delay */
  -webkit-transition-duration: .5s;
  transition-duration: .5s;
  -webkit-transition-delay: 2s;
  transition-delay: 2s;
  -webkit-transition-property: opacity;
  transition-property: opacity;
}

.seq .seq-feature {
  /* Make the feature image transparent so it can fade in */
  opacity: 0;
  overflow: hidden;
  height: 100%;
  width: 100%;
  /* The background-image is applied inline in the HTML */
  background-size: cover;
  background-position: 50%;
  background-repeat: no-repeat;
  -webkit-transform: translateZ(0);
  -ms-transform: translateZ(0);
  transform: translateZ(0);
}

.seq .seq-feature,
.seq .seq-feature.seq-to {
  -webkit-transform: translateZ(0) scale(1);
  -ms-transform: translateZ(0) scale(1);
  transform: translateZ(0) scale(1);
}

.seq .seq-feature.seq-from {
  -webkit-transform: translateZ(0) scale(1.3);
  -ms-transform: translateZ(0) scale(1.3);
  transform: translateZ(0) scale(1.3);
}

.seq .seq-feature.seq-center {
  -webkit-transform-origin: 50% 50%;
  -ms-transform-origin: 50% 50%;
  transform-origin: 50% 50%;
}

.seq .seq-feature.seq-top {
  -webkit-transform-origin: 50% 20%;
  -ms-transform-origin: 50% 20%;
  transform-origin: 50% 20%;
}

.seq .seq-feature.seq-right {
  -webkit-transform-origin: 80% 50%;
  -ms-transform-origin: 80% 50%;
  transform-origin: 80% 50%;
}

.seq .seq-feature.seq-bottom {
  -webkit-transform-origin: 50% 80%;
  -ms-transform-origin: 50% 80%;
  transform-origin: 50% 80%;
}

.seq .seq-feature.seq-left {
  -webkit-transform-origin: 20% 50%;
  -ms-transform-origin: 20% 50%;
  transform-origin: 20% 50%;
}

.seq .seq-feature.seq-top-left {
  -webkit-transform-origin: 20% 20%;
  -ms-transform-origin: 20% 20%;
  transform-origin: 20% 20%;
}

.seq .seq-feature.seq-top-right {
  -webkit-transform-origin: 80% 20%;
  -ms-transform-origin: 80% 20%;
  transform-origin: 80% 20%;
}

.seq .seq-feature.seq-bottom-left {
  -webkit-transform-origin: 20% 80%;
  -ms-transform-origin: 20% 80%;
  transform-origin: 20% 80%;
}

.seq .seq-feature.seq-bottom-right {
  -webkit-transform-origin: 80% 80%;
  -ms-transform-origin: 80% 80%;
  transform-origin: 80% 80%;
}

.seq .seq-title {
  position: absolute;
  z-index: 20;
  top: 30px;
  width: 100%;
  opacity: 0;
  text-align: center;
  -webkit-transform: translateZ(0) scale(.9);
  -ms-transform: translateZ(0) scale(.9);
  transform: translateZ(0) scale(.9);
  -webkit-transition-duration: .75s;
  transition-duration: .75s;
  -webkit-transition-property: -webkit-transform, opacity;
  transition-property: transform, opacity;
}

.seq h2,
.seq h3 {
  display: block;
  margin: 0 auto;
  max-width: 480px;
  padding: .1em 1em;
  color: white;
  font-weight: 700;
}

.seq h2 {
  font-size: 1.6em;
  text-shadow: 2px 2px 0 #222;
}

.seq h3 {
  font-size: .875em;
  letter-spacing: 1px;
  color: #222;
}

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

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

.seq .seq-in .seq-feature {
  opacity: 1;
  -webkit-transform: translateZ(0) scale(1);
  -ms-transform: translateZ(0) scale(1);
  transform: translateZ(0) scale(1);
  -webkit-transition-property: -webkit-transform, opacity;
  transition-property: transform, opacity;
  -webkit-transition-duration: 5s, .5s;
  transition-duration: 5s, .5s;
  -webkit-transition-timing-function: ease-in-out, linear;
  transition-timing-function: ease-in-out, linear;
}

.seq .seq-in .seq-feature.seq-to {
  -webkit-transform: translateZ(0) scale(1.3);
  -ms-transform: translateZ(0) scale(1.3);
  transform: translateZ(0) scale(1.3);
}

.seq .seq-in .seq-feature,
.seq .seq-in .seq-feature.seq-from {
  -webkit-transform: translateZ(0) scale(1);
  -ms-transform: translateZ(0) scale(1);
  transform: translateZ(0) scale(1);
}

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

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

.seq .seq-out .seq-feature {
  opacity: 1;
  /* Prevent the transform from starting until seq-in has finished */
  -webkit-transition-delay: .5s;
  transition-delay: .5s;
}

.seq .seq-out .seq-feature.seq-to {
  -webkit-transform: translateZ(0) scale(1);
  -ms-transform: translateZ(0) scale(1);
  transform: translateZ(0) scale(1);
}

.seq .seq-out .seq-feature,
.seq .seq-out .seq-feature.seq-from {
  -webkit-transform: translateZ(0) scale(1.3);
  -ms-transform: translateZ(0) scale(1.3);
  transform: translateZ(0) scale(1.3);
}

@media only screen and (min-width: 481px) {
  .seq.seq-active .seq-nav {
    /* Show navigation if JS is enabled */
    display: block;
  }

  .seq .seq-nav {
    position: absolute;
    right: 1em;
    bottom: 1em;
    padding: 0;
  }

  .seq .seq-next,
  .seq .seq-prev {
    cursor: pointer;
    position: relative;
    z-index: 10;
    display: inline-block;
    vertical-align: middle;
    margin: 0;
    padding: 0;
    width: 40px;
    height: 40px;
    opacity: .6;
    -webkit-transition-duration: .3s;
    transition-duration: .3s;
    -webkit-transition-property: opacity;
    transition-property: opacity;
    border: none;
    text-align: center;
    background: transparent;
    /* Hide the text as we're showing an image instead */
    font: 0/0 a;
    text-shadow: none;
    color: transparent;
  }

  .seq .seq-next:focus,
  .seq .seq-next:hover,
  .seq .seq-prev:focus,
  .seq .seq-prev:hover {
    opacity: 1;
  }

  .seq .seq-next {
    margin-left: 4px;
    /* Fallback image for non-SVG browsers */
    background-image: url("../images/bt-next.png");
    /* SVG background with hack to prevent non-SVG browsers */
    background-image: url("../images/bt-next.svg"), -webkit-linear-gradient(transparent, transparent);
    background-image: url("../images/bt-next.svg"), linear-gradient(transparent, transparent);
  }

  .seq .seq-prev {
    /* Fallback image for non-SVG browsers */
    background-image: url("../images/bt-previous.png");
    /* SVG background with hack to prevent non-SVG browsers */
    background-image: url("../images/bt-previous.svg"), -webkit-linear-gradient(transparent, transparent);
    background-image: url("../images/bt-previous.svg"), linear-gradient(transparent, transparent);
  }
}

@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;
    height: 100%;
    max-height: 55vh;
    min-height: 420px;
  }

  .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 h2,
  .seq h3 {
    max-width: 720px;
  }

  .seq h2 {
      font-size: 3.2em;font-family: "Hind", sans-serif;padding-top: 10%
  }

  .seq h3 {
    display: inline-block;
    padding-left: 2em;
    padding-right: 2em;
    font-size: 1em;
  }
}

/*# sourceMappingURL=sequence-theme.ken-burns-effect.css.map */