@charset "utf-8";
/* CSS Document */



    .jumbotron {background-color:transparent ; }
	.jumbotron#a {background-color:#edeef9 !important; margin-bottom: 0rem !important}
	.jumbotron#b {background-color:#ffffff !important; margin-bottom: 0rem !important}
	.jumbotron#c {background-color:#fff0f0 !important; margin-bottom: 0rem !important}
	.jumbotron#d {background-color:#122c90 !important; margin-bottom: 0rem !important}	
    .jumbotron#e {background-color:#343a40 !important; margin-bottom: 0rem !important}
	.jumbotron#f {background-color:#a6cec6 !important; margin-bottom: 0rem !important}
	.jumbotron#g {background-color:#ecded1 !important; margin-bottom: 0rem !important}
	.jumbotron#h {background-color:#59918c !important; margin-bottom: 0rem !important}

	a {color: white;}
	a:hover {color: white;}
		
		
	img#mod {border-radius:1em; }
		
	
	.animated {
  animation-duration: 1s;
  animation-fill-mode: both;
}

.animated.infinite {
  animation-iteration-count: infinite;
}

.animated.delay-1s {
  animation-delay: 1s;
}

.animated.delay-2s {
  animation-delay: 2s;
}

.animated.delay-3s {
  animation-delay: 3s;
}

.animated.delay-4s {
  animation-delay: 4s;
}

.animated.delay-5s {
  animation-delay: 5s;
}

.animated.fast {
  animation-duration: 800ms;
}

.animated.faster {
  animation-duration: 500ms;
}

.animated.slow {
  animation-duration: 2s;
}

.animated.slower {
  animation-duration: 3s;
}

@media (print), (prefers-reduced-motion: reduce) {
  .animated {
    animation-duration: 1ms !important;
    transition-duration: 1ms !important;
    animation-iteration-count: 1 !important; 
  }
}
		
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translate3d(0, 100%, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

.fadeInUp {
  animation-name: fadeInUp;
}	
		
@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.fadeIn {
  animation-name: fadeIn;
}		
		
		
.nascosto{
	opacity: .5;
}

.visibile{
	opacity: 1;
}		
		


