@import url('https://fonts.googleapis.com/css2?family=Anta&family=Orbitron:wght@400..900&display=swap');
/*---↓↓Font Size class with responsive↓↓---*/
:root {
  --fs-xl: clamp(2.5rem, 8vw + 1rem, 4.2rem);
  --fs-para: clamp(0.75rem, 2vw + 1rem, 1.8rem);
  --fs-btn: clamp(0.75rem, 1.5vw + 1rem, 1.2rem);
}
/*---↑↑Font Size class with responsive↑↑---*/
/*---↓↓Default variable---↓↓*/
:root {
  --eww-bg-color: #f4fbfd;
  --eww-secondary-bg: #FFFFFF;
  --eww-text-color: #060F16;
  --eww-text-color-inverse: #FFFFFF;
  --eww-primary-color: #60AFCE;
  --eww-secondary-color: #E1FF4A;
  --eww-accent-color: #DB1463;
  --eww-link-hover: #60AFCE;
  --eww-btn-hover: #00529e;
  --eww-soft-btn-color: #A0CFE2;
  --eww-static-dark: #060F16;
  --eww-shadow: #C3C3C3;
  --eww-logo: url("/images/eww-logo.svg");
  --eww-certificate: url("/images/quality-certificate.svg");
  --eww-icon: url("/images/eww-icon.svg");
  --eww-value-bg: url("/images/value-bg-img.svg");
  --eww-value-bg-resp: url("/images/value-bg-resp.svg");
  --eww-contact-illu: url("/images/eww-contact-illu.svg");
}
/*---↓↓Dark mode variable---↓↓*/
.eww-dark-mode {
  --eww-bg-color: #060F16;
  --eww-secondary-bg: #0d2030;
  --eww-text-color: #FFFFFF;
  --eww-text-color-inverse: #060F16;
  --eww-primary-color: #60AFCE;
  --eww-secondary-color: #E1FF4A;
  --eww-accent-color: #DB1463;
  --eww-link-hover: #E1FF4A;
  --eww-btn-hover: #E1FF4A;
  --eww-soft-btn-color: #A0CFE2;
  --eww-static-dark: #060F16;
  --eww-shadow: #000000;
  --eww-logo: url("/images/eww-logo-white.svg");
  --eww-certificate: url("/images/quality-certificate-dark.svg");
  --eww-icon: url("/images/eww-icon-white.svg");
  --eww-value-bg: url("/images/value-bg-img-white.svg");
  --eww-value-bg-resp: url("/images/value-bg-resp-white.svg");
  --eww-contact-illu: url("/images/eww-contact-illu-white.svg");
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  position: relative;
  width: 100vw;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-family: "Orbitron", sans-serif;
  background-color: var(--eww-bg-color);
  color: var(--eww-text-color);
  overflow-x: hidden;
  transition: all 0.3s ease;
}
/*↓↓components setting↓↓*/
eww-app-header,
eww-app-footer {
  width: inherit;
}
/*↑↑components setting↑↑*/
/*↓↓General setting↓↓*/
section {
  scroll-margin-top: 80px;
}
h1:not(.eww-hero-section h1, .eww-hero-details h1) {
  position: relative;
  width: 75%;
  text-align: center;
  font-size: 3rem;
}
.eww-btn {
  position: relative;
  border: none;
  padding: 10px 0px;
  font-size: var(--fs-btn);
  font-family: inherit;
  background-color: var(--eww-primary-color);
  letter-spacing: 0.1rem;
  cursor: pointer;
  overflow: hidden;
  transform: skewX(-15deg);
  transition: all 0.3s ease;
}
.eww-btn > a,
.eww-btn > span {
  position: relative;
  color: #060F16;
  padding: 10px 20px;
  z-index: 2;
  transition: all 0.3s;
}
.eww-btn::after {
  content: "";
  position: absolute;
  top: -5%;
  left: -5%;
  width: 110%;
  height: 110%;
  background-color: var(--eww-secondary-color);
  opacity: 1;
  z-index: 1;
  transform-origin: right;
  transform: scaleX(0);
  transition: transform .3s ease-in-out;
}
.eww-btn:hover::after {
  transform-origin: left;
  transform: scaleX(1);
}
li {
  list-style: none;
}
a {
  text-decoration: none;
  color: var(--eww-text-color);
}
section > p {
  line-height: 1.5rem;
}
/*↑↑General setting↑↑*/
/*↓↓Header↓↓*/
header {
  position: fixed;
  top: 0;
  left: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 75px;
  padding: 5px 20px;
  z-index: 3;
  background-color: var(--eww-bg-color);
}
header > * {
  position: relative;
  display: flex;
}
header .eww-logo {
  width: 150px;
  height: 50px;
  background-image: var(--eww-logo);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  transition: all 0.3s ease;
}
header .eww-menu {
  gap: 35px;
}
header .eww-menu a {
  position: relative;
  color: var(--eww-text-color);
  transition: all 0.3s ease;
}
header .eww-menu a::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 2px;
  background-color: var(--eww-link-hover);
  bottom: -3px;
  left: 0;
  transform-origin: right;
  transform: scaleX(0);
  transition: transform .3s ease-in-out;
}
.eww-menu a:hover {
  color: var(--eww-link-hover);
  &::before {
    transform-origin: left;
    transform: scaleX(1);
  }
}
header .eww-lang-dark-container {
  gap: 20px;
  justify-content: center;
  align-items: center;
}
.eww-lang-dark-container ul {
  position: relative;
  cursor: pointer;
  background-color: var(--eww-bg-color);
  width: 100px;
  &::before {
    content: "<";
    position: absolute;
    left: -10px;
    transform: rotate(-90deg);
  }
}
.eww-lang-dark-container ul a:hover {
  color: var(--eww-link-hover);
}
.eww-lang-dark-container ul li {
  background-color: inherit;
  width: 100%;
  padding: 0px 5px;
}
.eww-lang-dark-container ul li:nth-child(2),
.eww-lang-dark-container ul li:nth-child(3) {
  position: absolute;
  opacity: 0;
  transition: all 0.3s ease;
  background-color: var(--eww-bg-color);
}
.eww-lang-dark-container ul li:nth-child(2) {
  top: 0%;
}
.eww-lang-dark-container ul li:nth-child(3) {
  top: 0%;
}
.eww-lang-dark-container ul:hover li:nth-child(2) {
  opacity: 1;
  top: 100%;
}
.eww-lang-dark-container ul:hover li:nth-child(3) {
  opacity: 1;
  top: 200%;
}
.eww-lang-dark-container button {
  position: relative;
  width: 40px;
  height: 20px;
  background-color: var(--eww-primary-color);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  &::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    width: 16px;
    aspect-ratio: 1;
    background-color: var(--eww-bg-color);
    transform: translate(2px, -50%);
    transition: all 0.3s ease;
  }
}
.eww-lang-dark-container button.eww-dark-active {
  background-color: var(--eww-secondary-color);
  &::after {
    transform: translate(22px, -50%);
  }
}
header .hamburger {
  display: none;
}
/*↑↑Header↑↑*/
/*↓↓Main↓↓*/
main {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  padding-top: 150px;
  gap: 20vh;
}
/*↓↓Hero section↓↓*/
.eww-hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 1250px;
  padding: 30px;
  background-color: var(--eww-secondary-bg);
  border-radius: 10px;
}
.eww-hero-section > h1 {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  width: fit-content;
  font-size: var(--fs-xl);
  gap: 2rem;
}
.eww-hero-section > h1 span {
  position: relative;
  display: flex;
  align-items: baseline;
  gap: 10px;
  padding: 0px 10px;
  background-color: var(--eww-secondary-color);
  color: #060F16;
  transform: skewX(-15deg);
}
.eww-hero-section > h1::before {
  content: "Agence Web";
  position: absolute;
  top: -10px;
  left: 5px;
  font-size: var(--fs-btn);
  font-weight: 400;
  color: var(--eww-link-hover);
}
.eww-hero-section > h1::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  transform: translate(5rem, -50%);
  height: var(--fs-xl);
  aspect-ratio: 1;
  background-image: var(--eww-certificate);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
