html {
    overflow-x: hidden;
}
body {
    color: #292b2c;
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
}
.container-fluid{
    min-width: 1px;
}
section{
    width: 100%;
    min-height: 100vh;
}
body.home section{
    background:#ffffff;
}
.imgParallasse{
    position:fixed;
    width:100%;
    height:100vh;
    top:0;
    left:0;
}
body.home .sticky-top{
    top: 100vh;
    position: absolute;
    width: 100%;
}
body.home .sticky-top.top{
    top: 0;
    position: fixed;
}

#vertical,
#horizontal {
    scroll-behavior: smooth;
}
iframe{
	width:100%;
	height:100%;
    min-height:480px;
}
::-moz-selection {
    color: #fff;
    background: #020E1C;
}

::selection {
    color: #fff;
    background: #020E1C;
}

a:focus,
a:active,
textarea:focus,
textarea:active,
button:focus,
button:active, button {
    outline: none!important;
}

a {
    text-decoration: none;
    color: inherit;
}

a:hover {
    color: inherit;
    text-decoration: none;
    cursor: pointer;
}

a:active {
    color: inherit;
    text-decoration: none;
    cursor: pointer;
}

a:focus {
    color: inherit;
    text-decoration: none;
    cursor: pointer;
}

button:hover {
    cursor: pointer;
}

/* SCROLLBAR */
::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}
/* Track */
::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 0 0 rgba(0, 0, 0, 0.3);
    -webkit-border-radius: 0px;
    border-radius: 0px;
    background: rgba(255,255,255,.3);
}
/* Handle */
::-webkit-scrollbar-thumb {
    -webkit-border-radius: 0px;
    border-radius: 0px;
    background: black;
    border-bottom: 0;
}
::-webkit-scrollbar-thumb:window-inactive {
    background: white;
}

/*FINE SCROLLBAR*/

.btn.sharp {
    border-radius: 0!important;
}

.btn.left {
    text-align: left;
}


