/* valeurs par d�faut modifiables dans les sections suivantes */

/* svp, ne touchez jamais aux valeurs par d�faut, merci       */

section.s-overflow /*	div sp�ciale pour scroller en x ou y */ {
  overflow-x: auto;
  overflow-y: auto;
}
div.float-left {
  float: left;
  padding: 1rem;
  width: 49%;
  box-sizing: border-box;
}
div.float-right {
  float: right;
  padding: 1rem;
  width: 49%;
  box-sizing: border-box;
}
div.float-left img,
div.float-right img {
  width: 100%;
  height: auto;
}
div.float-stop {
  clear: both;
}
div.float-fin::after {
  content: '';
  clear: both;
}
div.grille-defaut {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
div.grille-defaut figure {
  margin: 0.5rem; /*	margin des colonnes, donne donc 1rem MINIMUM (0.5rem + 0.5rem) entre 2 colonnes*/
  text-align: center; /* pour centrer l'image et le texte dans la colonne */
  width: 140px; /* 	la largeur minimum est de 100px mais cela d�pend de l'icone ou de l'image,
					du texte � afficher, un titre simple en petit font size, va entrer dans 100px
					on fonctionne en px fixe ici, PAS DE POURCENTAGE*/
  /*width: 270px;	/*	la largeur MAXIMUM pour les cellulaires est de 320px en comptant les marges
					ce qui donne donc un grand maximum de 270px par colonne (1rem = +/- 10px)
					car il faut compter les marges des conteneurs de la grille fix�e au minimum � 1rem
					il est d�sagr�able de refaire tout le style quand il ne r�pond pas aux limites...*/
}
div.grille-defaut img	/* 	il n'est d'usage d'utiliser une image plus grande que 270px dans le flex pour
					avoir un responsive convenable, il faut utiliser un autre mod�le si nous avons
					des images plus larges que 270px, on fonctionne en px fixe ici, PAS DE POURCENTAGE*/ {
}
div.grille-defaut figcaption	/* 	figcaption h�rite de son parent figure. En remettant ici le texte � gauche
						il n'y aura que l'image centr�e dans la colonne
						on fonctionne en px fixe ici, PAS DE POURCENTAGE*/ {
  text-align: left;
}

table.table-defaut {
  border: 1px solid black;
  width: 100%;
}
table.table-defaut th /* header, titre */ {
  border-bottom: 1px solid grey;
  text-align: left;
  vertical-align: middle;
  padding: 8px 15px;
}
table.table-defaut td /* data, cellule */ {
  border-bottom: 1px solid grey;
  padding: 8px 15px;
}
table.table-defaut td img	/* image dans le cellule */ {
  width: 100%;
  max-width: 270px;
  max-height: 200px;
}
/**************************************************************************************************/

/* Dans cette section, vous avez un canevas css de base, prendre une copie et coller � la fin dans l'ordre des pages et des positions */

/* Toutes les sections de la home de m01 � m99, chaque page du menu a une centaine, le premier est m101, le deuxi�me est m201 etc...       */

/* nom de la page et ou de la position en t�te du css */
/******************************************************/
section.m00 {
  padding: 1rem;
}
section.m00 header {
}
section.m00 header h1 {
}
section.m00 header hr {
  width: 50%;
  margin: 0 auto;
  color: pink;
}
z

/***********************************  mentions l�gales - politique de confidentialit� - Conditions g�n�rales de vente *****************************/
div.legal {
  padding: 1rem; /*	padding par d�faut */
}

/*	la div h00 sert au titre si on a besoin de plusieurs balises dans la partie titre, sinon la h seule*/

div.legal h1 {
  font-size: ;
  line-height: ; /*	<= font-size + padding */
}
div.legal h2 {
}
div.legal hr {
  width: 50%;
  margin: 0 auto;
  color: pink;
}
/************************************************************************************************************
			V o t r e		c o d e		v a		�	p a r t i r		d ' i c i			
Prenez une copie du mod�le00 m00 float00 grille00 table00 etc... et copiez le code ici � la fin
Incr�mentez le mod�le m01 float01 etc... aux noms de balises de votre copie et codez
/****************************************************************************************************************/

/* FOOTER style CGV + mentions légales + politique. */
/*mentions légales */
div.habillage {
  padding: 1rem;
  margin-top: 2rem;
  line-height: 2.1rem;
}
div.habillage * {
  margin: 2rem 0;
}
div.habillage strong {
  font-size: 2.5rem;
}
section.m01 {
  padding: 1rem;
  text-align: right;
  padding-top: 3rem;
}
section.m01 a {
  padding: 0.7rem 2rem;
  border-radius: 5px;
  background-color: #d62f44;
  color: white;
  border: solid 2px #d62f44;
  transition: 0.5s;
}
section.m01 a:hover {
  background-color: white;
  color: #d62f44;
}

section.m07,
section.m08,
section.m09 {
  padding: 1rem;
  text-align: center;
  color: white;
}
section.m07 a,
section.m08 a,
section.m09 a {
  color: white;
}

/*********************************************************************************************************************************************************/
/* Canevas css des r�alisations */
section.m200 {
  padding: 1rem;
  text-align: center;
}
section.m200 header {
  margin: 0px 0px 4rem 0px !important;
  line-height: 3.5rem;
  padding: 0 20rem;
  padding-top: 2rem;
}
section.m200 header h2 {
  margin: 3rem auto;
  margin-bottom: 0;
}
section.m200 header a {
  padding: 0.7rem 2rem;
  border-radius: 5px;
  background-color: #d62f44;
  color: white;
  border: solid 1px #d62f44;
  font-family: 'poppins-semibold';
  transition: 0.5s;
}
section.m200 header a:hover {
  color: #d62f44;
  background-color: white;
}
section.m200 header a.lien-desactiver:hover {
  background-color: #d62f44;
  color: white;
  cursor: default;
}
section.m200 div.sous200b {
  margin-top: 10rem;
  position: relative;
  z-index: 1;
}
section.m200 div.sous200b::after {
  position: absolute;
  z-index: -1;
  content: '';
  background-color: #32394b;
  right: 30px;
  top: -50px;
  width: 25%;
  height: 500px;
}
section.m200 div.sous200b img {
  width: 90%;
  height: auto;
  margin: 0px 0px 4rem 0px;
  box-shadow: 0px 4px 12px #31394b34;
}
div.sous200b::before {
  background-color: #f3f3f4;
  position: relative;
}
div.float200c {
  padding: 0 7rem;
}
div.float200c hr {
  width: 80px;
  color: #d62f44;
  border: 2px solid #d62f44;
  background-color: #d62f44;
  margin: 1rem 0px 2rem 0px;
}
div.float200c div.float-left {
  text-align: left;
  line-height: 2.5rem;
  border: 1px solid white;
  box-shadow: 0px 4px 12px #31394b34;
  background-color: white;
  padding: 4.5rem 4rem;
  width: 65%;
  min-height: fit-content;
  overflow: hidden;
}
div.float200c div.float-left h3 {
  font-family: 'poppins-bold';
}
div.float200c div.float-right {
  text-align: left;
  border: 1px solid white;
  box-shadow: 0px 4px 12px #31394b34;
  padding: 2rem 4rem;
  background-color: white;
  margin: 1rem 0rem 1rem 0;
  width: 30%;
  min-height: fit-content;
  overflow: hidden;
}
div.float200c div.float-right h4 {
  color: #2c3351;
}
div.float200d {
  font-family: 'poppins-regular';
  display: table;
  margin: 6rem auto;
  margin-bottom: 0;
}
div.float200d hr {
  width: 60px;
  color: #d62f44;
  border: 2px solid #d62f44;
  background-color: #d62f44;
  margin: 0px 0px 2rem 0px;
}
div.float200d h3 {
  font-size: 2.5rem;
  line-height: 3rem;
  font-family: 'poppins-bold';
  margin-top: 0.5rem;
  margin-bottom: -1rem;
  border-bottom: 4px solid #d62f44;
  width: fit-content;
}
div.float200d div.float-left {
  text-align: left;
  padding: 2rem;
  padding-right: 10rem;
  line-height: 3rem;
}
div.float200d div.float-left,
div.float200d div.float-right {
  width: fit-content;
}
div.float200d div.float-left:before {
  content: url('../../../images/tmpl/realisations-fonctionnalites.jpg');
  position: relative;
  padding: 7rem;
}
div.float200d div.float-right {
  text-align: left;
  line-height: 3rem;
  padding: 2rem;
  padding-left: 10rem;
  border-left: 2px solid #2c3351;
}
div.float200d div.float-right:before {
  position: relative;
  padding: 4rem;
  content: url('../../../images/tmpl/realisations-prestations.jpg');
}

/********TEST CENTRER*********/

div.sous200e {
  margin: 1rem auto 5rem auto;
  display: table;
}
div.sous200e a {
  padding: 0.7rem 2rem;
  border-radius: 5px;
  background-color: #d62f44;
  color: white;
  border: solid 1px #d62f44;
  font-family: 'poppins-semibold';
  transition: 0.5s;
  white-space: nowrap;
  line-height: 5rem;
}
div.sous200e a:hover {
  color: #d62f44;
  background-color: white;
}
/**************************************************************************************************************************************************************/
section.m301 {
  margin-top: 9rem;
  padding: 1rem;
}
section.m301 h2 {
  font-size: 3.5rem;
}
div.float301b {
  background-color: #f3f3f4;
  padding-top: 2rem;
  padding-left: 1rem;
  padding-bottom: 3rem;
}
div.float301b div.float-left {
  padding: 2rem 0 2rem 4rem;
  width: 62%;
}
div.float301b div.float-right {
  padding: 0;
  width: 34%;
}
div.float301b div.float-right img {
  max-width: 428px;
  max-height: 520px;
  position: relative;
  top: -7rem;
}
div.float301c {
  background-color: #f3f3f4;
  padding-top: 2rem;
  padding-left: 2rem;
  padding-bottom: 3rem;
  max-height: 620px;
  margin-top: 13rem;
}
div.float301c div.float-right {
  padding: 2rem;
  padding-right: 12rem;
  width: 66%;
}
div.float301c div.float-left {
  padding-left: 2rem;
  width: 33%;
}
div.float301c div.float-left img {
  width: 100%;
  position: relative;
  top: -7rem;
}
div.float301d {
  margin-top: 4rem;
}
div.float301d div.float-left {
  padding: 2rem;
  width: 48%;
}
div.float301d div.float-right {
  padding: 2rem;
  width: 48%;
}
div.float301d div.float-left img,
div.float301d div.float-right img {
  width: 80%;
  margin-left: 4rem;
}
div.float301d li {
  padding-top: 2rem;
}
div.float301d li::marker {
  font-size: 2.4rem;
}

/* //////////////////////////////////////////////////////   MAGIRIS - EDWIN ///////////////////////////////////////////////// */ /* ////////////////////////////////////////////////////// HOME - SLIDER - EDWIN ///////////////////////////////////////////////// */
section.mslider01 header p {
  font-size: 4rem;
  line-height: 5rem;
}

/* //////////////////////////////////////////////////////  HOME - M02 - EDWIN ///////////////////////////////////////////////// */
/* //////////////////////////  Header ///////////////////// */

section.m02 {
  padding: 1rem;
  padding-bottom: 10rem;
  color: #333333;
}
section.m02 header {
  font-size: 2.5rem;
  line-height: 2.5rem;
  margin-bottom: 2rem;
  color: #31394b;
  font-family: 'poppins-regular';
}
section.m02 header h1 {
  margin-top: 3rem;
  margin-bottom: 4rem;
  font-size: 4.5rem;
  word-spacing: 0.5rem;
}
section.m02 header b {
  font-family: 'poppins-bold';
}

/* //////////////////////////  Grille ///////////////////// */

div.grille02b {
  margin-top: 3rem;
}
div.grille02b img {
  padding-top: 3rem;
  width: 315px;
  height: 250px;
  transition: all 0.5s;
}
div.grille02b img:hover {
  width: 345px;
  height: 280px;
  filter: drop-shadow(10px 10px 4px rgb(0, 0, 0, 0.2));
}
div.grille02b figure {
  width: 370px;
  min-height: 480px;
  margin: 1rem;
  padding-left: 2rem;
  padding-right: 2rem;
  background-color: white;
  box-shadow: 2px 2px 10px #80808057;
}
div.grille02b figure figcaption {
  width: 250px;
  text-align: center;
  color: #333333;
}
div.grille02b figure figcaption h5 {
  color: #2d3452;
}
div.grille02b figure a {
  color: black;
  font-size: 1.4rem;
}
div.grille02b figure a h5 {
  font-size: 1.8rem;
  font-family: 'poppins-bold';
}
div.m02b {
  display: flex;
  align-items: center;
}
div.m02b p span {
  font-weight: bold;
}
div.m02b img {
  height: 3px;
  margin-right: 2.2rem;
}

/* //////////////////////////////////////////////////////  HOME - M03 - EDWIN ///////////////////////////////////////////////// */

section.m03 {
  padding: 1rem 0rem 4rem 0rem;
  text-align: center;
}
section.m03 header {
  font-size: 2rem;
  line-height: 2.5rem;
  margin-top: 3rem;
  margin-bottom: 2rem;
  color: #2d3452;
  font-family: 'poppins-bold';
}
section.m03 header h2 {
  margin-top: 3rem;
  margin-bottom: 1rem;
  font-size: 4.5rem;
  line-height: 5.5rem;
}

/* //////////////////////////////////////////////////////  HOME - M04 - EDWIN ///////////////////////////////////////////////// */

section.m04 {
  padding: 2rem;
  text-align: center;
  color: white;
}
section.m04 header {
  margin-bottom: 3rem;
  margin-top: 5rem;
}
section.m04 header h2 {
  margin: 0;
  color: #efe2d9;
}
section.m04 div {
  margin: 0 auto;
  margin-bottom: 7rem;
}
section.m04 div p:first-child {
  margin: 0 auto;
  width: 50%;
  line-height: 3.5rem;
}
section.m04 div p:last-child {
  margin-top: -5rem;
  width: 100% !important;
}
section.m04 a {
  padding: 0.7rem 3rem;
  border: 2px solid #d62f44;
  border-radius: 40px;
  background-color: #d62f44;
  color: white;
  transition: 0.5s;
  font-family: 'poppins-semibold';
}
section.m04 a:hover {
  background-color: #efe2d9;
  color: #2d3452;
  border: 2px solid #efe2d9;
}

/* //////////////////////////////////////////////////////  HOME - M06 - EDWIN ///////////////////////////////////////////////// */

section.m06 {
  margin-bottom: 1rem;
  padding: 1rem;
  text-align: center;
}
section.m06 header {
  font-size: 2rem;
  line-height: 2.5rem;
  margin-bottom: 3rem;
  color: #2d3452;
  font-family: 'poppins-bold';
}
section.m06 header h2 {
  margin-top: 3rem;
  margin-bottom: 2rem;
  font-size: 4.5rem;
}

/* //////////////////////////////////////////////////////  HOME M07 EDWIN ///////////////////////////////////////////////// */

section.m07 a {
  padding: 1rem 3rem;
  border: 1px solid white;
  border-radius: 40px;
  background-color: white;
  color: black;
  transition: 0.5s;
}
section.m07 a:hover {
  background-color: transparent;
  color: white;
}

/* //////////////////////////////////////////////////////  HOME - M09 - EDWIN ///////////////////////////////////////////////// */

section.m09 {
  margin-top: -1rem;
}

/* //////////////////////////////////////////////////////  HOME - M11 - EDWIN ///////////////////////////////////////////////// */

section.m11 {
  padding: 1rem;
  margin-top: 3rem;
  margin-bottom: 4rem;
  text-align: center;
  color: #2d3452;
  font-size: 2rem;
  font-family: 'poppins-regular';
}
section.m11 header {
  margin-bottom: 2rem;
}
section.m11 header h2 {
  font-size: 5rem;
}
section.m11 a {
  color: black;
}

/* //////////////////////////////////////////////////////  EXPERTISES - CONSEIL - STRATEGIE DIGITALE 102 ///////////////////////////////////////////////// */

section.m102 {
  padding: 1rem;
  margin: 5rem 0;
}
section.m102 header {
  margin-bottom: 3rem;
  text-align: center;
}
section.m102 h2 {
  margin-bottom: 2rem;
}
section.m102 div.sous102 {
  width: 75%;
  margin: 0 auto;
  text-align: center;
  margin-bottom: 12rem;
}
div.float102b div.float-right {
  text-align: center;
}
div.float102b div.float-left img,
div.float102b div.float-right img {
  max-width: 440px;
}
div.float102c {
  background-color: #f3f3f4;
  padding: 2rem;
  padding-bottom: 0;
  margin-top: 10rem;
}
div.float102c div.float-right {
  padding: 2rem;
  width: 57%;
}
div.float102c div.float-left {
  padding: 0rem;
  width: 37%;
}
div.float102c div.float-left img {
  max-height: 600px;
  position: relative;
  top: -8rem;
  margin-left: 3rem;
}

/* //////////////////////////////////////////////////////  EXPERTISES - IDENTITE VISUELLE 103 ///////////////////////////////////////////////// */

section.m103 {
  padding: 1rem;
  margin: 5rem 0;
}
section.m103 header {
  text-align: center;
}
section.m103 header h2 {
  margin-bottom: 2.5rem;
}
section.m103 div.sous103 {
  width: 75%;
  margin: 0 auto;
  margin-bottom: 12rem;
  text-align: center;
}
div.float103b {
  background-color: #f3f3f4;
  padding: 2rem;
}
div.float103b div.float-left {
  padding-left: 4rem;
  padding-top: 7rem;
  width: 60%;
}
div.float103b div.float-left h2 {
  margin-bottom: 1rem;
}
div.float103b div.float-left div.sous103b {
  color: #25ba8c;
  font-family: 'poppins-semibold';
  margin-bottom: 2rem;
}
div.float103b div.float-right {
  padding: 0;
  width: 40%;
}
div.float103b div.float-left img,
div.float103b div.float-right img {
  width: 90%;
  max-height: 1060px;
  position: relative;
  top: -8rem;
}
section.m103 header.m103c {
  margin-top: 6rem;
  margin-bottom: 4rem;
  color: #25ba8c;
  font-family: 'poppins-semibold';
}
section.m103 header.m103c h2 {
  margin-bottom: 1rem;
}
div.float103c div.float-left img,
div.float103c div.float-right img {
  max-width: 440px;
}
div.float103c {
  padding-top: 2rem !important;
}
div.float103c div.float-right {
  padding-top: 7rem;
}
div.float103c div.float-right h2 {
  margin-bottom: 1rem;
}
div.float103c div.float-right div.sous103c {
  color: #25ba8c;
  font-family: 'poppins-semibold';
  margin-bottom: 2rem;
}
section.m103 div.sous-m103d {
  margin: 2rem auto;
}

/* //////////////////////////////////////////////////////  EXPERTISES - CREATION SITE WEB 104 ///////////////////////////////////////////////// */
section.m104 {
  padding: 2rem;
}
section.m104 header {
  text-align: center;
  margin-top: 8rem;
  margin-bottom: 6rem;
}
section.m104 h3 {
  margin-bottom: 3rem;
}
section.m104 h3 span.chiffre {
  color: #e0e1e5;
  font-size: 6rem;
  margin-right: 2rem;
}
section.m104 div.contenu {
  padding: 4rem;
}
div.float104c,
div.float104d,
div.float104e,
div.float104f,
div.float104g,
div.float104h {
  margin-top: 4rem;
}
div.m104a {
  margin-top: 2rem;
  margin-bottom: 2rem;
}
div.sous104c p {
  margin-top: 14rem;
  text-align: center;
  color: #333333;
  font-family: 'poppins-semibold';
  font-size: 2rem;
  line-height: 3rem;
}

/* ///////////// Tous les floats right and left /////////////// */

section.m104 div.float104c div.float-right,
section.m104 div.float104c div.float-left,
section.m104 div.float104d div.float-left,
section.m104 div.float104d div.float-right,
section.m104 div.float104e div.float-right,
section.m104 div.float104e div.float-left,
section.m104 div.float104f div.float-left,
section.m104 div.float104f div.float-right,
section.m104 div.float104g div.float-right,
section.m104 div.float104g div.float-left,
section.m104 div.float104h div.float-left,
section.m104 div.float104h div.float-right {
  padding: 0;
  height: 370px;
  display: flex;
}
section.m104 img.imageToutes {
  padding: 0;
  max-height: 370px;
  object-fit: contain;
  right: 0;
  object-position: top;
}
section.m104 img.imageIpad {
  padding: 0;
  max-height: 700px;
  object-fit: contain;
  right: 0;
  object-position: top;
  display: none;
}
section.m104 div.float104c div.float-left div.contenu,
section.m104 div.float104e div.float-left div.contenu,
section.m104 div.float104g div.float-left div.contenu {
  align-self: flex-end;
  margin-right: 4rem;
  box-shadow: 2px 5px 12px #00000029;
  border-radius: 12px;
  background-color: white;
}
section.m104 div.float104d div.float-right div.contenu,
section.m104 div.float104f div.float-right div.contenu,
section.m104 div.float104h div.float-right div.contenu {
  align-self: flex-start;
  margin-left: 4rem;
  box-shadow: 2px 5px 12px #00000029;
  border-radius: 12px;
  background-color: white;
}

/* //////////////////////////  01 - Pré-Design ///////////////////// */
section.m104 div.float104c div.float-left {
  background-image: url('../../../images/tmpl/magiris-bg-bleu.jpg');
  background-size: 35% 50%;
  background-repeat: no-repeat;
  background-position: right top;
}

/* //////////////////////  02 - Identité Visuelle ///////////////// */
section.m104 div.float104d div.float-right {
  background-image: url('../../../images/tmpl/magiris-bg-bleu.jpg');
  background-size: 35% 45%;
  background-repeat: no-repeat;
  background-position: left bottom;
}

/* //////////////////////////  03 - WebDesign ///////////////////// */
section.m104 div.float104e div.float-left {
  background-image: url('../../../images/tmpl/magiris-bg-bleu.jpg');
  background-size: 35% 55%;
  background-repeat: no-repeat;
  background-position: right top;
}

/* //////////////////////  04 - Pré-production /////////////////// */
section.m104 div.float104f div.float-right {
  background-image: url('../../../images/tmpl/magiris-bg-bleu.jpg');
  background-size: 35% 45%;
  background-repeat: no-repeat;
  background-position: left bottom;
}

/* ////////////////////  05 - Lancement du site ////////////////// */
section.m104 div.float104g div.float-left {
  background-image: url('../../../images/tmpl/magiris-bg-bleu.jpg');
  background-size: 35% 45%;
  background-repeat: no-repeat;
  background-position: right top;
}

/* ///////////////////  06 - Référencement - SEO ////////////////// */
section.m104 div.float104h div.float-right {
  background-image: url('../../../images/tmpl/magiris-bg-bleu.jpg');
  background-size: 35% 55%;
  background-repeat: no-repeat;
  background-position: left bottom;
}

/* //////////////////////////////////////////////////////  EXPERTISES - REFONTE DE SITES 105 ///////////////////////////////////////////////// */

section.m105 {
  padding: 1rem;
  text-align: center;
}
section.m105 header h2 {
  margin: 4rem 0;
  font-size: 4.5rem;
}
section.m105 header p {
  margin-bottom: 3rem;
  color: #25ba8c;
  font-family: 'poppins-semibold';
  text-align: center;
}
section.m105 hr {
  width: 60px;
  color: #2d3452;
  border: 2px solid #2d3452;
  background-color: #2d3452;
  margin: 0px 0px 3rem 0px;
}
section.m105 div.sous105c {
  margin: 6rem 0px 3rem 0px;
}
div.grille105b figure {
  margin: 1rem;
  text-align: left;
  width: 370px;
  border-radius: 10px;
  box-shadow: 2px 2px 10px #80808057;
  padding: 2rem;
}
div.grille105b h3 {
  font-size: 2.4rem;
  line-height: 3rem;
  font-family: 'poppins-bold';
  color: #2d3452;
  padding-bottom: 0.3rem;
}
div.grille105b img {
  padding: 1rem;
}
div.grille105b figcaption {
  padding: 1rem;
}
div.sous105c div.sous105c1 {
  line-height: 3.5rem;
  margin-bottom: 4rem;
}
div.sous105c div.sous105c2 {
  line-height: 3.5rem;
  width: 60%;
  margin: 0 auto;
}

/* ////////////////////////////////////////////////////// EXPERTISES - SEO MARKETING DIGITAL 106 ///////////////////////////////////////////////// */

section.m106 {
  margin-top: 6rem;
  padding: 1rem;
}
section.m106 header p {
  color: #25ba8c;
  font-family: 'poppins-semibold';
  margin: 0px 0px 3rem 0px;
}
section.m106 h2 {
  margin: 0px 0px 1rem 0px;
}
div.float106b div.float-left {
  width: 52%;
}
div.float106b div.float-right {
  width: 40%;
  padding-right: 4rem;
}
div.float106b div.float-left img,
div.float106b div.float-right img {
  width: 100%;
}
div.float106c {
  background-color: #f3f3f4;
  margin: 14rem 0px 2rem 0px;
  max-height: 510px;
}
div.float106c div.float-left {
  padding: 0;
  width: 40%;
}
div.float106c div.float-left img {
  position: relative;
  top: -8rem;
  margin: 0px 4rem 0px 5rem;
}
div.float106c div.float-right {
  width: 52%;
  margin: 4rem 0 0 0;
  padding: 0 10rem 0 0;
}
div.float106c div.float-left img,
div.float106c div.float-right img {
  width: 100%;
}

/* ////////////////////////////////////////////////////// EXPERTISES - SERVICES WEB ///////////////////////////////////////////////// */

div.float106d {
  margin: 6rem 0px 2rem 0px;
}
div.float106d header h2 {
  margin: 0rem 0px 2rem 0px;
}
div.float106d div.float-right {
  padding: 9rem;
  padding-top: 0;
}
div.float106e {
  background-color: #f3f3f4;
  margin: 4rem 0px 2rem 0px;
  max-height: 460px;
}
div.float106e img {
  width: 100%;
  position: relative;
  top: -8rem;
  margin: 0px 4rem 0px 5rem;
}
div.float106e div.float-right {
  margin: 5rem 0px 0px 0px;
  padding: 0px 8rem 0rem 2rem;
  width: 52%;
}
div.float106e div.float-left {
  width: 40%;
  padding: 0;
  margin-left: 2rem;
}
div.float106e1 {
  background-color: #f3f3f4;
  margin: 4rem 0px 4rem 0px;
}
div.float106e1 img {
  width: 100%;
  position: relative;
  top: -8rem;
  margin: 0px 4rem 0px 5rem;
}
div.float106e1 div.float-right {
  margin: 9rem 0px 0px 0px;
  padding: 0px 8rem 0rem 2rem;
  width: 52%;
}
div.float106e1 div.float-left {
  width: 40%;
  padding: 0;
  margin-left: 2rem;
}

/* ////////////////////////////////////////////////////// EXPERTISES - SERVICES WEB EDWIN ///////////////////////////////////////////////// */

div.float106c div.float-left div.contenu2 {
  color: #31394b;
  position: relative;
  z-index: -999999999;
  top: -52rem;
  right: -11%;
}

/* //////////////////////////////////////////////////////// REALISATIONS - M03a /////////////////////////////////////////////////////////// */

div.fullScreenButton {
  display: block;
}
div.responsiveScreenButton {
  display: none;
}
section.m03a {
  text-align: center;
  padding: 8rem 0;
}
section.m03a div.fullScreenButton a {
  color: white;
  background: #d62f44;
  border-radius: 40px;
  border: 2px solid #d62f44;
  font-family: 'poppins-semibold';
  transition: 0.5s;
  font-size: 1.6rem;
  padding: 1rem 3rem;
}
section.m03a div.fullScreenButton a:hover {
  background: white;
  color: #d62f44;
}

/* ///////////////////////////////////////////////////////// BLOG ///////////////////////////////////////////////////////////////// */

/* #maincontent > div.inner {
  padding: 2rem;
} */
/* /////////////////////////////////////////////////// CONTACT - FORMULAIRE /////////////////////////////////////////////////////// */

div.b80contactw {
  margin-bottom: 3rem;
}
div.cf-text-left {
  text-align: center;
}

#b80contacti div.clearfix {
  display: flex;
  justify-content: center;
}
#b80contacti div.clr {
  display: none;
}
/* ///////////////////////////////////////////////////////// TESTS /////////////////////////////////////////////////////////////// */
