* {
    box-sizing: border-box;
}

body {
    margin: 0;
    line-height: 1.4;
    letter-spacing: 0.0125em;
    font-family: 'Roboto', sans-serif;
}

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

h1{
    -webkit-font-smoothing: antialiased;
    box-sizing: border-box;
    direction: ltr;
    font-style: normal;
    text-rendering: optimizeLegibility;
    font-family: 'Oswald', Arial, Helvetica, sans-serif;
    font-size: 2em;
    line-height: 1.2222em;
    font-weight: bold;
    color: #1a1a1a;
    padding: 1.5625em 0 0 0;
    margin: 0 0 0.625em 0;
    clear: both;
    padding-bottom: 1.25em;
    padding-top: 0.3125em;
}

h2{
    -webkit-font-smoothing: antialiased;
    box-sizing: border-box;
    direction: ltr;
    font-style: normal;
    text-rendering: optimizeLegibility;
    font-family: 'Oswald',Arial,Helvetica,sans-serif;
    font-size: 1.6em;
    line-height: 1.2222em;
    font-weight: bold;
    color: #1a1a1a;
    padding: 1.5625em 0 0 0;
    margin: 0 0 0.625em 0;
    clear: both;
    padding-top: 0;
}

h3{
    -webkit-font-smoothing: antialiased;
    box-sizing: border-box;
    direction: ltr;
    font-style: normal;
    text-rendering: optimizeLegibility;
    font-family: 'Oswald',Arial,Helvetica,sans-serif;
    font-size: 1.2em;
    line-height: 1.2222em;
    font-weight: bold;
    color: #1a1a1a;
    padding: 1.5625em 0 0 0;
    margin: 0 0 0.625em 0;
    clear: both;
    padding-top: 0;
}

/* 
============================================================================================
Partie Header
============================================================================================
*/

