html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

header {
  margin: auto;
  width: 90%;
  position: fixed;
  top: 0px;
  background-color: white;
  padding: 10px 60px;
  z-index: 1000;
}
header nav {
  padding: 10px 20px;
  justify-content: space-between;
  align-items: center;
  display: flex;
}
header nav img.logo {
  width: 70%;
}
header nav .row {
  gap: 30px;
  align-items: center;
}
header nav .row a.link, header nav .row #deroulant {
  background-color: white;
  border: none;
  color: #191A23;
  font-family: "Barlow Condensed", "Sans serif";
  font-size: 18px;
  text-decoration: none;
  font-weight: 500;
  padding: 0px;
  cursor: pointer;
  background-image: linear-gradient(to right, #DDFC63, #DDFC63);
  background-position: top 80% left 100%;
  background-repeat: no-repeat;
  background-size: 0% 47%;
}
header nav .row a.link:hover, header nav .row #deroulant:hover {
  transition: 350ms;
  background-size: 95% 47%;
}
header nav .row a.link img, header nav .row #deroulant img {
  margin-left: 10px;
}
header nav .row a.link img.rotate, header nav .row #deroulant img.rotate {
  transform: rotate(180deg);
  transition: 200ms;
}
header nav a.btn-primary {
  font-family: "Yeseva One", "Serif";
  color: #57549F;
  text-align: center;
  text-transform: uppercase;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  text-decoration: none;
  display: flex;
  padding: 8px 30px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 10px;
  border: 1px solid #DDFC63;
  background: #DDFC63;
}
header nav a.btn-primary:hover {
  border-radius: 10px;
  border: 1px solid #191A23;
  background: #DDFC63;
}
header #burger, header #croix {
  display: none;
}
header #menuderoulant {
  display: none;
}
header #menuderoulant.ouvert {
  position: fixed;
  background: white;
  padding: 30px;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  border: 1px solid #191A23;
  gap: 30px;
  margin-top: 20px;
}
header #menuderoulant.ouvert a {
  font-size: 16px;
}

@media screen and (max-width: 800px) {
  header {
    width: calc(100% - 20px);
    padding: 10px;
  }
  header button {
    background-color: rgb(255, 255, 255);
    border: none;
    padding: 0px;
  }
  header ul.row {
    flex-direction: column;
    padding: 30px;
    width: 70%;
    align-items: flex-start;
  }
  header #burger, header #croix {
    display: block;
    cursor: pointer;
  }
  header #menu {
    display: none;
  }
  header #menuderoulant.ouvert {
    position: static;
    padding: 10px 30px;
  }
  header #menu.open {
    display: flex;
    flex-direction: column;
    background-color: #ffffff;
    z-index: 50;
    position: absolute;
    left: 0;
    top: 10px;
    width: calc(100% - 60px);
    align-items: flex-end;
    padding: 30px;
    border-radius: 10px;
    border: 1px solid #191A23;
    box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.08);
  }
}
@media screen and (max-width: 460px) {
  header {
    width: calc(100% - 20px);
    padding: 10px;
  }
  header #menu.open {
    display: flex;
    flex-direction: column;
    background-color: #ffffff;
    z-index: 50;
    position: absolute;
    left: 0;
    top: 10px;
    width: calc(100% - 60px);
    align-items: flex-end;
    padding: 30px;
    border-radius: 10px;
    border: 1px solid #191A23;
    box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.08);
  }
}
.hero .texte {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  gap: 15px;
}

.services {
  gap: 15px;
}
.services h2 {
  width: 40%;
}

.block-gris {
  background-color: #F3F3F3;
  position: relative;
  border-radius: 5px;
  padding: 30px 60px;
}
.block-gris p {
  width: 60%;
}
.block-gris img {
  position: absolute;
  right: 60px;
  bottom: -10%;
  width: 30%;
}

.processus h2 {
  width: 50%;
}

.lequipe h2 {
  width: 35%;
}
.lequipe .team {
  justify-content: space-around;
}

.form-contact h2 {
  width: 50%;
}

.rs path.white {
  fill: white;
}
.rs path {
  fill: #191A23;
}
.rs path:hover {
  fill: #DDFC63;
}

