@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@300;400;500;600;700&display=swap');
/* font-family: 'Quicksand', sans-serif; */
/* font-weight; 300;400;500;600;700; */

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

html {
    font-family: 'Quicksand', sans-serif;
    scroll-behavior: smooth;
}

/* Taille du texte de base */
:root {
    font-size: 16px;
}

body {
    min-height: 100vh;
}


        /* RESSOURCE */


    /* Affichage */

/* Position */

.position-relative {
    position: relative;
}
.position-absolute {
    position: absolute;
}
.position-fixed {
    position: fixed;
}
.position-static {
    position: static;
}


/* z-index */

.z-index-0 {
    z-index: 0;
}
.z-index-1 {
    z-index: 1;
}
.z-index-2 {
    z-index: 2;
}
.z-index-3 {
    z-index: 3;
}
.z-index-4 {
    z-index: 4;
}
.z-index-5 {
    z-index: 5;
}
.z-index-6 {
    z-index: 6;
}
.z-index-7 {
    z-index: 7;
}
.z-index-8 {
    z-index: 8;
}
.z-index-9 {
    z-index: 9;
}
.z-index-10 {
    z-index: 10;
}


/* Display */

.display-flex {
    display: flex;
}
.display-grid {
    display: grid;
}
.display-block {
    display: block;
}
.display-inline {
    display: inline;
}
.display-inline-block {
    display: inline-block;
}
.display-none {
    display: none;
}


/* Alignement */

.align-center {
    align-items: center;
}
.align-start {
    align-items: flex-start;
}
.align-end {
    align-items: flex-end;
}
.align-baseline {
    align-items: baseline;
}

.vertical-align-top {
    vertical-align: top;
}


/* Justification */

.justify-center {
    justify-content: center;
}
.justify-start {
    justify-content: flex-start;
}
.justify-end {
    justify-content: flex-end;
}
.justify-space-between {
    justify-content: space-between;
}
.justify-space-around {
    justify-content: space-around;
}
.justify-space-evenly {
    justify-content: space-evenly;
}


/* Wrap */

.flex-wrap-wrap {
    flex-wrap: wrap;
}
.flex-wrap-nowrap {
    flex-wrap: nowrap;
}
.flex-wrap-wrap-reverse {
    flex-wrap: wrap-reverse;
}


/* Direction */

.flex-column {
    flex-direction: column;
}
.flex-row {
    flex-direction: row;
}


/* Shrink */

.flex-shrink-0 {
    flex-shrink: 0;
}
.flex-shrink-1 {
    flex-shrink: 1;
}


/* Flex */

.flex-none {
    flex: none;
}
.flex-1 {
    flex: 1;
}
.flex-2 {
    flex: 2;
}
.flex-3 {
    flex: 3;
}
.flex-4 {
    flex: 4;
}
.flex-5 {
    flex: 5;
}



    /* Marge */

/* Auto */

.m-auto {
    margin: auto;
}
.mt-auto {
    margin-top: auto;
}
.mb-auto {
    margin-bottom: auto;
}
.ml-auto {
    margin-left: auto;
}
.mr-auto {
    margin-right: auto;
}


.m-0 {
    margin: 0;
}
.m-0-25rem {
    margin: 0.25rem;
}
.m-0-5rem {
    margin: 0.5rem;
}
.m-0-75rem {
    margin: 0.75rem;
}
.m-1rem {
    margin: 1rem;
}
.m-1-25rem {
    margin: 1.25rem;
}
.m-1-5rem {
    margin: 1.5rem;
}
.m-1-75rem {
    margin: 1.75rem;
}
.m-2rem {
    margin: 2rem;
}
.m-3rem {
    margin: 3rem;
}
.m-4rem {
    margin: 4rem;
}
.m-5rem {
    margin: 5rem;
}
.m-6rem {
    margin: 6rem;
}
.m-7rem {
    margin: 7rem;
}
.m-8rem {
    margin: 8rem;
}
.m-9rem {
    margin: 9rem;
}
.m-10rem {
    margin: 10rem;
}

