/* layout a fasce */
 .sfondo0 {
    background-image:url('../files/big-image.jpg');
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}
.sfondo1, .sfondo6, .sfondo10 {
    border-bottom: 4px solid #98d361;
    border-top: 4px solid #98d361;
}
.sfondo3, .sfondo4, .sfondo8 {
    background-image:url('../files/quadrato.png');
    background-position: center top;
    background-repeat: repeat-y;
}
.sfondo5 {
    background-image:url('../files/cta-bg.png');
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    margin-top:42px;
}
.sfondo9 {
    background-image:url('../files/map-bg.png');
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    margin-top:42px;
}
/* header fisso */
 #imHeaderBg {
    position:fixed;
    z-index: 50;
}
#imHeader {
    position:fixed;
    z-index:50;
    width: 960px;
}
/* avviso NO JS */
.imNoScript {
    z-index:51;
    top:60px;
}
/* menu fisso */
 #imMnMn {
    position:fixed;
    left:auto;
}
/* menu desktop */
 #imMnMn > ul > li .imMnMnFirstBg {
    background-color: #fff;
    width: 0;
}
#imMnMn > ul > li.imMnMnCurrent .imMnMnFirstBg {
    width: auto;
}
#imMnMn > ul > li:hover .imMnMnFirstBg {
    -webkit-transition: all 250ms ease-in-out 0s;
    transition: all 250ms ease-in-out 0s;
    width: 100%;
}
/* menu mobile */
 .visible-xs {
    display:none;
}
#mobile_menu {
    font-size: 42px;
    top: 3px;
    position:fixed;
    right:10px;
    color: #fff;
}
#mobile_menu_list ul {
    list-style: none;
    position:fixed;
    right:0;
    margin: 0;
    padding-top:48px;
    width: 100%;
}
#mobile_menu_list li {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 50px;
    background: #8bc655;
    text-align: center;
    border-bottom: 1px solid #98d361;
}
#mobile_menu_list li:hover {
    background: #fff;
    border-bottom: 1px solid #98d361;
}
#mobile_menu_list li:hover a {
    color: #8bc655;
}
#mobile_menu_list li a {
    font-family:'Dosis';
    font-size: 28px;
    width: 100%;
    color: #fff;
    margin: 0;
    padding: 0;
    line-height: 50px;
    border-bottom: none;
    text-decoration: none;
    display:block;
}
/* logo header */
 a#tl-logo {
    color:#fff;
    text-decoration:none;
	font-family: 'Dosis';
    font-weight: 600;
	font-size: 32px;
    display: inline-block;
}
a#tl-logo span {
    font-size: 26px;
}
/* prima fascia */
 ul.main-icons {
    margin-top: 180px;
    text-align: center;
}
ul.main-icons li {
    display: inline-block;
    list-style: outside none none;
    margin-left: 45px;
    margin-right: 45px;
}
ul.main-icons i {
    color: #fff;
    display: block;
    font-size: 72px;
    padding-bottom: 20px;
}
ul.main-icons i:hover {
    color: #8bc655 !important;
}
ul.main-icons a {
    color: #fff;
    display: block;
    font-family:"Dosis";
    font-size: 22px;
    font-weight: 600;
    margin-top: 40px;
    text-decoration: none;
    text-transform: uppercase;
}
/* triangolo verde */
 .triangle {
    border-left: 60px solid transparent;
    border-right: 60px solid transparent;
    border-top: 45px solid #98d361;
    height: 0;
    width: 0;
    margin:0 auto;
}
/* icone centrali */
 .cd-timeline-img {
    margin: 0 auto;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    border: 4px solid #fff;
    background-color: #eee;
}
.cd-timeline-img img {
    display: block;
    width: 24px;
    height: 24px;
    position: relative;
    left: 50%;
    top: 50%;
    margin-left: -12px;
    margin-top: -12px;
}
.cd-timeline-img:hover {
    background-color: #98d361;
}
/* titolo immagini */
 .title-img {
    background-color: #eee;
    opacity: 0.9;
    position: relative;
    left:0;
    top: 34px;
    padding:10px;
}
.title-img p {
    color: #333;
    font-size: 22px;
    font-weight: 600;
}
/* oggetti a comparsa */
 .cd-timeline-img {
    /* Force Hardware Acceleration in WebKit */
    -webkit-transform: translateZ(0);
    -webkit-backface-visibility: hidden;
}
.is-hidden div {
    visibility: hidden;
}
.bounce-in {
    visibility: visible;
    -webkit-animation: cd-bounce-1 0.6s;
    -moz-animation: cd-bounce-1 0.6s;
    animation: cd-bounce-1 0.6s;
}
@-webkit-keyframes cd-bounce-1 {
    0% {
        opacity: 0;
        -webkit-transform: scale(0.5);
    }
    60% {
        opacity: 1;
        -webkit-transform: scale(1.2);
    }
    100% {
        -webkit-transform: scale(1);
    }
}
@-moz-keyframes cd-bounce-1 {
    0% {
        opacity: 0;
        -moz-transform: scale(0.5);
    }
    60% {
        opacity: 1;
        -moz-transform: scale(1.2);
    }
    100% {
        -moz-transform: scale(1);
    }
}
@keyframes cd-bounce-1 {
    0% {
        opacity: 0;
        -webkit-transform: scale(0.5);
        -moz-transform: scale(0.5);
        -ms-transform: scale(0.5);
        -o-transform: scale(0.5);
        transform: scale(0.5);
    }
    60% {
        opacity: 1;
        -webkit-transform: scale(1.2);
        -moz-transform: scale(1.2);
        -ms-transform: scale(1.2);
        -o-transform: scale(1.2);
        transform: scale(1.2);
    }
    100% {
        -webkit-transform: scale(1);
        -moz-transform: scale(1);
        -ms-transform: scale(1);
        -o-transform: scale(1);
        transform: scale(1);
    }
}
/* titolo mappa */
 .title-map p {
    font-size: 42px;
    font-weight: 500;
}
/* form mail */
 form input[type="text"], form textarea {
    padding: 10px 0 10px 6px !important;
    border-width:3px !important;
}
form input[type="button"] {
    padding:8px 30px;
    text-transform:uppercase;
    border-width:3px !important;
}
form input[type="button"]:hover {
    background-color: #b1e67f !important;
    border-color: #98d361 !important;
}
form .imClear {
    height: 14px !important;
}
.imGuiButton {
    background-color: #8bc655;
}
/* footer*/
 #imFooter .copyright-text p {
    color: #fff;
    font-family:"Dosis";
    font-size: 14px;
}
#imFooter .copyright-text a {
    color: #fff;
    text-decoration:none;
}
#imFooter .back-to-top {
    display: inline-block;
    height: 34px;
    text-align: center;
    width: 170px;
}
#imFooter .back-to-top a {
    background-color: #98d361;
    border: 3px solid #b1e67f;
    color: #fff;
    display: inline-block;
    font-family:"Dosis";
    font-size: 17px;
    font-weight: 600;
    line-height: 35px;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
    width: 170px;
}
#imFooter .back-to-top a:hover {
    background-color: #98d361;
    border-color: #8bc655;
}
#imFooter .social-icons li {
    display: inline-block;
    list-style: outside none none;
}
#imFooter .social-icons a {
    background-color: #98d361;
    border: 4px solid #b1e67f;
    color: #fff;
    display: block;
    font-size: 18px;
    line-height: 35px;
    text-align: center;
    text-decoration: none;
    height: 32px;
    width: 32px;
}
#imFooter .social-icons a:hover {
    background-color: #98d361;
    border-color: #8bc655;
}