* {
  box-sizing: border-box;
}

html {
  font-size: 16px;
}

@media (max-width: 1199px) {
  html {
    font-size: 15px;
  }
}
html, body {
  margin: 0;
}

body {
  font-family: "Montserrat", sans-serif;
  font-size: 1rem;
  line-height: 1.3;
  color: #025168;
}

h1, h2, h3, ul, p {
  margin: 0;
  padding: 0;
}

h1 {
  text-align: center;
  font-size: 3.8rem;
  line-height: 1.2;
  font-weight: 500;
  text-transform: uppercase;
  color: white;
}

@media (max-width: 767px) {
  h1 {
    font-size: 2rem;
  }
}
h2 {
  text-align: center;
  font-size: 2.8rem;
  font-weight: 500;
  padding: 0 0 1.5rem;
  margin: 0 0 4rem;
  text-transform: uppercase;
  color: #025168;
  position: relative;
}
h2:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 6.5rem;
  height: 6px;
  border-radius: 6px;
  background: linear-gradient(to right, #6EC7F8, #4288BA);
}

@media (max-width: 767px) {
  h2 {
    font-size: 1.6rem;
    margin: 0 0 2.5rem;
  }
  h2:after {
    width: 4rem;
  }
}
h3 {
  font-size: 1.6rem;
  font-weight: 500;
  text-transform: uppercase;
}

@media (max-width: 767px) {
  h3 {
    font-size: 1.2rem;
  }
}
p, ul {
  margin: 0 0 2rem;
}
p:last-child, ul:last-child {
  margin: 0;
}

strong {
  font-weight: 600;
}

a {
  color: #025168;
  text-decoration: none;
  transition: color 0.3s ease;
}
a:hover {
  color: #30C9FF;
}

section {
  padding: 3rem 0;
}

iframe {
  position: relative;
  z-index: 1;
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
}

form {
  /* CONTACT FORM 7 */
}
form button {
  font-family: "Montserrat", sans-serif;
  font-size: 1rem;
}
form .form-group {
  margin: 0 0 2rem;
}
form .form-group.select {
  position: relative;
}
form .form-group.select:after {
  content: "";
  position: absolute;
  right: 0;
  top: 12px;
  border: solid #30C9FF;
  border-width: 0 2px 2px 0;
  padding: 5px;
  transform: rotate(45deg);
  pointer-events: none;
}
form .form-group.select select {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  text-transform: uppercase;
  background: none;
}
form .form-group .form-control, form .form-group .form-control-textarea {
  width: 100%;
  border: 0;
  padding: 0;
  font-family: "Montserrat", sans-serif;
  font-size: 1rem;
  border-bottom: solid 2px #30C9FF;
  height: 42px;
  line-height: 42px;
  font-weight: 500;
  color: #025168;
  border-radius: 0;
  box-shadow: none;
  transition: border-color 0.3s ease;
}
form .form-group .form-control::-moz-placeholder, form .form-group .form-control-textarea::-moz-placeholder {
  color: #025168;
  text-transform: uppercase;
}
form .form-group .form-control:-ms-input-placeholder, form .form-group .form-control-textarea:-ms-input-placeholder {
  color: #025168;
  text-transform: uppercase;
}
form .form-group .form-control::placeholder, form .form-group .form-control-textarea::placeholder {
  color: #025168;
  text-transform: uppercase;
}
form .form-group .form-control:focus, form .form-group .form-control-textarea:focus {
  outline: 0;
  border-bottom-color: #025168;
}
form .form-group .form-control-textarea {
  line-height: 1.4;
  height: 200px;
  resize: none;
}
form .wpcf7-spinner {
  top: 8px;
}
form .wpcf7-not-valid-tip {
  padding-top: 0.5rem;
}
form .wpcf7-response-output {
  margin: 2rem 0 0 !important;
  padding: 1rem !important;
  background: rgba(2, 81, 104, 0.3) !important;
  border: 0 !important;
}

