*,
*:after,
*:before {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

.wrappers {
    margin: 0 auto 100px auto;
    max-width: 960px;
}

.stage {
    list-style: none;
    padding: 0;
}

/*************************************
Build the scene and rotate on hover
**************************************/

.scene {
    width: 260px;
    height: 260px;
    margin: 30px;
    float: left;
    -webkit-perspective: 1000px;
    -moz-perspective: 1000px;
    perspective: 1000px;
}

.movie {
    width: 260px;
    height: 260px;
    -webkit-transform-style: preserve-3d;
    -moz-transform-style: preserve-3d;
    transform-style: preserve-3d;
    -webkit-transform: translateZ(-130px);
    -moz-transform: translateZ(-130px);
    transform: translateZ(-130px);
    -webkit-transition: -webkit-transform 350ms;
    -moz-transition: -moz-transform 350ms;
    transition: transform 350ms;
}

.movie:hover {
    -webkit-transform: rotateY(-78deg) translateZ(20px);
    -moz-transform: rotateY(-78deg) translateZ(20px);
    transform: rotateY(-78deg) translateZ(20px);
}

/*************************************
Transform and style the two planes
**************************************/

.movie .poster,
.movie .info {
    position: absolute;
    width: 260px;
    height: 260px;
    background-color: #fff;
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    backface-visibility: hidden;
}

.movie .poster {
    -webkit-transform: translateZ(130px);
    -moz-transform: translateZ(130px);
    transform: translateZ(130px);
    background-size: cover;
    background-repeat: no-repeat;
}

.movie .info {
    -webkit-transform: rotateY(90deg) translateZ(130px);
    -moz-transform: rotateY(90deg) translateZ(130px);
    transform: rotateY(90deg) translateZ(130px);
    border: 1px solid #B8B5B5;
    font-size: 0.85em;
}

/*************************************
Shadow beneath the 3D object
**************************************/

.csstransforms3d .movie::after {
    content: '';
    width: 260px;
    height: 260px;
    position: absolute;
    bottom: 0;
    box-shadow: 0 30px 50px rgba(0, 0, 0, 0.3);
    -webkit-transform-origin: 100% 100%;
    -moz-transform-origin: 100% 100%;
    transform-origin: 100% 100%;
    -webkit-transform: rotateX(90deg) translateY(130px);
    -moz-transform: rotateX(90deg) translateY(130px);
    transform: rotateX(90deg) translateY(130px);
    -webkit-transition: box-shadow 350ms;
    -moz-transition: box-shadow 350ms;
    transition: box-shadow 350ms;
}

.csstransforms3d .movie:hover::after {
    box-shadow: 20px -5px 50px rgba(0, 0, 0, 0.3);
}

/*************************************
Movie information
**************************************/

.info header {
    color: #FFF;
    padding: 7px 10px;
    font-weight: bold;
    height: 60px;
    background-color: #6cf;
    background-repeat: no-repeat;
    text-shadow: 0px 1px 1px rgba(0, 0, 0, 1);
    text-decoration: none !important;
}

.info header h1 {
    margin: 0 0 4px;
    font-size: 1.6em;
    text-decoration: none !important;
}

.info header .rating {
    border: 1px solid #FFF;
    padding: 0px 3px;
}

.info p {
    padding: 1.2em 1.4em;
    margin: 2px 0 0;
    font-weight: 700;
    color: #666;
    line-height: 1.4em;
    border-top: 10px solid #555;
    text-decoration: none !important;
}

/*************************************
Generate "lighting" using box shadows
**************************************/

.movie .poster,
.movie .info,
.movie .info header {
    -webkit-transition: box-shadow 350ms;
    -moz-transition: box-shadow 350ms;
    transition: box-shadow 350ms;
}

.csstransforms3d .movie .poster {
    box-shadow: inset 0px 0px 40px rgba(255, 255, 255, 0);
}

.csstransforms3d .movie:hover .poster {
    box-shadow: inset 300px 0px 40px rgba(255, 255, 255, 0.8);
}

.csstransforms3d .movie .info,
.csstransforms3d .movie .info header {
    box-shadow: inset -300px 0px 40px rgba(0, 0, 0, 0.5);
}

.csstransforms3d .movie:hover .info,
.csstransforms3d .movie:hover .info header {
    box-shadow: inset 0px 0px 40px rgba(0, 0, 0, 0);
}

/*************************************
Posters and still images
**************************************/

.scene:nth-child(1) .movie .poster {
    background-image: url(../img/poster01.jpg);
}

.scene:nth-child(2) .poster {
    background-image: url(../img/poster02.jpg);
}

.scene:nth-child(3) .poster {
    background-image: url(../img/poster03.jpg);
}


/*************************************
Fallback
**************************************/
.no-csstransforms3d .movie .poster,
.no-csstransforms3d .movie .info {
    position: relative;
}

/*************************************
Media Queries
**************************************/
@media screen and (max-width: 60.75em) {
    .scene {
        float: none;
        margin: 30px auto 60px;
    }
}

@import url(https://fonts.googleapis.com/css?family=Lato:300,400,900);

@font-face {
    font-family: 'codropsicons';
    src: url('../fonts/codropsicons/codropsicons.eot');
    src: url('../fonts/codropsicons/codropsicons.eot?#iefix') format('embedded-opentype'),
        url('../fonts/codropsicons/codropsicons.woff') format('woff'),
        url('../fonts/codropsicons/codropsicons.ttf') format('truetype'),
        url('../fonts/codropsicons/codropsicons.svg#codropsicons') format('svg');
    font-weight: normal;
    font-style: normal;
}

.clearfix:before,
.clearfix:after {
    content: " ";
    display: table;
}

.clearfix:after {
    clear: both;
}

.container > header,
.codrops-top {
    font-family: 'Lato', Arial, sans-serif;
}

.container > header {
    margin: 0 auto;
    padding: 2em;
    text-align: center;
    background: rgba(0, 0, 0, 0.01);
}

.container > header h1 {
    font-size: 2.625em;
    line-height: 1.3;
    margin: 0;
    font-weight: 300;
}

.container > header span {
    display: block;
    font-size: 60%;
    opacity: 0.7;
    padding: 0 0 0.6em 0.1em;
}

/* To Navigation Style */
.codrops-top {
    background: #fff;
    background: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    width: 100%;
    font-size: 0.69em;
    line-height: 2.2;
}

.codrops-top a {
    text-decoration: none;
    padding: 0 1em;
    letter-spacing: 0.1em;
    color: #888;
    display: inline-block;
}

.codrops-top a:hover {
    background: rgba(255, 255, 255, 0.95);
    color: #333;
}

.codrops-top span.right {
    float: right;
}

.codrops-top span.right a {
    float: left;
    display: block;
}

.codrops-icon:before {
    font-family: 'codropsicons';
    margin: 0 4px;
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
}

.codrops-icon-drop:before {
    content: "\e001";
}

.codrops-icon-prev:before {
    content: "\e004";
}

/* Demo Buttons Style */
.codrops-demos {
    padding-top: 1em;
    font-size: 0.9em;
}

.codrops-demos a {
    text-decoration: none;
    outline: none;
    display: inline-block;
    margin: 0.5em;
    padding: 0.7em 1.1em;
    border: 3px solid #b1aea6;
    color: #b1aea6;
    font-weight: 700;
}

.codrops-demos a:hover,
.codrops-demos a.current-demo,
.codrops-demos a.current-demo:hover {
    border-color: #89867e;
    color: #89867e;
}

@media screen and (max-width: 25em) {

    .codrops-icon span {
        display: none;
    }

    .ac-container label {
        height: auto;
    }



}

h2.spacer {
    padding-left: 5%;
}

#header .top h1 {
    margin: 0;
}

#header .top.solid .toggleDrawer i {
    padding-top: 0;
}

