Outiref
<!doctype html>
<html lang="fr">
  <head>
    <meta charset="UTF-8" />
    <meta name="viewport" content="width=device-width, initial-scale=1.0" />
    <title>Services — Work by Gab</title>
    <link
      href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.8/dist/css/bootstrap.min.css"
      rel="stylesheet"
      integrity="sha384-sRIl4kxILFvY47J16cr9ZwB07vP4J8+LH7qKQnuqkuIAvNWLzeN8tE5YBujZqJLB"
      crossorigin="anonymous"
    />
    <script
      src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.8/dist/js/bootstrap.bundle.min.js"
      integrity="sha384-FKyoEForCGlyvwx9Hj09JcYn3nv7wiPVlz7YYwJrWVcXK/BmnVDxM+D2scQbITxI"
      crossorigin="anonymous"
    ></script>
    <link href="../css/style.css" rel="stylesheet" />
    <style>
      /* ── Services page extras ───────────────────────── */

      /* Hero */
      .services-hero-wrap {
        position: relative;
        overflow: hidden;
      }
      .services-hero {
        position: relative;
        z-index: 1;
        padding: 5rem 0 4rem;
      }
      .services-hero .eyebrow {
        font-family: "Georgia", serif;
        font-size: 0.8rem;
        letter-spacing: 0.18em;
        text-transform: uppercase;
        color: #5a7d6a;
        font-weight: 600;
        margin-bottom: 0.6rem;
      }
      .services-hero h1 {
        font-family: "Georgia", serif;
        font-size: clamp(2rem, 5vw, 3rem);
        color: #2c3e35;
        font-weight: 700;
        letter-spacing: -0.01em;
        line-height: 1.15;
        margin-bottom: 1rem;
      }
      .services-hero .lead {
        color: #4a5e52;
        max-width: 540px;
        font-size: 1.05rem;
      }

      /* Service cards */
      .service-card {
        background: #ffffff;
        border: 1px solid #dce8e1;
        border-radius: 16px;
        padding: 2rem;
        height: 100%;
        transition:
          box-shadow 0.25s ease,
          transform 0.25s ease;
        position: relative;
        overflow: hidden;
      }
      .service-card::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 4px;
        background: #5a7d6a;
        border-radius: 16px 16px 0 0;
      }
      .service-card:hover {
        box-shadow: 0 8px 32px rgba(90, 125, 106, 0.12);
        transform: translateY(-3px);
      }
      .service-icon {
        width: 48px;
        height: 48px;
        border-radius: 12px;
        background: #e8f0ec;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 1.25rem;
      }
      .service-card h3 {
        font-family: "Georgia", serif;
        font-size: 1.2rem;
        color: #2c3e35;
        font-weight: 700;
        margin-bottom: 0.5rem;
      }
      .service-card .description {
        color: #4a5e52;
        font-size: 0.9rem;
        line-height: 1.65;
        margin-bottom: 1.25rem;
      }
      .service-divider {
        border: none;
        border-top: 1px solid #dce8e1;
        margin-bottom: 1.25rem;
      }
      .service-tag {
        display: inline-block;
        font-size: 0.7rem;
        font-weight: 600;
        letter-spacing: 0.1em;
        text-transform: uppercase;
        background: #e8f0ec;
        color: #3a5948;
        padding: 3px 10px;
        border-radius: 20px;
        margin-bottom: 1rem;
      }
      .bullet-list {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        flex-direction: column;
        gap: 0.55rem;
      }
      .bullet-list li {
        display: flex;
        align-items: flex-start;
        gap: 0.6rem;
        font-size: 0.875rem;
        color: #4a5e52;
        line-height: 1.5;
      }
      .bullet-list li::before {
        content: "";
        display: block;
        width: 6px;
        height: 6px;
        border-radius: 50%;
        background: #5a7d6a;
        margin-top: 0.45rem;
        flex-shrink: 0;
      }

      /* Process section */
      .process-section {
        background: #f5f0e8;
        border-radius: 16px;
        padding: 2.5rem;
      }
      .process-section h2 {
        font-family: "Georgia", serif;
        color: #2c3e35;
        font-size: 1.5rem;
        font-weight: 700;
        margin-bottom: 0.4rem;
      }
      .process-section .sub {
        color: #4a5e52;
        font-size: 0.9rem;
        margin-bottom: 2rem;
      }
      .step-wrap {
        display: flex;
        flex-direction: column;
        gap: 0;
      }
      .step-row {
        display: flex;
        gap: 1.25rem;
        align-items: flex-start;
      }
      .step-left {
        display: flex;
        flex-direction: column;
        align-items: center;
        flex-shrink: 0;
      }
      .step-num {
        width: 36px;
        height: 36px;
        border-radius: 50%;
        background: #5a7d6a;
        color: #f5f0e8;
        font-size: 0.85rem;
        font-weight: 600;
        display: flex;
        align-items: center;
        justify-content: center;
      }
      .step-line {
        width: 2px;
        flex: 1;
        min-height: 28px;
        background: #c8dbd2;
        margin: 4px 0;
      }
      .step-body {
        padding-bottom: 1.5rem;
      }
      .step-body h4 {
        font-family: "Georgia", serif;
        font-size: 1rem;
        font-weight: 700;
        color: #2c3e35;
        margin-bottom: 0.3rem;
      }
      .step-body p {
        font-size: 0.875rem;
        color: #4a5e52;
        line-height: 1.6;
        margin: 0;
      }

      /* Carousel overrides */
      .carousel-section {
        background: #ffffff;
      }
      .carousel-section h2 {
        font-family: "Georgia", serif;
        color: #2c3e35;
        font-size: 1.5rem;
        font-weight: 700;
        margin-bottom: 0.3rem;
      }
      .carousel-section .sub {
        color: #4a5e52;
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
      }
      .carousel-control-prev-icon,
      .carousel-control-next-icon {
        filter: invert(0.35) sepia(1) saturate(1.5) hue-rotate(100deg);
      }
      .carousel-indicators [data-bs-target] {
        background-color: #5a7d6a;
      }

      /* CTA band */
      .cta-band {
        background: #2c3e35;
        border-radius: 16px;
        padding: 2.5rem 2rem;
      }
      .cta-band h2 {
        font-family: "Georgia", serif;
        color: #f5f0e8;
        font-size: 1.5rem;
        font-weight: 700;
        margin-bottom: 0.4rem;
      }
      .cta-band p {
        color: #9ab8a8;
        font-size: 0.9rem;
        margin: 0;
      }

      .services-hero {
        min-height: 320px;
      }
      .services-hero-logo {
        position: absolute;
        right: 2rem;
        top: 55%;
        transform: translateY(-50%);
        height: 500px;
        width: auto;
        opacity: 0.07;
        pointer-events: none;
      }

      @media (max-width: 767.98px) {
        .services-hero {
          min-height: 0;
          padding: 3.25rem 1rem 3rem;
        }
        .services-hero .eyebrow {
          font-size: 0.72rem;
          letter-spacing: 0.14em;
        }
        .services-hero h1 {
          font-size: clamp(2.25rem, 13vw, 3rem);
          line-height: 1.05;
        }
        .services-hero .lead {
          max-width: 22rem;
          font-size: 0.98rem;
          line-height: 1.6;
        }
        .services-hero-logo {
          right: -5rem;
          top: 52%;
          height: 280px;
          opacity: 0.035;
        }
        .services-hero .lead {
          max-width: 100%;
        }
      }
    </style>
  </head>
  <body>
    <!-- ── NAVBAR ───────────────────────────────────── -->
    <nav class="navbar navbar-expand-lg bg-body-tertiary">
      <div class="container-fluid">
        <a class="navbar-brand" href="../index.html">
          <img
            src="../assets/images/logo-empty.png"
            class="logo-empty mx-3"
            alt="logo"
          />
          <span style="font-family: &quot;Georgia&quot;, serif"
            >Work by Gab</span