/* HEADER - FOOTER */
header {
  position: -webkit-sticky;
  position: sticky;
  z-index: 2;
  top: 0;
  left: 0;
  right: 0;
  background: white;
  font-weight: 600;
  text-transform: uppercase;
  transition: transform 0.3s ease;
}
header.home {
  position: absolute;
  top: 45px;
  background: transparent;
}
header.home.hide {
  transform: translateY(-100px);
}
header.home.sticky {
  position: fixed;
  z-index: 4;
  transform: translateY(-45px);
  background: white;
}
header .wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100px;
}
header .wrapper nav ul {
  display: flex;
  margin: 0;
}
header .wrapper nav ul li {
  list-style: none;
}
header .wrapper nav ul li.current-menu-item a {
  color: #30C9FF;
}
header .wrapper nav ul li:last-child a {
  background: #025168;
  border-radius: 50px;
  color: white;
  transition: background 0.3s ease;
}
header .wrapper nav ul li:last-child a:hover {
  background: #30C9FF;
}
header .wrapper nav ul li:last-child a:after {
  content: none;
}
header .wrapper nav ul li:nth-last-child(2) a:after {
  content: none;
}
header .wrapper nav ul li a {
  display: block;
  padding: 0.75rem 2rem;
  position: relative;
}
header .wrapper nav ul li a:after {
  content: "";
  position: absolute;
  top: 0.75rem;
  right: -1px;
  bottom: 0.75rem;
  border-right: solid 2px #30C9FF;
}
header .wrapper nav .burger {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  aspect-ratio: 1/1;
  background: rgba(255, 255, 255, 0.5) no-repeat center right/50px auto url(../images/burger-open.svg);
  display: none;
}
header .wrapper nav .burger.on {
  background: rgba(255, 255, 255, 0.5) no-repeat center right/50px auto url(../images/burger-close.svg);
}

@media (max-width: 1199px) {
  header .wrapper nav ul li a {
    padding: 0.75rem 1.5rem;
  }
}
@media (max-width: 991px) {
  header.on .wrapper nav ul {
    display: block;
  }
  header.on .wrapper nav ul li a:after {
    content: none;
  }
  header .wrapper {
    height: 70px;
  }
  header .wrapper nav .burger {
    display: block;
  }
  header .wrapper nav ul {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: 70px;
    padding: 1rem;
    background: #F5F5F5;
  }
}
footer {
  background: #163648;
  color: white;
  padding: 3rem 0;
  border-bottom: solid 1px rgba(255, 255, 255, 0.5);
  position: relative;
}
footer + .copyright {
  background: #002734;
  font-size: 0.8rem;
  font-weight: 500;
  text-align: center;
  padding: 1rem 0;
  color: #0889BD;
}
footer + .copyright a {
  color: #0889BD;
}
footer + .copyright a:hover {
  color: white;
}
footer img {
  max-width: 90%;
}
footer ul {
  margin: 0;
}
footer ul li {
  list-style: none;
  margin: 0 0 1.5rem;
}
footer ul li a {
  color: white;
}
footer .adresse {
  position: relative;
}
footer .adresse:before {
  content: "";
  position: absolute;
  top: -5px;
  left: -30px;
  width: 25px;
  height: 25px;
  background: no-repeat center/25px url(../images/adresse.svg);
}
footer .telephone, footer .email {
  position: relative;
  padding: 0 0 0 30px;
}
footer .telephone:before, footer .email:before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  width: 25px;
  height: 25px;
}
footer .telephone:before {
  background: no-repeat center/25px url(../images/telephone.svg);
}
footer .email:before {
  background: no-repeat center/25px url(../images/email.svg);
}
footer .social ul {
  display: flex;
}
footer .social ul li {
  margin: 0 0.5rem 0 0;
}
footer .social ul li a {
  display: block;
  width: 25px;
  height: 25px;
  background: white;
  transition: background 0.3s ease;
}
footer .social ul li a.facebook {
  -webkit-mask: no-repeat center/25px url(../images/facebook.svg);
          mask: no-repeat center/25px url(../images/facebook.svg);
}
footer .social ul li a.linkedin {
  -webkit-mask: no-repeat center/25px url(../images/linkedin.svg);
          mask: no-repeat center/25px url(../images/linkedin.svg);
}
footer .social ul li a:hover {
  background: #30C9FF;
}
footer .btn.rounded {
  padding: 0.75rem 2rem;
}
footer .btn.rounded:before {
  content: none;
}
footer .logo-acieo {
  margin: 0 0 1rem;
}

