@import url('https://fonts.googleapis.com/css2?family=Raleway:ital,wght@0,300;0,400;0,700;1,400&display=swap');


* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

html{
    scroll-behavior: smooth;
}
body {
    font-family: 'Raleway', sans-serif;
    scroll-behavior: smooth;
    background-color: #222;
    color: #fff;
}
.pure-g [class*="pure-u"] {
    font-family: 'Raleway', sans-serif;
}

::-moz-selection {
  background: #000;
  color: #d7e700;
}

::selection {
  background: #000;
  color: #d7e700;
}

h1,
h2,
h3,
h4,
h5,
h6,
label {
    
}
hr{
    margin: 3em 0;
}
h1{
    font-size: 2.5em;
    font-weight: 300;
}
h1 span{
    background-color: #d7e700;
    color: #222;
    padding-bottom: 4px;
    padding-right: 4px;
}
h2{
    font-size: 1.6em;
    font-weight: 300;
}
h2 span{
    background-color: #d7e700;
    color: #222;
    padding-bottom: 4px;
    padding-right: 4px;

}

h3{
    font-size: 1em;
    font-weight: 400;
    line-height: 1.5;
    font-weight: 400;
}
.blog h3{
    font-weight: 700;
}

h4{
    font-size: 1em;
    font-weight: 400;
    line-height: 1.5;
}
h5{
    font-size: 0.9em;
    font-weight: 400;
    line-height: 1.5;
    font-weight: 700;
}
h6{
    font-size: 0.8em;
    font-weight: 400;
    line-height: 1.5;
    font-weight: 400;
}

.homepage h1{
    font-size: 1.6em;
    font-weight: 300;
}
.homepage h2{
    font-size: 1em;
    font-weight: 400;
    line-height: 1.5;
    font-weight: 400;
}
.pure-g ul{
    padding-left: 1.2rem;
}
.pure-g figcaption{
    font-size: 0.85em;
    font-weight: 700;
    margin-top: 0.2em;
    margin-bottom: 0.4em;
}
.pure-g blockquote{
    margin-left: 0;
    margin-right:   0;
}

.pure-g blockquote p{
    color: #d7e700;
    display: inline;
    background-color: #000;
    box-shadow: 0.10em 0 0 #000,-0.10em 0 0 #000;
    box-decoration-break: clone;
}


p{
  font-size: 1em;
  font-weight: 400;
  line-height: 1.5;
}

a{
    color: rgba(255,255,255,1);
    text-decoration: underline;
    transition: all .2s ease-in-out;
    cursor: pointer;
}
a:hover{
    color: rgba(255,255,255,0.75);
}
a img{
    transition: all .2s ease-in-out;
}
a:hover img{
    opacity: 0.75;
}

.pure-button-hover, .pure-button:focus, .pure-button:hover {
    background-image: -webkit-gradient(linear,left top,left bottom,from(transparent),color-stop(40%,rgba(0,0,0,0)),to(rgba(0,0,0,0)));
    background-image: -webkit-linear-gradient(transparent,rgba(0,0,0,0) 40%,rgba(0,0,0,0));
    background-image: linear-gradient(transparent,rgba(0,0,0,0) 40%,rgba(0,0,0,0));
}

header{
    position: fixed;
    width: 100%;
    height: 60px;
    z-index: 3;
    
}

header .logo-ctrl{
    height: 60px;
    float: right;
}
header .logo-ctrl a img{
    height: 42px;
    margin: 15px 20px 0 85px;
}
header .menu-desktop{
    display: none;
    float: right;
}
header nav{
    float: left;
}

header nav ul{
    list-style: none; 
    float: left;  
    height: 20px;
    margin: 34px 80px 6px 0; 
}
header nav ul li{
    float: left;
    height: 20px;
}

header nav ul li a{
    font-size: 1.2em;
    height: 20px;
    text-decoration: none;
    margin: 0 16px;
}
header .social-links-h{
    float: left;
}

