@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Lexend:wght@100..900&display=swap");
@import url("https://api.fontshare.com/v2/css?f[]=clash-display@200,400,700,500,600,1,300&display=swap");
*, ::after, ::before {
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
}

h1, h2, h3, h4, h5, h6 {
  margin: 0;
}

p, a, li, span {
  line-height: 1rem;
}

a {
  text-decoration: none;
  color: #000000;
  margin: 0;
}

img {
  max-width: 100%;
}

ul {
  margin: 0;
}
ul li {
  list-style: none;
}

.container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 576px) {
  .container {
    max-width: 540px;
  }
}
@media (min-width: 768px) {
  .container {
    max-width: 820px;
  }
}
@media (min-width: 992px) {
  .container {
    max-width: 1080px;
  }
}
@media (min-width: 1200px) {
  .container {
    max-width: calc(100% - 200px);
  }
}
@media (min-width: 2100px) {
  .container {
    max-width: calc(100% - 450px);
  }
}

.row {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.row.align-center {
  align-items: center;
}
.row.align-start {
  align-items: flex-start;
}
.row.align-end {
  align-items: flex-end;
}
.row.justify-content-between {
  justify-content: space-between;
}
.row.justify-content-around {
  justify-content: space-around;
}
.row.justify-content-center {
  justify-content: center;
}

.col, .col-1, .col-10, .col-11, .col-12, .col-2, .col-3, .col-4, .col-5, .col-6, .col-7, .col-8, .col-9 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
}

@media (min-width: 768px) {
  .col-12 {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }
}

@media (min-width: 768px) {
  .col-11 {
    -ms-flex: 0 0 91.666667%;
    flex: 0 0 91.666667%;
    max-width: 91.666667%;
  }
}

@media (min-width: 768px) {
  .col-10 {
    -ms-flex: 0 0 83.333333%;
    flex: 0 0 83.333333%;
    max-width: 83.333333%;
  }
}

@media (min-width: 768px) {
  .col-9 {
    -ms-flex: 0 0 75%;
    flex: 0 0 75%;
    max-width: 75%;
  }
}

@media (min-width: 768px) {
  .col-8 {
    -ms-flex: 0 0 66.666667%;
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
  }
}

@media (min-width: 768px) {
  .col-7 {
    -ms-flex: 0 0 58.333333%;
    flex: 0 0 58.333333%;
    max-width: 58.333333%;
  }
}

@media (min-width: 768px) {
  .col-6 {
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
  }
}

@media (min-width: 768px) {
  .col-5 {
    -ms-flex: 0 0 41.666667%;
    flex: 0 0 41.666667%;
    max-width: 41.666667%;
  }
}

@media (min-width: 768px) {
  .col-4 {
    -ms-flex: 0 0 33.333333%;
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
}

@media (min-width: 768px) {
  .col-3 {
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
  }
}

@media (min-width: 768px) {
  .col-2 {
    -ms-flex: 0 0 16.666667%;
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
  }
}

@media (min-width: 768px) {
  .col-1 {
    -ms-flex: 0 0 8.333333%;
    flex: 0 0 8.333333%;
    max-width: 8.333333%;
  }
}

@media (min-width: 992px) {
  .col-lg-auto {
    flex: 0 0 auto;
    width: auto;
  }
  .col-lg-1 {
    flex: 0 0 auto;
    width: 8.33333333%;
  }
  .col-lg-2 {
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-lg-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  .col-lg-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .col-lg-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
  }
  .col-lg-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  .col-lg-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
  }
  .col-lg-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
  }
  .col-lg-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  .col-lg-10 {
    flex: 0 0 auto;
    width: 83.33333333%;
  }
  .col-lg-11 {
    flex: 0 0 auto;
    width: 91.66666667%;
  }
  .col-lg-12 {
    flex: 0 0 auto;
    width: 100%;
  }
}
.mt-1 {
  margin-top: 1rem;
}

.mt-2 {
  margin-top: 2rem;
}

.mt-3 {
  margin-top: 3rem;
}

.mt-4 {
  margin-top: 4rem;
}

.mt-5 {
  margin-top: 5rem;
}

.mt-6 {
  margin-top: 6rem;
}

.mt-7 {
  margin-top: 7rem;
}

.mt-8 {
  margin-top: 8rem;
}

.mt-9 {
  margin-top: 9rem;
}

.mt-10 {
  margin-top: 10rem;
}

.mb-1 {
  margin-bottom: 1rem;
}

.mb-2 {
  margin-bottom: 2rem;
}

.mb-3 {
  margin-bottom: 3rem;
}

.mb-4 {
  margin-bottom: 4rem;
}

.mb-5 {
  margin-bottom: 5rem;
}

.mb-6 {
  margin-bottom: 6rem;
}

.mb-7 {
  margin-bottom: 7rem;
}

.mb-8 {
  margin-bottom: 8rem;
}

.mb-9 {
  margin-bottom: 9rem;
}

.mb-10 {
  margin-bottom: 10rem;
}

/*
    ---- Form ----
*/
.form-check-input {
  width: 1em;
  height: 1em;
  margin-top: 0.25em;
  vertical-align: top;
  background-color: #fff;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  border: 1px solid rgba(0, 0, 0, 0.25);
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  -webkit-print-color-adjust: exact;
  color-adjust: exact;
  font-size: inherit;
}

