@charset "utf-8";
/*imports*/
@import url(reset.css);
@import "/dev/fontawesome/css/fontawesome.min.css";
@import "/dev/fontawesome/css/brands.min.css";
@import "/dev/fontawesome/css/solid.min.css";
@import url(animations.css);
/*variables*/
/*mixins*/
/*styles*/
body {
  -webkit-tap-highlight-color: transparent;
}
html,
body {
  height: 100%;
  background: #fff;
}
html {
  /*GLOBAL*/
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  font-size: 1em;
  color: #5A6771;
  background: #fff;
  overflow-x: hidden;
  /*FORMULAIRES*/
}
html .mobile {
  display: none;
}
html .center {
  position: relative;
  width: 100%;
  padding-left: 60px;
  padding-right: 60px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
html a {
  text-decoration: none;
  -moz-transition: all 0.2s ease 0s;
  -webkit-transition: all 0.2s ease 0s;
  -o-transition: all 0.2s ease 0s;
  transition: all 0.2s ease 0s;
  outline-style: none !important;
}
html a:hover {
  text-decoration: none;
  -moz-transition: all 0.2s ease 0s;
  -webkit-transition: all 0.2s ease 0s;
  -o-transition: all 0.2s ease 0s;
  transition: all 0.2s ease 0s;
}
html em {
  font-style: italic;
}
html .lightbox {
  display: none;
}
html input:focus,
html select:focus,
html textarea:focus {
  outline-style: none !important;
}
html .featherlight-content {
  width: 450px;
  max-width: 96%;
  margin: 0px !important;
  padding: 10px !important;
  color: #5A6771;
  background: #fff !important;
  text-align: center;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  border-radius: 10px;
  overflow: hidden;
}
html .featherlight-content p {
  padding: 20px;
  color: #000;
  line-height: 1.4em;
}
html .featherlight-content #popup .bloc {
  position: relative;
  display: inline-block;
  width: 100%;
  line-height: 1.4em;
  text-align: center;
  margin-top: 20px;
}
html .featherlight-content #popup .bloc p {
  padding: 0;
}
html .featherlight-content #popup .succes i {
  color: #5A6771;
}
html .featherlight-content #popup .echec i {
  color: #e73233;
}
html .featherlight-content .featherlight-close {
  color: #000;
}
html h1,
html h2,
html h3,
html h4,
html h5,
html h6,
html .titre {
  font-family: "Roboto", sans-serif;
  font-weight: 700;
}
html #promo-content {
  width: 800px;
  background-color: #00829B;
  /* Fond sombre pour plus de contraste */
  color: #5A6771;
  /* Couleur du texte en blanc */
  padding: 0px;
  /* Espacement à l'intérieur de la popup */
  border-radius: 0px;
  /* Bordures arrondies */
  -webkit-box-shadow: 0px 0px 20px #333333;
  -moz-box-shadow: 0px 0px 20px #333333;
  box-shadow: 0px 0px 20px #333333;
  /* Ombre pour donner du relief */
  text-align: center;
  /* Centrer le contenu */
}
html #promo-content .left {
  position: relative;
  overflow: hidden;
  float: left;
  width: 50%;
  height: 300px;
  background: #00829B;
}
html #promo-content .right {
  display: flex;
  align-items: center;
  /* Centre verticalement le contenu */
  justify-content: center;
  /* Centre horizontalement le contenu */
  flex-direction: column;
  float: right;
  width: 50%;
  height: 300px;
  text-align: center;
  background: #fff;
}
html #promo-content .right p {
  padding-left: 20px;
  padding-right: 20px;
  padding-bottom: 10px;
  width: 100%;
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  font-weight: 400;
  line-height: 1.4em;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