header .social-links-h ul{ 
    float: left;  
    height: 20px;
    margin: 34px 40px 6px 0;
}
header .social-links-h ul li{ 
    float: left; 
    list-style: none; 
    margin-left: 0.25em;
    
}
header .social-links-h ul a{
    font-size: 1.2em;
    height: 20px;
    text-decoration: none;
}
header .social-links-h li:after{
    content: " /";
}
header .social-links-h li:last-child:after{
    content: "";
}




.pure-g figure{
    margin: 2em 0;
    display: block;
}
.pure-g figure img{
    width: 100%;
}








.menu-wrap{
    position: fixed;
    top: 0;
    left: 0;
    z-index: 2;
}

.toggler{
    position: absolute;
    top: 0.5rem;
    left: 0.5rem;
    width: 60px;
    height: 60px;
    z-index: 3;
    opacity: 0;
    cursor: pointer;
}

.hamburger{
    position: absolute;
    top: 0.5rem;
    left: 0.5rem;
    width: 60px;
    height: 60px;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    
}

.hamburger>div{
    position: absolute;
    width: 60%;
    height: 2px;
    background-color: #fff;
    transition: .4s;
}

.hamburger>div:before{
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    background-color: #fff;
    top: -12px;
    left: 0;
    transition: .4s;
}

.hamburger>div:after{
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    background-color: #fff;
    top: 12px;
    left: 0;
    transition: .4s;
}

.toggler:checked + .hamburger>div{
    transform: rotate(135deg);
}

.toggler:checked:hover + .hamburger>div{
    transform: rotate(225deg);
}

.toggler:checked + .hamburger>div:before, .toggler:checked + .hamburger>div:after{
    top: 0;
    transform: rotate(90deg);
}

.menu-mobile{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    visibility: hidden;
    transition: .6s;
}

.menu-mobile > div{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateX(-150%) translateY(-50%);
    width: 1600px;
    height: 1600px;
    border-radius: 50%;
    background-color: rgba(34, 34, 34, 0.95);
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    transition: .6s;
}

.menu-mobile > div > div{
    max-width: 90vw;
    max-height: 100vh;
    opacity: 0;
    transition: .6s;
}
.menu-mobile > div > div > ul {
    padding-left: 0;
}

.menu-mobile > div > div > ul > li{
    list-style: none;
}

.menu-mobile > div > div > ul > li > a{
    text-decoration: none;
    color: #fff;
    margin: .8em;
    transition: .3s;
    font-size: 1.4em;
    display: inline-block;
}

.menu-mobile > div > div > ul > li > a:hover{
    color: #d7e700;
}

.toggler:checked ~ .menu-mobile{
    visibility: visible;
}

.toggler:checked ~ .menu-mobile > div{
    transform: translateX(-50%) translateY(-50%);
}

.toggler:checked ~ .menu-mobile > div > div{
    opacity: 1;
}









section{
    margin-top: 2em;
}
.single-project{
    margin-top: 5em;
    margin-bottom: 0em;
}
.search{
    margin: 10em 2em 6em 2em;
}

.search h1 a{
    text-decoration: none;
}
.search h3 a{
    font-weight: 400;
}
.area-ricerca{
    margin: 4em 0;
}
.boxed {
    max-width: 1240px;
    margin: 0 auto;
}

.l-box {
    padding: 1em;
}
.m-box {
    padding: 0 2em 2em 2em;
}