.form-check {
  display: block;
  min-height: 1.5rem;
  padding-left: 1.5em;
}
.form-check label {
  display: inline-block;
  vertical-align: middle;
}
.form-check .form-check-input {
  float: left;
  margin-left: -1.5em;
}
.form-check .form-check-input:checked[type=checkbox] {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='M6 10l3 3l6-6'/%3e%3c/svg%3e");
}
.form-check .form-check-input:checked[type=radio] {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='2' fill='%23fff'/%3e%3c/svg%3e");
}
.form-check .form-check-input:checked {
  background-color: #0d6efd;
  border-color: #0d6efd;
}
.form-check .form-check-input[type=radio] {
  border-radius: 50%;
}
.form-check .form-check-input[type=checkbox] {
  border-radius: 0.25em;
}

.btn {
  cursor: pointer;
  padding: 13px 18px;
  font-size: 1.8rem;
  line-height: 2.3rem;
  font-weight: 500;
  border: none;
  background: none;
  text-wrap: nowrap;
  height: fit-content;
  display: inline-block;
  font-family: var(--text-font);
}
.btn.btn-vert {
  background-color: var(--green-main);
  color: var(--white-main);
}
.btn.btn-jaune {
  padding: 8px 14px;
  border-radius: 20px;
  color: var(--white-main);
  background-color: var(--yellow-darker);
  line-height: 2rem;
  font-size: 2rem;
}
.btn.btn-blanc {
  color: var(--green-main);
  background-color: var(--white-main);
}

.flex-row {
  display: flex;
  flex-direction: row;
}
.flex-row.align-center {
  align-items: center;
}
.flex-row.align-start {
  align-items: start;
}
.flex-row.align-end {
  align-items: end;
}
.flex-row.justify-between {
  justify-content: space-between;
}
.flex-row.justify-around {
  justify-content: space-around;
}
.flex-row.justify-evenly {
  justify-content: space-evenly;
}

.flex-column {
  display: flex;
  flex-direction: column;
}
.flex-column.align-center {
  align-items: center;
}
.flex-column.align-start {
  align-items: start;
}
.flex-column.align-baseline {
  align-items: baseline;
}
.flex-column.align-end {
  align-items: end;
}
.flex-column.justify-between {
  justify-content: space-between;
}
.flex-column.justify-around {
  justify-content: space-around;
}
.flex-column.justify-evenly {
  justify-content: space-evenly;
}

.home-title {
  font-size: 6rem;
  font-weight: 500;
  margin-bottom: 55px;
  line-height: 7.4rem;
  font-family: var(--title-font);
}

.title-section {
  position: relative;
  width: fit-content;
}
.title-section span {
  font-size: 2rem;
  line-height: 2.5rem;
  font-weight: 600;
  color: var(--grey-main);
}
.title-section h1, .title-section h2, .title-section h4 {
  font-family: var(--title-font);
  font-size: 4.5rem;
  font-weight: 500;
  line-height: 5.5rem;
}
.title-section img {
  position: absolute;
  right: -40px;
  bottom: 0;
}
.title-section.green span {
  text-transform: uppercase;
  color: var(--green-lighter);
  font-size: 1.4rem;
  line-height: 1.8rem;
}
.title-section.green h3 {
  color: var(--white-main);
  font-family: var(--title-font);
  font-weight: 500;
  font-size: 2.8rem;
  line-height: 3.4rem;
}
.title-section.green h2 {
  font-size: 4.1rem;
  color: var(--white-main);
}
.title-section.green.no-photo span {
  font-size: 2rem;
  line-height: 2.5rem;
}
.title-section.green.no-photo .realisations-ligne {
  right: 12%;
}

.subtitle {
  font-size: 2rem;
  font-weight: 500;
  text-transform: uppercase;
  line-height: normal;
}

.titre-realisation {
  height: 100%;
  margin-top: 10px;
}
.titre-realisation span {
  color: var(--green-main);
  text-transform: uppercase;
  font-size: 1.4rem;
  line-height: 1.8rem;
  font-weight: 700;
}
.titre-realisation h2 {
  font-size: 1.8rem;
  line-height: 2.2rem;
  color: var(--black-main);
  font-family: var(--title-font);
  font-weight: 500;
}
.titre-realisation h1 {
  font-family: var(--title-font);
  font-size: 4.5rem;
  font-weight: 500;
  line-height: 5.5rem;
}