@media screen and (max-width: 480px) {
  .home .row {
    flex-direction: column;
  }
  .home .row .texte {
    gap: 30px;
  }
  .home .services h2, .home .block-gris p, .home .processus h2, .home .lequipe h2, .home .form-contact h2 {
    width: 100%;
  }
  .home .services h2, .home .processus h2, .home .lequipe h2, .home .form-contact h2 {
    margin-bottom: 30px;
  }
  .home .processus .accordion h2 {
    margin-bottom: 0px;
  }
  .home .block-gris img {
    position: absolute;
    right: -10px;
    bottom: -10%;
    width: 40%;
    transform: rotate(308deg);
  }
  .home .accordeon .accordion .row, .home .equipe .row, .home .checkbox.row {
    flex-direction: row;
  }
}
.section-realisations h2 {
  margin-bottom: 30px;
}

.filtres {
  margin-top: 30px;
}
.filtres select#filtre-select {
  padding: 10px 100px 10px 10px;
  border-radius: 8px;
  font-family: "Barlow Condensed", "Sans serif";
  font-size: 16px;
}

.w50 {
  width: calc(50% - 15px);
}

.w65 {
  width: calc(65% - 15px);
}

.w35 {
  width: calc(35% - 15px);
}

h2.description, h3.description {
  margin-top: 30px;
}

.tac {
  text-align: center;
}

h2.tac {
  margin-top: 15px;
}

.black {
  font-family: "Barlow Condensed", "Sans serif";
  color: #191A23;
}
.black:hover {
  color: #DDFC63;
}

.container ul {
  list-style: inside;
  font-family: "Barlow Condensed", "Sans serif";
}
.container ul li::marker {
  color: #DDFC63;
}

@media screen and (max-width: 480px) {
  .container {
    max-width: 90vw;
    padding: 15px;
    margin-left: 5vw;
    margin-right: 5vw;
  }
  .container .accordeon .accordion .row {
    justify-content: space-between;
    align-items: center;
  }
  .container .accordeon .accordion .row h3 {
    font-size: 28px;
  }
  .container .accordeon .accordion .row span {
    font-size: 40px;
  }
  /*FORM*/
  .form-box, .formulaire {
    flex-direction: column;
  }
  .form-box .form .formulaire .col, .form-box .form {
    width: 100%;
  }
  .form-box img {
    display: none;
  }
  /*VIGNETTE*/
  .vignettes .row {
    width: 100%;
  }
  .vignettes .row .vignette {
    width: calc(100% - 60px);
    gap: 30px;
    flex-direction: column;
  }
  .vignettes .row .vignette .col {
    gap: 30px;
    margin-top: 20px;
  }
  /*PRESTATION*/
  .end .row {
    flex-direction: column;
  }
  .end .row img {
    width: 100%;
  }
  .start .row {
    flex-direction: column-reverse;
  }
  .start .row img {
    width: 100%;
  }
  /*REALISATION*/
  .filtres {
    flex-direction: column;
    margin-top: 0px;
  }
  .filtres h2 {
    line-height: 52px;
  }
  .realisations {
    grid-template-columns: 1fr;
  }
  /*FOOTER*/
  footer .rcol {
    flex-direction: column;
    gap: 25px;
  }
  footer .rcol img {
    width: 100%;
  }
  footer .rcol .g15 {
    gap: 25px;
  }
  footer .rcol .row {
    justify-content: center;
  }
  ul {
    justify-content: center;
  }
  /*CONTACT*/
  .contact {
    flex-direction: column;
    gap: 30px;
  }
  .contact .w65 {
    width: 100%;
  }
  /*PROJET*/
  .projet .row {
    flex-direction: column;
  }
  .projet .texte.g30.col.w35, .projet .w65, .projet .w50 {
    width: 100%;
  }
}
.presentation {
  background-image: url(../images/background-presentation.png);
  background-repeat: no-repeat;
  background-position: bottom -110px right 50%;
  height: 100vh;
  background-size: contain;
}
.presentation .col.g30.center {
  align-items: center;
  padding-top: 60px;
}
.presentation .col.g30.center h2 {
  line-height: normal;
  text-align: center;
}
.presentation .col.g30.center .images {
  width: 150px;
  height: 150px;
  margin: auto;
  position: relative;
}
.presentation .col.g30.center .images .text {
  width: 120%;
  top: -9%;
  left: -8%;
  position: absolute;
}
.presentation .col.g30.center .images .lapin {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-55%, -52%);
  width: 34%;
}