.videoBg{
    overflow: hidden!important;
    padding: 0!important;
    width: 100%;
    height:100vh;
    
}
.videoBg video{
    -webkit-filter: invert(100%);
    filter: invert(100%);
    min-width: 100%;
    min-height: 100vh;
    width: auto;
    height: auto;
    object-fit: cover;
    object-position: center;
}
#splash{
    position: absolute;
    width: 100%;
    top: 0;
    bottom: 0;
}
.name{
    width: 350px;
    height: 150px;
    max-width: 100%;
    background: url(../img/logo_fondoNero.png) no-repeat center;
    background-size: contain;
}
.name a{
    width: 350px;
    height: 150px;
    max-width: 100%;
    display: block;
}
.scrollDown{
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    margin-bottom: 50px;
    width: 15px;
    height: 15px;
    z-index: 3;
}
.scrollDown::before{
    content:"\e252";
    font-size: 1em;
    font-family: "Glyphicons Halflings";
    display: inline-block;
    color: black;
    vertical-align: middle;
    margin-top: -10px
}
header{
    opacity: 1;
    height: 80px;
    background: -moz-linear-gradient(top, rgba(0,0,0,.6) 0%, rgba(0,0,0,.15) 60%, rgba(0,0,0,0) 100%);
    background: -webkit-linear-gradient(top, rgba(0,0,0,.6) 0%,rgba(0,0,0,.15) 60%, rgba(0,0,0,0) 100%);
    background: linear-gradient(to bottom, rgba(0,0,0,.6) 0%,rgba(0,0,0,.15) 60%, rgba(0,0,0,0) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#000000', endColorstr='#00000000',GradientType=0 );
}
header img{
    padding-top: 15px;
    max-width: 90%;
    height: 80px;
    vertical-align: top;
}
.navbar{
    display: block;
}
.eventoInCorso{
    width: 100%;
    position: absolute;
}
.mainMenu, .mainMenu.collapse{
    position: fixed;
    width: 100%;
    height: 100vh;
    margin: auto;
    background: white;
    z-index: 1050;
    top: 0;
    bottom: 0;
    opacity: 0;
}
.mainMenu.collapse.show{
    animation: openMenu .5s;
    animation-fill-mode: forwards;
}
@keyframes openMenu{
    to{
        opacity: 1;
    }
}
.navbarContainer{
    position: fixed;
    right: 0;
    margin-right: 15px;
    padding: 0;
    margin-top: 20px;
    z-index: 1049;
}
.navbarContainer a{
    width: 100%;
    height: 100%;
    display: inline-block;
    background: rgba(255,255,255,.5);
    border: 5px solid rgba(255,255,255,0);
}
.navbar-toggler{
    width: 30px;
    max-height: 5px;
    display: block;
    background-color: #292b2c;
    border-radius: 0;
    border: 0;
    padding: 0;
    padding-top: 4px;
    transition: background .3s;
    margin-bottom: 7px;
    margin-top:7px;
}
.navbar-toggler::before {
    content: '';
    width: 30px;
    height: 5px;
    display: block;
    background-color: #292b2c;
    margin-top: -10px;
    margin-bottom:7px;
    transition:transform .3s ease-out;
}
.navbar-toggler::after {
    content: '';
    width: 30px;
    height: 5px;
    display: block;
    background-color: #292b2c;
    transition:transform .3s ease-out;
}
.navbarContainer:hover{
    cursor: pointer;
}
@keyframes menuToggler{
    from{
        transform: translateX(10px);
    }
    to{
        transform: translateX(0);
    }
}
@keyframes menuToggler2{
    from{
        transform: translateX(-10px);
    }
    to{
        transform: translateX(0);
    }
}
@keyframes menuToggler3{
    to{
        transform: rotate(-45deg) translateY(9px);
    }
    
}
@keyframes menuToggler4{
    to{
        transform: rotate(45deg) translateY(-9px);
    }
}

.navbarContainer:hover .navbar-toggler::before{
    animation:menuToggler .3s;
    animation-timing-function: ease-in-out;
}
.navbarContainer:hover .navbar-toggler::after{
    animation:menuToggler2 .3s;
    animation-timing-function: ease-in-out;
    animation-delay: .2s;
}
.navbar-toggler::hover, .navbar-toggler::active{
    color: #292b2c;
    outline: none;
}
#mainMenu .navbarContainer:hover .navbar-toggler{
    background: transparent;
    animation-fill-mode: forwards;
}
#mainMenu .navbarContainer:hover .navbar-toggler::before{
    animation:menuToggler3 .3s;
    animation-timing-function: ease-in-out;
    animation-fill-mode: forwards;
}
#mainMenu .navbarContainer:hover .navbar-toggler::after{
    animation:menuToggler4 .3s;
    animation-timing-function: ease-in-out;
    animation-fill-mode: forwards;
}
.mainMenu ul{
    position: absolute;
    margin: auto;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    display: block;
    padding-top: 10%;
    padding-left: 0;
    max-width: 100%;
    height: 100vh;
    text-align: center;
    z-index: 0;
    list-style: none;
}
.mainMenu ul li{
    padding: .5%;
}
.mainMenu ul li a{
    font-size: 1.5em;
    text-transform: uppercase;
}
.mainMenu ul li.current-menu-item a {
    font-weight: 700;
}


.menu-desktop .menu{
    list-style:none;
    padding-left:0;
}
.menu-desktop .menu li {
    display:inline;
    color:#fff;
}
.menu-desktop .menu li a{
    background:transparent;
    color:#fff;
    margin: 0 10px;
    padding: 0;
    line-height: .8em;
    width: auto;
    text-transform: uppercase;
    font-size: 1em;
    text-shadow: 1px 1px 10px #292b2c;
    display:inline-block;
    border:0;
    transition: background .3s;
}
.menu-desktop .menu li a:hover{
    background: #eaeaea;
}

/*START EXHIBITION ART FAIR HOME*/
.menuSezioni{
    display: none;
}
body.home .menuSezioni{
    display: inline-block;
}
body.home .menuSezioni ul li{
    display: none;
}
body.home .menuSezioni ul li.active{
    display: block;
}
.menuSezioniSingle{
    display: inline-block;
}
.menuSezioniSingle ul{
    border-left:1px solid white; 
    margin-bottom: 0;
    color: white;
    padding-left: 15px;
    display: inline-block;
    margin-left: 15px;
    text-transform: capitalize;
}
body.home .menuSezioniSingle{
    display: none;
}
#exhibition .eventoInCorso, #prjRoom .eventoInCorso{
    background-size: cover;
    background-position: center;
}

