.animation-image {
    text-align: center;
    line-height: 250px;
}
.animation-image.ng-enter,
.animation-image.ng-leave {
    opacity: 0.1;
    transition: all ease 500ms;
    -webkit-transition: all ease 500ms;
    -o-transition: all ease 500ms;
    -moz-transition: all ease 500ms;
}
    .animation-image.ng-enter img,
    .animation-image.ng-leave img {
        opacity: 0.1;
        width: 0;
        height: 0;
        margin: auto;
        transition: all ease 500ms;
        -webkit-transition: all ease 500ms;
        -o-transition: all ease 500ms;
        -moz-transition: all ease 500ms;
    }
.animation-image.ng-enter-stagger {
    transition-delay: 0.1s;
    -webkit-transition-delay: 0.1s;
    transition-duration: 0s;
    -webkit-transition-duration: 0s;
}
    .animation-image.ng-enter-stagger img {
        transition-delay: 0.1s;
        -webkit-transition-delay: 0.1s;
        transition-duration: 0s;
        -webkit-transition-duration: 0s;
    }
.animation-image.ng-enter-active { opacity: 1.0 }
    .animation-image.ng-enter-active img {
        opacity: 1.0;
        width: 250px;
        height: 250px;
    }
.animation-image.ng-leave-active { opacity: 0.1 }
    .animation-image.ng-leave-active img {
        opacity: 0.1;
        width: 0;
        height: 0;
    }
@keyframes fond { 
    0% { background-image: url(../img/1.jpg) }
    25% { background-image: url(../img/2.jpg) }
    50% { background-image: url(../img/3.jpg) }
    75% { background-image: url(../img/4.jpg) }
}
@-webkit-keyframes fond { 
    0% { background-image: url(../img/1.jpg) }
    25% { background-image: url(../img/2.jpg) }
    50% { background-image: url(../img/3.jpg) }
    75% { background-image: url(../img/4.jpg) }
}
@-moz-keyframes fond { 
    0% { background-image: url(../img/1.jpg) }
    25% { background-image: url(../img/2.jpg) }
    50% { background-image: url(../img/3.jpg) }
    75% { background-image: url(../img/4.jpg) }
}
@-o-keyframes fond { 
    0% { background-image: url(../img/1.png) }
    25% { background-image: url(../img/2.png) }
    50% { background-image: url(../img/3.png) }
    75% { background-image: url(../img/4.png) }
}
body,
html {
    animation: fond 25s infinite;
    -webkit-animation: fond 25s infinite;
    -moz-animation: fond 25s infinite;
    -o-animation: fond 25s infinite;
    margin: 0;
    padding: 0;
    background: url(../img/1.png) top left no-repeat;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src='.myBackground.jpg', sizingMethod='scale');
    -ms-filter: "progid:DXImageTransform.Microsoft.AlphaImageLoader(src='myBackground.jpg', sizingMethod='scale')";
    font-family: 'Open Sans', sans-serif !important;
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: auto;
    overflow-x: hidden;
}
a { color: #666 }
header { background: rgba(255,255,255,0.7) }
    header #logo {
        height: 125px;
        overflow: hidden;
    }
    header address {
        text-align: center;
        padding: 5px;
        font-size: 1.2em;
    }
        header address a { color: #000 }
        header address a:hover { color: #62164E }
    header #menu {
        list-style-type: none;
        padding: 0;
        margin: 0;
        display: none;
    }
        header #menu li a {
            display: block;
            text-align: center;
            text-transform: uppercase;
            font-size: 20px;
            padding: 5px;
            font-weight:500;
        }
    header #bouton-mobile {
        height: 30px;
        line-height: 30px;
        padding: 0 20px;
        margin-bottom: 10px;
    }
        header #bouton-mobile button {
            height: 30px;
            line-height: 20px;
            float: right;
            border: 1px solid #666;
            width: 30px;
            background: none;
            border-radius: 5px;
        }