p span {
  background-color: #DDFC63;
  padding: 5px;
  border-radius: 5px;
  display: inline;
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
#rotatingImage {
  animation: rotate 15s linear infinite;
}

.container {
  display: flex;
  flex-direction: column;
  gap: 60px;
  max-width: 1100px;
  margin: auto;
  margin-top: 120px;
}

.row {
  display: flex;
  flex-direction: row;
}

.col {
  display: flex;
  flex-direction: column;
}

.center {
  justify-content: center;
}

.g10 {
  gap: 10px;
}

.g15 {
  gap: 15px;
}

.g20 {
  gap: 20px;
}

.g30 {
  gap: 30px;
}

.g60 {
  gap: 60px;
}

.g90 {
  gap: 90px;
}

/*COLOR*/
.color {
  width: 150px;
  height: 150px;
}
.color .color-primary {
  background: #191A23;
}
.color .color-secondary {
  background-color: #DDFC63;
}
.color .color-tertiary {
  background-color: #F3F3F3;
}
.color .color-quatriary {
  background-color: #54549F;
}

/*TYPO*/
h1 {
  font-family: "Yeseva One", "Serif";
  font-weight: 100;
  font-size: 44px;
}
h1 span {
  background-color: #DDFC63;
  width: -moz-fit-content;
  width: fit-content;
  padding: 5px;
  border-radius: 5px;
  display: inline;
  line-height: 3rem;
}
h1 span.blanc {
  background-color: #F3F3F3;
  width: -moz-fit-content;
  width: fit-content;
  padding: 5px;
  border-radius: 5px;
  display: inline;
}

h2 {
  font-family: "Yeseva One", "Serif";
  font-weight: 100;
  font-size: 38px;
}
h2 span {
  background-color: #DDFC63;
  width: -moz-fit-content;
  width: fit-content;
  padding: 5px;
  border-radius: 5px;
  display: inline;
  line-height: 3rem;
}
h2 span.blanc {
  background-color: #F3F3F3;
  width: -moz-fit-content;
  width: fit-content;
  padding: 5px;
  border-radius: 5px;
  display: inline;
}

h3 {
  font-family: "Yeseva One", "Serif";
  font-weight: 100;
  font-size: 32px;
  line-height: 1.8rem;
}
h3 span {
  background-color: #DDFC63;
  width: -moz-fit-content;
  width: fit-content;
  padding: 5px;
  border-radius: 5px;
  display: inline;
}
h3 span.blanc {
  background-color: #F3F3F3;
  width: -moz-fit-content;
  width: fit-content;
  padding: 5px;
  border-radius: 5px;
  display: inline;
}

h4 {
  font-family: "Yeseva One", "Serif";
  font-weight: 100;
  font-size: 28px;
}
h4 span {
  background-color: #DDFC63;
  width: -moz-fit-content;
  width: fit-content;
  padding: 5px;
  border-radius: 5px;
  display: inline;
}
h4 span.blanc {
  background-color: #F3F3F3;
  width: -moz-fit-content;
  width: fit-content;
  padding: 5px;
  border-radius: 5px;
  display: inline;
}

h5 {
  font-family: "Yeseva One", "Serif";
  font-weight: 100;
  font-size: 24px;
}
h5 span {
  background-color: #DDFC63;
  width: -moz-fit-content;
  width: fit-content;
  padding: 5px;
  border-radius: 5px;
  display: inline;
}
h5 span.blanc {
  background-color: #F3F3F3;
  width: -moz-fit-content;
  width: fit-content;
  padding: 5px;
  border-radius: 5px;
  display: inline;
}

h6 {
  font-family: "Yeseva One", "Serif";
  font-weight: 100;
  font-size: 20px;
}
h6 span {
  background-color: #DDFC63;
  width: -moz-fit-content;
  width: fit-content;
  padding: 5px;
  border-radius: 5px;
  display: inline;
}
h6 span.blanc {
  background-color: #F3F3F3;
  width: -moz-fit-content;
  width: fit-content;
  padding: 5px;
  border-radius: 5px;
  display: inline;
}

