@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: 'Segoe UI', sans-serif;
}

html, body {
  margin: 0;
  padding: 0;
  height: 100%;
  width: 100%;
  overflow-x: hidden;
  position: relative;
  background: #0f172a;
}
.Diapo {
  background-image: url("photo/fonds/Phot1.webp");
}
@keyframes blink {
  to {
    visibility: hidden;
  }
}

@keyframes contactGlow {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
  }

  50% {
    transform: scale(1.1);
    box-shadow: 0 0 15px 10px rgba(37, 211, 102, 0.3);
  }

  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}


/* Mobile First - Small Phones (360px - 480px) */
@media (max-width: 480px) {
  a {
    text-decoration: none;
    color: inherit;
  }

  li {
    font-size: 0.85rem;
    list-style: none;
    font-weight: 600;
    color: rgb(12, 12, 12);
    padding: 0.5rem 1rem;
  }

  li :hover {
    color: orange;
  }

  /* Header */
  .Contenus {
    width: 100%;
    height: 5rem;
    background-color: rgb(236, 245, 234);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 0.5rem;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999;
  }

  .Contenus .Logo {
    width: 45px;
  }

  .Entete {
    flex: 1;
  }

  .menu-toggle {
    font-size: 1.8rem;
    display: block;
    cursor: pointer;
  }

  .Liste1 {
    display: none;
  }

  .Liste1.active {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 5rem;
    right: 0;
    width: 200px;
    background-color: rgba(255, 255, 255, 0.95);
    padding: 0.8rem 0;
    gap: 0.5rem;
    z-index: 1000;
    box-shadow: -2px 2px 5px rgba(0,0,0,0.3);
  }

  /* Content */
  .content, .Corps {
    position: relative;
    z-index: 1;
    margin-top: 1rem;
    padding: 0.5rem 0.5rem;
  }

  /* Hero */
  .hero {
    position: relative;
    height: 60vh;
    width: 100%;
    overflow: hidden;
  }

  .hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    top: 45%;
    transform: translateY(-50%);
    color: #fff;
  }

  /* Diaporama en fond */
  .Diapo {
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    filter: brightness(60%);
    z-index: 0;
  }

  h1 {
    color: rgb(80, 245, 80);
    font-size: 1.6em;
    text-align: center;
    padding: 0 0.5rem;
  }

  h2 {
    text-align: center;
    margin-top: 2rem;
    font-size: 1.2rem;
    padding: 0 0.5rem;
    color: #f8fafc;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
  }

  p {
    color: #fff;
    font-size: 0.9rem;
    font-weight: 600;
    text-align: center;
    margin: 2rem auto 0;
    padding: 0 0.5rem;
    max-width: 95%;
    margin-left: 0;
  }

  #typed-container {
    height: auto;
    font-size: 1.1em;
    color: rgb(80, 245, 80);
    text-align: center;
    padding: 0 0.5rem;
    margin-top: 1rem;
  }

  #cursor {
    display: inline-block;
    width: 2px;
    height: 1em;
    background-color: rgb(80, 245, 80);
    animation: blink 0.8s steps(2, start) infinite;
    vertical-align: bottom;
    margin-left: 2px;
  }

  .diapo-dots {
    position: absolute;
    bottom: 60px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 6px;
    z-index: 2;
  }

  .dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: rgba(90, 88, 88, 0.5);
    cursor: pointer;
    transition: background-color 0.3s;
  }

  .dot.active {
    background-color: #fff;
  }

  /* Services */
  .services {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-left: 0;
    margin-right: 0.5rem;
    margin-top: 0.5rem;
    padding: 0 0.5rem;
  }

  .services div {
    overflow: hidden;
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
  }

  .services div a {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
  }

  .services div a:hover img {
    filter: brightness(0.7);
  }

  .services div a:hover .titre.image {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.05);
  }

  .services div img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 8px;
  }

  .titre.image {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: rgba(0, 0, 0, 0.6);
    color: #fff;
    padding: 0.6rem 1rem;
    border-radius: 4px;
    font-size: 0.9rem;
    font-weight: 600;
    text-align: center;
    z-index: 10;
  }

  .Titre {
    display: flex;
    text-align: center;
    justify-content: center;
    padding: 0 0.5rem;
    font-size: 1.2rem;
  }

  /* Réalisations */
  .Réalisations {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-left: 0.5rem;
    margin-right: 0.5rem;
    margin-top: 3rem;
  }

  .Réalisations div {
    overflow: hidden;
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
  }

  .Réalisations div a {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
  }

  .Réalisations div a:hover img {
    filter: brightness(0.7);
  }

  .Réalisations div a:hover .titre.image {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.05);
  }

  .Réalisations div img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 8px;
  }

  .Contacts {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: #25D366;
    background: transparent;
    padding: 0.25rem;
    text-decoration: none;
    transition: all 0.2s ease;
    z-index: 1000;
  }

  .Contacts ion-icon {
    font-size: 2.5rem;
    color: #25D366;
    display: block;
  }

  .Contacts.fixed {
    position: fixed;
    right: 20px;
    z-index: 1100;
    top: 28rem;
    background: transparent;
    animation: contactGlow 2s infinite;
  }

  .Ap {
    margin: 2rem auto;
    padding: 1.5rem 1.5rem;
    background:
    linear-gradient(
      135deg,
      rgba(30,41,59,0.95),
      rgba(15,23,42,0.95)
    );
    color: #fff;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.35);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
  }

  .Ap::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:linear-gradient(
    135deg,
    rgba(80,245,80,0.08),
    rgba(59,130,246,0.08)
  );
    opacity: 0;
    transition: opacity 0.3s ease;
  }

  .Ap:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow:
  0 25px 50px rgba(0,0,0,0.45);
    border-color: rgba(255, 255, 255, 0.4);
  }

  .Ap:hover::before {
    opacity: 1;
  }

  .Ap > * {
    position: relative;
    z-index: 1;
  }

  .apropo {
    margin: 2rem auto;
    padding: 1rem 2rem;
    text-decoration: underline;
    font-size: 1rem;
  }

  .CT{
    text-decoration: underline;
    margin: 2rem auto;
  }


  .socials a {
    display: inline-block;
    margin: 0.5rem;
  }

  .socials   ion-icon[name="logo-facebook"] {
    color: #1877F2;
  }

  .socials ion-icon[name="logo-twitter"] {
    color: #fff;
  }

  .socials ion-icon[name="logo-linkedin"] {
    color: #0A66C2;
  }

  .socials   ion-icon[name="logo-instagram"] {
    color: #E4405F;
  }

  .contact-info {
    margin: 2rem auto;
    padding: 1rem 2rem;
  }

  .Foot{
  position: fixed;
  width: 100%;
  height: 4rem;
  bottom: 0;

  display: flex;
  justify-content: center;
  align-items: center;

  background:
    linear-gradient(
      135deg,
      rgba(15,23,42,0.98),
      rgba(30,41,59,0.98)
    );

  border-top: 1px solid rgba(255,255,255,0.08);

  box-shadow:
    0 -5px 20px rgba(0,0,0,0.35);

  backdrop-filter: blur(10px);

  z-index: 999;
}

