﻿@charset "utf-8";
* {
    padding: 0;
    margin: 0;
    outline: none;
    -webkit-tap-highlight-color: rgba(0,0,0,0);
    /*
        -webkit-font-smoothing: subpixel-antialiased;
    */
    outline: none !important;
    position: relative;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

.circle {
    top:300px;
    left:300px;
    pointer-events: none;
    position: absolute;
    z-index: 40;
    border: solid 1px rgba(219, 219, 219, 0.66);
    background-color: rgba(255, 255, 255, 0);
    width: 10px;
    height: 10px;
    border-radius: 50%;
    -webkit-transition: height 0.5s ease-in-out, width 0.5s ease-in-out;
    -moz-transition: height 0.5s ease-in-out, width 0.5s ease-in-out;
    -o-transition: height 0.5s ease-in-out, width 0.5s ease-in-out;
    transition: height 0.5s ease-in-out, width 0.5s ease-in-out;
}

.changePageWhite {
    position: fixed;
    display: block;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    height: 100vh;
    width: 100vw;
    z-index: 100;
    background-color: #fff;
    opacity: 1;
    -webkit-transition: opacity 0.5s ease-in-out;
    -moz-transition: opacity 0.5s ease-in-out;
    -o-transition: opacity 0.5s ease-in-out;
    transition: opacity 0.5s ease-in-out;
}

    html {
        scroll-behavior: smooth;
        overflow-x: hidden;
    }


/*------------ LIGHTBOX --------------------------------------*/


button.close {
    width: 40px;
    height: 40px;
    z-index: 9999;
    position: absolute;
    right: 0;
    top: 0;
}
    button.close:hover {
        opacity:0.6;
    }
    .overLightBox {
        position: fixed;
        display: none;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        height: 100vh;
        width: 100vw;
        z-index: 1000;
        background-color: rgba(0, 0, 0, 0.80);
        opacity: 0;
        -webkit-transition: opacity 1s ease-in-out;
        -moz-transition: opacity 1s ease-in-out;
        -o-transition: opacity 1s ease-in-out;
        transition: opacity 1s ease-in-out;
    }
        .overLightBox.load {
            opacity:1 !important;
        }

.content-lightbox {
    display: block;
    position: relative;
    margin: 0 auto;
    max-width: 500px;
    background-color: #fff;
    padding: 20px;
    min-height: 200px;
}
.waitInsideLightBox {
    position: absolute;
    display: none;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    height: 100%;
    width: 100%;
    z-index: 100;
    background-color: rgba(255, 255, 255, 0.80);
    background-image: url(../App_Images/preloader.gif);
    background-position: center center;
    background-repeat: no-repeat;
    opacity: 0;
    -webkit-transition: opacity 1s ease-in-out;
    -moz-transition: opacity 1s ease-in-out;
    -o-transition: opacity 1s ease-in-out;
    transition: opacity 1s ease-in-out;
}
    .waitInsideLightBox.load {
        opacity: 1 !important;
    }





    /*------------ LIGHTBOX --------------------------------------*/
    body, html {
        height: 100%;
        width: 100%;
        font-family: "Segoe UI", sans-serif;
        background: #000;
        /*
         -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    -moz-osx-font-smoothing: grayscale;

    */
    }

h1 {
    font-size: 3rem;
    font-weight:100;
}

.bigTitle {
    display: block;
    width: 100%;
    text-align: center;
    margin: 0 auto;
    font-family: 'Parisienne', cursive;
    font-size: 6rem;
    font-weight: 100;
    color: #fff;
    text-shadow: 0px 0px 6px #000000;
    -webkit-text-shadow: 0px 0px 6px #000000;
    -moz-text-shadow: 0px 0px 6px #000000;
}
.smallTitle {
    display: block;
    width: 100%;
    text-align: center;
    margin: 0 auto;
    font-family: 'Parisienne', cursive;
    font-size: 2rem;
    font-weight: 100;
    color: #fff;
    position: absolute;
    top: 58%;
    text-shadow: 0px 0px 6px #000000;
    -webkit-text-shadow: 0px 0px 6px #000000;
    -moz-text-shadow: 0px 0px 6px #000000;
}



h2 {
    font-weight: 100;
}

h3 {
    font-weight: 100;
}

a, a:visited {
    color:rgb(128, 128, 128);
    font-size:14px;
}
    a:hover {
        opacity:0.6;
    }


p {
    font-size:14px;
}

.light {
    font-weight:100;
}
.cursive{
    font-family: "Libre Baskerville", serif;
}

.uppercase {
    text-transform:uppercase;
}

.color-grey {
    color: #797979 !important
}
.color-white {
    color: #ffffff !important;
}
.color-black {
    color: #000000 !important;
}
.color-bordeaux {
    color: rgba(186, 17, 17, 0.98) !important;
}

#master {
    display: block;
    position: relative;
    z-index: 1;
    height: 100%;
    width: 100%;
}



