.cover:before{
    content: ' ';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: #000;
    opacity: 0.2;
}


.cover section{
    text-align: center;
    width: 75%;
    position: relative;
    margin: 0 auto;
}

.cover section.left{
    text-align: left;
}

.cover section.right{
    text-align: right;
}

.cover{
    background-size: cover;
    background-repeat: no-repeat;
}

.cover.left-top{
    background-position: 0 0;
}

.cover.center-top{
    background-position: 50% 0;
}

.cover.right-top{
    background-position: 100% 0;
}

.cover.center-left{
    background-position: 0 50%;
}

.cover.center-center{
    background-position: 50% 50%;
}

.cover.right-center{
    background-position: 100% 50%;
}

.cover.left-bottom{
    background-position: 0 100%;
}

.cover.center-bottom{
    background-position: 50% 100%;
}

.cover.right-bottom{
    background-position: 100% 100%;
}

.cover.auto{
    background-size: auto;
}

.cover.contain{
    background-size: contain;
}

.cover .button{
    text-decoration: none;
    padding: 1em 2em;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;

    cursor: pointer;
}

.cover.shadowed .button{
    -webkit-box-shadow: 0 2px 6px rgba(0,0,0,0.4);
    -moz-box-shadow: 0 2px 6px rgba(0,0,0,0.4);
    box-shadow: 0 2px 6px rgba(0,0,0,0.4);
}

.cover section h4{
    margin-bottom: 0.2em;
    font-size: 3rem;
}

.cover section h5{
    margin-bottom: 0.2em;
    font-size: 2.4rem;
}

.cover section .info{
    font-size: 2rem;
}

.cover section nav{
    margin-top: 2em;
    display: inline-block;
    width: auto;
}

.cover section .button:hover{
    box-shadow: 0 2px 3px rgba(0,0,0,0.2);
}

/*********
** UTILITY
*********/

.outlined{
    outline: 1px solid #e1e1e1;
}

.bordered{
    border: 1px solid #e1e1e1;
}

.rounded{
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
}

.centered {
    text-align: center;
}

.aligh-right{
    text-align: right;
}

.justify{
    text-align: justify;
}

.shadowed{
    -webkit-box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    -moz-box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}









/*********
** RIBBON
*********/
.ribbon.hide{
    display: none;
}

.ribbon {
    overflow: hidden;
    position: absolute;
    z-index: 200;
}


h5.card--subtitle{
    font-family: 'Annie Use Your Telescope', cursive;
    font-size: 1em;
}


.card {
    text-align: center;
    font-family: 'Playfair Display SC', serif;
    font-weight: 600;
    color: #666;
    margin-top: 0.5em;
    text-transform: uppercase;
    line-height: 24px;
    font-size: 14pt;
    cursor: pointer;
    box-sizing: border-box;
    padding: 0px 24px 0px 24px;
    margin-bottom: 4px;
    margin-top: 0px;

}

.cover:before{
    display: none;
}

section.full-width.full-height,
section.cards{
    background: #fffee3;
}

section.full-width.full-height + section.cards{
    margin-top: 48px;
}

/***
*** COVERS
***/


.cover .container{
    text-align: center;
    pointer-events: none;
    -webkit-user-select: none;
}

.cover .use_bgover{
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    opacity: 0.4;
}

.cover.shadowed .cover__info,
.cover.shadowed .cover__info *,
.cover.shadowed .cover__subtitle,
.cover.shadowed .cover__title{
    -webkit-text-shadow: 0 2px 6px rgba(0,0,0,0.4);
    -moz-text-shadow: 0 2px 6px rgba(0,0,0,0.4);
    -o-text-shadow: 0 2px 6px rgba(0,0,0,0.4);
    -ms-text-shadow: 0 2px 6px rgba(0,0,0,0.4);
    text-shadow: 0 2px 6px rgba(0,0,0,0.4);
    pointer-events: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
}

.cover__title {
    font-size: 32pt;
    margin-bottom: 0.5em;
}