.eww-hero-section .eww-hero-container {
  position: relative;
  display: flex;
  width: 100%;
  height: fit-content;
}
.eww-hero-container .eww-hero-illu {
  position: relative;
  width: 45%;
  aspect-ratio: 1.2 / 1;
  background-image: url("images/rocket-anim.svg");
  background-size: contain;
  background-position-x: 40%;
  background-repeat: no-repeat;
}
.eww-hero-container .eww-hero-illu::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-image: url("images/rocket-around.svg");
  background-size: 80%;
  background-position-x: center;
  background-repeat: no-repeat;
  opacity: 0;
  animation: aroundRocket 2s 2s forwards;
}
@keyframes aroundRocket {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.eww-hero-container .eww-hero-details {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 55%;
  gap: 20px;
}
.eww-hero-container .eww-hero-details::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0%;
  width: 95%;
  height: 30px;
  background-image: url("/images/gauge-design.svg");
  background-size: cover;
  background-position: 0 center;
  background-repeat: no-repeat;
}
.eww-hero-container .eww-hero-details::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0%;
  width: 100%;
  height: 60px;
  background-color: var(--eww-secondary-bg);
  animation: animGauge 2s 3s forwards;
}
@keyframes animGauge {
  from {
    width: 100%;
  }
  to {
    width: 0%;
  }
}
.eww-hero-details > h1 {
  position: relative;
  font-size: var(--fs-xl);
}
.eww-hero-details > p {
  position: relative;
  font-size: var(--fs-para);
}
.eww-hero-details .eww-hero-cta {
  position: relative;
  display: flex;
  gap: 20px;
  padding-top: 30px;
}
.eww-hero-cta button:nth-child(1) {
  background-color: var(--eww-soft-btn-color);
}
/*↑↑Hero section↑↑*/
/*↓↓Avantages section↓↓*/
.eww-avantages-section {
  position: relative;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  max-width: 1250px;
  letter-spacing: 1.2px;
}
.eww-avantages-section .eww-avantages-container {
  position: relative;
  width: 45%;
  display: flex;
  justify-content: flex-start;
  padding: 10px 0 10px 15px;
  flex-wrap: wrap;
  align-items: center;
  border: 3px solid var(--eww-primary-color);
  background-color: var(--eww-secondary-bg);
  border-radius: 5px;
}
.eww-avantages-container .eww-avantages-details {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 70%;
}
.eww-avantages-container > p {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--eww-static-dark);
  width: 35%;
  aspect-ratio: 1;
  & span {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 4rem;
    font-weight: 900;
    background-color: unset;
    color: var(--eww-link-hover);
  }
}
.eww-avantages-container .eww-avantages-illu {
  position: absolute;
  bottom: 5px;
  right: 5px;
  width: 45%;
}
/*↑↑Avantages section↑↑*/
/*↓↓Services section↓↓*/
.eww-services-section {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  width: 100%;
  max-width: 1750px;
  gap: 40px;
  letter-spacing: 1.2px;
}
.eww-services-section .eww-services-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(1, 1fr);
  gap: 20px;
  width: 90%;
}
.eww-services-container .eww-servies-details {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding-bottom: 60px;
  box-shadow: 3px 4px 7px var(--eww-shadow);
  background-color: var(--eww-secondary-bg);
  border-radius: 5px;
  &::before {
    content: "";
    position: absolute;
    left: 5px;
    bottom: 15px;
    width: 10%;
    aspect-ratio: 1;
    background-image: var(--eww-icon);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
  }
}
.eww-servies-details img {
  position: relative;
  width: 40%;
  align-self: center;
}
.eww-servies-details h3 {
  position: relative;
  padding-left: 5px;
  padding-bottom: 10px;
}
.eww-servies-details p {
  padding-left: 5px;
  padding-bottom: 30px;
  padding-right: 5px;
}
.eww-servies-details button {
  position: absolute;
  bottom: 20px;
  align-self: flex-end;
  padding: 10px 10px;
  margin-right: 20px;
  transform: unset;
}
/*↑↑Services section↑↑*/
/*↓↓Value section↓↓*/
.eww-value-section {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  width: 100%;
  gap: 40px;
  letter-spacing: 1.2px;
  padding: 30px;
  background-color: var(--eww-secondary-bg);
}
.eww-value-section .value-intro {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 30px;
}
.eww-value-section .value-intro > p {
  width: 100%;
}
.eww-value-section .eww-value-container {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  min-height: 500px;
  padding: 40px 5px;
  &::before {
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    height: 100%;
    padding-left: 15px;
    background-color: var(--eww-secondary-bg);
    background-image: var(--eww-value-bg);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 10px;
    z-index: 1;
  }
}
.eww-value-container .eww-value-details {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 35%;
  transform: translateX(-275px);
}
.eww-value-container .eww-value-details:nth-child(even) {
  transform: translateX(300px);
}
.eww-value-section .eww-value-cta {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;
  margin-top: -20px;
}
/*↑↑Value section↑↑*/
/*↓↓Inspiration section↓↓*/
.eww-inspiration-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  width: 100%;
  padding: 0px 15px;
  text-align: center;
}
.eww-inspiration-section > p {
  width: 75%;
  padding-top: 30px;
}
.eww-inspiration-section .eww-inspiration-caroussel {
  position: relative;
  display: grid;
  place-items: center;
  width: 90%;
  height: fit-content;
  margin: auto;
}
.slider{
  width: 100%;
  height: var(--height);
  overflow: hidden;
  mask-image: linear-gradient(
      to right,
      transparent,
      #000 10% 90%,
      transparent
  );
}
.slider .list{
  display: flex;
  width: 100%;
  min-width: calc(var(--width) * var(--quantity));
  position: relative;
}
.slider .list .item{
  width: var(--width);
  height: var(--height);
  position: absolute;
  left: 100%;
  animation: autoRun 10s linear infinite;
  transition: filter 0.5s;
  animation-delay: calc( (10s / var(--quantity)) * (var(--position) - 1) - 10s)!important;
}
.slider .list .item .caroussel-img{
  width: 100%;
  height: 100%;
  background-image: var(--eww-slide-img);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
.eww-dark-mode .caroussel-img[style*="Dribbble-Logo.png"] {
  --eww-slide-img: url(/images/dribbble-logo-white.png) !important;
}
.eww-dark-mode .caroussel-img[style*="Awwwards-Logo.png"] {
  --eww-slide-img: url(/images/awwwards-logo-white.png) !important;
}
.eww-dark-mode .caroussel-img[style*="behance-logo.png"] {
  --eww-slide-img: url(/images/behance-logo-white.png) !important;
}
@keyframes autoRun{
  from{
      left: 100%;
  }to{
      left: calc(var(--width) * -1);
  }
}
.slider:hover .item{
  animation-play-state: paused !important;
  filter: grayscale(1);
}
.slider .item:hover{
  filter: grayscale(0);
}
.slider[reverse="true"] .item{
  animation: reversePlay 20s linear infinite;
  animation-delay: calc( (20s / var(--quantity)) * (var(--position) - 1) - 20s)!important;
}
@keyframes reversePlay{
  from{
      left: calc(var(--width) * -1);
  }to{
      left: 100%;
  }
}
.eww-inspiration-section .eww-inspiration-cta {
  position: relative;
  display: flex;
  gap: 30px;
}
.eww-inspiration-cta button:nth-child(1) {
    background-color: var(--eww-soft-btn-color);
}
/*↑↑Inspiration section↑↑*/
/*↓↓Form section↓↓*/
.eww-form-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 40px;
  letter-spacing: 1.2px;
  padding: 20px;
}

