* {
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
    font-family: 'Poppins', system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    scroll-behavior: smooth;
}

html, body {
    overflow-x: hidden;
}

body{
    min-width: 230px;
    min-height: 100vh;
}

img {
    max-width: 100%;
    height: auto;
}


/*NAVBAR*/



nav{
    height: 80px;
    box-shadow: 3px 3px 5px rgba(0, 0, 0, 0.1);
    background-color: white;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    display: flex;
    align-items: center;
    padding: 10px 20px;
}

nav li{
    height: 50px;
    align-items: center;
}

nav a{
    padding: 0 15px;
    white-space: nowrap;
    height: 100%;
    padding: 0 30px;
    text-decoration: none;
    display: flex;
    align-items: center;
    color: black;
    position: relative;
    transition: color 0.3s ease;
}

nav a:hover{
    color: #0138B4;
}

nav a::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #0138B4;
    transition: width 0.3s ease;
}

nav a:hover::after {
    width: 100%;
}

nav li:first-child{
    margin-right: auto;
}

.sidebar{
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    width: 250px;
    z-index: 999;
    background-color: rgba(255, 255, 255, 0.404);
    backdrop-filter: blur(10px);
    box-shadow: -10px 0 10px rgba(0, 0, 0, 0.1);
    display: none;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
}

.menu-button {
    cursor: pointer;
}

.sidebar li:first-child {
    cursor: pointer;
}

.sidebar li{
    width: 100%;
}

.sidebar a{
    width: 100%;
    text-align: left;
    padding-left: 20px;
    box-sizing: border-box;
}

nav ul{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0;
    margin: 0;
    list-style: none;
    width: 100%;
}

.menu-button{
    display: none;
}

.logo-container .logo-image{
    width: 80px;
    margin-right: -25px;
}

.title-text {
    display: flex;
    font-size: 1.5em;
    font-weight: bold;
    cursor: default;
    color: inherit; 
}

.contact-button {
    border: 2px solid transparent;
    padding: 8px 15px;
    transition: color 0.3s ease, border-color 0.3s ease, background-color 0.3s ease;
}

.contact-button:hover {
    color: white;
    background-color: #0138B4; 
    border: 2px solid #0138B4;
}

@media (min-width: 1245px) {

    .logo-container{
       margin-right: auto;
    }

    .menu-button {
        display: none;
    }
}


@media(max-width: 1244px){

    .hideOnMobile{
        display: none;
    }

    .menu-button{
        display: block;
    }
}