.xl-box {
    padding: 3em 2em 6em 2em;
}
.album-box {
    margin: 0 2em 2em 2em;
}
.album-box-1 {
    margin: 0 1em 0 1em;
}
.hero-box {
    padding: 0.3em 1.2em;
}
.swiper-hero {
    width: 100%;
    height: 100%;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    overflow: hidden;
    list-style: none;
    padding: 0;
    z-index: 1;

}
.swiper-hero .overlay-dark{
    background-color: rgba(34,34,34,.55);
    width: 100%;
    height: 100%;
    text-align: left;
    /* 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-hero .swiper-slide{
    height: 100vh;
    -webkit-background-size: cover !important;
    -moz-background-size: cover !important;
    -o-background-size: cover !important;
    background-size: cover !important;
}
.swiper-hero h1{
    margin: 0.3em 0;
    font-size: 2.5em;
}
.swiper-hero h2{
    margin: 0.3em 0;
    font-size: 2.5em;
}
.swiper-hero p{
    font-size: 1em;
    max-width: 480px;
    
}

.swiper-hero .button-box{
    margin-top: 0; 
}
.swiper-hero .hero-button{
    margin-left: 0;
    margin-bottom: 0.3em; 
}
.swiper-hero .play-button{
    display: none;
}
.swiper-hero .share{
    display: none; 
    margin-top: 2.5em;
}
.swiper-hero .share i{
    font-size: 1.7em;
    margin: 0 0.15em;
}
.swiper-container {
    width: 100%;
    height: 100%;
}

.swiper-gallery-block {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  z-index: 1;
    width: 100%;
    height: 100%;
}


.swiper-hero .go-left {
    border-bottom:1px solid white;
    padding-bottom: 0.6em;
    padding-top: 1em;
    width: 40px;
    display: none;
}

.swiper-hero .go-left a{
    float: left;
}

.swiper-hero .go-left a:hover{
    float: left;
}

.swiper-hero .go-left div{
    margin-left: 2.5em;

}
.swiper-hero .go-left p{
    margin: 0;
    font-size: 1.1em;
    line-height: 1.4;
}






.swiper-hero .go-right {
    border-bottom:1px solid white;
    padding-bottom: 0.6em;
    padding-top: 1em;
    width: 40px;
    float: right;
    display: none;
}

.swiper-hero .go-right a{
    float: right;
}

.swiper-hero .go-right a:hover{
    float: right;
}

.swiper-hero .go-right div{
    margin-right: 2.5em;

}
.swiper-hero .go-right p{
    margin: 0;
    font-size: 1.1em;
    line-height: 1.4;
    text-align: right;
}

.swiper-hero .swiper-hero-prev{
    cursor:pointer;
}
.swiper-hero .swiper-hero-next{
    cursor:pointer;
}





.swiper-clients .swiper-slide {
    text-align: center;
    /* 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-container a img {
    height: 57px;
}
.small-img-client a img{
    height: 37px;
}






.news {
    padding-top: 2em;
    padding-bottom: 1em;
}
.news-test-box{
    min-height: 480px;
}
.news-img{
    position: absolute;
    z-index: -2;
    margin: 0;
    overflow: hidden;
    max-height: 480px;


}
.news-img img{
    
    height: 480px;
    object-fit: cover;
}




.maschera  {
    position: absolute;
    z-index: 1;
    width: 100%;
    height: 100%;
    background-color: rgba(34,34,34,.55)
}








.news h1{
    margin-top: 0.3em;
}
.news h1 a{
    color: #222;
    text-decoration: none;
    transition: all .2s ease-in-out;
}
.news h1 a:hover{
   padding-right: 24px;
}


.news h2{
    margin-top: 0.3em;
}
.news h2 a{
    color: #222;
    text-decoration: none;
    transition: all .2s ease-in-out;
}
.news h2 a:hover{
   padding-right: 24px;
}
.news-button {
    float: left;
}
.contatti h2{
    margin: 0;
}
.contatti .send {
    margin-top: 2em;
    float: left;
    width: 100%;
}
.contatti .send a{
    font-size: 1em;
    line-height: 1.5;
    width: 100%;
    float: left;
}
.contatti .send ul{
    padding: 0;
    float: left;
    width: 100%;
}
.contatti .send li{
    list-style-type: none;
    float: left;
    width: 100%;
}
.more-button{
    background-color: transparent;
    color: #fff;
    text-transform: uppercase;
    font-weight: 300;
    font-size: 1.9em;
    padding: 0; 
    transition: all .2s ease-in-out;
}
.more-button i{
    font-size: 0.75em;
    position: relative;
    top:-3px;
}
main .more-button:hover{
    background-color: #d7e700;
    color: #222;
    border-radius: 0;
    padding-right: 24px;
   
}

footer{
    background-color: #333;
    padding-top: 3em;
    padding-bottom: 3em;
    padding-left: 2em;
    padding-right: 2em;
}
footer h2{
    margin-bottom: 0.5em;
    margin-top: 0.5em;
}
footer h6{
    font-size: 1em;
    line-height: 1.3;
    margin-top: 2em;
    font-weight: 400;
}
footer h2 a{
    transition: all .2s ease-in-out;
    text-decoration: none;
    color: #222;
    font-size: 0.72em;
    font-weight: 400;
}

footer h2 a:hover{
    background-color: #d7e700;
    color: #222;
    border-radius: 0;
    padding-right: 24px;
   
}
footer .footer-logo {
    width: 120px;
    margin-top: 1.6em;
}
footer .social-links-f{
    margin: 3em 0 1em 0;
    padding: 0;
    line-height: 1.6;
    float: left;

}

footer .social-links-f li{
    margin: 0;
    float: left;
    list-style: none; 
    font-size: 1.2em;
    line-height: 1.6;
    margin-right: 0.25em;
}

footer .social-links-f li:after{
    content: " /";
}
footer .social-links-f li:last-child:after{
    content: "";
}
  
.addcolor{
    transition: all 0.6s ease-in-out;
    top:0;
}
.header-scrolled{
    top: 0px;

}

.video-container {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 */
    height: 0;
}
.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}




