@media screen and (max-width: 768px) {}


/**********************************************************************

        CSS  BODY

***********************************************************************/

body {
    margin: 10;
    padding: 10;
    font-family: Arial, sans-serif;
}


/* Mises en page */
.container-custom {
    /* max-width: 1200px; */
    /* Largeur fixe sur grands écrans */
    margin: 0 auto;
    /* Centrer la page */
    padding-left: 1rem;
    padding-right: 1rem;
}

.hide-for-xl
{
    display: none;
}
/*
@media (max-width: 1200px) {
    .hide-for-xl
    {
        display: block;
    }
}*/

@media (min-width: 769px) {
    .container-custom {
        max-width: 100%;
        /* Supprimer les colonnes marges sur mobile/tablette */
        padding-left: 0.5rem;
        padding-right: 0.5rem;
    }
    .hide-on-mobile {
        display: block;
    }
    
    .show-on-mobile {
        display: none;
    }
}

@media (max-width: 768px) {
    .container-custom {
        max-width: 100%;
        /* Supprimer les colonnes marges sur mobile/tablette */
        padding-left: 0.5rem;
        padding-right: 0.5rem;
    }
    .hide-on-mobile {
        display: none;
    }
    
    .show-on-mobile {
        display: block;
    }
}

.blockbody {
    border-top-width: 0;
    border-right-width: 0;
    border-bottom-width: 0;
    border-left-width: 0;
    border-top-style: solid;
    border-right-style: solid;
    border-bottom-style: solid;
    border-left-style: solid;
    border-top-color: #000;
    border-right-color: #000;
    border-bottom-color: #000;
    border-left-color: #000;
    background-color: #2d2d2d;
    background-image: none;
    filter: progid:DXImageTransform.Microsoft.gradient(enabled=false);
    background-clip: padding-box;
    padding-top: 0;
    padding-right: 0;
    padding-bottom: 0;
    padding-left: 0;
    color: white;
    font-size: 20px;

}

span
{
    font-style:italic;
}

.fade-border
{
        /*width: 300px; /* Ajuste la taille si nécessaire */
        /*height: auto; /* Garde les proportions */
        display: block; /* Optionnel, pour s'assurer que l'image s'affiche en tant qu'élément de bloc */
        margin: 20px; /* Pour espacer l'image des autres éléments */
        box-shadow: 0 0 15px 5px rgba(0, 0, 0, 0.5); /* Crée un contour flou */
        border-radius: 10px; /* Optionnel, ajoute des coins arrondis */
}
.carousel-indicators {
    position: absolute; /* Assure que les indicateurs se superposent à l'image */
    top: 10px; /* Ajuste la position verticale (ici en haut de l'image) */
    right: 0;
    left: 0;
    margin: 0 auto; /* Centre les indicateurs */
    z-index: 2; /* S'assure que les indicateurs sont visibles au-dessus de l'image */
}

/*@include media-breakpoint-down(md)*/
@media (max-width: 768px)
{
    .text-h1
    {
        font-family:Georgia,Georgia,serif,'One Open Sans', 'Helvetica Neue', Helvetica, sans-serif;
        font-size:20px;
        font-style:italic;
        color:rgb(255,255,255);
    }
}
@media (min-width: 768px)
{
    .text-h1
    {
        font-family:Georgia,Georgia,serif,'One Open Sans', 'Helvetica Neue', Helvetica, sans-serif;
        font-size:40px;
        font-style:italic;
        color:rgb(255,255,255);
    }
}

/**********************************************************************

        HEADER -  MENU 

***********************************************************************/

header {
    margin-top: 2px;
    margin-bottom: 2px;
    margin-left: 100px;
    margin-right: 100px;
    background-color: #2d2d2d;
    color: white;
}

.navbar-brand {
    font-size: 1.8rem;
    font-weight: bold;
}

/* .menu {
    display: flex;
    align-items: center;
} */

/* .menu ul {
    margin: 0;
    padding: 0;
    list-style-type: none;
    display: flex;
} */

.nav-link {
    padding-right: 20px important!;
    padding-left: 20px;
  }

/* .menu ul li a */
.nav-item a  {
    color: white;
    background-color: black;
    text-decoration: none;
    padding: 10px 20px 10px 20px;
    margin: 2px;
    font-size: 1rem;
}

/* .menu ul li a:hover */
.nav-item a:hover {
    color: white;
    background-color: rgb(69, 69, 69);
    text-decoration: underline;
}

.menu-item{
    padding: 10px 20px 10px 20px;
}

/**********************************************************************

        HEADER -  REFERENCE GARAGE PESSER 

***********************************************************************/

/* menu HAMBURGER EN BLANC  */
.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3E%3Cpath stroke='rgba%28255,%20255,%20255,%201%29' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}

/* GRAND ECRAN */
@media (min-width: 768px) { 

    .header-garage-pesser {
        margin: 0;
        font-size: 48px;
        /* 0.9rem; */
        font-weight: bold;
        color: white;
    }

    .header-contact-info {
        margin: 0;
        color: white;
    }

    .header-contact-info-tel {
        font-size: 24px;
        margin: 0;
        padding: 0;
    }

    .header-contact-info-mail {
        font-size: 16px;
        margin: 0;
        padding: 0;
    }

} 


/* MOBILE (SURCHARGE) */
@media (max-width: 768px) {
    .header-garage-pesser {
        margin: 0;
        font-size: 36px;
        /* 0.9rem; */
        font-weight: bold;
    }

    .hide-on-mobile {
        display: none;
    }

    .header-contact-info {
        margin: 0;
    }

    .header-contact-info-tel {
        font-size: 24px;
    }

    .header-contact-info-mail {
        font-size: 16px;
    }

}




/**********************************************************************

        AUTRES 

***********************************************************************/


.intro-image {
    text-align: center;
    padding: 20px;
    /*    background-color: #f8f9fa; */
}

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

input[type=checkbox]:checked+label:before {
    background-color: #2d8a44;
}

input[type=checkbox]:checked+label:before,
input[type=checkbox]:not(:checked)+label:before {
    border-radius: 5px;
    border-color: #D6D6D6;
}