.artFairsHome{
    padding-bottom:160px;
}
#artFair{
    /*box-shadow: 0 0 30px 15px rgba(0,0,0,.3);*/
    z-index: 1;
}
.artistsHome{
    margin-bottom: 30px;
}
#artist{
    background: #ffffff;
    z-index: 0;
    min-height: auto;
    padding-bottom: 30px;
}
.artists img{
    transition: 1s filter linear, 1s -webkit-filter linear;
}
.artists img.animazione1.animation{
    animation-delay: 0;
}
.artists img.animazione2.animation{
    animation-delay: .2s;
}
.artists img.animazione3.animation{
    animation-delay: .4s;
}
.artists img.animazione4.animation{
    animation-delay: .6s;
}
.artists img:hover{
    -webkit-filter: grayscale(100%);
    filter: grayscale(100%);
}
.eventoHome{
    min-height: 100vh;
}
#newsHome .titoloEventoHome{
    overflow-x: visible;
}
.titoloEventoHome{
    position: absolute;
    right: 15px;
    top: 0;
    bottom: 0;
    margin-top: auto;
    margin-bottom: auto;

}
#newsHome .titoloEventoHome{
    position: relative;
}
.contenitoreTitoloHome{
    display: inline-block;
    margin-top:-100px;
    opacity: 0;
}
.contenitoreTitoloHome.animation{
    animation: titoloHome .5s;
    animation-fill-mode: forwards; 
}
@keyframes titoloHome{

    to{
        margin-top: 0;
        opacity: 1;
    }
}
.tuttiNews{
    width: 100%;
    text-align: center;
    left: 0;
    opacity: 1;
    margin-top: 2em;
}
.tuttiNews a{
    display: inline-block;
    background: #eaeaea;
    font-size: 1.3em;
    color: #292b2c;
    line-height: .9em;
    text-transform: uppercase;
    z-index: 1;
}


.titoloEvento{
    margin-bottom: 0;
    color: #292b2c;
    font-size: 2em;
    line-height: 1em;
    text-transform:capitalize;
    font-weight: 700;
    text-align:right;
    display: block;
}

.titoloEvento a{
    background:#eaeaea;
    line-height: 1.2em;
    color: #292b2c;
}
.titoloEvento.last {
    margin-top: 15px;
}
.dataEvento{
    background: #eaeaea;
    color: #292b2c;
    display: inline-block;
    text-align: right;
    position: absolute;
    line-height: 1em;
    text-transform: lowercase;
    font-size: 1.5em;
    margin-left: 0;
    opacity: 0;
	right:0;
}
.dataEvento.animation{
    animation: dataEventoHome .3s;
    animation-fill-mode: forwards;
}
@keyframes dataEventoHome{
    to{
        opacity: 1;
    }
}
.tuttiEventi{
    position: absolute;
    width: 100%;
    bottom:5%;
    text-align: center;
    margin-bottom: -50px;
    opacity: 0;
    left: 0;
}
.tuttiEventi.animation{
    animation: tuttiHome .3s;
    animation-fill-mode: forwards;
}
@keyframes tuttiHome{
    to{
        opacity: 1;
        margin-bottom: 0;
    }
}
.tuttiEventi a{
    display: inline-block;
    background: #eaeaea;
    font-size: 1.3em;
    color: #292b2c;
    line-height: .9em;
    text-transform: uppercase;
    z-index: 1;
}

#artists{
    background: #ffffff;
    margin-top: -80px;
    padding-top: 150px;
    padding-bottom: 60px;
    margin-bottom:0;
}

.artsyLink a:before{
    width: 30px;
    height: 30px;
    content: url(../img/social/Artland_logo.svg);
    display: inline-block;
    vertical-align: middle;
    margin-right: 5px;
    -webkit-filter: invert(100%);
    filter: invert(100%);
}

.artsyLink.artsy a:before{
    content: url(../img/social/Artsy_logo.svg);
}
.artsyLink.artland a:before{
    content: url(../img/social/Artland_logo.svg);
}
.titleArtistsHome {
    color: #292b2c;
    text-transform: uppercase;
    margin-top: 30px;
    display: inline-block;
    font-size: 2em;
    background: #eaeaea;
    line-height: .8em;
    margin-bottom: 30px;
}
.artists{
    text-align: right;
    margin-bottom: 50px;
}
.artists img{
    width: 100%;
    opacity: 0;
    margin-top: -15px;
}
.artists img.animation{
    animation: imgArtistsHome .5s;
    animation-fill-mode: forwards;
}
@keyframes imgArtistsHome{
    to{
        opacity: 1;
        margin-top: 0;
    }
}