@media (max-width: 991px) {
  footer .adresse:before {
    content: none;
  }
  footer .social {
    margin: 0 0 2rem;
  }
}
/* CLASSES */
/* RESPONSIVE */
.mobile {
  display: none;
}

@media (max-width: 767px) {
  .desktop {
    display: none;
  }
  .mobile {
    display: block;
  }
}
/* BACKGROUND */
.bg {
  background: #F5F5F5;
}

/* TEXTE */
.text-center {
  text-align: center;
}

.text-right {
  text-align: right;
}

@media (max-width: 767px) {
  .text-right {
    text-align: left;
  }
}
/* IMAGES */
.image img {
  width: 100%;
  height: auto;
}

/* OWL */
.owl-carousel {
  box-shadow: 0 0 30px rgba(2, 81, 104, 0.2);
}
.owl-carousel .owl-dots {
  position: absolute;
  z-index: 2;
  left: 0;
  bottom: 0;
  right: 0;
  padding: 2rem 0 1.5rem 0;
  display: flex;
  justify-content: center;
  background: linear-gradient(to top, rgba(255, 255, 255, 0.7), transparent);
}
.owl-carousel .owl-dots .owl-dot {
  width: 10px;
  height: 10px;
  border-radius: 10px;
  background: #025168;
  margin: 0 0.25rem;
}
.owl-carousel .owl-dots .owl-dot.active {
  background: #30C9FF;
}

/* CARD */
.card {
  box-shadow: 0 0 30px rgba(2, 81, 104, 0.2);
}

/* BOUTON */
.btn {
  color: #0889BD;
  text-transform: uppercase;
  font-weight: 600;
  padding: 0 0 0 50px;
  display: inline-block;
  cursor: pointer;
  position: relative;
  transition: color 0.3s ease, background 0.3s ease;
}
.btn.rounded {
  background: #0889BD;
  border-radius: 50px;
  padding: 0.75rem 2rem 0.75rem calc(45px + 2rem);
  color: white;
  border: 0;
}
.btn.rounded.gradient {
  background: linear-gradient(to right, #0889BD, #30C9FF);
  padding: 0.75rem 2rem;
}
.btn.rounded.gradient:before {
  content: none;
}
.btn.rounded:hover {
  background: #30C9FF;
  color: white;
}
.btn.rounded:hover:before {
  background: white;
}
.btn.rounded:before {
  background: white;
  left: 1rem;
}
.btn:hover {
  color: #30C9FF;
}
.btn:hover:before {
  background: #30C9FF;
}
.btn:before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  width: 45px;
  height: 15px;
  background: #0889BD;
  -webkit-mask: no-repeat center/45px auto url(../images/fleche.svg);
          mask: no-repeat center/45px auto url(../images/fleche.svg);
  transition: background 0.3s ease;
}

@media (max-width: 767px) {
  .btn {
    font-size: 0.9rem;
  }
}
/* TOP */
.top {
  background: #025168;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
}
.top .wrapper {
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.top .wrapper ul {
  display: flex;
  margin: 0;
}
.top .wrapper ul li {
  list-style: none;
}
.top .wrapper ul li:last-child a:after {
  content: none;
}
.top .wrapper ul li a {
  display: block;
  padding: 0 1.5rem;
  color: #0889BD;
  position: relative;
}
.top .wrapper ul li a:hover {
  color: white;
}
.top .wrapper ul li a:after {
  content: "";
  position: absolute;
  top: 0;
  right: -1px;
  bottom: 0;
  border-right: solid 2px #0889BD;
}

/* FEATURED */
.featured {
  position: relative;
  padding: 7rem 0;
}
.featured.home {
  padding-top: calc(7rem + 100px);
}
.featured.home:before {
  background: rgba(255, 255, 255, 0.25);
}
.featured.home h1 {
  margin: 0 0 2rem;
  padding: 1.5rem 0 0;
  color: #025168;
  text-align: left;
}
.featured.home h1:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 6.5rem;
  height: 6px;
  border-radius: 6px;
  background: linear-gradient(to right, #6EC7F8, #4288BA);
}
.featured:before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(2, 81, 104, 0.25);
}
.featured h1 {
  position: relative;
  z-index: 1;
}