p {
  font-family: "Barlow Condensed", "Sans serif";
  font-size: 16px;
  color: #191A23;
  line-height: 1.1em;
}
p.regular {
  font-weight: 400;
}
p.bold {
  font-weight: 800;
}
p.italic {
  font-style: italic;
}

/*BOUTTON*/
.voir {
  font-family: "Yeseva One", "Serif";
  font-size: 20px;
  color: #191A23;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 20px;
  width: -moz-fit-content;
  width: fit-content;
  cursor: pointer;
}
.voir path {
  stroke: #F3F3F3;
}

.voir:hover path {
  stroke: #DDFC63;
}

.voir-blanc {
  font-family: "Yeseva One", "Serif";
  font-size: 20px;
  color: #F3F3F3;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 20px;
  width: -moz-fit-content;
  width: fit-content;
  cursor: pointer;
}
.voir-blanc svg {
  fill: #F3F3F3;
}
.voir-blanc path {
  stroke: #191A23;
}

.voir-blanc:hover svg {
  fill: #DDFC63;
}

.btn-primary {
  border: 1px solid #191A23;
  padding: 15px 30px;
  background-color: #191A23;
  font-family: "Yeseva One", "Serif";
  color: #F3F3F3;
  font-size: 18px;
  font-weight: 100;
  text-decoration: none;
  text-transform: uppercase;
  border-radius: 10px;
  width: -moz-fit-content;
  width: fit-content;
  display: inline-block;
}

.btn-primary:hover {
  color: #DDFC63;
}

.btn-secondary {
  padding: 15px 30px;
  background-color: white;
  font-family: "Yeseva One", "Serif";
  color: #191A23;
  font-size: 18px;
  border: 1px solid #191A23;
  border-radius: 10px;
  font-weight: 100;
  text-decoration: none;
  text-transform: uppercase;
  width: -moz-fit-content;
  width: fit-content;
  display: inline-block;
}

.btn-secondary:hover {
  color: #191A23;
  background-color: #DDFC63;
  border: 1px solid #DDFC63;
}

.btn-tertiary {
  border: 1px solid #DDFC63;
  padding: 15px 30px;
  background-color: #DDFC63;
  font-family: "Yeseva One", "Serif";
  color: #191A23;
  font-size: 18px;
  border-radius: 10px;
  font-weight: 100;
  text-decoration: none;
  text-transform: uppercase;
  width: -moz-fit-content;
  width: fit-content;
  display: inline-block;
}

.btn-tertiary:hover {
  color: #191A23;
  background-color: white;
}

/*FORMULAIRE*/
.form-box {
  background-color: #F3F3F3;
  padding: 60px;
  border-radius: 10px;
  border: 1px solid #191A23;
  justify-content: space-around;
  position: relative;
}
.form-box img {
  width: 20%;
}
.form-box img.provisoire {
  right: 10%;
  top: -22%;
  position: absolute;
  width: 16%;
  transform: rotate(45deg);
}
.form-box .form {
  width: 70%;
  justify-content: space-between;
  gap: 15px;
}
.form-box .form input.btn-primary {
  width: auto;
  text-align: center;
}
.form-box .form a.btn-primary {
  width: 70%;
  text-align: center;
}
.form-box .form .formulaire {
  gap: 30px;
}
.form-box .form .formulaire .col {
  width: calc(50% - 15px);
}

label {
  font-family: "Barlow Condensed", "Sans serif";
  font-size: 14px;
  text-transform: uppercase;
  font-weight: 700;
}

input, textarea {
  padding: 10px 20px;
  border: 1px solid #191A23;
  border-radius: 8px;
}

input:focus, textarea:focus {
  border-color: #DDFC63;
  border-width: 1px;
  box-shadow: 0px 0px 5px 0px #DDFC63;
}

@media screen and (max-width: 800px) {
  .form-box img.provisoire {
    width: 20%;
    top: 30%;
    transform: rotate(90deg);
  }
}
/* checkbox settings */
.checkbox {
  align-items: center;
  width: -moz-fit-content;
  width: fit-content;
}

.ui-checkbox {
  --primary-color: #DDFC63;
  --secondary-color: #fff;
  --primary-hover-color: #94b11f;
  /* checkbox */
  --checkbox-diameter: 20px;
  --checkbox-border-radius: 5px;
  --checkbox-border-color: #191A23;
  --checkbox-border-width: 1px;
  --checkbox-border-style: solid;
  /* checkmark */
  --checkmark-size: 1.2;
  padding: 10px;
  margin-right: 15px;
}