html #promo-content .right p b {
  font-weight: 700;
}
html #promo-content .right .promo-button {
  display: inline-block;
  margin-top: 20px;
  padding: 15px;
  background-color: #F58C29;
  /* Couleur d'arrière-plan plus vive */
  color: #fff;
  text-align: center;
  text-decoration: none;
  font-size: 18px;
  /* Taille de police légèrement plus grande */
  font-weight: bold;
  /* Texte en gras pour plus d'impact */
  border-radius: 8px;
  /* Bordures plus arrondies */
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  /* Ajout d'ombre pour donner du relief */
  transition: all 0.3s ease;
  /* Transition douce pour les effets de survol */
  animation: animationFrames linear 1s;
  animation-iteration-count: 4;
  transform-origin: 50% 50%;
  -webkit-animation: animationFrames linear 1s;
  -webkit-animation-iteration-count: 4;
  -webkit-transform-origin: 50% 50%;
  -moz-animation: animationFrames linear 1s;
  -moz-animation-iteration-count: 4;
  -moz-transform-origin: 50% 50%;
  -o-animation: animationFrames linear 1s;
  -o-animation-iteration-count: 4;
  -o-transform-origin: 50% 50%;
  -ms-animation: animationFrames linear 1s;
  -ms-animation-iteration-count: 4;
  -ms-transform-origin: 50% 50%;
}
html #promo-content .right .promo-button:hover {
  background-color: #6AA338;
  /* Changement de couleur au survol */
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
  /* Ombre plus profonde au survol */
  transform: translateY(-3px);
  /* Légère élévation au survol */
}
html #promo-content .right .promo-button:active {
  transform: translateY(0);
  /* Réinitialisation de l'élévation lorsqu'il est cliqué */
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  /* Réinitialisation de l'ombre lorsqu'il est cliqué */
}
html #promo-content img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* Couvre entièrement le div */
  object-position: center;
  /* Centre l'image à l'intérieur du div */
}
html .promo-popup img {
  max-width: 100%;
  height: auto;
}
html header {
  position: fixed;
  z-index: 1000;
  top: 0;
  left: 0;
  float: left;
  width: 100%;
  height: 100px;
  color: #fff;
  background: #5A6771;
  -moz-transition: all 0.2s ease 0s;
  -webkit-transition: all 0.2s ease 0s;
  -o-transition: all 0.2s ease 0s;
  transition: all 0.2s ease 0s;
}
html header .logo {
  float: left;
  margin-top: 25px;
  -moz-transition: all 0.2s ease 0s;
  -webkit-transition: all 0.2s ease 0s;
  -o-transition: all 0.2s ease 0s;
  transition: all 0.2s ease 0s;
}
html header .logo img {
  width: 180px;
  height: auto;
  -moz-transition: all 0.2s ease 0s;
  -webkit-transition: all 0.2s ease 0s;
  -o-transition: all 0.2s ease 0s;
  transition: all 0.2s ease 0s;
}
html header nav {
  float: right;
  position: relative;
  z-index: 1500;
  height: 100%;
  background: #5A6771;
  -moz-transition: all 0.2s ease 0s;
  -webkit-transition: all 0.2s ease 0s;
  -o-transition: all 0.2s ease 0s;
  transition: all 0.2s ease 0s;
}
html header nav ul.niv1 {
  float: left;
  position: relative;
  z-index: 1500;
  width: 100%;
  height: 100px;
  padding-top: 40px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -moz-transition: all 0.2s ease 0s;
  -webkit-transition: all 0.2s ease 0s;
  -o-transition: all 0.2s ease 0s;
  transition: all 0.2s ease 0s;
}
html header nav ul.niv1 li.niv1 {
  float: left;
  position: relative;
  z-index: 1500;
  height: 100%;
}
html header nav ul.niv1 li.niv1 a.niv1 {
  float: left;
  margin-left: 15px;
  margin-right: 15px;
  color: #fff;
  font-size: 1em;
  font-weight: 700;
  text-transform: uppercase;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
html header nav ul.niv1 li.niv1 a.niv1 strong {
  font-weight: 700;
}
html header nav ul.niv1 li.niv1 a.niv1:hover,
html header nav ul.niv1 li.niv1 a.active {
  color: #F58C29;
}
html header nav ul.niv1 li.niv1 ul.niv2 {
  position: absolute;
  z-index: 1500;
  opacity: 0;
  height: 0;
  overflow: hidden;
  top: 60px;
  left: 50%;
  margin-left: -125px;
  float: left;
  width: 250px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -moz-transition: all 0.2s ease 0s;
  -webkit-transition: all 0.2s ease 0s;
  -o-transition: all 0.2s ease 0s;
  transition: all 0.2s ease 0s;
}
html header nav ul.niv1 li.niv1 ul.niv2 li.niv2 {
  float: left;
  width: 100%;
}
html header nav ul.niv1 li.niv1 ul.niv2 li.niv2 a.niv2 {
  float: left;
  width: 100%;
  padding: 15px;
  font-size: 0.9em;
  font-weight: 400;
  color: #5A6771;
  background: #E8EAED;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
html header nav ul.niv1 li.niv1 ul.niv2 li.niv2 a.niv2:hover {
  color: #E8EAED;
  background: #5A6771;
}
html header nav ul.niv1 li.niv1:last-child a.niv1 {
  margin-right: 0px;
}
html header nav ul.niv1 li.niv1:hover ul.niv2 {
  height: auto;
  top: 60px;
  opacity: 0.9;
  -moz-transition: all 0.2s ease 0s;
  -webkit-transition: all 0.2s ease 0s;
  -o-transition: all 0.2s ease 0s;
  transition: all 0.2s ease 0s;
}
html header.scrolled {
  height: 50px;
  -moz-transition: all 0.2s ease 0s;
  -webkit-transition: all 0.2s ease 0s;
  -o-transition: all 0.2s ease 0s;
  transition: all 0.2s ease 0s;
}
html header.scrolled .logo {
  margin-top: 5px;
  -moz-transition: all 0.2s ease 0s;
  -webkit-transition: all 0.2s ease 0s;
  -o-transition: all 0.2s ease 0s;
  transition: all 0.2s ease 0s;
}
html header.scrolled .logo img {
  width: 120px;
  height: auto;
  -moz-transition: all 0.2s ease 0s;
  -webkit-transition: all 0.2s ease 0s;
  -o-transition: all 0.2s ease 0s;
  transition: all 0.2s ease 0s;
}
html header.scrolled nav {
  -moz-transition: all 0.2s ease 0s;
  -webkit-transition: all 0.2s ease 0s;
  -o-transition: all 0.2s ease 0s;
  transition: all 0.2s ease 0s;
}
html header.scrolled nav ul.niv1 {
  height: 50px;
  padding-top: 17px;
  -moz-transition: all 0.2s ease 0s;
  -webkit-transition: all 0.2s ease 0s;
  -o-transition: all 0.2s ease 0s;
  transition: all 0.2s ease 0s;
}
html header.scrolled nav ul.niv1 li.niv1 ul.niv2 {
  top: 32px;
}
html header.scrolled nav ul.niv1 li.niv1:hover ul.niv2 {
  display: inline;
}
html .slideshow {
  float: left;
  position: relative;
  width: 100%;
  padding-top: 100px;
  background: #5A6771;
}
html .slideshow .rslides {
  position: relative;
  z-index: 700;
  list-style: none;
  overflow: hidden;
  width: 100%;
  height: 500px;
  padding: 0;
  margin: 0;
}
html .slideshow .rslides li {
  -webkit-backface-visibility: hidden;
  position: absolute;
  z-index: 800;
  display: inline;
  width: 100%;
  height: 100%;
  overflow: hidden;
  left: 0;
  top: 0;
  -webkit-background-size: cover;
  /* pour anciens Chrome et Safari */
  background-size: cover;
  background-position: center center;
}
html .slideshow .rslides li a {
  float: right;
  margin-top: 5%;
  margin-right: 20%;
  padding: 20px;
  text-decoration: none;
  color: #fff;
  font-weight: 400;
  background: #F58C29;
  -webkit-box-shadow: 0px 0px 20px #333333;
  -moz-box-shadow: 0px 0px 20px #333333;
  box-shadow: 0px 0px 20px #333333;
}
html .slideshow .rslides li a:before {
  font-family: "Font Awesome 6 Pro";
  content: "";
  margin-right: 5px;
  font-size: 1.4em;
}
html .slideshow .rslides li a:hover {
  background: #6AA338;
}
html .slideshow .rslides_nav {
  display: none;
}
html .slideshow .rslides_tabs {
  position: absolute;
  z-index: 700;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: auto;
  text-align: center;
  padding-left: 2px;
  padding-right: 2px;
  background: rgba(90, 103, 113, 0.8);
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  border-radius: 10px;
  overflow: hidden;
}
html .slideshow .rslides_tabs li {
  float: left;
  margin-left: 3px;
  margin-right: 3px;
  margin-bottom: 2px;
}
html .slideshow .rslides_tabs li a {
  text-indent: -9999px;
  overflow: hidden;
  -webkit-border-radius: 99px;
  -moz-border-radius: 99px;
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.4);
  display: inline-block;
  width: 9px;
  height: 9px;
}
html .slideshow .rslides_tabs li.rslides_here a {
  background: #ffffff;
}
html main {
  float: left;
  width: 100%;
  padding-top: 60px;
  padding-bottom: 60px;
}
html #accueil {
  text-align: center;
}
html #accueil .logo {
  padding-bottom: 30px;
  width: 220px;
  height: auto;
}
html #accueil h1 {
  float: left;
  width: 100%;
  padding-bottom: 30px;
  font-size: 1.4em;
  font-weight: 600;
}
html #accueil p {
  float: left;
  width: 100%;
  padding-bottom: 30px;
  font-size: 1em;
  font-weight: 300;
  line-height: 1.4em;
}
html #accueil .blocs {
  float: left;
  width: 100%;
}
html #accueil .blocs .contentblocs {
  float: left;
  width: 100%;
  padding-left: 10%;
  padding-right: 10%;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  align-content: center;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