main section {
    background-color: #fff;
    border-top: 5px solid #62164E;
    padding: 10px 0 20px 0;
}
    main section article { text-align: justify !important }
        main section article img { margin: 8px auto }
        main section article h4 { padding-left: 15px }
main h2,
main h3 {
    text-align: center;
    margin: 20px;
}
    main h2 span,
    main h3 span {
        text-transform: uppercase;
        padding: 5px;
        background-color: #fff;
        font-family: 'Roboto', sans-serif !important;
    }
main h2 {
    font-size: 22px;
    color: #62164E;
    font-weight: normal;
}
main h3 {
    font-size: 26px;
    font-weight: bold;
    color: #888;
}
main section article+article:before {
    display: block;
    height: 1px;
    content: "";
    background-color: #62164E;
    clear: both;
    margin: 20px auto;
    width: 75%;
}
main { clear: both }
    .navigation-prestation a.btn,.navigation-prestation a.btn {
        border: 2px solid #62164E;
        float: right;
        margin: 0 2px;
        border-radius: 0;
    }
    .navigation-prestation a:hover.btn,navigation-prestation a:hover.btn {
        background-color: #62164E;
        color: #fff;
    }
footer {
    margin-top: 20px;
    clear: both;
    background-color: #62164E;
    text-align: center;
    padding: 5px;
}
    footer p {
        text-align: center;
        color: #fff;
        margin: 0;
        padding: 0;
    }
    footer a,
    footer a:hover { color: #fff }
.liste-prestations {
    margin: 0;
    padding: 0;
    background-color: #fff;
}
    .liste-prestations ul { margin-bottom: 0 }
*:focus { outline: none }
::-webkit-input-placeholder {
    /* WebKit, Blink, Edge */
    color: #62164E;
}
:-moz-placeholder {
    /* Mozilla Firefox 4 to 18 */
    color: #62164E;
    opacity: 1;
}
::-moz-placeholder {
    /* Mozilla Firefox 19+ */
    color: #62164E;
    opacity: 1;
}
:-ms-input-placeholder {
    /* Internet Explorer 10-11 */
    color: #62164E;
}
.champ-formulaire label { color: #62164E }
.champ-formulaire {
    background-color: #fff;
    padding: 5px;
    margin-top: 10px;
}
    .champ-formulaire input {
        background-color: #fff;
        color: #62164E;
        border: none;
        width: 100%;
        padding: 3px 15px;
    }
article>.champ-formulaire {
    margin-top: 40px;
    padding: 15px;
}
    article>.champ-formulaire textarea {
        resize: none;
        width: 100%;
        height: 283px;
    }
#envoyer {
    padding: 0px;
    margin-top: 10px;
}
    #envoyer input,.bouton {
		display:block;
		background-color: #62164E;
        color: #fff !important;
		text-align:center;
		font-size:1.2em;
		margin:4px 0;
        padding:5px 10px;
        border: none;
		        transition: all ease 500ms;
        -webkit-transition: all ease 500ms;
        -o-transition: all ease 500ms;
        -moz-transition: all ease 500ms;    }
    #envoyer input:hover,.bouton:hover {
        background-color: #3E0E31;
		box-shadow:0 0 5px #fff;

    }