@media (max-width: 767px) {
  .featured {
    padding: 5rem 0;
  }
}
/* ARIANE */
.ariane {
  padding: 2rem 0;
  font-size: 0.8rem;
  color: #848484;
}
.ariane a {
  color: #848484;
  text-decoration: underline;
}
.ariane a:hover {
  color: #30C9FF;
}

@media (max-width: 767px) {
  .ariane {
    padding: 2rem 0 0;
  }
}
/* ENTREPRISE */
.entreprise {
  padding-bottom: 0;
  color: white;
}
.entreprise .image {
  position: relative;
  z-index: 1;
}
.entreprise .description {
  position: relative;
  top: -4rem;
  background: linear-gradient(to right, #025168, #30C9FF);
  padding: 6rem 2rem 2rem;
  border-radius: 15px;
}
.entreprise .description .btn {
  color: white;
}
.entreprise .description .btn:before {
  background: white;
}

/* EXPERTISE / MOYENS */
.expertises .wrapper, .moyens .wrapper {
  display: flex;
  flex-wrap: wrap;
  max-width: 80%;
  margin: auto;
  color: white;
}
.expertises .wrapper .element, .moyens .wrapper .element {
  width: calc(33.3333333333% - 1rem);
  margin: 0.5rem;
  aspect-ratio: 1/1;
  background: red;
  position: relative;
  overflow: hidden;
  transition: background 0.3s ease;
}
.expertises .wrapper .element:hover img, .moyens .wrapper .element:hover img {
  transform: scale(1.1);
  transform-origin: 50%;
}
.expertises .wrapper .element:hover .over, .moyens .wrapper .element:hover .over {
  opacity: 1;
}
.expertises .wrapper .element:hover .over div, .moyens .wrapper .element:hover .over div {
  transform: translateX(0);
}
.expertises .wrapper .element:before, .moyens .wrapper .element:before {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
}
.expertises .wrapper .element img, .moyens .wrapper .element img {
  width: 100%;
  height: 100%;
  position: relative;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.3s ease;
}
.expertises .wrapper .element > h3, .moyens .wrapper .element > h3 {
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  z-index: 1;
  padding: 2rem;
  margin: 0 0 2rem;
}
.expertises .wrapper .element .over, .moyens .wrapper .element .over {
  position: absolute;
  z-index: 2;
  inset: 0;
  padding: 2rem;
  opacity: 0;
  overflow: hidden;
  transition: opacity 0.3s ease;
}
.expertises .wrapper .element .over div, .moyens .wrapper .element .over div {
  display: flex;
  height: 100%;
  flex-direction: column;
  justify-content: flex-end;
  transform: translateX(-100%);
  transition: transform 0.3s ease;
}
.expertises .wrapper .element .over h3, .moyens .wrapper .element .over h3 {
  padding: 0;
}
.expertises .wrapper .element .over p, .moyens .wrapper .element .over p {
  margin: 0 0 1rem;
}
.expertises .wrapper .element .over p:last-child, .moyens .wrapper .element .over p:last-child {
  margin: 0;
}
.expertises .wrapper .element .over .btn, .moyens .wrapper .element .over .btn {
  color: white;
}
.expertises .wrapper .element .over .btn:hover, .moyens .wrapper .element .over .btn:hover {
  color: #30C9FF;
}
.expertises .wrapper .element .over .btn:hover:before, .moyens .wrapper .element .over .btn:hover:before {
  background: #30C9FF;
}
.expertises .wrapper .element .over .btn:before, .moyens .wrapper .element .over .btn:before {
  background: white;
}

@media (max-width: 767px) {
  .expertises, .moyens {
    padding-bottom: 0;
  }
  .expertises .wrapper, .moyens .wrapper {
    max-width: 100%;
  }
  .expertises .wrapper .element, .moyens .wrapper .element {
    background-size: cover !important;
    width: calc(100% + var(--bs-gutter-x));
    margin: 0 calc(var(--bs-gutter-x) * -0.5);
    aspect-ratio: 1/0.5;
  }
  .expertises .wrapper .element .over, .moyens .wrapper .element .over {
    opacity: 1;
  }
  .expertises .wrapper .element .over div, .moyens .wrapper .element .over div {
    transform: none;
  }
}
@media (max-width: 1399px) {
  .expertises .wrapper .element {
    aspect-ratio: 1/1.25;
  }
}
@media (max-width: 1199px) {
  .expertises .wrapper .element {
    aspect-ratio: 1/1.5;
  }
}
@media (max-width: 767px) {
  .expertises .wrapper .element {
    background: no-repeat center/cover var(--image);
    aspect-ratio: inherit;
  }
  .expertises .wrapper .element > h3 {
    position: relative;
    margin: 0;
    padding-bottom: 0;
  }
  .expertises .wrapper .element img {
    display: none;
  }
  .expertises .wrapper .element .over {
    position: relative;
  }
}
.moyens .wrapper .element {
  aspect-ratio: 1/1.5;
}
.moyens .wrapper .element .over {
  justify-content: flex-start;
}

@media (max-width: 767px) {
  .moyens .wrapper .element {
    aspect-ratio: auto;
  }
  .moyens .wrapper .element > h3 {
    display: none;
  }
  .moyens .wrapper .element .over {
    position: relative;
  }
}
/* CHIFFRES */
.chiffres ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: 0;
}
.chiffres ul li {
  list-style: none;
  width: 25%;
  text-align: center;
  margin: 0 0 4rem;
  padding: 0 1rem;
  position: relative;
}
.chiffres ul li:nth-child(1):before, .chiffres ul li:nth-child(2):before, .chiffres ul li:nth-child(3):before, .chiffres ul li:nth-child(4):before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  border-right: solid 2px #30C9FF;
}
.chiffres ul li:nth-child(4):before {
  content: none;
}
.chiffres ul li:nth-child(4), .chiffres ul li:nth-child(5) {
  margin: 0;
}
.chiffres ul li strong {
  display: block;
  font-size: 2.1rem;
  color: #0889BD;
  font-weight: 500;
}
.chiffres ul li span {
  display: block;
  font-weight: 600;
}