footer{
  color: #e2e8f0;
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.3px;
}

  /* Contact - small phones */
  .Contact {
    margin: 1rem auto;
    width: calc(100% - 1rem);
    max-width: none;
    padding: 0.8rem 1rem;
    background-color: rgba(20, 237, 20, 0.08);
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
  }
}
  /* Contact - small phones */
  .Contact {
    margin: 1rem auto;
    width: calc(100% - 1rem);
    max-width: none;
    padding: 0.8rem 1rem;
    background-color: rgba(20, 237, 20, 0.08);
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
  }

/* Tablets (481px - 768px) */
@media (min-width: 481px) and (max-width: 768px) {
  a {
    text-decoration: none;
    color: inherit;
  }

  li {
    font-size: 0.95rem;
    list-style: none;
    font-weight: 600;
    color: rgb(12, 12, 12);
    padding: 0.5rem 1.5rem;
  }

  li :hover {
    color: orange;
  }

  /* Header */
  .Contenus {
    width: 100%;
    height: 5.5rem;
    background-color: rgb(231, 241, 230);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 1rem;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999;
  }

  .Contenus .Logo {
    width: 55px;
  }

  .Entete {
    flex: 1;
  }

  .menu-toggle {
    display: block;
    font-size: 1.9rem;
    cursor: pointer;
  }

  .Liste1 {
    display: none;
  }

  .Liste1.active {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 5.5rem;
    right: 0;
    width: 250px;
    background-color: rgba(255, 255, 255, 0.95);
    padding: 1rem 0;
    gap: 0.8rem;
    z-index: 1000;
    box-shadow: -2px 2px 5px rgba(0,0,0,0.3);
  }

  /* Content */
  .content, .Corps {
    position: relative;
    z-index: 1;
    margin-top: 1rem;
    padding: 0.5rem 1rem;
  }

  /* Hero */
  .hero {
    position: relative;
    height: 70vh;
    width: 100%;
    overflow: hidden;
  }

  .hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    top: 50%;
    transform: translateY(-50%);
    color: #fff;
  }

  /* Diaporama en fond */
  .Diapo {
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    filter: brightness(60%);
    z-index: 0;
  }

  h1 {
    color: rgb(80, 245, 80);
    font-size: 2em;
    text-align: center;
    padding: 0 1rem;
    margin-top: 2rem;
  }

  h2 {
    text-align: center;
    margin-top: 3rem;
    font-size: 1.4rem;
    padding: 0 1rem;
    color: #f8fafc;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
  }

  p {
    color: #fff;
    font-size: 0.95rem;
    font-weight: 600;
    text-align: center;
    margin: 3rem auto 0;
    padding: 0 1rem;
    max-width: 90%;
    margin-left: 0;
  }

  #typed-container {
    height: auto;
    font-size: 1.3em;
    color: rgb(80, 245, 80);
    text-align: center;
    padding: 0 1rem;
    margin-top: 1.5rem;
  }

  #cursor {
    display: inline-block;
    width: 2px;
    height: 1em;
    background-color: rgb(80, 245, 80);
    animation: blink 0.8s steps(2, start) infinite;
    vertical-align: bottom;
    margin-left: 2px;
  }

  .diapo-dots {
    position: absolute;
    bottom: 70px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 2;
  }

  .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: rgba(90, 88, 88, 0.5);
    cursor: pointer;
    transition: background-color 0.3s;
  }

  .dot.active {
    background-color: #fff;
  }

  /* Services */
  .services {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.8rem;
    margin-left: 1rem;
    margin-right: 1rem;
    margin-top: 0.5rem;
  }

  .services div {
    overflow: hidden;
    height: 190px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
  }

  .services div a {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
  }

  .services div a:hover img {
    filter: brightness(0.7);
  }

  .services div a:hover .titre.image {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.05);
  }

  .services div img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 8px;
  }

  .titre.image {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: rgba(0, 0, 0, 0.6);
    color: #fff;
    padding: 0.7rem 1.3rem;
    border-radius: 4px;
    font-size: 0.95rem;
    font-weight: 600;
    text-align: center;
    z-index: 10;
  }

  .Titre {
    display: flex;
    text-align: center;
    justify-content: center;
    padding: 0 1rem;
    font-size: 1.5rem;
    margin-top: 2rem;
  }

  /* Réalisations */
  .Réalisations {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.8rem;
    margin-left: 1rem;
    margin-right: 1rem;
    margin-top: 3rem;
  }

  .Réalisations div {
    overflow: hidden;
    height: 190px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
  }

  .Réalisations div a {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
  }

  .Réalisations div a:hover img {
    filter: brightness(0.7);
  }

  .Réalisations div a:hover .titre.image {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.05);
  }

  .Réalisations div img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 8px;
  }

  .Contacts {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: #25D366;
    background: transparent;
    padding: 0.25rem;
    text-decoration: none;
    transition: all 0.2s ease;
    z-index: 1000;
  }

  .Contacts ion-icon {
    font-size: 2.5rem;
    color: #25D366;
    display: block;
  }

  .Contacts.fixed {
    position: fixed;
    right: 20px;
    z-index: 1100;
    top: 28rem;
    background: transparent;
    animation: contactGlow 2s infinite;
  }

  .Ap {
    margin: 2rem auto;
    padding: 1.8rem 1.8rem;
    background:
    linear-gradient(
      135deg,
      rgba(30,41,59,0.95),
      rgba(15,23,42,0.95)
    );
    color: #fff;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.35);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
  }

  .Ap::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:linear-gradient(
    135deg,
    rgba(80,245,80,0.08),
    rgba(59,130,246,0.08)
  );
    opacity: 0;
    transition: opacity 0.3s ease;
  }

  .Ap:hover {
    transform: translateY(-7px) scale(1.03);
    box-shadow:
  0 25px 50px rgba(0,0,0,0.45);
    border-color: rgba(255, 255, 255, 0.4);
  }

  .Ap:hover::before {
    opacity: 1;
  }

  .Ap > * {
    position: relative;
    z-index: 1;
  }

  .apropo {
    margin: 2rem auto;
    padding: 1rem 2rem;
    text-decoration: underline;
    font-size: 1rem;
  }

  .CT{
    text-decoration: underline;
    margin: 2rem auto;
  }


  .socials a {
    display: inline-block;
    margin: 0.5rem;
  }

  .socials ion-icon[name="logo-facebook"] {
    color: #1877F2;
  }

  .socials ion-icon[name="logo-twitter"] {
    color: #fff;
  }

  .socials ion-icon[name="logo-linkedin"] {
    color: #0A66C2;
  }

  .socials ion-icon[name="logo-instagram"] {
    color: #E4405F;
  }

  .contact-info {
    margin: 2rem auto;
    padding: 1rem 2rem;
  }

  /* Footer */
  .Foot{
  position: fixed;
  width: 100%;
  height: 4rem;
  bottom: 0;

  display: flex;
  justify-content: center;
  align-items: center;

  background:
    linear-gradient(
      135deg,
      rgba(15,23,42,0.98),
      rgba(30,41,59,0.98)
    );

  border-top: 1px solid rgba(255,255,255,0.08);

  box-shadow:
    0 -5px 20px rgba(0,0,0,0.35);

  backdrop-filter: blur(10px);

  z-index: 999;
}