>
        </a>
        <button
          class="navbar-toggler"
          type="button"
          data-bs-toggle="collapse"
          data-bs-target="#navbarSupportedContent"
          aria-controls="navbarSupportedContent"
          aria-expanded="false"
          aria-label="Toggle navigation"
        >
          <span class="navbar-toggler-icon"></span>
        </button>
        <div class="collapse navbar-collapse" id="navbarSupportedContent">
          <ul class="navbar-nav ms-5 mb-2 mb-lg-0">
            <li class="nav-item">
              <a class="nav-link" href="../index.html">Accueil</a>
            </li>
            <li class="nav-item">
              <a
                class="nav-link active"
                aria-current="page"
                href="./services.html"
                >Services</a
>
            </li>
            <li class="nav-item dropdown">
              <a
                class="nav-link dropdown-toggle"
                href="#"
                role="button"
                data-bs-toggle="dropdown"
                aria-expanded="false"
              >
                Projets
              </a>
              <ul class="dropdown-menu">
                <li>
                  <a class="dropdown-item" href="./projets-termines.html"
                    >Projets terminés</a
>
                </li>
                <li>
                  <a class="dropdown-item" href="./projets-en-cours.html"
                    >Projets en cours</a
>
                </li>
                <li><hr class="dropdown-divider" /></li>
                <li>
                  <a class="dropdown-item" href="./perspectives.html"
                    >Perspectives</a