section {
    width: 100%;
    display: block;
    flex-wrap: wrap;
    background: #fff;
    position: relative;

}
.section-fixed {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    height: 100vh;
    width: 100vw;
}
.outer {
    display: table;
    position: absolute;
    height: 100%;
    width: 100%;
    z-index: 3;
}
.middle {
    display: table-cell;
    vertical-align: middle;
}


.inner {
    margin-left: auto;
    margin-right: auto;
}



.container {
    position: relative;
    z-index: 10;
    display: block;
}

    .container p {
        font-family: 'Raleway', sans-serif;
        max-width: 420px;
        font-size: 14px;
        font-weight: 100;
        
    }




    .left_align {
        text-align: left !important;
    }

.right_align {
    text-align: right !important;
}
.center_align {
    text-align:center !important;
}

.form-control.error {
    color: #fff;
    background-color: rgba(255, 14, 73, 0.10);
    border-color: rgba(255, 14, 73, 0.40);
    outline: 0;
    box-shadow: 0 0 0 0.2rem rgba(255, 14, 73, 0.40);
}

#text_privacy.error label, #text_privacy_newsletter.error label {
    color: rgba(255, 14, 73, 0.75);
    text-decoration: underline;
}


.bg_color_skew_dark {
    background-color: rgba(53, 53, 53, 0.98)
}

.bg_color_skew_white {
    background-color:rgba(255, 255, 255, 0.9)
}

.bg_color_skew_red {
    background-color:rgba(186, 17, 17, 0.98)
}

.bg_color_skew_green {
    background-color: rgba(14, 94, 59, 0.7);
}

.bg_color_skew_blu {
    background-color: rgba(1, 74, 98, 0.7);
}

.bg_color_skew_viola {
    background-color: rgba(146, 65, 119, 0.7);
}

.bg_color_skew_rose {
    background-color: rgba(174, 150, 124, 0.7);
}

.bg_color_skew_detailPage {
    background-color: rgb(84, 84, 84);
    opacity: 1 !important;
}



.color-details-background-anim {
    z-index: 1;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    transform: translate3d(0,120%,0);
    -webkit-transform: translate3d(0,120%,0);
    -o-transform: translate3d(0,120%,0);
    -moz-transform: translate3d(0,120%,0);
    -ms-transform: translate3d(0,120%,0);
}


    .color-details-background-anim.animated {
        -webkit-transition: all 1s 0s ease-in-out;
        transition: all 1s 0s ease-in-out;
        animation-direction: alternate;
        -moz-animation-direction: alternate;
        -webkit-animation-direction: alternate;
        -o-animation-direction: alternate;
    }


.anim-right {
    transform: rotate(20deg) scaleY(5.4) translate3d(50%,0,0);
    -webkit-transform: rotate(20deg) scaleY(5.4) translate3d(50%,0,0);
    -o-transform: rotate(20deg) scaleY(5.4) translate3d(50%,0,0);
    -moz-transform: rotate(20deg) scaleY(5.4) translate3d(50%,0,0);
    -ms-transform: rotate(20deg) scaleY(5.4) translate3d(50%,0,0);
}

    .color-details-background-anim.preset-right-skew {
        transform: rotate(20deg) scaleY(5.4) translate3d(123%,0,0);
        -webkit-transform: rotate(20deg) scaleY(5.4) translate3d(123%,0,0);
        -o-transform: rotate(20deg) scaleY(5.4) translate3d(123%,0,0);
        -moz-transform: rotate(20deg) scaleY(5.4) translate3d(123%,0,0);
        -ms-transform: rotate(20deg) scaleY(5.4) translate3d(123%,0,0);
    }


    .color-details-background-anim.right-skew {
        transform: rotate(20deg) scaleY(5.4) translate3d(53%,0,0) !important;
        -webkit-transform: rotate(20deg) scaleY(5.4) translate3d(53%,0,0) !important;
        -o-transform: rotate(20deg) scaleY(5.4) translate3d(53%,0,0) !important;
        -moz-transform: rotate(20deg) scaleY(5.4) translate3d(53%,0,0) !important;
        -ms-transform: rotate(20deg) scaleY(5.4) translate3d(53%,0,0) !important;
    }


