<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* =========================================================
 This rule resets a core set of elements so that they will appear consistent across browsers. Without this rule, content styled with an h1 tag, for example, 
 would appear in different places in Firefox and Internet Explorer because each browser has a different top margin default value. By resetting these values to 0, 
 the elements will initially be rendered in an identical fashion and their properties can be easily defined by the designer in any subsequent rule. 
 ==========================================================*/
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6 {
	margin: 0px;
	padding: 0px;
	border: 0px;
	outline: 0px;
	font-size: 100%;
}
a {
	outline: 0;
}
/* ======================================================
 The body is the outermost layout component and contains the visible page content. Setting properties for the body element will help to create consistent styling of 
 the page content and more manageable CSS. Besides using the body element to set global properties, it is common to use the body element to set the background color of the 
 page and create a centered container for the page content to display. 
 =======================================================*/
body {
	text-align: center; /* Centers the page content container in IE 5 browsers. */;
	padding: 0px 0px 0px 0px;
	background-color: #FFFFFF;
	line-height: 1.2em;
	font-size: 1em;
	color: #2d2e2e;
	font-family: Comic Sans MS, Palatino Linotype, Arial, Helvetica, sans-serif;
	margin: 0px 0px 0px 0px;
}
body img {
	border: 0px;
	text-decoration: none;
	max-width: 100%;
	height: auto;
	width: auto; /* ie8 */
}
/* =====================================
Commonly used to style page titles. 
========================================*/
h1, h2, h3 {
	color: #1C140E;
	margin: 5px 0px 5px 10px;
	font-family: "Comic Sans MS", "Palatino Linotype", Georgia, "Times New Roman", Times, serif;
}
h1 {
	font-size: 1.7em;
}
h2 {
	font-size: 1.3em;
}
h3 {
	font-size: 1.1em;
}
/*================================
Link Styles unless specified separately
=================================*/
a, a:link {
	color: #800080;   /* Anciennement CC6600 */
	font-weight: bold;
	text-decoration: none;
}
a:visited {
	color: #666633;
	font-weight: bold;
	text-decoration: none;
}
a:hover {
	color: #2170bd;
	text-decoration: underline;
}
a:focus {
	color: #2170bd;
}
a:active {
	color: #2170bd;
}
/* =========================================
 This is a container for the page content. It is common to use the container to constrain the width of the page content and allow for browser chrome to avoid
 the need for horizontal scrolling. For fixed layouts you may specify a container width and use auto for the left and right margin to center the container on the page. 
 IE 5 browser require the use of text-align: center defined by the body element to center the container. For liquid layouts you may simply set the left and right 
 margins to center the container on the page. 
 ============================================*/
#outerWrapper {
	background-color: #fff;
	width: 965px;
	text-align: left; /* Redefines the text alignment defined by the body element. */;
	margin: 20px auto 20px auto;
	border-radius: 10px;
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	}
/*===================================
Masthaead Styles
====================================*/
#outerWrapper #header {
	background: url('../images/rideau3.jpg') center repeat #353C48;
	padding: 10px 10px 10px 10px;
	font-weight: bold;
	min-height: 100px;
	border-radius: 8px 8px 0px 0px;
	-webkit-border-radius: 8px 8px 0px 0px;
	-moz-border-radius: 8px 8px 0px 0px;
}
#outerWrapper #header .sitename {
	/*font-family: "Palatino Linotype", Georgia, "Times New Roman", Times, serif; */
	font: 2.7em 'Euphoria Script', Verdana, Helvetica, sans-serif;
	color: #ffffff;
	font-weight: 900;
	margin-top: 10px;
	margin-left: 25px;
	letter-spacing: .25em;
	text-align: center;
}
.tagline {
	font-size: small;
}
/*========================================
Top Navigation
=========================================*/
#outerWrapper #topNavigation {
	background-color: #1C140E;
	min-height: 2.3em;
	padding: 10px 10px 10px 10px;
	border-bottom: solid 1px #1C140E;
}
#outerWrapper #topNavigation ul {
	list-style-type: none;
	width: 100%;
	margin: 0px;
	padding: 0px;
}
#outerWrapper #topNavigation li {
	float: left;
}
#outerWrapper #topNavigation a {
	color: #FFFFFF;
	text-decoration: none;
	margin: 0px 1px;
	padding: 5px;
	display: block;
}
#outerWrapper #topNavigation a:hover {
	background-color: #CDBB99;
	color: #000000;
	border-radius: 6px;
	-webkit-border-radius: 6px;
	-moz-border-radius: 6px;
}
/* Contains the main page content. When using a mutliple column layout the margins will be set to account for the floated columns' width, margins, and padding. */
#outerWrapper #contentWrapper #content {
	padding: 10px 20px 10px 20px;
	margin: 0px 0px 0px 0px;
}
/* =======================================================
 Using floated elements and a clear float class is a common method to accomplish multiple column tableless layouts. If floated elements are used 
without being cleared the elements following will wrap around the floated element. This class should be applied to an element after the last floated 
element and before the close of the container with floated elements. 
==========================================================*/
.clearFloat {
	display: block;
	clear: both;
}
/*=================================================
Footer Styles 
==================================================*/
#outerWrapper #footer {
	background-color: #FFFFFF;
	padding: 10px 10px 10px 10px;
	border-radius: 0px 0px 8px 8px;
	-webkit-border-radius: 0px 0px 8px 8px;
	-moz-border-radius: 0px 0px 8px 8px;
	color: #003366;
	border-top: medium darkblue solid;
}
#outerWrapper #footer p {
	margin-top: 0px;
	margin-bottom: 0px;
	text-align: center;
	font-size: .85em;
}
#outerWrapper #footer a:link {
	color: #003366;
	text-decoration: underline;
}
#outerWrapper #footer a:visited {
	color: #CCCCCC;
}
#outerWrapper #footer a:hover, #outerWrapper #footer a:focus {
	color: #336600;
}
#outerWrapper #footer a:active {
	color: #999999;
}
/*============================================
Floating images left, right or centered on page
=============================================*/
.imglft {
	padding: 5px 10px 5px 0px;
	float: left;
}
.imgrgt {
	padding: 5px 0px 5px 10px;
	float: right;
}
.imgctr {
	display: block;
	margin: 0px auto;
}

