* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: clamp(14px, 2.5vw, 16px);
}


body {
    font-family: monospace;
    background: #ffffff;
    color: #ffffff;
    overflow-x: hidden;
    line-height: 1.6;
}

img,
iframe {
    max-width: 100%;
    height: auto;
    display: block;
}


.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(11, 11, 11, 0.5);
    z-index: 1000;
    animation: fadeIn 0.6s ease;
}

.modal-overlay.active {
    display: flex;
    justify-content: center;
    align-items: center;
    overflow-y: auto;
    padding: clamp(12px, 3vw, 20px);
}

.modal {
    background: rgb(255, 255, 255);
    border-radius: clamp(12px, 2vw, 16px);
    width: 100%;
    max-width: 700px;
    margin: auto;
    animation: slideUp 0.5s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.modal-header {
    padding: clamp(12px, 2vw, 16px) clamp(16px, 3vw, 20px);
    border-bottom: 1px solid #e0e0e0;
    display: flex;
    gap: clamp(10px, 2vw, 15px);
    justify-content: space-evenly;
    align-items: center;
    position: relative;
    background: white;
    flex-wrap: wrap;
}

.modal-image iframe {
    width: 100%;
    height: clamp(500px, 70vh, 900px);
    border-radius: 12px;
    border: none;
}

.modal-handle {
    width: 40px;
    height: 4px;
    background: #ffffff;
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
}


.downloads,
.languages {
    text-decoration: none;
    background: white;
    border: none;
    border-bottom: 4px solid #001023;
    color: black;
    border-radius: 5px 5px 3px 3px;
    min-height: 44px;
    padding: clamp(8px, 2vw, 10px) clamp(12px, 3vw, 18px);
    font-size: clamp(0.85rem, 2vw, 1rem);
    cursor: pointer;
    touch-action: manipulation;
    transition: all 0.3s ease;
}

.downloads:hover,
.languages:hover {
    border: 1px solid #001023;
    cursor: pointer;
}

.close-btn {
    background: none;
    border: none;
    font-size: clamp(20px, 4vw, 24px);
    cursor: pointer;
    color: #666;
    padding: 8px;
    min-height: 44px;
    min-width: 44px;
}

.close-btn:hover {
    color: #000;
}

.modal-content {
    padding: clamp(16px, 4vw, 24px);
}


.cv-title {
    font-size: clamp(1.2rem, 4vw, 1.4rem);
    font-weight: 600;
    color: #000;
    margin-bottom: clamp(8px, 2vw, 12px);
    line-height: 1.3;
}

.cv-meta,
.cv-details {
    font-size: clamp(0.75rem, 2.5vw, 0.85rem);
    color: #666;
    margin-bottom: clamp(12px, 3vw, 20px);
}


.modalOverlay-Download {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(11, 11, 11, 0.5);
    z-index: 1000;
    animation: animatetop 3s;
}

@keyframes animatetop {
    from {
        top: -300px;
        opacity: 0;
    }
    to {
        top: 0;
        opacity: 1;
    }
}

.modalOverlay-Download.active {
    display: flex;
    justify-content: center;
    align-items: center;
    overflow-y: auto;
    padding: clamp(12px, 3vw, 20px);
}

.modal-wrapper {
    display: flex;
    flex-direction: column;
    width: 90%;
    max-width: 600px;
}

.modal-headers {
    background: #001023;
    padding: clamp(12px, 3vw, 20px) clamp(16px, 4vw, 30px);
    display: flex;
    justify-content: flex-end;
    width: 100%;
    align-items: center;
    border-bottom: 3px solid #9c9c9c;
}

.modal-headers button {
    cursor: pointer;
    height: clamp(35px, 5vw, 44px);
    width: clamp(35px, 5vw, 44px);
    background: transparent;
    border: none;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-headers i {
    color: white;
    font-size: clamp(1.2rem, 4vw, 1.5rem);
}

.modal-containses {
    background: rgb(255, 255, 255);
    width: 100%;
    height: auto;
    border-radius: 0px 0px 7px 0px;
    border: 1px solid #001023;
    padding: clamp(12px, 3vw, 15px);
    box-sizing: border-box;
}

.modalOverlay-Download p {
    color: rgb(0, 0, 0);
    font-size: clamp(0.9rem, 3vw, 1rem);
    margin: clamp(6px, 2vw, 8px) 0;
    width: 100%;
    padding: clamp(8px, 2vw, 10px);
    /* box-shadow: 0 3px 3px rgba(82, 82, 82, 0.94); */
    text-align: center;
    line-height: 1.5;
}
.fa-info-circle{
    color:rgb(0, 115, 216);
}
.modalOverlay-Download i {
    font-size: clamp(1rem, 3vw, 1.2rem);
}


fieldset {
    min-height: 65px;
    background: rgb(255, 255, 255);
    border-radius: 7px;
    box-shadow: 0 3px 3px rgba(82, 82, 82, 0.94);
    padding: clamp(8px, 2vw, 12px);
    margin-bottom: clamp(10px, 2vw, 15px);
}

legend {
    color: rgb(2, 2, 2);
    font-size: clamp(0.85rem, 2.5vw, 1rem);
    padding: 0 8px;
}

.persons {
    color: rgb(255, 252, 252);
    min-height: 40px;
    width: 100%;
    max-width: 65%;
    background: #001023;
    border-radius: 5px;
    text-align: center;
    padding: clamp(8px, 2vw, 10px);
    font-size: clamp(0.85rem, 2.5vw, 1rem);
    border: none;
    cursor: pointer;
}

.categories-forms {
    display: none;
    margin-top: clamp(10px, 2vw, 15px);
    animation: slideDown 0.3s ease;
}

.categories-forms.show {
    display: block;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.categories-forms input {
  width: 100%;
  padding: 12px 12px 12px 40px; /* espace pour l’icône */
  border-radius: 7px;
  margin: 5px;
  border: 1px solid #ccc;
  font-size: 1rem;
}
.categories-forms input:focus {
  outline: none;
  border-color: #001023;
}

.categories-forms input:focus + i {
  color: #001023;
}

.Organisation {
  position: relative;
  width: 100%;
}
.Organisation i{
  position: absolute;
  top: 50%;
  left: 12px;
  transform: translateY(-50%);
  color: #777;
  font-size: 1rem;
  pointer-events: none;
}

.Organisation label{
    color:black;
}


.modal-forms-modif button[type="submit"] {
    cursor: pointer;
    background: #001023;
    color: rgb(255, 255, 255);
    border: 2px solid #001023;
    border-radius: 5px;
    padding: clamp(10px, 2.5vw, 12px) clamp(20px, 4vw, 30px);
    font-size: clamp(0.9rem, 2.5vw, 1rem);
    margin-top: clamp(10px, 2vw, 15px);
    min-height: 44px;
    width: 100%;
    transition: all 0.3s ease;
}

.modal-forms-modif button:hover {
    background: white;
    color: #001023;
    transform: scale(1.02);
}


.hero {
    min-height:100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    background: white;
}

.hero-container {
    width: 100%;
    max-width: 1400px; 
    background: white;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    margin: 0 auto;
}

.card-header  {
    background: #001023;
    padding: clamp(15px, 3vw, 20px) clamp(20px, 4vw, 30px);
    display: block;
    position: relative;
    border-bottom: 3px solid #9c9c9c;
}

.hero-content {
    display: grid;
    grid-template-columns: minmax(200px, 260px) 1fr;
    gap: clamp(20px, 4vw, 30px);
    padding: clamp(25px, 5vw, 40px) clamp(20px, 4vw, 35px);
    align-items: start;
    min-height: calc(100vh - 80px); 
}


.photo-section {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.photo-container {
    width: clamp(170px, 30vw, 220px);
    height: clamp(210px, 35vw, 270px);
    background: linear-gradient(135deg, #e0e0e0 0%, #f5f5f5 100%);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    margin-bottom: clamp(20px, 4vw, 30px);
}

.photo-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.btn-telecharger {
    background: #001023;
    color: white;
    border: 2px solid #001023;
    padding: clamp(10px, 2vw, 11px) clamp(20px, 4vw, 28px);
    font-size: clamp(0.85rem, 2.5vw, 0.95rem);
    font-weight: 600;
    cursor: pointer;
    border-radius: 5px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 44px;
    width: 100%;
    max-width: 240px;
    justify-content: center;
    touch-action: manipulation;
}

.btn-telecharger:hover {
    background: white;
    color: #001023;
    transform: translateY(-2px);
    box-shadow: 0 2px 8px rgba(66, 66, 66, 0.984);
}
.info-section {
    display: flex;
    flex-direction: column;
    gap: clamp(12px, 3vw, 18px);
}

.profession {
    background: #001023;
    color: white;
    padding: clamp(12px, 2.5vw, 14px) clamp(18px, 3vw, 22px);
    border-radius: 8px;
    font-size: clamp(0.95rem, 3vw, 1.1rem);
    font-weight: bold;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    box-shadow: 0 2px 8px rgba(66, 66, 66, 0.984);
    line-height: 1.4;
}
/* .name{
  font-size: xx-large;
  font-family:Georgia, 'Times New Roman', Times, serif
} */


.subtitle {
    color: #333;
    font-size: clamp(0.85rem, 2.5vw, 0.95rem);
    line-height: 1.6;
    text-align: justify;
    margin: 0;
}

.tech-icons {
    display: flex;
    gap: clamp(15px, 3vw, 20px);
    flex-wrap: wrap;
    margin: clamp(6px, 2vw, 8px) 0;
    justify-content: flex-start;
}

.tech-icon {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

.tech-icon img {
    width: clamp(28px, 5vw, 32px);
    height: clamp(28px, 5vw, 32px);
}

.win {
    color: #666;
    font-size: clamp(0.7rem, 2vw, 0.75rem);
    text-align: center;
    margin: 0;
}


.certifications {
    background: #f5f5f5;
    padding: clamp(14px, 3vw, 18px) clamp(18px, 3vw, 22px);
    border-radius: 8px;
    border-left: 2px solid #001023;
    margin-top: clamp(6px, 2vw, 8px);
}

.certifications img {
    height: clamp(25px, 4vw, 30px);
    width: auto;
    margin-right: 5px;
}

.cert-title {
    font-size: clamp(0.7rem, 2vw, 0.75rem);
    color: #666;
    margin-bottom: clamp(8px, 2vw, 10px);
    font-weight: 600;
    margin-top: 5px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cert-items {
    display: flex;
    gap: clamp(8px, 2vw, 10px);
    flex-wrap: wrap;
}

.cert-badge {
    background: white;
    padding: clamp(7px, 2vw, 9px) clamp(12px, 3vw, 16px);
    border-radius: 20px;
    font-size: clamp(0.7rem, 2vw, 0.75rem);
    color: #001023;
    font-weight: 600;
    border: 2px solid #001023;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    display: inline-flex;
    align-items: center;
    line-height: 1.4;
}


.experiences {
    padding: clamp(3rem, 8vw, 6rem) clamp(1rem, 3vw, 2rem);
    background: #f9f6f6;
}

.experiences-container {
    max-width: 1200px;
    margin: 0 auto;
    font-family: monospace;
}

.section-titles {
    font-size: clamp(1.8rem, 5vw, 2.5rem);
    margin-bottom: clamp(2rem, 4vw, 3rem);
    text-align: center;
    color: #fcfcfc;
    font-family: monospace;
}

.experience-card {
    background: #001023;
    border-radius: clamp(12px, 2vw, 15px);
    padding: clamp(1.5rem, 4vw, 2.5rem);
    margin-bottom: clamp(1.5rem, 3vw, 2rem);
    position: relative;
    overflow: hidden;
    opacity: 0;
    transition: all 0.5s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.experience-card.visible {
    opacity: 1;
    transform: translateX(0);
}

.experience-card h3 {
    font-size: clamp(1.3rem, 4vw, 2rem);
    margin-bottom: 0.5rem;
}

.experiences-container h2 {
    font-size: clamp(1.3rem, 4vw, 1.8rem);
    margin-bottom: 1rem;
    color: black;
}

.experience-card .company {
    color: rgb(1, 145, 228);
    font-size: clamp(1rem, 3vw, 1.2rem);
    margin-bottom: 1rem;
}

.experience-card p {
    color: #ffffff;
    line-height: 1.8;
    font-size: clamp(0.9rem, 2.5vw, 1rem);
}


.projects {
    padding: clamp(3rem, 8vw, 6rem) clamp(1rem, 3vw, 2rem);
    background: #001023;
}

.projects-container {
    max-width: 1200px;
    margin: 0 auto;
}
/* -------------Autre Modal testes en cours  */






.project-filters {
    display: flex;
    gap: clamp(0.5rem, 2vw, 1rem);
    justify-content: center;
    margin-bottom: clamp(2rem, 4vw, 3rem);
    flex-wrap: wrap;
}

.filter-btn {
    background: transparent;
    border: 2px solid rgb(255, 255, 255);
    color: #fff;
    padding: clamp(0.6rem, 2vw, 0.7rem) clamp(1.5rem, 3vw, 2rem);
    cursor: pointer;
    border-radius: 5px;
    transition: all 0.3s ease;
    font-size: clamp(0.85rem, 2.5vw, 1rem);
    min-height: 44px;
 }

.filter-btn.active {
    background: transparent;
    color: white;
    border-color: white;
}

.project-grid { 
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr)); 
    gap: clamp(1.5rem, 3vw, 2rem);
}

.project-card {
    background: #ffffff;
    border-radius: clamp(12px, 2vw, 15px);
    overflow: hidden;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(30px);
}

.project-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.project-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.project-image {
    width: 100%;
    height: clamp(180px, 30vw, 250px);
    background: linear-gradient(135deg, #1a1f2e 0%, #2d3548 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: clamp(2.5rem, 6vw, 4rem);
    position: relative;
    overflow: hidden;
}

.project-content {
    padding: clamp(1.5rem, 3vw, 2rem);
}

.project-content h3 {
    font-size: clamp(1.2rem, 3.5vw, 1.8rem);
    margin-bottom: clamp(0.8rem, 2vw, 1rem);
    color: black;
    line-height: 1.3;
}

.project-content p {
    color: #000000;
    margin-bottom: clamp(2rem, 4vw, 3.5rem);
    line-height: 1.6;
    font-size: clamp(0.85rem, 2.5vw, 0.95rem);
}

.tech-stacks {
    display: flex;
    gap: clamp(1rem, 3vw, 2rem);
    margin-bottom: clamp(1.5rem, 3vw, 2rem);
    flex-wrap: wrap;
}

.tech-exp-icon {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

.tech-exp-icon img {
    width: clamp(25px, 5vw, 30px);
    height: clamp(25px, 5vw, 30px);
}

.won {
    color: #b0b8c9;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: clamp(0.65rem, 2vw, 0.7rem);
    line-height: 1.8;
}

.project-links {
    display: flex;
    gap: clamp(0.8rem, 2vw, 1rem);
    flex-wrap: wrap;
}

.btn-outline {
    background: transparent;
    color: black;
    padding: clamp(0.6rem, 2vw, 0.7rem) clamp(1.2rem, 3vw, 1.5rem);
    cursor: pointer;
    border: 1px solid black;
    border-radius: 5px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    font-size: clamp(0.85rem, 2.5vw, 0.95rem);
    min-height: 44px;
    text-align: center;
}

.btn-outline:hover {
    background: transparent;
    border-top: none;
    border-left: none;
    border-right: none;
    border-bottom: 4px solid #001023;
}

footer {
    background: white;
    min-height: 60px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: clamp(10px, 2vw, 15px);
    color: black;
    font-size: clamp(0.8rem, 2.5vw, 1rem);
    padding: clamp(10px, 2vw, 15px);
    text-align: center;
}

.feet {
    background: none;
    border: none;
    cursor: pointer;
    min-height: 44px;
    min-width: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feet i {
    font-size: clamp(1.5rem, 4vw, 2rem);
}


@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideUp {
    from {
        transform: translateY(50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}




@media (max-width: 768px) {
    .hero{
         
        min-height: auto;
    }
    
    .hero-content  {
        grid-template-columns: 1fr;
        padding: clamp(20px, 4vw, 25px);
        text-align: center;
        gap: clamp(20px, 4vw, 25px);
        min-height: auto; 
    }

    .photo-section {
        justify-content: center;
    }

    .photo-container {
        margin: 0 auto clamp(15px, 3vw, 20px);
    }

    .tech-icons {
        justify-content: center;
    }

    .btn-telecharger {
        align-self: center;
        max-width: 100%;
    }

    .subtitle {
        text-align: left;
    }

    .modal-header {
        flex-direction: row;
        justify-content: space-between;
    }

    .persons {
        max-width: 100%;
    }

    .cert-items {
        justify-content: center;
    }
}


@media (max-width: 480px) {
    .modal {
        border-radius: 14px 14px 0 0;
        margin-top: auto;
    }

    .modal-wrapper {
        width: 95%;
    }

    .modal-header {
        flex-direction: column;
        gap: clamp(8px, 2vw, 10px);
    }

    .downloads,
    .languages {
        width: 100%;
    }

    .project-grid {
        grid-template-columns: 1fr;
    }

    .experience-card.slide-left,
    .experience-card.slide-right {
        transform: translateY(30px); 
    }

    .modalOverlay-Download p {
        font-size: clamp(0.85rem, 3vw, 0.9rem);
        padding: clamp(6px, 2vw, 8px);
    }

    fieldset {
        padding: clamp(10px, 3vw, 12px);
    }
}

@media (max-width: 360px) {
    html {
        font-size: 14px;
    }

    .hero-content {
        padding: 15px;
    }

    .photo-container {
        width: 140px;
        height: 180px;
    }

    .profession {
        font-size: 0.85rem;
        padding: 10px 12px;
    }

    .cert-badge {
        font-size: 0.65rem;
        padding: 6px 10px;
    }
}

@media (min-width: 1400px) {
    .hero-container,
    .experiences-container,
    .projects-container {
        max-width: 1400px;
    }
}

@media print {
    .modal-overlay,
    .modalOverlay-Download,
    .btn-telecharger,
    .filter-btn,
    footer {
        display: none !important;
    }

    body {
        background: white;
        color: black;
    }
}




.modalForConf{
    position: fixed;
    inset: 0;
    z-index: 2000;
    background-color: rgba(0, 0, 0, 0.4);
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.3s ease;
}


.modalForConf.active {
    visibility: visible;
    opacity: 1;
}


.modal-content-ForConf {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    max-height: 90vh;
    height:auto;
    background: white;
    border-radius: 20px 20px 0 0;
    display: flex;
    flex-direction: column;
    transform: translateY(100%);
    transition: transform 0.45s ease;
}


.modalForConf.active .modal-content-ForConf {
    transform: translateY(0);
    transition-delay: 0.7s
}


.modal-header-ForConf {
    background: #001023;
    height: 14px;
    border-radius: 20px 20px 0 0;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
}


.closeForConf {
    width: 60px;
    height: 6px;
    border-radius: 50px;
    background: #e0e0e0;
    border: none;
    cursor: pointer;
}

.modal-body-Forconf {
    flex: 1;
    overflow-y: auto;
    padding: clamp(12px, 3vw, 20px);
}


.modal-footer-ForConf {
    padding: 10px 16px;
    flex-shrink: 0;
    background: transparent;
}
.modal-footer-ForConf p{
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    color:rgb(84, 84, 84);
}


.Why-s,
.WhyData,
.WhichData,
.Approuved,
.What-his-Doing {
    color: #001023;
    font-size: clamp(0.9rem, 3vw, 1rem);
    font-family:'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    margin-bottom: 12px;
    padding: 12px;
    box-shadow: 0 3px 3px rgba(82, 82, 82, 0.3);
    border-radius: 6px;
    line-height: 1.6;
}


.WhyData li{
    color: #620000;
    font-size: clamp(0.9rem, 3vw, 1rem);
    font-family:'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    margin-left: 20px;
    padding: 12px;
    box-shadow: 0 3px 3px #620000;;
    border-radius: 6px;
    line-height: 1.6;
}
.WhichData li{
    color: #001023;
    font-size: clamp(0.9rem, 3vw, 1rem);
    font-family:'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    margin-left: 20px;
    padding: 12px;
    /* box-shadow: 0 3px 3px #620000;; */
    border-radius: 6px;
    line-height: 1.6;
}

.Contacte-Me{
    cursor: pointer;
    background: #001023;
    color: #ffffff;
    border: 2px solid #001023;
    border-radius: 5px;
    padding: clamp(8px, 2vw, 10px) clamp(16px, 4vw, 20px);
    font-size: clamp(0.85rem, 2.5vw, 1rem);
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    font-weight: 600;
    min-height: 44px;
    width: auto;
    display: inline-block;
    transition: all 0.3s ease;
    touch-action: manipulation;
}

.Contacte-Me:hover {
    background: white;
    color: #001023;
    font-family:'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    transform: scale(1.02);
    box-shadow: 0 2px 8px rgba(66, 66, 66, 0.6);
}



.Approuved i {
    color: #0b8700;
}

.Why-s i{
    color:rgb(58, 58, 58);
}
.WhyData i{
 color:#646200;
}

.WhichData i{
 color:rgb(3, 113, 239);
}

.What-his-Doing i{
     color:rgb(0, 69, 90);
}

.Why-s,
.WhyData,
.WhichData,
.Approuved,
.What-his-Doing {
    margin-right: 8px;
    font-size: 1.1rem;
}
.myBtnFor-more{
    
    cursor: pointer;
    background: gray;
    color: #ffffff;
    border: 0px solid #001023;
    border-radius: 5px;
    padding: clamp(8px, 2vw, 10px) clamp(16px, 4vw, 20px);
    font-size: clamp(0.50rem, 2.5vw, 1rem);
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    min-height: 30px;
    width: auto;
    text-align: center;
    align-items: center;
    display: inline-block;
    transition: all 0.3s ease;
    touch-action: manipulation;
}

.myBtnFor-more:hover{
    background: gray;
    color: white;
    font-family:'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    transform: scale(02);
    /* box-shadow: 0 2px 8px rgba(66, 66, 66, 0.6); */
}






@media (min-width: 768px) {
    .modal-content-ForConf {
        height: 85vh;
    }
}


@media (min-width: 1024px) {
    .modal-content-ForConf {
        height: 75vh;
        max-width: 900px;
        left: 50%;
        transform: translate(-50%, 100%);
    }

    .modalForConf.active .modal-content-ForConf {
        transform: translate(-50%, 0);
    }
}
@media (max-width: 480px) {
    .Contacte-Me {
        width: 100%;
        text-align: center;
    }
}



/* Autre modal testes en cours 