.color-details-background-anim.detail-right-skew {
    transform: rotate(-4deg) scaleY(5.4) translate3d(55%,0,0) !important;
    -webkit-transform: rotate(-4deg) scaleY(5.4) translate3d(55%,0,0) !important;
    -o-transform: rotate(-4deg) scaleY(5.4) translate3d(55%,0,0) !important;
    -moz-transform: rotate(-4deg) scaleY(5.4) translate3d(55%,0,0) !important;
    -ms-transform: rotate(-4deg) scaleY(5.4) translate3d(55%,0,0) !important;
}



    .color-details-background-anim.preset-left-skew {
        transform: rotate(-48deg) scaleY(5.4) translate3d(-123%,0,0);
        -webkit-transform: rotate(-48deg) scaleY(5.4) translate3d(-123%,0,0);
        -o-transform: rotate(-48deg) scaleY(5.4) translate3d(-123%,0,0);
        -moz-transform: rotate(-48deg) scaleY(5.4) translate3d(-123%,0,0);
        -ms-transform: rotate(-48deg) scaleY(5.4) translate3d(-123%,0,0);
    }

    .color-details-background-anim.left-skew {
        transform: rotate(-48deg) scaleY(5.4) translate3d(-53%,0,0) !important;
        -webkit-transform: rotate(-48deg) scaleY(5.4) translate3d(-53%,0,0) !important;
        -o-transform: rotate(-48deg) scaleY(5.4) translate3d(-53%,0,0) !important;
        -moz-transform: rotate(-48deg) scaleY(5.4) translate3d(-53%,0,0) !important;
        -ms-transform: rotate(-48deg) scaleY(5.4) translate3d(-53%,0,0) !important;
    }

.addTransform {
    transform: translate3d(0,0,0);
    -webkit-transform: translate3d(0,0,0);
    -o-transform: translate3d(0,0,0);
    -moz-transform: translate3d(0,0,0);
    -ms-transform: translate3d(0,0,0);
    opacity:1 !important;
}





.half-block {
    position:relative;
    display:inline-block;
    vertical-align:top;
    width:50%;
    margin:0;
    padding:0;
}

.half-block-absolute {
    position: absolute;
    display: block;
    height:100%;
    width: 50%;
    margin: 0;
    padding: 0;
    top:0;
    bottom:0;
}
    .half-block-absolute.left {
        left:0;
    }
    .half-block-absolute.right {
        right: 0;
    }



    .bg_screen {
        background-position: center center;
        background-size: cover;
        background-repeat: no-repeat;
    }

.marginTopHeader {
    margin-top:30px;
}




.bg_fixed {
    background-attachment:fixed;
}

    .bg-lightest {
        background-color: #f7f5f4;
    }



.bg-black {
    background-color: #000000;
}
.bg-white {
    background-color: #ffffff;
}

.min-heigth {
    min-height:360px;
    height:360px
}


.paddingSection {
    padding: 60px 40px 20px 40px;
}


.max-width {
    max-width:1024px;
    position:relative;
    margin:0 auto;
    display:block;
    padding:0 10px;
}
.text-align-center {
    text-align:center;
}

video {
    position: fixed;
    left: 50%;
    top: 50%;
    transform: translate3d(-50%,-50%,0);
    -webkit-transform: translate3d(-50%,-50%,0);
    -o-transform: translate3d(-50%,-50%,0);
    -moz-transform: translate3d(-50%,-50%,0);
    -ms-transform: translate3d(-50%,-50%,0);
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: -100;
    background-image: url('../App_Video/poster.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    z-index: 0;
}
@media (min-aspect-ratio: 16/9) {
    video {
        width: 100%;
        height: auto;
    }
}
@media (max-aspect-ratio: 16/9) {
    video {
        width: auto;
        height: 100%;
    }
}

.noOverflow {
    overflow:hidden;
}

.hidden-elem {
    display: none;
}


.parallax-container {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    height: 100vh;
    width: 100vw;
}
    .parallax-container > img {
        zoom:1;
    }


#introVideo {
    position: fixed;
    right: 0;
    bottom: 0;
    min-width: 100%;
    min-height: 100%;
}