footer{
  color: #e2e8f0;
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.3px;
}

  .Contact {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin: 2rem auto;
    padding: 1rem 1.5rem;
    width: calc(100% - 2rem);
    max-width: 900px;
    background-color: rgba(20, 237, 20, 0.08);
    border-radius: 10px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
    font-size: 1.2rem;
    font-weight: 600;
  }
}


/* Petits Laptops/Large Tablets (769px - 1024px) */
@media (min-width: 769px) and (max-width: 1024px) {
  a {
    text-decoration: none;
    color: inherit;
  }

  li {
    font-size: 0.95rem;
    list-style: none;
    font-weight: 600;
    color: rgb(12, 12, 12);
  }

  li :hover {
    color: orange;
  }

  /* Header */
  .Contenus {
    width: 100%;
    height: 5.5rem;
    background-color: rgb(231, 241, 230);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 1.5rem;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999;
  }

  .Contenus .Logo {
    width: 65px;
  }

  .Entete {
    flex: 1;
  }

  .menu-toggle {
    display: none;
  }

  /* Content */
  .content, .Corps {
    position: relative;
    z-index: 1;
    margin-top: 1rem;
    padding: 0.5rem 1rem;
  }

  .Liste1 {
    display: flex;
    justify-content: center;
    gap: 1.8rem;
  }

  /* Content */
  .content, .Corps {
    position: relative;
    z-index: 1;
    margin-top: 5.5rem;
    padding: 0.5rem 1.5rem;
  }

  /* Hero */
  .hero {
    position: relative;
    height: 80vh;
    width: 100%;
    overflow: hidden;
  }

  .hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    top: 50%;
    transform: translateY(-50%);
    color: #fff;
  }

  /* Diaporama en fond */
  .Diapo {
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    filter: brightness(60%);
    z-index: 0;
  }

  h1 {
    color: rgb(80, 245, 80);
    font-size: 2.2em;
    text-align: center;
    margin-top: 5rem;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
  }

  h2 {
    text-align: center;
    margin-top: 3.5rem;
    font-size: 1.6rem;
    color: #f8fafc;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
  }

  p {
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
    margin: 3.5rem auto 0;
    padding: 0 1.5rem;
    max-width: 85%;
    margin-left: 0;
  }

  #typed-container {
    height: auto;
    font-size: 1.6em;
    color: rgb(80, 245, 80);
    text-align: center;
    margin-top: 2rem;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
  }

  #cursor {
    display: inline-block;
    width: 2px;
    height: 1em;
    background-color: rgb(80, 245, 80);
    animation: blink 0.8s steps(2, start) infinite;
    vertical-align: bottom;
    margin-left: 2px;
  }

  .diapo-dots {
    position: absolute;
    bottom: 80px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 9px;
    z-index: 2;
  }

  .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: rgba(90, 88, 88, 0.5);
    cursor: pointer;
    transition: background-color 0.3s;
  }

  .dot.active {
    background-color: #fff;
  }

  /* Services */
  .services {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-left: 1.5rem;
    margin-top: 1rem;
  }

  .services div {
    overflow: hidden;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
  }

  .services div a {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
  }

  .services div a:hover img {
    filter: brightness(0.7);
  }

  .services div a:hover .titre.image {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.05);
  }

  .services div img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 8px;
  }

  .titre.image {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: rgba(0, 0, 0, 0.6);
    color: #fff;
    padding: 0.8rem 1.5rem;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
    z-index: 10;
  }

  .Titre {
    display: flex;
    text-align: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-top: 2rem;
  }

  /* Réalisations */
  .Réalisations {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-left: 1.5rem;
    margin-top: 3rem;
  }

  .Réalisations div {
    overflow: hidden;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
  }

  .Réalisations div a {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
  }

  .Réalisations div a:hover img {
    filter: brightness(0.7);
  }

  .Réalisations div a:hover .titre.image {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.05);
  }

  .Réalisations div img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 8px;
  }

  .Contacts {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: #25D366;
    background: transparent;
    padding: 0.25rem;
    text-decoration: none;
    transition: all 0.2s ease;
    z-index: 1000;
  }

  .Contacts ion-icon {
    font-size: 2.5rem;
    color: #25D366;
    display: block;
  }

  .Contacts.fixed {
    position: fixed;
    right: 20px;
    z-index: 1100;
    top: 28rem;
    background: transparent;
    animation: contactGlow 2s infinite;
  }

  .Ap {
    margin: 2rem auto;
    padding: 2rem 2rem;
    background:
    linear-gradient(
      135deg,
      rgba(30,41,59,0.95),
      rgba(15,23,42,0.95)
    );
    color: #fff;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.35);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
  }

  .Ap::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:linear-gradient(
    135deg,
    rgba(80,245,80,0.08),
    rgba(59,130,246,0.08)
  );
    opacity: 0;
    transition: opacity 0.3s ease;
  }

  .Ap:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow:
  0 25px 50px rgba(0,0,0,0.45);
    border-color: rgba(255, 255, 255, 0.4);
  }

  .Ap:hover::before {
    opacity: 1;
  }

  .Ap > * {
    position: relative;
    z-index: 1;
  }

  .apropo {
    margin: 2rem auto;
    padding: 1rem 2rem;
    text-decoration: underline;
    font-size: 1rem;
  }

  .CT{
    text-decoration: underline;
    margin: 2rem auto;
  }

  
  .socials ion-icon[name="logo-facebook"] {
    color: #1877F2;
  }

  .socials ion-icon[name="logo-twitter"] {
    color: #fff;
  }

  .socials ion-icon[name="logo-linkedin"] {
    color: #0A66C2;
  }

  .socials ion-icon[name="logo-instagram"] {
    color: #E4405F;
  }

  .contact-info {
    margin: 2rem auto;
    padding: 1rem 2rem;
  }

  /* Footer */
  .Foot{
  position: fixed;
  width: 100%;
  height: 4rem;
  bottom: 0;

  display: flex;
  justify-content: center;
  align-items: center;

  background:
    linear-gradient(
      135deg,
      rgba(15,23,42,0.98),
      rgba(30,41,59,0.98)
    );

  border-top: 1px solid rgba(255,255,255,0.08);

  box-shadow:
    0 -5px 20px rgba(0,0,0,0.35);

  backdrop-filter: blur(10px);

  z-index: 999;
}