>
                </li>
              </ul>
            </li>
            <li class="nav-item">
              <a class="nav-link" href="./contact.html">Contact</a>
            </li>
          </ul>
        </div>
      </div>
    </nav>

    <!-- ── HERO ─────────────────────────────────────── -->
    <div class="gradient-background services-hero-wrap">
      <img
        src="../assets/images/full-logo-empty-black.png"
        alt=""
        aria-hidden="true"
        style="          position: absolute;          right: 2rem;          top: 55%;          transform: translateY(-50%);          height: 500px;          width: auto;          opacity: 0.07;          pointer-events: none;        "
        class="d-none d-lg-block"
      />
      <!-- Mobile / tablette -->
      <img
        src="../assets/images/full-logo-empty-black.png"
        alt="logo"
        aria-hidden="true"
        style="          position: absolute;          right: 0.5rem;          top: 60%;          transform: translateY(-50%);          height: 430px;          width: auto;          opacity: 0.05;          pointer-events: none;        "
        class="d-lg-none"
      />
      <div class="container services-hero">
        <h1>Nos services</h1>
        <p class="lead">
          Une approche centrée sur le travail réel, combinant ergonomie et
          psychologie du travail pour améliorer durablement vos conditions de
          travail.
        </p>
      </div>
    </div>

    <!-- ── SERVICE CARDS ─────────────────────────────── -->
    <div class="container py-5">
      <h2 class="pb-2 border-bottom mb-4">Ce que je propose</h2>
      <div class="row g-4">
        <div class="col-md-6">
          <div class="service-card">
            <div class="service-tag">Ergonomie</div>
            <div class="service-icon">
              <svg
                xmlns="http://www.w3.org/2000/svg"
                width="22"
                height="22"
                fill="none"
                viewbox="0 0 24 24"
                stroke="#5a7d6a"
                stroke-width="2"
                stroke-linecap="round"
                stroke-linejoin="round"
              >
                <path d="M12 22s8-4 8-10V5l-8-3-8 3v7c0 6 8 10 8 10z" />
              </svg>
            </div>
            <h3>Analyse & prévention des risques</h3>
            <p class="description">
              Compréhension du travail réel pour identifier les facteurs de
              risque et proposer des solutions concrètes, adaptées au terrain et
              aux équipes.
            </p>
            <hr class="service-divider" />
            <ul class="bullet-list">
              <li>Prévention des troubles musculo-squelettiques (TMS)</li>
              <li>
                Analyse des accidents du travail & maladies professionnelles
                (AT/MP)
              </li>
              <li>Amélioration des postes, outils et conditions de travail</li>
              <li>Rédaction et mise à jour du DUERP / PAPRIPACT</li>
              <li>Risques chimiques et ambiances de travail</li>
            </ul>
          </div>
        </div>

        <div class="col-md-6">
          <div class="service-card">
            <div class="service-tag">Psychologie du travail</div>
            <div class="service-icon">
              <svg
                xmlns="http://www.w3.org/2000/svg"
                width="22"
                height="22"
                fill="none"
                viewbox="0 0 24 24"
                stroke="#5a7d6a"
                stroke-width="2"
                stroke-linecap="round"
                stroke-linejoin="round"
              >
                <path d="M17 21v-2a4 4 0 0 0-4-4H5a4 4 0 0 0-4 4v2" />
                <circle cx="9" cy="7" r="4" />
                <path d="M23 21v-2a4 4 0 0 0-3-3.87" />
                <path d="M16 3.13a4 4 0 0 1 0 7.75" />
              </svg>
            </div>
            <h3>Accompagnement humain & psychosocial</h3>
            <p class="description">
              Analyse des facteurs humains et psychosociaux pour soutenir les
              individus et les collectifs dans les situations de travail
              difficiles ou en évolution.
            </p>
            <hr class="service-divider" />
            <ul class="bullet-list">
              <li>Diagnostic et prévention des risques psychosociaux (RPS)</li>
              <li>Analyse de la charge mentale et cognitive</li>
              <li>Entretiens individuels & ateliers collectifs</li>
              <li>Soutien au changement organisationnel</li>
              <li>Maintien dans l'emploi et aménagement de poste</li>
            </ul>
          </div>
        </div>
      </div>
    </div>

    <!-- ── PROCESS ────────────────────────────────────── -->
    <div class="container pb-5">
      <div class="process-section">
        <h2>Comment nous intervenons</h2>
        <p class="sub">Une méthode structurée, du diagnostic au suivi.</p>

        <div class="step-wrap">
          <div class="step-row">
            <div class="step-left">
              <div class="step-num">1</div>
              <div class="step-line"></div>
            </div>
            <div class="step-body">
              <h4>Diagnostic terrain</h4>
              <p>
                Observation du travail réel, entretiens avec les collaborateurs
                et analyse des données existantes (AT, absentéisme, plaintes…).
              </p>
            </div>
          </div>

          <div class="step-row">
            <div class="step-left">
              <div class="step-num">2</div>
              <div class="step-line"></div>
            </div>
            <div class="step-body">
              <h4>Analyse & restitution</h4>
              <p>
                Identification des facteurs de risque, synthèse des enjeux et
                présentation aux parties prenantes (direction, managers, IRP).
              </p>
            </div>
          </div>

          <div class="step-row">
            <div class="step-left">
              <div class="step-num">3</div>
              <div class="step-line"></div>
            </div>
            <div class="step-body">
              <h4>Co-construction du plan d'action</h4>
              <p>
                Élaboration de solutions adaptées avec les équipes, priorisées
                selon les contraintes de l'entreprise.
              </p>
            </div>
          </div>

          <div class="step-row">
            <div class="step-left">
              <div class="step-num">4</div>
            </div>
            <div class="step-body">
              <h4>Suivi & évaluation</h4>
              <p>
                Accompagnement de la mise en œuvre, ajustements si nécessaire et
                mesure des effets sur les conditions de travail.
              </p>
            </div>
          </div>
        </div>
      </div>
    </div>

    <!-- ── CAROUSEL ───────────────────────────────────── -->
    <div class="container pb-5 carousel-section">
      <div
        id="carouselExample"
        class="carousel slide carousel-rounded mx-auto"
        style="max-width: 800px"
        data-bs-ride="carousel"
        data-bs-interval="3000"
      >
        <div class="carousel-indicators">
          <button
            type="button"
            data-bs-target="#carouselExample"
            data-bs-slide-to="0"
            class="active"
            aria-current="true"
            aria-label="Slide 1"
          ></button>
          <button
            type="button"
            data-bs-target="#carouselExample"
            data-bs-slide-to="1"
            aria-label="Slide 2"
          ></button>
          <button
            type="button"
            data-bs-target="#carouselExample"
            data-bs-slide-to="2"
            aria-label="Slide 3"
          ></button>
          <button
            type="button"
            data-bs-target="#carouselExample"
            data-bs-slide-to="3"
            aria-label="Slide 4"
          ></button>
          <button
            type="button"
            data-bs-target="#carouselExample"
            data-bs-slide-to="4"
            aria-label="Slide 5"
          ></button>
          <button
            type="button"
            data-bs-target="#carouselExample"
            data-bs-slide-to="5"
            aria-label="Slide 6"
          ></button>
        </div>
        <div class="carousel-inner">
          <div class="carousel-item active">
            <img
              src="../assets/images/caroussel1.png"
              class="d-block w-100 carousel-img"
              alt="Intervention 1"
            />
          </div>
          <div class="carousel-item">
            <img
              src="../assets/images/caroussel2.jpg"
              class="d-block w-100 carousel-img"
              alt="Intervention 2"
            />
          </div>
          <div class="carousel-item">
            <img
              src="../assets/images/caroussel3.webp"
              class="d-block w-100 carousel-img"
              alt="Intervention 3"
            />
          </div>
          <div class="carousel-item">
            <img
              src="../assets/images/caroussel4.webp"
              class="d-block w-100 carousel-img"
              alt="Intervention 4"
            />
          </div>
          <div class="carousel-item">
            <img
              src="../assets/images/caroussel5.webp"
              class="d-block w-100 carousel-img"
              alt="Intervention 5"
            />
          </div>
          <div class="carousel-item">
            <img
              src="../assets/images/logo-white.png"
              class="d-block w-100 carousel-img"
              alt="Intervention 5"
            />
          </div>
        </div>
        <button
          class="carousel-control-prev"
          type="button"
          data-bs-target="#carouselExample"
          data-bs-slide="prev"
        >
          <span class="carousel-control-prev-icon" aria-hidden="true"></span>
          <span class="visually-hidden">Précédent</span>
        </button>
        <button
          class="carousel-control-next"
          type="button"
          data-bs-target="#carouselExample"
          data-bs-slide="next"
        >
          <span class="carousel-control-next-icon" aria-hidden="true"></span>
          <span class="visually-hidden">Suivant</span>
        </button>
      </div>
    </div>

    <!-- ── CTA BAND ───────────────────────────────────── -->
    <div class="container pb-5">
      <div
        class="cta-band d-flex flex-wrap justify-content-between align-items-center gap-3"
      >
        <div>
          <h2>Vous avez un projet ?</h2>
          <p>Discutons de vos besoins • sans engagement.</p>
        </div>
        <div class="d-flex gap-3 flex-wrap">
          <a href="./projets-termines.html" class="btn btn-dark btn-lg px-4">
            Voir nos réalisations
          </a>
          <a href="./contact.html" class="btn btn-filled btn-lg px-4">
            Contactez-nous
          </a>
        </div>
      </div>
    </div>

    <!-- ── FOOTER ─────────────────────────────────────── -->
    <div class="gradient-background">
      <div class="container">
        <footer class="py-4 mt-4 border-top">
          <div
            class="d-flex flex-column flex-md-row justify-content-between align-items-center gap-3"
          >
            <!-- Logo + copyright -->
            <div class="d-flex align-items-center gap-3">
              <img
                src="../assets/images/logo-empty.png"
                alt="logo"
                style="height: 2.2rem; border-radius: 12%; opacity: 0.75"
              />
              <span class="text-body-secondary text-center text-md-start">
                © 2026 Work by Gab <br />
                <span style="font-size: 10px"
                  >Built by Onur Menekse & Designed by Kimberley Ganseman</span