.oriz-navigation {
    display:block;
    position:relative;
    margin:30px 0 50px 0;
}
    .oriz-navigation li {
        display:inline-block;
        vertical-align:top;
    }
        .oriz-navigation li::after {
            content: "/";
            padding: 0 .94737rem 0 .94737rem;
            font-size: .57895rem;
        }

        .oriz-navigation li:last-child::after {
            content: "";
        }


.page_gioielli.oriz-navigation a {
    font-size: 16px;
}


.page_gioielli.oriz-navigation a:hover {
    color:#000;
}


    .page_gioielli.oriz-navigation a.is-checked {
        font-weight:bold;
        color:#000;
    }




.works-grid {
    display: block;
    width: 100%;
    text-align: left;
    position: relative;
    margin: auto;
}
    .works-grid li {
        display: inline-block;
        width: calc(25% - 1px);
        position: relative;
        margin-bottom: 1px;
        margin-right: 1px;
    }

        .works-grid li img {
            width:100%;
            height:auto;
        }

        .works-grid li a {
            display:block;
        }

            .works-grid li a:hover figcaption {
                opacity:1;
            }

            .works-grid figure {
                margin: 0;
                padding: 0;
            }

    .works-grid li figcaption {
        position: absolute;
        top: 0;
        bottom: 0;
        left: 0;
        right: 0;
        height: 100%;
        width: 100%;
        opacity: 0;
        background-color: rgba(255, 0, 0, 0.66);

        -webkit-transition: 0.5s ease-in-out;
        -moz-transition: 0.5s ease-in-out;
        -o-transition: 0.5s ease-in-out;
        transition: 0.5s ease-in-out;

    }
        .works-grid li figcaption h3 {
            padding-top:40%;
            color:#fff;
            text-align:center;
        }
        .works-grid li span, .works-grid li small {
            display: none;
        }




    .anim-list {
        display: block;
        position: relative;
        width: 100%;
    }
    .anim-list li a {
        display:inline-block;
        position:relative;
        font-size:20px;
        padding:20px;
        color:#3b3b3b;
        letter-spacing:normal;
        text-decoration:none;
        -webkit-transition: 0.5s ease-in-out;
        -moz-transition: 0.5s ease-in-out;
        -o-transition: 0.5s ease-in-out;
        transition: 0.5s ease-in-out;
    }
    .anim-list li:hover a {
        letter-spacing: 5px;
        text-decoration: none;
    }




    footer {
        position:fixed;
        bottom:0;
        left:0;
        right:0;
        opacity:0;
        display: block;
        width: 100%;
        padding: 10px 30px;
        background-color: #ffffff;
        z-index:10;
    }







.swiper-container {
    width: 100%;
    height: 100%;
    margin-left: auto;
    margin-right: auto;
}

.swiper-slide {
    text-align: center;
    font-size: 18px;
    background: #fff;
    /* Center slide text vertically */
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
}

.swiper-pagination-bullet {
    background: #fff !important;
}

.swiper-pagination-bullet-active {
    background: #fff !important;
    opacity:1;
}






.slide-inner {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 1;
    background-size: cover;
    background-position: center;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    justify-content: center;
    padding: 0px;
}

.image_detail {
    position: absolute;
    z-index: 1;
    display: block;
    width: 57.5%;
    height: calc( 100% - 60px);
    top: 60px;
    bottom: 0;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    opacity: 0;
    -o-transition: opacity 1s ease;
    -webkit-transition: opacity 1s ease;
    -moz-transition: opacity 1s ease;
    transition: opacity 1s ease;
}
    .image_detail.load {
        opacity:1;
    }

    .slide-inner[data-align='right'] .image_detail {
        left: 0;
        right: unset;
    }
.slide-inner[data-align='left'] .image_detail {
    right: 0;
    left:unset;
}



    .header h2 {
        font-size: 3.4vw;
        color: #fff;
        font-weight: 100;
        text-transform: uppercase;
    }


