@charset "UTF-8";
@font-face {
  font-family: "AvenirLTStd-Book";
  src: url("../fonts/AvenirLTStd-Book.CaHpovFe.otf") format("opentype");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "AvenirLTStd-Light";
  src: url("../fonts/AvenirLTStd-Light.yk4ImKKy.otf") format("opentype");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "AvenirLTStd-Heavy";
  src: url("../fonts/AvenirLTStd-Heavy.0dmshnxR.otf") format("opentype");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "AvenirLTStd-Roman";
  src: url("../fonts/AvenirLTStd-Roman.C3wJAWZX.otf") format("opentype");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "OpenSans-Bold";
  src: url("../fonts/OpenSans-Bold.DGvYQtcs.ttf") format("truetype");
  font-weight: bold;
  font-style: normal;
}
@font-face {
  font-family: "OpenSans-Light";
  src: url("../fonts/OpenSans-Light.3sf3dutu.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
}
@font-face {
  font-family: "OpenSans-Medium";
  src: url("../fonts/OpenSans-Medium.DVUZMR_6.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: "OpenSans-Regular";
  src: url("../fonts/OpenSans-Regular.DxJTClRG.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "OpenSans-SemiBold";
  src: url("../fonts/OpenSans-SemiBold.D3TTYgdB.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
}

body {
  font-family: AvenirLTStd-Light, sans-serif;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  overflow-x: hidden;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: AvenirLTStd-Heavy, sans-serif !important;
}
footer h3 {
  font-family: OpenSans-Book, sans-serif !important;
  font-weight: 500 !important;
}
footer p {
  font-weight: 300 !important;
}
footer li a {
  font-weight: 300 !important;
}
nav {
  font-family: OpenSans-Light, sans-serif !important;
}
p {
  font-family: OpenSans-Light, sans-serif !important;
  font-weight: 300;
}
.menu-burger {
  display: none;
}
header {
  width: 100%;
}
header img {
  padding: 1rem;
}
header nav {
  z-index: 3000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100% !important;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
  border-bottom: 1px solid #666;
}
@media screen and (max-width: 1024px) {
  header nav {
    flex-direction: row-reverse;
    height: 100px;
  }
}

article p strong {
  font-family: "OpenSans-SemiBold", sans-serif !important;
}

header nav .menu {
  z-index: 3000;
}
/* header nav a img {
  animation: rotate360 0.4s linear;
} */
@keyframes rotate360 {
  0% {
    transform: rotate(0);
  }
  to {
    transform: rotate(360deg);
  }
}
header .cta {
  position: relative;
}
@media screen and (max-width: 1024px) {
  header .cta {
    display: none;
  }
  header nav a img {
    margin-top: 2rem;
  }
}
header .cta .green-button {
  margin-top: 0;
  font-size: 1rem;
  margin-right: 1rem;
}
header .cta .green-button:hover {
  transform: scale(1.05);
  color: #fff;
}
header .cta span {
  position: absolute;
  width: 1px;
  height: 85px;
  left: -2rem;
  top: -0.38rem;
  background-color: #666;
}
header div ul {
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.current-menu-item a,
.current-menu-parent > a {
  color: #ff8774 !important;
}

/* modification de code pour les enfants dans les menu */

.menu-item-has-children {
  position: relative;
  margin-right: 20px;
}

.menu-item-has-children::after {
  content: " ";
  background-image: url("../icones/arrow-menu.svg");
  background-size: auto;
  background-repeat: no-repeat;
  background-position: center;
  width: 20px;
  height: 20px;
  position: absolute;
  top: 50%;
  transform: translate(0%, -50%) rotate(0deg);
  transition: all 0.3s ease-in-out;
  right: -22px;
}

@media screen and (max-width: 1024px) {
  li:has(ul.sub-menu.active)::after {
    display: none;
  }
  li:not(:has(ul.sub-menu.active))::after {
    display: flex;
  }
  .menu-item-has-children {
    margin-right: 0.55rem !important;
  }
  a {
    padding: 0;
    font-size: 24px !important;
    font-weight: 600;
  }
  .sub-menu a {
    font-weight: 400;
  }
  header div ul li:nth-child(1) img {
    width: 12px;
    padding: 0;
    margin-left: 10px !important;
  }
  .menu-item-has-children ul.sub-menu.active {
    display: flex !important;
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }
}

.menu-item-has-children:hover::after {
  transform: translate(0%, -50%) rotate(180deg);
}

/* -------- */

header div ul li {
  cursor: pointer;
  list-style: none;
}
header div ul li a {
  margin-left: 1.5rem;
  text-decoration: none;
  color: #000;
}
header div ul li a:hover {
  color: #ff8774;
}

header div ul li:nth-child(1) {
  display: flex;
  align-items: center;
}
header div ul li:nth-child(1) img {
  width: 12px;
  padding: 0;
  margin-left: 10px !important;
}

header nav .menu > ul:nth-child(1) {
  position: relative;
}
@media screen and (max-width: 1024px) {
  header nav .menu > ul:nth-child(1) {
    padding-top: 3rem;
  }
}
header nav .menu > ul:nth-child(1) ul {
  position: absolute;
  display: none;
  flex-direction: column;
  justify-content: center;
  top: 50px;
  opacity: 0;
  min-width: max-content;
  z-index: 6000;
}

/* header nav .menu > ul:nth-child(1) ul li {
  min-width: 230px;
  margin-top: 1rem;
} */

header nav .menu > ul:nth-child(1) ul li:last-child {
  /* margin-bottom: 1rem; */
  width: max-content;
  /* margin-right: 1rem; */
}

header nav .menu > ul:nth-child(1) .active {
  opacity: 1;
  display: flex;
  background: #fff;
  border-bottom: 0.15px solid #ccc;
  border-left: 0.25px solid #ccc;
  box-shadow: -4px 10px 12px #00000005;
}

.sub-menu {
  position: absolute;
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: start;
  gap: 0.55rem;
  top: 50px;
  opacity: 0;
  min-width: max-content;
  z-index: 6000;
  padding: 1rem;
}

.sub-menu a {
  margin: 0;
}

header .wrapper-logo-menu {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;

  .menu {
    margin-left: auto;
    margin-right: 80px;
  }

  a.logo img {
    padding: 1.75rem 0;
    max-height: 55px;
  }

  @media screen and (max-width: 1024px) {
    a.logo img {
      padding: 1.75rem 0.5rem;
    }
  }
}
@media screen and (max-width: 1024px) {
  header .wrapper-logo-menu {
    width: fit-content;
    left: 0;
    padding: 1rem 0;

    a {
      padding-top: 2rem;
      z-index: 3500;
    }
  }
}
h2 {
  color: #000;
  font-size: 45px;
  font-weight: 700;
}
input[type="checkbox"] {
  margin: 0;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  -ms-appearance: none;
}
section {
  padding: 60px;
  margin-left: auto;
  margin-right: auto;
  max-width: 1512px;
}
.wrapper-section {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.wrapper-section-blog {
  background: #f9f9f9;
}
.green-button {
  margin-top: 2.5rem;
  background: #76c29e;
  text-decoration: none;
  text-transform: uppercase;
  display: flex;
  padding: 16px 40px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 47px;
  border: none;
  color: #fff;
  text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  font-family: inter, sans-serif;
  font-size: 20px;
  line-height: normal;
  transition: transform 0.3s ease-in-out;
}
.green-button:hover {
  transform: scale(1.05);
  background: #76c29e;
  color: #fff !important;
  border-color: #fff !important;
}
.transparent-button {
  background: transparent !important;
  border: 2px solid #76c29e;
  color: #76c29e !important;
  text-shadow: none;

  &:hover {
    background: #76c29e !important;
    color: #fff !important;
  }
}
.background-orange {
  background-color: #ff8774 !important;
  color: #fff;
}
.orange-btn {
  text-decoration: none;
  display: flex;
  padding: 16px 40px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 47px;
  border: none;
  background: linear-gradient(98deg, #eb5e5b 0.36%, #f9b872e6 91.53%);
  color: #fff;
  text-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
  font-family: inter, sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  text-transform: uppercase;
  transition: all 0.3s ease-in-out;
}
.orange-btn:hover {
  transform: rotate(1deg) scale(1.05);
}
.more {
  display: flex;
  justify-content: center;
  align-items: center;
}
.more img {
  display: flex;
  width: 20px !important;
  height: 20px !important;
  justify-content: center;
  align-items: center;
}
.more a {
  color: #ff8774;
  font-family: OpenSans-Medium, sans-serif !important;
  font-size: 16px;
  font-style: normal;
  line-height: normal;
  margin: 0;
  text-decoration: none;
}
.container_top_section {
  margin: auto;
  max-width: 1250px;
  display: flex;
  position: relative;
}
.container_top_section .text-scaled {
  margin-top: 0;
  font-family: Avenir, sans-serif;
  font-size: 3rem;
  font-weight: 800;
  line-height: normal;
}
.container-text {
  min-width: 40%;
}
.container-text .uptitle {
  display: flex;
  align-items: center;
}
.container-text .rectangle {
  margin-right: 10px;
  width: 21px;
  height: 2px;
  color: #000;
  background-color: #ff8774;
}
.container-text h2 {
  font-family: Arial, sans-serif;
  text-transform: uppercase;
  font-size: 1.5rem;
  color: #ff8774;
  position: relative;
  font-weight: 500;
}
.container-text .arrow-carousel-container {
  display: flex;
  position: absolute;
  top: 300px;
}
.container-text .arrow-carousel-container img {
  margin: 0 0.5rem;
  width: 60px;
  height: 60px;
}
.container-text .arrow-carousel-container img:hover {
  cursor: pointer;
  transform: scale(1.1);
}
.card-title {
  display: flex;
  justify-content: start;
  align-items: center;
}
.card-title div {
  display: flex;
  flex-direction: column;
  margin-left: 1.5rem;
  justify-content: center;
  width: 100%;
  gap: 0.8rem;
}
.card-title div.client {
  display: flex;
  margin-left: 0;
  justify-content: start;
  gap: 0.8rem;

  img {
    max-width: 120px;
    width: auto;
    object-fit: contain;
  }
}
.card-title div h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0;
}
.card-title div p {
  margin: 0;
}
.frame {
  padding: 1rem;
  padding-bottom: 0;
}
.tag {
  font-family: OpenSans-Regular, sans-serif !important;
  width: fit-content;
  display: flex;
  padding: 5px 16px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 25px;
  border: 1px solid #ccc;
  text-transform: uppercase;
}
.tag p {
  font-weight: 400;
  margin: 0;
}
p {
  line-height: 1.5rem;
}
.rounded-img {
  border-radius: 50%;
  width: 100px;
  height: 100px;
  border: #ff8774 2px solid;
}
.bg-hero {
  background-image: url("data:image/svg+xml,%3csvg%20width='1812'%20height='754'%20viewBox='0%200%201512%20754'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3cpath%20opacity='0.1'%20d='M-21%20657.44C163.157%20733.589%20567.8%20807.71%20713.113%20495.002C894.754%20104.118%20978.051%207.57833%201150.94%2034.0912C1319.37%2059.9206%201470.34%20300.803%201543%20438.751'%20stroke='url(%23paint0_linear_32_5)'%20stroke-width='60'%20stroke-linecap='round'/%3e%3cdefs%3e%3clinearGradient%20id='paint0_linear_32_5'%20x1='1454.77'%20y1='310.752'%20x2='61.1168'%20y2='609.312'%20gradientUnits='userSpaceOnUse'%3e%3cstop%20stop-color='%2376C29E'/%3e%3cstop%20offset='1'%20stop-color='%2376C29E'/%3e%3c/linearGradient%3e%3c/defs%3e%3c/svg%3e");
  background-position: center;
  background-repeat: no-repeat;
  padding-bottom: 2rem;
  margin-bottom: 1rem;
  align-items: flex-end !important;
}
.slogan {
  font-family: AvenirLTStd-Light, sans-serif !important;
  font-weight: 350;
  padding: 8px 28px;
  border-radius: 30px;
  background: #ff8774;
  color: #fff;
  width: max-content;
}
.container-hero-section {
  display: flex;
  justify-content: space-between;
  max-width: 1400px;
  padding: 60px 0;
}
.container-hero-section .container-left-section {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  width: 50%;
}
.container-hero-section .container-left-section h1 + p {
  width: 635px;
  text-align: start;
  margin-top: 1rem;
  margin-right: 2rem;
  letter-spacing: 0.07rem;
}
.container-hero-section .container-left-section h1 {
  font-family: AvenirLTStd-Book, sans-serif !important;
  font-size: 2.5rem;
  font-weight: 400;
  line-height: 3.75rem;
  width: 400px;
}
.container-hero-section .container-left-section div {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
}
.container-hero-section .container-left-section div a {
  width: max-content;
  box-shadow: 0 4px 4px #00000040;
}
.container-hero-section .part-one {
  height: 632px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-end;
}
.container-hero-section .part-one div {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
  width: 350px;
}
.container-hero-section .part-one div p {
  margin: 5px;
  font-size: 13px;
  text-transform: uppercase;
  padding: 3px 13px;
}
.container-hero-section .part-one img {
  max-width: 350px;
  border-radius: 15px;
}
.container-hero-section .part-two {
  height: 632px;
  position: relative;
}
.container-hero-section .part-two div {
  z-index: 1;
  display: flex;
  flex-direction: column-reverse;
  right: 1.2rem;
  top: 1rem;
  gap: 1rem;
  position: absolute;
}
.container-hero-section .part-two img:nth-child(2) {
  border-radius: 15px;
  max-width: 350px;
  margin-left: 1rem;
  height: 100%;
  object-fit: cover;
}
.section-role {
  background: #f8f8f8;
}
.container-section-role {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  max-width: 1400px;
  padding: 60px;
}
.container-section-role .container-text {
  width: 30%;
}
.container-section-role .container-text .uptitle {
  max-width: 440px;
  display: flex;
  flex-direction: column;
  align-items: flex-start !important;
}
.container-section-role .container-text .uptitle div {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.container-section-role .container-text .uptitle div .rectangle {
  margin-right: 10px;
  width: 21px;
  height: 2px;
  background-color: #ff8774;
}
.container-section-role .container-text .uptitle div h2 {
  font-family: Avenir, sans-serif;
  text-transform: uppercase;
  font-size: 1.5rem;
  color: #ff8774;
  font-weight: 500;
  margin-bottom: 1rem;
}
.container-section-role .container-text .uptitle .separator {
  width: 90%;
  height: 2px;
  background-color: #ff8774;
}
.container-section-role .container-text .uptitle .text-scaled {
  font-size: 2.3rem;
  line-height: normal;
  font-family: Avenir, sans-serif;
  margin-top: 1.5rem;
  text-align: start;
}
.container-section-role .container-text .container-arrow-loop {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.container-section-role .container-text .container-arrow-loop img {
  padding-right: 4rem;
}
.container-section-role .container-role-cards {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 70px;
}
.container-section-role .container-role-cards .background-orange:hover {
  box-shadow: 0 4px 4px #00000040;
  transform: scale(1.05) translateY(-5px) rotate(1deg);
  animation: none;
}
.container-section-role .container-role-cards div {
  border: 1px solid #ff8774;
  background-color: #fff;
  width: 225px;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  border-radius: 40px;
  animation: loop 6s ease-in-out infinite;
}
.container-section-role .container-role-cards div:hover {
  box-shadow: 0 4px 4px #00000040;
  transform: scale(1.05) translateY(-5px) rotate(-1deg);
  animation: none;
}
.container-section-role .container-role-cards div img {
  width: 50px;
  height: 50px;
}
.container-section-role .container-role-cards div .orange-cards {
  color: #fff;
  background-color: #eb5e5b;
}
.container-section-role .container-role-cards div p {
  margin: 0;
  font-size: 1rem;
  font-family: inter, sans-serif;
  font-weight: lighter;
  text-align: start;
}
.container-section-role .container-role-cards div h3 {
  font-family: inter, sans-serif;
  font-weight: 600;
}
@keyframes loop {
  0% {
    transform: translate(10px);
  }
  50% {
    transform: translate(0);
  }
  to {
    transform: translate(10px);
  }
}
.section-services {
  max-width: 1400px;
  margin-top: 4rem;
  margin-bottom: 4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.section-services .text-scaled {
  font-size: 32px;
  font-weight: 800;
  line-height: normal;
  font-family: Avenir, sans-serif;
}
.section-services .uptitle div {
  display: flex;
  justify-content: center;
  align-items: center;
}
.section-services .uptitle div .rectangle {
  margin-right: 10px;
  width: 21px;
  height: 2px;
  color: #000;
  background-color: #76c29e;
}
.section-services .uptitle div h2 {
  font-family: Avenir, sans-serif;
  text-transform: uppercase;
  font-size: 1.5rem;
  color: #76c29e;
  font-weight: 500;
}
.section-services .card-service-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.section-services h3 {
  text-align: center;
  font-size: 24px;
  font-family: Avenir, sans-serif;
  line-height: normal;
}
.section-services p {
  font-size: 1rem;
  text-align: center;
  margin-top: 1rem;
}
.section-services img {
  width: 100px;
  height: 100px;
}
.section-services .container-services {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 2rem;
}
.section-services .container-services div {
  width: 420px;
}
#carousel {
  width: 100%;
  overflow: hidden;
}

#carousel .container-carousel {
  margin: auto;
  mask: linear-gradient(90deg, rgba(0, 0, 0, 0), #000 5% 95%, rgba(0, 0, 0, 0));
  width: 100%;
  overflow-x: scroll;
  scrollbar-width: none;
}
#carousel .carousel {
  display: flex;
  scroll-behavior: smooth;
  gap: 2rem;
  padding: 1rem 2rem;
}
@media screen and (max-width: 1024px) {
  #carousel .carousel {
    display: block;
  }
}
#carousel .card {
  flex: 0 0 85%;
  padding: 50px;
  margin: 0 10px;
  border: 0.5px solid #ececec;
  background-color: #fff;
  box-shadow: 0 2px 6px #00000026;
  border-radius: 20px;
  -webkit-user-select: none;
  user-select: none;
}
#carousel .card-text {
  width: 100%;
  height: 100%;
}

#carousel .container_logo {
  margin-top: 3rem;
  --d: 3s;
  mask: linear-gradient(90deg, rgba(0, 0, 0, 0), #000 5% 95%, rgba(0, 0, 0, 0));
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  white-space: nowrap;
  scrollbar-width: none; /* For Firefox */

  .slider {
    display: inline-block;
    white-space: nowrap;
    will-change: transform;
    margin: 2rem auto;
  }

  .slider img {
    height: 60px;
    filter: grayscale(100%);
    margin: 0 50px;
    vertical-align: middle;
    cursor: pointer;
  }
}
@media screen and (max-width: 1024px) {
  #carousel .container_logo {
    margin-top: 1rem;
    margin-bottom: 4rem;
  }
}

#carousel .container_logo::-webkit-scrollbar {
  display: none; /* For Chrome, Safari, and Opera */
}
#carousel .container_logo.clone {
  position: absolute;
  top: 0;
  left: 100%;
  display: flex;
}
#carousel .container_logo > img {
  height: 115px;
  display: inline-block;
  aspect-ratio: 1.5;
  object-fit: contain;
  padding: 0 3rem;
  margin: 1.5rem;
  filter: grayscale(100%);
  transition: transform 0.1s ease-in-out;
}
#carousel .container_logo > img:hover {
  transform: scale(1.2);
  cursor: pointer;
}
.blog {
  padding: 2rem;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}