.eww-contact-container {
  display: flex;
  width: 100%;
  background-color: var(--eww-secondary-bg);
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
  overflow: hidden;
}

.eww-contact-info, .eww-contact-form {
  flex: 1;
  padding: 40px;
}

.eww-contact-info {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
  background-color: var(--eww-primary-color);
  color: #FFFFFF;
  z-index: 1;
  &::before {
    content: "";
    position: absolute;
    width: 30%;
    aspect-ratio: 1;
    top: 5px;
    right: 0;
    background-image: var(--eww-contact-illu);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    z-index: -1;
  }
}

.eww-contact-info h2 {
  margin-bottom: 20px;
  font-size: 24px;
  text-align: start;
}

.eww-contact-info-item {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 15px;
  &::before {
    content: "";
    position: relative;
    display: inline-block;
    height: 70px;
    aspect-ratio: 1;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
  }
}
.eww-contact-info-item.eww-phone::before {
  background-image: url("/images/eww-phone.svg");
}
.eww-contact-info-item.eww-mail::before {
  background-image: url("/images/eww-mail.svg");
}
.eww-contact-info-item.eww-rdv::before {
  background-image: url("/images/eww-rdv.svg");
}
.eww-contact-info-item.eww-time::before {
  background-image: url("/images/eww-time.svg");
}
.eww-contact-info-item a {
  position: relative;
  color: #FFFFFF;
  transition: all 0.3s ease;
  &::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    background-color: var(--eww-secondary-color);
    bottom: -3px;
    left: 0;
    transform-origin: right;
    transform: scaleX(0);
    transition: transform .3s ease-in-out;
  }
}
.eww-contact-info-item a:hover {
  color: var(--eww-secondary-color);
  &::before {
    transform-origin: left;
    transform: scaleX(1);
  }
}
.eww-contact-form h2 {
  margin-bottom: 50px;
  text-align: center;
  position: relative;
}