>
              </span>
            </div>

            <!-- Icônes réseaux sociaux -->
            <ul
              class="nav list-unstyled d-flex flex-wrap justify-content-center gap-3 mb-0"
            >
              <li>
                <a
                  href="https://wa.me/33642533084"
                  target="_blank"
                  class="text-body-secondary"
                  aria-label="WhatsApp"
                >
                  <svg
                    xmlns="http://www.w3.org/2000/svg"
                    width="22"
                    height="22"
                    fill="currentColor"
                    class="bi bi-whatsapp"
                    viewbox="0 0 16 16"
                  >
                    <path
                      d="M13.601 2.326A7.85 7.85 0 0 0 7.994 0C3.627 0 .068 3.558.064 7.926c0 1.399.366 2.76 1.057 3.965L0 16l4.204-1.102a7.9 7.9 0 0 0 3.79.965h.004c4.368 0 7.926-3.558 7.93-7.93A7.9 7.9 0 0 0 13.6 2.326zM7.994 14.521a6.6 6.6 0 0 1-3.356-.92l-.24-.144-2.494.654.666-2.433-.156-.251a6.56 6.56 0 0 1-1.007-3.505c0-3.626 2.957-6.584 6.591-6.584a6.56 6.56 0 0 1 4.66 1.931 6.56 6.56 0 0 1 1.928 4.66c-.004 3.639-2.961 6.592-6.592 6.592m3.615-4.934c-.197-.099-1.17-.578-1.353-.646-.182-.065-.315-.099-.445.099-.133.197-.513.646-.627.775-.114.133-.232.148-.43.05-.197-.1-.836-.308-1.592-.985-.59-.525-.985-1.175-1.103-1.372-.114-.198-.011-.304.088-.403.087-.088.197-.232.296-.346.1-.114.133-.198.198-.33.065-.134.034-.248-.015-.347-.05-.099-.445-1.076-.612-1.47-.16-.389-.323-.335-.445-.34-.114-.007-.247-.007-.38-.007a.73.73 0 0 0-.529.247c-.182.198-.691.677-.691 1.654s.71 1.916.81 2.049c.098.133 1.394 2.132 3.383 2.992.47.205.84.326 1.129.418.475.152.904.129 1.246.08.38-.058 1.171-.48 1.338-.943.164-.464.164-.86.114-.943-.049-.084-.182-.133-.38-.232"
                    />
                  </svg>
                </a>
              </li>
              <li>
                <a
                  href="https://www.linkedin.com/in/gabriel-bernonville-46b716195/"
                  target="_blank"
                  class="text-body-secondary"
                  aria-label="LinkedIn"
                >
                  <svg
                    xmlns="http://www.w3.org/2000/svg"
                    width="22"
                    height="22"
                    fill="currentColor"
                    class="bi bi-linkedin"
                    viewbox="0 0 16 16"
                  >
                    <path
                      d="M0 1.146C0 .513.526 0 1.175 0h13.65C15.474 0 16 .513 16 1.146v13.708c0 .633-.526 1.146-1.175 1.146H1.175C.526 16 0 15.487 0 14.854zm4.943 12.248V6.169H2.542v7.225zm-1.2-8.212c.837 0 1.358-.554 1.358-1.248-.015-.709-.52-1.248-1.342-1.248S2.4 3.226 2.4 3.934c0 .694.521 1.248 1.327 1.248zm4.908 8.212V9.359c0-.216.016-.432.08-.586.173-.431.568-.878 1.232-.878.869 0 1.216.662 1.216 1.634v3.865h2.401V9.25c0-2.22-1.184-3.252-2.764-3.252-1.274 0-1.845.7-2.165 1.193v.025h-.016l.016-.025V6.169h-2.4c.03.678 0 7.225 0 7.225z"
                    />
                  </svg>
                </a>
              </li>
              <li>
                <a
                  href="https://www.instagram.com/gab_bernon?igsh=YXZicTR4aTZ3aGZ0"
                  target="_blank"
                  class="text-body-secondary"
                  aria-label="Instagram"
                >
                  <svg
                    xmlns="http://www.w3.org/2000/svg"
                    width="22"
                    height="22"
                    fill="currentColor"
                    class="bi bi-instagram"
                    viewbox="0 0 16 16"
                  >
                    <path
                      d="M8 0C5.829 0 5.556.01 4.703.048 3.85.088 3.269.222 2.76.42a3.9 3.9 0 0 0-1.417.923A3.9 3.9 0 0 0 .42 2.76C.222 3.268.087 3.85.048 4.7.01 5.555 0 5.827 0 8.001c0 2.172.01 2.444.048 3.297.04.852.174 1.433.372 1.942.205.526.478.972.923 1.417.444.445.89.719 1.416.923.51.198 1.09.333 1.942.372C5.555 15.99 5.827 16 8 16s2.444-.01 3.298-.048c.851-.04 1.434-.174 1.943-.372a3.9 3.9 0 0 0 1.416-.923c.445-.445.718-.891.923-1.417.197-.509.332-1.09.372-1.942C15.99 10.445 16 10.173 16 8s-.01-2.445-.048-3.299c-.04-.851-.175-1.433-.372-1.941a3.9 3.9 0 0 0-.923-1.417A3.9 3.9 0 0 0 13.24.42c-.51-.198-1.092-.333-1.943-.372C10.443.01 10.172 0 7.998 0zm-.717 1.442h.718c2.136 0 2.389.007 3.232.046.78.035 1.204.166 1.486.275.373.145.64.319.92.599s.453.546.598.92c.11.281.24.705.275 1.485.039.843.047 1.096.047 3.231s-.008 2.389-.047 3.232c-.035.78-.166 1.203-.275 1.485a2.5 2.5 0 0 1-.599.919c-.28.28-.546.453-.92.598-.28.11-.704.24-1.485.276-.843.038-1.096.047-3.232.047s-2.39-.009-3.233-.047c-.78-.036-1.203-.166-1.485-.276a2.5 2.5 0 0 1-.92-.598 2.5 2.5 0 0 1-.6-.92c-.109-.281-.24-.705-.275-1.485-.038-.843-.046-1.096-.046-3.233s.008-2.388.046-3.231c.036-.78.166-1.204.276-1.486.145-.373.319-.64.599-.92s.546-.453.92-.598c.282-.11.705-.24 1.485-.276.738-.034 1.024-.044 2.515-.045zm4.988 1.328a.96.96 0 1 0 0 1.92.96.96 0 0 0 0-1.92m-4.27 1.122a4.109 4.109 0 1 0 0 8.217 4.109 4.109 0 0 0 0-8.217m0 1.441a2.667 2.667 0 1 1 0 5.334 2.667 2.667 0 0 1 0-5.334"
                    />
                  </svg>
                </a>
              </li>
              <li>
                <a
                  href="https://www.facebook.com/charaman"
                  target="_blank"
                  class="text-body-secondary"
                  aria-label="Facebook"
                >
                  <svg
                    xmlns="http://www.w3.org/2000/svg"
                    width="22"
                    height="22"
                    fill="currentColor"
                    class="bi bi-facebook"
                    viewbox="0 0 16 16"
                  >
                    <path
                      d="M16 8.049c0-4.446-3.582-8.05-8-8.05C3.58 0-.002 3.603-.002 8.05c0 4.017 2.926 7.347 6.75 7.951v-5.625h-2.03V8.05H6.75V6.275c0-2.017 1.195-3.131 3.022-3.131.876 0 1.791.157 1.791.157v1.98h-1.009c-.993 0-1.303.621-1.303 1.258v1.51h2.218l-.354 2.326H9.25V16c3.824-.604 6.75-3.934 6.75-7.951"
                    />
                  </svg>
                </a>
              </li>
            </ul>
          </div>
        </footer>
      </div>
    </div>
  </body>
</html>