.cover__subtitle {
    font-size: 28pt;
    margin-bottom: 0.5em;
    font-family: 'Aesthetik Script DEMO', cursive;
}

.cover__info {
    font-size: 18pt;
    line-height: 1.2em;
    max-width: 70%;
    display: inline-block;
}

.cover nav{
    pointer-events: none;
}

.cover nav .button {
    font-size: 16pt;
    padding: 0.5em 2em;
    border-radius: 5px;
    border: 0;
    text-decoration: none;
    text-shadow: none;
    pointer-events: all;
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d;
    -webkit-transition: transform 0.5s;
    -moz-transition: transform 0.5s;
    transition: transform 0.5s;
}

.cover nav .button:hover{
    -webkit-transform: scale3d(1.05,1.05,1.05);
    -moz-transform: scale3d(1.05,1.05,1.05);
    transform: scale3d(1.05,1.05,1.05);

    /*-webkit-transform: scale(1.04);
    -moz-transform: scale(1.04);
    transform: scale(1.04);*/
}

.cover nav .button:active{
    /*-webkit-transform: scale(0.92);
    -moz-transform: scale(0.92);
    transform: scale(0.92);*/
    -webkit-transition: transform 0s;
    -moz-transition: transform 0s;
    transition: transform 0s;
    -webkit-transform: scale3d(0.9,0.9,0.9);
    -moz-transform: scale3d(0.9,0.9,0.9);
    transform: scale3d(0.9,0.9,0.9);
}

.cover .container{
    width: 80%;
    margin: unset;
    max-width: 960px;
    max-height: 90%;
    min-width: 280px;
}

.carousel > .covers > .cover.right-top,
.carousel > .covers > .cover.left-top
.carousel > .covers > .cover.auto{
    background-size: auto;
}

.carousel > .covers > .cover.contain{
    background-size: contain;
    height: 90%;
}

.carousel > .covers > .cover.left-top {
    background-position: 0 0;
}

.carousel > .covers > .cover.center-top {
    background-position: 50% 0;
}

.carousel > .covers > .cover.right-top {
    background-position: 100% 0;
}

.carousel > .covers > .cover.left-center {
    background-position: 0 50%;
}

.carousel > .covers > .cover.center-center {
    background-position: 50% 50%;
}

.carousel > .covers > .cover.right-center {
    background-position: 100% 50%;
}


.carousel > .covers > .cover.left-bottom{
    background-position: 0 100%;
}

.carousel > .covers > .cover.center-bottom{
    background-position: 50% 100%;
}

.carousel > .covers > .cover.right-bottom{
    background-position: 100% 100%;
}

.carousel > .covers > .cover {
    align-items: center;
    justify-content: center;
}

.cover .container nav{
    margin-top: 32px;
}

.cover .container.left {
    text-align: left;
}

.cover .container.center {
    text-align: center;
}

.cover .container.right {
    text-align: right;
}


.carousel{
    position: relative;
    height: 100%;
    width: 100vw;
    display: flex;
    overflow: hidden;
}

.carousel > .covers > .cover, .carousel > .covers {
    width: 100vw;
    height: 100%;
    position: relative;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex: 0 0 100%;
    align-items: center;
}


.carousel-dots,
.carousel .dots{
    position: absolute;
    z-index: 2;
    bottom: 32px;
    left: 50%;
    padding: 0;
    margin: 50% 0 0;
    -webkit-transform: translate(-50%, 50%);
    -moz-transform: translate(-50%,  50%);
    -ms-transform: translate(-50%,  50%);
    -o-transform: translate(-50%, 50%);
    transform: translate(-50%, 50%);
    text-align: center;
    line-height: 1;
    mix-blend-mode: color-dodge;
}

.carousel-dots .dot,
.carousel .dots .dot{
    width: 12px;
    height: 12px;
    background-color: #fff;
    position: relative;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    border-radius: 20px;
    list-style: none;
    padding: 0;
    margin: 0 6px;
    float: none;
    opacity: 0.3;
    cursor: pointer;
    display: inline-block;
    mix-blend-mode: difference;
}