.artists span{
    position: absolute;
    color: #292b2c;
    font-size: 1em;
    line-height: .5em;
    right: 0;
    bottom: 0;
    padding-right: 15px;
    padding-left: 15px;
    margin-bottom: -15px;
    display: inline-block;
    opacity: 0;
}
/*.artists span:first-of-type{
    text-transform: capitalize;
}
body.home .artists span:first-of-type{
    text-transform: uppercase;
}
.artists span:first-of-type::first-line{
    text-transform: uppercase;
}*/
.artists span.animation{
    animation:artistsNameHome .3s;
    animation-fill-mode: forwards;
    animation-delay: .5s;
}
@keyframes artistsNameHome{
    to{
        opacity: 1;
    }
}
.artists span a{
    background: #eaeaea;
    line-height: 1.2em;
}


#artists.exhibitions .artists{
    margin-bottom: 80px;
}
#artists.exhibitions .artists span{
    margin-bottom: -39px;
}

.dataCatExhib{
    font-size: .8em;
    color: #292b2c;
    bottom: -10px;
    position: relative;
    background: transparent!important;
}
.dataCatExhib:hover{
    color: #fff;
}
.tuttiArtisti{
    width: 100%;
    bottom:5%;
    text-align: center;
    opacity: 0;
    margin-bottom: -30px;
}
.tuttiArtisti.animation{
    animation: tuttiArtisti .5s;
    animation-fill-mode: forwards;
}
@keyframes tuttiArtisti {
    to{
        opacity: 1;
        margin-bottom: 0;
    }
}
.tuttiArtisti a{
    display: inline-block;
    background: #eaeaea;
    font-size: 1.3em;
    color: #292b2c;
    line-height: .9em;
    text-transform: uppercase;
    z-index: 1;
    margin-top: 30px;
    margin-bottom: 30px
}
/*FINE ARTISTS HOME*/

/*NEWS HOME*/
#newsHome{
    padding-top: 60px;
    background: #292b2c;
    padding-bottom: 60px;
}
#newsHome p{
    color: white;
    margin-top: 60px;
}
#newsHome .titoloEvento{
    text-align: right;
    font-size: 2em;
}
#newsHome .dataEvento{
    right:0;
    
    font-size: 1.5em;
    margin-bottom: -1em;
    bottom: 0;
}
#newsHome .titoloEventoHome{
    right:0;
    text-align: left;
}
hr{
    border:1px solid white;
    margin: 0;
    position: relative;
    z-index: 100;
}
/*FINE NEWS HOME*/
/*FOOTER*/
footer{
    background: #171717;
    color: white;
    z-index: 99;
    position: relative;
}
.colFooter{
    margin-top: 15px;
    margin-bottom: 15px;
}
.colFooter.info1{
    margin-top: 0;
    border-right: 0;
}
.colFooter.info2, .colFooter.infoMenu{
    border-right: 0;
}
footer img{
    margin: 50px 0;
    width: 100%;
    max-width: 350px;
}
footer .infoGalleria img{
    margin: 50px 0;
    height: 80px;
    width: auto;
}
footer ul li a{
    background: white;
    text-transform: uppercase;
    color: #171717!important;
    transition: all .3s;
}
footer ul li.current-menu-item a, footer ul li a:hover {
    background: #eaeaea;
    text-transform: uppercase;
    color: #292b2c!important;
}

.socialIcons ul li{
    display: inline;
}
.socialIcons ul li a, .socialIcons ul li a:hover{
    display: inline-block;
    width: 30px;
    height: 30px;
    background: transparent;
    text-align: center;
}
.socialIcons img{
    width: 100%;
    margin: 0 5px 0 0;
}
/*.socialIcons img:hover{
    -webkit-filter: invert(100%);
    filter: invert(100%);
}*/
.copyright{
    margin-top: 15px;
}
/*FINE FOOTER*/