.barre-verticale {
    border-left: 2px solid #fff;
    display: block;
    margin-top: 40px;
    padding-left: 15px;
    color: #fff;
    text-shadow: 1px 1px 2px #000;
    font-weight: bold;
    margin-bottom: 50px;
	font-size:1.2em;
}
.btn-type-galerie {
    width: 31%;
    border: 1px solid #62164E;
    margin: 1%;
    height: 55px;
    background-color: #fff;
    padding: 5px;
    color: #62164E;
    font-weight: bold;
    float: left;
	font-size:14px;
	letter-spacing:-1px;
}
.btn-type-galerie:hover {
    background-color: #62164E;
    color: #fff;
}
#galerie a img {
    margin-bottom: 10px;
    display: block;
}
#galerie {
	padding-top:40px;
    min-height: 450px;
    overflow:hidden;
}
@media screen and (min-width:768px) { 
    header {
        height: 120px;
        background: rgba(255,255,255,0.5);
        clear: both;
    }
        header #logo {
            height: auto;
            overflow: hidden;
        }
        header address {
            text-align: center;
            padding-top: 35px;
        }
        header #menu li {
            float: left;
            height: 120px;
            width: 25%;
        }
        header #menu { display: block }
            header #menu li a {
                transition: background-color 0.5s ease-in-out;
                display: block;
                line-height: 120px;
                text-align: center;
                text-transform: uppercase;
                font-size: 16px;
                letter-spacing: -1px;
                padding: 0;
                height: 120px;
            }
            header #menu li a:hover,
            header li.active a {
                background: url(../img/page-hover.png) no-repeat bottom center;
                background-color: rgba(0,0,0,0.2);
                color: #fff;
                text-decoration: none;
                border-bottom: 5px solid #62164E;
            }
    main {
        padding-top: 20px;
        overflow: auto;
        clear: both;
    }
        main h2,
        main h3 {
            text-align: center;
            margin: 30px;
        }
            main h2 span,
            main h3 span {
                text-transform: uppercase;
                padding: 8px 15px;
                background-color: #fff;
                font-family: 'Roboto', sans-serif !important;
            }
        main h2 {
            color: #62164E;
            font-weight: normal;
            font-size: 30px;
        }
        main h3 {
            font-size: 40px;
            font-weight: bold;
            color: #888;
        }
		
        main section { margin-top: 40px }
            main section article+article:before { display: none }
            main section article .col-sm-5 {
                margin: 0;
                padding: 0 !important;
            }
            main section article {
                font-size: 11px;
                padding: 0 5px;
            }
                main section article img { margin: 0 }
            main section h1,main section h4 {
                font-size: 26px;
				letter-spacing:-1px;
                padding: 15px 0 !important;
                font-weight: 300 !important;
            }
    footer {
        clear: both;
        background-color: #62164E;
		padding:20px;
        text-align: center;
        width: 100%;
        margin-top: 80px;
        box-sizing: border-box;
    }
    #info-prestations {
        color: #fff;
        font-size: 26px;
        padding-top: 180px;
        text-align: center;
    }
    #indication-prestations {
        margin-left: -30px;
        position: absolute;
    }
    .liste-prestations {
        padding-top: 40px;
        background: none;
    }
        .liste-prestations ul {
            padding: 0;
            margin: 0;
            list-style-type: none;
        }
        .liste-prestations a {
            display: block;
            color: #fff;
            border-left: 2px solid #fff;
            padding: 2px 10px;
        }
        .liste-prestations a:hover,
        .liste-prestations li.active a {
            display: block;
            color: #fff;
            border-left: 2px solid #62164E;
            text-decoration: none;
            font-weight: bold;
        }
        .liste-prestations li:before {
            font-family: "FontAwesome";
            color: #62164E;
            content: "\f061";
            font-weight: bold;
            font-size: 20px;
            position: absolute;
            height: 30px;
            line-height: 30px;
            margin-left: -25px;
            opacity: 0;
            transition: all 0.1s ease-in-out;
        }
		
        .liste-prestations li.active:before { opacity: 1 }
		.liste-prestations li.active.no-fleche:before { opacity: 0;display:none; }
    #page-interne { margin: 0 80px }
    #vignettes {
        clear: both;
        padding: 0;
        margin-top: 15px;
    }
    #envoyer input {
        color: #fff;
        padding: 10px 20px;
        border: none;
        float: right;
        width: auto;
    }
	
    /*.animation-image:before {
        position: absolute;
        display: block;
        content: "\f00e";
        font-family: "FontAwesome";
        width: 180px;
        height: 180px;
        background-color: rgba(0,0,0,0.3);
        color: #fff;
        text-align: center;
        line-height: 180px;
        font-size: 1.9em;
        opacity: 0;
        transition: all ease-in-out 500ms;
        -webkit-transition: all ease-in-out 500ms;
        -o-transition: all ease-in-out 500ms;
        -moz-transition: all ease-in-out 500ms;
    }*/
    .animation-image:hover .overlay { height: 100% }
}
@media screen and (min-width:1100px) { 
    header #menu li a { font-size: 20px }
}
@media screen and (min-width: 768px) { 
    .modal-dialog {
        width: 850px;
        padding-top: 30px;
        padding-bottom: 30px;
        background: none;
        text-align: center;
    }
}
.modal-content {
    -webkit-box-shadow: none;
    box-shadow: none;
    background: none;
    border: none;
}
    .modal-content button {
        background: none;
        border: none;
        color: #fff;
        font-size: 1.8em;
        float: right;
        margin-right: -20px;
    }