.header a.back_link {
    border: none !important;
    background-color: none !important;
    font-size: 10px;
    padding-left: 20px;
    margin-bottom:10px !important;
}
    .header a.back_link:before {
        content:'<';
        position:absolute;
        left:5px;
        font-weight:bold;
        top:3px;
    }

    .header a {
        font-size: 11px;
        color: #fff;
        font-weight: 100;
        
        text-decoration: none;
        display: inline-block;
        vertical-align: top;
        border: 1px solid #fff;
        padding: 4px 12px;
        letter-spacing: 3px;
        margin: 0px 0 20px 0;
        -webkit-transition: all 0.3s ease;
        -moz-transition: all 0.3s ease;
        transition: all 0.3s ease;
    }
    .header a:hover {
        background-color:#fff;
        color:#000 !important;
        opacity:1 !important;
    }
    .header a.color-black {
        color: #000;
        border: 1px solid #000;
    }

        .header a.color-black:hover {
            background-color: #000;
            color: #fff !important;
            opacity: 1 !important;
        }

        .header a.color-grey {
            color: #797979;
            border: 1px solid #797979;
        }

            .header a.color-grey:hover {
                background-color: #000;
                border: 1px solid #000;
                color: #fff !important;
                opacity: 1 !important;
            }

    /* TRANSITION OVERLAY */
    .transition-overlay {
        width: 100%;
        height: 100%;
        position: fixed;
        left: 0;
        top: -100%;
        z-index: 10;
        -webkit-transition: all 0.3s ease;
        -moz-transition: all 0.3s ease;
        transition: all 0.3s ease;
        transition-duration: 500ms;
        -webkit-transition-duration: 500ms;
        transition-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
        -webkit-transition-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
    }

    .transition-overlay * {
        -webkit-transition: all 0.3s ease;
        -moz-transition: all 0.3s ease;
        transition: all 0.3s ease;
        transition-duration: 500ms;
        -webkit-transition-duration: 500ms;
        transition-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
        -webkit-transition-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
    }

    .transition-overlay .layer {
        width: 10px;
        height: 100%;
        float: left;
        background: #313434;
        transition-delay: 0.4s;
    }

    .transition-overlay.active {
        top: 0;
    }

        .transition-overlay.active .layer {
            width: 100%;
        }


.boxText {
    display: block;
    float: right;
    text-align: left;
    width: 300px;
}
    .boxText p {
        color:#fff;
    }


.griglia_video {
    position: absolute;
    height: 100%;
    width: 100%;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 8;
    background-image: url(../App_Images/griglia_video.png);
}

.swiper-container-h {
    z-index:9 !important;
}

.swiper-container-fade .swiper-slide {
    background: none !important;
    opacity: 0 !important;
    -webkit-transition: opacity 1s ease;
    -moz-transition: opacity 1s ease;
    transition: opacity 1s ease;
}

.swiper-container-fade .swiper-slide-active {
    opacity: 1 !important;
}




/* SOUNDBAR */
.soundbar {
    margin: 0 auto;
    bottom: 20px;
    right: 0;
    left: 0px;
    width: 80px;
    display: block;
    flex-wrap: wrap;
    flex-direction: column;
    justify-content: center;
    position: absolute;
    z-index: 10;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    transition: all 0.3s ease;
    transition-duration: 500ms;
    -webkit-transition-duration: 500ms;
    transition-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
    -webkit-transition-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
    transition-delay: 1s;
}

    .soundbar .sound {
        margin-top: 0px;
        line-height: 26px;
        text-align: center;
        text-decoration: none !important;
    }

        .soundbar .sound .sound-title {
            text-align: center;
            line-height: 22px;
            color: #fff;
            font-size:13px;
            text-decoration:none !important;
        }

        .soundbar .sound .sound-text {
            text-align: center;
            width: 80px;
            line-height: 22px;
            overflow: hidden;
            text-align: center;
            font-size: 13px;
            font-weight: bold;
            text-decoration: none !important;
        }

            .soundbar .sound .sound-text.move-up b {
            }

            .soundbar .sound .sound-text b {
                width: 100%;
                display: block;
                color: #fff;
                -webkit-transition: all 0.3s ease;
                -moz-transition: all 0.3s ease;
                transition: all 0.3s ease;
                transition-duration: 500ms;
                -webkit-transition-duration: 500ms;
                transition-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
                -webkit-transition-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
                font-weight: 400;
            }

        .soundbar .sound .equalizer {
            float: left;
        }

            .soundbar .sound .equalizer * {
                transition-delay: 0s;
            }

            .soundbar .sound .equalizer .holder {
                width: 23px;
                height: 20px;
                float: left;
                position: relative;
            }