footer{
  color: #e2e8f0;
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.3px;
}

  /* Contact - small laptops */
  .Contact {
    margin: 2rem auto;
    width: calc(100% - 2rem);
    max-width: 800px;
    padding: 1rem 1.5rem;
    background-color: rgba(20, 237, 20, 0.08);
    border-radius: 10px;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.05);
    font-size: 1.1rem;
    font-weight: 600;
    text-align: center;
  }
}


/* Laptops standard (1025px - 1440px) */
@media (min-width: 1025px) and (max-width: 1440px) {
  a {
    text-decoration: none;
    color: inherit;
  }

  li {
    font-size: 1rem;
    list-style: none;
    font-weight: 600;
    color: rgb(12, 12, 12);
  }

  li :hover {
    color: orange;
  }

  /* Header reste par défaut */
  .Contenus {
    width: 100%;
    height: 6rem;
    background-color: rgb(231, 241, 230);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 1rem;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999;
  }

  .Contenus .Logo {
    width: 75px;
  }

  .Entete {
    flex: 1;
  }

  .Liste1 {
    display: flex;
    justify-content: center;
    gap: 2rem;
  }

  .menu-toggle {
    display: none;
  }

  /* Content */
  .content, .Corps {
    position: relative;
    z-index: 1;
    margin-top: 1rem;
    padding: 0.5rem 1rem;
  }

  /* Hero */
  .hero {
    position: relative;
    height: 100vh;
    width: 100%;
    overflow: hidden;
  }

  .hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    top: 50%;
    transform: translateY(-50%);
    color: #fff;
  }

  /* Diaporama en fond */
  .Diapo {
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    filter: brightness(60%);
    z-index: 0;
  }

  h1 {
    color: rgb(80, 245, 80);
    font-size: 2.5em;
    text-align: center;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
  }

  h2 {
    text-align: center;
    margin-top: 0.2rem;
    color: #f8fafc;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
  }

  p {
    color: #fff;
    font-size: 1.1rem;
    font-weight: 600;
    text-align: center;
    margin-top: 3rem;
    margin-left: 8rem;
  }

  #typed-container {
    height: auto;
    font-size: 2em;
    color: rgb(80, 245, 80);
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
    text-align: center;
    margin-top: 2rem;
  }

  #cursor {
    display: inline-block;
    width: 2px;
    height: 1em;
    background-color: rgb(80, 245, 80);
    animation: blink 0.8s steps(2, start) infinite;
    vertical-align: bottom;
    margin-left: 2px;
  }

  .diapo-dots {
    position: absolute;
    bottom: 80px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 2;
  }

  .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: rgba(90, 88, 88, 0.5);
    cursor: pointer;
    transition: background-color 0.3s;
  }

  .dot.active {
    background-color: #fff;
  }

  /* Services */
  .services {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
    margin-left: 2rem;
    margin-top: 1rem;
  }

  .services div {
    overflow: hidden;
    height: 210px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
  }

  .services div a {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
  }

  .services div a:hover img {
    filter: brightness(0.7);
  }

  .services div a:hover .titre.image {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.05);
  }

  .services div img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 8px;
  }

  .titre.image {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: rgba(0, 0, 0, 0.6);
    color: #fff;
    padding: 0.8rem 1.5rem;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
    z-index: 10;
  }

  .Titre {
    display: flex;
    text-align: center;
    justify-content: center;
    margin-top: 2rem;
  }

  /* Réalisations */
  .Réalisations {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
    margin-left: 2rem;
    margin-top: 3rem;
  }

  .Réalisations div {
    overflow: hidden;
    height: 210px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
  }

  .Réalisations div a {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
  }

  .Réalisations div a:hover img {
    filter: brightness(0.7);
  }

  .Réalisations div a:hover .titre.image {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.05);
  }

  .Réalisations div img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 8px;
  }

  .Contacts {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: #25D366;
    background: transparent;
    padding: 0.25rem;
    text-decoration: none;
    transition: all 0.2s ease;
    z-index: 1000;
  }

  .Contacts ion-icon {
    font-size: 2.5rem;
    color: #25D366;
    display: block;
  }

  .Contacts.fixed {
    position: fixed;
    right: 20px;
    z-index: 1100;
    top: 28rem;
    background: transparent;
    animation: contactGlow 2s infinite;
  }

  .Ap {
    margin: 2rem auto;
    padding: 2.2rem 2.2rem;
    background:
    linear-gradient(
      135deg,
      rgba(30,41,59,0.95),
      rgba(15,23,42,0.95)
    );
    color: #fff;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.35);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
  }

  .Ap::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
   background:linear-gradient(
    135deg,
    rgba(80,245,80,0.08),
    rgba(59,130,246,0.08)
  );
    opacity: 0;
    transition: opacity 0.3s ease;
  }

  .Ap:hover {
    transform: translateY(-12px) scale(1.08);
    box-shadow:
  0 25px 50px rgba(0,0,0,0.45);
    border-color: rgba(255, 255, 255, 0.4);
  }

  .Ap:hover::before {
    opacity: 1;
  }

  .Ap > * {
    position: relative;
    z-index: 1;
  }

  .CT{
    text-decoration: underline;
    margin: 2rem auto;
  }

  .apropo {
    margin: 2rem auto;
    padding: 1rem 2rem;
    text-decoration: underline;
    font-size: 1rem;
  }


  .socials a {
    display: inline-block;
    margin: 0.5rem;
  }

  .socials ion-icon[name="logo-facebook"] {
    color: #1877F2;
  }

  .socials ion-icon[name="logo-twitter"] {
    color: #fff;
  }

  .socials ion-icon[name="logo-linkedin"] {
    color: #0A66C2;
  }

  .socials ion-icon[name="logo-instagram"] {
    color: #E4405F;
  }

  .contact-info {
    margin: 2rem auto;
    padding: 1rem 2rem;
  }

  /* Footer */
 .Foot{
  position: fixed;
  width: 100%;
  height: 4rem;
  bottom: 0;

  display: flex;
  justify-content: center;
  align-items: center;

  background:
    linear-gradient(
      135deg,
      rgba(15,23,42,0.98),
      rgba(30,41,59,0.98)
    );

  border-top: 1px solid rgba(255,255,255,0.08);

  box-shadow:
    0 -5px 20px rgba(0,0,0,0.35);

  backdrop-filter: blur(10px);

  z-index: 999;
}

