:root {
  --padding: 50px;
  --max-width: 1100px;
  --color-orange: #F68165;
  --color-gradient: linear-gradient(to right, #17B6A2 0%, #25A6BF 120%);
  --color-black: #333337;
  --color-grey-dark: #A6A6B7;
  --color-white: #FFFFFF;
  }
  /* padding: 16px var(--padding); */
  /* General */
  *,
  *::before,
  *::after {
  box-sizing: border-box;
  }
  html {
  overflow-x: hidden;
  }
  body {
  font-family: "Poppins", sans-serif;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  position: relative;
  scroll-behavior: smooth;
  background-color: #FAFAFA;
  height: auto;
  }
  /* 
  header {
  position: fixed;
  width: 100%;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 0px 29px 0px;
  transition: transform 0.2s;
  z-index: 999;
  }
  header.navbar-hidden {
  transform: translateY(-60px);
  }
  @keyframes hide-header {
  0% {
  transform: translateY(0);
  }
  50% {
  transform: translateY(-30px);
  }
  100% {
  transform: translateY(-60px);
  }
  }
  .wrapper-header-top {
  width: 100%;
  background-color: #FFFFFF;
  }
  .header-top {
  display: flex;
  gap: 56px;
  padding: 16px var(--padding);
  max-width: var(--max-width);
  margin: auto;
  color: var(--color-orange);
  border-bottom: solid 1px #D2D2D2;
  transition: transform 0.3s, ;
  }
  .wrapper-header-main {
  width: 100%;
  background-color: #FFFFFF;
  }
  .header-main {
  height: 105px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px var(--padding);
  max-width: var(--max-width);
  margin: auto;
  }
  nav ul {
  display: flex;
  gap: 30px;
  list-style: none;
  font-weight: 400;
  cursor: pointer;
  }
  nav ul li:hover {
  background-image: var(--color-gradient);
  background-clip: text;
  -webkit-background-clip: text;
  -moz-background-clip: text;
  -webkit-text-fill-color: transparent;
  }
  .header-main .tel-es {
  display: flex;
  flex-direction: row;
  justify-content: center;
  text-decoration: none;
  gap: 20px;
  }
  .header-main .tel-es div {
  display: flex;
  flex-direction: column;
  }
  .header-main .tel-es span:nth-child(1) {
  color: var(--color-grey-dark);
  }
  .header-main .tel-es span:nth-child(2) {
  background-image: var(--color-gradient);
  background-clip: text;
  -webkit-background-clip: text;
  -moz-background-clip: text;
  -webkit-text-fill-color: transparent;
  }
  */
  .home-page-wrapper {
  background-image: url("../img/bg-header.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: 1150PX;
  padding: 16px var(--padding);
  height: 680px;
  margin-top: 130px;
  position: relative;
  }
  .blobs-1 {
  position: absolute;
  right: 0;
  top: 250px;
  height: 350px;
  width: auto;
  z-index: -999;
  }
  .blobs-2 {
  position: absolute;
  left: 100px;
  top: 500px;
  height: 350px;
  width: auto;
  z-index: -999;
  }
  .home-page-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: var(--padding);
  gap: 15px;
  max-width: var(--max-width);
  margin: auto;
  height: 80%;
  }
  .home-page-content h1 {
  font-size: 3rem;
  color: white;
  font-weight: 700;
  margin: 0;
  width: 60%;
  }
  .home-page-content h1 span {
  background-image: var(--color-gradient);
  background-clip: text;
  -webkit-background-clip: text;
  -moz-background-clip: text;
  -webkit-text-fill-color: transparent;
  }
  .home-page-content p {
  color: white;
  font-weight: 400;
  }
  .buttons {
  display: flex;
  gap: 20px;
  }
  .buttons .button:nth-child(1) {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 170px;
  height: 40px;
  background-color: var(--color-orange);
  text-decoration: none;
  color: white;
  border-radius: 10px;
  font-weight: 600;
  font-size: 0.8rem;
  border: 2px solid transparent;
  -webkit-border-radius: 3px;
  border-radius: 10px;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  }
  .buttons .button:nth-child(1):hover {
  background-color: transparent;
  color: var(--color-orange);
  border-color: var(--color-orange);
  }
  .buttons .button:nth-child(2) {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 170px;
  height: 40px;
  background-color: transparent;
  text-decoration: none;
  color: var(--color-orange);
  border-radius: 10px;
  font-weight: 600;
  font-size: 0.8rem;
  border: 2px solid var(--color-orange);
  -webkit-border-radius: 3px;
  border-radius: 10px;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  }
  .buttons .button:nth-child(2):hover {
  background-color: var(--color-orange);
  color: var(--color-white);
  }
  .advantages {
  margin-top: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 100px;
  }
  .advantage {
  font-weight: 600;
  color: var(--color-black);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  background-color: white;
  text-align: center;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 0px 29px 0px;
  border-radius: 20px;
  height: 160px;
  width: 220px;
  padding: 20px;
  }
  .services {
  width: 100%;
  max-width: var(--max-width);
  margin: auto;
  background-color: transparent;
  position: relative;
  text-align: center;
  }
  h2 {
  font-size: 2.2rem;
  text-align: center;
  margin-top: 100px;
  margin-bottom: 70px;
  font-weight: 700;
  color: var(--color-black);
  }
  .services-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px var(--padding);
  max-width: var(--max-width);
  width:  100%;
  }
  .services-wrapper a {
  color: var(--color-orange);
  text-decoration: none;
  font-size: 0.8rem;
  }
  .service-content {
  margin: 0;
  background-color: transparent;
  border: none;
  position: relative;
  transition: transform 0.3s ease;
  }
  .bg-service {
  width: 320px;
  height: auto;
  }
  .hidden {
  display: none;
  opacity: 0;
  }
  .service-info {
  background-color: white;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 0px 29px 0px;
  border-radius: 7px;
  width: 250px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  font-size: 0.8rem;
  position: absolute;
  bottom: -5%;
  left: 65%;
  transform: translate(-50%, -50%);
  }
  .the-arrow {
  width: 1px;
  transition: all 0.2s;
  }
  .the-arrow.-left {
  position: absolute;
  top: 60%;
  left: 0;
  }
  .the-arrow.-left > .shaft {
  width: 0;
  background-color: var(--color-orange);
  }
  .the-arrow.-left > .shaft:before,
  .the-arrow.-left > .shaft:after {
  width: 0;
  background-color: var(--color-orange);
  }
  .the-arrow.-left > .shaft:before {
  transform: rotate(0);
  }
  .the-arrow.-left > .shaft:after {
  transform: rotate(0);
  }
  .the-arrow.-right {
  top: 3px;
  }
  .the-arrow.-right > .shaft {
  width: 1px;
  transition-delay: 0.2s;
  }
  .the-arrow.-right > .shaft:before,
  .the-arrow.-right > .shaft:after {
  width: 8px;
  transition-delay: 0.3s;
  transition: all 0.5s;
  }
  .the-arrow.-right > .shaft:before {
  transform: rotate(40deg);
  }
  .the-arrow.-right > .shaft:after {
  transform: rotate(-40deg);
  }
  .the-arrow > .shaft {
  background-color: var(--color-orange);
  display: block;
  height: 1px;
  position: relative;
  transition: all 0.2s;
  transition-delay: 0;
  will-change: transform;
  }
  .the-arrow > .shaft:before,
  .the-arrow > .shaft:after {
  background-color: var(--color-orange);
  content: '';
  display: block;
  height: 1px;
  position: absolute;
  top: 0;
  right: 0;
  transition: all 0.2s;
  transition-delay: 0;
  }
  .the-arrow > .shaft:before {
  transform-origin: top right;
  }
  .the-arrow > .shaft:after {
  transform-origin: bottom right;
  }
  .animated-arrow {
  display: inline-block;
  color: var(--color-orange);
  font-size: 1.25em;
  font-style: italic;
  text-decoration: none;
  position: relative;
  transition: all 0.2s;
  }
  .animated-arrow:hover {
  color: var(--color-orange);
  }
  .animated-arrow:hover > .the-arrow.-left > .shaft {
  width: 64px;
  transition-delay: 0.1s;
  background-color: var(--color-orange);
  }
  .animated-arrow:hover > .the-arrow.-left > .shaft:before,
  .animated-arrow:hover > .the-arrow.-left > .shaft:after {
  width: 8px;
  transition-delay: 0.1s;
  background-color: var(--color-orange);
  }
  .animated-arrow:hover > .the-arrow.-left > .shaft:before {
  transform: rotate(40deg);
  }
  .animated-arrow:hover > .the-arrow.-left > .shaft:after {
  transform: rotate(-40deg);
  }
  .animated-arrow:hover > .main {
  transform: translateX(calc(1px + 16px));
  transform: translateX(calc(64px + 16px));
  }
  .animated-arrow:hover > .main > .the-arrow.-right > .shaft {
  width: 0;
  transform: translateX(200%);
  transition-delay: 0;
  }
  .animated-arrow:hover > .main > .the-arrow.-right > .shaft:before,
  .animated-arrow:hover > .main > .the-arrow.-right > .shaft:after {
  width: 0;
  transition-delay: 0;
  transition: all 0.1s;
  }
  .animated-arrow:hover > .main > .the-arrow.-right > .shaft:before {
  transform: rotate(0);
  }
  .animated-arrow:hover > .main > .the-arrow.-right > .shaft:after {
  transform: rotate(0);
  }
  .animated-arrow > .main {
  display: flex;
  align-items: center;
  transition: all 0.2s;
  }
  .animated-arrow > .main > .text {
  margin: 0 16px 0 0;
  line-height: 1;
  }
  .animated-arrow > .main > .the-arrow {
  position: relative;
  }
  .services .arrow-carousel {
  display: flex;
  justify-content: space-between;
  z-index: 2;
  }
  .services .arrow {
  /* ... autres styles ... */
  transition: opacity 0.3s ease-in-out;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 0px 29px 0px;
  cursor: pointer;
  }
  .services .left-arrow {
  position: absolute;
  margin-left: 0;
  transform: rotate(-180deg);
  left: 7%;
  top: 67%;
  z-index: 1;
  }
  .services .right-arrow {
  position: absolute;
  margin-right: 0;
  top: 67%;
  right: 13.25%;
  z-index: 1;
  }
  .about {
  padding: 16px var(--padding);
  max-width: var(--max-width);
  margin: auto;
  height: auto;
  position: relative;
  }
  .about .blobs-3 {
  width: 400px;
  height: auto;
  position: absolute;
  right: -300px;
  z-index: -1;
  top: -120px;
  transform: rotate(90deg);
  }
  .about-wrapper{
  margin: 0;
  display: flex;
  align-items: space-between;
  gap: 40px;
  background-color: white;
  padding: 30px;
  border-radius: 20px;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 0px 29px 0px;
  }
  .about-wrapper img {
  width: auto;
  height: 400px;
  }
  .zoom-effect:hover {
  transform: scale(1.015);
  transition: transform 0.3s ease;
  }
  .about-info {
  display: flex;
  flex-direction: column;
  margin-top: 20px;
  gap: 15px;
  }
  .about-info p{
  color: var(--color-black);
  }
  h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-black);
  margin: 0;
  }
  .button-about {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 170px;
  height: 40px;
  background-color: var(--color-orange);
  text-decoration: none;
  color: white;
  border-radius: 10px;
  font-weight: 600;
  font-size: 0.8rem;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 0px 29px 0px;
  border: 2px solid transparent;
  -webkit-border-radius: 3px;
  border-radius: 10px;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  }
  .button-about:hover {
  background-color: transparent;
  color: var(--color-orange);
  border-color: var(--color-orange);
  }
  .testimonial {
  padding: 16px var(--padding);
  max-width: var(--max-width);
  margin: auto;
  margin-top: 100px;
  height: auto;
  }
  .testimonial-wrapper{
  display: flex;
  justify-content: space-between;
  position: relative;
  }
  .rectangle {
  position: absolute;
  width: 900px;
  height: 200px;
  background-image: var(--color-gradient);
  border-radius: 20px;
  right: -400px;
  top: 0;
  z-index: -1;
  }
  .testimonial .testimonial-left{
  display: flex;
  flex-direction: column;
  gap: 20px;
  }
  .testimonial-left h3 {
  font-size: 2rem;
  }
  .testimonial .testimonial-left p{
  width: 50%;
  }
  .testimonial .testimonial-arrow{
  display: flex;
  gap: 10px;
  }
  .testimonial .testimonial-arrow .arrow {
  cursor: pointer;
  }
  .testimonial .testimonial-arrow .testi-left-arrow img {
  transform: rotate(-180deg);
  }
  .testimonial-right{
  padding: 30px;
  border-radius: 30px;
  margin-top: 70px;
  width: 1100px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 0px 29px 0px;
  background-color: white;
  animation: float 6s ease-in-out infinite;
  z-index: 1;}
  @keyframes float {
  0% {
  box-shadow: 0 5px 15px 0px rgba(0,0,0,0.6);
  transform: translatey(0px);
  }
  50% {
  box-shadow: 0 25px 15px 0px rgba(0,0,0,0.2);
  transform: translatey(-20px);
  }
  100% {
  box-shadow: 0 5px 15px 0px rgba(0,0,0,0.6);
  transform: translatey(0px);
  }
  }
  .testimonial-right span{
  color: var(--color-orange);
  }
  .hidden-testi {
  display: none;
  }
  .testimonial-right {
  /* ... autres styles ... */
  animation: fade-left 0.5s;
  }
  @keyframes fade-left {
  0% {
  opacity: 0;
  transform: translateX(100%);
  }
  100% {
  opacity: 1;
  transform: translateX(0%);
  }
  }
  .contact {
  background-image: url("../img/bg-contact.png");
  background-position: top;
  background-repeat: no-repeat;
  background-size: 1500px;
  padding: 16px var(--padding);
  max-width: var(--max-width);
  margin: auto;
  height: auto;
  position: relative;
  margin-top: 150px;
  }
  .contact h2 {
  color: white;
  }
  .contact-wrapper {
  background-color: white;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 0px 29px 0px;
  border-radius: 20px;
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  gap: 80px;
  padding: 20px;
  }
  .contact-infos {
  background-image: var(--color-gradient);
  border-radius: 15px;
  width: 32.5%;
  padding: 30px;
  color: white;
  position: relative;
  }
  .contact-infos img {
  position: absolute;
  right: -100px;
  bottom: -20px;
  }
  .contact-info {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 20px;
  font-size: 0.9rem;
  padding-top: 40px;
  }
  .contact-infos h3 {
  color: white;
  }
  .contact-form {
  display: flex;
  align-items: space-between;
  justify-content: center;
  flex-direction: column;
  gap: 30px;
  width: 100%;
  padding: 20px;
  }
  .form-group {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 47%;
  }
  .rw {
  width: 100%;
  }
  .contact-form .contact-form-row {
  display: flex;
  flex-direction: row;
  align-items: space-between;
  justify-content: space-between;
  }
  .contact-form input,
  .contact-form textarea {
  border: none;
  border-bottom: 1px solid var(--color-black);
  color: var(--color-black);
  }
  .contact-form textarea#message {
  height: 100px;
  }
  .contact-form label {
  color: var(--color-orange);
  font-size: 0.8rem;
  }
  .contact-form .button-submit {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 170px;
  height: 40px;
  background-color: var(--color-orange);
  text-decoration: none;
  color: white;
  border-radius: 10px;
  font-weight: 600;
  font-size: 0.8rem;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 0px 29px 0px;
  border: none;
  border: 2px solid transparent;
  -webkit-border-radius: 3px;
  border-radius: 10px;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
  }
  .contact-form .button-submit:hover {
  background-color: transparent;
  color: var(--color-orange);
  border-color: var(--color-orange);
  }
  footer {
  width: 100%;
  background-color: white;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 0px 29px 0px;
  height: 200px;
  margin-top: 150px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  }
  footer .menu ul {
  padding: 16px var(--padding);
  max-width: var(--max-width);
  margin: auto;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
  list-style: none;
  font-weight: 400;
  cursor: pointer;
  color: var(--color-black);
  }
  footer a {
  text-decoration: none;
  color: var(--color-black);
  }
  footer a:hover {
  text-decoration: none;
  background-image: var(--color-gradient);
  background-clip: text;
  -webkit-background-clip: text;
  -moz-background-clip: text;
  -webkit-text-fill-color: transparent;
  }
  footer .more {
  display: flex;
  justify-content: center;
  gap: 30px;
  list-style: none;
  font-weight: 400;
  cursor: pointer;
  color: var(--color-black);
  }
  .m-l-wrapper {
  padding: 16px var(--padding);
  max-width: var(--max-width);
  margin: auto;
  margin-top: 100px;
  }
  .m-l-wrapper h2{
  text-align: left;
  font-size: 2rem;
  }
  .m-l-wrapper span{
  font-size: 1.5rem;
  }
  
  .m-l-wrapper .bg-info {
      
     width: 100%;
  }
  
  
  
  @media (max-width:1060px) {
  .services .arrow {
  display: none;
  }
  .services .arrow-carousel{
  display: none;
  }
  .hidden {
  display: block;
  opacity: 1;
  }
  }
  @media (max-width: 1000px) {
  .home-page-content {
  padding: 0;
  }
  .services-wrapper {
  flex-wrap: wrap;
  }
  .services .arrow {
  display: none;
  }
  .services .arrow-carousel {
  display: none;
  }
  .about-wrapper {
  flex-direction: column;
  }
  .about-wrapper img{
  display: none;
  }
  .contact-wrapper {
  gap: 20px;
  }
  .contact-infos img {
  display: none;
  }



  
  }
  @media (max-width:820px) {
  .advantages {
  flex-direction: column;
  gap: 20px;
  }
  .advantage {
  width: 100%;
  }
  .services {
  padding-top: 480px;
  }
  .home-page-content H1{
  width: 100%;
  }
  .home-page-content p{
  display: none;
  opacity: 1;
  }
  .services .arrow-carousel {
  display: none;
  }
  .services-wrapper {
  justify-content: center;
  }
  .testimonial-wrapper {
  flex-direction: column;
  }
  .testimonial-left {
  justify-content: center;
  align-items: center;
  text-align: center;
  }
  .testimonial-right {
  width: 100%;
  }
  .rectangle {
  display: none;
  }
  .testimonial .testimonial-left p {
  width: 100%;
  }
  .contact-wrapper {
  flex-direction: column;
  }
  .contact-infos {
  width: 100%;
  }
  }
  @media screen and (max-width: 560px) {
  .home-page-wrapper H1 {
  font-size: 2.5rem;
  }
  .button-about {
  width: 100%;
  }
  .contact-form .contact-form-row {
  flex-direction: column;
  }
  .form-group {
  width: 100%;
  margin-top: 40px;
  }
  .contact-form .button-submit {
  width: 100%;
  }
  .contact {
  padding: 8px 20px;
  }
  .form-group {
  gap: 40px;
  }
  }
  