.carousel-dots .dot.active,
.carousel .dots .dot.active{
    opacity: 1;
    pointer-events: none;
    background-color: #fff;
    mix-blend-mode: normal;
}

.carousel > .covers > .cover,
.carousel > .covers{
    width: 100%;
    height: 100%;
    position: relative;
    /*display: flex;
    flex: 0 0 100%;*/
    padding: 0;
    margin: 0;
    align-items: center;
}

.carousel > .covers.updating{
    -webkit-transition: all 0.3s;
    -moz-transition:  all 0.3s;
    -ms-transition:  all 0.3s;
    -o-transition:  all 0.3s;
    transition: all 0.3s;

}

.carousel > .covers.auto{
    -webkit-transition: all 0.5s ease;
    -moz-transition:  all 0.5s ease;
    -ms-transition:  all 0.5s ease;
    -o-transition:  all 0.5s ease;
    transition: all 0.5s ease;
}

.carousel > .covers > .cover{
    justify-content: center;
    height: 100%;
    max-width: 100vw;
    max-height: 100vh;
}

.carousel-waiting-bar,
.carousel .waiting-bar{
    position: absolute;
    top: 0;
    height: 2px;
    width: 0;
    left: 0;
    background-color: #e36f1f;
}


section.full-width.full-height{
    width: 100vw;
    margin-top: 0;
    height: calc( 100vh - 90px );

    min-height: 280px;
    border-bottom: 1px solid #e8e8e8;
    position: relative;
    box-sizing: border-box;
    /*overflow: hidden;
    overflow-y: visible;*/
}

section.full-width.full-height.product-image{
    height: calc( 60vh - 90px );
}

.full-height > .carousel > .covers,
.carousel .covers{
    height: 100%;
    width: 100%;
    min-height: 100%;
}

.cover {
    background-size: cover;
    /*background-size: contain;*/
    background-repeat: no-repeat;
    background-position: 50% 33%;
}

.cover .container .button{
    background: #e36f1f;
    color: #fff;
    padding: 1em 2em;
    border-radius: 10em;
    pointer-events: all;
    transition: transform 0.1s ease-in-out;
    display: inline-block;
    box-shadow: 0 2px 4px rgba(0,0,0,0.4);
    text-transform: uppercase;
}

.cover .container .button:hover{
    transform: scale(1.1);
}

.cover .container h3{
    margin: 0 auto 12px;
    font-size: 3rem;
    text-shadow: 0 2px 3px rgba(0,0,0,0.2)!important;
}

.cover .container h3 + p{
    font-size: 2rem;
    margin: 0 auto 1em;
    text-shadow: 0 2px 3px rgba(0,0,0,0.3);
}

.cover .cover-image-bg{
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.3);
}

.cover video{
    position: absolute;
    left: 0;
    top: 0;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    object-fit: cover;
}

.cover [data-type="start-cover-video"]{
    appearance: none;
    border: 0;
    width: 100px;
    position: absolute;
    bottom: 32px;
    left: 0;
    height: 32px;
    background: url(https://icongr.am/clarity/play.svg?size=128&color=ffffff) 50% 50% no-repeat;
    cursor: pointer;
    background-size: contain;
    pointer-events: all;
}

body > section:first-child {
    min-height: calc(100vh - 96px);
}


@media all and (max-width: 700px) {

    .carousel-dots, .carousel .dots{
        bottom: 32px!important;
    }

    .cover .container h3 {
        margin: 0 auto 32px;
        font-size: 2.4rem;
        line-height: 0.9em;
    }
}

@media all and (max-width: 600px) {

    h1,h2{
        font-size: 2.4rem;
    }


    .cover .cover-image-bg {
        /*background: #000!important;*/
        opacity: 0.25!important;
    }

    .cover .container h3 br{
        display: none;
    }


}
