/* Media queries */
@media (max-width: 575px) {
    .content-largeur .xs {
        display: block;
    }

    .content-largeur .sm {
        display: none;
    }

    .content-largeur .md {
        display: none;
    }

    .content-largeur .lg {
        display: none;
    }

    .content-largeur .xl {
        display: none;
    }

    .content-largeur .xxl {
        display: none;
    }
}

@media (min-width: 576px) {
    .content-largeur .xs {
        display: none;
    }

    .content-largeur .sm {
        display: block;
    }

    .content-largeur .md {
        display: none;
    }

    .content-largeur .lg {
        display: none;
    }

    .content-largeur .xl {
        display: none;
    }

    .content-largeur .xxl {
        display: none;
    }
}

@media (min-width: 768px) {
    .content-largeur .xs {
        display: none;
    }

    .content-largeur .sm {
        display: none;
    }

    .content-largeur .md {
        display: block;
    }

    .content-largeur .lg {
        display: none;
    }

    .content-largeur .xl {
        display: none;
    }

    .content-largeur .xxl {
        display: none;
    }
}

@media (min-width: 992px) {
    /* main>.container-fluid {
    padding-top: 80px;
  } */

    .content-largeur .xs {
        display: none;
    }

    .content-largeur .sm {
        display: none;
    }

    .content-largeur .md {
        display: none;
    }

    .content-largeur .lg {
        display: block;
    }

    .content-largeur .xl {
        display: none;
    }

    .content-largeur .xxl {
        display: none;
    }
}

@media (min-width: 1200px) {
    .content-largeur .xs {
        display: none;
    }

    .content-largeur .sm {
        display: none;
    }

    .content-largeur .md {
        display: none;
    }

    .content-largeur .lg {
        display: none;
    }

    .content-largeur .xl {
        display: block;
    }

    .content-largeur .xxl {
        display: none;
    }
}

@media (min-width: 1400px) {
    .content-largeur .xs {
        display: none;
    }

    .content-largeur .sm {
        display: none;
    }

    .content-largeur .md {
        display: none;
    }

    .content-largeur .lg {
        display: none;
    }

    .content-largeur .xl {
        display: none;
    }

    .content-largeur .xxl {
        display: block;
    }
}