.p-0 {
    padding: 0;
}
.p-0-25rem {
    padding: 0.25rem;
}
.p-0-5rem {
    padding: 0.5rem;
}
.p-0-75rem {
    padding: 0.75rem;
}
.p-1rem {
    padding: 1rem;
}
.p-1-25rem {
    padding: 1.25rem;
}
.p-1-5rem {
    padding: 1.5rem;
}
.p-1-75rem {
    padding: 1.75rem;
}
.p-2rem {
    padding: 2rem;
}
.p-3rem {
    padding: 3rem;
}
.p-4rem {
    padding: 4rem;
}
.p-5rem {
    padding: 5rem;
}
.p-6rem {
    padding: 6rem;
}
.p-7rem {
    padding: 7rem;
}
.p-8rem {
    padding: 8rem;
}
.p-9rem {
    padding: 9rem;
}
.p-10rem {
    padding: 10rem;
}



/* Rem */

.mt-0-25rem {
    margin-top: 0.25rem;
}
.mt-0-5rem {
    margin-top: 0.5rem;
}
.mt-0-75rem {
    margin-top: 0.75rem;
}
.mt-1rem {
    margin-top: 1rem;
}
.mt-1-25rem {
    margin-top: 1.25rem;
}
.mt-1-5rem {
    margin-top: 1.5rem;
}
.mt-1-75rem {
    margin-top: 1.75rem;
}
.mt-2rem {
    margin-top: 2rem;
}
.mt-3rem {
    margin-top: 3rem;
}
.mt-4rem {
    margin-top: 4rem;
}
.mt-5rem {
    margin-top: 5rem;
}
.mt-6rem {
    margin-top: 6rem;
}
.mt-7rem {
    margin-top: 7rem;
}
.mt-8rem {
    margin-top: 8rem;
}
.mt-9rem {
    margin-top: 9rem;
}
.mt-10rem {
    margin-top: 10rem;
}

.mb-0-25rem {
    margin-bottom: 0.25rem;
}
.mb-0-5rem {
    margin-bottom: 0.5rem;
}
.mb-0-75rem {
    margin-bottom: 0.75rem;
}
.mb-1rem {
    margin-bottom: 1rem;
}
.mb-1-25rem {
    margin-bottom: 1.25rem;
}
.mb-1-5rem {
    margin-bottom: 1.5rem;
}
.mb-1-75rem {
    margin-bottom: 1.75rem;
}
.mb-2rem {
    margin-bottom: 2rem;
}
.mb-3rem {
    margin-bottom: 3rem;
}
.mb-4rem {
    margin-bottom: 4rem;
}
.mb-5rem {
    margin-bottom: 5rem;
}
.mb-6rem {
    margin-bottom: 6rem;
}
.mb-7rem {
    margin-bottom: 7rem;
}
.mb-8rem {
    margin-bottom: 8rem;
}
.mb-9rem {
    margin-bottom: 9rem;
}
.mb-10rem {
    margin-bottom: 10rem;
}

.ml-0-25rem {
    margin-left: 0.25rem;
}
.ml-0-5rem {
    margin-left: 0.5rem;
}
.ml-0-75rem {
    margin-left: 0.75rem;
}
.ml-1rem {
    margin-left: 1rem;
}
.ml-1-25rem {
    margin-left: 1.25rem;
}
.ml-1-5rem {
    margin-left: 1.5rem;
}
.ml-1-75rem {
    margin-left: 1.75rem;
}
.ml-2rem {
    margin-left: 2rem;
}
.ml-3rem {
    margin-left: 3rem;
}
.ml-4rem {
    margin-left: 4rem;
}
.ml-5rem {
    margin-left: 5rem;
}
.ml-6rem {
    margin-left: 6rem;
}
.ml-7rem {
    margin-left: 7rem;
}
.ml-8rem {
    margin-left: 8rem;
}
.ml-9rem {
    margin-left: 9rem;
}
.ml-10rem {
    margin-left: 10rem;
}

.mr-0-25rem {
    margin-right: 0.25rem;
}
.mr-0-5rem {
    margin-right: 0.5rem;
}
.mr-0-75rem {
    margin-right: 0.75rem;
}
.mr-1rem {
    margin-right: 1rem;
}
.mr-1-25rem {
    margin-right: 1.25rem;
}
.mr-1-5rem {
    margin-right: 1.5rem;
}
.mr-1-75rem {
    margin-right: 1.75rem;
}
.mr-2rem {
    margin-right: 2rem;
}
.mr-3rem {
    margin-right: 3rem;
}
.mr-4rem {
    margin-right: 4rem;
}
.mr-5rem {
    margin-right: 5rem;
}
.mr-6rem {
    margin-right: 6rem;
}
.mr-7rem {
    margin-right: 7rem;
}
.mr-8rem {
    margin-right: 8rem;
}
.mr-9rem {
    margin-right: 9rem;
}
.mr-10rem {
    margin-right: 10rem;
}



