/******************************/
/*            RESET           */
/******************************/
html,body,div,span,applet,object,iframe,h1,h2,h3,h4,h5,h6,p,blockquote,pre,a,abbr,acronym,address,big,cite,code,del,dfn,em,img,ins,kbd,q,s,samp,small,strike,strong,sub,sup,tt,var,b,u,i,center,dl,dt,dd,ol,ul,li,fieldset,form,label,legend,table,caption,tbody,tfoot,thead,tr,th,td,article,aside,canvas,details,embed,figure,figcaption,footer,header,hgroup,menu,nav,output,ruby,section,summary,time,mark,audio,video{margin:0;padding:0;border:0;font-size:100%;font:inherit;vertical-align:baseline}
article,aside,details,figcaption,figure,footer,header,hgroup,menu,nav,section{display:block}body{line-height:1}ol,ul{list-style:none}blockquote,q{quotes:none}blockquote:before,blockquote:after,q:before,q:after{content:'';content:none}table{border-collapse:collapse;border-spacing:0}audio:not([controls]){display:none}button{overflow:visible;-webkit-appearance:button}details{display:block}html{-ms-overflow-style:-ms-autohiding-scrollbar;overflow-y:scroll;-webkit-text-size-adjust:100%}input{-webkit-border-radius:0}input[type="button"],input[type="reset"],input[type="submit"]{-webkit-appearance:button}input[type="number"]{width:auto}input[type="search"]{-webkit-appearance:textfield}input[type="search"]::-webkit-search-cancel-button,input[type="search"]::-webkit-search-decoration{-webkit-appearance:none}main{display:block}pre{overflow:auto}progress{display:inline-block}small{font-size:75%}summary{display:block}svg:not(:root){overflow:hidden}template{display:none}textarea{overflow:auto}[hidden]{display:none}*,:before,:after{box-sizing:inherit}*{font-size:inherit;line-height:inherit}:before,:after{text-decoration:inherit;vertical-align:inherit}*,:before,:after{border-style:solid;border-width:0}*{background-repeat:no-repeat;margin:0;padding:0}:root{background-color:#fff;box-sizing:border-box;color:#000;cursor:default;font:100%/1.5 sans-serif;text-rendering:optimizeLegibility}a{text-decoration:none}audio,canvas,iframe,img,svg,video{vertical-align:middle}button,input,select,textarea{background-color:transparent;color:inherit;font-family:inherit;font-style:inherit;font-weight:inherit}button,[type="button"],[type="date"],[type="datetime"],[type="datetime-local"],[type="email"],[type="month"],[type="number"],[type="password"],[type="reset"],[type="search"],[type="submit"],[type="tel"],[type="text"],[type="time"],[type="url"],[type="week"],select,textarea{min-height:1.5em}code,kbd,pre,samp{font-family:monospace,monospace}nav ol,nav ul{list-style:none}select{-moz-appearance:none;-webkit-appearance:none}select::-ms-expand{display:none}select::-ms-value{color:currentColor}table{border-collapse:collapse;border-spacing:0}textarea{resize:vertical}::-moz-selection{background-color:#b3d4fc;color:#4c2b03;text-shadow:none}::selection{background-color:#b3d4fc;color:#4c2b03;text-shadow:none}[aria-busy="true"]{cursor:progress}[aria-controls]{cursor:pointer}[aria-disabled]{cursor:default}[hidden][aria-hidden="false"]{clip:rect(0 0 0 0);display:inherit;position:absolute}[hidden][aria-hidden="false"]:focus{clip:auto}
/******************************/
/*          GENERAL           */
/******************************/
html {
    overflow: hidden;
    height: 100%;
    width: 100%;
}
body {
    width: 100%;
    height: 100%;
    background: #000;
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
}
sup {
    vertical-align: super;
    font-size: smaller;
}
strong {
    font-weight: bold;
}
a { transition: color 0.25s ease, border 0.25s ease; }
html.news {
    height: auto;
    overflow: visible;
    background: #fff;
}
body section {
    position: relative;
    background: #fff;
    -webkit-transition: all 500ms cubic-bezier(0.420, 0.000, 0.580, 1.000);
    -moz-transition: all 500ms cubic-bezier(0.420, 0.000, 0.580, 1.000);
    -o-transition: all 500ms cubic-bezier(0.420, 0.000, 0.580, 1.000);
    transition: all 500ms cubic-bezier(0.420, 0.000, 0.580, 1.000);
    -webkit-transition-timing-function: cubic-bezier(0.420, 0.000, 0.580, 1.000);
    -moz-transition-timing-function: cubic-bezier(0.420, 0.000, 0.580, 1.000);
    -o-transition-timing-function: cubic-bezier(0.420, 0.000, 0.580, 1.000);
    transition-timing-function: cubic-bezier(0.420, 0.000, 0.580, 1.000);
}
body section.open {
    transform: scale(0.8);
}
html.news section.open {
    transform: none;
}
.menu {
    position: fixed;
    z-index: 1000;
    top: 0;
    bottom: 0;
    width: 25%;
    -webkit-transition: all 500ms cubic-bezier(0.420, 0.000, 0.580, 1.000);
    -moz-transition: all 500ms cubic-bezier(0.420, 0.000, 0.580, 1.000);
    -o-transition: all 500ms cubic-bezier(0.420, 0.000, 0.580, 1.000);
    transition: all 500ms cubic-bezier(0.420, 0.000, 0.580, 1.000);
    -webkit-transition-timing-function: cubic-bezier(0.420, 0.000, 0.580, 1.000);
    -moz-transition-timing-function: cubic-bezier(0.420, 0.000, 0.580, 1.000);
    -o-transition-timing-function: cubic-bezier(0.420, 0.000, 0.580, 1.000);
    transition-timing-function: cubic-bezier(0.420, 0.000, 0.580, 1.000);
}
@media screen and (max-width: 600px) {
    .video-container .video-box.mobile { display: block; }
    .video-container .video-box.desktop { display: none; }
    .menu {
        width: 50%;
        bottom: 48px;
    }
}
.menu--left {
    left: 0;
    transform: translateX(-100%);
    -webkit-transform: translateX(-100%);
    -o-transform: translateX(-100%);
    -moz-transform: translateX(-100%);
}
.menu--right {
    right: 0;
    transform: translateX(100%);
    -webkit-transform: translateX(100%);
    -o-transform: translateX(100%);
    -moz-transform: translateX(100%);
}
.menu--left.open, .menu--right.open {
    transform: translateX(0);
    -webkit-transform: translateX(0);
    -o-transform: translateX(0);
    -moz-transform: translateX(0);
}
.menu a {
    overflow: hidden;
    height: 20%;
    display: block;
    position: relative;
    cursor: pointer;
    -webkit-transition: all 250ms cubic-bezier(0.420, 0.000, 0.580, 1.000);
    -moz-transition: all 250ms cubic-bezier(0.420, 0.000, 0.580, 1.000);
    -o-transition: all 250ms cubic-bezier(0.420, 0.000, 0.580, 1.000);
    transition: all 250ms cubic-bezier(0.420, 0.000, 0.580, 1.000);
    -webkit-transition-timing-function: cubic-bezier(0.420, 0.000, 0.580, 1.000);
    -moz-transition-timing-function: cubic-bezier(0.420, 0.000, 0.580, 1.000);
    -o-transition-timing-function: cubic-bezier(0.420, 0.000, 0.580, 1.000);
    transition-timing-function: cubic-bezier(0.420, 0.000, 0.580, 1.000);
    background: rgba(0,0,0,0.65);
}
.menu a:hover {
    background: rgba(248, 173, 59, 0.8);
}
.menu a .link--content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
}
.menu a .link--content img {
    max-width: 30%;
    height: auto;
    width: auto;
    display: block;
    margin: 0 auto 15px auto;
}
@media screen and (min-width: 960px) {
    .menu a .link--content img {
        max-height: 52px
    }
}
.menu a .link--content p {
    color: #fff;
    text-transform: uppercase;
    font-size: 15px;
    letter-spacing: 3px;
    text-align: center;
    line-height: 1.3em;
}
@media screen and (max-width: 600px) {
    .menu a .link--content p {
        letter-spacing: 1px;
        font-size: 12px
    }
}