@media (max-width: 767px) {
  .chiffres ul li {
    width: 50%;
  }
  .chiffres ul li:nth-child(2):before, .chiffres ul li:nth-child(4):before {
    content: none;
  }
  .chiffres ul li:nth-child(3):before {
    content: "";
  }
}
/* ATOUTS */
.atouts {
  color: white;
  background: #30C9FF;
  padding-bottom: 0;
}
.atouts h2 {
  color: white;
}
.atouts h2:after {
  background: white;
}
.atouts .atout {
  text-align: center;
  margin: 0 0 3rem;
}
.atouts .atout img {
  width: 80%;
  max-width: 200px;
  margin: 0 0 1rem;
}

/* ANCRES */
.ancres {
  font-size: 0.8rem;
  font-weight: 600;
  color: #F5F5F5;
  text-transform: uppercase;
}
.ancres .wrapper {
  background: linear-gradient(to right, #025168, #30C9FF);
  border-radius: 15px;
  padding: 1rem 0;
}
.ancres .wrapper ul {
  display: flex;
  justify-content: center;
  margin: 0;
}
.ancres .wrapper ul li {
  list-style: none;
  margin: 0 1rem;
  position: relative;
  cursor: pointer;
}
.ancres .wrapper ul li:not(:last-child):after {
  content: "";
  position: absolute;
  top: 0;
  right: -1rem;
  bottom: 0;
  border-right: solid 2px #F5F5F5;
}

@media (max-width: 767px) {
  .ancres {
    padding-bottom: 0;
  }
  .ancres .wrapper {
    border-radius: 0;
    margin: 0 calc(var(--bs-gutter-x) * -0.5);
  }
  .ancres .wrapper ul {
    flex-direction: column;
  }
  .ancres .wrapper ul li:not(:last-child) {
    margin: 0 1rem 1rem;
  }
  .ancres .wrapper ul li:not(:last-child):after {
    width: 1rem;
    bottom: -0.5rem;
    right: calc(100% - 1rem);
    border: 0;
    border-bottom: solid 2px #F5F5F5;
  }
}
/* GENERIQUE */
.generique p + ul {
  margin-top: -2rem;
}
.generique ul li {
  list-style: none;
  padding: 0 0 0 20px;
  position: relative;
}
.generique ul li:before {
  content: "";
  position: absolute;
  top: 10px;
  left: 0;
  width: 14px;
  border-bottom: solid 2px #30C9FF;
}
.generique .slider {
  border-radius: 15px;
  overflow: hidden;
}
.generique .slider img {
  width: 100%;
  height: auto;
}

@media (max-width: 767px) {
  .generique .slider {
    margin: 0 0 2rem;
  }
  .generique .texte-image {
    margin: 0 0 2rem;
  }
}
/* RECRUTEMENT */
.recrutement {
  color: white;
  margin: 0 0 4rem;
  position: relative;
}
.recrutement:before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(2, 81, 104, 0.5);
}
.recrutement > div {
  position: relative;
  z-index: 1;
}
.recrutement h2 {
  color: white;
}
.recrutement h2:after {
  background: white;
}
.recrutement .temoignages {
  position: relative;
}
.recrutement .temoignages .wrapper {
  background: white;
  border-radius: 15px;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 2rem;
  box-shadow: 0 0 30px rgba(2, 81, 104, 0.2);
  text-align: center;
  color: #025168;
}
.recrutement .temoignages .wrapper:before {
  content: "";
  position: absolute;
  inset: 0;
  background: no-repeat -20% -20%/50% auto url(../images/quote.svg);
}
.recrutement .temoignages .wrapper .titre {
  font-size: 2rem;
  text-transform: uppercase;
  font-weight: 500;
  color: #0889BD;
}
.recrutement .temoignages .wrapper .owl-carousel {
  box-shadow: none;
}
.recrutement .temoignages .wrapper .owl-carousel .owl-dots {
  padding: 0;
}
.recrutement .temoignages .wrapper .temoignage {
  padding: 4rem 6rem;
}