html #accueil .blocs a {
  flex: 1 1 0;
  width: 0;
  display: inline-block;
  text-transform: uppercase;
}
html #accueil .blocs a img {
  width: 80%;
  padding: 10%;
  height: auto;
  -moz-transition: all 0.2s ease 0s;
  -webkit-transition: all 0.2s ease 0s;
  -o-transition: all 0.2s ease 0s;
  transition: all 0.2s ease 0s;
}
html #accueil .blocs a span.titre {
  display: inline-block;
  color: #5A6771;
  font-size: 1.4em;
  font-weight: 400;
  -moz-transition: all 0.2s ease 0s;
  -webkit-transition: all 0.2s ease 0s;
  -o-transition: all 0.2s ease 0s;
  transition: all 0.2s ease 0s;
}
html #accueil .blocs a:hover {
  color: #F58C29;
}
html #accueil .blocs a:hover img {
  width: 90%;
  padding: 5%;
  height: auto;
  -moz-transition: all 0.2s ease 0s;
  -webkit-transition: all 0.2s ease 0s;
  -o-transition: all 0.2s ease 0s;
  transition: all 0.2s ease 0s;
}
html #accueil .blocs a:hover span.titre {
  top: -250px;
  color: #6AA338;
  -moz-transition: all 0.2s ease 0s;
  -webkit-transition: all 0.2s ease 0s;
  -o-transition: all 0.2s ease 0s;
  transition: all 0.2s ease 0s;
}
html #services h1,
html #produits h1,
html #realisations h1,
html #contact-devis h1,
html #page h1 {
  float: left;
  width: 100%;
  padding-top: 30px;
  padding-bottom: 20px;
  font-weight: 900;
  text-transform: uppercase;
}
html #services h2,
html #produits h2,
html #realisations h2,
html #contact-devis h2,
html #page h2 {
  float: left;
  width: 100%;
  padding-bottom: 30px;
  font-size: 1em;
  font-weight: 600;
  text-transform: uppercase;
  color: #F58C29;
}
html #services h3,
html #produits h3,
html #realisations h3,
html #contact-devis h3,
html #page h3 {
  float: left;
  width: 100%;
  padding-bottom: 30px;
  font-size: 1em;
  font-weight: 600;
  text-transform: uppercase;
  color: #5A6771;
}
html #services h3 strong,
html #produits h3 strong,
html #realisations h3 strong,
html #contact-devis h3 strong,
html #page h3 strong {
  font-weight: 600;
  color: #F58C29;
}
html #services h4,
html #produits h4,
html #realisations h4,
html #contact-devis h4,
html #page h4 {
  font-size: 0.9em;
  font-weight: 400;
  text-transform: uppercase;
  color: #F58C29;
}
html #services p,
html #produits p,
html #realisations p,
html #contact-devis p,
html #page p {
  float: left;
  width: 100%;
  padding-bottom: 30px;
  font-size: 0.9em;
  font-weight: 300;
  line-height: 1.6em;
}
html #services p span.orange,
html #produits p span.orange,
html #realisations p span.orange,
html #contact-devis p span.orange,
html #page p span.orange {
  font-weight: 300;
  color: #F58C29;
}
html #services p strong,
html #produits p strong,
html #realisations p strong,
html #contact-devis p strong,
html #page p strong {
  font-weight: 900;
}
html #services ul,
html #produits ul,
html #realisations ul,
html #contact-devis ul,
html #page ul {
  float: left;
  width: 100%;
  padding-bottom: 40px;
}
html #services ul li,
html #produits ul li,
html #realisations ul li,
html #contact-devis ul li,
html #page ul li {
  float: left;
  position: relative;
  width: 25%;
  padding-left: 35px;
  padding-bottom: 20px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