.eww-contact-form h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background-color: var(--eww-primary-color);
}

.eww-contact-form form {
  display: flex;
  flex-direction: column;
}

.eww-form-group {
  margin-bottom: 50px;
  position: relative;
}

.eww-form-group label {
  display: block;
  position: absolute;
  top: -25px;
  color: #616161;
  font-weight: 600;
  transition: color 0.3s ease;
}

.eww-form-group input,
.eww-form-group textarea {
  width: 100%;
  padding: 12px 15px;
  background-color: var(--eww-bg-color);
  border: 2px solid var(--eww-text-color-inverse);
  outline: none;
  color: var(--eww-text-color);
  font-family: inherit;
  letter-spacing: 1.2px;
  transition: all 0.3s ease;
  font-size: 16px;
}

.eww-form-group input:focus,
.eww-form-group textarea:focus {
  border-color: var(--eww-btn-hover);
  box-shadow: 0 0 0 2px rgba(52, 152, 219, 0.2);
}
.eww-form-group input:focus + label,
.eww-form-group textarea:focus + label {
  color: var(--eww-btn-hover);
}
.eww-form-group textarea {
  height: 150px;
  resize: vertical;
}
/*↑↑Form section↑↑*/
/*↑↑Main↑↑*/
/*↓↓Footer section↓↓*/
footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  background-color: #0d2030;
  color: #f5f5f5;
  padding: 20px 40px;
  font-size: 14px;
}