/* EQUALIZER */
.equalizer {
    margin-left: 30px;
    width: 26px;
    height: 26px;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: center;
    transform: rotate(0);
}

    .equalizer span {
        background: #fff;
        width: 1px;
        height: 2px;
        top: 50%;
        bottom: 0;
        left: 0%;
        transform: translateY(-50%);
        position: absolute;
        transition: height 0.2s linear;
    }

        .equalizer span:nth-child(1) {
            margin-left: 4px;
        }

        .equalizer span:nth-child(2) {
            margin-left: 8px;
        }

        .equalizer span:nth-child(4) {
            margin-left: 12px;
        }

        .equalizer span:nth-child(5) {
            margin-left: 16px;
        }

        .equalizer span:nth-child(6) {
            margin-left: 20px;
        }

    .equalizer.paused span {
        height: 3px !important;
    }


.swiper-container-vertical > .swiper-pagination-bullets {
    top: 120px !important;
}


.swiper-button-next, .swiper-button-prev {
    color:#fff !important;
    text-decoration:none !important;
}


.swiper-store .swiper-button-prev {
    left: -50px;
}
.swiper-store .swiper-button-next {
    right: -30px;
}

.swiper-store .swiper-button-next, .swiper-store .swiper-button-prev {
    top: 30%;
}


.title_social {
    padding: 10px 0;
    margin-top: 60px;
    margin-bottom: 10px;
    border-bottom: 1px solid #dedede;
    width: 100%;
    display: block;
    font-size: 10px;
    letter-spacing: 3px;
}

.list_social li {
    list-style: none;
    display: inline-block;
    vertical-align: top;
}
.ico_social {
    display:inline-block;
    vertical-align:top;
    height:30px;
    width:30px;
    background-position:center center;
    background-repeat:no-repeat;
    background-size:25px;
    margin:5px;
    border:none !important;
}

.header a.ico_social:hover {
    background-color: transparent !important;
    opacity:0.6 !important;
}

.ico_social.ico_facebook {
    background-image: url(../App_Images/share/ico_facebook.svg);
}
.ico_social.ico_instagram {
    background-image: url(../App_Images/share/ico_instagram.svg);
}
.ico_social.ico_youtube {
    background-image: url(../App_Images/share/ico_youtube.svg);
}

.ico_social.ico_twitter {
    background-image: url(../App_Images/share/ico_twitter.svg);
}

.ico_social.ico_google {
    background-image: url(../App_Images/share/ico_google.svg);
}


.ico_social.ico_facebook_dark {
    background-image: url(../App_Images/share/ico_facebook_dark.svg);
}

.ico_social.ico_twitter_dark {
    background-image: url(../App_Images/share/ico_twitter_dark.svg);
}

.ico_social.ico_google_dark {
    background-image: url(../App_Images/share/ico_google_dark.svg);
}


.list_eventi {
    color: #fff;
    width: 300px;
    height:300px;
    display:block;
    float:right;
}
    .list_eventi .swiper-slide {
        height: 300px;
        background-color: rgba(0, 0, 0, 0.30);
        padding: 10px;
        width: 300px;
        position: relative;
    }

.contentImage {
    border:none !important;
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
    z-index: 0;
    padding:0 !important;
    margin:0 !important;
    text-align: center;
    overflow:hidden;
    background: #fff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
}
    .contentImage * {
        text-decoration:none !important;
    }
    .contentImage:hover img {
        -webkit-transform: scale(1.1); /* Safari and Chrome */
        -moz-transform: scale(1.1); /* Firefox */
        -ms-transform: scale(1.1); /* IE 9 */
        -o-transform: scale(1.1); /* Opera */
        transform: scale(1.1);
    }
.list_eventi img {
    position: absolute;
    display: block;
    width: 100%;
    height: auto;
    z-index: 0;
    left: 0;
    right: 0;
    top: 0;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    transition: all 0.3s ease;
}






.list_eventi h5.titoloEvento {
    display: block;
    color: #fff !important;
    text-overflow: ellipsis;
    width: 100%;
    text-align: center;
    padding: 0 20px;
    position: absolute;
    bottom: 5px;
    z-index: 3;
}