footer{
  color: #e2e8f0;
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.3px;
}
}


/* Grand écrans (1441px and up) */
@media (min-width: 1441px) {
  a {
    text-decoration: none;
    color: inherit;
  }

  li {
    font-size: 1.05rem;
    list-style: none;
    font-weight: 600;
    color: rgb(12, 12, 12);
  }

  li :hover {
    color: orange;
  }

  /* Header */
  .Contenus {
    width: 100%;
    height: 6rem;
    background-color: rgb(248, 244, 244);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 1rem;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999;
  }

  .Contenus .Logo {
    width: 85px;
  }

  .Entete {
    flex: 1;
  }

  .Liste1 {
    display: flex;
    justify-content: center;
    gap: 2.5rem;
  }

  .menu-toggle {
    display: none;
  }

  /* Content */
  .content, .Corps {
    position: relative;
    z-index: 1;
    margin-top: 1rem;
    padding: 0.5rem 1rem;
  }

  /* Hero */
  .hero {
    position: relative;
    height: 100vh;
    width: 100%;
    overflow: hidden;
  }

  .hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    top: 50%;
    transform: translateY(-50%);
    color: #fff;
  }

  /* Diaporama en fond */
  .Diapo {
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    filter: brightness(60%);
    z-index: 0;
  }

  h1 {
    color: rgb(80, 245, 80);
    font-size: 2.8em;
    text-align: center;
  }

  h2 {
    text-align: center;
    margin-top: 0.2rem;
    font-size: 1.25em;
  }

  p {
    color: #fff;
    font-size: 1.2rem;
    font-weight: 600;
    text-align: center;
    margin-top: 3rem;
    margin-left: 25rem;
    max-width: 700px;
  }

  #typed-container {
    height: auto;
    font-size: 2.2em;
    color: rgb(80, 245, 80);
    text-align: center;
    margin-top: 2rem;
  }

  #cursor {
    display: inline-block;
    width: 2px;
    height: 1em;
    background-color: rgb(80, 245, 80);
    animation: blink 0.8s steps(2, start) infinite;
    vertical-align: bottom;
    margin-left: 2px;
  }

  .diapo-dots {
    position: absolute;
    bottom: 80px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 2;
  }

  .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: rgba(90, 88, 88, 0.5);
    cursor: pointer;
    transition: background-color 0.3s;
  }

  .dot.active {
    background-color: #fff;
  }

  /* Services */
  .services {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2.5rem;
    margin-left: 3rem;
    margin-top: 2rem;
  }

  .services div {
    overflow: hidden;
    height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
  }

  .services div a {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
  }

  .services div a:hover img {
    filter: brightness(0.7);
  }

  .services div a:hover .titre.image {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.05);
  }

  .services div img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 8px;
  }

  .titre.image {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: rgba(0, 0, 0, 0.6);
    color: #fff;
    padding: 1rem 1.8rem;
    border-radius: 4px;
    font-size: 1.1rem;
    font-weight: 600;
    text-align: center;
    z-index: 10;
  }

  .Titre {
    display: flex;
    text-align: center;
    justify-content: center;
    margin-top: 3rem;
    font-size: 2rem;
  }

  /* Réalisations */
  .Réalisations {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2.5rem;
    margin-left: 3rem;
    margin-top: 3rem;
  }

  .Réalisations div {
    overflow: hidden;
    height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
  }

  .Réalisations div a {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
  }

  .Réalisations div a:hover img {
    filter: brightness(0.7);
  }

  .Réalisations div a:hover .titre.image {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.05);
  }

  .Réalisations div img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 8px;
  }

  .Contacts {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: #25D366;
    background: transparent;
    padding: 0.25rem;
    text-decoration: none;
    transition: all 0.2s ease;
    z-index: 1000;
  }

  .Contacts ion-icon {
    font-size: 2.5rem;
    color: #25D366;
    display: block;
  }

  .Contacts.fixed {
    position: fixed;
    right: 10px;
    z-index: 1100;
    top: 28rem;
    background: transparent;
    animation: contactGlow 2s infinite;
  }

  .Ap {
    margin: 2rem auto;
    padding: 2.5rem 3rem;
    background:
    linear-gradient(
      135deg,
      rgba(30,41,59,0.95),
      rgba(15,23,42,0.95)
    );
    backdrop-filter: blur(12px);
    color: #fff;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.35);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    font-size: 1.1rem;
  }

  .Ap::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(155, 89, 182, 0.2) 0%, rgba(142, 68, 173, 0.2) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
  }

  .Ap:hover {
    transform: translateY(-12px) scale(1.08);
    box-shadow: 0 30px 60px rgba(155, 89, 182, 0.5);
    border-color: rgba(255, 255, 255, 0.5);
  }

  .Ap:hover::before {
    opacity: 1;
  }

  .Ap > * {
    position: relative;
    z-index: 1;
  }

  .apropo {
    margin: 2rem auto;
    padding: 1rem 2rem;
    text-decoration: underline;
    font-size: 1rem;
  }
  .CT{
    text-decoration: underline;
    margin: 2rem auto;
  }

  .socials a {
    display: inline-block;
    margin: 0.5rem;
  }

  .socials ion-icon[name="logo-facebook"] {
    color: #1877F2;
  }

  .socials ion-icon[name="logo-twitter"] {
    color: #fff;
  }

  .socials ion-icon[name="logo-linkedin"] {
    color: #0A66C2;
  }

  .socials ion-icon[name="logo-instagram"] {
    color: #E4405F;
  }

  .contact-info {
    margin: 2rem auto;
    padding: 1rem 2rem;
  }

  /* Footer */
  .Foot {
  position: fixed;
  width: 100%;
  height: 4rem;
  background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
  bottom: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 999;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
}

