.contact-section {
  background: linear-gradient(135deg, var(--background-color), var(--light-accent));
  padding: 50px 20px;
  border-radius: 10px;
  max-width: 1180px;
  margin: 0 auto;
}
.contact-section h2 {
  text-align: center;
  color: var(--text-color);
  margin-bottom: 30px;
  font-size: 2.5em;
}
.contact-container {
  display: flex;
  align-items: flex-start;
  gap: 40px;
  margin: 0 auto;
  max-width: 1100px;
}
.contact-info,
.contact-form {
  flex: 1;
  padding: 20px;
  background-color: var(--BLUR-bg-color) !important;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}
.contact-info:hover,
.contact-form:hover {
  transform: translateY(-5px);
}
.contact-info {
  text-align: justify;
  text-justify: inter-word;
}
.contact-info p {
  margin-bottom: 12px;
}
.contact-info .contact-details {
  margin-top: 50px;
  text-align: right;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 10px;
  margin-bottom: 15px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 14px;
}
.contact-form textarea {
  height: 205px;
  resize: vertical;
}
.contact-form button {
  background-color: var(--button-color);
  color: white;
  padding: 10px 20px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 16px;
  transition: background-color 0.3s ease;
}
.contact-form button:hover {
  background-color: var(--button-hover-color);
}
.form-note {
  font-size: 12px;
  color: #666;
  margin-bottom: 10px;
  width: 100%;
}
.form-group {
  margin-bottom: 1.5rem;
}
.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: bold;
  color: var(--text-color);
}
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 4px;
  transition: all 0.3s ease;
}
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--accent-color);
  box-shadow: 0 0 0 2px var(--light-accent);
  outline: none;
}
.form-group textarea {
  height: 150px;
  resize: vertical;
}
.submit-btn {
  background-color: var(--primary-color);
  color: #fff;
  border: none;
  padding: 12px 24px;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: block;
  margin: 0 auto;
}
.submit-btn:hover {
  background-color: var(--secondary-color);
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.contact-info,
.contact-form {
  animation: fadeInUp 0.5s ease-out;
}
@media (max-width: 768px) {
  .contact-container {
    flex-direction: column;
  }
  .contact-info,
  .contact-form {
    width: 100%;
    margin-bottom: 20px;
  }
}
.response_container,
.response_container_contact {
    display: none;
    justify-content: center;
    width: 100%;
}
.response {
    max-width: 600px;
    width: 100%;
    padding: 10px;
    margin-top: 20px;
    margin-bottom: 20px;
    border-radius: 5px;
    font-weight: bold;
    text-align: center;
}
.response.success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #84ed9d;
}
.response.error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f49ca5;
}
.response.warning {
    background-color: #fff3cd;
    color: #856404;
    border: 1px solid #efd585;
}
.newsletter-signup {
    background-color: var(--BLUR-bg-color) !important;
    max-width: var(--main-max-width);
    color: white;
    padding: 20px;
    border-radius: 8px;
    margin-top: 40px;
    text-align: center;
}
.newsletter-signup h3 {
    font-size: 18px;
    color: var(--text-color);
}
.newsletter-form {
    display: flex;
    justify-content: center;
    margin-top: 15px;
}
.newsletter-form input {
    border: 1px solid var(--Bordure-section);
    padding: 10px;
    border-radius: 4px 0 0 4px;
    width: 250px;
}
.newsletter-form button {
    background-color: var(--button-color);
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 0 4px 4px 0;
    cursor: pointer;
    transition: background-color 0.3s ease;
}
.newsletter-form button:hover {
    background-color: var(--button-hover-color);
}
@keyframes fadeInResponse {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.response_container_contact.show-response,
.response_container.show-response {
    animation: fadeInResponse 0.3s ease-out forwards;
}
@media (max-width: 768px) {
    .newsletter-form {
        flex-direction: column;
        align-items: center;
    }
    .newsletter-form input,
    .newsletter-form button {
        width: 100%;
        max-width: 250px;
        border-radius: 4px;
        margin-bottom: 10px;
    }
}
header {
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 150 !important;
  display: flex;
  justify-content: center;
  align-items: center;
  border-bottom: 2px solid #37c318;
  height: 65px;
}
header .desktop-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: transparent;
  max-width: 1200px;
  width: 100%;
}
header .desktop-nav .logo {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-left: 10px;
}
header .desktop-nav .logo img {
  width: 100%;
  height: 37px;
  display: block;
}
header .desktop-nav .nav-links {
  list-style: none;
  display: flex;
  margin: 0;
  padding: 0;
}
header .desktop-nav .nav-links li {
  list-style: none;
}
header .desktop-nav .nav-links a {
  color: var(--color-menu-item);
  text-decoration: none;
  padding: 20px 25px;
  display: block;
}
header .desktop-nav .nav-links a i {
  margin-right: 10px;
}
header .desktop-nav .nav-links a:hover {
  color: var(--color-menu-item-hover);
  text-shadow: 0 0 20px #259c0b;
}
header .desktop-nav .nav-links .dropdown {
  position: relative;
}
header .desktop-nav .nav-links .dropdown:hover::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 2px;
  background-color: #269c0b00;
  z-index: 151;
}
header .desktop-nav .nav-links .dropdown .dropdown-content {
  display: none;
  position: absolute;
  top: calc(100% - 2px);
  left: 0;
  min-width: 130px;
  z-index: 150;
  background-color: #ffffff;
  padding-top: 12px;
  width: 400px;
  border-radius: 0 0 25px 25px;
  border: 2px solid #259c0b;
  border-top: none;
  margin-top: 3px;
}
header .desktop-nav .nav-links .dropdown .dropdown-content a {
  color: var(--color-menu-item);
  padding: 10px;
  text-decoration: none;
  display: block;
}
header .desktop-nav .nav-links .dropdown .dropdown-content a:hover {
  color: var(--color-menu-item-hover);
  text-shadow: 0 0 20px #259c0b;
}
header .desktop-nav .nav-links .dropdown:hover .dropdown-content {
  display: block;
  animation: dropdown 0.3s ease-in-out;
}
.mobile-nav {
  display: none;
}
.mobile-nav .hamburger {
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  width: 30px;
  height: 30px;
  position: fixed;
  top: 7px;
  right: 20px;
  z-index: 1001;
}
.mobile-nav .hamburger .line {
  width: 100%;
  height: 3px;
  background-color: var(--color-menu-item);
  transition: all 0.3s ease;
}
.mobile-nav .sidebar {
  display: none;
  flex-direction: column;
  position: fixed;
  top: 0;
  right: 0;
  width: 250px;
  height: 100vh;
  transform: translateX(100%);
  transition: transform 0.3s ease, backdrop-filter 0.3s ease;
  background-color: #ffffff;
  align-items: center;
  justify-content: center;
  overflow-y: auto;
  z-index: 1;
}
.mobile-nav .sidebar.active {
  transform: translateX(0);
}
.mobile-nav .sidebar a {
  display: flex;
  padding: 10px 15px;
  text-decoration: none;
  font-size: 18px;
  color: var(--color-menu-item);
}
.mobile-nav .sidebar a i {
  margin-right: 10px;
}
.mobile-nav .sidebar a:hover {
  color: var(--color-menu-item-hover);
  text-shadow: 0 0 20px #259c0b;
}
@keyframes dropdown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@media (max-width: 1120px) {
  header {
    position: fixed;
  }
  header .desktop-nav {
    display: flex;
    align-items: center;
    padding: 15px;
  }
  header .desktop-nav .nav-links {
    display: none;
  }
  .mobile-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
  }
  .mobile-nav .hamburger {
    margin-top: 10px;
  }
  .mobile-nav .hamburger.active .line:nth-child(1) {
    transform: rotate(135deg) translateY(-15px);
  }
  .mobile-nav .hamburger.active .line:nth-child(2) {
    opacity: 0;
  }
  .mobile-nav .hamburger.active .line:nth-child(3) {
    transform: rotate(-135deg) translateY(15px);
  }
  .mobile-nav .sidebar {
    display: flex;
    gap: 20px;
    width: 100vw;
  }
}
@font-face {
    font-family: "Noto Sans";
    font-style: italic;
    font-weight: 100;
    font-stretch: normal;
    font-display: swap;
    src: url(https://fonts.gstatic.com/s/notosans/v36/o-0kIpQlx3QUlC5A4PNr4C5OaxRsfNNlKbCePevHtVtX57DGjDU1QDcf6Vc.ttf)
        format("truetype");
}
@font-face {
    font-family: "Noto Sans";
    font-style: italic;
    font-weight: 200;
    font-stretch: normal;
    font-display: swap;
    src: url(https://fonts.gstatic.com/s/notosans/v36/o-0kIpQlx3QUlC5A4PNr4C5OaxRsfNNlKbCePevHtVtX57DGjDU1QLce6Vc.ttf)
        format("truetype");
}
@font-face {
    font-family: "Noto Sans";
    font-style: italic;
    font-weight: 300;
    font-stretch: normal;
    font-display: swap;
    src: url(https://fonts.gstatic.com/s/notosans/v36/o-0kIpQlx3QUlC5A4PNr4C5OaxRsfNNlKbCePevHtVtX57DGjDU1QGke6Vc.ttf)
        format("truetype");
}
@font-face {
    font-family: "Noto Sans";
    font-style: italic;
    font-weight: 400;
    font-stretch: normal;
    font-display: swap;
    src: url(https://fonts.gstatic.com/s/notosans/v36/o-0kIpQlx3QUlC5A4PNr4C5OaxRsfNNlKbCePevHtVtX57DGjDU1QDce6Vc.ttf)
        format("truetype");
}
@font-face {
    font-family: "Noto Sans";
    font-style: italic;
    font-weight: 500;
    font-stretch: normal;
    font-display: swap;
    src: url(https://fonts.gstatic.com/s/notosans/v36/o-0kIpQlx3QUlC5A4PNr4C5OaxRsfNNlKbCePevHtVtX57DGjDU1QAUe6Vc.ttf)
        format("truetype");
}
@font-face {
    font-family: "Noto Sans";
    font-style: italic;
    font-weight: 600;
    font-stretch: normal;
    font-display: swap;
    src: url(https://fonts.gstatic.com/s/notosans/v36/o-0kIpQlx3QUlC5A4PNr4C5OaxRsfNNlKbCePevHtVtX57DGjDU1QOkZ6Vc.ttf)
        format("truetype");
}
@font-face {
    font-family: "Noto Sans";
    font-style: italic;
    font-weight: 700;
    font-stretch: normal;
    font-display: swap;
    src: url(https://fonts.gstatic.com/s/notosans/v36/o-0kIpQlx3QUlC5A4PNr4C5OaxRsfNNlKbCePevHtVtX57DGjDU1QNAZ6Vc.ttf)
        format("truetype");
}
@font-face {
    font-family: "Noto Sans";
    font-style: italic;
    font-weight: 800;
    font-stretch: normal;
    font-display: swap;
    src: url(https://fonts.gstatic.com/s/notosans/v36/o-0kIpQlx3QUlC5A4PNr4C5OaxRsfNNlKbCePevHtVtX57DGjDU1QLcZ6Vc.ttf)
        format("truetype");
}
@font-face {
    font-family: "Noto Sans";
    font-style: italic;
    font-weight: 900;
    font-stretch: normal;
    font-display: swap;
    src: url(https://fonts.gstatic.com/s/notosans/v36/o-0kIpQlx3QUlC5A4PNr4C5OaxRsfNNlKbCePevHtVtX57DGjDU1QJ4Z6Vc.ttf)
        format("truetype");
}
@font-face {
    font-family: "Noto Sans";
    font-style: normal;
    font-weight: 100;
    font-stretch: normal;
    font-display: swap;
    src: url(https://fonts.gstatic.com/s/notosans/v36/o-0mIpQlx3QUlC5A4PNB6Ryti20_6n1iPHjcz6L1SoM-jCpoiyD9At9d.ttf)
        format("truetype");
}
@font-face {
    font-family: "Noto Sans";
    font-style: normal;
    font-weight: 200;
    font-stretch: normal;
    font-display: swap;
    src: url(https://fonts.gstatic.com/s/notosans/v36/o-0mIpQlx3QUlC5A4PNB6Ryti20_6n1iPHjcz6L1SoM-jCpoiyB9A99d.ttf)
        format("truetype");
}
@font-face {
    font-family: "Noto Sans";
    font-style: normal;
    font-weight: 300;
    font-stretch: normal;
    font-display: swap;
    src: url(https://fonts.gstatic.com/s/notosans/v36/o-0mIpQlx3QUlC5A4PNB6Ryti20_6n1iPHjcz6L1SoM-jCpoiyCjA99d.ttf)
        format("truetype");
}
@font-face {
    font-family: "Noto Sans";
    font-style: normal;
    font-weight: 400;
    font-stretch: normal;
    font-display: swap;
    src: url(https://fonts.gstatic.com/s/notosans/v36/o-0mIpQlx3QUlC5A4PNB6Ryti20_6n1iPHjcz6L1SoM-jCpoiyD9A99d.ttf)
        format("truetype");
}
@font-face {
    font-family: "Noto Sans";
    font-style: normal;
    font-weight: 500;
    font-stretch: normal;
    font-display: swap;
    src: url(https://fonts.gstatic.com/s/notosans/v36/o-0mIpQlx3QUlC5A4PNB6Ryti20_6n1iPHjcz6L1SoM-jCpoiyDPA99d.ttf)
        format("truetype");
}
@font-face {
    font-family: "Noto Sans";
    font-style: normal;
    font-weight: 600;
    font-stretch: normal;
    font-display: swap;
    src: url(https://fonts.gstatic.com/s/notosans/v36/o-0mIpQlx3QUlC5A4PNB6Ryti20_6n1iPHjcz6L1SoM-jCpoiyAjBN9d.ttf)
        format("truetype");
}
@font-face {
    font-family: "Noto Sans";
    font-style: normal;
    font-weight: 700;
    font-stretch: normal;
    font-display: swap;
    src: url(https://fonts.gstatic.com/s/notosans/v36/o-0mIpQlx3QUlC5A4PNB6Ryti20_6n1iPHjcz6L1SoM-jCpoiyAaBN9d.ttf)
        format("truetype");
}
@font-face {
    font-family: "Noto Sans";
    font-style: normal;
    font-weight: 800;
    font-stretch: normal;
    font-display: swap;
    src: url(https://fonts.gstatic.com/s/notosans/v36/o-0mIpQlx3QUlC5A4PNB6Ryti20_6n1iPHjcz6L1SoM-jCpoiyB9BN9d.ttf)
        format("truetype");
}
@font-face {
    font-family: "Noto Sans";
    font-style: normal;
    font-weight: 900;
    font-stretch: normal;
    font-display: swap;
    src: url(https://fonts.gstatic.com/s/notosans/v36/o-0mIpQlx3QUlC5A4PNB6Ryti20_6n1iPHjcz6L1SoM-jCpoiyBUBN9d.ttf)
        format("truetype");
}
:root {
    --primary-color: #4caf50;
    --secondary-color: #45a049;
    --accent-color: #fff;
    --text-color: #3d3d3d;
    --background-color: #ffffff00;
    --titre-h5-h4: #007bff;
    --section-width: 100%;
    --main-max-width: 1400px;
    --barre-de-lecture: #da3731;
    --slider-couleur-point: #dd0933;
    --BackToTop: #37a51c6c;
    --BackToTop-hover: #3db81f;
    --Bordure-section: #000;
    --BLUR-bg-color: rgba(255, 255, 255, 0.3);
    --BLUR-backdrop-filter: 4px;
    --BLUR-webkit-backdrop-filter: 3px;
    --MENU-BLUR-bg-color: rgba(255, 255, 255, 0.85) !important;
    --MENU-BLUR-backdrop-filter: 10px !important;
    --MENU-BLUR-webkit-backdrop-filter: 10px !important;
    --MENU-Text-hover: #51b60f !important;
    --button-color: #3aad40;
    --button-hover-color: #4cc938;
    --color-testimonial-primary: #a7e372;
    --color-testimonial-secondary: #f8f9fa;
    --color-links: #007bff;
    --color-menu-item: #212121;
    --color-menu-item-hover: #258c1f;
}
* {
    font-family: "Noto Sans", sans-serif;
    font-size: 16px;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
}
.container_simple {
    margin: 0 auto;
    width: 100%;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}
.texte_404 {
    text-align: center;
    padding: 10px;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 50px;
}
h5 {
    font-size: 16px;
    font-weight: bold;
    color: var(--titre-h5-h4);
    margin-bottom: 8px;
}
h3 {
    font-size: 24px;
    font-weight: 600;
    color: var(--titre-h5-h4) !important;
    margin-bottom: 8px;
}
body,
html {
    color: var(--text-color);
    background-color: var(--background-color);
}
#canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}
p {
    color: var(--text-color);
}
footer {
    margin-top: 50px;
    margin-bottom: 100px;
    width: 100%;
    text-align: center;
}
footer p {
    font-size: 12px;
}
footer a {
    font-size: 12px;
    color: var(--color-links);
    text-decoration: none;
}
footer a:hover {
    text-decoration: underline;
}
main {
    margin: 0 auto;
    box-sizing: border-box;
    max-width: var(--main-max-width);
    width: 100%;
    padding: 0;
    align-items: center;
}
#progress-bar {
    position: fixed !important;
    top: 0 !important;
    left: 0;
    height: 2px;
    background-color: var(--barre-de-lecture);
    width: 0%;
    z-index: 1200;
    transition: width 0.2s ease-out;
}
#scrollToTopBtn {
    opacity: 0;
    visibility: hidden;
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background-color: var(--BackToTop);
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    outline: none;
    transition: opacity 0.3s, visibility 0.3s;
    z-index: 200;
}
#scrollToTopBtn:hover {
    background-color: var(--BackToTop-hover);
}
#scrollToTopBtn.show {
    opacity: 1;
    visibility: visible;
}
#blur-js {
    backdrop-filter: blur(5px) saturate(180%);
    -webkit-backdrop-filter: blur(5px) saturate(180%);
}
.blur-js {
    backdrop-filter: blur(5px) saturate(180%);
    -webkit-backdrop-filter: blur(5px) saturate(180%);
}
#blur-menu {
    background-color: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}