.eww-footer-logo img {
  max-width: 150px;
}
.eww-footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 20px 0;
}
.eww-footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.eww-footer-links li {
  margin: 5px 0;
}
footer a {
  position: relative;
  color: #FFFFFF;
  transition: all 0.3s ease;
}
footer a::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 2px;
  background-color: var(--eww-link-hover);
  bottom: -3px;
  left: 0;
  transform-origin: right;
  transform: scaleX(0);
  transition: transform .3s ease-in-out;
}
footer a:hover {
  color: var(--eww-link-hover);
  &::before {
    transform-origin: left;
    transform: scaleX(1);
  }
}
.eww-footer-contact {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.social-media a {
  margin-right: 10px;
}

.eww-footer-bottom {
  text-align: center;
  width: 100%;
  margin-top: 20px;
  border-top: 1px solid #333;
  padding-top: 10px;
}
/*↑↑Footer section↑↑*/
/*↓↓---------------------MAX 1120PX-----------------------------------------------↓↓*/
@media only screen and (max-width: 1120px) {
  main {
    gap: 60px;
  }
  .eww-hero-section {
    align-items: center;
  }
  .eww-hero-section > h1 {
    justify-content: center;
    gap: 1rem;
  }
  .eww-hero-section > h1 span {
    transform: skewX(0deg);
  }
  .eww-hero-section > h1::after {
    display: none;
  }
  .eww-hero-section .eww-hero-container {
    flex-direction: column;
    align-items: center;
  }
  .eww-hero-container .eww-hero-illu {
    width: 70%;
  }
  .eww-hero-container .eww-hero-details {
    width: 100%;
    align-items: center;
    text-align: center;
    padding-bottom: 45px;
  }
  .eww-hero-details .eww-hero-cta {
    padding-top: unset;
  }
  .eww-hero-container .eww-hero-details::before,
  .eww-hero-container .eww-hero-details::after {
    display: none;
  }
  .eww-avantages-section > h1 {
    width: 80%;
  }
}
/*↓↓---------------------MAX 1000PX-----------------------------------------------↓↓*/
@media only screen and (max-width: 1000px) {
  .eww-avantages-section {
    flex-direction: column;
    align-items: center;
  }
  .eww-avantages-section .eww-avantages-container {
    width: 65%;
  }
  .eww-avantages-container .eww-avantages-details {
    width: 65%;
  }
  .eww-avantages-container > p {
    width: 40%;
  }
  .eww-services-section .eww-services-container {
    grid-template-columns: repeat(1, 1fr);
    grid-template-rows: repeat(3, 1fr);
    gap: 8px;
    width: 65%;
  }
  .eww-value-section .eww-value-container {
    width: 75%;
    max-height: 70vh;
    &::before {
      background-image: var(--eww-value-bg-resp);
    }
  }
  .eww-value-container .eww-value-details {
    display: none !important;
  }
  .eww-form-section > h1 {
    font-size: 2rem;
  }
  .eww-contact-container {
    flex-direction: column;
  }
  .eww-contact-info, .eww-contact-form {
    padding: 20px;
  }
  .eww-contact-info-item span:nth-child(2) {
    width: 100%;
    padding-left: 80px;
  }
}
/*↓↓---------------------MAX 800PX-----------------------------------------------↓↓*/
@media only screen and (max-width: 800px) {
  main {
    gap: 50px;
  }
  @media only screen and (max-height: 500px) {
    header .eww-menu {
      overflow-y: scroll;
    }
  }
  header .eww-menu {
    flex-direction: column;
    align-items: center;
    padding-top: 30px;
    position: absolute;
    width: 50%;
    height: calc(100vh - 75px);
    top: 100%;
    right: -55%;
    background-color: var(--eww-bg-color);
    z-index: 4;
    transition: all 0.3s ease;
  }
  header .eww-menu::before {
    content: "";
    position: absolute;
    width: 200%;
    height: calc(100vh - 75px);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    top: 0%;
    right: -100%;
    z-index: -1;
    transition: all 0.5s ease;
  }
  header .eww-menu.active-burger {
    right: 0%;
    
  }
  header .eww-menu.active-burger::before {
    right: 0%;
  }
  header .eww-lang-dark-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding-top: 30px;
    & ul {
      order: 2;
    }
  }
  header .hamburger {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10%;
    width: 38px;
    aspect-ratio: 1;
  }
  header .hamburger span {
    display: block;
    width: 75%;
    height: 4px;
    background-color: var(--eww-text-color);
    transform: translateY(0px);
    opacity: 1;
    transition: all 0.3s ease;
  }
  header .hamburger.open span:nth-child(1) {
    transform: translateY(8px);
    opacity: 0;
  }
  header .hamburger.open span:nth-child(3) {
    transform: translateY(-8px);
    opacity: 0;
  }

  .eww-avantages-section > h1 {
    width: 90%;
    font-size: 2.5rem;
  }
  .eww-avantages-section .eww-avantages-container {
    flex-direction: column;
    gap: 30px;
    text-align: center;
    padding: 10px 0;
    border: 1px solid var(--eww-primary-color);
  }
  .eww-avantages-container .eww-avantages-details {
    width: 90%;
    padding: 0 5px;
  }
  .eww-avantages-container > p {
    align-self: flex-start;
  }
  footer {
    flex-direction: column;
    align-items: flex-start;
  }
  .eww-footer-bottom {
    margin-top: 15px;
  }
}
/*↓↓---------------------MAX 750PX-----------------------------------------------↓↓*/
@media only screen and (max-width: 750px) {
  h1:not(.eww-hero-section h1, .eww-hero-details h1) {
    font-size: 2.5rem;
    width: 95%;
  }
  .eww-hero-section > h1::before {
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
  }
  .eww-value-section .value-intro > p,
  .eww-inspiration-section > p {
    width: 95%;
  }
  .eww-contact-info-item::before {
    height: 40px;
  }
  .eww-contact-info-item span:nth-child(2) {
    padding-left: 50px;
  }
}
 /*↓↓---------------------MAX 500PX-----------------------------------------------↓↓*/