div#cookiesdirective {
    left: 20px;
    width: calc(100% - 40px);
    height: auto;
    background: rgba(31,31,31,.9);
    font-size: 11px;
    text-align: center;
    z-index: 1023;
    padding: 13px;
    line-height: 1.6;
}

div#cookiesdirective a {
    font-weight: bold;
    border-bottom: 2px solid;
    color: #d29b29;
}

div#cookiesdirective input#impliedsubmit {
    background: #d29b29;
    border: none;
    cursor: pointer;
    padding: 8px 16px;
    margin-top: 9px;
    font-family: inherit;
    font-weight: bold;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    font-size: 11px;
    color: #fff;
}


.nav--mobile {
    display: none;
    position: fixed;
    z-index: 10000;
    bottom: 0;
    transform: translateY(100%);
    overflow: auto;
    height: 48px;
    line-height: 48px;
    background-color: #F8AD3B;
    width: 100%;
    -webkit-transition: all 500ms cubic-bezier(0.420, 0.000, 0.580, 1.000);
    -moz-transition: all 500ms cubic-bezier(0.420, 0.000, 0.580, 1.000);
    -o-transition: all 500ms cubic-bezier(0.420, 0.000, 0.580, 1.000);
    transition: all 500ms cubic-bezier(0.420, 0.000, 0.580, 1.000);
    -webkit-transition-timing-function: cubic-bezier(0.420, 0.000, 0.580, 1.000);
    -moz-transition-timing-function: cubic-bezier(0.420, 0.000, 0.580, 1.000);
    -o-transition-timing-function: cubic-bezier(0.420, 0.000, 0.580, 1.000);
    transition-timing-function: cubic-bezier(0.420, 0.000, 0.580, 1.000);
    cursor: pointer;
    overflow: auto;
}
.nav--mobile.open {
    transform: translateY(0);
}
@media screen and (max-width: 600px) {
    .nav--mobile {
        display: block;
    }
}
.nav--mobile a {
    display: block;
    width: 25%;
    float: left;
    color: #333;
    text-align: center;
    text-transform: uppercase;
    font-weight: bold;
    font-size: 0.75em;
}
.nav--mobile a.close--menu ~ a {
    box-shadow: -3px 0px 0px 0px #222;
}
.home--logo {
    width: 75%;
    max-width: 500px;
    display: block;
    margin: 0 auto 25px auto;
}
.button-openmenu, .button-closemenu {
    cursor: pointer;
    font-weight: normal;
    letter-spacing: 10px;
    position: relative;
    transition: all 0.3s cubic-bezier(0.420, 0.000, 0.580, 1.000) 0.0s;
    -moz-transition: all 0.3s cubic-bezier(0.420, 0.000, 0.580, 1.000) 0.0s;
    -o-transition: all 0.3s cubic-bezier(0.420, 0.000, 0.580, 1.000) 0.0s;
    -webkit-transition: all 0.3s cubic-bezier(0.420, 0.000, 0.580, 1.000) 0.0s;
}
.container-big.vid.open .button-openmenu {
    opacity: 0;
    visibility: hidden;
}
.container-big.vid .button-closemenu {
    opacity: 0;
    visibility: hidden;
}
@media screen and (min-width: 601px) {
    .video-container .video-box.mobile     { display: none; }
    .video-container .video-box.desktop    { display: block; }    
    .container-big.vid.open .button-closemenu {
        opacity: 1;
        visibility: visible;
    }
    div#cookiesdirective {
        left: 5%;
        width: 90%;
        padding: 20px 0;
        line-height: 1.8;
        font-size: 13px;
    }
}
.button-openmenu:before, .button-openmenu:after,
.button-closemenu:before, .button-closemenu:after {
    position: absolute;
    content: " ";
    width: 50px;
    height: 1px;
    background: #fff;
    top: 50%;
}
.button-openmenu:before,
.button-closemenu:before {
    left: -70px;
}
.button-openmenu:after,
.button-closemenu:after {
    right: -62px;
}
.cta--top {
    left: 50%;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%);
    z-index: 4;
    position: absolute;
    color: #fff;
    top: 50px;
    text-align: center;
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    line-height: 1.25em;
    -webkit-transition: all 500ms cubic-bezier(0.420, 0.000, 0.580, 1.000);
    -moz-transition: all 500ms cubic-bezier(0.420, 0.000, 0.580, 1.000);
    -o-transition: all 500ms cubic-bezier(0.420, 0.000, 0.580, 1.000);
    transition: all 500ms cubic-bezier(0.420, 0.000, 0.580, 1.000);
    -webkit-transition-timing-function: cubic-bezier(0.420, 0.000, 0.580, 1.000);
    -moz-transition-timing-function: cubic-bezier(0.420, 0.000, 0.580, 1.000);
    -o-transition-timing-function: cubic-bezier(0.420, 0.000, 0.580, 1.000);
    transition-timing-function: cubic-bezier(0.420, 0.000, 0.580, 1.000);
}
.container-big.vid.open .cta--top {
    position: fixed;
    left: 50%;
    -webkit-transform: translate(-50%, -50%) scale(1.25);
    -moz-transform: translate(-50%, -50%) scale(1.25);
    -o-transform: translate(-50%, -50%) scale(1.25);
    transform: translate(-50%, -50%) scale(1.25);
    top: 50%
}
body.home .cta--top {
    top: 0;
}
body.home .cta--top > a.top--logo {
    opacity: 0;
    filter: alpha(opacity=0);
    -ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    display: block;
    visibility: hidden;
    -webkit-transition: all 500ms cubic-bezier(0.420, 0.000, 0.580, 1.000);
    -moz-transition: all 500ms cubic-bezier(0.420, 0.000, 0.580, 1.000);
    -o-transition: all 500ms cubic-bezier(0.420, 0.000, 0.580, 1.000);
    transition: all 500ms cubic-bezier(0.420, 0.000, 0.580, 1.000);
    -webkit-transition-timing-function: cubic-bezier(0.420, 0.000, 0.580, 1.000);
    -moz-transition-timing-function: cubic-bezier(0.420, 0.000, 0.580, 1.000);
    -o-transition-timing-function: cubic-bezier(0.420, 0.000, 0.580, 1.000);
    transition-timing-function: cubic-bezier(0.420, 0.000, 0.580, 1.000);
}
body.home.open .cta--top > a.top--logo {
    opacity: 1;
    visibility: visible;
    display: block;
    -ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
}
.news .container-big.vid.open .cta--top {
    -webkit-transform: translate(-50%, -50%) scale(1);
    -moz-transform: translate(-50%, -50%) scale(1);
    -o-transform: translate(-50%, -50%) scale(1);
    transform: translate(-50%, -50%) scale(1);
}
.container-big.vid .cta--top .sottomenu {
    display: none;
    opacity: 0;
    -webkit-transition: all 500ms cubic-bezier(0.420, 0.000, 0.580, 1.000);
    -moz-transition: all 500ms cubic-bezier(0.420, 0.000, 0.580, 1.000);
    -o-transition: all 500ms cubic-bezier(0.420, 0.000, 0.580, 1.000);
    transition: all 500ms cubic-bezier(0.420, 0.000, 0.580, 1.000);
    -webkit-transition-timing-function: cubic-bezier(0.420, 0.000, 0.580, 1.000);
    -moz-transition-timing-function: cubic-bezier(0.420, 0.000, 0.580, 1.000);
    -o-transition-timing-function: cubic-bezier(0.420, 0.000, 0.580, 1.000);
    transition-timing-function: cubic-bezier(0.420, 0.000, 0.580, 1.000);
    visibility: hidden;
}
.container-big.vid.open .cta--top .sottomenu {
    opacity: 1;
    margin-top: 50px;
    visibility: visible;
    display: block;
}
.container-big.vid .cta--top .sottomenu a {
    display: block;
    color: #fff;
    margin: 25px auto;
    padding: 10px;
    font-weight: normal;
    letter-spacing: 5px;
    border-radius: 50px;
    border: 2px solid rgba(255,255,255,.3);
    font-size: 20px;
    max-width: 270px;
}
.container-big.vid .cta--top .sottomenu a:hover {
    color: #F8AD3B;
    border: 2px solid #F8AD3B;
}
@media screen and (max-width: 600px) {
    .home--logo {
        width: 60%;
    }    
    .cta--top {
        width: 75%;
    }
    .container-big.vid.open .cta--top {
        z-index: 3;
        opacity: 1
    }
    .container-big.vid.open .cta--top {
        opacity: 0
    }
    .container-big.vid.open .cta--top .sottomenu {
        display: none;
    }
}
.news .cta--top {
    /*position: fixed;*/
    top: 50px;
    -webkit-transition: all 500ms cubic-bezier(0.420, 0.000, 0.580, 1.000);
    -moz-transition: all 500ms cubic-bezier(0.420, 0.000, 0.580, 1.000);
    -o-transition: all 500ms cubic-bezier(0.420, 0.000, 0.580, 1.000);
    transition: all 500ms cubic-bezier(0.420, 0.000, 0.580, 1.000);
    -webkit-transition-timing-function: cubic-bezier(0.420, 0.000, 0.580, 1.000);
    -moz-transition-timing-function: cubic-bezier(0.420, 0.000, 0.580, 1.000);
    -o-transition-timing-function: cubic-bezier(0.420, 0.000, 0.580, 1.000);
    transition-timing-function: cubic-bezier(0.420, 0.000, 0.580, 1.000);
    z-index: 999;
}
@media screen and (-webkit-min-device-pixel-ratio:0) {
}
.cta--bottom {
    z-index: 4;
    /*position: absolute;*/
    position: fixed;
    color: #fff;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
}
.cta--gallerie {
    z-index: 23;
    transition: all 0.3s cubic-bezier(0.420, 0.000, 0.580, 1.000) 0.0s;
    -moz-transition: all 0.3s cubic-bezier(0.420, 0.000, 0.580, 1.000) 0.0s;
    -o-transition: all 0.3s cubic-bezier(0.420, 0.000, 0.580, 1.000) 0.0s;
    -webkit-transition: all 0.3s cubic-bezier(0.420, 0.000, 0.580, 1.000) 0.0s;
    display: none;
}
body.home .cta--gallerie {
    position: absolute;
    bottom: 0;
    left: 50%;
    -moz-transform: translateX(-50%) scale(0.8);
    -webkit-transform: translateX(-50%) scale(0.8);
    -o-transform: translateX(-50%) scale(0.8);
    transform: translateX(-50%) scale(0.8);
    -moz-transform-origin: bottom center;
    -webkit-transform-origin: bottom center;
    -o-transform-origin: bottom center;
    transform-origin: bottom center;
    display: block;
}  
.button-scopriprogetti, .button-leggilenews {
    cursor: pointer;
    transform: translateX(0) translateY(0%) translateY(-25px);
    -webkit-transition: all 500ms cubic-bezier(0.420, 0.000, 0.580, 1.000);
    -moz-transition: all 500ms cubic-bezier(0.420, 0.000, 0.580, 1.000);
    -o-transition: all 500ms cubic-bezier(0.420, 0.000, 0.580, 1.000);
    transition: all 500ms cubic-bezier(0.420, 0.000, 0.580, 1.000);
    -webkit-transition-timing-function: cubic-bezier(0.420, 0.000, 0.580, 1.000);
    -moz-transition-timing-function: cubic-bezier(0.420, 0.000, 0.580, 1.000);
    -o-transition-timing-function: cubic-bezier(0.420, 0.000, 0.580, 1.000);
    transition-timing-function: cubic-bezier(0.420, 0.000, 0.580, 1.000);
    opacity: 1;
    display: block;
    margin: 0 auto;
    text-align: center;
}
.button-scopriprogetti.not-visible, .button-leggilenews.not-visible {
    transform: translateX(0) translateY(100%) translateY(0px);
    opacity: 0
}
.meta {
    width: 90%;
    z-index: 2;
    max-width: 1080px;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%) translateY(100%) translateY(-66px);
    background: #fff;
    padding: 20px 25px;
    padding-top: 0;
    box-sizing: border-box;
    box-shadow: 0 0 0 rgba(248,173,59, 0.8);
    animation: pulse 2s infinite;
    overflow: hidden;
    -webkit-transition: all 500ms cubic-bezier(0.420, 0.000, 0.580, 1.000);
    -moz-transition: all 500ms cubic-bezier(0.420, 0.000, 0.580, 1.000);
    -o-transition: all 500ms cubic-bezier(0.420, 0.000, 0.580, 1.000);
    transition: all 500ms cubic-bezier(0.420, 0.000, 0.580, 1.000);
    -webkit-transition-timing-function: cubic-bezier(0.420, 0.000, 0.580, 1.000);
    -moz-transition-timing-function: cubic-bezier(0.420, 0.000, 0.580, 1.000);
    -o-transition-timing-function: cubic-bezier(0.420, 0.000, 0.580, 1.000);
    transition-timing-function: cubic-bezier(0.420, 0.000, 0.580, 1.000);
    max-height: calc(100vh - 200px);
}
.meta.open {
    transform: translate(-50%, 0);
    
    animation: none;
    box-shadow: 0 0 15px 0 rgba(0,0,0, 0.5);
    overflow-y: scroll;
}
.meta.open:hover {
    animation: none;
}
.meta .meta--title {
    color: #F8AD3B;
    display: block;
    font-weight: 700;
    margin-bottom: 19px;
    cursor: pointer;
    box-sizing: border-box;
    margin: 0;
    position: sticky;
    position: -webkit-sticky;
    top: 0;
    background: #fff;
    padding: 20px 0;
}
.meta .meta--title h3 {
    display: inline-block;
    line-height: 1.25em;
    font-size: 22px;
    position: sticky;
    position: -webkit-sticky;
    top: 0;
    text-transform: uppercase;
    color: #222;
    letter-spacing: 1px;
}
.meta--arrow {
    width: 30px;
    height: 11px;
    display: inline-block;
    position: relative;
    float: right;
    margin-top: 13px
}
.meta--arrow span {
    top: 0;
    position: absolute;
    width: 18px;
    height: 2px;
    background-color: #F8AD3B;
    display: inline-block;
    -webkit-transition: all 500ms cubic-bezier(0.420, 0.000, 0.580, 1.000);
    -moz-transition: all 500ms cubic-bezier(0.420, 0.000, 0.580, 1.000);
    -o-transition: all 500ms cubic-bezier(0.420, 0.000, 0.580, 1.000);
    transition: all 500ms cubic-bezier(0.420, 0.000, 0.580, 1.000);
    -webkit-transition-timing-function: cubic-bezier(0.420, 0.000, 0.580, 1.000);
    -moz-transition-timing-function: cubic-bezier(0.420, 0.000, 0.580, 1.000);
    -o-transition-timing-function: cubic-bezier(0.420, 0.000, 0.580, 1.000);
    transition-timing-function: cubic-bezier(0.420, 0.000, 0.580, 1.000);
}
.meta--arrow span:first-of-type {
    left: 0;
    -webkit-transform: rotate(-45deg);
            transform: rotate(-45deg);
}
.meta--arrow span:last-of-type {
    right: 0;
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
}
/*.meta--arrow.open span {
    background-color: #000;
}*/
.meta--arrow.open span:first-of-type {
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
}
.meta--arrow.open span:last-of-type {
    -webkit-transform: rotate(-45deg);
            transform: rotate(-45deg);
}

