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

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

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

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

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

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

body {
    padding: 0;
    margin: 0;
    overflow: hidden;
}

#carousel {
    position: relative;
}

#carousel img {
    max-width: 100vw;
    /*max-height: calc(100vh - 85px);*/
    max-height: 500px;
    display: block;
    margin: 0 auto;
    top: 0;
    left: 0;
}

#carousel img.base {
    position: relative;
    z-index: 1;
}

#carousel img.cortina,
#carousel img.laterais,
#carousel img.frontais {
    position: absolute;
    z-index: 2;
    opacity: 0;
    transition: opacity .4s ease, visibility .4s ease;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
}

#carousel img.active {
    opacity: 1;
}

#carousel .controls {
    padding: 30px;
    margin-top: -70px;
    z-index: 3;
    position: relative;
    display: none;
}

#carousel .controls ul {
    text-align: center;
    padding: 0px;
    margin: 0px auto;
    overflow: auto;
    max-width: 800px;
}

#carousel .controls ul li {
    cursor: pointer;
    float: left;
    display: block;
    font-family: 'louis_regularregular', sans-serif;
    color: #808080;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 17px;
    position: relative;
    width: 25%;
}

#carousel .controls li:before {
    content: '';
    display: block;
    width: 20px;
    height: 20px;
    margin: 0 auto 7px auto;
    border-radius: 160px;
    border: 2px solid #808080;
    box-shadow: inset 0 3px 0 0 rgba(255,255,255,0), inset -3px 0 0 rgba(255,255,255,0), inset 0 -3px 0 0 rgba(255,255,255,0), inset 3px 0 0 rgba(255,255,255,0);
    transition: all .4s ease;
}

#carousel .controls li.active:before {
    background: #bf9335;
    box-shadow: inset 0 3px 0 0 rgba(255,255,255,1), inset -3px 0 0 rgba(255,255,255,1), inset 0 -3px 0 0 rgba(255,255,255,1), inset 3px 0 0 rgba(255,255,255,1);
}

#carousel .controls ul li:not(:last-child):after {
    content: '';
    height: 2px;
    width: calc(100% - 24px);
    background: #808080;
    display: block;
    position: absolute;
    top: 11px;
    left: 50%;
    margin-left: 12px;
}

#carousel .controls-mobile {
    overflow: auto;
    text-align: center;
    padding: 0 20px;
}

#carousel .controls-mobile button {
    width: 50px;
    height: 50px;
    border: none;
    background: #808080;
    border-radius: 100px;
    text-align: center;
    outline: none;
    touch-action: manipulation;
}

#carousel .controls-mobile button.prev {
    float: left;
    background: #808080 url('../images/prev.svg') no-repeat center center;
    background-size: 40%;
    background-position: 12px center;
}

#carousel .controls-mobile button.next {
    float: right;
    background: #808080 url('../images/next.svg') no-repeat center center;
    background-size: 40%;
    background-position: 17px center;
}

#carousel .controls-mobile span {
    height: 50px;
    line-height: 50px;
    font-size: 30px;
    font-family: 'louis_regularregular', sans-serif;
    color: #808080;
    text-transform: uppercase;
    letter-spacing: 2px;
}

@media screen and (min-width: 900px) {
    #carousel .controls-mobile {
        display: none;
    }
    #carousel .controls-mobile span {
        font-size: 20px;
    }

    #carousel .controls {
        display: block;
    }

    #carousel img {
        /*max-height: calc(100vh - 53px);*/
    }
}

@media screen and (min-width: 480px) {
    #carousel .controls-mobile span {
        font-size: 35px;
    }
}