.blog .heading .uptitle {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  align-self: stretch;
}
.blog .heading .uptitle .rectangle {
  width: 21px;
  height: 2px;
  background: #fcb971;
}
.blog .heading .uptitle h2 {
  text-align: center;
  color: #fcb971;
  font-family: Avenir, sans-serif;
  font-size: 24px;
  font-weight: 700;
  text-transform: uppercase;
}
.blog .heading h3 {
  text-align: center;
  color: #000;
  font-family: Avenir, sans-serif;
  font-size: 32px;
  font-weight: 700;
  line-height: normal;
}
.blog .cards-container {
  display: flex;
  max-width: 1400px;
  width: 100%;
  margin: 0 auto;
  justify-content: center;
  align-items: stretch;
  flex-wrap: wrap;
  gap: 2rem;
}
.blog .cards-container .card-others {
  display: flex;
  width: 530px;
  flex-direction: column;
}
.card-others-sp {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  overflow-y: auto;
  max-height: 100%;
}

.cards {
  flex: 1;

  a {
    text-decoration: none;

    h3:hover {
      cursor: pointer;
      color: #fcb971 !important;
    }
  }
}

.blog .cards-container #card-post-one {
  display: flex;
  padding: 25px;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  flex-shrink: 0;
  border-radius: 20px;
  border: 1px solid #ccc;
  background: #fff;
  gap: 1rem;
}

