.cb-slideshow,
.cb-slideshow:after {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0px;
    left: 0px;
    z-index: 0;
}
.cb-slideshow:after {
    content: '';
    background: transparent url(../images/pattern.png) repeat top left;
}
.cb-slideshow li span {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0px;
    left: 0px;
    color: transparent;
    background-size: cover;
    background-position: 50% 50%;
    background-repeat: none;
    opacity: 0;
    z-index: 0;
	-webkit-backface-visibility: hidden;
    -webkit-animation: imageAnimation 20s linear infinite 0s;
    -moz-animation: imageAnimation 20s linear infinite 0s;
    -o-animation: imageAnimation 20s linear infinite 0s;
    -ms-animation: imageAnimation 20s linear infinite 0s;
    animation: imageAnimation 20s linear infinite 0s;
}
.cb-slideshow li div {
    z-index: 1000;
    position: absolute;
    bottom: 30px;
    left: 0px;
    width: 100%;
    text-align: center;
    opacity: 0;
    -webkit-animation: titleAnimation 20s linear infinite 0s;
    -moz-animation: titleAnimation 20s linear infinite 0s;
    -o-animation: titleAnimation 20s linear infinite 0s;
    -ms-animation: titleAnimation 20s linear infinite 0s;
    animation: titleAnimation 20s linear infinite 0s;
}
.cb-slideshow li div h3 {
	font-family: 'BebasNeueRegular', 'Arial Narrow', Arial, sans-serif;
	padding: 0;
	line-height: 200px;
	color: rgba(204,255,0, 0.8);
}
.cb-slideshow li:nth-child(1) span { background-image: url(../images/1.jpg) }
.cb-slideshow li:nth-child(2) span {
    background-image: url(../images/2.jpg);
    -webkit-animation-delay: 5s;
    -moz-animation-delay: 5s;
    -o-animation-delay: 5s;
    -ms-animation-delay: 5s;
    animation-delay: 5s;
}
.cb-slideshow li:nth-child(3) span {
    background-image: url(../images/3.jpg);
    -webkit-animation-delay: 10s;
    -moz-animation-delay: 10s;
    -o-animation-delay: 10s;
    -ms-animation-delay: 10s;
    animation-delay: 10s;
}
.cb-slideshow li:nth-child(4) span {
    background-image: url(../images/4.jpg);
    -webkit-animation-delay: 15s;
    -moz-animation-delay: 15s;
    -o-animation-delay: 15s;
    -ms-animation-delay: 15s;
    animation-delay: 15s;
}
/*.cb-slideshow li:nth-child(5) span {
    background-image: url(../images/5.jpg);
    -webkit-animation-delay: 24s;
    -moz-animation-delay: 24s;
    -o-animation-delay: 24s;
    -ms-animation-delay: 24s;
    animation-delay: 24s;
}
.cb-slideshow li:nth-child(6) span {
    background-image: url(../images/6.jpg);
    -webkit-animation-delay: 30s;
    -moz-animation-delay: 30s;
    -o-animation-delay: 30s;
    -ms-animation-delay: 30s;
    animation-delay: 30s;
}*/

.cb-slideshow li:nth-child(2) div {
    -webkit-animation-delay: 5s;
    -moz-animation-delay: 5s;
    -o-animation-delay: 5s;
    -ms-animation-delay: 5s;
    animation-delay: 5s;
}
.cb-slideshow li:nth-child(3) div {
    -webkit-animation-delay: 10s;
    -moz-animation-delay: 10s;
    -o-animation-delay: 10s;
    -ms-animation-delay: 10s;
    animation-delay: 10s;
}
.cb-slideshow li:nth-child(4) div {
    -webkit-animation-delay: 15s;
    -moz-animation-delay: 15s;
    -o-animation-delay: 15s;
    -ms-animation-delay: 15s;
    animation-delay: 15s;
}
/*.cb-slideshow li:nth-child(5) div {
    -webkit-animation-delay: 16s;
    -moz-animation-delay: 24s;
    -o-animation-delay: 24s;
    -ms-animation-delay: 24s;
    animation-delay: 24s;
}*/
/*.cb-slideshow li:nth-child(6) div {
    -webkit-animation-delay: 30s;
    -moz-animation-delay: 30s;
    -o-animation-delay: 30s;
    -ms-animation-delay: 30s;
    animation-delay: 30s;
}*/

/*---  Animation for the slideshow images ---*/