.list_eventi span.dataEvento {
    display: table;
    color: #fff !important;
    text-overflow: ellipsis;
    width: 100%;
    text-align: center;
    padding: 0 20px;
    font-size: 11px;
    position: absolute;
    top:10px;
    z-index: 3;
}
.swiper-pagination-events {
    position: absolute;
    text-align: center;
    transition: .3s opacity;
    transform: translate3d(0,0,0);
    z-index: 10;
    bottom: -30px !important;
}
.swiper-events .swiper-button-prev {
    left: -40px;
}

.swiper-events .swiper-button-next {
    right: -40px;
}


.image_evento {
    display:block;
    width:100%;
    max-width:600px;
    margin:auto;
    height:auto;
}
.inside_evento {
    display:block;
    padding:20px;
    width:100%;
}

    .inside_evento p {
        font-size:16px;
    }





    



.list_store {
    color: #fff;
    width: 300px;
}
.list_store * {
    color: #fff;
}

    .list_store .swiper-slide {
        width: 300px;
        margin-right: 30px;
        text-align: left;
        background-color: transparent;
        height: 250px;
        display: inline-block !important;
        vertical-align: top;
        -webkit-box-pack: unset;
        -ms-flex-pack: unset;
        -webkit-justify-content: unset;
        justify-content: unset;
        -webkit-box-align: unset;
        -ms-flex-align: unset;
        -webkit-align-items: unset;
        align-items: unset;
    }

    .list_store a {
        border: none !important;
        letter-spacing: 0 normal !important;
        padding: 5px !important;
        margin-left: 15px;
    }
    .list_store p {
        margin-left:20px;
        color:rgb(237, 237, 237);
    }
    .list_store .nomePaese {
        font-size: 11px;
        letter-spacing: 3px;

    }
.swiper-pagination-stores {
    position: absolute;
    text-align: center;
    transition: .3s opacity;
    transform: translate3d(0,0,0);
    z-index: 10;
}


.labelProdotto {
    display:block;
    font-size: 24px;
    margin-bottom:20px;
}


.btn_open_share {
    display:none;
}



/* RESPONSIVE MOBILE FIXES */
@media only screen and (max-width: 992px), only screen and (max-device-width: 992px) {
    .container {
        max-width: unset !important;
    }
}

@media only screen and (max-width: 900px), only screen and (max-device-width: 900px) {



        .circle {
        display: none;
    }

    .extra-nav-right {
        display: none !important;
    }

    .slide-inner {
        padding: 0px;
    }

        .slide-inner .container {
            margin-top: 160px;
        }

            .slide-inner .container h2 {
                font-size: 30px;
            }



    .detail-product .slide-inner .container {
        margin: 0 auto;
    }

    .menubig-anim-list {
        width: 90% !important;
    }

        .menubig-anim-list li a {
            font-size: 30px;
            padding: 6px;
            line-height: 32px;
        }


    .works-grid li {
        width: calc( 33.333% - 1px);
    }
}


@media only screen and (max-width: 768px), only screen and (max-device-width: 768px) {
    .container {
        max-width: unset !important;
    }
}