@media screen and (min-width: 2446px) {
  .title-section .realisations-ligne {
    left: 460px;
  }
}
@media screen and (min-width: 2338px) {
  .title-section .realisations-ligne {
    left: 520px;
  }
}
@media screen and (min-width: 2101px) {
  .title-section .realisations-ligne {
    left: 630px;
  }
}
@media screen and (min-width: 2080px) {
  .title-section .realisations-ligne {
    left: 510px;
  }
}
@media screen and (min-width: 1900px) {
  .title-section .realisations-ligne {
    right: inherit;
    left: 630px;
  }
}
@media screen and (max-width: 1840px) {
  .title-section .realisations-ligne {
    right: inherit;
    left: 220px;
  }
}
@media screen and (max-width: 1460px) {
  .title-section .realisations-ligne {
    left: 460px;
  }
}
@media screen and (max-width: 1265px) {
  .title-section .realisations-ligne {
    left: 220px;
  }
}
@media screen and (max-width: 1199px) {
  .title-section .realisations-ligne {
    left: 440px;
  }
}
@media screen and (max-width: 1064px) {
  .title-section .realisations-ligne {
    left: 220px;
  }
}
@media screen and (max-width: 777px) {
  .title-section .partenaires-ligne {
    right: 260px;
  }
}
@media screen and (max-width: 767px) {
  .title-section .realisations-ligne {
    left: 460px;
  }
  .title-section .partenaires-list-ligne {
    right: inherit;
    left: 180px;
  }
}
@media screen and (max-width: 666px) {
  .home-title {
    font-size: 5rem;
  }
}
@media screen and (max-width: 545px) {
  .title-section .realisations-ligne {
    left: 440px;
  }
}
@media screen and (max-width: 532px) {
  .title-section .realisations-ligne {
    left: 220px;
  }
}
@media screen and (max-width: 525px) {
  .title-section .partenaires-ligne {
    right: inherit;
    left: 180px;
  }
  .title-section .avis-client-ligne {
    right: inherit;
    left: 110px;
  }
}
@media screen and (max-width: 441px) {
  .title-section .partenaires-ligne {
    left: 250px;
  }
  .title-section .partenaires-list-ligne {
    left: 250px;
  }
}
@media screen and (max-width: 400px) {
  .home-title {
    font-size: 4.5rem;
  }
  .prestations-ligne {
    right: 0;
  }
  .realisations-index-ligne {
    right: inherit;
    left: 180px;
  }
}
@media screen and (max-width: 378px) {
  .title-section .partenaires-ligne {
    left: 280px;
  }
  .title-section .partenaires-list-ligne {
    left: 180px;
  }
}
@media screen and (max-width: 376px) {
  .title-section .avis-client-ligne {
    left: 150px;
  }
}
@media screen and (max-width: 373px) {
  .prestations-ligne {
    right: inherit;
    left: 220px;
  }
}
@media screen and (max-width: 365px) {
  .realisations-index-ligne {
    left: 220px;
  }
}
@media screen and (max-width: 349px) {
  .title-section .partenaires-list-ligne {
    left: 220px;
  }
}
@media screen and (max-width: 334px) {
  .title-section .avis-client-ligne {
    left: 110px;
  }
}
@media screen and (max-width: 306px) {
  .title-section .partenaires-list-ligne {
    left: 180px;
  }
}
.login {
  height: 100vh;
  width: 100%;
  position: relative;
  overflow: hidden;
}
.login__form {
  width: 20%;
  position: fixed;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  background-color: var(--white-main);
  box-shadow: 0 4px 30px 0 rgba(0, 0, 0, 0.07);
  border-radius: 20px;
  padding: 50px;
  z-index: 2;
}
.login__form h2 {
  font-size: 2rem;
}
.login__form form .group-form {
  row-gap: 0.5rem;
}
.login__form form label {
  font-size: 1.1rem;
  font-weight: 700;
}
.login__form form input {
  font-family: var(--text-font);
  margin-bottom: 40px;
  border-radius: 6px;
  border: 2px solid var(--green-main);
  padding: 14px 8px;
}
.login__form form input:focus-visible {
  outline-color: var(--yellow-darker);
}
.login__form form .app-logout {
  font-size: 1.6rem;
}
.login .idv {
  position: absolute;
  bottom: 20%;
  right: 50%;
  width: 200px;
  transform: translate(50%, 50%);
}

/* Page Mentions légales */
.mention {
  padding: 177px 0 0;
}
.mention h1 {
  font-family: var(--title-font);
  font-size: 4.5rem;
  font-weight: 500;
  line-height: 5.5rem;
}
.mention h2 {
  margin-bottom: 2rem;
  font-size: 2rem;
  line-height: 2.3rem;
  color: var(--green-main);
  font-family: var(--title-font);
}
.mention a {
  font-weight: 700;
  text-decoration: underline;
}
.mention p {
  margin-bottom: 4rem;
}

.header {
  background-image: url("/scobat/public/images/trait-vertical.svg");
  background-repeat: repeat;
  background-position-x: center;
  position: fixed;
  top: 0;
  width: 100%;
  background-color: var(--white-main);
  z-index: 10000;
}
.header .navbar {
  padding-top: 33px;
  padding-bottom: 20px;
}
.header .navbar .link-list {
  display: flex;
  column-gap: 45px;
}
.header .navbar .link-list a {
  font-size: 2rem;
  font-weight: 500;
  line-height: 2.5rem;
}
.header .navbar .link-list a.active {
  padding-bottom: 11px;
  border-bottom: 2px solid var(--yellow-darker);
}
.header .navbar .phone {
  z-index: 1000;
}