@-webkit-keyframes imageAnimation { 
	0% {
	    opacity: 0;
	    -webkit-animation-timing-function: ease-in;
	}
	8% {
	    opacity: 1;
	    -webkit-transform: scale(1.05);
	    -webkit-animation-timing-function: ease-out;
	}
	17% {
	    opacity: 1;
	    -webkit-transform: scale(1.1);
	}
	25% {
	    opacity: 0;
	    -webkit-transform: scale(1.1);
	}
	100% { opacity: 0 }
}
@-moz-keyframes imageAnimation { 
	0% {
	    opacity: 0;
	    -moz-animation-timing-function: ease-in;
	}
	8% {
	    opacity: 1;
	    -moz-transform: scale(1.05);
	    -moz-animation-timing-function: ease-out;
	}
	17% {
	    opacity: 1;
	    -moz-transform: scale(1.1);
	}
	25% {
	    opacity: 0;
	    -moz-transform: scale(1.1);
	}
	100% { opacity: 0 }
}
@-o-keyframes imageAnimation { 
	0% {
	    opacity: 0;
	    -o-animation-timing-function: ease-in;
	}
	8% {
	    opacity: 1;
	    -o-transform: scale(1.05);
	    -o-animation-timing-function: ease-out;
	}
	17% {
	    opacity: 1;
	    -o-transform: scale(1.1);
	}
	25% {
	    opacity: 0;
	    -o-transform: scale(1.1);
	}
	100% { opacity: 0 }
}
@-ms-keyframes imageAnimation { 
	0% {
	    opacity: 0;
	    -ms-animation-timing-function: ease-in;
	}
	8% {
	    opacity: 1;
	    -ms-transform: scale(1.05);
	    -ms-animation-timing-function: ease-out;
	}
	17% {
	    opacity: 1;
	    -ms-transform: scale(1.1);
	}
	25% {
	    opacity: 0;
	    -ms-transform: scale(1.1);
	}
	100% { opacity: 0 }
}
@keyframes imageAnimation { 
	0% {
	    opacity: 0;
	    animation-timing-function: ease-in;
	}
	8% {
	    opacity: 1;
	    transform: scale(1.05);
	    animation-timing-function: ease-out;
	}
	17% {
	    opacity: 1;
	    transform: scale(1.1);
	}
	25% {
	    opacity: 0;
	    transform: scale(1.1);
	}
	100% { opacity: 0 }
}

/*--- Animation for the title ---*/

@-webkit-keyframes titleAnimation { 
	0% {
	    opacity: 0;
	    -webkit-transform: translateY(200px);
	}
	8% {
	    opacity: 1;
	    -webkit-transform: translateY(0px);
	}
	17% {
	    opacity: 1;
	    -webkit-transform: scale(1);
	}
	19% { opacity: 0 }
	25% {
	    opacity: 0;
	    -webkit-transform: scale(10);
	}
	100% { opacity: 0 }
}
@-moz-keyframes titleAnimation { 
	0% {
	    opacity: 0;
	    -moz-transform: translateY(200px);
	}
	8% {
	    opacity: 1;
	    -moz-transform: translateY(0px);
	}
	17% {
	    opacity: 1;
	    -moz-transform: scale(1);
	}
	19% { opacity: 0 }
	25% {
	    opacity: 0;
	    -moz-transform: scale(10);
	}
	100% { opacity: 0 }
}
@-o-keyframes titleAnimation { 
	0% {
	    opacity: 0;
	    -o-transform: translateY(200px);
	}
	8% {
	    opacity: 1;
	    -o-transform: translateY(0px);
	}
	17% {
	    opacity: 1;
	    -o-transform: scale(1);
	}
	19% { opacity: 0 }
	25% {
	    opacity: 0;
	    -o-transform: scale(10);
	}
	100% { opacity: 0 }
}
@-ms-keyframes titleAnimation { 
	0% {
	    opacity: 0;
	    -ms-transform: translateY(200px);
	}
	8% {
	    opacity: 1;
	    -ms-transform: translateY(0px);
	}
	17% {
	    opacity: 1;
	    -ms-transform: scale(1);
	}
	19% { opacity: 0 }
	25% {
	    opacity: 0;
	    -webkit-transform: scale(10);
	}
	100% { opacity: 0 }
}
@keyframes titleAnimation { 
	0% {
	    opacity: 0;
	    transform: translateY(200px);
	}
	8% {
	    opacity: 1;
	    transform: translateY(0px);
	}
	17% {
	    opacity: 1;
	    transform: scale(1);
	}
	19% { opacity: 0 }
	25% {
	    opacity: 0;
	    transform: scale(10);
	}
	100% { opacity: 0 }
}

/* Show at least something when animations not supported */

.no-cssanimations .cb-slideshow li span{
	opacity: 1;
}



/*---  Responsive Media Queries ---*/