@media (max-width: 477px) {
    .logo-container {
        display: flex;
        align-items: center; 
        gap: 5px; 
        max-width: 100%;
        flex-wrap: nowrap;
    }

    .logo-container .logo-image {
        width: 50px;
        height: auto;
    }

    .title-text {
        font-size: 1.2em; 
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
}

@media (max-width: 480px) and (min-width: 478px) {
    .logo-container {
      flex-direction: row;
      align-items: center;
      justify-content: flex-start;
      flex-wrap: nowrap;
      gap: 5px;
    }
  
    .logo-container .logo-image {
      width: 50px;
      flex-shrink: 0;
    }
  
    .title-text {
      font-size: 1.2em;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
    }
  }

  @media (max-width: 395px) and (min-width: 381px) {
    .logo-container {
      flex-direction: row;
      align-items: center;
      justify-content: flex-start;
      flex-wrap: nowrap;
      gap: 5px;
    }
  
    .logo-container .logo-image {
      width: 50px;
      flex-shrink: 0;
    }
  
    .title-text {
      font-size: 1.1em;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
    }
  }

@media(max-width: 400px){

    .sidebar{
        width: 100%;
    }
}

@media (max-width: 380px) {

    .logo-container .logo-image{
        width: 40px;
    }
    
    .title-text {
        font-size: 1em;
    }
    
    }

  @media (max-width: 348px) and (min-width: 337px) {
    .logo-container {
      flex-direction: column;
      align-items: center;
      text-align: center;
      justify-content: center;
    }
  
    .logo-container .logo-image {
      width: 35px;
      margin: 0 auto;
      margin-bottom: -7px;
      display: block;
    }
  
    .title-text {
      font-size: 0.9em;
      line-height: 1;
      display: block;
      margin-top: -9px;
    }
  }
  
@media (max-width: 336px) {
    .logo-container {
        flex-direction: column; 
        align-items: center; 
        text-align: center; 
        justify-content: center;
    }

    .logo-container .logo-image {
        width: 35px; 
        margin: 0 auto;
        margin-bottom: -7px;
        display: block;
    }

    .title-text {
        font-size: 0.9em;
        line-height: 1;
        display: block;
        margin-top: -9px;
    }
}


/*ACCUEIL*/



.Accueil {
    position: relative;
    width: 100%;
    height: calc(100vh - 0.5px);
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #f4f4f4;
}

.Image-Bannière {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0%;
    left: 0%;
    z-index: 1;
    filter: brightness(0.8);
}

.Accueil .contenu {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    z-index: 2;
    max-width: 70%;
}

.Accueil .contenu h2 {
    font-size: 2rem; 
    line-height: 1.3;
    max-width: 90%;
    margin: 0 auto;
    text-align: center;
}

.contenu-banniere .contenu {
    margin-top: 250px;
    position: relative;
}

.button-container {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

.btn1, .btn2 {
    flex: 0 1 auto;
    padding: 10px 20px;
    text-align: center;
    font-size: 1rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: bold;
    cursor: pointer;
    white-space: nowrap;
    transition: flex-grow 0.5s ease, letter-spacing 0.5s ease, transform 0.5s ease;
}

.btn1 {
    background-color: #0138B4;
    color: white;
    text-decoration: none;
}

.btn2 {
    background-color: white;
    color: #0138B4;
    text-decoration: none;
}

.btn1:hover, .btn2:hover {
    flex-grow: 0.1;
    letter-spacing: 4px;
}

@media (max-width: 592px) and (min-width: 481px) {
    .Accueil .contenu {
        max-width: 85%;        
    }

    .Accueil .contenu h2 {
        max-width: 100%;       
        font-size: 1.9rem;     
    }
}

@media (max-width: 480px) {
    
    .Accueil .contenu {
        max-width: 95%;
    }


    .Accueil .contenu h2 {
        font-size: 1.1rem;  
        line-height: 1.3;
        max-width: 100%;
    }

    
    .btn1, .btn2 {
        font-size: 0.7rem;
        padding: 5px 10px;
    }
}


/*SECTION A-PROPOS*/


.A-propos {
    margin-top: 10px;
    text-align: center;
    display: flex; 
    flex-direction: column;
    align-items: center; 
}

.titre-texte {
    margin-bottom: 40px;
}

.A-propos-texte {
    margin-top: 10px;
    max-width: 1124px;
    margin: auto;
}


@media (max-width: 325px) {
    .A-propos .titre-texte {
        font-size: 1.4em;
        margin-bottom: 20px;
        width: 100%;
        height: auto;
    }

    .A-propos-texte {
        width: 100%;
        box-sizing: border-box; 
        margin: 10px 0; 
        padding: 0 10px;
        height: auto;
    }

    .A-propos {
        padding: 0; 
    }
}


/*SECTION PORTFOLIO*/



.Portfolio{
    margin-top: -100px;
}

.Portfolio .contenu {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 40px;
    margin-left: auto;
    margin-right: auto;
    max-width: 100%;
}

.Portfolio .contenu .box{
    width: 350px;
    margin: 20px;
    box-shadow: 20px 15px 35px rgba(0,0,0,0.8);
    position: relative;
    overflow: hidden;
    filter: grayscale(100%) brightness(0.8);
    transition: transform 0.3s ease-in-out, filter 0.3s ease-in-out;
}

.Portfolio .contenu .box:hover {
    transform: scale(1.05);
    filter: grayscale(0) brightness(1);
}

.Portfolio .contenu .box .slides img{
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    height: 350px;
    object-fit: cover;
}

.slider {
    position: relative;
    max-width: none;
    overflow: hidden;
    transition: width 0.5s ease-in-out, height 0.5s ease-in-out;
}

.slides {
    display: flex;
    transition: transform 0.5s ease-in-out;
    width: auto;
}

.slides img {
    display: block;
    max-width: 100%;
    height: auto;
    object-fit: contain;
    cursor: pointer;
}

.slider-nav button,
#fullscreen-prev,
#fullscreen-next {
    background-color: rgba(255, 255, 255, 0.5);
    color: black;
    border: none;
    padding: 6px 10px;
    cursor: pointer;
    border-radius: 4px;
    font-size: 18px;
    box-shadow: 0px 2px 6px rgba(0, 0, 0, 0.2);
}

#fullscreen-prev {
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
}