.meta .meta--more h4 {
    font-size: 16px;
    font-weight: bold;
    color: #555;
    margin-bottom: 1em;
}
.meta .meta--more .meta--logo {
  display: inline-block;
  margin: 0 15px 15px 0;
}
.meta .meta--more a {
    text-decoration: underline;
    color: #F8AD3B;
}
@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(248,173,59, 0.7);
  }
  70% {
    box-shadow: 0 0 15px 15px rgba(248,173,59, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(248,173,59, 0);
  }
}
@keyframes move {
  0% {
    transform: translateX(-50%) translateY(100%) translateY(-80px);
  }
  50% {
    transform: translateX(-50%) translateY(100%) translateY(-95px);
  }
  100% {
    transform: translateX(-50%) translateY(100%) translateY(-80px);
  }
}
/******************************/
/*           VIDEO            */
/******************************/
.vid {
    padding: 0;
    height: 100%;
    width: 100%;
    background: #000
}
.news .vid,
.policy.vid {
    height: 300px;
}
.news .vid + div.row-fluid,
.policy.vid + div.row-fluid {
    overflow: hidden;
    background-color: #fff;
    /*padding-bottom: 125px;*/
}
.video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /*z-index: 0;*/
    overflow: hidden;
    padding: 0;
    background: #000;
    z-index: 23;
}