@media screen and (max-width: 1920px) { 
	
	
.list-forfait {
	
	margin-left: 30px;
}

.form-padding-left {
	padding-left: 20px;
}

.container > header h2, p.info{
	
	margin-top: 50px;
	
}

.cb-slideshow li div h3 { font-size: 200px; }
		
textarea { resize:horizontal; width:400px;}

}

@media screen and (min-width: 1025px) { 
	
.container > header {
		 width:960px;
		 margin-left:auto;
		 margin-right:auto;
}	

#form {
	background-image: url(../images/icone-simple.png);
	background-repeat: no-repeat;
	background-position: 658px center;
	padding-left: 100px;
	}
	
#forfait-1 {
	background-image: url(../images/icone-simple.png);
	background-repeat: no-repeat;
	background-position: 658px center;
	padding-left: 100px;
	}
	 
#forfait-2 {
	background-image: url(../images/icone-valeur+.png);
	background-repeat: no-repeat;
	background-position: 660px center;
	padding-left: 100px;
	}
	
#forfait-3 {
	background-image: url(../images/icone-multi.png);
	background-repeat: no-repeat;
	background-position: 670px center;
	padding-left: 100px;
	}
	
	
.cb-slideshow li div h3 { font-size: 200px; }
	 
#menu {
	margin-top: 20px;
	float: right;
	top: 30px;
	left: 620px;
	position: absolute;
	}
	
	.addresse-MLW {
		margin-right:100px;}
		
body  {
	background-image: url(../images/bg-section-VERT+gradient.jpg);
	background-repeat: no-repeat;
}
}


@media screen and (max-width: 1024px) {

#form {
	background-image: url(../images/icone-simple.png);
	background-repeat: no-repeat;
	background-position: 550px center;
	padding-left: 50px;
	}
	

#forfait-1 {
	background-image: url(../images/icone-simple.png);
	background-repeat: no-repeat;
	background-position: 648px center;
	padding-left: 50px;
	}
	
#forfait-2 {
	background-image: url(../images/icone-valeur+.png);
	background-repeat: no-repeat;
	background-position: 650px center;
	padding-left: 50px;
	}
	
#forfait-3 {
	background-image: url(../images/icone-multi.png);
	background-repeat: no-repeat;
	background-position: 660px center;
	padding-left: 50px;
	}
	
#menu {
		float:right;
		margin-top:20px;
	}
	
.cb-slideshow li div h3 { font-size: 150px }

body  {
background-image: url(../images/bg-section-VERT+gradient-ipad.jpg);
background-repeat: no-repeat;
}

.cb-slideshow li:nth-child(1) span {
    background-image: url(../images/1-ipad.jpg);
}

.cb-slideshow li:nth-child(2) span {
    background-image: url(../images/2-ipad.jpg);
}

.cb-slideshow li:nth-child(3) span {
    background-image: url(../images/3-ipad.jpg);
}

.cb-slideshow li:nth-child(4) span {
    background-image: url(../images/4-ipad.jpg);
}

.bg-num-tel {
	background-color: rgba(255,255,255,.2);
	padding: 2px;
}
	
}


@media screen and (max-width: 900px) {

#forfait-1 {
	background-image: url(../images/icone-simple.png);
	background-repeat: no-repeat;
	background-position: 558px center;
	padding-left: 50px;
	}
	
#forfait-2 {
	background-image: url(../images/icone-valeur+.png);
	background-repeat: no-repeat;
	background-position: 560px center;
	padding-left: 50px;
	}
	
#forfait-3 {
	background-image: url(../images/icone-multi.png);
	background-repeat: no-repeat;
	background-position: 570px center;
	padding-left: 50px;
	}

}

@media screen and (max-width: 800px) {

#forfait-1 {
	background-image: url(../images/icone-simple.png);
	background-repeat: no-repeat;
	background-position: 508px center;
	padding-left: 50px;
	}
	
#forfait-2 {
	background-image: url(../images/icone-valeur+.png);
	background-repeat: no-repeat;
	background-position: 510px center;
	padding-left: 50px;
	}
	
#forfait-3 {
	background-image: url(../images/icone-multi.png);
	background-repeat: no-repeat;
	background-position: 520px center;
	padding-left: 50px;
	}

}

@media screen and (max-width: 768px) {

.container > header{
		text-align: center;
	}
		
#menu {
		float:none;
	}
	
p.codrops-demos {
		position: relative;
		top: auto;
		left: auto;
	}
	
.list-forfait {
	text-align:left;
	margin-left: -5px;
}

#form {
	background-image: url(../images/icone-simple.png);
	background-repeat: no-repeat;
	background-position: 468px top;
	padding-left: 30px;
	}