/*SINGLE ARTIST*/
#singleArtist{
    background: white;
    margin-top: -115px;
    min-height: auto;
    overflow-y: auto;
}
.sxSingle{
    background: #292b2c;
    position: relative;
    top: 0;
    bottom: 0;
    max-width: none;
    padding-top: 120px;
}
/*.bioInfo{
    overflow-y: hidden;
    max-height: 20em;
}*/
#bioInfoOverlay{
    display: none;
    padding: 10% 30%;
    background: white;
    z-index: 9999;
    position: fixed;
    width: 100%;
    height: 100vh;
    margin: 0;
    top: 0;
    overflow: auto;
    bottom: 0;
    opacity: 0;
    transition: opacity .5s;
}
#bioInfoOverlay a{
    font-size: 2em;
    font-weight: 400;
    font-family: 'Montserrat', sans-serif;
}
#bioInfoOverlay.show{
    opacity: 1;
}
body.modal-open {
    overflow: hidden;
    position:fixed;
    width: 100%;
}
.infoArtist{
    color: white;
    padding: 15px;
    margin-right: 0px;
    padding-right: 65px;
    margin-bottom: 30px;
    text-align: right;
    background-color: #161616;
}
.infoArtist.animation{
    opacity: 0;
}
.infoArtist a{
    font-size: 1em;
    line-height: 1em;
    margin: 5px 0;
}
/*.download{
    display: inline;
}*/
.download a:before{
    width: 30px;
    height: 30px;
    content: url(../img/social/Dossiers.svg);
    display: inline-block;
    vertical-align: middle;
    margin-right: 5px;
   /* -webkit-filter: invert(100%);
    filter: invert(100%);*/
}
/*.download a:after{
    width: 30px;
    height: 30px;
    content: '';
    display: inline-block;
    background: url(../img/social/Dossiers.svg) no-repeat;
    background-size: contain;
    -webkit-filter: invert(100%);
    filter: invert(100%);
    margin-left:5px;
}*/
.socialShare::after{
    content: '';
    width: 25px;
    height: 25px;
    margin-left: 10px;
    margin-top: 10px;
    display: inline-block;
    background: black no-repeat center;
    background-size: contain;
    transition: background .3s;
    padding: 5px;
}
.condivisionePagina{
    color: #292b2c;
    margin-bottom: 15px;
}
.socialShare.twitter::after{
    background-image: url(../img/social/Twitter_logo.svg);
    -webkit-filter: invert(100%); /* Safari 6.0 - 9.0 */
    filter: invert(100%);
}
.socialShare.facebook::after{
    background-image: url(../img/social/Facebook_logo.svg);
    -webkit-filter: invert(100%); /* Safari 6.0 - 9.0 */
    filter: invert(100%);
}
/*.infoArtist p{
    margin-top: 0!important;
    overflow:hidden;
}
.infoArtist.collapse, .infoArtist.collapsing, .infoArtist.collapse.show {
    display: block;
    transition: transform .5s;
}
.infoArtist.collapsing{
    height: auto!important;
}
.infoArtist.collapse.show{
height: none!important;
}
.infoArtist.collapse.show p, .infoArtist.collapsing p{
    max-height: none;
}*/
.contentArtist{
    min-height: 100vh;
    padding-top: 15px;
}
.contentArtist p{
    text-align: justify;
}
.contentArtist img{
    max-width: 100%;
}
.contentArtist p a {
  background: #292b2c;
  color: #fff;
  transition: all .150s ease;
}
.contentArtist p a:hover {
  background: #eaeaea;
  color:#292b2c;
}
.gallery img{
    transition:all 1s;
}
.gallery img:hover{
    -webkit-filter: grayscale(100%);
    filter: grayscale(100%);
}
a.moreInfo{
    color: white;
    z-index: 1000;
    margin-top: 99%;
}
a.moreInfo:after{
    content: "+";
}

.imgArtist img{
    height: auto;
    margin-bottom: 30px;
    padding: 5px;
    border: 0!important;
}
.gallery img{
    width: 100%;
}
#slb_viewer_wrap .slb_theme_slb_default .slb_data_title, #slb_viewer_wrap .slb_theme_slb_default .slb_group_status{
    font-family: 'Montserrat', sans-serif!important;
    font-weight: 400!important;
    font-size: 1.5em!important;
    margin-top: 0!important;
    margin-bottom: 0!important;
}
.slb_nav, .slb_controls{
    display: none;
}
.slb_container:hover .slb_nav,.slb_container:hover .slb_controls{
    display: block;
}
.slb_viewer_overlay{
    opacity: 1!important;
    background: #292b2c!important;
}
#slb_viewer_wrap .slb_theme_slb_black .slb_container, .slb_theme_slb_default{
    padding: 0;
    border-radius: 0!important;
    background: #292b2c!important;
    box-shadow: 0 0 0 rgba(0,0,0,0)!important;
}
.modal{
    z-index: 1600;
}
.imgArtist .modal-dialog{
    max-width: 100%;
    max-height: 100vh;
    margin:0;
    text-align: center; 
}
.imgArtist .modal-dialog img{
    width: auto;
    max-width: 100%;
    max-height: 100vh;
    position: absolute;
    right: 0;
    left: 0;
    margin:auto;
    margin-bottom: 0;
    padding: 30px;
}
.modal a{
    position: absolute;
    z-index: 1;
    color: white!important;
}
/*FINE SINGLE ARTIST*/
/*SINGLE EXHIBITION*/