.nav-button{
    margin: 4em 1em;
}

.nav-button .go-left {
    cursor:pointer;
    padding-bottom: 0.6em;
    padding-top: 1em;
    width: 40px;
    float: left;
}

.nav-button .go-left a{
    float: left;
}

.nav-button .go-left a:hover{
    float: left;
    background-color: transparent;
    color: #fff;
    padding-right: 0;
    opacity: 0.75;
}

.nav-button .go-left .text-button{
    margin-left: 2.5em;
    text-decoration: none;

}
.nav-button .go-left p{
    margin: 0;
    font-size: 1.1em;
    line-height: 1.4;
    display: none;
}



.nav-button .go-right {
    cursor:pointer;
    padding-bottom: 0.6em;
    padding-top: 1em;
    width: 40px;
    float: right;
}

.nav-button .go-right a{
    float: right;
}

.nav-button .go-right a:hover{
    float: right;
    background-color: transparent;
    color: #fff;
    padding-right: 0;
    opacity: 0.75;
}

.nav-button .go-right .text-button{
    margin-right: 2.5em;
    text-decoration: none;


}
.nav-button .go-right p{
    margin: 0;
    font-size: 1.1em;
    line-height: 1.4;
    text-align: right;
    display: none;
}
.nav-button .share{
    text-align: center;
    margin-top: 1em;
    margin-bottom: 0;
    
}
.nav-button .share i{
    font-size: 1.7em;
    margin: 0 0.15em;
}
.nav-button .more-button i{
    font-size: 1.5em;
    top:-6px;
}