/* Px */

.mt-10px {
    margin-top: 10px;
}
.mt-20px {
    margin-top: 20px;
}
.mt-30px {
    margin-top: 30px;
}
.mt-40px {
    margin-top: 40px;
}
.mt-50px {
    margin-top: 50px;
}
.mt-60px {
    margin-top: 60px;
}
.mt-70px {
    margin-top: 70px;
}
.mt-80px {
    margin-top: 80px;
}
.mt-90px {
    margin-top: 90px;
}
.mt-100px {
    margin-top: 100px;
}

.mb-10px {
    margin-bottom: 10px;
}
.mb-20px {
    margin-bottom: 20px;
}
.mb-30px {
    margin-bottom: 30px;
}
.mb-40px {
    margin-bottom: 40px;
}
.mb-50px {
    margin-bottom: 50px;
}
.mb-60px {
    margin-bottom: 60px;
}
.mb-70px {
    margin-bottom: 70px;
}
.mb-80px {
    margin-bottom: 80px;
}
.mb-90px {
    margin-bottom: 90px;
}
.mb-100px {
    margin-bottom: 100px;
}



    /* Padding */

/* Auto */

.p-auto {
    padding: auto;
}
.pt-auto {
    padding-top: auto;
}
.pb-auto {
    padding-bottom: auto;
}
.pl-auto {
    padding-left: auto;
}
.pr-auto {
    padding-right: auto;
}


/* Rem */

.pt-0-25rem {
    padding-top: 0.25rem;
}
.pt-0-5rem {
    padding-top: 0.5rem;
}
.pt-0-75rem {
    padding-top: 0.75rem;
}
.pt-1rem {
    padding-top: 1rem;
}
.pt-1-25rem {
    padding-top: 1.25rem;
}
.pt-1-5rem {
    padding-top: 1.5rem;
}
.pt-1-75rem {
    padding-top: 1.75rem;
}
.pt-2rem {
    padding-top: 2rem;
}
.pt-3rem {
    padding-top: 3rem;
}
.pt-4rem {
    padding-top: 4rem;
}
.pt-5rem {
    padding-top: 5rem;
}
.pt-6rem {
    padding-top: 6rem;
}
.pt-7rem {
    padding-top: 7rem;
}
.pt-8rem {
    padding-top: 8rem;
}
.pt-9rem {
    padding-top: 9rem;
}
.pt-10rem {
    padding-top: 10rem;
}

.pb-0-25rem {
    padding-bottom: 0.25rem;
}
.pb-0-5rem {
    padding-bottom: 0.5rem;
}
.pb-0-75rem {
    padding-bottom: 0.75rem;
}
.pb-1rem {
    padding-bottom: 1rem;
}
.pb-1-25rem {
    padding-bottom: 1.25rem;
}
.pb-1-5rem {
    padding-bottom: 1.5rem;
}
.pb-1-75rem {
    padding-bottom: 1.75rem;
}
.pb-2rem {
    padding-bottom: 2rem;
}
.pb-3rem {
    padding-bottom: 3rem;
}
.pb-4rem {
    padding-bottom: 4rem;
}
.pb-5rem {
    padding-bottom: 5rem;
}
.pb-6rem {
    padding-bottom: 6rem;
}
.pb-7rem {
    padding-bottom: 7rem;
}
.pb-8rem {
    padding-bottom: 8rem;
}
.pb-9rem {
    padding-bottom: 9rem;
}
.pb-10rem {
    padding-bottom: 10rem;
}

.pl-0-75rem {
    padding-left: 0.75rem;
}
.pl-1rem {
    padding-left: 1rem;
}
.pl-1-25rem {
    padding-left: 1.25rem;
}
.pl-1-5rem {
    padding-left: 1.5rem;
}
.pl-1-75rem {
    padding-left: 1.75rem;
}
.pl-2rem {
    padding-left: 2rem;
}
.pl-3rem {
    padding-left: 3rem;
}
.pl-4rem {
    padding-left: 4rem;
}
.pl-5rem {
    padding-left: 5rem;
}
.pl-6rem {
    padding-left: 6rem;
}
.pl-7rem {
    padding-left: 7rem;
}
.pl-8rem {
    padding-left: 8rem;
}
.pl-9rem {
    padding-left: 9rem;
}
.pl-10rem {
    padding-left: 10rem;
}