html #services ul li a,
html #produits ul li a,
html #realisations ul li a,
html #contact-devis ul li a,
html #page ul li a {
  font-size: 0.9em;
  color: #F58C29;
  text-transform: uppercase;
}
html #services ul li a:hover,
html #produits ul li a:hover,
html #realisations ul li a:hover,
html #contact-devis ul li a:hover,
html #page ul li a:hover {
  color: #6AA338;
}
html #services ul li span,
html #produits ul li span,
html #realisations ul li span,
html #contact-devis ul li span,
html #page ul li span {
  font-weight: 300;
  font-size: 0.9em;
}
html #services ul li:before,
html #produits ul li:before,
html #realisations ul li:before,
html #contact-devis ul li:before,
html #page ul li:before {
  float: left;
  position: absolute;
  left: 0;
  top: 0;
  margin-top: -4px;
  margin-right: 15px;
  font-size: 1.4em;
  font-family: "Font Awesome 6 Pro";
  content: "";
  color: #F58C29;
}
html #services ul li.close:before,
html #produits ul li.close:before,
html #realisations ul li.close:before,
html #contact-devis ul li.close:before,
html #page ul li.close:before {
  content: "";
}
html #services ul.liste-produits,
html #produits ul.liste-produits,
html #realisations ul.liste-produits,
html #contact-devis ul.liste-produits,
html #page ul.liste-produits {
  padding-left: 0;
}
html #services ul.liste-produits li,
html #produits ul.liste-produits li,
html #realisations ul.liste-produits li,
html #contact-devis ul.liste-produits li,
html #page ul.liste-produits li {
  width: 300px;
  padding: 10px;
  padding-bottom: 0;
  margin-bottom: 30px;
  margin-right: 30px;
  -webkit-box-shadow: 0px 0px 5px #cccccc;
  -moz-box-shadow: 0px 0px 5px #cccccc;
  box-shadow: 0px 0px 5px #cccccc;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
html #services ul.liste-produits li .image,
html #produits ul.liste-produits li .image,
html #realisations ul.liste-produits li .image,
html #contact-devis ul.liste-produits li .image,
html #page ul.liste-produits li .image {
  float: left;
  position: relative;
  width: 100%;
  height: 250px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}
html #services ul.liste-produits li .image .titre,
html #produits ul.liste-produits li .image .titre,
html #realisations ul.liste-produits li .image .titre,
html #contact-devis ul.liste-produits li .image .titre,
html #page ul.liste-produits li .image .titre {
  position: absolute;
  top: 20px;
  float: left;
  width: auto;
  padding: 5px;
  border-right: 2px solid #aaa;
  border-bottom: 2px solid #aaa;
  font-size: 1.2em;
  font-weight: 700;
  text-align: center;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  align-content: center;
  color: #000;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  overflow: hidden;
  background: #fff;
}
html #services ul.liste-produits li .boutons,
html #produits ul.liste-produits li .boutons,
html #realisations ul.liste-produits li .boutons,
html #contact-devis ul.liste-produits li .boutons,
html #page ul.liste-produits li .boutons {
  float: left;
  width: 100%;
  padding: 10px;
  padding-left: 0;
  padding-right: 0;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
html #services ul.liste-produits li .boutons a,
html #produits ul.liste-produits li .boutons a,
html #realisations ul.liste-produits li .boutons a,
html #contact-devis ul.liste-produits li .boutons a,
html #page ul.liste-produits li .boutons a {
  float: left;
  position: relative;
  width: 100%;
  padding: 15px;
  padding-left: 20px;
  color: #fff;
  text-align: center;
  font-size: 1em;
  font-weight: 400;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
html #services ul.liste-produits li .boutons a i,
html #produits ul.liste-produits li .boutons a i,
html #realisations ul.liste-produits li .boutons a i,
html #contact-devis ul.liste-produits li .boutons a i,
html #page ul.liste-produits li .boutons a i {
  position: absolute;
  top: 10px;
  left: 10px;
  font-size: 1.8em;
  -moz-transition: all 0.2s ease 0s;
  -webkit-transition: all 0.2s ease 0s;
  -o-transition: all 0.2s ease 0s;
  transition: all 0.2s ease 0s;
}
html #services ul.liste-produits li .boutons a.pdf,
html #produits ul.liste-produits li .boutons a.pdf,
html #realisations ul.liste-produits li .boutons a.pdf,
html #contact-devis ul.liste-produits li .boutons a.pdf,
html #page ul.liste-produits li .boutons a.pdf {
  background: #00829B;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
html #services ul.liste-produits li .boutons a.devis,
html #produits ul.liste-produits li .boutons a.devis,
html #realisations ul.liste-produits li .boutons a.devis,
html #contact-devis ul.liste-produits li .boutons a.devis,
html #page ul.liste-produits li .boutons a.devis {
  background: #F58C29;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
html #services ul.liste-produits li .boutons a:hover,
html #produits ul.liste-produits li .boutons a:hover,
html #realisations ul.liste-produits li .boutons a:hover,
html #contact-devis ul.liste-produits li .boutons a:hover,
html #page ul.liste-produits li .boutons a:hover {
  background: #6AA338;
}
html #services ul.liste-produits li .boutons a:hover i,
html #produits ul.liste-produits li .boutons a:hover i,
html #realisations ul.liste-produits li .boutons a:hover i,
html #contact-devis ul.liste-produits li .boutons a:hover i,
html #page ul.liste-produits li .boutons a:hover i {
  margin-left: 5px;
  -moz-transition: all 0.2s ease 0s;
  -webkit-transition: all 0.2s ease 0s;
  -o-transition: all 0.2s ease 0s;
  transition: all 0.2s ease 0s;
}
html #services ul.liste-produits li .documentation,
html #produits ul.liste-produits li .documentation,
html #realisations ul.liste-produits li .documentation,
html #contact-devis ul.liste-produits li .documentation,
html #page ul.liste-produits li .documentation {
  float: right;
  width: 98%;
  margin: 1%;
  border-top: 1px dashed #F58C29;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