#forfait-1 {
	background-image: url(../images/icone-simple.png);
	background-repeat: no-repeat;
	background-position: 468px center;
	padding-left: 30px;
	}
	
	#forfait-2 {
	background-image: url(../images/icone-valeur+.png);
	background-repeat: no-repeat;
	background-position: 470px center;
	padding-left: 30px;
	}
	
	 #forfait-3 {
	background-image: url(../images/icone-multi.png);
	background-repeat: no-repeat;
	background-position: 480px center;
	padding-left: 30px;
	}
	
.cb-slideshow li div h3 { font-size: 100px}

.form-padding-left {
	padding-left: 0px;
}

.addresse-MLW {
		margin-right:30px;
	
}
}


@media screen and (max-width: 600px) { 
	
#menu {
		float:none;
	}
	
.cb-slideshow li div h3 { font-size: 80px}	
}


@media screen and (max-width: 480px) {	

#forfait-1, #forfait-2, #forfait-3, #form {
	float: none;
	width: 280px;
	padding-left: 0px;
}

h1 {
		font-size:small;	
		
	}

#menu {
		float:none;
		
	}
	
#menu a {
		
		font-size:14px;	
	}
	
.list-forfait {
	
	margin-left: 10px;
}

.list-forfait li {
	font-size: medium;
	
}

.form-padding-left {
	padding-left: 0;
}

.container > header h2, p.info{
	
	margin-top: 10px;
	
}

.cb-slideshow li div h3 { font-size: 30px }

textarea { resize:horizontal; width:200px;}



body  {
background-image: url(../images/bg-section-VERT+gradient-iphone.jpg);
}

.cb-slideshow li:nth-child(1) span {
	background-image: url(../images/1-iphone.jpg);
	background-position: right;
}

.cb-slideshow li:nth-child(2) span {
    background-image: url(../images/2-iphone.jpg);
}

.cb-slideshow li:nth-child(3) span {
    background-image: url(../images/3-iphone.jpg);
	background-position: left;
}

.cb-slideshow li:nth-child(4) span {
    background-image: url(../images/4-iphone.jpg);
}

.cb-slideshow li div {
	display:none 
}

}

@media screen and (max-width: 320px) { 
	
	.list-forfait li {
	font-size: small;
	
}

#forfait-1, #forfait-2, #forfait-3, #form {
	float: none;
	width: 240px;
	padding-left: 0px;
}


.container > header{
	
	padding-top: 10px;
	padding-right: 0px;
	padding-bottom: 10px;
	padding-left: 0px;
}

}


.font-vert {
	color: rgba(204,255,0,1);
	font-weight: bold;
}

.clear {
	clear: both;
}

.float-left {
	float: left;
}

#menu  {
	color: rgba(204,255,0,1);
	padding: 2px;
	font-size: 32px;
	margin-bottom: 0px;
	margin-top: 0px;
}

#menu a {
	/*font-family: Verdana, Geneva, sans-serif;*/
	font-size: 20px;
	color: rgba(255,255,255,1);
	font-style: italic;
}
#menu a:hover {
	color: rgba(204,255,0,1);
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: rgba(204,255,0,1);
}
.font-blanc {
	color: rgba(255,255,255,1);
}
.stroke-box {
	border: 1px solid rgba(204,255,0,1);
}

.font-charcoal {
	color: rgba(51,51,51,1);
}
.font-size-txt {
	font-size: 18px;
}
.font-size-sous-titre {
	font-size: 24px;
	color: rgba(0,0,0,1);
}

#box-forfaits {
	margin-right: auto;
	margin-left: auto;
	width: 100%;
}

.box-size-forfait {
	border: 1px solid rgba(204,255,0,1);
	margin-top: 20px;
	position: relative;
	padding-top: 10px;
	padding-bottom: 10px;
}

.bg-color-forfait-1 {
	background-color: rgba(153,153,153,0.5);
	border-radius: 5px;
}

.bg-color-forfait-2 {
	background-color: rgba(153,153,153,0.5);
	border-radius: 5px;
}

.bg-color-forfait-3 {
	background-color: rgba(153,153,153,0.5);
	border-radius: 5px;
}



#forfait-1, #forfait-2, #forfait-3 {
	margin-right: auto;
	margin-left: auto;
}

.padding-box {
	padding: 0px;
}

.float-left {
	float: left;
}

.marge-box-forfait {
	margin-right: 0px;
}

.list-forfait {
	list-style-type: disc;
	list-style-position: inside;
	font-size: 18px;
}
.pied-page {
	background-color: rgba(204,255,0,1);
	height: 20px;
	width: 100%;
	margin-top: auto;
	margin-bottom: 0px;
}
.texte-portfolio {
	font-size: 18px;
}

.addresse-MLW {
	font-size: 16px;
	background-color: rgba(153,153,153,.5);
	padding: 10px;
	border: 1px solid rgba(204,255,0,1);
}