#fullscreen-next {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
}

.fullscreen-inner {
    position: relative;
    max-width: 90%;
    max-height: 90%;
}

.fullscreen-inner img {
    display: block;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    cursor: pointer;
}


.fullscreen-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
}

.fullscreen-container {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.fullscreen-close {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 26px;
    color: #fff;
    background: rgba(0,0,0,0.5);
    border: none;
    cursor: pointer;
    z-index: 1100;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease, transform 0.15s ease;
}

.fullscreen-close:hover {
    background: rgba(0,0,0,0.8);
    transform: scale(1.05);
}

.fullscreen-close i {
    pointer-events: none;
}


.Portfolio .contenu .box::before {
    pointer-events: none;
    content: "";
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.5);
    opacity: 0.5;
    transition: opacity 0.3s ease-in-out;
    z-index: 1;
}

.Portfolio .contenu .box:hover::before {
    opacity: 0;
}

.portfolio-title {
    position: absolute;    
    bottom: 20%;        
    left: 50%;                     
    transform: translate(-50%);
    z-index: 2;
    width: 90%;                   
    background: rgba(0, 0, 0, 0.6);
    color: #fff;
    padding: 10px 15px;
    text-align: center;
    opacity: 0;                  
    transition: opacity 0.3s ease-in-out;
    pointer-events: none;         
}

.portfolio-title h3 {
    margin: 0;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    text-transform: uppercase;
}


.Portfolio .contenu .box:hover .portfolio-title {
    opacity: 1;
}

@media (max-width: 768px) {
    .Portfolio .contenu .box {
        filter: grayscale(0) brightness(1);
        transform: none;
    }

    .Portfolio .contenu .box:hover {
        transform: none;
        filter: grayscale(0) brightness(1);
    }

    .Portfolio .contenu .box::before {
        opacity: 0;
    }

    .portfolio-title {
        opacity: 1;
    }
}


@media (max-width: 480px) {
    .Portfolio .contenu .box {
        width: min(90vw, 300px);
        height: auto; 
    }

    .Portfolio .contenu .box .slides img {
        aspect-ratio: 1 / 1; 
        width: 100%;
        height: auto;
        object-fit: cover; 
    }

    .portfolio-title {
        display: none;     
    }

    .Portfolio .contenu .box::before {
        display: none;         
    }
}


@media (max-width: 425px) {
    .Portfolio .contenu .box {
        width: 160px; 
        margin: 10px; 
    }

    .Portfolio .contenu .box .slides img {
        width: 100%;
        height: auto;
        aspect-ratio: 1 / 1;
        object-fit: cover;
    }

    .Portfolio .contenu .box {
        flex-shrink: 0;
        flex-grow: 0;
    }
}


/*SECTION SERVICES*/



.Services{
    margin-top: -100px;
}

.Services .contenu{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin: 20px auto;
    max-width: 1214px;
}