/*Make Image Scalable - Assign this class to any image to make it scale with the browser window size*/
img.scalable {
	height: auto !important;
	width: auto !important;
	max-width: 100%;
}
/*=====================================
Misc Typographic styles
======================================*/
.ctr {
	text-align: center;
}
.smltxt {
	font-size: small;
}
/*=============
form styles 
==============*/
form fieldset {
	padding: 1em;
	font: 80%/1 sans-serif;
	border: 2px solid #000000;
	width: auto;
	border-radius: 8px;
	-webkit-border-radius: 8px;
	-moz-border-radius: 8px;
	box-shadow: 3px 3px 6px #dddddd;
	-moz-box-shadow: 3px 3px 6px #dddddd;
	-webkit-box-shadow: 3px 3px 6px #dddddd;
}
form fieldset label {
	width: 15%;
	margin-right: 0.5em;
	padding-top: 0.2em;
	text-align: right;
	font-weight: bold;
}
form fieldset legend {
	padding: 0.2em 0.5em;
	color: #000000;
	font-size: 90%;
	text-align: right;
	font-variant: small-caps;
}
.cf {
	border: 1px #353c48 solid;
	background-image: url('../images/form-bg.jpg');
	background-repeat: repeat;
}
.button {
	border:none;
	padding: 12px;
    width: 100px;
    border-radius: 2px;
    background-color: #6F42C1;
    color: #ffffff;
    cursor: pointer;
}
    
.button:hover {
background-color: #9371D1;
}   

input:focus {
	border: 2px solid #993300;
}

/* Prestations */

.section-prestation{
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

.section-prestation__titre{
	text-align: center;
	width: 100%;
}

.section-prestation__conteneur{
	justify-content:left;
	width: 350px;
	display: flex;
    align-items: center;
}
.section-prestation__image{
	text-align: center;
	width: 200px;
}

/* Clients */

/*
.section-client{
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}*/

.liste_clients{
	display: flex;
	flex-wrap: wrap;
}

.liste_client-item{
	width: 100%;
}

@media screen and (min-width: 1000px) {
	.liste_client-item{
		width: 50%;
    }
}

/* Photos */

.flex-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.flex-container &gt; div {
  background-color: #f1f1f1;
  width: 200px;
  margin: 10px;
  text-align: center;
  line-height: 75px;
  font-size: 30px;
}

/* Photos Hover */

.container_photo {
  position: relative;
  width: 50%;
}

.image_photo {
  opacity: 1;
  display: block;
  width: 100%;
  height: auto;
  transition: .5s ease;
  backface-visibility: hidden;
}

.middle_photo {
  width:100%;
  height:100%;
  transition: .5s ease;
  opacity: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  text-align: center;
}

.container_photo:hover .image_photo {
  opacity: 0.3;
}

.container_photo:hover .middle_photo {
  opacity: 1;
}

.text_photo {
  background-color: #8E00ED;
  color: white;
  font-size: 16px;
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  }

/* Videos */

.flex-video {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

.flex-video &gt; div {
  margin: 20px;
}

.video_enfant {
	background-color:black;
}

/* Contact */

.bouton-violet {
	background-color:purple;
}

.languageToggle {

	left:10px;
	font-family: "Lucida Sans Unicode", "Lucida Grande", sans-serif;
	font-weight:100;
	position: relative;
	margin-bottom: -55px;
	top: -50px;
}

.languageToggle ul 
{
	padding-bottom:0;
	margin-bottom:0;

	position:relative;

}
.languageToggle li{
	text-align:right;
	list-style:none;

}

.languageToggle a{
background-color:#6F42C1;
padding:5px 5px;
color:white;
display:inline-block;
width:70px;
}

.languageToggle a:hover{
	background-color:#9371D1;
	text-decoration:none;
	
	}</pre></body></html>