.ui-checkbox,
.ui-checkbox *,
.ui-checkbox *::before,
.ui-checkbox *::after {
  box-sizing: border-box;
}

.ui-checkbox {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: var(--checkbox-diameter);
  height: var(--checkbox-diameter);
  border-radius: var(--checkbox-border-radius);
  background: var(--secondary-color);
  border: var(--checkbox-border-width) var(--checkbox-border-style) var(--checkbox-border-color);
  transition: all 0.3s;
  cursor: pointer;
  position: relative;
}

.ui-checkbox::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  box-shadow: 0 0 0 calc(var(--checkbox-diameter) / 2.5) var(--primary-color);
  border-radius: inherit;
  opacity: 0;
  transition: all 0.5s cubic-bezier(0.12, 0.4, 0.29, 1.46);
}

.ui-checkbox::before {
  top: 40%;
  left: 50%;
  content: "";
  position: absolute;
  width: 4px;
  height: 7px;
  border-right: 2px solid var(--secondary-color);
  border-bottom: 2px solid var(--secondary-color);
  transform: translate(-50%, -50%) rotate(45deg) scale(0);
  opacity: 0;
  transition: all 0.1s cubic-bezier(0.71, -0.46, 0.88, 0.6), opacity 0.1s;
}

/* actions */
.ui-checkbox:hover {
  border-color: var(--primary-color);
}

.ui-checkbox:checked {
  background: var(--primary-color);
  border-color: transparent;
}

.ui-checkbox:checked::before {
  opacity: 1;
  transform: translate(-50%, -50%) rotate(45deg) scale(var(--checkmark-size));
  transition: all 0.2s cubic-bezier(0.12, 0.4, 0.29, 1.46) 0.1s;
}

.ui-checkbox:active:not(:checked)::after {
  -webkit-transition: none;
  -o-transition: none;
  box-shadow: none;
  transition: none;
  opacity: 1;
}

/*VIGNETTE*/
.vignettes {
  align-items: stretch;
}
.vignettes .vignette {
  padding: 15px 30px;
  width: 50%;
  display: flex;
  flex-direction: row;
  gap: 50px;
  border-radius: 5px;
  border: 1px solid #191A23;
}
.vignettes .vignette .col {
  justify-content: space-around;
}
.vignettes .vignette .col h3 {
  margin: 0px;
  font-size: 32px;
  line-height: 40px;
  white-space: nowrap;
}
.vignettes .vignette img {
  width: 230px;
  height: -moz-fit-content;
  height: fit-content;
  align-self: center;
}

.vignette-un {
  background-color: #F3F3F3;
}

.vignette-deux {
  background-color: #191A23;
}

.vignette-trois {
  background-color: #DDFC63;
}