footer {
  font-weight: 500;
  text-align: center;
  color: #ecf0f1;
  font-size: 0.9rem;
  text-shadow: 0 1px 2px rgba(0,0,0,0.3);
}
}

/* IMPACT / RESULTATS */

.Impact{
  margin-top: 1rem;
  padding: 2rem 1rem;
  position: relative;
}

.Impact::before{
  content: '';
  position: absolute;
  width: 300px;
  height: 300px;
  background: rgba(80,245,80,0.12);
  filter: blur(100px);
  border-radius: 50%;
  top: 0;
  left: -100px;
}

.impact-grid{
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(280px,1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.impact-card{
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  height: 260px;

  background: rgba(255,255,255,0.08);

  border: 1px solid rgba(255,255,255,0.15);

  backdrop-filter: blur(12px);

  box-shadow:
  0 10px 30px rgba(0,0,0,0.25);

  transition: 0.4s ease;
}

.impact-card:hover{
  transform: translateY(-10px) scale(1.02);

  box-shadow:
  0 20px 50px rgba(0,0,0,0.4);
}

.impact-card img{
  width: 100%;
  height: 100%;
  object-fit: cover;

  transition: 0.5s ease;
}

.impact-card:hover img{
  transform: scale(1.08);

  filter: brightness(0.5);
}

.impact-overlay{
  position: absolute;

  inset: 0;

  display: flex;
  flex-direction: column;
  justify-content: flex-end;

  padding: 1.5rem;

  background:
  linear-gradient(
    to top,
    rgba(0,0,0,0.85),
    rgba(0,0,0,0.2),
    transparent
  );

  color: white;
}

.impact-overlay h3{
  font-size: 1.3rem;
  margin-bottom: 0.5rem;

  color: rgb(80,245,80);
}

.impact-overlay p{
  margin: 0;
  font-size: 0.95rem;

  color: #f1f1f1;
}

/* STATS */

.Stats{
  margin-top: 4rem;

  display: grid;

  grid-template-columns:
  repeat(auto-fit,minmax(180px,1fr));

  gap: 1.5rem;
}

.stat-box{
  padding: 2rem 1rem;

  border-radius: 20px;

  text-align: center;

  background:
  linear-gradient(
    135deg,
    rgba(155,89,182,0.2),
    rgba(80,245,80,0.12)
  );

  border:
  1px solid rgba(255,255,255,0.15);

  backdrop-filter: blur(12px);

  transition: 0.4s ease;

  box-shadow:
  0 10px 30px rgba(0,0,0,0.2);
}

.stat-box:hover{
  transform: translateY(-8px);

  box-shadow:
  0 20px 40px rgba(0,0,0,0.3);
}

.stat-box h3{
  font-size: 2.2rem;

  color: rgb(80,245,80);

  margin-bottom: 0.5rem;
}

.stat-box span{
  color: #f8fafc;
  text-shadow: 0 2px 10px rgba(0,0,0,0.3);

  font-size: 1rem;

  font-weight: 500;
}

.ap-grid{
  display: grid;

  grid-template-columns:
  repeat(auto-fit,minmax(250px,1fr));

  gap: 2rem;

  margin-top: 2rem;
}

.ap-box{
  display: flex;

  flex-direction: column;

  gap: 1rem;
}

.ap-box h3{
  color: rgb(80,245,80);

  font-size: 1.3rem;

  margin-bottom: 1rem;
}

.ap-box a{
  color: #f8fafc;

  transition: 0.3s ease;
}

.ap-box a:hover{
  color: rgb(80,245,80);

  transform: translateX(5px);
}

.socials{
  display: flex;

  gap: 1rem;

  font-size: 2rem;
}

.contact-btn{
  margin-top: 1rem;

  width: fit-content;

  padding: 0.8rem 1.5rem;

  border-radius: 12px;

  background:
  linear-gradient(
    135deg,
    rgb(80,245,80),
    #10b981
  );

  color: #0f172a !important;

  font-weight: 700;

  transition: 0.3s ease;
}

.contact-btn:hover{
  transform: translateY(-3px);

  box-shadow:
  0 10px 25px rgba(80,245,80,0.35);
}