#singleExhibition{
    min-height: auto;
    margin-top: -115px;
}
.infoExhibition .nomeExhibition{
    text-transform: uppercase;
}
.infoExhibition span{
    margin-bottom: 15px;
    display: block;
}
/*FINE SINGLE EXHIBITION*/
/*NEWS PRESS*/


#newsCategory{
    min-height: 100vh;
    background-size: white;
    margin-top: -80px;
}
#newsCategory .titoloEventoHome{
    margin-right: 15px;
}
#newsCategory .contenitoreTitoloHome{
    animation: titoloCatNews .5s;
    animation-fill-mode: forwards;
    margin-top: -30px;
    margin-right: 0;
}
@keyframes titoloCatNews{
    to{
        margin-top: 0;
        opacity: 1;
    }
}
.mainNews{
    height: 50vh;
    font-size: .95em;
    margin-bottom: 15px;
}

.mainNews .titoloEvento{
    text-align: right;
}
.mainNews .dataEvento{
    right: 0;
}
.listNews{
    min-height: 15em;
}
.listNews a{
    width: 100%;
    height: 100%;
    display: block;
}
.artists span.titoloNews{
    bottom: 0;
    margin-bottom: 0;
    color: #292b2c;
    font-size: 1.5em;
    font-weight: 700;
    text-transform: none;
    right: 0;
}
.artists span.titoloNews a{
    background:#eaeaea;
    display: inline;
}
.artists span.dataNews{
    position: relative;
    margin-right: 0;
}
.dataNews a{
    background: white;
    font-size: .9em;
    text-transform: none;
}
#singleNews{
    margin-top: -80px;
}
.newsOpen .infoArtist{
    margin-top: 110px;
    max-height: none;
}
#singleNews .infosocial ul li{
    background: #eaeaea;
}
#singleNews .infosocial img::before{
    content: '';
}
/*FINE NEWS PRESS*/

/*NUOVO BLOCCO TESTO INFO*/
/*FINE NUOVO BLOCCO TESTO INFO*/


/*NUOVI LAST ART FAIRS*/

.artFairsHome{
    min-height: 100vh;
    padding-top: 30px;

    -webkit-clip-path: inset(0 100% 0 0);
    clip-path: inset(0 100% 0 0);
}
.artFairsHome.animation{
    animation: showAF 1s;
    animation-fill-mode: forwards;
}
@keyframes showAF{
    to{
        -webkit-clip-path: inset(0 0 0 0);
        clip-path: inset(0 0 0 0);
    }
}
.artFairsHome .tuttiEventi{
    opacity: 0;
    bottom: 15px;
    margin-bottom: 0;
}
.artFairsHome.animation .tuttiEventi{
    animation: afHomeAnimation .7s;
    animation-fill-mode: forwards;
    animation-delay: .7s
}
@keyframes afHomeAnimation{
    to{
        opacity: 1;
    }
}
.lastArtFairs{
    text-align: right;
    margin-bottom: 30px;
}
.contLastAF{
    min-height: 25em;
    margin-bottom: 30px;
	height:90%;
}
.lastArtFairs img{
    width: 100%;
    /*opacity: 0;*/
    display: none;
}
.lastArtFairs a{
    width: 100%;
    height: 100%;
    display: block;
}
.lastArtFairs span{
    position: relative;
    color: #292b2c;
    font-size: 1.5em;
    line-height: .7em;
    font-weight: 400;
    right: 0;
    bottom: 0;
    margin-bottom: -12px;
    text-align: right;
}
.lastArtFairs span a{
    background: #eaeaea;
    display: inline;
    line-height: 1.2em;
}
.lastArtFairs .first{
    margin-top: -.9em;
}
.dataEvento.pRoom{

}
/*FINE LAST ART FAIRS*/

