
body {
    background-color: #fff;
    font-family: 'Hind', sans-serif;
    
}
.transparent {
	background-color: transparent;
    border: 0;
    position: absolute;
    left: 0;
    right: 0;
    z-index: 999;
}
.navbar-right li a{
	font-weight: 700;
}
.navbar-default .navbar-nav>li>a:hover{
    color: #000;
}
.navbar-default .navbar-brand:hover{
    color: #000;
}
.navbar-default .navbar-nav>li>a {
	color: #fff;
}
.navbar-default .navbar-brand {
    font-weight: 700;
    color: #fff;
}
.navbar-default .navbar-toggle {
    border:none;
    background-color: transparent !important;
}
.navbar-default .navbar-toggle .icon-bar {
    background-color:#fff;
}
.navbar-toggle .icon-bar {
    width: 25px;
    height: 3px;
}
.menu-destra li {
	text-align: right;
}

/*inizio slider foto*/

#carousel, #carousel > div {
    display: block;
    width: 100%;
    height: 600px;
    position: relative;
    background-size: cover;
    background-position: bottom;
    background-repeat: no-repeat;
    background-color: #455A64;
    overflow: hidden;

}

#carousel > div {
    position: absolute;
}

#carousel > i {
    color: #f8f8f8;
    position: absolute;
    font-size: 60px;
    margin: 20px;
    top: 40%;
    cursor: pointer;
    -moz-transition: .2s;
    -o-transition: .2s;
    -webkit-transition: .2s;
    transition: .2s;
}

#carousel > #left {
    left: -100px;
}

#carousel > #right {
    right: -100px;
}


#carousel:hover > #left {
    left:0;
}

#carousel:hover > #right {
    right: 0;
}

#carousel > i:active {
    color: #5bbd72;
    -moz-transform: translate(0,5px);
    -ms-transform: translate(0,5px);
    -o-transform: translate(0,5px);
    -webkit-transform: translate(0,5px);
    transform: translate(0,5px);
    cursor: pointer;
}

#carousel > ul {
    position: absolute;
    bottom: 15px;
    /*change left property to adjust the position of the buttons*/
    left: 50%;
    z-index: 4;
    padding: 0;
    margin: 0;
    margin-left: -30px;
}

#carousel > ul > li {
    margin: 0;
    padding: 0;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    list-style: none;
    float: left;
    background-color: white;
    margin-right: 20px;
    cursor: pointer;
    border: 5px solid #223422;
    box-shadow: 0 0 5px 1px white;
    -moz-transition: .3s;
    -o-transition: .3s;
    -webkit-transition: .3s;
    transition: .3s;
}

#carousel > ul > li.showli {
    background-color: #5bbd72;
    border: 5px solid white;
    box-shadow: 0 0 5px 1px #5bbd72;
    -moz-animation: boing .5s forwards;
    -o-animation: boing .5s forwards;
    -webkit-animation: boing .5s forwards;
    animation: boing .5s forwards;
}

#carousel > ul > li:hover {
    background-color: #5bbd72;
    border: 5px solid white;
    box-shadow: 0 0 5px 1px #5bbd72;
}

#carousel > div.show {
    z-index: 1;
}

@keyframes boing{0%{transform:scale(1.2)}40%{transform:scale(.6)}60%{transform:scale(1.2)}80%{transform:scale(.8)}100%{transform:scale(1)}}


/*inizio bottoni*/

.bottone{
    font-weight: 700;
    padding:0px 25px;
    background-color: white;
    border:2px solid #22B573;
    color: #000;
    text-decoration: none;
    line-height: 40px;
}
.bottone:hover {
    color:white;
    text-decoration: none;
    
}