@supports (-webkit-marquee-repetition:infinite) and (object-fit:fill) {
    .video-container {
        z-index: auto;
    }
}

.video-container .video-box {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 1;
    top: 0;
    left: 0;
    right: 0;
    overflow: hidden;
    background: #000
}
.news .video-container .video-box,
.policy .video-container .video-box {
    /*background: url("/images/headernews.jpg");*/
    background-image: url("/news/media/CommunityMedia/img/public/weact-header-news.jpg");
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    background-size: cover;
    visibility: visible;
    /*box-shadow: inset 0 0 700px rgba(0,0,0,.55), inset 0 0 700px rgba(0,0,0,.25);*/
    box-shadow: inset 0px 950px 100px rgba(0,0,0,.5);
}

body#progetto .video-container .video-box {
    background-image: url("/news/images/headers/Civita_header_galleria.jpg");
}

body#gallerie .video-container .video-box {
    background-image: url("/news/images/headers/weact3-civita-la-galleria.jpg");
}

.video-container .overlay {
    display: block;
    visibility: hidden;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.3);
    position: absolute;
    z-index: 2;
    top: 0;
    overflow: hidden;
    position: fixed;
    -webkit-transition: all 500ms cubic-bezier(0.420, 0.000, 0.580, 1.000);
    -moz-transition: all 500ms cubic-bezier(0.420, 0.000, 0.580, 1.000);
    -o-transition: all 500ms cubic-bezier(0.420, 0.000, 0.580, 1.000);
    transition: all 500ms cubic-bezier(0.420, 0.000, 0.580, 1.000);
    -webkit-transition-timing-function: cubic-bezier(0.420, 0.000, 0.580, 1.000);
    -moz-transition-timing-function: cubic-bezier(0.420, 0.000, 0.580, 1.000);
    -o-transition-timing-function: cubic-bezier(0.420, 0.000, 0.580, 1.000);
    transition-timing-function: cubic-bezier(0.420, 0.000, 0.580, 1.000);
}