@media only screen and (max-width: 700px), only screen and (max-device-width: 700px) {

    .btn_open_share {
        display: block;
    }
    .boxText h2 {
        width: calc(100% - 110px);
    }

    .box_extra_product {
        text-align: right;
        width: 110px;
        position: absolute;
        right: 0;
        bottom: 15px;
    }
        .box_extra_product .list_social {
            margin-bottom:0;
        }
        .box_extra_product .list_social a {
            margin-bottom: 0;
        }
        .box_extra_product .title_social {
            padding: 0 !important;
            margin-top: 0px;
            margin-bottom: 10px;
            border-bottom: none;
        }

    .bigTitle {
        font-size: 4rem;
        padding: 0 10px;
        line-height: 50px;
    }

    .smallTitle {
        bottom: 130px;
        top: unset;
    }


    .paddingSection {
        padding: 20px 40px 20px 40px;
    }

    .oriz-navigation {
        margin-top: 0 !important;
        margin-bottom: 20px !important;
        padding: 0 10px;
    }

    .image_detail {
        width: 100%;
        height: 80%;
    }

    .page_gioielli.oriz-navigation a {
        font-size: 16px;
        padding: 5px 0;
        display: inline-block;
    }

    .bg_set_right {
        background-position: right center !important;
    }

    .bg_set_left {
        background-position: left center !important;
    }


    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 1.7rem;
    }

    h3 {
        font-size: 1.20rem;
    }


    .menubig-anim-list {
        padding-bottom: 200px !important;
    }

    .footer-menu-fullscreen .left-nav {
        text-align: center !important;
        width: 100%;
    }

        .footer-menu-fullscreen .left-nav li::after {
            content: "";
            padding: 5px 0 !important;
        }

        .footer-menu-fullscreen .left-nav li {
            display: block;
            width: 100%;
            text-align: center;
        }

    .footer-menu-fullscreen .right-nav {
        float: unset !important;
        display: inline-block !important;
        vertical-align: top;
        text-align: center !important;
        margin: 10px 0 0 0 !important;
        width: 100%;
        margin-left: 13px !important;
    }



    .works-grid li {
        width: calc( 50% - 1px);
    }



    .detail-product .slide-inner .container {
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        width: 100%;
        max-width: unset;
        text-align: left !important;
    }

    .boxText {
        width: 100%;
    }

    .color-details-background-anim.detail-right-skew {
        transform: rotate(84deg) scaleY(5.4) translate3d(63%,0,0) !important;
        -webkit-transform: rotate(84deg) scaleY(5.4) translate3d(63%,0,0) !important;
        -o-transform: rotate(84deg) scaleY(5.4) translate3d(63%,0,0) !important;
        -moz-transform: rotate(84deg) scaleY(5.4) translate3d(63%,0,0) !important;
        -ms-transform: rotate(84deg) scaleY(5.4) translate3d(63%,0,0) !important;
    }


    .detail-product .color-details-background-anim.detail-right-skew {
        transform: rotate(84deg) scaleY(5.4) translate3d(82%,0,0) !important;
        -webkit-transform: rotate(84deg) scaleY(5.4) translate3d(82%,0,0) !important;
        -o-transform: rotate(84deg) scaleY(5.4) translate3d(82%,0,0) !important;
        -moz-transform: rotate(84deg) scaleY(5.4) translate3d(82%,0,0) !important;
        -ms-transform: rotate(84deg) scaleY(5.4) translate3d(82%,0,0) !important;
    }



}
@media only screen and (max-width: 550px), only screen and (max-device-width: 550px) {


    .image_detail {
        width: 100%;
        height: 70%;
    }


    .title_social {
        margin-top:30px;
    }

    .half-block {
        width: 100%;
    }
        .menubig-anim-list li a {
            font-size: 30px;
            padding: 3px;
        }

            .menubig-anim-list {
                padding-bottom: 250px !important;
            }

    .footer-menu-fullscreen {
        padding: 0 20px !important;
        bottom: 80px !important;
    }

        .footer-menu-fullscreen .right-nav {
            margin-left: 0px !important;
        }
    .labelSocial{
        display:none !important;
    }

    .slide-inner[data-align=left] .container {
        margin-top: 0;
        position: absolute;
        width: calc(100% - 20px);
        bottom: 0;
        left: 10px;
    }

        .slide-inner[data-align=left] .container.swip-cont {
            margin-top: 0;
            position: absolute;
            width: calc(100% - 70px);
            bottom: 0;
            left: 40px;
        }


    .slide-inner[data-align=left] .swiper-button-next {
        right: -40px;
    }


    .slide-inner[data-align=right] .container {
        margin-top: 0;
        position: absolute;
        width: calc(100% - 20px);
        bottom: 0;
        left: 10px;
    }
        .slide-inner[data-align=right] .container.swip-cont {
            margin-top: 0;
            position: absolute;
            width: calc(100% - 60px);
            bottom: 0;
            left: 30px;
        }



    .container.about p {
        /*
        background-color: rgba(255, 255, 255, 0.50);
        padding: 10px;

        */
        max-width:unset;
        width:100%;
    }

    .list_eventi {
        width: 100%;
        height: 290px;
    }

        .list_eventi .swiper-slide {
            height: 250px;
        }

    .list_store {
        width: 100%;
    }

/*
    .color-details-background-anim.left-skew {
        transform: rotate(-80deg) scaleY(5.4) translate3d(-54%,0,0) !important;
        -webkit-transform: rotate(-80deg) scaleY(5.4) translate3d(-54%,0,0) !important;
        -o-transform: rotate(-80deg) scaleY(5.4) translate3d(-54%,0,0) !important;
        -moz-transform: rotate(-80deg) scaleY(5.4) translate3d(-54%,0,0) !important;
        -ms-transform: rotate(-80deg) scaleY(5.4) translate3d(-54%,0,0) !important;
    }
    */
   }