.pr-0-75rem {
    padding-right: 0.75rem;
}
.pr-1rem {
    padding-right: 1rem;
}
.pr-1-25rem {
    padding-right: 1.25rem;
}
.pr-1-5rem {
    padding-right: 1.5rem;
}
.pr-1-75rem {
    padding-right: 1.75rem;
}
.pr-2rem {
    padding-right: 2rem;
}
.pr-3rem {
    padding-right: 3rem;
}
.pr-4rem {
    padding-right: 4rem;
}
.pr-5rem {
    padding-right: 5rem;
}
.pr-6rem {
    padding-right: 6rem;
}
.pr-7rem {
    padding-right: 7rem;
}
.pr-8rem {
    padding-right: 8rem;
}
.pr-9rem {
    padding-right: 9rem;
}
.pr-10rem {
    padding-right: 10rem;
}



/* Px */

.pt-10px {
    padding-top: 10px;
}
.pt-20px {
    padding-top: 20px;
}
.pt-30px {
    padding-top: 30px;
}
.pt-40px {
    padding-top: 40px;
}
.pt-50px {
    padding-top: 50px;
}
.pt-60px {
    padding-top: 60px;
}
.pt-70px {
    padding-top: 70px;
}
.pt-80px {
    padding-top: 80px;
}
.pt-90px {
    padding-top: 90px;
}
.pt-100px {
    padding-top: 100px;
}

.pb-10px {
    padding-bottom: 10px;
}
.pb-20px {
    padding-bottom: 20px;
}
.pb-30px {
    padding-bottom: 30px;
}
.pb-40px {
    padding-bottom: 40px;
}
.pb-50px {
    padding-bottom: 50px;
}
.pb-60px {
    padding-bottom: 60px;
}
.pb-70px {
    padding-bottom: 70px;
}
.pb-80px {
    padding-bottom: 80px;
}
.pb-90px {
    padding-bottom: 90px;
}
.pb-100px {
    padding-bottom: 100px;
}


/* Gap */

.gap-0-25rem {
    gap: .25rem;
}
.gap-0-5rem {
    gap: .5rem;
}
.gap-0-75rem {
    gap: .75rem;
}
.gap-1rem {
    gap: 1rem;
}
.gap-1-25rem {
    gap: 1.25rem;
}
.gap-1-5rem {
    gap: 1.5rem;
}
.gap-1-75rem {
    gap: 1.75rem;
}
.gap-2rem {
    gap: 2rem;
}
.gap-3rem {
    gap: 3rem;
}
.gap-4rem {
    gap: 4rem;
}
.gap-5rem {
    gap: 5rem;
}
.gap-6rem {
    gap: 6rem;
}
.gap-7rem {
    gap: 7rem;
}
.gap-8rem {
    gap: 8rem;
}
.gap-9rem {
    gap: 9rem;
}
.gap-10rem {
    gap: 10rem;
}


/* Oveflow */

.overflow-hidden {
    overflow: hidden;
}
.overflow-auto {
    overflow: auto;
}
.overflow-visible {
    overflow: visible;
}
.overflow-scroll {
    overflow: scroll;
}


/* Box-sizing */

.box-sizing-border-box {
    box-sizing: border-box;
}
.box-sizing-content-box {
    box-sizing: content-box;
}




/* List style */
.list-style-none {
    list-style: none;
}



    /* POLICE */

/* Taille */

/* Rem */

.fs-0-25rem {
    font-size: 0.25rem;
}
.fs-0-5rem {
    font-size: 0.5rem;
}
.fs-0-75rem {
    font-size: 0.75rem;
}
.fs-1rem {
    font-size: 1rem;
}
.fs-1-25rem {
    font-size: 1.25rem;
}
.fs-1-5rem {
    font-size: 1.5rem;
}
.fs-1-75rem {
    font-size: 1.75rem;
}
.fs-2rem {
    font-size: 2rem;
}
.fs-2-25rem {
    font-size: 2.25rem;
}
.fs-2-5rem {
    font-size: 2.5rem;
}
.fs-2-75rem {
    font-size: 2.75rem;
}
.fs-3rem {
    font-size: 3rem;
}



/* Px */

