@charset "UTF-8";

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

/* Google Web Font */

.seq {
    position: relative;
    /* Dimensions */
    width: 100%;
    max-width: 100%;
    height: 100vh;
    min-height: 440px;
    margin: 0 auto;
    padding: 0;
}

.seq .seq-pagination,
.seq .seq-screen,
.seq .seq-canvas,
.seq .seq-canvas > * {
    /* Reset the canvas and steps for better browser consistency */
    margin: 0;
    padding: 0;
    list-style: none;
}

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

.seq .seq-pagination {
    position: absolute;
    z-index: 10;
    bottom: 30px;

    width: 100%;
    border: none;
    text-align: center;
}

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

.seq .seq-pagination .seq-current {
    background: #fff;
}

.seq .seq-pagination > * {
    margin: 0 4px;
    padding: 0;
    display: inline-block;
    zoom: 1;
    width: 40px;
    height: 8px;
    cursor: pointer;
    background: none;
    border: 2px solid #fff;
    -webkit-transition-duration: .1s;
    transition-duration: .1s;
    -webkit-transition-property: background-color, border-radius;
    transition-property: background-color, border-radius;
    /* Image replacement */
    font: 0/0 a;
    text-shadow: none;
    color: transparent;
}

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

.seq .seq-canvas > * {
    /* Make the steps the same size as the container and sit side-by-side */
    display: inline-block;
    zoom: 1;
    vertical-align: top;
    width: 100%;
    height: 100%;
    white-space: normal;
    text-align: center;
    color: white;
    -webkit-transform: translateZ(0);
    -ms-transform: translateZ(0);
    transform: translateZ(0);
}

.seq .seq-canvas > *:before {
    content: "";
    display: inline-block;
    vertical-align: middle;
    height: 100%;
}

.seq-step{
}

.seq .seq-img{
    position: relative;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 50% 50%;
}

.seq .seq-content {
    position: absolute;
    top: 40%;
    z-index: 9999;
    width: 100%;
    font-size: 16px;
}

.seq .seq-content > .seq-content-elements{
    width: 90%;
    display: block;
    margin: 0 auto;
}

.seq .seq-button {
    display: inline-block;
    zoom: 1;
    font-size: 16px;
    margin-top: 1em;
    padding: 12px 20px;
    font-weight: bold;
    text-decoration: none;
    outline-width: 0;
    text-transform: uppercase;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
    -webkit-transition-duration: .5s;
    transition-duration: .5s;
    -webkit-transition-property: background-color, color;
    transition-property: background-color, color;
    background: none;
    color: #fff;
    letter-spacing: 2px;
    border: 2px solid #fff;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.seq .seq-button > span{
    font-size: 80%;
}

.seq .seq-button:focus,
.seq .seq-button:hover {
    background: #fff;
    color: #00a79d;
}

.seq .seq-title,
.seq .seq-subtitle {
    margin: 0;
    padding: 0;
    color: #fff;
    display: block;
    text-align: center;
    line-height: 1.4;
    font-size: 1em;
    text-shadow: 4px 4px 20px rgba(76,74,72,0.7);
    -moz-osx-font-smoothing: grayscale;
    -webkit-transform: translateZ(0);
    -ms-transform: translateZ(0);
    transform: translateZ(0);
}


.seq .seq-title {
    font-size: 36px;
    text-transform: uppercase;
}

.seq .seq-subtitle {
    font-size: 22px;
    line-height: 1.2em;
    letter-spacing: normal;
}

.seq.seq-active {
    overflow: hidden;
}

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

.seq.seq-active .seq-preloader.seq-preloaded {
    visibility: hidden;
}

.seq.seq-active .seq-preloader .seq-preload-circle {
    fill: white;
}

.seq.seq-active .seq-content {
    /* Pull the content up a bit to account for the pagination */
    margin-top: -28px;
}

.seq.seq-active .seq-button {
    -webkit-transform: translateZ(0) scale(0);
    -ms-transform: translateZ(0) scale(0);
    transform: translateZ(0) scale(0);
}

.seq .seq-content > .seq-content-elements{
    padding-top: 40px;
}

@-webkit-keyframes jelly {
    0% {

        -webkit-transform: translateY(100%) scale(0);
        transform: translateY(100%) scale(0);
    }
    40% {
        -webkit-transform: translateY(100%) scale(0);
        transform: translateY(100%) scale(0);
    }

    60% {
        -webkit-transform: translateY(100%) scale(1);
        transform: translateY(100%) scale(1);
    }

    100% {
        -webkit-transform: translateY(0)  scale(1);
        transform: translateY(0)  scale(1);
    }
}

@keyframes img-anim {
    0% {
        -webkit-transform: scale(1) translateZ(0);
        -ms-transform: scale(1) translateZ(0);
        transform: scale(1) translateZ(0);
    }

    70% {
        -webkit-transform: scale(1.2) translateZ(0);
        -ms-transform: scale(1.2) translateZ(0);
        transform: scale(1.2) translateZ(0);
    }

    100% {
        -webkit-transform: scale(1) translateZ(0);
        -ms-transform: scale(1) translateZ(0);
        transform: scale(1) translateZ(0);
    }
}

.seq .seq-in .seq-img{
    -webkit-animation-name: img-anim;
    animation-name: img-anim;
    -webkit-animation-duration: 8s;
    animation-duration: 8s;
}

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


.seq.seq-active .seq-title,
.seq.seq-active .seq-subtitle {
    /* Starting positions */
    opacity: 0;
    -webkit-transition-duration: 1s;
    transition-duration: 1s;
}

.seq.seq-active .seq-title {
    -webkit-transform: translate3d(0, -100px, 0);
    -ms-transform: translate3d(0, -100px, 0);
    transform: translate3d(0, -100px, 0);
}

.seq.seq-active h3 {
    -webkit-transform: translate3d(0, 100px, 0);
    -ms-transform: translate3d(0, 100px, 0);
    transform: translate3d(0, 100px, 0);
}

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

.seq .seq-in .seq-title,
.seq .seq-in .seq-subtitle {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}

.seq .seq-in .seq-button {
    -webkit-animation-name: jelly;
    animation-name: jelly;
    -webkit-animation-duration: .5s;
    animation-duration: .5s;
}

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

.seq .seq-out .seq-title,
.seq .seq-out .seq-subtitle {
    opacity: 1;
}


.seq .seq-in .seq-button {
    -webkit-animation-name: jelly;
    animation-name: jelly;
    -webkit-animation-duration: 3s;
    animation-duration: 3s;
}


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



.seq .text-xl{
    font-size: 36px;
}

@media only screen and (min-width: 420px) {
    .seq-menu{
        font-size: 14px;
    }
}

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

    .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-content {
        top:20%;
    }




    .seq-menu{
        font-size: 16px;
    }
    .seq .seq-content > .seq-content-elements{
        padding-top: 120px;
    }

}


@media only screen and (min-width: 992px){

    .seq .seq-pagination{
        bottom: 40px;
    }
    .seq .seq-content > .seq-content-elements{
        width: 962px;

    }
    .seq .seq-subtitle {
        font-size: 36px;
    }

    .seq .seq-title {
        font-size: 64px;;
    }

    .seq .seq-button {
        font-size: 20px;
        font-weight: bold;
    }

    .seq .seq-subtitle:after{
        content: "";
        display: table;
        clear: both;
    }

}

@media only screen and (min-width: 1200px){
    .seq .seq-content > .seq-content-elements{
        width: 1150px;
        padding-top: 120px;
    }

    .seq .seq-title {
        font-size: 74px;;
    }

}