/* Bounce To Right */
.hvr-bounce-to-right {
    display: inline-block;
    vertical-align: middle;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    box-shadow: 0 0 1px rgba(0, 0, 0, 0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -moz-osx-font-smoothing: grayscale;
    position: relative;
    -webkit-transition-property: color;
    transition-property: color;
    -webkit-transition-duration: 0.5s;
    transition-duration: 0.5s;
}
.hvr-bounce-to-right:before {
    content: "";
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #22B573;
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
    -webkit-transform-origin: 0 50%;
    transform-origin: 0 50%;
    -webkit-transition-property: transform;
    transition-property: transform;
    -webkit-transition-duration: 0.5s;
    transition-duration: 0.5s;
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
}
.hvr-bounce-to-right:hover, .hvr-bounce-to-right:focus, .hvr-bounce-to-right:active {
    color: white;
}
.hvr-bounce-to-right:hover:before, .hvr-bounce-to-right:focus:before, .hvr-bounce-to-right:active:before {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
    -webkit-transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
    transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
}

/*back to top bottone*/
.cd-top {
    display: inline-block;
    height: 40px;
    width: 40px;
    position: fixed;
    bottom: 40px;
    right: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
    /* image replacement properties */
    overflow: hidden;
    text-indent: 100%;
    white-space: nowrap;
    background: rgba(34, 181, 115, 0.8) url(../Immagini/cd-top-arrow.svg) no-repeat center 50%;
    visibility: hidden;
    opacity: 0;
    -webkit-transition: opacity .3s 0s, visibility 0s .3s;
    -moz-transition: opacity .3s 0s, visibility 0s .3s;
    transition: opacity .3s 0s, visibility 0s .3s;
}
.cd-top.cd-is-visible, .cd-top.cd-fade-out, .no-touch .cd-top:hover {
    -webkit-transition: opacity .3s 0s, visibility 0s 0s;
    -moz-transition: opacity .3s 0s, visibility 0s 0s;
    transition: opacity .3s 0s, visibility 0s 0s;
}
.cd-top.cd-is-visible {
    /* the button becomes visible */
    visibility: visible;
    opacity: 1;
}
.cd-top.cd-fade-out {
    /* if the user keeps scrolling down, the button is out of focus and becomes less visible */
    opacity: 1;
}
.no-touch .cd-top:hover {
    background-color: #e86256;
    opacity: 1;
}
@media only screen and (min-width: 768px) {
    .cd-top {
        right: 20px;
        bottom: 20px;
    }
}
@media only screen and (min-width: 1024px) {
    .cd-top {
        height: 60px;
        width: 60px;
        right: 30px;
        bottom: 30px;
    }
}


/*inizio corpo*/

.corpo {
	padding-top: 60px;
    padding-bottom: 60px;
}

.spazio {
	padding:30px 0;
}
.sfondo-note {
	background-image: url(../Immagini/spartito.jpg);
    background-repeat: no-repeat;
    background-size: cover;
}
.citazione {
	background-color: rgba(0,0,0,0.8);
    min-height: 100px;
    position: relative;
}
.citazione p.frase {
	color: #fff;
    font-weight: 300;
    font-size: 20px;
    text-align: center;
    margin-top:47px;
    padding:15px auto;
}
.citazione p.autore {
    color: #fff;
    font-size: 12px;
    text-align: right;
    margin-top:5px;
    margin-bottom: 47px;
}
.quote {
	color:#fff;
    position: absolute;
    top:10px;
    left:20px;
    opacity: 0.7;
}
.quote i {
	font-size: 50px;
}
.quote-inverse {
    transform: rotate(180deg);
    color:#fff;
    position: absolute;
    bottom:10px;
    right:20px;
    opacity: 0.7;
}
.quote-inverse i {
    font-size: 50px;
}

.alternative {
	background-color: #f2f2f2; /*e8e8e8*/
    padding-top: 50px;
    padding-bottom: 50px;
}
.video {
    height: 0;
    overflow: hidden;
    padding-bottom: 56.25%;
    padding-top: 30px;
    position: relative;
}
.video iframe,
.video object,
.video embed {
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
}
.spazio {
	padding-top: 20px;
    padding-bottom: 20px;
}
.no-margin {
    margin:0;
    padding: 0;
}
.overlay {
    position: absolute;
    width: 100%;
    height: 250px;
    background:rgba(34,181,115,.75);
    text-align:center;
    line-height: 250px;
    opacity:0;
    -webkit-transition: opacity .25s ease;
    -moz-transition: opacity .25s ease;
}
.no-margin:hover .overlay {
    opacity:1;
}
#plus {
    font-family:Helvetica;
    font-weight:900;
    color:rgba(255,255,255,.85);
    font-size:96px;
}
.no-margin a{
    display: block;
    height: 250px;
}
.example-image-link1 {
	background-image: url(../Immagini/momenti2017-03-1small.jpg);
    background-size: cover;
    background-repeat: no-repeat;
}
.example-image-link2 {
    background-image: url(../Immagini/momenti2017-03-2small.jpg);
    background-size: cover;
    background-repeat: no-repeat;
}
.example-image-link3 {
    background-image: url(../Immagini/momenti2018-01-3small.jpg);
    background-size: cover;
    background-repeat: no-repeat;
}
.example-image-link4 {
    background-image: url(../Immagini/momenti2018-01-4small.jpg);
    background-size: cover;
    background-repeat: no-repeat;
}
.example-image-link5 {
    background-image: url(../Immagini/momenti2017-03-5small.jpg);
    background-size: cover;
    background-repeat: no-repeat;
}
.example-image-link6 {
    background-image: url(../Immagini/momenti2017-03-6small.jpg);
    background-size: cover;
    background-repeat: no-repeat;
}
.sfondo-mappa {
	background-image: url(../Immagini/mappa.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    padding-top:50px;
    padding-bottom: 70px;
}
.col h3 {
    text-align: center;
    margin-bottom: 50px;
}
input[type=text], input[type=email] {
    display: block;
    border:0;
    height: 45px;
    margin-bottom: 10px;
    width: 100%;
    padding-left:10px;
}
input[type=submit]{
    margin-top: 10px;
    display: block;
    float: right;
    font-weight: 700;
    padding:0px 45px;
    background-color: transparent;
    border:2px solid #22B573;
    color: #000;
    text-decoration: none;
    line-height: 40px;
    transition: 0.3s;
}
input[type=submit]:hover {
    color: #fff;
    background-color: #22B573;
    
}
.textarea {
	width: 100%;
    height: 150px;
    border:0;
    padding-left:10px;
    padding-top: 15px;
}
input:focus, textarea:focus {
    outline: 0;
}

.footer {
	color:#fff;
    padding:50px 0;
}
.contattaci {
	color:#f2f2f2;
    line-height: 2;
}

.last {
    background-color: #4d4d4d;
    color:#f5f5f5;
    font-size: 12px;
    text-align: center;
    height: 40px;
    line-height: 40px;
}
/*Logo carousel*/
#clients {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

#clients .clients-wrap {
    display: block;
    width: 95%;
    margin: 0 auto;
    overflow: hidden;
}