.fs-10px {
    font-size: 10px;
}
.fs-12px {
    font-size: 12px;
}
.fs-14px {
    font-size: 14px;
}
.fs-16px {
    font-size: 16px;
}
.fs-18px {
    font-size: 18px;
}
.fs-20px {
    font-size: 20px;
}
.fs-22px {
    font-size: 22px;
}
.fs-24px {
    font-size: 24px;
}
.fs-26px {
    font-size: 26px;
}
.fs-28px {
    font-size: 28px;
}
.fs-30px {
    font-size: 30px;
}


/* Weight */

.fw-300 {
    font-weight: 300;
}
.fw-400 {
    font-weight: 400;
}
.fw-500 {
    font-weight: 500;
}
.fw-600 {
    font-weight: 600;
}
.fw-700 {
    font-weight: 700;
}


/* Style */

.fs-italic {
    font-style: italic;
}
.fs-normal {
    font-style: normal;
}


/* Decoration */

.text-decoration-underline {
    text-decoration: underline;
}
.text-decoration-none {
    text-decoration: none;
}


/* Position */

.text-left {
    text-align: left;
}
.text-center {
    text-align: center;
}
.text-right {
    text-align: right;
}


/* Couleur */

.text-primary {
    color: #007bff;
}
.text-secondary {
    color: #9aa5af;
}
.text-success {
    color: #28a745;
}
.text-danger {
    color: #dc3545;
}
.text-warning {
    color: #ffc107;
}
.text-info {
    color: #17a2b8;
}
.text-light {
    color: #f8f9fa;
}
.text-dark {
    color: #343a40;
}
.text-muted {
    color: #6c757d;
}
.text-white {
    color: #fff;
}
.text-black {
    color: #000;
}

.hover\:text-primary:hover {
    color: #007bff;
}
.hover\:text-secondary:hover {
    color: #9aa5af;
}
.hover\:text-success:hover {
    color: #28a745;
}
.hover\:text-danger:hover {
    color: #dc3545;
}
.hover\:text-warning:hover {
    color: #ffc107;
}
.hover\:text-info:hover {
    color: #17a2b8;
}
.hover\:text-light:hover {
    color: #f8f9fa;
}
.hover\:text-dark:hover {
    color: #343a40;
}
.hover\:text-muted:hover {
    color: #6c757d;
}
.hover\:text-white:hover {
    color: #fff;
}
.hover\:text-black:hover {
    color: #000;
}


/* Preset de texte */

.text-base {
    font-size: 1rem;
    line-height: 1.5rem;
}

.link-disabled {
    pointer-events: none;
    cursor: not-allowed;
    opacity: 0.5;
}

.link-active {
    color: #007bff!important;
    border-bottom: 1px solid #007bff!important;
}

.message-flash {
    font-size: 1.3rem;
    margin: 20px;
    text-align: center;
}


/* Paragraphe */

.prose {
    font-size: 1rem;
    line-height: 1.75;
    color: #343a40;
}
.prose p {
    margin-bottom: 1.25em;
    margin-top: 1.25em;
}
.prose > :first-child {
    margin-top: 0;
}
.prose > :last-child {
    margin-bottom: 0;
}
.prose a {
    position: relative;
    color: #000000;
    text-decoration: none;
    font-weight: 700;
}
.prose a::before {
    content: '';
    background-color: hsla(196, 59%, 68%, 0.75);
    position: absolute;
    left: 0;
    bottom: 1px;
    width: 100%;
    height: 6px;
    z-index: -1;
    transition: all .3s ease-in-out;
}
.prose a:hover::before {
    bottom: 0;
    height: 100%;
}



    /* BACKGROUND */

/* Couleur */

.bg-white {
    background-color: #ffffff;
}
.bg-black {
    background-color: #000000;
}
.bg-light-grey {
    background-color: #F9FAFB;
}
.bg-grey {
    background-color: #F3F4F6;
}
.bg-dark-grey {
    background-color: #e4e4e4;
}
.bg-primary {
    background-color: #007bff;
}
.bg-secondary {
    background-color: #9aa5af;
}






    /* TAILLE */

.w-auto {
    width: auto;
}
.w-fit-content {
    width: fit-content;
}

.h-auto {
    height: auto;
}
.h-fit-content {
    height: fit-content;
}


/* Rem */