.blog .cards-container #card-post-one .frame {
  gap: 1rem;
  display: flex;
  height: max-content;
}

.blog .cards-container #card-post-one img {
  width: 100%;
  height: 238px;
  object-fit: cover;
  flex-shrink: 0;
  align-self: stretch;
  border-radius: 10px;
}
.blog .cards-container #card-post-one .tag {
  display: flex;
  padding: 5px 16px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 25px;
  border: 1px solid #ccc;
  text-transform: uppercase;
}
.blog .cards-container #card-post-one h3 {
  color: #000;
  font-family: Avenir, sans-serif;
  font-size: 30px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  margin: 0;
}
.blog .cards-container #card-post-one p {
  color: #1a1a1a;
  font-family: Avenir, sans-serif;
  font-size: 14px;
  line-height: normal;
  margin: 0;
}
.blog .cards-container #card-post-one .more {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
}
.blog .cards-container #card-post-one .more a {
  color: #ff8774;
  font-family: Arial, sans-serif;
  font-size: 16px;
  font-style: normal;
  line-height: normal;
  margin: 0;
  text-decoration: none;
}
.blog .cards-container #card-post-one .more img {
  display: flex;
  width: 20px;
  height: 20px;
  justify-content: center;
  align-items: center;
}

.blog .cards-container .card-others .cards {
  display: flex;
  padding: 25px;
  align-items: flex-start;
  gap: 20px;
  align-self: stretch;
  border-radius: 20px;
  border: 1px solid #ccc;
  background: #fff;
  height: 100%;
}
.blog .cards-container .card-others .cards > img {
  max-height: 250px;
  object-fit: cover;
  border-radius: 10px;
}
.blog .cards-container .card-others .cards img.img-second,
.blog .cards-container .card-others .cards img.img-third {
  display: flex;
  width: 100%;
  max-width: 200px;
  height: 100%;
  object-fit: cover;
}
.blog .cards-container .card-others .cards .frame {
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: flex-start;
  flex: 1 0 0;
  padding: 0;
  gap: 1rem;
}
.blog .cards-container .card-others .cards .frame .tags {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  text-transform: uppercase;
  font-size: 1rem;
}
.blog .cards-container .card-others .cards .frame .tags-small {
  font-size: 0.8rem;
}
@media screen and (max-width: 768px) {
  a {
    font-size: 1rem !important;
  }
  .blog .cards-container .card-others .cards .frame .tags a {
    font-size: 0.8rem !important;
  }
}
.blog .cards-container .card-others .cards .frame .tag {
  display: flex;
  padding: 5px 16px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 25px;
  border: 1px solid #ccc;
  text-transform: uppercase;

  &:hover {
    background: #76c29e;
    background: linear-gradient(
      136deg,
      rgba(118, 194, 158, 1) 69%,
      rgba(63, 188, 205, 1) 100%
    );
    color: #fff !important;
    cursor: pointer;
  }
}
.blog .cards-container .card-others .cards .frame .tag a {
  font-family: Avenir, sans-serif;
  font-weight: 300;
  text-decoration: none;
  color: inherit;
}
.blog .cards-container .card-others .cards .frame h3 {
  color: #000;
  font-family: Avenir, sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  margin: 0;
}
.blog .cards-container .card-others .cards .frame p {
  color: #1a1a1a;
  font-family: Avenir, sans-serif;
  font-size: 14px;
  line-height: normal;
  margin: 0;
}
.blog .cards-container .card-others .cards .frame .more {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
}
.blog .cards-container .card-others .cards .frame .more a {
  color: #ff8774;
  font-family: Arial, sans-serif;
  font-size: 16px;
  font-style: normal;
  line-height: normal;
  margin: 0;
  text-decoration: none;
}
.blog .cards-container .card-others .cards .frame .more img {
  display: flex;
  width: 20px;
  height: 20px;
  justify-content: center;
  align-items: center;
}
.wrapper-section-whois {
  width: 100vw;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 60px;
  margin-bottom: 1.5rem;
}
.wrapper-section-whois h1 {
  color: #000;
  font-family: Avenir, sans-serif;
  font-size: 3rem;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  margin: 0;
}
.wrapper-section-whois .container-whois {
  max-width: 1400px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.wrapper-section-whois .container-team {
  margin-top: 3rem;
  margin-bottom: 3rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  width: 100%;
  gap: 2rem;
  align-items: start;
  height: max-content;
}
@media screen and (max-width: 1024px) {
  .wrapper-section-whois .container-team {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 768px) {
  .wrapper-section-whois .container-team {
    grid-template-columns: repeat(1, 1fr);
  }
}

.wrapper-section-whois .container-team .card-team {
  display: flex;
  justify-self: start;
  flex-direction: column;
  max-width: 400px;
  gap: 1rem;
  filter: grayscale(100%);
  margin: auto;
  height: 100%;
}

.wrapper-section-whois .container-team .card-team .role {
  font-size: 1.2rem;
  font-weight: 600;
}
.wrapper-section-whois .container-team .card-team img {
  border: 3px solid transparent;
  border-radius: 16px;
  width: 100%;
}
.wrapper-section-whois .container-team .card-team img.profil {
  width: 100%;
  object-fit: cover;
  height: 250px;
  border-radius: 16px;
}
.wrapper-section-whois .container-team .card-team:hover {
  filter: grayscale(0%);
}
.wrapper-section-whois .container-team .card-team:hover img:nth-child(1) {
  border: 3px solid transparent;
  background: linear-gradient(180deg, #eb5e5b, #f9b872e6, #76c29e, #3fbccd 75%);
}
.wrapper-section-whois .container-team .card-team h2 {
  font-size: 1.5rem;
  margin: 0;
  font-weight: 800;
}
.wrapper-section-whois .container-team .card-team p {
  margin: 0;
}
.wrapper-section-whois .container-team .card-team p.description {
  font-size: 0.9rem;
  font-weight: 400;
  border-left: 3px solid #e53f33 !important;
  padding-left: 10px;
  margin-left: 2px;
  width: 100%;
  text-wrap: balance;
}
.wrapper-team-container {
  margin-top: 3rem;
  margin-bottom: 3rem;
  width: 100vw;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.wrapper-team-container .container-team {
  max-width: 1400px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.wrapper-team-container .container-team p {
  text-align: center;
  width: 760px;
}
.container-gallery-team {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  width: 100vw;
  margin-top: 3rem;
  margin-bottom: 3rem;
  max-width: 1400px;
}
.container-gallery-team .container-galler-line {
  width: 100%;
  display: flex;
  gap: 1rem;
}
.container-gallery-team .container-galler-line img {
  width: 100%;
  object-fit: cover;
  max-height: 333px;
}
.container-gallery-team .container-galler-line .border-left {
  border-radius: 0 0 0 15px;
}
.container-gallery-team .container-galler-line .border-right {
  border-radius: 0 15px 0 0;
}
.container-gallery-team .last-image-absolute-container {
  position: relative;
}
.container-gallery-team .last-image-absolute-container img:first-child {
  border-radius: 0 0 15px;
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.container-gallery-team .last-image-absolute-container img:nth-child(2) {
  width: 124px;
  height: 120px;
  position: absolute;
  top: 0;
  left: 0;
  transform: translate(-50%, -50%);
}
.container-gallery-team .image-container-absolute {
  position: relative;
}
.container-gallery-team .image-container-absolute img:nth-child(2) {
  width: 163px;
  height: 158px;
  position: absolute;
  bottom: 30px;
  right: 0;
  transform: translate(50%, 50%);
}
.container-gallery-team .image-container-absolute > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 15px 0;
}
.wrapper-section-news {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
}
.wrapper-section-news h1 {
  text-align: start;
  width: 100%;
  margin: 60px 0 0;
  font-size: 3rem;
  font-weight: 700;
}
.container-news-cards {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  justify-items: center;
  margin-top: 60px;
  margin-bottom: 30px;
}
.container-news-cards .news-card {
  border: 1px solid #d9d9d9;
  border-radius: 15px;
  max-width: 434px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;

  .frame a {
    text-decoration: none;

    h3:hover {
      color: #76c29e;
    }
  }
}
.container-news-cards .news-card .tags {
  display: flex;
  gap: 10px;
}

.container-news-cards .news-card .tags a.tag {
  padding: 5px 16px !important;
  border: none;
  text-decoration: none;
  color: #000;
  font-size: 13px !important;
  font-weight: 800;
  border: 1px solid #d9d9d9;
  border-radius: 25px;

  &:hover {
    background: #76c29e;
    background: linear-gradient(
      136deg,
      rgba(118, 194, 158, 1) 69%,
      rgba(63, 188, 205, 1) 100%
    );
    color: #fff;
  }
}
.container-news-cards .news-card .tags a.tag p {
  font-size: 14px !important;
}
.container-news-cards .news-card a:has(img) {
  text-decoration: none;
  width: 100%;
}
.container-news-cards .news-card a img {
  border-radius: 15px 15px 0 0;
  width: 100%;
  height: 300px;
  object-fit: cover;
}
.container-news-cards .news-card h3 {
  font-size: 1.9rem;
  font-weight: 700px;
  margin-top: 1rem;
  margin-bottom: 1rem;
  color: #000;
}
.container-news-cards .news-card p {
  font-size: 1rem;
}
.container-news-cards .news-card p span {
  font-weight: 700;
}
.container-news-cards .news-card .more {
  margin-bottom: 1rem;
}
.container-news-cards .news-card .more a {
  margin-left: 1rem;
}
.wrapper-section-newsletter {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100vw;
  min-height: 560px;
}
.wrapper-section-newsletter .container-newsletter-text {
  min-height: 560px;
  width: 50%;
  background: #76c29e;
  background: linear-gradient(
    136deg,
    rgba(118, 194, 158, 1) 69%,
    rgba(63, 188, 205, 1) 100%
  );
}
.wrapper-section-newsletter .container-newsletter-text .newsletter-text {
  max-width: 637px;
  margin: 50px 40px 50px auto;
  text-align: justify;
}
.wrapper-section-newsletter .container-newsletter-text .newsletter-text h2 {
  text-align: start;
}

.wrapper-section-newsletter .container-form-request {
  position: relative;
  width: 50%;
  min-height: 560px;
  display: flex;
  flex-direction: column;
  align-items: center;
  background: linear-gradient(57deg, #f4f4f4 42.03%, #ccc 154.38%);
}
.wrapper-section-newsletter .container-form-request > img {
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 0;
}
.wrapper-section-newsletter .container-form-request .form-request {
  z-index: 1;
  margin: auto auto 80px 40px;
  height: 100%;
  max-width: 637px;
  width: 100%;
  display: flex;
  justify-content: flex-end;
  flex-direction: column;
}
.wrapper-section-newsletter .container-form-request .form-request h3 {
  text-align: start;
  width: 80%;
  margin: 0;
  font-size: 1.5rem;
  font-weight: 600;
}
.wrapper-section-newsletter .container-form-request .form-request form {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
  width: 100%;
}
.wrapper-section-newsletter .container-form-request .form-request label {
  display: flex;
  cursor: pointer;
}
.wrapper-section-newsletter .container-form-request .form-request input {
  margin-top: 20px;
}
.wrapper-section-newsletter
  .container-form-request
  .form-request
  input[type="checkbox"] {
  margin-top: 0;
  cursor: pointer;
  position: relative;
  height: 20px !important;
  width: 100% !important;
  max-width: 20px;
  margin-right: 1rem;
  -border-radius: 4px;
  background: #fff;
  border-radius: 4px;
  border: 1px solid #76c29e;
}
.wrapper-section-newsletter
  .container-form-request
  .form-request
  input[type="checkbox"]:checked {
  position: relative;
}
.wrapper-section-newsletter
  .container-form-request
  .form-request
  input[type="checkbox"]:checked:before {
  content: "✔";
  color: #76c29e;
  font-size: 24px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
.wrapper-section-newsletter
  .container-form-request
  .form-request
  input[type="text"] {
  width: 538px;
  height: 64px;
  font-size: 1rem;
  border-radius: 12px;
  border: 2px solid #76c29e !important;
  color: #7c7c7c;
  padding: 0 1rem;
  background: linear-gradient(89deg, #fff 31.67%, #fff3 99.35%);
}
.wrapper-section-newsletter
  .container-form-request
  .form-request
  input[type="text"]:focus {
  border: 2px solid #66dea5 !important;
  outline: none;
}
.wrapper-section-newsletter
  .container-form-request
  .form-request
  input[type="submit"] {
  max-width: 385px;
  width: 100%;
  height: 64px;
  font-size: 1.2rem;
  text-align: center;
  border-radius: 12px;
  border: 1px solid #76c29e !important;
  color: #fff;
}
.wrapper-section-newsletter
  .container-form-request
  .form-request
  input[type="submit"]:hover {
  background: #76c29e !important;
  color: #fff !important;
  cursor: pointer;
}
.header-single {
  margin-top: 1rem;
  position: relative;
  min-height: 450px;
}
.header-single img {
  width: 100%;
  object-fit: cover;
  max-height: 60vh;
  filter: brightness(50%);
}
.header-single .arrow-down-single {
  position: absolute;
  bottom: 0%;
  left: 50%;
  transform: translate(-50%, 45px);
  width: 110px !important;
  z-index: 3;
  filter: brightness(100%);
}
.header-single .title {
  position: absolute;
  width: 100%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  font-weight: 600;
  max-width: 1400px;
}
.header-single strong {
  font-family: "AvenirLTStd-Heavy", sans-serif;
}
.header-single .title .uptitle {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header-single .title p {
  text-shadow: 1px 2px 5px #666;
  padding-bottom: 1rem;
}
@media screen and (max-width: 640px) {
  .header-single .title p {
    font-size: 1.1rem;
  }
}
.header-single .title .uptitle .tags {
  display: flex;
  gap: 1rem;
}
.header-single .title .uptitle .tags a {
  color: #fff;
  font-weight: 600;
  text-decoration: none;
}
.header-single .title .single-tag {
  background-color: #76c29e;
  padding: 10px 35px !important;
}
.header-single .title h1 {
  font-size: 3rem;
  margin-bottom: 2rem !important;
  margin-top: 2rem !important;
  margin: 0;
  font-weight: 700;
  text-shadow: 1px 2px 12px #333;
}
article {
  margin-top: 60px;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
  width: 90vw;
}
.article > p strong {
  font-family: "OpenSans-SemiBold", sans-serif !important;
}
.container-maps {
  margin: 0;
  width: 100vw;
  display: flex;
  position: relative;
}
.container-maps img {
  width: 100%;
  object-fit: cover;
  height: 550px;
  filter: brightness(50%) blur(0.7px);
}
.container-maps a {
  z-index: 3;
  border-radius: 10px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  font-weight: 600;
  font-size: 1.5rem;
  box-shadow: 0 4px 12px #00000040;
  padding: 20px 40px !important;
  animation: jumpclick 1s infinite;
}
.container-maps a:hover {
  transform: translate(-50%, -45%);
}
@keyframes jumpclick {
  0% {
    transform: translate(-50%, -45%);
  }
  50% {
    transform: translate(-50%, -50%);
  }
  to {
    transform: translate(-50%, -45%);
  }
}
.container-title {
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
}
.container-title h1 {
  text-align: start;
  margin: 60px 0 0;
  font-size: 3rem;
  font-weight: 700;
}
.wrapper-contact-form {
  max-width: 1400px;
  margin: 60px auto;
}
.container-form-contact {
  display: grid;
  gap: 1rem;
  grid-template-columns: auto 2fr;
}
.container-contact {
  background-color: #f9f9f9;
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: start;
  max-width: 300px;
  padding: 1.5rem;
  border-left: 3px solid #76c29e;
  max-height: 491px;
}
.container-contact a {
  margin-top: 0 !important;
  border-radius: 10px !important;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 600;
}
.container-contact a.green-button {
  padding: 10px 20px !important;
}
.container-contact span {
  font-size: 1rem;
}
.container-contact span a {
  color: #76c29e;
}
.container-contact h2 {
  font-size: 2rem;
  font-weight: 700;
  margin: 0 !important;
}
.container-contact h2 + p {
  margin: 0 !important;
  margin-bottom: 1rem !important;
}
.container-contact h3 {
  font-weight: 700;
  margin: 0 !important;
  margin-bottom: 20px;
}
.container-contact img {
  margin-bottom: 1rem;
  max-width: 300px !important;
}
.container-contact img:hover {
  cursor: pointer;
  filter: brightness(80%);
}
.container-contact p {
  margin-bottom: 1rem !important;
}
.container-contact p a {
  color: #76c29e;
}
.container-contact .container-contact:first-child {
  margin-bottom: 0 !important;
  background-color: #639 !important;
}
.container-form {
  margin-left: 60px;
}
.container-form span {
  color: red;
  margin-left: 5px;
}
.container-form h2 {
  font-size: 2rem;
  margin: 0 !important;
  margin-top: 1.5rem !important;

  @media screen and (max-width: 1024px) {
    text-align: center !important;
  }
}
.container-form h2 + p {
  margin: 0 !important;
  margin-bottom: 1.5rem !important;

  @media screen and (max-width: 1024px) {
    text-align: center !important;
  }
}
.container-form form {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;

  p {
    display: flex;
    gap: 0 1rem;
    width: 100% !important;

    &:has(input[type="submit"]) {
      flex-direction: row-reverse;
      justify-content: end;

      @media screen and (max-width: 1024px) {
        flex-direction: row;
        justify-content: start;
      }
    }

    &:has(i) {
      margin-left: 15px;
    }

    label {
      width: 100% !important;

      span {
        width: 100% !important;
        display: flex !important;
        margin-left: 0px;
        flex-direction: column;

        input {
          width: 100%;
          text-indent: 10px;

          &:focus {
            outline: none;
            border: 1px solid #76c29e;
          }

          @media screen and (max-width: 1024px) {
            width: 100% !important;
          }
        }

        input[type="submit"] {
          max-width: 100% !important;
        }

        &:has(textarea) {
          .wpcf7-textarea {
            width: 100% !important;
            padding: 10px !important;

            @media screen and (max-width: 1024px) {
              width: 100% !important;
            }

            &:focus {
              outline: none;
              border: 1px solid #76c29e;
            }
          }
        }
      }
    }

    .wpcf7-submit {
      background: #76c29e;
      text-decoration: none;
      text-transform: uppercase;
      display: flex;
      padding: 1rem 3rem;
      justify-content: center;
      align-items: center;
      border: none;
      color: #fff;
      text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
      font-family: inter, sans-serif;
      font-size: 16px;
      line-height: normal;
      transition: transform 0.3s ease-in-out;
      cursor: pointer;
    }
    .wpcf7-submit:hover {
      transform: scale(1.05);
      background: linear-gradient(98deg, #76c29e 0.36%, #66dea5 91.53%);
      color: #fff !important;
      border-color: #fff !important;
    }

    .wpcf7-acceptance span label {
      display: flex;
      align-items: center;
      flex-direction: row;
      margin-left: 0;
      padding-left: 0;

      span {
        color: #232323 !important;
      }
    }

    @media screen and (max-width: 768px) {
      flex-direction: column;
    }
  }
}
.container-form .form-group {
  display: flex;
  justify-content: space-between;
}
.container-form .form-group div,
.container-form .form-group-col {
  display: flex;
  flex-direction: column;
}

.container-form label {
  margin-bottom: 10px;
  display: flex;
  align-items: start;
  flex-direction: column;
  gap: 0.3rem;
}
.container-form input,
.container-form textarea {
  border-radius: 8px;
  border: 1px solid rgba(249, 184, 114, 0.9);
  background: #f7f7f7;
  height: 45px;
  min-width: 270px;
}
.container-form #adresse_corporate {
  min-width: 550px;
}
.container-form textarea,
.container-form input[type="textarea"] {
  height: 200px;
}
.container-form form span {
  color: red !important;
}
.container-form input[type="checkbox"] {
  cursor: pointer;
  position: relative;
  height: 20px !important;
  width: 20px !important;
  min-width: 20px !important;
  margin-right: 1rem;
  -border-radius: 4px;
  background: #fff;
  border-radius: 4px;
  border: 1px solid #76c29e;
}
.container-form input[type="checkbox"]:checked {
  position: relative;
}
.container-form input[type="checkbox"]:checked:before {
  content: "✔";
  color: #76c29e;
  font-size: 42px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
.container-form .container-button {
  display: flex;
  justify-content: flex-end;
}
.container-form .container-button button {
  border-radius: 10px;
  padding: 10px 30px;
}
footer {
  font-family: Avenir, sans-serif;
  padding: 2rem;
  margin-left: auto;
  margin-right: auto;
  background: #373737;
  color: #fff;
  font-size: 14px;
  display: flex;
  justify-content: center;
  align-items: center;
}
footer .container {
  display: grid;
  grid-template-rows: auto auto;
}
footer .container .columns {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}
footer .container .columns .column {
  display: flex;
  width: 300px;
  max-width: 300px;
  min-height: 220px;
  flex-direction: column;
  align-items: flex-start;
}
footer .container .columns .column h3 {
  margin: 0;
  margin-bottom: 1rem;
  color: #fff;
  font-size: 32px;
}
footer .container .columns #first p {
  margin: 0;
  font-size: 1rem;
  text-align: start;
}
footer .container .columns #second ul,
footer .container .columns #third ul,
footer .container .columns #fourth ul {
  padding: 0;
}
footer .container .columns #second ul a,
footer .container .columns #third ul a,
footer .container .columns #fourth ul a {
  text-decoration: none;
  color: #fff;
}
footer .container .columns #second p,
footer .container .columns #third p,
footer .container .columns #fourth p {
  margin: 0;
  line-height: normal;
  font-weight: 300;
}
footer #copyrights {
  text-align: center;
}
footer #copyrights span {
  font-weight: 700;
}
footer .separator {
  height: 2px;
  align-self: stretch;
  margin: 1rem 0;
  background: linear-gradient(90deg, #d9d9d9 41.39%, #17171700);
  gap: 20px;
}
footer .list {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 5px;
  list-style: none;
}
footer .list .dataContact {
  display: flex;
  align-items: center;
  gap: 10px;
}
footer .list .dataContact a {
  text-decoration: none;
  color: #fff;
}
@media (max-width: 1365px) {
  .container-hero-section {
    padding: 60px 0 !important;
    flex-wrap: wrap;
  }
  .container-hero-section .container-left-section {
    width: 60%;
    margin-right: auto;
    margin-left: auto;
  }
  .container-hero-section .part-one {
    height: auto;
    margin-right: auto;
    margin-left: auto;
  }
  .container-hero-section .part-one img {
    width: 400px;
    object-fit: cover;
  }
  .container-hero-section .part-two {
    margin-top: 1rem;
    height: 350px !important;
    width: 100%;
  }
  .container-hero-section .part-two .image-header-two {
    min-width: 97%;
    object-fit: cover;
  }
  .container-hero-section .part-two > img {
    height: 200px;
    object-fit: cover;
    border-radius: 15px;
  }
  .container-hero-section .part-two div {
    flex-direction: row !important;
    right: 50% !important;
    top: 50% !important;
    transform: translate(50%, -50%) !important;
  }
  .container-hero-section div + img {
    margin-right: auto;
  }
  .container-role-cards {
    grid-template-columns: repeat(2, 1fr) !important;
    justify-items: center;
  }
  .container-role-cards > div {
    height: 200px;
  }
  .container-role-cards > div:nth-child(2) {
    order: 2;
  }
  .container-role-cards > div:nth-child(1) {
    order: 6;
  }
  .container-role-cards > div:nth-child(3) {
    order: 4;
  }
  .container-role-cards > div:nth-child(4) {
    order: 6;
  }
  .section-services {
    padding: 60px 0 !important;
  }
  .section-services .container-services {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(3, 1fr);
    gap: 2rem;
  }
  .section-services .container-services div {
    width: 350px;
  }
  #carousel {
    padding: 0;
  }
  .container_top_section {
    display: flex;
    margin: 0 auto;
    justify-content: center;
    max-width: 1100px !important;
  }
  .container_top_section .container-text {
    margin: 0;
    min-width: 250px;
  }
  .container_top_section .arrow-carousel-container {
    top: 280px !important;
  }
  .container_top_section .container-carousel {
    width: 60% !important;
  }
  .container_top_section .container-carousel .card {
    padding: 30px !important;
    margin: 0 1rem;
  }
  .blog .cards-container {
    flex-direction: column;
    align-items: center;
  }
  .blog .cards-container .card-others {
    width: 90%;
    max-width: 530px;
  }
  .blog .cards-container .card-others .cards {
    flex-direction: column;
    gap: 20px;
  }
  .blog .cards-container .card-others .cards .frame {
    gap: 1rem;
  }

  .blog .cards-container .card-others .cards img {
    width: 100%;
    object-fit: cover;
  }
  .blog .cards-container .card-others .cards img.img-second,
  .blog .cards-container .card-others .cards img.img-third {
    max-width: 100% !important;
  }
  .blog .cards-container .card-others .cards article {
    margin-bottom: 1rem;
  }
  .blog .cards-container #card-post-one {
    height: auto;
  }
  footer .container .columns {
    grid-template-columns: repeat(2, 1fr);
  }
  footer .container .columns .separator {
    display: block !important;
  }
  .container-whois h1 {
    font-size: 2rem !important;
    margin-left: 1rem;
  }
  .container-team {
    justify-content: space-around !important;
    flex-wrap: wrap;
  }
  .container-team .card-team img {
    max-width: 300px;
  }
  .container-team .card-team img.profil {
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
    height: auto;
  }

  .container-team .card-team h2 {
    font-size: 1rem !important;
  }
  .container-team p {
    max-width: 90vw;
  }
  .container-news-cards {
    grid-template-columns: repeat(2, 1fr) !important;
  }
  .container-form-request {
    min-height: 638px !important;
  }
  .form-request {
    margin-right: 0 !important;
    align-items: center;
    margin-left: 0 !important;
    margin-top: auto;
  }
  .form-request form {
    max-width: 440px !important;
  }
  .form-request form input[type="text"],
  .form-request form label {
    max-width: 80%;
  }
  .newsletter-text {
    min-height: 542px;
    margin: 0 !important;
    padding: 3rem;
  }
  .header-single .title {
    width: 80%;
    left: 0;
    transform: translateY(-50%);
    margin-left: 4rem;
  }
  .form-group {
    flex-direction: column;
  }
}
@media (max-width: 1065px) {
  nav div {
    display: none;
  }
  .menu-burger {
    display: flex;
    cursor: pointer;
    z-index: 6000;
  }
  @keyframes down {
    0% {
      transform: translateY(-800px);
    }
    to {
      transform: translateY(0);
    }
  }
  .active-menu {
    display: flex !important;
  }
  .active-menu > ul {
    opacity: 1 !important;
    background-color: #fff;
    animation: down 0.3s ease-in-out;
  }
  .active-menu > ul li:nth-child(1) {
    position: relative;
  }

  /* RECTIFICATION DU MENU */

  /* .active-menu ul li:nth-child(1) ul { */
  header nav .menu > ul:nth-child(1) .active {
    position: relative;
    top: auto;
    /* left: 50%; */
    /* transform: translate(-50%, 20%); */
    width: 100%;
    max-height: fit-content;
    border-bottom: none;
    box-shadow: none;
    border-left: none;
    padding-top: 1rem;
    padding-bottom: 1rem;
    /* background-color: rebeccapurple; */
  }

  .menu-item-has-children {
    position: relative;
    margin-right: 16px;
  }

  .menu-item-has-children:hover::after {
    display: none;
  }

  .sub-menu a {
    color: #666;
  }

  .menu-item-has-children {
    /* margin-right: 0px !important; */
    text-align: center;
    min-height: max-content;
  }

  nav {
    position: relative;
  }
  nav div {
    bottom: 0;
    position: absolute;
    height: 100%;
  }
  nav div ul {
    background-color: #fff;
    border-bottom: solid 1px #666;
    top: 105px;
    width: 100vw;
    height: calc(100vh - 70px);
    padding-bottom: 2rem;
    flex-direction: column;
    justify-content: start;
    gap: 2rem;
    font-size: 1.2rem;
    z-index: 3000;
  }
  nav div ul li a {
    margin: 0;
    animation: opacity 0.3s ease-in-out;
  }

  nav img {
    z-index: 101;
  }
  .separator {
    display: none !important;
  }
  .card-team {
    filter: grayscale(0%) !important;
  }
  .container-news-cards {
    grid-template-columns: repeat(1, 1fr) !important;
  }
  .container-title h1 {
    font-size: 2rem !important;
    text-align: center;
  }
  .container-form-contact {
    grid-template-columns: 1fr;
    width: 100% !important;
  }
  .container-form-contact .container-contact {
    order: 2;
  }
  .container-form-contact .container-form {
    order: 1;
  }
  .container-form-contact .container-contact {
    margin-top: 3rem;
    margin-left: auto;
    margin-right: auto;
  }
  .container-form-contact .container-form {
    margin-left: 1rem;
    margin-right: 1rem;
  }
  .container-form-contact .container-form h2 {
    font-size: 1.8rem;
  }
  .container-form-contact .container-form .checkbox input[type="checkbox"] {
    min-width: 20px !important;
    width: 20px !important;
    height: 20px !important;
  }

  .container-form-contact .container-form label {
    max-width: 100% !important;
  }
}
@media (max-width: 1024px) {
  .container-hero-section {
    flex-direction: column;
  }
  .container-hero-section .container-left-section {
    width: 80vw;
  }
  .container-hero-section .container-left-section h1 {
    width: 100% !important;
  }
  .container-hero-section .container-left-section h1 + p {
    width: 100% !important;
  }
  .container-hero-section .container-left-section div {
    flex-direction: column;
    margin-left: auto;
    margin-right: auto;
    gap: 1rem;
  }
  .container-hero-section .container-left-section div a {
    margin-top: 1rem;
  }
  .part-one div {
    margin: 2rem 0;
    justify-content: space-between !important;
    align-content: space-around;
  }
  .part-one > img {
    display: none;
  }
  .part-two {
    min-width: 100vw;
  }
  .part-two img {
    margin: 0 !important;
    max-height: 250px !important;
    border-radius: 0 !important;
  }
  .part-two .image-header-two {
    min-width: 100% !important;
  }

  .section-services {
    padding: 60px 2rem;
  }
  .container-section-role {
    padding: 60px 0;
    flex-direction: column;
  }
  .container-section-role .uptitle {
    width: 700px;
  }
  .container-section-role .container-arrow-loop img {
    display: none;
  }
  #carousel {
    padding: 0;
  }
  .container_top_section {
    flex-direction: column;
    align-items: start;
  }
  .container_top_section .container-text {
    margin-left: 10%;
  }
  .container_top_section .container-text .arrow-carousel-container {
    display: none;
  }
  .container_top_section .container-carousel {
    width: 100% !important;
  }
  .carousel {
    display: flex !important;
    flex-direction: column;
    align-items: center;
    padding: 0 !important;
  }
  .carousel .card {
    width: 80%;
    min-width: 340px;
    padding: 1.5rem !important;
  }
  .carousel .card .card-text p {
    margin-top: 1rem;
    margin: 1rem;
  }
  .container_bottom_section {
    width: 100% !important;
  }
  .wrapper-section-newsletter {
    flex-direction: column;
  }
  .wrapper-section-newsletter .container-newsletter-text {
    width: 100%;
  }
  .wrapper-section-newsletter .container-newsletter-text .newsletter-text {
    margin-right: auto;
    margin-left: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: start;
    max-width: 100%;
  }
  .wrapper-section-newsletter .container-newsletter-text .newsletter-text h1,
  .wrapper-section-newsletter .container-newsletter-text .newsletter-text p {
    width: 100% !important;
  }
  .wrapper-section-newsletter .container-form-request {
    width: 100%;
    min-height: 500px !important;
  }
  .wrapper-section-newsletter .container-form-request .form-request {
    width: 90%;
    margin-top: 4rem !important;
    margin-bottom: 2rem !important;
  }
  .wrapper-section-newsletter .container-form-request form {
    max-width: 100% !important;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
  }
  .wrapper-section-newsletter .container-form-request form input[type="text"] {
    width: 100% !important;
    max-width: 90% !important;
  }
  .wrapper-section-newsletter
    .container-form-request
    form
    input[type="submit"] {
    width: 100% !important;
    max-width: 100% !important;
  }
  .header-single img {
    height: 550px;
  }
  .header-single .arrow-down-single {
    height: auto !important;
    width: 80px !important;
    transform: translate(-50%, 35px);
  }
  .header-single .title {
    width: 90% !important;
    font-size: 1rem;
    left: 0 !important;
    transform: translateY(-50%) !important;
    margin-left: 1rem !important;
  }
  .header-single .title h1 {
    font-size: 2rem !important;
  }
  .container-maps a {
    text-align: center;
    font-size: 1rem !important;
  }
}
@media (max-width: 768px) {
  .container-hero-section {
    font-display: swap;
  }
  .container-hero-section p {
    margin: 0;
  }
  .container-hero-section .container-left-section {
    text-align: center;
  }
  .container-hero-section .container-left-section p {
    text-align: center !important;
  }
  .container-hero-section .container-left-section .slogan {
    font-size: 1rem;
  }
  .container-hero-section .container-left-section a {
    padding: 8px 25px !important;
    font-size: 18px;
  }
  .container_bottom_section .container_logo {
    grid-template-columns: repeat(1, 200px) !important;
  }
  .card {
    min-width: 200px !important;
    margin: 0 !important;
    padding: 10px !important;
  }
  .card-text p {
    display: flex;
  }
  .card-text .card-title {
    justify-content: center;
    align-items: center;
  }
  .card-text .card-title div {
    width: 100% !important;
    text-align: start;
    margin-top: 1rem;
  }
  .card-text .card-title div p {
    margin: 0 !important;
  }
  .card-text .card-title h3 {
    text-align: start;
  }
  .container-text {
    width: 100% !important;
  }
  .container-text .uptitle {
    width: 80% !important;
    margin: 0 auto !important;
    margin-left: 2rem !important;
  }
  .container-role-cards {
    grid-template-columns: repeat(1, 1fr) !important;
  }
  .container-role-cards > div:nth-child(4) {
    order: 5;
  }
  .container-role-cards > div:nth-child(1) {
    order: 2;
  }
  .container-role-cards div {
    width: 70% !important;
  }
  .section-services .uptitle {
    width: 90% !important;
    margin-left: 2rem;
  }
  .section-services .uptitle div {
    justify-content: start !important;
  }
  .section-services .uptitle p {
    text-align: start !important;
  }
  .section-services .separator {
    display: block !important;
    height: 1px;
    width: 250px !important;
    background-color: #d9d9d9;
  }
  .section-services .green-button {
    margin-top: 1.5rem !important;
  }
  .section-services .container-services {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 2rem;
  }
  .section-services .container-services div {
    width: 100%;
    max-width: 500px;
  }
  .container_top_section .container-text {
    width: 80% !important;
    margin-left: 0 !important;
  }
  .container_top_section .container-text .text-scaled {
    font-size: 2.5rem !important;
    text-align: start;
    margin-left: 10% !important;
  }
  .blog {
    padding: 0;
    padding-bottom: 3rem;
  }
  .blog .heading {
    width: 80%;
  }
  .blog .heading .uptitle {
    justify-content: start !important;
  }
  .blog .heading h3 {
    text-align: start;
  }
  .blog .cards-container .card-post-one,
  .blog .cards-container .card-others {
    width: 95%;
  }
  footer .container {
    gap: 45px;
  }
  footer .container .columns {
    justify-items: center;
    grid-template-columns: repeat(1, 1fr);
  }
  .image-galler-team {
    width: auto !important;
    min-height: 333px;
  }
  .container-whois {
    align-items: center !important;
  }
  .container-galler-line {
    flex-direction: column;
    overflow-x: hidden;
    max-width: 95vw;
  }
  .container-galler-line .image-container-absolute img:nth-child(2) {
    right: 75px;
    bottom: 0;
  }
  .container-galler-line .image-container-absolute .border-right {
    height: 333px !important;
  }
  .container-galler-line .last-image-absolute-container img:nth-child(2) {
    left: 50px;
    bottom: 0;
  }
}

/* PAGINATION */

.pagination {
  display: flex;
  justify-content: center;
  margin: 2rem 0;
  gap: 0.45rem;
}

.pagination a {
  text-decoration: none;
  color: #232323;
}

.pagination .page-numbers {
  display: inline-block;
  padding: 6px 10px 3px 9px;
  border: 1px solid #ddd;
  border-radius: 4px;
  cursor: pointer;
}
.pagination .page-numbers a {
  text-decoration: none;
  color: #232323;
}

.pagination .page-numbers.current {
  background-color: #ff8774 !important;
  color: #fff;
}

.pagination .page-numbers:hover {
  background-color: #f0f0f0;
}

strong {
  font-family: "OpenSans-Bold" !important;
}

#single-post {
  font-family: "OpenSans-Light" !important;
  line-height: 1.7;

  h2,
  h3,
  h4,
  h5,
  h6 {
    font-family: "OpenSans-Regular" !important;
  }
  h2 {
    font-size: 2.25rem !important;
  }

  ul li,
  p,
  div {
    font-family: "OpenSans-Light" !important;
  }

  strong {
    font-family: "OpenSans-Regular" !important;
  }

  blockquote {
    margin: 0;
    border-left: 2px solid #232323;
    padding-left: 1rem;
    background-color: #f4f4f4;

    p {
      padding: 8px 0;
    }
  }
}

.editor-styles-wrapper
  :where(:not(.is-layout-flex, .is-layout-grid))
  .wp-block {
  margin: 0;
  padding: 1rem;
  width: 100%;
  max-width: 100%;
}

body
  .block-editor-block-list__empty-block-inserter
  .block-editor-inserter__toggle.components-button.has-icon,
.block-editor-block-list__insertion-point-inserter
  .block-editor-inserter__toggle.components-button.has-icon {
  right: 500px !important;
  z-index: 6000 !important;
  width: 300px !important;
  height: 300px !important;
}

.card-team {
  align-items: center;
}

.card-team img.profil {
  border-radius: 500px !important;
  width: 300px !important;
  height: 300px !important;
  object-fit: cover !important;
}

.card-service h3 a {
  color: inherit;

  &:hover {
    color: #76c29e !important;
    text-decoration: underline !important;
  }
}