/*FORM*/
.wpcf7-form input:focus,
.wpcf7-form select:focus,
.wpcf7-form textarea:focus,
.wpcf7-form button:focus {
    outline: none;
}
.wpcf7-form label {
  width: 100%;
}
.wpcf7-form input[type="text"],
.wpcf7-form input[type="email"],
.wpcf7-form textarea{
  padding: .5rem;
  width:100%;
  color: #15141A;
  font-family: inherit;
}
.wpcf7-form textarea {
  resize: none;
}
.wpcf7-form textarea.smaller{
    font-size:.8rem;
    height:6rem;
}
.wpcf7-form input[type="checkbox"] {
  width: 1.5rem;
  height: 1.5rem;
  margin-right:.5rem;
}
.wpcf7-form .wpcf7-list-item {
  margin: 0;
}
.wpcf7-form input[type="file"] {
  margin: .5rem 0;
}
.wpcf7-form .wpcf7-submit {
  cursor: pointer;
  background: #15141A;
  border: 0;
  color: #fff;
  text-transform: capitalize;
  padding: 0 .5rem 0 3rem;
  font-size: 1.5rem;
}
.wpcf7-form .wpcf7-not-valid-tip {
  font-size: .8em;
}
.wpcf7 form.sent .wpcf7-response-output {
  border: 0;
  background: #46b450;
  color: #fff;
  margin: 1rem 0;
  padding: 1rem;
  font-size: 1.4rem;
}

.grecaptcha-badge{
    display:none;
}
.grecaptcha-badge { visibility: hidden; }
/*FINE FORM*/

/*MEDIA*/

/*iOS workarounds*/
@supports (-webkit-touch-callout: none) {
    .fixedBG {
        background-attachment: scroll !important;
        /*background-size: auto 100vh !important;*/
    }    
}

/*// Small devices (landscape phones, 576px and up)*/
@media (min-width: 576px) {
    .colFooter{
        margin-top: 0;
    }
    .mainMenu ul li{
        padding: 1%;
    }
}

/*// Medium devices (tablets, 768px and up)*/
@media (min-width: 768px) {
    
    #newsHome p{
        margin-top: 0;
    }
    #newsHome .dataEvento{
        right:0;
        left: auto;
    }
    .name{
        max-width: 100%;
    }
    .titoloEvento{
        font-size: 3em;
    }
    .titoloEvento.last{
        margin-bottom: 5px;
        /*margin-top: -11px;*/
    }
    .dataEvento{
        /*margin-left: -25px;*/
    }
    .dataEvento.pRoom{
        font-size: 1em;
        display: inline-block;
        margin-left: 0;
    }
    .titoloEventoHome{
        right:15px;
    }
    .colFooter{
        margin-bottom: 0;
    }
    .colFooter.info1, .colFooter.info2, .colFooter.infoMenu{
        border-right: 1px solid white;
    }
    .mainNews .titoloEventoHome{
        max-width: 85%;
    }
	iframe{
		min-width:640px;
		min-height:480px;
	}

}
/*// Large devices (desktops, 992px and up)*/
@media (min-width: 992px) {
    .sxSingle{
        position: fixed;
        background-size: 55px;
        max-width: 25%;
        padding-top: 0;
    }
    .infoArtist{
        margin-right: -55px;
        margin-bottom: 0; 
        overflow-y: hidden;
        margin-top:25vh;

    }
    .bioInfo{
        max-height: 30vh;
        overflow-y: hidden;
    }
    .newsOpen .infoArtist{
        margin-top: 0;
        right: 0;
        width: 100%;
        position: absolute;
    }
    .ellipsis{
        width: auto;
    }
    /*.infoArtist p{
        margin-top: 150px;
        max-height: 20em;
    }*/
    .contentArtist{
        padding-top: 150px;
    }
    #newsHome .titoloEventoHome{
        text-align: right;
    }
    .mainNews .titoloEventoHome{
        max-width: 70%;
    }
    .lastArtFairs{
        margin-bottom: 0;
    }
    .contLastAF{
        min-height: 0;
    }
}

/*// Extra large devices (large desktops, 1200px and up)*/
@media (min-width: 1200px) {
    .mainNews .titoloEventoHome{
        max-width: 50%;
    }
}
/*Altezza limitata menu*/
@media(max-height: 720px){
    .mainMenu ul li{
        padding: 0;
    }
    .mainMenu ul{
        padding-top: 5%;
    }
}
/*FINE MEDIA*/
@media(max-width: 720px){
    dl.gallery-item{
        width: 100% !important;
    }
}