/*ACCORDEON*/
.accordeon {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.accordeon .accordion {
  background-color: #F3F3F3;
  color: #191A23;
  cursor: pointer;
  padding: 18px;
  width: 100%;
  border: none;
  text-align: left;
  outline: none;
  font-size: 15px;
  transition: 0.4s;
  border-radius: 5px;
  border: 1px solid #191A23;
  position: relative;
}
.accordeon .accordion .row {
  justify-content: space-between;
  align-items: baseline;
  gap: 15px;
}
.accordeon .accordion h3 span {
  font-family: "Yeseva One", "Serif";
  font-weight: 100;
  font-size: 44px;
  width: -moz-fit-content;
  width: fit-content;
  padding: 5px;
  border-radius: 5px;
  display: inline;
  background-color: transparent;
}
.accordeon .active, .accordeon .accordion:hover {
  background-color: #DDFC63;
}
.accordeon .active img {
  transform: rotate(180deg);
  transition: 250ms;
}
.accordeon .panel {
  width: 100%;
  display: none;
  overflow: hidden;
}
.accordeon .panel hr {
  border: 1px solid #191A23;
  margin-top: 20px;
}
.accordeon .panel p {
  margin-top: 20px;
}

/*EQUIPE*/
.equipe {
  justify-content: space-between;
  gap: 15px;
  max-width: 400px;
  border: 1px solid #191A23;
  border-radius: 5px;
  padding: 30px 25px;
}
.equipe .row {
  justify-content: space-between;
}
.equipe .row .col {
  justify-content: space-between;
  align-items: flex-end;
}
.equipe .row .col path {
  fill: #191A23;
}
.equipe .row .col path:hover {
  fill: #DDFC63;
}
.equipe hr {
  border: 1px solid #191A23;
  width: 100%;
}

/*PRESTATION*/
.end .row, .start .row {
  gap: 30px;
}
.end .row .texte, .start .row .texte {
  justify-content: space-between;
}
.end .row h1, .start .row h1 {
  font-size: 32px;
  line-height: 140%;
}
.end .row img, .start .row img {
  width: 60%;
}

/*REALISATION*/
.realisations {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: auto;
  gap: 30px 30px;
}
.realisations .realisation {
  position: relative;
}
.realisations .realisation h3 {
  text-align: center;
  position: absolute;
  width: 100%;
  bottom: 20px;
  color: #F3F3F3;
  opacity: 0;
  text-shadow: 0px 0px 7px rgb(0, 0, 0);
}
.realisations .realisation a:hover h3 {
  opacity: 1;
  transition: 300ms;
}
.realisations img {
  width: 100%;
  border-radius: 8px;
}

/*TEMOIGNAGE*/
/*FOOTER*/
footer {
  margin-top: 60px;
  display: flex;
  flex-direction: column;
  background-color: #191A23;
  border-radius: 40px 40px 0px 0px;
  padding: 60px 60px 30px 60px;
}
footer h2 {
  color: #DDFC63;
}
footer svg path.white {
  fill: white;
}
footer svg path.white:hover {
  fill: #DDFC63;
}
footer hr {
  border: 1px solid white;
  width: 100%;
}
footer .row {
  justify-content: space-between;
}
footer .row p {
  color: white;
}
footer .row a {
  font-family: "Barlow Condensed", "Sans serif";
  font-size: 16px;
  text-decoration: none;
  color: white;
}
footer .row a:hover {
  color: #DDFC63;
}
footer .center {
  justify-content: center;
}
footer ul {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}

@media screen and (max-width: 480px) {
  .container {
    max-width: 90vw;
    padding: 15px;
    margin-left: 5vw;
    margin-right: 5vw;
  }
  .container .accordeon .accordion .row {
    justify-content: space-between;
    align-items: center;
  }
  .container .accordeon .accordion .row h3 {
    font-size: 28px;
  }
  .container .accordeon .accordion .row span {
    font-size: 40px;
  }
  /*FORM*/
  .form-box, .formulaire {
    flex-direction: column;
  }
  .form-box .form .formulaire .col, .form-box .form {
    width: 100%;
  }
  .form-box img {
    display: none;
  }
  /*VIGNETTE*/
  .vignettes .row {
    width: 100%;
  }
  .vignettes .row .vignette {
    width: calc(100% - 60px);
    gap: 30px;
    flex-direction: column;
  }
  .vignettes .row .vignette .col {
    gap: 30px;
    margin-top: 20px;
  }
  /*PRESTATION*/
  .end .row {
    flex-direction: column;
  }
  .end .row img {
    width: 100%;
  }
  .start .row {
    flex-direction: column-reverse;
  }
  .start .row img {
    width: 100%;
  }
  /*REALISATION*/
  .filtres {
    flex-direction: column;
    margin-top: 0px;
  }
  .filtres h2 {
    line-height: 52px;
  }
  .realisations {
    grid-template-columns: 1fr;
  }
  /*FOOTER*/
  footer .rcol {
    flex-direction: column;
    gap: 25px;
  }
  footer .rcol img {
    width: 100%;
  }
  footer .rcol .g15 {
    gap: 25px;
  }
  footer .rcol .row {
    justify-content: center;
  }
  ul {
    justify-content: center;
  }
  /*CONTACT*/
  .contact {
    flex-direction: column;
    gap: 30px;
  }
  .contact .w65 {
    width: 100%;
  }
  /*PROJET*/
  .projet .row {
    flex-direction: column;
  }
  .projet .texte.g30.col.w35, .projet .w65, .projet .w50 {
    width: 100%;
  }
}/*# sourceMappingURL=style.css.map */