/* saisons */
#itdah_seasons {
    min-height: 192px;
    width: 100%;
    position: fixed;
    top: 200px;
}
/* carnival */
@import url("https://fonts.googleapis.com/css?family=Montserrat:200,300,400,600");
.more-pens {
	position: fixed;
	left: 20px;
	bottom: 20px;
	z-index: 10;
}
#itdah_seasons {
    animation: animate 7s forwards;
    z-index: 999;
}
@keyframes animate {
  0% {
    z-index: 99;
  }
  33% {
  	opacity: 0.875;
    z-index: 9;
  }
  66% {
  	opacity: 0.750;
    z-index: 9;
  }
  99% {
  	opacity: 0.625;
    z-index: 9;
  }
  100% {
    z-index: 0;
  }
}
/* winter */
/* .winter #main-wrapper { */
/* 	background: linear-gradient(#1A76BE,#0063B1); */
/* } */
.winter #main-wrapper {
	background-image: 
		url('../img/winter/Snow/snow1.png'), 
		url('../img/winter/Snow/snow2.png'), 
		url('../img/winter/Snow/snow3.png');
/* 	animation: snow 20s linear; */
	animation-name: snow;
	animation-duration: 10s;
    animation-iteration-count: infinite;
}
@keyframes snow {
	0% {background-position: 0px 0px, 0px 0px, 0px 0px;}
	100% {background-position: 500px 1000px, 400px 400px, 300px 300px;}
/*     from {background-image:  */
/* 		url('img/saisons/winter/Snow/snow1.png'),  */
/* 		url('img/saisons/winter/Snow/snow2.png'),  */
/* 		url('img/saisons/winter/Snow/snow3.png');} */
/*     to {background-image:  */
/* 		none,  */
/* 		none,  */
/* 		none;} */
}
.winter #content-wrapper .container-block {
    animation: fade 5s forwards;
/*     background-color: rgba(255, 255, 255, 0) !important; */
    opacity: 0;
}
@keyframes fade {
    from {
/*     	background-color: rgba(255, 255, 255, 0); */
    	opacity: 0;
    }
    to {
/*     	background-color: rgba(255, 255, 255, 1); */
    	opacity: 1;
    }
}
/* media queries from bootstrap */
/* @media (max-width: 767px) { */
/* } */
/* @media (min-width: 768px) and (max-width: 991px) { */
/* } */
/* @media (min-width: 992px) and (max-width: 1199px) { */
/* } */
/* @media (min-width: 1200px) { */
/* } */