.Services .contenu .box {
    position: relative;
    overflow: hidden;
    flex: 1 1 calc(45% - 40px);
    height: calc(45vmin);
    margin: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: #f4f4f4;
    box-sizing: border-box;
    padding: 20px;
    text-align: center;
    transition: transform 0.3s ease-in-out, filter 0.3s ease-in-out;
    filter: grayscale(100%) brightness(0.8);
}

.Services .contenu .box img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: brightness(0.7);
}

.Services .contenu .box:hover {
    transform: scale(1.05 );
    filter: grayscale(0)brightness(1);
}

.Services .contenu .box::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1;
    opacity: 0.5;
    filter: grayscale(100%);
    transition: opacity 0.3s ease-in-out;
}

.Services .contenu .box:hover::before {
     opacity: 0;
}

.Services .contenu .box .text,
.Services .contenu .box .titres-des-services {
    position: relative;
    z-index: 2;
    color: white; 
    text-align: center;
    padding: 10px;
    border-radius: 5px;
}

.titres-des-services h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5em;
    color: #FFF;
    text-transform: uppercase;
    margin-bottom: 5px;
    text-align: center;
}

.text p {
    font-family: 'Open Sans', sans-serif;
    font-size: 0.9em;
    line-height: 1.5;
    text-align: center;
    color: white;
}


@media (max-width: 768px) {
    .Services .contenu {
        display: flex;
        flex-direction: column;
        justify-content: center; 
        align-items: center; 
        gap: 10px; 
    }

    .Services .contenu .box {
        width: 90%;
        max-width: 500px;
        margin: 10px auto;
        transform: none;
        filter: grayscale(0) brightness(1);
    }

    .Services .contenu .box:hover {
        transform: none;
        filter: grayscale(0) brightness(1);
    }

    .Services .contenu .box::before {
        opacity: 0;
    }
}

@media (max-width: 591px) {
    .Services .contenu {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .Services .contenu .box {
        flex: none !important; 
        width: 90%;
        max-width: 400px;
        margin: 10px auto;
        height: auto;
        min-height: 200px;
        padding: 30px 20px;
    }
}

@media (min-width: 591px) and (max-width: 1024px) {
    .Services .contenu .box {
        height: calc(48vw);
    }
}

@media (max-width: 480px) {
    .Services .contenu .box {
        width: 95%; 
        margin: 10px auto;
    }
}

@media (max-width: 445px) {
    .Services {
        width: 100%;
        overflow-x: hidden;
    }

    .Services .contenu {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        width: 100%;
        overflow-x: hidden;
    }

    .Services .contenu .box {
        width: 95%;
        min-height: 350px; 
        height: auto;
        margin: 10px auto; 
        padding: 30px 20px;
        box-sizing: border-box;
        position: relative;
    }

    .Services .contenu .box .text {
        width: 100%;
        text-align: center;
    }

    .Services .contenu .box img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center; 
    }
}

@media (max-width: 425px) {
    .Services .contenu .box {
        width: auto;  
        height: auto;
        flex: none !important;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
        padding: 0 !important; 
        overflow: hidden; 
        background-color: transparent !important; 
        margin: 0 auto !important; 
        box-sizing: border-box;
    }

    .Services .contenu .box .titres-des-services h3 {
        font-size: 0.9rem !important; 
        line-height: 1.2;
        margin-bottom: 3px;
    }

    .Services .contenu .box .text p {
        font-size: 0.75rem !important; 
        line-height: 1.2;
        padding: 0 !important; 
        max-width: 90%; 
    }

    .Services .contenu .box img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
        margin: 0 !important;
        padding: 0 !important;
    }
}

@media (max-width: 404px) {
    .Services .titre {
        text-align: center; 
        width: fit-content;
    }
}

@media (max-width: 340px) {
    .Services {
        padding: 0 10px;
    }
    .Services .contenu {
        max-width: 100%;
        margin: 0 auto;
        display: flex;
        flex-wrap: wrap;
    }
    .Services .contenu .box {
        flex-basis: calc(50% - 20px);
        max-width: calc(50% - 20px);
        min-width: 124.5px; 
        min-height: 350px; 
        margin: 10px;
        box-sizing: border-box;
    }
}