@media screen and (max-width: 769px) {
    .sub-steps .sub-text {
        width: 100%;
        left: 0;
    }

    .hpb-cnt-tb3 th,
    .hpb-cnt-tb3 td {
        width: 14.2%;
        word-break: break-all;
        font-size: 12px;
        vertical-align: top;
    }

    ul.nav {
        top: 10%;
        left: 0;
    }

    .shop {
        float: none;
    }

    dl.nav ul {
        padding-left: 0;
    }

    .slogan img {
        display: block;
        width: 100%;
        height: auto;
    }

    .shop {
        margin-top: 0;
    }

    #header .top span.costco {
        vertical-align: baseline;
    }

    #header .slogan {
        margin-left: auto;
        margin-right: auto;
        text-align: left;
        padding: 5px;
    }

    .service strong {
        display: inline-block;
    }

    dl.nav {
        position: absolute;
    }

    ul.nav {
        margin-left: 0;
    }

    #blog #view {
        padding: 5px;
    }

    #view td,
    .site th,
    .site td {
        white-space: inherit;
        word-break: break-all;
    }

    #view td {
        font-size: 12px;
        width: 20%;


    }

    #view td img {
        width: 100%;
        height: auto;
    }


    #header .top.solid {
        padding-bottom: 10px;
        z-index: 1500;
    }

    #header h1,
    #movie h1,
    #blog h1 {
        font-size: 2em !important;
    }

    #header .slogan {
        left: 0 !important;
    }

    #header .slogan,
    #movie .slogan2,
    #blog .slogan3 {
        width: 300px;
        height: 300px;
    }

    #service {
        margin-top: -50px;
    }
}


@media screen and (max-width: 480px) {

    .example-image {
        width: 100%;
        height: auto;
    }

    h2.kinou {
        font-size: 22px;
    }

    .row {
        margin: 0;
    }
}