#clients .clients-wrap ul {
    display: block;
    list-style: none;
    position: relative;
    margin-left: auto;
    margin-right: auto;
}

#clients .clients-wrap ul li {
    display: block;
    float: left;
    position: relative;
    width: 220px;
    height: 100px;
    line-height: 100px;
    text-align: center;
}
#clients .clients-wrap ul li img {
    vertical-align: middle;
    max-width: 100%;
    max-height: 100%;
    -webkit-transition: 0 linear left;
    -moz-transition: 0 linear left;
    transition: 0 linear left;
    -ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=65)";
    filter: alpha(opacity=65); 
    opacity: 0.65;
}
#clients .clients-wrap ul li img:hover {
    -ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    filter: alpha(opacity=100); 
    opacity: 1.0;
}

a.link:link, a.link:visited { 
    color: #fff;
    text-decoration: none;
}
a.link:hover {
    transition: 0.3s;
    color: rgba(34,181,115,1);
    text-decoration: none;
}

.footer-list a{
    line-height: 2;
	
}
.footer-list li a:link, .footer-list li a:visited {
	color: #fff;
    text-decoration: none;
}

.footer-list li a:hover {
    transition: 0.3s;
    color: rgba(34,181,115,1);
    text-decoration: none;
}
.contattaci a{
	font-size: 20px;
}
.contattaci a:link, .contattaci a:visited {
    color: rgba(34,181,115,1);
    text-decoration: none;
}
.contattaci a:hover {
    color: rgba(34,181,115,1);
    transition: 0.3s;
    text-decoration: none;
}


/*pagina il coro*/

.testata {
	height:220px;
    background-color: black;
}
.testata h1 {
    color: #fff;
    text-transform: uppercase;
    text-align: center;
    line-height: 220px;
}

/*pagina news*/

p.article {
    position: relative;
    margin: 0;
    padding-top: 20px;
}
p.article:after {
    content: "";
    background: #22B573;
    height: 4px;
    width: 50px;
    /*POSITION*/
    position: absolute;
    top: 6px;
    left: 0;
}
p.data {
    padding-top: 10px;
    font-size: 13px;
    color: #999;
}

.right {
	float: right;
}
/*pagina contatti*/

div.centrato {
    width: 250px;
    margin:0 auto;
}

div.centrato a {
    display: block;
}