html #services ul.liste-produits li .documentation a,
html #produits ul.liste-produits li .documentation a,
html #realisations ul.liste-produits li .documentation a,
html #contact-devis ul.liste-produits li .documentation a,
html #page ul.liste-produits li .documentation a {
  float: left;
  width: 100%;
  padding: 5px;
  margin-top: 5px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
html #services ul.liste-produits li:before,
html #produits ul.liste-produits li:before,
html #realisations ul.liste-produits li:before,
html #contact-devis ul.liste-produits li:before,
html #page ul.liste-produits li:before {
  content: none;
  margin-right: 0;
}
html #services .content,
html #produits .content,
html #realisations .content,
html #contact-devis .content,
html #page .content {
  float: left;
  width: 100%;
}
html #services .content .menu,
html #produits .content .menu,
html #realisations .content .menu,
html #contact-devis .content .menu,
html #page .content .menu {
  width: 20%;
}
html #services .content .menu li,
html #produits .content .menu li,
html #realisations .content .menu li,
html #contact-devis .content .menu li,
html #page .content .menu li {
  width: 100%;
}
html #services .content .encart,
html #produits .content .encart,
html #realisations .content .encart,
html #contact-devis .content .encart,
html #page .content .encart {
  display: none;
  float: right;
  width: 80%;
  padding: 30px;
  margin-bottom: 30px;
  background: #E8EAED;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
html #services .content .encart ul.full,
html #produits .content .encart ul.full,
html #realisations .content .encart ul.full,
html #contact-devis .content .encart ul.full,
html #page .content .encart ul.full {
  padding: 30px;
  padding-bottom: 0;
  color: #fff;
  background: #00829B;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
html #services .content .encart ul.full li,
html #produits .content .encart ul.full li,
html #realisations .content .encart ul.full li,
html #contact-devis .content .encart ul.full li,
html #page .content .encart ul.full li {
  width: 100%;
}
html #services .content .encart ul.full li h4,
html #produits .content .encart ul.full li h4,
html #realisations .content .encart ul.full li h4,
html #contact-devis .content .encart ul.full li h4,
html #page .content .encart ul.full li h4 {
  color: #E8EAED;
}
html #services .content .encart ul.full li:before,
html #produits .content .encart ul.full li:before,
html #realisations .content .encart ul.full li:before,
html #contact-devis .content .encart ul.full li:before,
html #page .content .encart ul.full li:before {
  color: #E8EAED;
  content: "";
}
html #services .content .encart ul.full li:last-child,
html #produits .content .encart ul.full li:last-child,
html #realisations .content .encart ul.full li:last-child,
html #contact-devis .content .encart ul.full li:last-child,
html #page .content .encart ul.full li:last-child {
  padding-bottom: 0px;
}
html #services .slide,
html #produits .slide,
html #realisations .slide,
html #contact-devis .slide,
html #page .slide {
  float: left;
  position: relative;
  width: 100%;
  height: 265px;
  padding-left: 100px;
  padding-right: 100px;
  margin-bottom: 60px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
html #services .slide .prevslide,
html #produits .slide .prevslide,
html #realisations .slide .prevslide,
html #contact-devis .slide .prevslide,
html #page .slide .prevslide {
  float: left;
  position: absolute;
  z-index: 100;
  top: 50%;
  left: 0;
  margin-top: -20px;
  font-size: 3em;
  color: #F58C29;
  cursor: pointer;
}
html #services .slide .nextslide,
html #produits .slide .nextslide,
html #realisations .slide .nextslide,
html #contact-devis .slide .nextslide,
html #page .slide .nextslide {
  float: right;
  position: absolute;
  z-index: 100;
  top: 50%;
  right: 0;
  margin-top: -20px;
  font-size: 3em;
  color: #F58C29;
  cursor: pointer;
}
html #services .slide .slider,
html #produits .slide .slider,
html #realisations .slide .slider,
html #contact-devis .slide .slider,
html #page .slide .slider {
  float: left;
  position: relative;
  z-index: 50;
  width: 100%;
  height: 265px;
  padding-left: 35px;
  padding-bottom: 20px;
  overflow: hidden;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