.video{
    margin: 0;
    position: relative;
    padding-bottom: 56.25%;
    padding-top: 30px;
    height: 0;
    overflow: hidden;

}
.video iframe{
    margin: 2em 0;
    border: 0;
}
.video iframe,
.video object,
.video embed {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.all-video span{
    background-color: transparent;
}

.all-video h2 {
    margin-top: 0.2em;
    margin-bottom: 0.2em;
}
.all-video h2 a{
    text-decoration: none;
}
.all-video h3 {
    margin-top: 0.2em;
    margin-bottom: 0.2em;
}
.portfolio__grid img{
    width: 100%;
    -webkit-filter: grayscale(1);
    filter: grayscale(1);
    /*-webkit-filter: sepia(1);
    filter: sepia(1);*/
}

.portfolio__grid img:hover{
    -webkit-filter: grayscale(0);
    filter: grayscale(0);
}

.filters-category{
    margin-top: 2em;
    float: left;
    width: 100%;
}





.rwd-video {
    height: 0;
    overflow: hidden;
    padding-bottom: 56.25%;
    padding-top: 30px;
    position: relative;
}
.rwd-video iframe,
.rwd-video object,
.rwd-video embed {
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
    border: 0;
}




/* class applies to select element itself, not a wrapper element */
.select-css {
    display: block;
    font-weight: 400;
    font-size: 1.4em;
    color: #fff;
    line-height: 1.6;
    padding: .2em 1.4em .1em 0em;
    width: 100%;
    max-width: 100%; /* useful when width is set to anything other than 100% */
    box-sizing: border-box;
    margin: 0;
    border: 0 solid #aaa;
    border-top: 2px solid #fff;
    box-shadow: 0 0 0 0 rgba(0,0,0,.04);
    border-radius: 0;
    -moz-appearance: none;
    -webkit-appearance: none;
    appearance: none;
    background-color: #999;
    /* note: bg image below uses 2 urls. The first is an svg data uri for the arrow icon, and the second is the gradient. 
        for the icon, if you want to change the color, be sure to use `%23` instead of `#`, since it's a url. You can also swap in a different svg icon or an external image reference
        
    */
    background-image: url('data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22292.4%22%20height%3D%22292.4%22%3E%3Cpath%20fill%3D%22%23d7e700%22%20d%3D%22M287%2069.4a17.6%2017.6%200%200%200-13-5.4H18.4c-5%200-9.3%201.8-12.9%205.4A17.6%2017.6%200%200%200%200%2082.2c0%205%201.8%209.3%205.4%2012.9l128%20127.9c3.6%203.6%207.8%205.4%2012.8%205.4s9.2-1.8%2012.8-5.4L287%2095c3.5-3.5%205.4-7.8%205.4-12.8%200-5-1.9-9.2-5.5-12.8z%22%2F%3E%3C%2Fsvg%3E'),
      linear-gradient(to bottom, #222 0%,#222 100%);
    background-repeat: no-repeat, repeat;
    /* arrow icon position (1em from the right, 50% vertical) , then gradient position*/
    background-position: right .7em top 50%, 0 0;
    /* icon size, then gradient */
    background-size: .65em auto, 100%;
}
/* Hide arrow icon in IE browsers */
.select-css::-ms-expand {
    display: none;
}
/* Hover style */
.select-css:hover {
    border-color: #888;
}
/* Focus style */
.select-css:focus {

    border-color: #fff;
    /* It'd be nice to use -webkit-focus-ring-color here but it doesn't work on box-shadow */
    box-shadow: 0 0 0 0 rgba(59, 153, 252, .7);
    box-shadow: 0 0 0 0 -moz-mac-focusring;
    color: #fff; 
    outline: none;
}

/* Set options to normal weight */
.select-css option {
    font-weight:normal;
}

/* Support for rtl text, explicit support for Arabic and Hebrew */
*[dir="rtl"] .select-css, :root:lang(ar) .select-css, :root:lang(iw) .select-css {
    background-position: left .7em top 50%, 0 0;
    padding: .2em 1.4em .1em 0em;
}

/* Disabled styles */
.select-css:disabled, .select-css[aria-disabled=true] {
    color: graytext;
    background-image: url('data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22292.4%22%20height%3D%22292.4%22%3E%3Cpath%20fill%3D%22graytext%22%20d%3D%22M287%2069.4a17.6%2017.6%200%200%200-13-5.4H18.4c-5%200-9.3%201.8-12.9%205.4A17.6%2017.6%200%200%200%200%2082.2c0%205%201.8%209.3%205.4%2012.9l128%20127.9c3.6%203.6%207.8%205.4%2012.8%205.4s9.2-1.8%2012.8-5.4L287%2095c3.5-3.5%205.4-7.8%205.4-12.8%200-5-1.9-9.2-5.5-12.8z%22%2F%3E%3C%2Fsvg%3E'),
      linear-gradient(to bottom, #222 0%,#222 100%);
}

.select-css:disabled:hover, .select-css[aria-disabled=true] {
    border-color: #222;
}

.pure-g{
    overflow: hidden !important;
}


input[type="search"] {
    background-color: #222;
    border: 2px solid #fff;
    padding: 10px 10px;
    min-width:100%;
    box-sizing: border-box;
}
input[type="submit"] {

    background-color: #222;
    border: 2px solid #fff;
    padding: 10px 10px;
    margin-top: 8px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    transition: all 0.3s ease-in-out;
}
input[type="submit"]:hover {
    background-color: #fff;
    color: #222;
}

/*PRELOAD ANIMATION*/

#loader-wrapper {
  position:fixed;
  top:0;
  left:0;
  width:100%;
  height:100%;
  z-index:1000;
}
#loader {
  display:block;
  position: relative;
  top:50%;
  left:50%;
  width:150px;
  height:150px;
  margin:-75px 0 0 -75px;
  border:3px solid transparent;
  border-top-color:white;
  border-radius:100%;
  -webkit-animation: spin 2s linear infinite;
          animation: spin 2s linear infinite;
  z-index:1001;
}
#loader:before {
  content:"";
  position: absolute;
  top:5px;
  left:5px;
  right:5px;
  bottom:5px;
  border:3px solid transparent;
  border-top-color: #d7e700;
  border-radius:100%;
  -webkit-animation: spin 3s linear infinite;
          animation: spin 3s linear infinite;
}
#loader:after {
  content:"";
  position: absolute;
  top:12px;
  left:12px;
  right:12px;
  bottom:12px;
  border:3px solid transparent;
  border-top-color:#666;
  border-radius:100%;
  -webkit-animation: spin 1.5s linear infinite;
          animation: spin 1.5s linear infinite;
}
@-webkit-keyframes spin {
  0%   { 
    -webkit-transform: rotate(0deg); 
      -ms-transform: rotate(0deg); 
          transform: rotate(0deg);
  }
  100% { 
    -webkit-transform: rotate(360deg); 
      -ms-transform: rotate(360deg); 
          transform: rotate(360deg);
  }
}
@keyframes spin {
  0%   { 
    -webkit-transform: rotate(0deg); 
      -ms-transform: rotate(0deg); 
          transform: rotate(0deg);
  }
  100% { 
    -webkit-transform: rotate(360deg); 
      -ms-transform: rotate(360deg); 
          transform: rotate(360deg);
  }
}

#loader-wrapper .loader-section {
  position:fixed;
  top:0;
  background:#222;
  width:51%;
  height:100%;
  z-index:1000;
}

#loader-wrapper .loader-section.section-left {
  left:0
}
#loader-wrapper .loader-section.section-right {
  right:0;
}


.min-h{
    min-height: 460px;
}

/* Loaded Styles */
.loaded #loader-wrapper .loader-section.section-left {
  transform: translateX(-100%);
  transition: all 0.7s 0.3s cubic-bezier(0.645,0.045,0.355,1.000);
}
.loaded #loader-wrapper .loader-section.section-right {
  transform: translateX(100%);
  transition: all 0.7s 0.3s cubic-bezier(0.645,0.045,0.355,1.000);
}
.loaded #loader {
  opacity: 0;
  transition: all 0.3s ease-out;
}
.loaded #loader-wrapper {
  visibility: hidden;
  transform:translateY(-100%);
  transition: all 0.3s 1s ease-out;
}

/* PRELOAD ANIMATION fine */