body.home .video-container .overlay {
    visibility: visible;
}

.video-container .overlay.open {
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 3;
    visibility: visible;
}
/*.news .video-container .overlay.open {
    position: fixed;
}*/
.video-container .text {
    position: absolute;
    top: 50%;
    left: 50%;
    color: #fff;
    transform: translate(-50%, -50%);
    width: 90%;
    max-width: 800px;
    z-index: 2;
    text-align: center;
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    line-height: 1.25em;
    transition: all 0.3s cubic-bezier(0.420, 0.000, 0.580, 1.000) 0.0s;
    -moz-transition: all 0.3s cubic-bezier(0.420, 0.000, 0.580, 1.000) 0.0s;
    -o-transition: all 0.3s cubic-bezier(0.420, 0.000, 0.580, 1.000) 0.0s;
    -webkit-transition: all 0.3s cubic-bezier(0.420, 0.000, 0.580, 1.000) 0.0s;    
}

body.open .text, body.open .cta--gallerie {
    opacity: 0;
    visibility: hidden;
}
.video-container .text a {
    font-size: 24px;
    color: #fff;
}
.video-container .text h1, .video-container .text p {
    -webkit-animation: fadein 3s; /* Safari, Chrome and Opera > 12.1 */
   -moz-animation: fadein 3s; /* Firefox < 16 */
    -ms-animation: fadein 3s; /* Internet Explorer */
     -o-animation: fadein 3s; /* Opera < 12.1 */
        animation: fadein 3s;
    transform: scale(1);
    width: 80%;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}