#cnil {
    padding: 5px;
    position: fixed;
    background-color: #000;
    color: #fff;
    text-align: center;
    line-height: 30px;
    bottom: 0;
    left: 0;
    width: 100%;
}
#banniere-contact {
    font-size: 1.8em;
    color: #fff;
    font-weight: bold;
    background: #62164E;
    padding: 40px 15px;
    text-align: center;
    position: absolute;
    margin-top: 90px;
    left: 0;
    z-index: 100000;
    width: 100%;
    box-shadow: 0 0 10px #62164E;
}
.control{
	height:50px;
	line-height:50px;
	color:#fff;
	position:fixed;
	width:100%;
	left:0;
	top:40%;
	z-index:1000000;
}
.control+img{
	/*margin-top:-150px;*/
	position:relative;
}
.control button{
	margin:0;
	padding:0;
	font-size:1em;
}
.btn-type-galerie{
	font-size:0.8em;	
}
.col-sm-offset-2 a{
	color:#333;	
}
@media screen and (min-width:768px){
	.control button{
		margin:0;
		padding:0;
		font-size:2.2em;
	}
	.btn-type-galerie{
		font-size:1.2em;	
	}
}
.control #prev{
	text-align:left;
}
.control #next{
	text-align:right;
}
.control button:hover{
	color:#62164E;
	text-shadow:0 0 10px #fff;
}
#galerie  {
  padding-left: 15px;
}
#galerie  .animation-image {
  position: relative;
  overflow: hidden;
  margin-bottom:15px;
}
@media screen and (min-width:768px){
	#galerie  .animation-image {
	  margin:0 15px 15px 15px;
	}
}
#galerie  .animation-image img {
  display: block;
  margin: 0;
  padding: 0;
  max-width: 100%;
  height: auto;
}

#galerie .overlay {
  display: block;
  position: absolute;
  z-index: 20;
  background: rgba(0, 0, 0, 0.3);
  overflow: hidden;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}
#galerie a{
	text-decoration:none;	
}
#galerie a.close-overlay {
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 100;
  width: 45px;
  height: 45px;
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  line-height: 45px;
  text-align: center;
  background-color: #000;
  cursor: pointer;
}
#galerie a.close-overlay.hidden {
  display: none;
}

#galerie a.expand {
  display: block;
  position: absolute;
  z-index: 100;
  width: 60px;
  height: 60px;
  border: solid 5px #fff;
  text-align: center;
  color: #fff;
  line-height: 50px;
  font-weight: 700;
  font-size: 30px;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  -ms-border-radius: 30px;
  -o-border-radius: 30px;
  border-radius: 30px;
}
#galerie .overlay {
  top: 0;
  bottom: 0;
  left: 15px;
  right: 15px;
  opacity: 0;
}
#galerie .overlay a.expand {
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  width: 100%;
  height: 100%;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  -o-border-radius: 0;
  border-radius: 0;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}
#galerie .animation-image.hover .overlay {
  opacity: 1 !important;
}
#galerie .animation-image.hover .overlay a.expand {
  width: 60px;
  height: 60px;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  -ms-border-radius: 30px;
  -o-border-radius: 30px;
  border-radius: 30px;
}