@media screen and (max-width: 1300px) {
  .header .navbar .link-list {
    column-gap: 25px;
  }
}
@media screen and (max-width: 992px) {
  .header {
    width: 100%;
  }
  .header .navbar {
    align-items: center;
  }
  .header .navbar .logo {
    max-width: 100%;
    z-index: 2;
  }
  .header .navbar .menu-burger {
    width: 45px;
    height: 25px;
    display: block;
    position: relative;
    z-index: 2;
    cursor: pointer;
  }
  .header .navbar .menu-burger .bar {
    display: block;
    width: 100%;
    height: 3px;
    background-color: var(--black-main);
    position: absolute;
    left: 0;
    top: 0;
  }
  .header .navbar .menu-burger .bar.middle {
    transition: 0.4s ease-in-out;
    transform: translate(0, -50%);
    top: 50%;
  }
  .header .navbar .menu-burger .bar.top, .header .navbar .menu-burger .bar.bottom {
    transition: transform 0.2s, 0.2s top 0.4s;
  }
  .header .navbar .menu-burger .bar.bottom {
    top: 22px;
  }
  .header .navbar .menu-burger.open span.middle {
    opacity: 0;
  }
  .header .navbar .menu-burger.open span.top, .header .navbar .menu-burger.open span.bottom {
    top: 50%;
    transition: all 0.2s, 0.2s transform 0.4s;
  }
  .header .navbar .menu-burger.open span.top {
    transform: rotate(-45deg);
  }
  .header .navbar .menu-burger.open span.bottom {
    transform: rotate(45deg);
  }
  .header .navbar .link-list {
    flex-direction: column;
    position: absolute;
    top: 0;
    left: -100%;
    padding: 140px 30px 60px;
    background-color: var(--white-main);
    width: 100%;
    row-gap: 2.5rem;
    transition: 0.4s ease-in-out;
  }
  .header .navbar .link-list.open {
    left: 0;
  }
}
@media screen and (max-width: 550px) {
  .header .navbar .logo img {
    width: 170px;
  }
  .header .navbar .phone a {
    font-size: 1.7rem;
  }
}
@media screen and (max-width: 400px) {
  .header .navbar .logo img {
    width: 110px;
  }
  .header .navbar .phone a {
    font-size: 1.6rem;
  }
}
footer {
  background-repeat: repeat;
  background-position-x: center;
  background-image: url("/scobat/public/images/trait-vertical.svg");
  width: 100%;
  padding-top: 80px;
  padding-bottom: 30px;
}
footer a {
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 2.1rem;
  color: var(--black-main);
}
footer span {
  font-size: 2rem;
  line-height: 2.3rem;
  font-weight: 500;
  font-family: var(--title-font);
}
footer .footer-title {
  margin-bottom: 10px;
}
footer .left {
  row-gap: 133px;
}
footer .copyright span {
  font-size: 1.5rem;
  font-weight: 500;
  font-family: var(--title-font);
  line-height: 2.1rem;
}
footer .copyright span a {
  font-size: 1.5rem;
  font-family: var(--title-font);
  font-weight: 600;
  line-height: 2.1rem;
  color: var(--green-main);
}
footer .prestations, footer .plan-site, footer .contact, footer .mentions-rgpd {
  row-gap: 10px;
}
footer .contact .phone, footer .contact .map, footer .contact .mail {
  display: flex;
  align-items: center;
  gap: 15px;
}
footer .contact .phone img, footer .contact .map img, footer .contact .mail img {
  width: 20px;
}
footer .contact .facebook {
  width: 24px;
  height: 24px;
}
footer .mentions-rgpd {
  margin-top: 32px;
}

@media screen and (max-width: 992px) {
  footer .footer-wrapper {
    text-align: center;
    row-gap: 35px;
    flex-wrap: wrap;
  }
  footer .footer-wrapper .left {
    margin: 0 auto;
    width: 50%;
  }
  footer .footer-wrapper .left img {
    width: 250px;
    margin: 0 auto;
  }
  footer .plan-site {
    width: 50%;
  }
  footer .prestations {
    width: 50%;
  }
  footer .mentions-rgpd {
    margin-top: 0;
  }
  footer .contact {
    width: 50%;
  }
  footer .contact .phone, footer .contact .map, footer .contact .mail {
    justify-content: center;
  }
  footer .contact .facebook {
    margin: 20px auto 0;
  }
  footer .mentions-rgpd {
    width: 50%;
  }
  footer .copyright {
    width: 50%;
  }
}
@media screen and (max-width: 500px) {
  footer .footer-wrapper {
    flex-direction: column;
    justify-content: center;
  }
  footer .footer-wrapper .left {
    width: 100%;
  }
  footer .plan-site {
    width: 100%;
  }
  footer .prestations {
    width: 100%;
  }
  footer .contact {
    width: 100%;
  }
  footer .mentions-rgpd {
    width: 100%;
  }
  footer .copyright {
    width: 100%;
  }
}
:root {
  --black-main: #1D1D1B;
  --grey-main: #B3B3B3;
  --white-main: #FFFFFF;
  --green-main: #00885C;
  --green-lighter: #83C9B2;
  --blue-main: #282766;
  --yellow-main: #FCBC0532;
  --yellow-darker: #F7A833;
  --title-font: "Clash Display", sans-serif;
  --text-font: "Lexend", sans-serif;
}

html {
  font-size: 10px;
}

body {
  font-family: var(--text-font);
  color: var(--black-main);
  display: block;
  overflow-x: hidden;
}

p {
  font-size: 1.6rem !important;
  line-height: 2.3rem !important;
  font-weight: 400 !important;
  font-family: var(--text-font) !important;
}
p strong {
  font-weight: 700 !important;
}

.none {
  display: none;
}

.overflow-x-hidden {
  overflow-x: hidden;
}

.mobile {
  display: none;
}