.video-container .text h1 {
    margin-bottom: 15px
}
.video-container .text p {
    width: 50%
}
@media screen and (max-width: 767px) {
    .video-container .text p {
        width: 80%
    }
}
@keyframes fadein {
    from { opacity: 0.5; transform: scale(1.5); }
    to   { opacity: 1; transform: scale(1); }
}
@-moz-keyframes fadein {
    from { opacity: 0.5; transform: scale(1.5); }
    to   { opacity: 1; transform: scale(1); }
}
@-webkit-keyframes fadein {
    from { opacity: 0.5; transform: scale(1.5); }
    to   { opacity: 1; transform: scale(1); }
}
@-ms-keyframes fadein {
    from { opacity: 0.5; transform: scale(1.5); }
    to   { opacity: 1; transform: scale(1); }
}
@-o-keyframes fadein {
    from { opacity: 0.5; transform: scale(1.5); }
    to   { opacity: 1; transform: scale(1); }
}
.video-container video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    object-fit: cover;
    overflow: hidden;
    z-index: -100;
    transform: translateX(-50%) translateY(-50%);
    background-size: cover;
    transition: 1s opacity;
    background: #000
}
body.ie .video-container video {
    min-width: 100% !important;
    min-height: 100% !important;
    width: auto !important;
    height: auto !important;
}
/******************************/
/*            NEWS            */
/******************************/