/*SECTION CONTACT*/

.Contact {
    width: 100%;
    padding: 80px 20px;
    background:#fff;
    color: #fff;
}

.Contact .titre-texte span {
    color: #0138B4;
    font-size: 2em;
    text-align: center;
}

.contact-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: stretch;
    max-width: 1200px;
    margin: auto;
    border-top: 4px solid #0138B4;
    border-bottom: 4px solid #0138B4;
    padding: 40px 0;
}

@media (max-width: 605px) {
    .contact-wrapper {
      flex-direction: column; 
      align-items: stretch;
    }
  
    .contact-text,
    .contact-form-container {
      width: 100%; 
    }
  }
  

.contact-text {
    flex: 1;
    min-width: 0;
    font-family: 'Open Sans',sans-serif;
}


.contact-text h3 {
    color: #0138B4;
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.contact-text p {
    color: #BFD0E8;
    line-height: 1.6;
    margin-bottom: 20px;
}

.contact-text ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.contact-text i {
    color: #0138B4;
}

.contact-text li {
    margin-bottom: 8px;
    display: flex;
    gap: 8px;
    align-items: center;
}

.contact-text a {
    color: #BFD0E8;
    text-decoration: none;
    font-weight: 600;
}

.contact-form-container {
    flex: 1;
    min-width: 0;
    background: #fff;
    border: 2px solid #0138B4;
    border-radius: 16px;
    box-shadow: 0 20px 55px rgba(0, 0, 0, 0.12);
    padding: 24px;
  }
  
  .contact-form-container select {
    width: 100%;
    padding: 12px 14px;
    border-radius: 10px;
    border: 1px solid #BFD0E8;
    background: #fff;
    color: #333;
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    outline: none;
    transition: border-color .2s, box-shadow .2s;
  }
  
  .contact-form-container select:focus {
    border-color: #0138B4;
    box-shadow: 0 0 0 3px rgba(1,56,180,0.15);
  }

  
  .contact-form-container .field { 
    margin-bottom: 14px; 
   }

  .contact-form-container label {
    display: block; 
    font-weight: 600; 
    margin-bottom: 6px; 
    color: #0138B4;
  }
  .contact-form-container input,
  .contact-form-container textarea {
    width: 100%; 
    padding: 12px 14px; 
    border-radius: 10px;
    border: 1px solid #BFD0E8; 
    background: #fff; 
    color: #333;
    font-family: 'Open Sans', sans-serif; 
    font-size: 16px;
    outline: none; 
    transition: border-color .2s, box-shadow .2s;
  }
  .contact-form-container input:focus,
  .contact-form-container textarea:focus {
    border-color: #0138B4; 
    box-shadow: 0 0 0 3px rgba(1,56,180,0.15);
  }
  .contact-form-container .checkbox label {
    display: flex; 
    gap: 8px; 
    align-items: flex-start;
    font-weight: 500; 
    color: #333;
    flex-wrap: wrap;
    max-width: 100%;
    overflow-wrap: anywhere;
  }

  .contact-form-container .checkbox input[type="checkbox"] {
    flex: 0 0 auto;      
    margin-top: 2px;     
}

  .contact-form-container .hidden { 
    display: none; 

}

  .btn-primary {
    background: #0138B4; 
    color: #fff; 
    border: 0; 
    padding: 12px 18px;
    border-radius: 10px; 
    font-weight: 700; 
    cursor: pointer;
  }
  .btn-primary:hover { filter: brightness(1.05); }

  .Contact .partners {
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin: 0 auto;
    flex-wrap: wrap;
    width: 100%;
    flex-direction: row;
  }

  .Contact .partners img {
    width: 100%;
    max-width: 250px;
    height: auto;
  }

  .Contact .partners .Logo-Sto {
    max-width: 330px;
    margin-top: 120px;
    
}

.Contact .partners .Logo-Unikalo {
    text-align: center;
    margin-bottom: 60px;
    margin-top: 75px;
}

.Contact .partners .Logo-Triflex {
    text-align: center;
    margin-top: 50px;
    margin-bottom: 90px;
}

.logo-container {
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin: 0 auto;
    flex-wrap: wrap;
    width: 100%;
    flex-direction: row;
    
}

.logo-container img {
    width: 100%;
    max-width: 250px;
    height: auto;
}

@media (min-width: 660px) {
    .Contact .partners {
      flex-direction: column;
      align-items: center;
      gap: 20px;
    }
  }

@media (max-width:500px){ .contact-form-container { padding: 16px; } }

@media (max-width: 300px) {

    .contact-text h3 {
      font-size: 1.4rem;    
      line-height: 1.3;
    }
  
    .contact-text p {
      font-size: 0.9rem;    
      line-height: 1.4;
    }
  
    .contact-text li {
      font-size: 0.85rem;   
      gap: 4px;              
    }
  
    .contact-text i {
      font-size: 0.85rem;    
    }
  
    .contact-text a {
      font-size: inherit;
      overflow-wrap: anywhere; 
    }
  }

  @media (max-width: 300px) {
    .contact-form-container .checkbox label {
        font-size: 0.8rem;
        line-height: 1.3;
    }
  }
  

@media (max-width: 240px) {

    .contact-text h3 {
      font-size: 1.2rem;
    }
  
    .contact-text p {
      font-size: 0.8rem;
    }
  
    .contact-text li {
      font-size: 0.75rem;
    }
  
    .contact-text i {
      font-size: 0.75rem;
    }
  }
  

/*BAS DE PAGE */

.Bas-de-page-1 {
    padding: 20px 40px;
    border-top: 2px solid rgba(0, 0, 0, 0.1);
    background: #0138B4;
    text-align: center;
}

.Bas-de-page-1 a {
    color: #FFF;
    text-decoration: none;
    font-weight: 600;
    font-style: italic;
}

.Bas-de-page-1 p:nth-child(1) {
    color: #FFF;
}

.Bas-de-page-2 {
    display: flex;
    justify-content: center; 
    align-items: center; 
    width: 100%;
    gap: 5px; 
}

.Bas-de-page-2 i {
    margin: 0; 
    padding: 0; 
}

.Bas-de-page-2 a {
    color: #FFF;
    text-decoration: none;
    font-weight: 600;
    font-style: italic;
    margin: 0; 
    white-space: nowrap; 
}

.pdc-page {
    width: 100%; 
    margin: 0 auto;
    padding: 0 5%; 
    box-sizing: border-box;
}

.pdc-titre {
    font-size: 1.8em; 
    text-align: center;
    color: #0138B4;
    margin-bottom: 20px;
}

footer.Bas-de-page-1 {
    width: 100%;
}

.pdc-texte {
    text-align: left;
    margin: 0 auto;
    max-width: 90%;
    font-size: 1em; 
    line-height: 1.5;
    overflow-wrap: anywhere;
}

.pdc-page div {
    max-width: 100%;
    padding: 10px;
    box-sizing: border-box;
}

.pdc-page a {
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.titre{
    display: flex;
    width: 100%;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.titre-texte{
    color: #BFD0E8;
    font-size: 2em;
    font-weight: 300;
    text-transform: capitalize;
}

.titre-texte span{
     color: #0138B4;
     font-size: 1.5em;
     font-weight: 700;
}

section{
    padding: 100px;
}

@media screen and (max-width: 300px) {
    .pdc-titre {
        font-size: 1.5em;
    }
    
    .pdc-texte {
        font-size: 0.9em;
    }
}

@media screen and (max-width: 230px) {
    .pdc-titre {
        font-size: 1.3em;
    }
    
    .pdc-texte {
        font-size: 0.8em;
        padding: 0 2%;
    }
}

@media (max-width: 991px){

    
    .Services{
        margin-top: 0px;
    }
        
    .Portfolio{
        margin-top: 0px;
    }

}