html #services .slide .slider li,
html #produits .slide .slider li,
html #realisations .slide .slider li,
html #contact-devis .slide .slider li,
html #page .slide .slider li {
  width: 265px;
  height: 265px;
  margin-right: 60px;
  overflow: hidden;
  position: relative;
  background-color: #5A6771;
}
html #services .slide .slider li a,
html #produits .slide .slider li a,
html #realisations .slide .slider li a,
html #contact-devis .slide .slider li a,
html #page .slide .slider li a {
  float: left;
  width: 100%;
  height: 100%;
}
html #services .slide .slider li a img,
html #produits .slide .slider li a img,
html #realisations .slide .slider li a img,
html #contact-devis .slide .slider li a img,
html #page .slide .slider li a img {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  object-fit: cover;
}
html #services .slide .slider li:before,
html #produits .slide .slider li:before,
html #realisations .slide .slider li:before,
html #contact-devis .slide .slider li:before,
html #page .slide .slider li:before {
  content: "";
}
html #contact-devis {
  position: relative;
}
html #contact-devis .left {
  float: left;
  width: 70%;
  max-width: 800px;
}
html #contact-devis #blocaddress {
  float: right;
  width: 200px !important;
  position: absolute;
  right: 30px;
  top: 30px;
}
html #contact-devis address {
  font-size: 0.9em;
  line-height: 1.8em;
  padding-bottom: 20px;
  font-weight: 300;
  border-bottom: 1px solid #5A6771;
}
html #contact-devis address a {
  color: #F58C29;
}
html #contact-devis address a:hover {
  color: #6AA338;
}
html a#side-devis {
  position: fixed;
  z-index: 999;
  bottom: 30px;
  right: 10px;
  width: 150px;
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  text-align: center;
  padding: 5px;
  padding: 20px;
  padding-left: 50px;
  text-decoration: none;
  color: #fff;
  font-weight: 400;
  background: #F58C29;
  -webkit-box-shadow: 0px 0px 20px #333333;
  -moz-box-shadow: 0px 0px 20px #333333;
  box-shadow: 0px 0px 20px #333333;
}
html a#side-devis img {
  position: absolute;
  top: -100px;
  right: 50px;
  width: 80px;
  height: auto;
}
html a#side-devis:before {
  position: absolute;
  left: 20px;
  top: 12px;
  font-family: "Font Awesome 6 Pro";
  content: "";
  margin-right: 5px;
  font-size: 2em;
}
html a#side-devis:hover {
  background: #6AA338;
}
html .nos-partenaires {
  float: left;
  position: relative;
  width: 100%;
  text-align: center;
  color: #F58C29;
  padding-top: 30px;
  padding-bottom: 20px;
  background: #fff;
}
html .nos-partenaires .sep {
  display: inline-block;
  width: 300px;
  border-top: 1px solid #5A6771;
}
html .nos-partenaires h3 {
  float: left;
  width: 100%;
  text-align: center;
  padding-top: 90px;
  padding-bottom: 30px;
  color: #5A6771;
  font-size: 1.8em;
  font-weight: 600;
}
html .nos-partenaires .blocs {
  float: left;
  width: 100%;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  align-content: center;
  padding-bottom: 80px;
}
html .nos-partenaires .blocs div {
  flex: 0 1 calc(33.33% - 80px);
  width: 0;
  display: inline-block;
  text-align: center;
  padding: 40px;
}
html .nos-partenaires .blocs div h4 {
  padding-bottom: 20px;
  font-size: 1.4em;
  font-weight: 600;
}
html .nos-partenaires .blocs div p {
  font-size: 1em;
  font-weight: 300;
  line-height: 1.6em;
}
html .nos-partenaires a {
  display: inline-block;
  padding-top: 2px;
  padding-bottom: 2px;
}
html .nos-partenaires a img {
  height: 50px;
  width: auto;
  max-width: 100%;
  -moz-transition: all 0.2s ease 0s;
  -webkit-transition: all 0.2s ease 0s;
  -o-transition: all 0.2s ease 0s;
  transition: all 0.2s ease 0s;
}
html .nos-partenaires a:hover {
  padding-top: 0px;
  padding-bottom: 0px;
}
html .nos-partenaires a:hover img {
  height: 54px;
  width: auto;
  max-width: 100%;
  -moz-transition: all 0.2s ease 0s;
  -webkit-transition: all 0.2s ease 0s;
  -o-transition: all 0.2s ease 0s;
  transition: all 0.2s ease 0s;
}
html .nos-garanties {
  float: left;
  position: relative;
  width: 100%;
  background: #E8EAED;
  text-align: center;
}
html .nos-garanties h3 {
  float: left;
  width: 100%;
  text-align: center;
  padding-top: 30px;
  padding-bottom: 70px;
  color: #5A6771;
  font-size: 1.8em;
  font-weight: 600;
}
html .nos-garanties .blocs {
  float: left;
  width: 100%;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  align-content: center;
  padding-bottom: 70px;
}
html .nos-garanties .blocs div {
  flex: 1 1 0;
  width: 0;
  display: inline-block;
  text-align: center;
}
html .nos-garanties .blocs div h4 {
  padding-bottom: 20px;
  font-size: 1.4em;
  font-weight: 600;
}
html .nos-garanties .blocs div p {
  font-size: 1em;
  font-weight: 300;
  line-height: 1.6em;
}
html .nos-garanties a {
  display: inline-block;
  padding: 15px;
  margin-bottom: 40px;
  color: #fff;
  font-weight: 300;
  background: #5A6771;
}
html .nos-garanties a:hover {
  background: #F58C29;
}
html footer {
  float: left;
  width: 100%;
  color: #F58C29;
  background: #5A6771;
}
html footer .deco {
  float: left;
  width: 100%;
  height: auto;
}
html footer .top {
  float: left;
  width: 100%;
  padding-top: 75px;
}
html footer .top ul {
  float: left;
  width: 100%;
}
html footer .top ul li {
  float: left;
  width: 25%;
}
html footer .top ul li img {
  width: 225px;
  height: auto;
}
html footer .top ul li .titre {
  float: left;
  width: 100%;
  padding-bottom: 40px;
  text-transform: uppercase;
  color: #fff;
  font-size: 1.2em;
  font-weight: 400;
}
html footer .top ul li address,
html footer .top ul li p,
html footer .top ul li li {
  float: left;
  width: 100%;
  color: #fff;
  font-size: 0.9em;
  line-height: 1.8em;
  font-weight: 300;
}
html footer .top ul li address a,
html footer .top ul li p a,
html footer .top ul li li a {
  color: #fff;
  text-decoration: none;
}
html footer .top ul li address a:hover,
html footer .top ul li p a:hover,
html footer .top ul li li a:hover {
  color: #F58C29;
}
html footer .top ul li ul {
  float: left;
  width: 100%;
}
html footer .top ul li ul li {
  text-transform: uppercase;
}
html footer .top ul li ul li:before {
  font-family: "Font Awesome 6 Pro";
  content: "";
  margin-right: 4px;
  color: #fff;
}
html footer .top ul li iframe {
  float: left;
  width: 100%;
}
html footer .top ul li form section {
  width: 60%;
}
html footer .top ul li form input[type="text"] {
  width: 100%;
}
html footer .top ul li form .btn {
  width: 40%;
  height: 45px;
  padding-top: 0;
  padding-bottom: 0;
}
html footer .top ul li form #newsletter-message {
  float: left;
  width: 100%;
  color: #6AA338;
}
html footer .top ul li form #newsletter-message .error {
  color: #F58C29;
}
html footer .bottom {
  float: left;
  width: 100%;
  padding-top: 75px;
  padding-bottom: 20px;
}
html footer .bottom p {
  float: left;
  width: 100%;
  font-size: 0.9em;
  line-height: 1.8em;
  font-weight: 300;
  color: #fff;
  text-align: center;
}
html footer .bottom p img {
  display: inline-block;
  margin-left: 5px;
  margin-right: 5px;
  height: 20px;
  width: auto;
  margin-bottom: -5px;
}
html footer .bottom p .esr {
  height: 30px;
  margin-bottom: -10px;
}
html footer .bottom p a,
html footer .bottom p button {
  padding: 0;
  border: 0;
  color: #fff;
  text-decoration: none;
  background: transparent;
  cursor: pointer;
}
html footer .bottom p a:hover,
html footer .bottom p button:hover {
  color: #F58C29;
}
html form {
  float: left;
  position: relative;
  width: 100%;
  margin-bottom: 20px;
}
html form section {
  float: left;
  position: relative;
  width: 100%;
  margin-bottom: 25px;
}
html form section.small-left {
  width: 48%;
  margin-right: 2%;
}
html form section.small-right {
  width: 48%;
  margin-left: 2%;
}
html form section.small2-left {
  width: 16%;
  margin-right: 4%;
}
html form section.small3-left {
  width: 38%;
  margin-right: 2%;
}
html form section.small2-right {
  width: 38%;
  margin-left: 2%;
}
html form div.field {
  float: left;
  position: relative;
  width: 100%;
  background: #F1F2F4;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
html form div.field i {
  position: absolute;
  z-index: 500;
  right: 10px;
  top: 15px;
  cursor: pointer;
  color: #00829B;
}
html form input[type="text"],
html form input[type="password"],
html form select,
html form textarea {
  float: left;
  position: relative;
  z-index: 600;
  width: 100%;
  height: 45px;
  padding-left: 5px;
  padding-right: 5px;
  border: 0;
  border-bottom: 1px solid #5A6771;
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  font-size: 1em;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  background: none;
}
html form textarea {
  width: 100%;
  margin-left: 0;
  padding: 20px;
  padding-left: 5px;
  padding-top: 15px;
  height: 80px;
  line-height: 1.2em;
}
html form select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  cursor: pointer;
  color: #5A6771;
}
html form input[type="checkbox"] {
  width: auto;
  cursor: pointer;
}
html form .placeholder {
  position: absolute;
  pointer-events: none;
  font-size: 1em;
  left: 5px;
  top: 13px;
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  font-weight: 600;
  color: #5A6771;
  transition: 0.2s ease all;
}
html form .placeholder strong {
  color: #e73233;
}
html form input:focus ~ .placeholder,
html form input:-webkit-autofill ~ .placeholder,
html form input:not(:placeholder-shown):not(:focus):valid ~ .placeholder,
html form select:focus ~ .placeholder,
html form select:not(:focus):valid ~ .placeholder,
html form input:disabled ~ .placeholder {
  top: 2px;
  left: 5px;
  font-size: 0.6em;
  opacity: 1;
}
html form input:disabled {
  color: #5A6771;
}
html form input.error,
html form select.error {
  color: #e73233;
}
html form div.error {
  position: absolute;
  top: 45px;
  float: left;
  width: 100%;
  height: auto;
  padding-top: 5px;
  padding-bottom: 2px;
  padding-left: 5px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
html form div.error label {
  float: left;
  position: relative;
  width: 100%;
  height: auto;
  text-align: left;
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  font-size: 0.8em;
  color: #e73233;
}
html form div.error label::before {
  content: '🚫';
  padding-right: 5px;
  color: #e73233;
}
html form label {
  cursor: pointer;
  font-family: "Roboto", sans-serif;
  font-weight: 700;
}
html form label a {
  color: #00829B;
}
html form label a:hover {
  color: #5A6771;
}
html form .toggle-password {
  position: absolute;
  right: 20px;
  top: 12px;
  cursor: pointer;
}
html form p.infos {
  float: left;
  width: 100%;
  height: auto;
  padding-top: 2px;
  padding-bottom: 2px;
  padding-left: 14px;
  text-align: left;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
html form .btn {
  float: right;
  border: 0;
  padding-top: 20px;
  padding-bottom: 20px;
  padding-left: 15px;
  padding-right: 15px;
  font-size: 1em;
  color: #fff;
  background: #F58C29;
  cursor: pointer;
  -moz-transition: all 0.2s ease 0s;
  -webkit-transition: all 0.2s ease 0s;
  -o-transition: all 0.2s ease 0s;
  transition: all 0.2s ease 0s;
}
html form .btn:hover {
  background: #6AA338;
  -moz-transition: all 0.2s ease 0s;
  -webkit-transition: all 0.2s ease 0s;
  -o-transition: all 0.2s ease 0s;
  transition: all 0.2s ease 0s;
}
html form p {
  text-align: left;
}
html form p em {
  font-style: normal;
  font-size: 0.8em;
}
html form p em strong {
  color: #e73233;
  font-weight: normal;
}
html section.checkbox label {
  background: none;
}
html section.checkbox div.field {
  background: none;
}
html section.checkbox div.field i {
  position: relative;
  top: initial;
  left: initial;
}
@keyframes animationFrames {
  0% {
    transform: rotate(0deg) scaleX(1) scaleY(1);
  }
  10% {
    transform: rotate(-3deg) scaleX(0.8) scaleY(0.8);
  }
  20% {
    transform: rotate(-3deg) scaleX(0.8) scaleY(0.8);
  }
  30% {
    transform: rotate(3deg) scaleX(1.05) scaleY(1.05);
  }
  40% {
    transform: rotate(-3deg) scaleX(1.05) scaleY(1.05);
  }
  50% {
    transform: rotate(3deg) scaleX(1.05) scaleY(1.05);
  }
  60% {
    transform: rotate(-3deg) scaleX(1.05) scaleY(1.05);
  }
  70% {
    transform: rotate(3deg) scaleX(1.05) scaleY(1.05);
  }
  80% {
    transform: rotate(-3deg) scaleX(1.05) scaleY(1.05);
  }
  90% {
    transform: rotate(3deg) scaleX(1.05) scaleY(1.05);
  }
  100% {
    transform: rotate(0deg) scaleX(1.05) scaleY(1.05);
  }
}
@-moz-keyframes animationFrames {
  0% {
    -moz-transform: rotate(0deg) scaleX(1) scaleY(1);
  }
  10% {
    -moz-transform: rotate(-3deg) scaleX(0.8) scaleY(0.8);
  }
  20% {
    -moz-transform: rotate(-3deg) scaleX(0.8) scaleY(0.8);
  }
  30% {
    -moz-transform: rotate(3deg) scaleX(1.05) scaleY(1.05);
  }
  40% {
    -moz-transform: rotate(-3deg) scaleX(1.05) scaleY(1.05);
  }
  50% {
    -moz-transform: rotate(3deg) scaleX(1.05) scaleY(1.05);
  }
  60% {
    -moz-transform: rotate(-3deg) scaleX(1.05) scaleY(1.05);
  }
  70% {
    -moz-transform: rotate(3deg) scaleX(1.05) scaleY(1.05);
  }
  80% {
    -moz-transform: rotate(-3deg) scaleX(1.05) scaleY(1.05);
  }
  90% {
    -moz-transform: rotate(3deg) scaleX(1.05) scaleY(1.05);
  }
  100% {
    -moz-transform: rotate(0deg) scaleX(1.05) scaleY(1.05);
  }
}
@-webkit-keyframes animationFrames {
  0% {
    -webkit-transform: rotate(0deg) scaleX(1) scaleY(1);
  }
  10% {
    -webkit-transform: rotate(-3deg) scaleX(0.8) scaleY(0.8);
  }
  20% {
    -webkit-transform: rotate(-3deg) scaleX(0.8) scaleY(0.8);
  }
  30% {
    -webkit-transform: rotate(3deg) scaleX(1.05) scaleY(1.05);
  }
  40% {
    -webkit-transform: rotate(-3deg) scaleX(1.05) scaleY(1.05);
  }
  50% {
    -webkit-transform: rotate(3deg) scaleX(1.05) scaleY(1.05);
  }
  60% {
    -webkit-transform: rotate(-3deg) scaleX(1.05) scaleY(1.05);
  }
  70% {
    -webkit-transform: rotate(3deg) scaleX(1.05) scaleY(1.05);
  }
  80% {
    -webkit-transform: rotate(-3deg) scaleX(1.05) scaleY(1.05);
  }
  90% {
    -webkit-transform: rotate(3deg) scaleX(1.05) scaleY(1.05);
  }
  100% {
    -webkit-transform: rotate(0deg) scaleX(1.05) scaleY(1.05);
  }
}
@-o-keyframes animationFrames {
  0% {
    -o-transform: rotate(0deg) scaleX(1) scaleY(1);
  }
  10% {
    -o-transform: rotate(-3deg) scaleX(0.8) scaleY(0.8);
  }
  20% {
    -o-transform: rotate(-3deg) scaleX(0.8) scaleY(0.8);
  }
  30% {
    -o-transform: rotate(3deg) scaleX(1.05) scaleY(1.05);
  }
  40% {
    -o-transform: rotate(-3deg) scaleX(1.05) scaleY(1.05);
  }
  50% {
    -o-transform: rotate(3deg) scaleX(1.05) scaleY(1.05);
  }
  60% {
    -o-transform: rotate(-3deg) scaleX(1.05) scaleY(1.05);
  }
  70% {
    -o-transform: rotate(3deg) scaleX(1.05) scaleY(1.05);
  }
  80% {
    -o-transform: rotate(-3deg) scaleX(1.05) scaleY(1.05);
  }
  90% {
    -o-transform: rotate(3deg) scaleX(1.05) scaleY(1.05);
  }
  100% {
    -o-transform: rotate(0deg) scaleX(1.05) scaleY(1.05);
  }
}
@-ms-keyframes animationFrames {
  0% {
    -ms-transform: rotate(0deg) scaleX(1) scaleY(1);
  }
  10% {
    -ms-transform: rotate(-3deg) scaleX(0.8) scaleY(0.8);
  }
  20% {
    -ms-transform: rotate(-3deg) scaleX(0.8) scaleY(0.8);
  }
  30% {
    -ms-transform: rotate(3deg) scaleX(1.05) scaleY(1.05);
  }
  40% {
    -ms-transform: rotate(-3deg) scaleX(1.05) scaleY(1.05);
  }
  50% {
    -ms-transform: rotate(3deg) scaleX(1.05) scaleY(1.05);
  }
  60% {
    -ms-transform: rotate(-3deg) scaleX(1.05) scaleY(1.05);
  }
  70% {
    -ms-transform: rotate(3deg) scaleX(1.05) scaleY(1.05);
  }
  80% {
    -ms-transform: rotate(-3deg) scaleX(1.05) scaleY(1.05);
  }
  90% {
    -ms-transform: rotate(3deg) scaleX(1.05) scaleY(1.05);
  }
  100% {
    -ms-transform: rotate(0deg) scaleX(1.05) scaleY(1.05);
  }
}
/*# sourceMappingURL=styles.css.map */