.w-0-25rem {
    width: 0.25rem;
}
.w-0-5rem {
    width: 0.5rem;
}
.w-0-75rem {
    width: 0.75rem;
}
.w-1rem {
    width: 1rem;
}
.w-1-25rem {
    width: 1.25rem;
}
.w-1-5rem {
    width: 1.5rem;
}
.w-1-75rem {
    width: 1.75rem;
}
.w-2rem {
    width: 2rem;
}
.w-3rem {
    width: 3rem;
}
.w-4rem {
    width: 4rem;
}
.w-5rem {
    width: 5rem;
}
.w-6rem {
    width: 6rem;
}
.w-7rem {
    width: 7rem;
}
.w-8rem {
    width: 8rem;
}
.w-9rem {
    width: 9rem;
}
.w-10rem {
    width: 10rem;
}

.h-0-25rem {
    height: 0.25rem;
}
.h-0-5rem {
    height: 0.5rem;
}
.h-0-75rem {
    height: 0.75rem;
}
.h-1rem {
    height: 1rem;
}
.h-1-25rem {
    height: 1.25rem;
}
.h-1-5rem {
    height: 1.5rem;
}
.h-1-75rem {
    height: 1.75rem;
}
.h-2rem {
    height: 2rem;
}
.h-3rem {
    height: 3rem;
}
.h-4rem {
    height: 4rem;
}
.h-5rem {
    height: 5rem;
}
.h-6rem {
    height: 6rem;
}
.h-7rem {
    height: 7rem;
}
.h-8rem {
    height: 8rem;
}
.h-9rem {
    height: 9rem;
}
.h-10rem {
    height: 10rem;
}


/* Max */

.max-w-48rem {
    max-width: 48rem;
}
.max-w-64rem {
    max-width: 64rem;
}
.max-w-72rem {
    max-width: 72rem;
}
.max-w-80rem {
    max-width: 80rem;
}


/* Min */

.min-h-100vh {
    min-height: 100vh;
}

    /* IMAGE */

/* Taille */

.img-1rem {
    width: 1rem;
    height: 1rem;
}
.img-2rem {
    width: 2rem;
    height: 2rem;
}
.img-2-25rem {
    width: 2.25rem;
    height: 2.25rem;
}
.img-2-5rem {
    width: 2.5rem;
    height: 2.5rem;
}
.img-2-75rem {
    width: 2.75rem;
    height: 2.75rem;
}
.img-3rem {
    width: 3rem;
    height: 3rem;
}
.img-4rem {
    width: 4rem;
    height: 4rem;
}
.img-5rem {
    width: 5rem;
    height: 5rem;
}
.img-6rem {
    width: 6rem;
    height: 6rem;
}
.img-7rem {
    width: 7rem;
    height: 7rem;
}
.img-8rem {
    width: 8rem;
    height: 8rem;
}
.img-9rem {
    width: 9rem;
    height: 9rem;
}
.img-10rem {
    width: 10rem;
    height: 10rem;
}


/* Bordure */

.border-rounded {
    border-radius: 0.5rem;
}
.border-circle {
    border-radius: 9999px;
}
.border-thumbnail {
    border-radius: 0.25rem;
}


/* Object-fit */

.object-fit-cover {
    object-fit: cover;
}
.object-fit-contain {
    object-fit: contain;
}
.object-fit-fill {
    object-fit: fill;
}
.object-fit-none {
    object-fit: none;
}
.object-fit-scale-down {
    object-fit: scale-down;
}



    /* LISTE */

/* Style */

.list-style-none {
    list-style: none;
}


/* Line-height */

/* no value */
.line-height-0-25 {
    line-height: 0.25;
}
.line-height-0-5 {
    line-height: 0.5;
}
.line-height-0-75 {
    line-height: 0.75;
}
.line-height-1 {
    line-height: 1;
}
.line-height-1-25 {
    line-height: 1.25;
}
.line-height-1-5 {
    line-height: 1.5;
}
.line-height-1-75 {
    line-height: 1.75;
}
.line-height-2 {
    line-height: 2;
}

/* rem */
.line-height-0-25rem {
    line-height: 0.25rem;
}
.line-height-0-5rem {
    line-height: 0.5rem;
}
.line-height-0-75rem {
    line-height: 0.75rem;
}
.line-height-1rem {
    line-height: 1rem;
}
.line-height-1-25rem {
    line-height: 1.25rem;
}
.line-height-1-5rem {
    line-height: 1.5rem;
}
.line-height-1-75rem {
    line-height: 1.75rem;
}
.line-height-2rem {
    line-height: 2rem;
}





.container {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
}

.border-b {
    border-bottom: 1px solid #e4e4e4;
}