.home {
  position: relative;
  padding-top: 177px;
  background-repeat: repeat;
  background-position-x: center;
  background-image: url("/scobat/public/images/trait-vertical.svg");
}
.home .hero-page-morph {
  position: absolute;
  top: 177px;
  right: 0;
  z-index: 0;
}
.home__hero-page {
  position: relative;
  z-index: 1;
}
.home__hero-page__titre-boutons {
  display: flex;
  justify-content: space-between;
}
.home__hero-page__titre-boutons .boutons {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  row-gap: 23px;
  text-align: center;
}
.home__hero-page__titre-boutons .boutons .btn-contact {
  color: var(--white-main);
  font-weight: 500;
  font-size: 1.8rem;
  line-height: 2.3rem;
  text-decoration: underline;
}
.home__hero-page .hero-page-photo {
  width: 100%;
  object-fit: cover;
  height: 624px;
}
.home__a-propos {
  margin-top: 6rem;
}
.home__a-propos p {
  margin-top: 25px;
  margin-bottom: 27px;
}
.home__a-propos .logos {
  display: flex;
  justify-content: flex-end;
  column-gap: 15px;
}
.home__prestations {
  margin-top: 70px;
}
.home__prestations .row {
  margin-top: 50px;
  row-gap: 50px;
  justify-content: center;
}
.home__prestations .row .col-4.gauche {
  padding-right: 60px;
}
.home__prestations .row .col-4.droite {
  padding-left: 60px;
}
.home__prestations .row .col-4.milieu {
  padding: 0 37.5px;
}
.home__prestations .row .col-4.mid-gauche {
  padding-right: 45px;
  padding-left: 30px;
}
.home__prestations .row .col-4.mid-droite {
  padding-left: 45px;
  padding-right: 30px;
}
.home__prestations .row .col-4 .yellow {
  font-weight: 700;
  font-size: 2rem;
  line-height: 2.5rem;
  font-family: var(--title-font);
  color: var(--yellow-darker);
}
.home__prestations .row .col-4 h3 {
  font-size: 2.8rem;
  font-family: var(--title-font);
  font-weight: 500;
  line-height: 3.4rem;
}
.home__prestations .row .col-4 img {
  margin-top: 2px;
  width: 100%;
}
.home__prestations .row .col-4 p {
  margin-top: 25px;
  margin-bottom: 20px;
}
.home__bg-vert {
  margin-top: 120px;
  padding: 100px 0;
  background-color: var(--green-main);
}
.home__bg-vert .row .duo .title-section {
  margin-top: 20px;
}
.home__bg-vert .row .right p {
  color: var(--white-main) !important;
  margin: 45px 0 35px;
}
.home__partenaires {
  margin-top: 120px;
}
.home__partenaires .title-section {
  margin-bottom: 30px;
}
.home__partenaires .swiper-wrapper {
  align-items: baseline;
}
.home__partenaires .swiper-slide {
  width: 300px;
  text-align: center;
}
.home__partenaires .center {
  margin-top: 10px;
  margin-left: 50%;
  transform: translateX(-50%);
}
.home__avis-clients {
  margin-top: 94px;
}
.home__avis-clients .title-section {
  margin-bottom: 33px;
}
.home__avis-clients .swiper-wrapper {
  margin-left: 120px;
}
.home__avis-clients .swiper-wrapper .swiper-slide {
  position: relative;
  width: 50%;
}
.home__avis-clients .swiper-wrapper .swiper-slide .quote {
  position: absolute;
  left: -32px;
  top: -17px;
}
.home__avis-clients .swiper-wrapper .swiper-slide .avis-client {
  background-color: var(--yellow-main);
  backdrop-filter: opacity(20%);
  padding: 40px;
}
.home__avis-clients .swiper-wrapper .swiper-slide .avis-client p {
  margin-bottom: 25px;
}
.home__avis-clients .swiper-wrapper .swiper-slide .avis-client .client {
  display: flex;
  align-items: center;
  gap: 10px;
}
.home__avis-clients .swiper-wrapper .swiper-slide .avis-client .client .nom {
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 2.1rem;
  font-family: var(--title-font);
}
.home__avis-clients .swiper-wrapper .swiper-slide .avis-client .client .ville {
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 2.1rem;
  font-family: var(--text-font);
}
.home__avis-clients .carrousel-arrow {
  margin-top: 40px;
  display: flex;
  column-gap: 15px;
  justify-content: end;
  padding-right: 115px;
}
.home__avis-clients .carrousel-arrow img {
  cursor: pointer;
}

.partenaires {
  padding-top: 177px;
  background-position-x: center;
  background-repeat: repeat;
  background-image: url("/scobat/public/images/trait-vertical.svg");
}
.partenaires .row {
  align-items: baseline;
  row-gap: 25px;
  margin-top: 55px;
}
.partenaires .row .partenaire-item .logo-partenaire {
  display: block;
  margin: 0 auto;
  height: 100%;
}
.partenaires .row .partenaire-item p {
  text-align: center;
}

.realisations {
  padding-top: 177px;
  background-repeat: repeat;
  background-position-x: center;
  background-image: url("/scobat/public/images/trait-vertical.svg");
}
.realisations__filter {
  margin-bottom: 50px;
  display: flex;
  flex-direction: row;
  column-gap: 25px;
  align-items: baseline;
}
.realisations__filter span {
  font-size: 2.2rem;
  line-height: 2.3rem;
}
.realisations__filter .select {
  background-color: var(--green-main);
  color: var(--white-main);
  font-family: var(--text-font);
  padding: 8px 33px 8px 13px;
  font-size: 1.8rem;
  line-height: 2.3rem;
  font-weight: 500;
  border: none;
  border-radius: 0;
  appearance: none;
  cursor: pointer;
  background-image: url("/scobat/public/images/icons/arrow-down.png");
  background-repeat: no-repeat;
  background-position-x: calc(100% - 14px);
  background-position-y: 50%;
}
.realisations__filter .select:focus-visible {
  outline: none;
}
.realisations .title-section {
  margin-bottom: 50px;
}
.realisations .row {
  row-gap: 50px;
}
.realisations .row .col-3 .btn-vert {
  margin-top: 10px;
}
.realisations .more {
  margin-top: 50px;
}
.realisations .pagination {
  margin-top: 50px;
  display: inline-block;
  background-color: var(--yellow-darker);
  padding: 9px 15px;
}
.realisations .pagination span {
  color: var(--white-main);
  font-size: 1.6rem;
  line-height: 2rem;
  font-weight: 500;
  cursor: pointer;
  padding: 0 3px;
}
.realisations .pagination span a {
  color: var(--white-main);
  font-size: 1.6rem;
  line-height: 2rem;
  font-weight: 500;
}
.realisations .pagination span.current {
  cursor: initial;
}
.realisations .pagination .first, .realisations .pagination .last, .realisations .pagination .next, .realisations .pagination .prev {
  vertical-align: text-bottom;
}