@media (max-width: 767px) {
  .recrutement .temoignages .wrapper {
    position: relative;
    top: 4rem;
  }
  .recrutement .temoignages .wrapper .temoignage {
    padding: 2rem 0 4rem;
  }
}
/* REALISATIONS */
.realisations .wrapper {
  margin: 0 0 2rem;
}
.realisations .realisation {
  margin: 0 0 var(--bs-gutter-x);
}
.realisations .realisation.large {
  color: white;
  padding: 2rem;
  height: calc(100% - var(--bs-gutter-x));
  position: relative;
}
.realisations .realisation.large:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
  height: 50%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.5), transparent);
}
.realisations .realisation.large .over {
  position: relative;
  z-index: 1;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.realisations .realisation.large .over .client {
  font-size: 1.5rem;
}
.realisations .realisation.large .over .client span:before {
  border-color: white;
}
.realisations .realisation.large .over .btn {
  color: white;
}
.realisations .realisation.large .over .btn:before {
  background: white;
}
.realisations .realisation p {
  margin: 0 0 1rem;
}
.realisations .realisation p:last-child {
  margin: 0;
}
.realisations .realisation .image {
  aspect-ratio: 1/1;
}
.realisations .realisation .client {
  font-size: 1.1rem;
  font-weight: 300;
  margin: 0 0 1rem;
  text-transform: uppercase;
}
.realisations .realisation .client span {
  display: inline-block;
  padding: 0 0 0 0.5rem;
  position: relative;
}
.realisations .realisation .client span:before {
  content: "";
  position: absolute;
  top: 4px;
  left: 0;
  bottom: 4px;
  border-left: solid 1px #0889BD;
}

/* NOUS TROUVER */
.nous-trouver .card {
  padding: 2rem;
  border-radius: 15px;
}
.nous-trouver .card img {
  margin: 0 0 1rem;
}
.nous-trouver .card p {
  margin: 0 0 1rem;
}
.nous-trouver .card p:last-child {
  margin: 0;
}

@media (max-width: 991px) {
  .nous-trouver .card {
    margin: 0 0 2rem;
  }
}
/* EQUIPES */
.equipes .onglets {
  display: flex;
  flex-wrap: wrap;
}
.equipes .onglets > ul {
  width: 25%;
  margin: 0;
}
.equipes .onglets > ul li {
  font-weight: 500;
  list-style: none;
  background: white;
  text-transform: uppercase;
  padding: 0.5rem 2rem;
  border-radius: 15px 0 0 15px;
  margin: 0 0 0.5rem;
  cursor: pointer;
  transition: background 0.3s ease;
}
.equipes .onglets > ul li.on {
  background: linear-gradient(to right, #025168, #0889BD);
  color: white;
}
.equipes .onglets > ul li:hover:not(.on) {
  background: gainsboro;
}
.equipes .onglets .onglet {
  min-height: 100%;
  width: 75%;
  border-radius: 0 15px 15px 15px;
  box-shadow: 0 0 30px rgba(2, 81, 104, 0.2);
  padding: 4rem;
  background: white;
  display: none;
}
.equipes .onglets .onglet.on {
  display: block;
}
.equipes .onglets .onglet ul li {
  margin: 0 0 1.5rem 1rem;
}
.equipes .onglets .onglet ul li:last-child {
  margin-bottom: 0;
}

@media (max-width: 767px) {
  .equipes .onglets > ul {
    width: 100%;
    margin: 0 0 1rem;
  }
  .equipes .onglets > ul li {
    margin-right: calc(var(--bs-gutter-x) * -0.5);
  }
  .equipes .onglets .onglet {
    border-radius: 0 15px 15px 0;
    width: calc(100% + var(--bs-gutter-x) * 0.5);
    margin-left: calc(var(--bs-gutter-x) * -0.5);
    padding: 2rem;
  }
}
/* NOTRE HISTOIRE */
.histoire .frise {
  margin: 4rem 8rem 2rem;
  position: relative;
}
.histoire .frise:after {
  content: "";
  position: absolute;
  bottom: 0;
  height: 4rem;
  right: calc(50% - 1px);
  width: 2px;
  background: linear-gradient(to top, white, transparent);
}
.histoire .frise ul {
  margin: 0;
  padding: 2rem 0;
  position: relative;
}
.histoire .frise ul:before {
  content: "";
  position: absolute;
  top: 0px;
  right: calc(50% - 1px);
  height: 2rem;
  border-right: dotted 2px #30C9FF;
}
.histoire .frise ul:after {
  content: "";
  position: absolute;
  bottom: 0px;
  right: calc(50% - 1px);
  height: 2rem;
  border-right: solid 2px #30C9FF;
}
.histoire .frise ul li {
  list-style: none;
  display: none;
  padding: 0 0 3rem;
  position: relative;
}
.histoire .frise ul li.on {
  display: flex;
}
.histoire .frise ul li:before {
  content: "";
  position: absolute;
  top: 0;
  right: calc(50% - 1px);
  bottom: 0;
  border-right: solid 2px #30C9FF;
}
.histoire .frise ul li:nth-child(even) span {
  order: 2;
  text-align: left;
}
.histoire .frise ul li:nth-child(even) span:before {
  display: block;
}
.histoire .frise ul li:nth-child(even) span:after {
  display: none;
}
.histoire .frise ul li:nth-child(even) p {
  text-align: right;
}
.histoire .frise ul li span {
  width: 50%;
  padding: 0 1.5rem;
  font-size: 2.1rem;
  color: #0889BD;
  font-weight: 500;
  text-align: right;
  position: relative;
  top: -12px;
}
.histoire .frise ul li span:before, .histoire .frise ul li span:after {
  content: "";
  position: absolute;
  top: 14px;
  width: 16px;
  height: 16px;
  border-radius: 10px;
  background: #025168;
}
.histoire .frise ul li span:before {
  left: -8px;
  display: none;
}
.histoire .frise ul li span:after {
  right: -8px;
}
.histoire .frise ul li p {
  width: 50%;
  padding: 0 1.5rem;
}
.histoire .card {
  margin: 2rem 0 0 0;
  text-align: center;
  padding: 2rem;
  border-radius: 15px;
}
.histoire .card img {
  margin: 0 0 1rem;
}
.histoire .card .titre {
  font-size: 2rem;
  text-transform: uppercase;
  font-weight: 500;
  color: #0889BD;
  margin: 0 0 2rem;
}

@media (max-width: 767px) {
  .histoire .frise {
    margin: 4rem 0 2rem;
  }
  .histoire .frise:after {
    right: calc(100% - 9px);
  }
  .histoire .frise ul:before, .histoire .frise ul:after {
    right: calc(100% - 9px);
  }
  .histoire .frise ul li:before {
    right: calc(100% - 9px);
  }
  .histoire .frise ul li:nth-child(even) p {
    order: 2;
    text-align: left;
  }
  .histoire .frise ul li span {
    font-size: 1.6rem;
    width: 30%;
    padding: 0 0 0 2rem;
    text-align: left;
    top: -8px;
  }
  .histoire .frise ul li span:before {
    top: 8px;
    left: 0;
  }
  .histoire .frise ul li span:after {
    right: inherit;
    left: 0;
  }
  .histoire .frise ul li p {
    width: 70%;
  }
  .histoire .card .titre {
    font-size: 1.5rem;
  }
}
/* PARTICULIER */
.particulier img {
  max-width: 100%;
  width: auto;
}

/* CONTACT FIXE */
.contact-sticky {
  position: fixed;
  z-index: 3;
  top: 25vh;
  right: 0;
}
.contact-sticky ul {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  margin: 0;
}
.contact-sticky ul li {
  list-style: none;
  width: 4rem;
  margin: 0 0 0.5rem;
  background: #025168;
  border-radius: 50px 0 0 50px;
  transition: width 0.3s ease, background 0.3s ease;
}
.contact-sticky ul li:hover {
  background: #30C9FF;
  width: 5rem;
}
.contact-sticky ul li:hover a {
  background: white;
}
.contact-sticky ul li a {
  position: relative;
  display: block;
  height: 45px;
  background: #30C9FF;
  transition: width 0.3s ease, background 0.3s ease;
}
.contact-sticky ul li a.telephone {
  -webkit-mask: no-repeat 1rem 50%/25px url(../images/telephone.svg);
          mask: no-repeat 1rem 50%/25px url(../images/telephone.svg);
}
.contact-sticky ul li a.email {
  -webkit-mask: no-repeat 1rem 50%/25px url(../images/email.svg);
          mask: no-repeat 1rem 50%/25px url(../images/email.svg);
}

@media (max-width: 767px) {
  .contact-sticky {
    display: none;
  }
}
/* BACK TO TOP */
.back-top {
  position: absolute;
  z-index: 3;
  top: -22.5px;
  right: 0;
  height: 45px;
  width: 4rem;
  background: #025168;
  border-radius: 50px 0 0 50px;
  display: none;
  transition: background 0.3s ease;
}
.back-top:hover {
  background: #30C9FF;
}
.back-top:hover:before {
  border-color: white;
}
.back-top:before {
  content: "";
  position: absolute;
  top: 19px;
  left: 20px;
  border: solid #30C9FF;
  border-width: 0 2px 2px 0;
  padding: 8px;
  transform: rotate(-135deg);
  transition: border 0.3s ease;
}

@media (max-width: 767px) {
  .back-top {
    display: block;
  }
}
/* REALISATION SINGLE */
.single-realisation .btn {
  padding: 0;
}
.single-realisation .btn:before {
  content: none;
}/*# sourceMappingURL=styles.css.map */

/*Menu_secondaire*/
.menu_secondaire {
	font-size:16px;
}