body #partner { display: none; }
body#progetto #partner { display: block; }

#partner, #partner > *, #partner > * > * {
    padding-top: 0;
    margin-top: 0;
}
body#progetto .vid ~ .item-pagenews--singola { padding-left: 0; padding-right: 0; }

main {
    background: #fff;
}
main .blognews--singola {
    width: 100%;
    max-width: 1140px;
    overflow: auto;
    margin: 50px auto 80px;
    text-align: center;
}
main .blognews--singola:before {
    content: 'news';
    font-size: 20px;
    line-height: 1.3em;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    margin-bottom: 40px;
    display: inline-block;
}

/*html.news .vid:before {
    content: " ";
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 250px;
    box-shadow: inset 0px 200px 210px -150px rgba(55,55,55,.8);
    z-index: 5;
}*/
html.news.open .vid:before {
    content: normal;
}
.items-leading [class^='leading-'] {
    width: calc(50% - 30px);
    float: left;
    box-sizing: border-box;
    margin: 0 15px 30px;
    padding: 35px;
    background: #f0f0f0;
    min-height: 710px;
    text-align: left;
}
.items-leading [class^='leading-']:nth-child(2n+1) {
    clear: left;
}

.items-leading [class*='leading-'] .icons {
}
.items-leading [class*='leading-'] img {
    max-width: calc(100% + 70px);
    height: auto;
    display: block;
    margin: -35px -35px 25px -35px;
}
.items-leading [class*='leading-'] .page-header h2 a {
    margin-bottom: 20px;
    font-size: 20px;
    color: #333;
    display: block;
    line-height: 1.2em;
    font-weight: 600;
}
div.items-leading > div h2 a:before,
div.items-leading > div h2 a:hover:before {
    color: #222;
    font-weight: 400;
    font-size: 16px;
    display: block;
    margin-bottom: 15px;
    letter-spacing: 1px;
    line-height: 1.25;
}
div.items-leading > div h2 a[href^='/news/1-risparmio']:before {
    content: 'ENERGY MANAGEMENT';
}
div.items-leading > div h2 a[href^='/news/2-presto']:before {
    content: 'GUIDA DIGITALE GALLERIA CORSINI';
}
div.items-leading > div h2 a[href^='/news/3-ericsson']:before {
    content: 'COMUNICAZIONE E PROMOZIONE - MARATONA DIGITALE';
}
div.items-leading > div h2 a[href^='/news/8-tutto-mozart']:before {
    content: 'EVENTI PROMOZIONALI';
}
div.items-leading > div h2 a[href^='/news/9-il-tocco-di-bernini']:before {
    content: '2D & 3D';
}
div.items-leading > div h2 a[href^='/news/10-galassia']:before {
    content: 'SECURITY & SAFETY';
}
div.items-leading > div h2 a[href^='/news/11-il-digital-marketing-per-le-gallerie-barberini-corsini']:before {
    content: 'DIGITAL MARKETING';
}
div.items-leading > div h2 a[href^='/news/12-una-guida-digitale-per-la-galleria-corsini']:before {
    content: 'GUIDA DIGITALE GALLERIA CORSINI';
}

.pull-none.item-image:hover + div a,
.items-leading [class*='leading-'] .page-header a:hover {
    color: #F8AD3B;
}

.items-leading [class*='leading-'] .page-header + p ~ * {
    display: none
}
.item-pagenews--singola {
    width: 100%;
    /*max-width: 960px;*/
    max-width: 1040px;
    margin: 0 auto;
    box-sizing: border-box;
    padding: 35px;
    box-shadow: 400px 0px 0px 400px #fff, -400px 0px 0px 400px #fff;
    background: #fff;    
}
/*body.news .item-pagenews--singola h2 {
    margin-bottom: 20px;
    font-size: 26px;
    color: #F8AD3B;
    display: block;
    line-height: 1.2em;
    font-weight: 600;
    text-align: center;
}*/
html.news .item-pagenews--singola h2,
section.policy ~ .row-fluid .item-pagenews--singola h2 {
    margin-bottom: 0;
    font-size: 20px;
    line-height: 1.3em;
    font-weight: 600;
    text-align: left;
    text-transform: uppercase;
    letter-spacing: 0.2em;
}
html.news #partner.item-pagenews--singola h2 {
    text-align: center;
}