.realisation-show {
  margin-bottom: 40px;
  background-repeat: repeat;
  background-position-x: center;
  position: relative;
  padding-top: 177px;
  background-image: url("/scobat/public/images/trait-vertical.svg");
}
.realisation-show .realisation-show-morph {
  position: absolute;
  top: 150px;
  right: 0;
  width: 40%;
}
.realisation-show .titre-realisation {
  height: auto;
}
.realisation-show .paragraph {
  margin-top: 50px;
}
.realisation-show .paragraph span {
  font-family: var(--text-font) !important;
  color: var(--black-main) !important;
  text-decoration: none !important;
}
.realisation-show .paragraph strong {
  color: var(--green-main) !important;
  font-weight: 600;
}

@media screen and (min-width: 2100px) {
  .home__avis-clients .swiper-wrapper {
    margin-left: 240px;
  }
}
@media screen and (max-width: 1300px) {
  .partenaires .col-3 {
    max-width: 33.333333%;
    flex: 0 0 33.333333%;
  }
}
@media screen and (max-width: 992px) {
  .desktop {
    display: none;
  }
  .mobile {
    display: inherit;
  }
  .home__hero-page__titre-boutons {
    gap: 20px;
  }
  .home__prestations .row .col-4 {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .home__prestations .row .col-4.gauche {
    padding-right: 15px;
  }
  .home__prestations .row .col-4.droite {
    padding-left: 15px;
  }
  .home__prestations .row .col-4.milieu {
    padding: 0 15px;
  }
  .home__prestations .row .col-4.mid-gauche {
    padding-left: 15px;
    padding-right: 15px;
  }
  .home__prestations .row .col-4.mid-droite {
    padding-left: 15px;
    padding-right: 15px;
  }
}
@media screen and (max-width: 777px) {
  .home__hero-page .hero-page-photo {
    height: 450px;
  }
  .home__avis-clients .swiper-wrapper {
    margin-left: 20px;
  }
  .home__avis-clients .swiper-wrapper .swiper-slide .quote {
    left: -12px;
  }
  .home__bg-vert .row {
    row-gap: 55px;
  }
  .home__bg-vert .row .duo {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .home__bg-vert .row .duo img {
    width: 100%;
  }
  .home__bg-vert .row .right {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .partenaires .col-3 {
    max-width: 50%;
    flex: 0 0 50%;
  }
}
@media screen and (max-width: 767px) {
  .realisation-show .row {
    row-gap: 55px;
  }
}
@media screen and (max-width: 666px) {
  .home .hero-page-morph {
    display: none;
  }
  .home__hero-page__titre-boutons {
    flex-direction: column;
    margin-bottom: 25px;
  }
  .home__hero-page__titre-boutons .boutons .btn-contact {
    color: var(--yellow-darker);
  }
  .home__hero-page__titre-boutons .boutons .btn-contact:visited {
    color: var(--yellow-main);
  }
  .home__hero-page .hero-page-photo {
    height: 300px;
  }
  .home__prestations .row .col-4 {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .home__a-propos .logos {
    justify-content: center;
  }
}
@media screen and (max-width: 550px) {
  .partenaires .col-3 {
    max-width: 100%;
    flex: 0 0 100%;
  }
}
@media screen and (max-width: 400px) {
  main {
    overflow-x: hidden;
  }
  .home__bg-vert .duo h3 {
    font-size: 2.5rem;
  }
}

/*# sourceMappingURL=data:application/json;charset=utf-8,%7B%22version%22:3,%22sourceRoot%22:%22%22,%22sources%22:%5B%22../../assets/styles/app.scss%22,%22../../assets/styles/_base.scss%22,%22../../assets/styles/components/_btn.scss%22,%22../../assets/styles/components/_flex.scss%22,%22../../assets/styles/components/_title.scss%22,%22../../assets/styles/components/_login.scss%22,%22../../assets/styles/components/_mentions.scss%22,%22../../assets/styles/components/_header.scss%22,%22../../assets/styles/components/_footer.scss%22,%22../../assets/styles/_responsive.scss%22%5D,%22names%22:%5B%5D,%22mappings%22:%22;AAWQ;AACA;ACZR;EACI;;;AAGJ;EACI;EACA;;;AAGJ;EACI;;;AAGJ;EACI;;;AAGJ;EACI;EACA;EACA;;;AAGJ;EACI;;;AAGJ;EACI;;AACA;EACI;;;AAIR;EACI;EACA;EACA;EACA;EACA;;AACA;EANJ;IAOQ;;;AAEJ;EATJ;IAUQ;;;AAEJ;EAZJ;IAaQ;;;AAEJ;EAfJ;IAgBQ;;;AAEJ;EAlBJ;IAmBQ;;;;AAIR;EACI;EACA;EACA;EACA;EACA;EACA;;AACA;EACI;;AAEJ;EACI;;AAEJ;EACI;;AAEJ;EACI;;AAEJ;EACI;;AAEJ;EACI;;;AAIR;EACI;EACA;EACA;EACA;;;AAIA;EADJ;IAEQ;IACA;IACA;;;;AAKJ;EADJ;IAEQ;IACA;IACA;;;;AAKJ;EADJ;IAEQ;IACA;IACA;;;;AAKJ;EADJ;IAEQ;IACA;IACA;;;;AAKJ;EADJ;IAEQ;IACA;IACA;;;;AAKJ;EADJ;IAEQ;IACA;IACA;;;;AAKJ;EADJ;IAEQ;IACA;IACA;;;;AAKJ;EADJ;IAEQ;IACA;IACA;;;;AAKJ;EADJ;IAEQ;IACA;IACA;;;;AAKJ;EADJ;IAEQ;IACA;IACA;;;;AAIJ;EADJ;IAEQ;IACA;IACA;;;;AAKJ;EADJ;IAEQ;IACA;IACA;;;;AAIR;EACI;IACI;IACA;;EAGJ;IACI;IACA;;EAGJ;IACI;IACA;;EAGJ;IACI;IACA;;EAGJ;IACI;IACA;;EAGJ;IACI;IACA;;EAGJ;IACI;IACA;;EAGJ;IACI;IACA;;EAGJ;IACI;IACA;;EAGJ;IACI;IACA;;EAGJ;IACI;IACA;;EAGJ;IACI;IACA;;EAGJ;IACI;IACA;;;AAIR;EACI;;;AAEJ;EACI;;;AAEJ;EACI;;;AAEJ;EACI;;;AAEJ;EACI;;;AAEJ;EACI;;;AAEJ;EACI;;;AAEJ;EACI;;;AAEJ;EACI;;;AAEJ;EACI;;;AAGJ;EACI;;;AAEJ;EACI;;;AAEJ;EACI;;;AAEJ;EACI;;;AAEJ;EACI;;;AAEJ;EACI;;;AAEJ;EACI;;;AAEJ;EACI;;;AAEJ;EACI;;;AAEJ;EACI;;;AAGJ;AAAA;AAAA;AAKA;EACI;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;;AAEJ;EACI;EACA;EACA;;AACA;EACI;EACA;;AAEJ;EACI;EACA;;AACA;EACI;;AAEJ;EACI;;AAEJ;EACI;EACA;;AAEJ;EACI;;AAGR;EACI;;;AC3WR;EACC;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AACA;EACC;EACA;;AAED;EACC;EACA;EACA;EACA;EACA;EACA;;AAED;EACC;EACA;;;AC1BF;EACI;EACA;;AACA;EACI;;AAEJ;EACI;;AAEJ;EACI;;AAEJ;EACI;;AAEJ;EACI;;AAEJ;EACI;;;AAIR;EACI;EACA;;AACA;EACI;;AAEJ;EACI;;AAEJ;EACI;;AAEJ;EACI;;AAEJ;EACI;;AAEJ;EACI;;AAEJ;EACI;;;AC7CR;EACC;EACA;EACA;EACA;EACA;;;AAED;EACC;EACA;;AACA;EACC;EACA;EACA;EACA;;AAED;EACC;EACA;EACA;EACA;;AAED;EACC;EACA;EACA;;AAGA;EACC;EACA;EACA;EACA;;AAED;EACC;EACA;EACA;EACA;EACA;;AAED;EACC;EACA;;AAGA;EACC;EACA;;AAED;EACC;;;AAKJ;EACC;EACA;EACA;EACA;;;AAED;EACC;EACA;;AACA;EACC;EACA;EACA;EACA;EACA;;AAED;EACC;EACA;EACA;EACA;EACA;;AAED;EACC;EACA;EACA;EACA;;;AAIF;EAEE;IACC;;;AAIH;EAEE;IACC;;;AAIH;EAEE;IACC;;;AAIH;EAEE;IACC;;;AAIH;EAEE;IACC;IACA;;;AAKH;EAEE;IACC;IACA;;;AAKH;EAEE;IACC;;;AAKH;EAEE;IACC;;;AAKH;EAEE;IACC;;;AAKH;EAEE;IACC;;;AAKH;EAEE;IACC;;;AAIH;EAEE;IACC;;EAED;IACC;IACA;;;AAKH;EACC;IACC;;;AAIF;EAEE;IACC;;;AAKH;EAEE;IACC;;;AAKH;EAEE;IACC;IACA;;EAED;IACC;IACA;;;AAKH;EAEE;IACC;;EAED;IACC;;;AAKH;EACC;IACC;;EAED;IACC;;EAED;IACC;IACA;;;AAIF;EAEE;IACC;;EAED;IACC;;;AAKH;EAEE;IACC;;;AAKH;EACC;IACC;IACA;;;AAIF;EACC;IACC;;;AAIF;EAEE;IACC;;;AAKH;EAEE;IACC;;;AAKH;EAEE;IACC;;;ACtSH;EACI;EACA;EACA;EACA;;AACA;EACI;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AACA;EACI;;AAGA;EACI;;AAEJ;EACI;EACA;;AAEJ;EACI;EACA;EACA;EACA;EACA;;AACA;EACI;;AAGR;EACI;;AAIZ;EACI;EACA;EACA;EACA;EACA;;;AChDR;AACA;EACC;;AACA;EACC;EACA;EACA;EACA;;AAED;EACC;EACA;EACA;EACA;EACA;;AAED;EACC;EACA;;AAED;EACC;;;ACrBF;EACC;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AACA;EACC;EACA;;AACA;EACC;EACA;;AACA;EACC;EACA;EACA;;AACA;EACC;EACA;;AAIH;EACC;;;AAKH;EAGG;IACC;;;AAMJ;EACC;IACC;;EACA;IACC;;EACA;IACC;IACA;;EAED;IACC;IACA;IACA;IACA;IACA;IACA;;EACA;IACC;IACA;IACA;IACA;IACA;IACA;IACA;;EACA;IACC;IACA;IACA;;EAED;IACC;;EAED;IACC;;EAKA;IACC;;EAED;IACC;IACA;;EAED;IACC;;EAED;IACC;;EAKJ;IACC;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;;EACA;IACC;;;AAOL;EAII;IACC;;EAID;IACC;;;AAML;EAII;IACC;;EAID;IACC;;;AC3IL;EACC;EACA;EACA;EACA;EACA;EACA;;AACA;EACC;EACA;EACA;EACA;;AAED;EACC;EACA;EACA;EACA;;AAED;EACC;;AAED;EACC;;AAGA;EACC;EACA;EACA;EACA;;AACA;EACC;EACA;EACA;EACA;EACA;;AAIH;EACC;;AAGA;EACC;EACA;EACA;;AACA;EACC;;AAGF;EACC;EACA;;AAGF;EACC;;;AAIF;EAEE;IACC;IACA;IACA;;EACA;IACC;IACA;;EACA;IACC;IACA;;EAIH;IACC;;EAED;IACC;;EAED;IACC;;EAED;IACC;;EACA;IACC;;EAED;IACC;;EAGF;IACC;;EAED;IACC;;;AAKH;EAEE;IACC;IACA;;EACA;IACC;;EAGF;IACC;;EAED;IACC;;EAED;IACC;;EAED;IACC;;EAED;IACC;;;AR/GH;EACI;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;;AAIJ;EACI;;;AAEJ;EACI;EACA;EACA;EACA;;;AAEJ;EACI;EACA;EACA;EACA;;AACA;EACI;;;AAGR;EACI;;;AAEJ;EACI;;;AAEJ;EACI;;;AAIJ;EACI;EACA;EACA;EACA;EACA;;AACA;EACI;EACA;EACA;EACA;;AAEJ;EACI;EACA;;AACA;EACI;EACA;;AACA;EACI;EACA;EACA;EACA;EACA;;AACA;EACI;EACA;EACA;EACA;EACA;;AAIZ;EACI;EACA;EACA;;AAGR;EACI;;AACA;EACI;EACA;;AAEJ;EACI;EACA;EACA;;AAGR;EACI;;AACA;EACI;EACA;EACA;;AAEI;EACI;;AAEJ;EACI;;AAEJ;EACI;;AAEJ;EACI;EACA;;AAEJ;EACI;EACA;;AAEJ;EACI;EACA;EACA;EACA;EACA;;AAEJ;EACI;EACA;EACA;EACA;;AAEJ;EACI;EACA;;AAEJ;EACI;EACA;;AAKhB;EACI;EACA;EACA;;AAGQ;EACI;;AAIJ;EACI;EACA;;AAKhB;EACI;;AACA;EACI;;AAEJ;EACI;;AAEJ;EACI;EACA;;AAEJ;EACI;EACA;EACA;;AAGR;EACI;;AACA;EACI;;AAEJ;EACI;;AACA;EACI;EACA;;AACA;EACI;EACA;EACA;;AAEJ;EACI;EACA;EACA;;AACA;EACI;;AAEJ;EACI;EACA;EACA;;AACA;EACI;EACA;EACA;EACA;;AAEJ;EACI;EACA;EACA;EACA;;AAMpB;EACI;EACA;EACA;EACA;EACA;;AACA;EACI;;;AAOhB;EACI;EACA;EACA;EACA;;AACA;EACI;EACA;EACA;;AAEI;EACI;EACA;EACA;;AAEJ;EACI;;;AAOhB;EACI;EACA;EACA;EACA;;AACA;EACI;EACA;EACA;EACA;EACA;;AACA;EACI;EACA;;AAEJ;EACI;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AACA;EACI;;AAIZ;EACI;;AAEJ;EACI;;AAEI;EACI;;AAIZ;EACI;;AAEJ;EACI;EACA;EACA;EACA;;AACA;EACI;EACA;EACA;EACA;EACA;EACA;;AACA;EACI;EACA;EACA;EACA;;AAEJ;EACI;;AAGR;EACI;;;AAMZ;EACI;EACA;EACA;EACA;EACA;EACA;;AACA;EACI;EACA;EACA;EACA;;AAEJ;EACI;;AAEJ;EACI;;AACA;EACI;EACA;EACA;;AAEJ;EACI;EACA;;;ASxXZ;EAGG;IACC;;;AAMJ;EAEE;IACC;IACA;;;AAKH;EACC;IACC;;EAED;IACC;;EAIC;IACC;;EAKA;IACC;IACA;;EACA;IACC;;EAED;IACC;;EAED;IACC;;EAED;IACC;IACA;;EAED;IACC;IACA;;;AAQN;EAGG;IACC;;EAID;IACC;;EAEC;IACC;;EAMH;IACC;;EACA;IACC;IACA;;EACA;IACC;;EAGF;IACC;IACA;;EAMH;IACC;IACA;;;AAKH;EAEE;IACC;;;AAKH;EAEE;IACC;;EAGA;IACC;IACA;;EAEC;IACC;;EACA;IACC;;EAKJ;IACC;;EAKA;IACC;IACA;;EAKF;IACC;;;AAMJ;EAEE;IACC;IACA;;;AAIH;EACC;IACC;;EAKE;IACC%22,%22file%22:%22app.output.css%22%7D */