p.recapito {
    color: #999;
    padding:10px;
    font-size: 14px;
}
.scrolloff {
    pointer-events: none;
}
.testata-coro {
    background-image:url("../Immagini/testata_il_coro_2.jpg");
    background-repeat: no-repeat;
    background-position: center;
}
.testata-produzione {
    background-image:url("../Immagini/testata-produzione.jpg");
    background-repeat: no-repeat;
    background-position: center;
}
.testata-castello-doro {
    background-image:url("../Immagini/testata-castello-doro.jpg");
    background-repeat: no-repeat;
    background-position: center;
}
.testata-repertorio {
    background-image:url("../Immagini/testata-repertorio.jpg");
    background-repeat: no-repeat;
    background-position: center;
}
.testata-news {
    background-image:url("../Immagini/testata-news.jpg");
    background-repeat: no-repeat;
    background-position: center;
}
.testata-camp {
    background-image:url("../Immagini/testata-camp.jpg");
    background-repeat: no-repeat;
    background-position: center;
}
.testata-eventi {
    background-image:url("../Immagini/testata-eventi.jpg");
    background-repeat: no-repeat;
    background-position: center;
}
.testata-eventi-passati {
    background-image:url("../Immagini/testata-eventi-passati.jpg");
    background-repeat: no-repeat;
    background-position: center;
}
.testata-contatti {
    background-image:url("../Immagini/testata-contatti.jpg");
    background-repeat: no-repeat;
    background-position: center;
}
.testata-5x1000 {
    background-image:url("../Immagini/testata-5x1000.jpg");
    background-repeat: no-repeat;
    background-position: center;
}
.testata-collaborazioni {
    background-image:url("../Immagini/testata-collaborazioni.jpg");
    background-repeat: no-repeat;
    background-position: center;
}

.slider1 {
    background-image:url("../Immagini/slider_coro2.jpg");
    background-repeat: no-repeat;
    background-position: center;
}
.overlay_slider {
	background-color: rgba(0,0,0,0.2);
    width: 100%;
    height: 600px;
    position: absolute;
    top: 0;
    left: 0;
}
.titoli {
	display: block;
   margin-top: 200px;
    text-align: center;
}
.titoli h1 {
	color: white;
    text-transform: uppercase;
    font-weight: 700;
}
.titoli h3 {
    color: white;
    text-transform: uppercase;
    font-size: 16px;
}
.slider2 {
    background-image:url("../Immagini/slider_coro1.jpg");
    background-repeat: no-repeat;
    background-position: center;
}
.slider3 {
    background-image:url("../Immagini/slider_coro3-2024.jpg");
    background-repeat: no-repeat;
    background-position: center;
}

.data-event {
	text-align: center;
    padding-bottom: 20px;
}
.data-event h2 {
    color: red;
    padding-top: 20px;
    font-weight: 700;
}
.data-event p {
    font-size: 20px;
    font-weight: 700;
}

.no-overflow {
	overflow-x: hidden;
}
.social {

	padding: 0 5 0 20px;
    color: #fff;

}
.social a, .social1 a {
	float: left;
	padding: 0 5 0 20px;
    color: #fff;
}
.social a, .social2 a {

	padding: 0 1px;
    color: #fff;
}
.social a, .social3 a {
	float: left;
	padding: 0 5 0 20px;
    color: #fff;
}
.social a, .social4 a {
	float: left;
	padding: 0 5 0 20px;
    color: #fff;
}
.social a, .social5 a {
	float: left;
	padding: 0 5 0 20px;
    color: #fff;
}
.social a, .social6 a {
	float: left;
	padding: 0 5 0 20px;
    color: #fff;
}



.social a:hover{
    color: #555555;
}
.social1 a:hover{
    color: #3B5998;
}
.social2 a:hover{
    color: #E62117;
}
.social3 a:hover{
    color: #1DD460;
}
.social4 a:hover{
    color: #FF3893;
}
.social5 a:hover{
    color: #FA586A;
}
.social6 a:hover{
    color: #24F3ED;
}

.bigger {
	font-size: 32px !important;
}

/*------------ricorrenze-------------*/
.nero {
    padding: 2px 20px;
    background-color: black;
}
.allineato {
    display: inline;
    font-size: 12px;
    color: white;
}
.allineato1 {
    display: inline;
    font-size: 12px;
    color: white;
    font-weight: bold;
}


/*------------ricorrenze-------------*/




@media only screen and (max-width: 768px) {
    #navbar{
        background-color: black;
        text-align: center;
    }
    .menu-destra li {
	text-align: center;
}
    .navbar-default .navbar-nav .open .dropdown-menu>li>a{
        color: #fff;
    }
}