.item-pagenews--singola div > *,
.items-leading [class*='leading-'] p,
.meta .meta--more {
    margin-bottom: 1em;
    font-size: 15px;
    line-height: 1.667em;
}
.item-pagenews--singola div > p a,
.item-pagenews--singola td a {
    font-weight: bold;
    color: #f5b021;
    border-bottom: 2px solid;
}
.item-pagenews--singola div > img {
    width: 100%;
    margin: 0;
}
.item-pagenews--singola div > h3 {
    margin-bottom: 1em;
    font-size: 18px;
    display: block;
    line-height: 1.2em;
    font-weight: 600;
}
.item-pagenews--singola div > ul {
    list-style: inside square;
}
.item-pagenews--singola div > ul li {
    margin-left: 25px
    margin-bottom: 10px;
}

.item-pagenews--singola .info-pos--center  {
    clear: both;
    text-align: center;
    width: 100%;
    padding-top: 40px;
}   
.item-pagenews--singola .info-pos--center img {
    max-width: 120px;
    max-height: 90px;
    width: auto;
    height: auto;
    margin: 0 20px 40px 20px;
}

.item-pagenews--singola .info-pos--center a.civita ~ a img {
    max-height: 56px;
}
.item-pagenews--singola .info-pos--center a.civita ~ a[href*='logotel.it'] img {
    max-height: 44px;
}

div.corpo[itemprop="articleBody"] {
    padding: 24px 0;
}

div.page-header {

} 

footer {
    background: #222;
    text-align: center;
    color: #fff;
    padding: 30px 0;
    font-size: 14px;
    letter-spacing: 0.5px;    
}
footer > div {
    padding: 15px 0;
    color: #fff;
}
footer > div span {
    margin:0 15px;
    display: inline-block;
}
footer > div span a {
    color: #fff;
    text-decoration: underline;
}
footer > div a img {
    width: auto;
    height: 20px;
}

@media screen and (max-width: 480px) {
    footer > div em {
        display: none;
    }
    footer > div span.copyright {
        display: inline-block;
        margin: 24px 0;
    }
}


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

    body.home .cta--gallerie {
    position: absolute;
    bottom: auto;
    left: auto;    
    right: 0;
    top: 50%;
    -moz-transform: translateY(-50%)  scale(1);
    -webkit-transform: translateY(-50%)  scale(1);
    -o-transform: translateY(-50%)  scale(1);
    transform: translateY(-50%)  scale(1);
    display: block;
    }

    .items-leading [class^='leading-'] {
        width: calc(33.33333% - 30px);
    }
    .items-leading [class^='leading-']:nth-child(2n+1) {
        clear: none;
    }
    .items-leading [class^='leading-']:nth-child(3n+1) {
        clear: left;
    }        

    .item-pagenews--singola [class^='info-pos'] {
        position: relative;
        display: table;
    }

    /*.item-pagenews--singola .info-pos--right*/
    div.corpo[itemprop="articleBody"] {
        padding: 20px 56px 40px 56px;
        background: #fff;
        position: relative;
        z-index: 1;
        width: 90%;
        margin: 0 auto;
    }

    .item-pagenews--singola div.page-header {
        padding: 16px 56px;
        width: 90%;
        margin: 0 auto;
    }    

    #partner div.corpo[itemprop="articleBody"] {
        padding: 40px 0px;
        width: 100%;
    }

    .item-pagenews--singola [class*='info-pos'] .info--image {
        width: 80%;
    }

    .item-pagenews--singola .pull-none.item-image {
        position: relative;
        width: 130%;
        left: -15%;
        top: -170px;
    }

    body#progetto #partner {
        margin-top: -100px;
    }    


} /* fine MIN 960px*/




@media screen and (max-width: 600px) {
    .news .vid {
    height: 240px;
    }
    .items-leading [class*='leading-'] {
        width: 90%;
        margin: 0 auto 35px auto;
        float: none;
    }
    main .blognews--singola {
    margin-top: 5%;
    }
    .item-pagenews--singola {
        width: 90%;
        margin: 5% auto 0 auto;
    }
    .menu a .link--content img {
        margin: 0 auto 5px auto;
    }    
}

.informativa table {
    border-collapse: collapse;
    overflow-x: auto;
    display: block;
    width: fit-content;
    max-width: 100%;
}

.informativa td, .informativa th {
    border: 1px solid #eee;
    text-align: left;
    vertical-align: top;
    padding: 4px;
    font-size: 13px;
}

.informativa a {
    white-space: pre-wrap;
    word-break: break-word;
}