@media only screen and (max-width: 500px) {
  h1:not(.eww-hero-section h1, .eww-hero-details h1) {
    font-size: 2rem;
    width: 95%;
  }
  .eww-btn {
    transform: skewX(0deg);
  }
  header .eww-menu {
    width: 100%;
    right: -105%;
  }
  header .eww-menu::before {
    display: none;
  }
  header .hamburger {
    width: 30px;
  }
  main {
    padding-top: 100px;
  }
  .eww-hero-section {
    padding: 30px 5px;
  }
  .eww-hero-section > h1 {
    gap: 0.2rem;
  }
  .eww-hero-section > h1,
  .eww-hero-details > h1 {
    font-size: 2.5rem;
  }
  .eww-hero-details .eww-hero-cta {
    flex-direction: column;
  }
  .eww-avantages-section > h1 {
    font-size: 1.8rem;
  }
  .eww-avantages-section .eww-avantages-container {
    width: 95%;
  }
  .eww-avantages-container .eww-avantages-details {
    width: 100%;
  }
  .eww-services-section .eww-services-container {
    width: 95%;
  }
  .eww-value-section .eww-value-container {
    width: 100%;
    &::before {
      padding-right: 15px;
    }
  }
  .eww-inspiration-section .eww-inspiration-cta {
    flex-direction: column;
    gap: 15px;
  }
  .eww-contact-info {
    align-items: center;
    &::before {
      display: none;
    }
  }
  .eww-contact-info-item {
    flex-direction: column;
  }
  .eww-contact-info-item span:nth-child(2) {
    width: unset;
    padding-left: unset;
  }
}

/*↓↓Notification denvoi de formulaire↓↓*/
#notification {
  position: fixed;
  top: 20px;
  right: 20px;
  background-color: var(--eww-secondary-color);
  color: var(--eww-static-dark);
  padding: 15px 20px;
  border-radius: 5px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  font-size: 16px;
  z-index: 10;
  opacity: 0;
  transform: translateY(-20px);
  transition: opacity 0.4s, transform 0.4s;
}
#notification.error {
  background-color: var(--eww-accent-color);
}
#notification.show {
  opacity: 1;
  transform: translateY(0);
}
.hidden {
  display: none;
}