.navbar a {
    font-size: 1.25em;
    padding: 0 0.9375rem 0.3125rem;
    color: #fff;
    text-decoration:none;
    text-align: center;
    background: linear-gradient(to bottom, #252525, #0010);
    border-radius: 0.625rem;
}

.navbar a.active {
    border-radius: 0.625rem;
    background: linear-gradient(to bottom, #01498c, #041a2e);
}

.navbar a:hover {
    font-size: 1.25em;
    padding: 0 0.9375rem 0.3125rem;
    color: #fff;
    text-decoration:none;
    text-align: center;
    background: linear-gradient(to bottom, #01498c, #041a2e);
    border-radius: 0.625rem;
}

.header {
    padding: 0.625rem;
    color: #fff;
    font-size: 0.875em;
    z-index: 2;
    text-align: center;
    background: linear-gradient(to bottom, #000, #0010), url("https://rmb-informatique.fr/img/rmb-baniere.jpg");
    background-repeat: no-repeat;
    background-position:initial;
    background-size: cover;
    background-attachment: local, fixed;
}

.header img {
    width: 22%;
    height: auto;
}

/*
.header-title {
    margin-top: 3.75rem;
    text-align: center;
    font-size: 3.75rem;
    text-transform: uppercase;
}
*/    

.main {
    position:relative;
    padding: 2.5rem;
    font-size: 1em;
    text-align: center;
}

.main-contact {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 3rem 1rem;
    background: linear-gradient(to bottom, #4188cd, #00427e);
    color: white;
}

/* 
============================================================================================
Partie à propos de nous
============================================================================================
*/

.container-nous {
    width: 90%;
    max-width: 56.25rem;
    margin: auto;
    padding: 0.5rem;
}

/* 
============================================================================================
Partie Icone support | Developpement Web | Conseil
============================================================================================
*/

/* Grille pour aligner les cartes */
.index-presta-main {
    background: url("https://rmb-informatique.fr/img/background-index.jpg");
    background-repeat: no-repeat;
    background-position: initial;
    background-size: cover;
    background-attachment: local, fixed;
    height: 34.375rem;
}

.galerry-container-index {
    display: grid;
    grid-template-columns: repeat(2, 25%);
    grid-template-rows: repeat(2, auto);
    justify-content: end;
    gap: 6rem;
    padding: 10rem 10rem;
}

.gallery-item-index {
    padding-top: 0.625rem;
    background-color: white;
    position: relative;
    overflow: hidden;
    border-radius: 0.625rem;
    box-shadow: 0.25rem 0.25rem 0.5rem 0.5rem rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    text-align: center;
    animation: slidedown-gallery-item-up 1s;
}

.gallery-item-index:hover {
    transform: scale(1.05);
}

.text-icone {
    font-weight: 700;
}

/* 
============================================================================================
Partie formulaire | Contact
============================================================================================
*/

.form {
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
    max-width: 21.875rem;
    background-color: #fff;
    padding: 1.25rem;
    border-radius: 0.625rem;
    position: relative;
  }
  
  .message {
    color: rgba(88, 87, 87, 0.822);
    font-size: 0.875em;
  }
  
  .flex {
    display: flex;
    width: 100%;
    gap: 0.375rem;
  }
  
  .form label {
    position: relative;
  }
  
  .form label .input {
    width: 100%;
    padding: 0.625rem 0.625rem 1.25rem 0.625rem;
    outline: 0;
    border: 0.0625rem solid rgba(105, 105, 105, 0.397);
    border-radius: 0.3125rem;
  }
  
  .form label .input + span {
    position: absolute;
    left: 0.625rem;
    top: 0.9375rem;
    color: grey;
    font-size: 0.9em;
    cursor: text;
    transition: 0.3s ease;
  }
  
  .form label .input:placeholder-shown + span {
    top: 0.9375rem;
    font-size: 0.9em;
  }
  
  .form label .input:focus + span,.form label .input:valid + span {
    top: 1.875rem;
    font-size: 0.7em;
    font-weight: 600;
  }
  
  .form label .input:valid + span {
    color: green;
  }
  
  .input01 {
    width: 100%;
    padding: 0.625rem 0.625rem 1.25rem 0.625rem;
    outline: 0;
    border: 0.0625rem solid rgba(105, 105, 105, 0.397);
    border-radius: 0.3125rem;
  }
  
  .form label .input01 + span {
    position: absolute;
    left: 0.625rem;
    top: 3.125rem;
    color: grey;
    font-size: 0.9em;
    cursor: text;
    transition: 0.3s ease;
  }
  
  .form label .input01:placeholder-shown + span {
    top: 2.5rem;
    font-size: 0.9em;
  }
  
  .form label .input01:focus + span,.form label .input01:valid + span {
    top: 3.125rem;
    font-size: 0.7em;
    font-weight: 600;
  }
  
  .form label .input01:valid + span {
    color: green;
  }
  
  .fancy {
    background-color: transparent;
    border: 0.125rem solid #cacaca;
    border-radius: 0rem;
    box-sizing: border-box;
    color: #fff;
    cursor: pointer;
    display: inline-block;
    font-weight: 390;
    letter-spacing: 0.125rem;
    margin: 0;
    outline: none;
    overflow: visible;
    padding: 0.5rem 1.875rem;
    position: relative;
    text-align: center;
    text-decoration: none;
    text-transform: none;
    transition: all 0.3s ease-in-out;
    user-select: none;
    font-size: 0.812em;
  }
  
  .fancy::before {
    content: " ";
    width: 1.7rem;
    height: 0.125rem;
    background: #cacaca;
    top: 50%;
    left: 1.5em;
    position: absolute;
    transform: translateY(-50%);
    transform: translateX(230%);
    transform-origin: center;
    transition: background 0.3s linear, width 0.3s linear;
  }
  
  .fancy .text {
    font-size: 1.125em;
    line-height: 1.33333em;
    padding-left: 2em;
    display: block;
    text-align: left;
    transition: all 0.3s ease-in-out;
    text-transform: lowercase;
    text-decoration: none;
    color: #818181;
    transform: translateX(30%);
  }
  
  .fancy .top-key {
    height: 0.125rem;
    width: 1.5625rem;
    top: -0.125rem;
    left: 0.625rem;
    position: absolute;
    background: white;
    transition: width 0.5s ease-out, left 0.3s ease-out;
  }
  
  .fancy .bottom-key-1 {
    height: 0.125rem;
    width: 1.5625rem;
    right: 1.875rem;
    bottom: -0.125rem;
    position: absolute;
    background: white;
    transition: width 0.5s ease-out, right 0.3s ease-out;
  }
  
  .fancy .bottom-key-2 {
    height: 0.125rem;
    width: 0.625rem;
    right: 0.625rem;
    bottom: -0.125rem;
    position: absolute;
    background: white;
    transition: width 0.5s ease-out, right 0.3s ease-out;
  }
  
  .fancy:hover {
    color: white;
    background: #cacaca;
  }
  
  .fancy:hover::before {
    width: 1.5rem;
    background: white;
  }
  
  .fancy:hover .text {
    color: white;
    padding-left: 1.5em;
  }
  
  .fancy:hover .top-key {
    left: -0.125rem;
    width: 0rem;
  }
  
  .fancy:hover .bottom-key-1,
   .fancy:hover .bottom-key-2 {
    right: 0;
    width: 0;
  }
  
  .contact-section {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 800px;
    width: 100%;
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    color: black;
}

/* Partie gauche : infos contact */
.contact-info {
    text-align: center;
    font-size: 1.2rem;
    font-weight: bold;
    text-decoration: none;
}

.contact-info h2 {
    margin-bottom: 0.625rem;
}

/* Partie droite : formulaire */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-form h2 {
    margin-bottom: 0.9375rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: bold;
    margin-bottom: 5px;
}

.form-group input,
.form-group textarea {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1rem;
    transition: all 0.3s ease-in-out;
}



button {
    padding: 0.625rem 1.25rem;
    background-color: #3498db;
    color: white;
    border: none;
    border-radius: 0.3125rem;
    font-size: 1em;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

button:hover {
    background-color: #3498db;
}

#formMessage {
    height: 1.875rem; /* Réserve de l’espace pour le message */
    font-size: 1rem;
    font-weight: bold;
    text-align: center;
    margin-bottom: 0.625rem;
}

/*
============================================================================================
Partie Horaire d'ouverture
============================================================================================
*/

.schedule-design {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.schedule-container {
    border-radius: 0.5rem;
    padding: 1.25rem;
    width: 30%;
    text-align: center;
}

.schedule-container h1 {
    font-size: 1.8em;
    margin-bottom: 0.625rem;
    color: black;
}

.schedule {
    list-style: none;
    padding: 0;
    margin: 0;
    width: 100%;
}

.schedule li {
    display: flex;
    justify-content: space-between;
    padding: 0.625rem 0.9375rem;
    border-bottom: 0.0625rem solid #ddd;
    font-size: 1em;
    color: #555;
}

.schedule li:last-child {
    border-bottom: none;
}

.day {
    font-weight: bold;
    color: #222;
    text-align: left;
    width: 100%;
}

.hours {
    color: #4caf50;
    width: 100%;
    text-align: right;
}

.closed {
    color: #e53935;
    width: 100%;
    text-align: right;
}

/*
============================================================================================
Partie Dépannage | Assistance informatique
============================================================================================
*/

.container-assist {
	margin: auto;
	padding: 0.3125rem 0 0.3125rem;
}

.gallery-container-assist {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr 1fr;
	gap: 5.625rem;
	padding-bottom: 3.125rem;
}

.gallery-item-assist {
	position: relative;
	overflow: hidden;
	padding: 2%;
	background-color: #0c2144;
	color: white;
	border-radius: 0.625rem;
	box-shadow: 0.125rem 0.125rem 0.25rem 0.25rem rgba(0, 0, 0, 0.1);
	transition: transform 0.3s ease;
	text-align: center;
	/*animation: slidedown-gallery-item-up 1.5s;*/
}

.gallery-item-assist h3 {
	color: white;
}

.gallery-item-assist img{
	float: top;
	border-radius: 0.625rem;
}

/*
============================================================================================
Partie Dépannage | Installation d'équipements
============================================================================================
*/

.container-install {
	margin: auto;
	padding: 0.3125rem 0 0.3125rem;
}

.gallery-container-install {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 5.625rem;
	padding: 0 15% 3.125rem 15%;
}

.gallery-item-install {
	position: relative;
	overflow: hidden;
	padding: 2%;
	background-color: #0c2144;
	color: white;
	border-radius: 0.625rem;
	box-shadow: 0.125rem 0.125rem 0.25rem 0.25rem rgba(0, 0, 0, 0.1);
	transition: transform 0.3s ease;
	text-align: center;
	/*animation: slidedown-gallery-item-up 1.5s;*/
}

.gallery-item-install h3 {
	color: white;
}

.gallery-item-install img {
	float: top;
	border-radius: 0.625rem;
}

/*
============================================================================================
Partie Dépannage | Formation
============================================================================================
*/

.container-formation {
	margin: auto;
	padding: 0.3125rem 0 0.3125rem;
}

.gallery-container-formation {
	display: grid;
	grid-template-columns:1fr;
	gap: 5.625rem;
	padding: 0rem 30% 3.125rem 30%;
}

.gallery-item-formation {
	position: relative;
	overflow: hidden;
	padding: 2%;
	background-color: #0c2144;
	color: white;
	border-radius: 0.625rem;
	box-shadow: 0.125rem 0.125rem 0.25rem 0.25rem rgba(0, 0, 0, 0.1);
	transition: transform 0.3s ease;
	text-align: center;
	/*animation: slidedown-gallery-item-up 1.5s;*/
}

.gallery-item-formation h3 {
	color: white;
}

.gallery-item-formation img {
	float: top;
	border-radius: 0.625rem;
}


/*
============================================================================================
Partie Dépannage | RECUP ET SAUVEGARDE DE DONNEES
============================================================================================
*/

.container-install {
	margin: auto;
	padding: 0.3125rem 0 0.3125rem;
}

.gallery-container-save {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 5.625rem;
	padding: 0 15% 3.125rem 15%;
}

.gallery-item-save {
	position: relative;
	overflow: hidden;
	padding: 2%;
	background-color: #0c2144;
	color: white;
	border-radius: 0.625rem;
	box-shadow: 0.125rem 0.125rem 0.25rem 0.25rem rgba(0, 0, 0, 0.1);
	transition: transform 0.3s ease;
	text-align: center;
	/*animation: slidedown-gallery-item-up 1.5s;*/
}

.gallery-item-save h3 {
	color: white;
}


.gallery-item-save img {
	float: top;
	border-radius: 0.625rem;
}

/*
============================================================================================
Tarifs
============================================================================================
*/

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f3f4f6;
    color: #333;
}

.container-tarif{
    max-width: 75rem;
    margin: 0 auto;
    padding: 1.25rem;
}

.grid-tarif {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
}

.card {
    background: linear-gradient(135deg, #ffffff, #f7fafc);
    border-radius: 0.9375rem;
    box-shadow: 0 0.5rem 0.9375rem rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
}

.card:hover {
    transform: translateY(-0.3125rem);
    box-shadow: 0 0.75rem 1.25rem rgba(0, 0, 0, 0.15);
}

.card-header {
    color: #fff;
    padding-top: 0.625rem;
    text-align: center;
}

.card-header h2 {
    font-size: 1.5em;
    margin-bottom: 0.625rem;
    color: #34495e;
}

.card-body {
    padding: 0.3125rem 0 0.625rem 0;
    text-align: center;
}

.card-body p {
    font-size: 1em;
    color: #191d24;
    margin: 0.9375rem 0;
}

.card p {
    font-size: 1em;
    color: #2d3441;
    margin-bottom: 1.25rem;
}

.card .price {
    font-size: 1.2em;
    font-weight: bold;
    color: #38a169;
}

.extra-info {
    display: none;
    margin-top: 0.9375rem;
    color: #4a5568;
    text-align: left;
    padding: 0.9375rem;
    border-top: 0.0625rem solid #e2e8f0;
}

.card.expanded .extra-info {
    display: block;
}

.button {
    display: inline-block;
    margin-top: 0.3125rem;
    padding: 0.625rem 1.25rem;
    background-color: #3498db;
    color: #fff;
    text-decoration: none;
    border-radius: 0.3125rem;
    transition: background-color 0.3s;
    cursor: pointer;
}

.button:hover {
    background-color: #3b7cc4;
}

/* Blur background effect */
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(0.9375rem);
    display: none;
    z-index: 1000;
}

.overlay.active {
    display: block;
}

.card.expanded {
    position: relative;
    z-index: 1100;
}


.banner {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

/* Petite bannière par-dessus */
.small-banner {
    width: 100%;
    height: 6.25rem;
    background-color: rgba(0, 0, 0, 0.8);
    position: absolute;
    top: 0;
    color: white;
    text-align: center;
}


/*
============================================================================================
Partie Developpement
============================================================================================
*/


.tittle-creation-site {
    padding: 4rem 0 2rem;
    text-align: center;
  }
  
  /* Grille pour aligner les cartes */
  .creation-site-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(6.25rem, 1fr));
    gap: 6rem;
    background: linear-gradient(to bottom, #000, rgba(255, 255, 255, 0)), url("https://rmb-informatique.fr/img/dev-background.jpg");
      background-repeat: no-repeat;
      background-position:initial;
      background-size: cover;
      background-attachment: local, fixed;
    padding: 4rem;
  }
  
  /* Cartes */
  .card-site {
    background-color: #0c2144; /* Bleu foncé */
    color: white;
    border-radius: 0.625rem;
    padding: 1.5rem;
    text-align: left;
    box-shadow: 0 0.25rem 0.375rem rgba(0, 0, 0, 0.1);
  }
  
  .card-site h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: #fff;
    text-align: center;
  }
  
  .card-site p {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
  }
  
  .tittle-presta-creation {
    padding-top: 8rem;
    text-align: center;
  }

  .presta-creation-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(37.5rem, 1fr));
    gap: 6rem;
    padding: 4rem 2rem;
  }
  
  /* Cartes */
  .card-presta {
    background-color: #0c2144; /* Bleu foncé */
    color: white;
    border-radius: 0.625rem;
    padding: 1.5rem;
    text-align: left;
    box-shadow: 0 0.25rem 0.375rem rgba(0, 0, 0, 0.1);
  }

  .card-presta h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: #fff;
    text-align: center;
  }
  
  .card-presta p {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
  }

  /* checkbox de nos prestation*/
  .checkbox {
    width: 1.25rem;
    height: 1.25rem;
    background-color: #28a745;
    border-radius: 0.3125rem;
    display:inline-flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1rem;
    margin-right: 0.625rem;
    list-style-type: none;
}

.projets {
  padding-top: 8rem;
  text-align: center;
}

.projets-grid {
  display: grid;
    grid-template-columns: repeat(auto-fit, minmax(37.5rem, 1fr));
    gap: 6rem;
    padding: 4rem 2rem;
}

.projet-card {
  position: relative;
  height: 400px;
  background-size: cover;
  background-position: top center;
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  align-items: flex-end;
  text-decoration: none;
}

.projet-card:hover {
  transform: scale(1.03);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
}

.projet-card .overlay {
  background: rgba(0, 0, 0, 0.6);
  width: 100%;
  padding: 1rem;
  text-align: center;
}

.projet-card h4 {
  color: #fff;
  font-size: 1.2rem;
  text-transform: uppercase;
}


/*
============================================================================================
Partie footer
============================================================================================
*/

.footer {
    background: rgb(158, 158, 158);
    padding: 0.625rem 1.25rem;
    text-align: center;
}

.footer a {
    text-decoration: none;
    color: white;
}

.footer a:hover {
    text-decoration: underline;
}

.container-nous, .container, .container-tarif {
    width: 90vw;
    max-width: 62.5rem;
}

.footer-links {
    margin-bottom: 10px;
}
.footer-links a {
    color: white;
    margin: 0 15px;
    text-decoration: none;
}
.footer-links a:hover {
    text-decoration: underline;
}

@keyframes slidedown-gallery-item-up{
    from {
        transform: translateY(12.5rem);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/*
============================================================================================
MENTION LEGALES / CGV
============================================================================================
*/

.mentions {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    padding: 20px;
    background-color: #f9f9f9;
    text-align: center;
}

.mentions div {
            padding: 20px;
            margin: 20px auto;
            border-radius: 5px;
            max-width: 800px;
            text-align: left;
}

/*
============================================================================================
Responsive
============================================================================================
*/

@media screen and (min-width : 951px) and (max-width: 1023px) {
    .header img {
        width: 70%;
    }
    
    .nav-links a {
        display: block;
        padding: 0.625rem;
    }
    
    .services {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .service-item {
        width: 80%;
        margin-bottom: 1.25rem;
    }
    
    .horaires ul {
        padding: 0;
        text-align: center;
    }
}

@media screen and (max-width: 950px) {
    /*BODY & ALL*/
    *{
        box-sizing: border-box;
    }
    
    body {
        margin: 0;
        line-height: 1.4;
        letter-spacing: 0.0125em;
        font-family: 'Roboto', sans-serif;
    }
    
    img {
        max-width: 100%;
        height: auto;
    }

    .main {
        padding: 1.25rem;
        font-size: 0.875rem;
    }

    h1{
        -webkit-font-smoothing: antialiased;
        box-sizing: border-box;
        direction: ltr;
        font-style: normal;
        text-rendering: optimizeLegibility;
        font-family: 'Oswald', Arial, Helvetica, sans-serif;
        font-size: 2em;
        line-height: 1.2222em;
        font-weight: bold;
        color: #1a1a1a;
        padding: 1.5625em 0 0 0;
        margin: 0 0 0.625em 0;
        clear: both;
        padding-bottom: 0.5rem;
        padding-top: 0.3125em;
    }
    
    h2{
        -webkit-font-smoothing: antialiased;
        box-sizing: border-box;
        direction: ltr;
        font-style: normal;
        text-rendering: optimizeLegibility;
        font-family: 'Oswald',Arial,Helvetica,sans-serif;
        font-size: 1.6em;
        line-height: 1.2222em;
        font-weight: bold;
        color: #1a1a1a;
        padding: 1.5625em 0 0 0;
        margin: 0 0 0.625em 0;
        clear: both;
        padding-top: 0;
    }
    
    h3{
        -webkit-font-smoothing: antialiased;
        box-sizing: border-box;
        direction: ltr;
        font-style: normal;
        text-rendering: optimizeLegibility;
        font-family: 'Oswald',Arial,Helvetica,sans-serif;
        font-size: 1.2em;
        line-height: 1.2222em;
        font-weight: bold;
        color: #1a1a1a;
        padding: 1.5625em 0 0 0;
        margin: 0 0 0.625em 0;
        clear: both;
        padding-top: 0;
    }

    /* HEADER */
    .header img {
        width: 70%;
    }
    
    .nav-links {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .navbar a {
        font-size: 1.25em;
        padding: 0 0.9375rem 0.3125rem;
        color: #fff;
        text-decoration:none;
        text-align: center;
        background: linear-gradient(to bottom, #252525, #0010);
        border-radius: 0.625rem;
    }
    
    .navbar a.active {
        border-radius: 0.625rem;
        background: linear-gradient(to bottom, #01498c, #041a2e);
    }
    
    /* INDEX - A PROPOS DE NOUS */

    .container-nous {
        text-align: justify;
        margin-top: 0.5rem;
        width: 90%;
    }
    
    /* INDEX - SECTION ICONE DEV/DEPANNAGE */

    .index-presta-main {
        background-position: center;
        height: 26rem;
        color: white;
    }
    .galerry-container-index {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        place-items: center;
        gap: 15px;
        padding: 6%;
    }
    .gallery-item-index {
        width: 70%;
        height: 180px;
        box-shadow: none;
        justify-content: center;
        animation: slidedown-gallery-item-up 1s;
    }

    .gallery-item-index img{
        width: 60%;
    }
    
    .gallery-item-index:hover {
        transform: scale(1.05);
    }

    /* INDEX - HORAIRES */

    .schedule-container {
        border-radius: 0.5rem;

        padding: 1.25rem;
        width: 100%;
        text-align: center;
    }
    
    .schedule li {
        font-size: 0.875em;
    }

    /* INDEX CONTACT */

    .main-contact {
        padding: 0 0;
    }

    .contact-form h2  {
        color: white;
    }

    .contact-info h2 {
        color: white;
    }    
    
    .contact-section {
        display: flex;
        flex-direction: column; /* Par défaut, les div sont en colonne */
        width: 100%;
        border-radius : 0;
        text-align: center;
        background: linear-gradient(to bottom, #003973, #0074D9);
        color :white;
        text-decoration: none;
    }

    .contact-info {
        text-align: center;
        font-size: .875em;
    }
    
    /* DEPANNAGE - PRESTATION INFORMATIQUE - ASSISTANCE */

    .container-assist {
        margin: auto;
        padding: 0.3125rem 0 0.3125rem;
    }
    
    .gallery-container-assist {
        display: grid;
        grid-template-columns: 1fr; /* Par défaut, une seule colonne */
        gap: 1.875rem;
        padding-bottom: 3.125rem;
    }

    /* DEPANNAGE - PRESTATION INFORMATIQUE - INSTALLATION EQUIP */

    .container-install {
        margin: auto;
        padding: 0.3125rem 0 0.3125rem;
    }
    
    .gallery-container-install {
        display: grid;
        grid-template-columns: 1fr; /* Par défaut, une seule colonne */
        gap: 1.875rem;
        padding: 0 0 3.125rem 0;
    }


    /* DEPANNAGE - PRESTATION INFORMATIQUE - FORMATION */

    .container-formation {
        margin: auto;
        padding: 0.3125rem 0 0.3125rem;
    }
    
    .gallery-container-formation {
        display: grid;
        grid-template-columns: 1fr; /* Par défaut, une seule colonne */
        gap: 1.875rem;
        padding: 0 0 3.125rem 0;
    }

    /* DEPANNAGE - PRESTATION INFORMATIQUE - RECUP & SAVE */

    .container-save {
        margin: auto;
        padding: 0.3125rem 0 0.3125rem;
    }
    
    .gallery-container-save {
        grid-template-columns: 1fr; /* Par défaut, une seule colonne */
        gap: 1.875rem;
        padding: 0 0 3.125rem 0;
    }
        
    /* DEPANNAGE - PRESTATION INFORMATIQUE - TARIF */

    .container-tarif {
        font-size: 0.875rem;
        padding-left: 0;
    }

    .grid-tarif {
        grid-template-columns: repeat(2, 1fr); /* Deux colonnes par défaut */
        text-align: center;
    }

    .button {
        padding: 5%;
    }

    .extra-info {
        text-align: justify;
        word-break: break-all;
    }

    /* DEPANNAGE - BANNER */

    .banner {
    padding-bottom: 10%;
    }

    /* Petite bannière par-dessus */
    .small-banner {
        width: 100%;
        height: 100%;
        position: absolute;
        color: white;
        text-align: center;
        font-size: 0.875em;
        background-color: rgb(48, 46, 46);
    }

    /* DEVELOPPEMENT */

    .creation-site-grid {
        grid-template-columns: 1fr; /* Par défaut, une seule colonne */
        gap: 1.875rem;
        padding: 2rem 1rem 3.125rem 1rem;
    }

    .card-site {
        text-align: justify;
    }
      

    .presta-creation-grid {
        display: grid;
        grid-template-columns: 1fr;
        padding-top: 1.5rem;
      }

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

  .projet-card {
    height: 180px;
    background-position: center center;
  }

  .projet-card h4 {
    font-size: 1rem;
  }

      .footer {
        padding: 1rem;
        font-size: 0.75em;
    }
    
    .footer-links {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .footer-links a {
        margin: 5px 0;
    }
    
}
