/*Fonds */
.bg-white{
  background-color: white;
}

/* Les Displays */
.hide{display: none;}

.in-block{
  display:inline-block;
}

.block{
  display: block!important;
}

.flex-center{
  display: flex;
  align-items: center;
  justify-content: center;
}
.flex-space{
  display: flex;
  align-items: center;
  justify-content: space-around;
}
.flex-between{
  display:flex;
  justify-content: space-between;
}

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

.f-right{
  float:right;
}

.f-left{
  float: left;
}

.align-left{
  align-items: left;
}



/* Les Margins */
.m-0{
  margin: 0;
}

.mb-0{
  margin-bottom: 0px;
}
.mb-10{
  margin-bottom: 10px;
}
.mb-25{
  margin-bottom:25px;
}
.mb-50{
  margin-bottom: 50px!important;
}
.mb-75{
  margin-bottom:75px!important;
}
.mb-100{
  margin-bottom: 100px;
}
.mb-200{
  margin-bottom: 200px;
}

.mt-0{
  margin-top: 0px;
}
.mt-25{
  margin-top:25px;
}
.mt-50{
  margin-top:50px;
}
.mt-75{
  margin-top:75px;
}
.mt-100{
  margin-top: 100px;
}
.mt-200{
  margin-top: 200px;
}


/* Les paddings*/
.p-0{
  padding: 0!important;
}
.pad-10{
  padding: 10px;
}
.pad-25{
  padding:25px;
}
.pad-50{
  padding: 50px;
}

.pb-0{
  padding-bottom: 0px;
}
.pb-25{
  padding-bottom: 25px
}
.pb-50{
  padding-bottom: 50px;
}
.pt-0{
  padding-top: 0px;
}
.pt-25{
  padding-top: 25px;
}
.pt-50{
  padding-top: 50px;
}

/* Les fonts*/
.font-12{
  font-size: 12px;
}
.font-14{
  font-size: 14px;
}
.font-16{
  font-size: 16px!important;
}
.font-17{
  font-size: 17px!important;
}
.font-20{
  font-size: 1.6em;
}
.font-25{
  font-size: 25px;
}
.font-30{
  font-size:30px;
}
.font-40{
  font-size: 40px;
}
.font-bold{
  font-weight:bold;
}
.uppercase{
  text-transform: uppercase;
}
.capitalize{
    text-transform: capitalize;
}
.fw-bold{
  font-weight: bold;
}
.fw-200{
  font-weight: 200;
}
.fw-300{
  font-weight: 300!important;
}
.fw-400{
  font-weight: 400
}


/* textes */
.texte-white{
  color:white;
}
.custom-font{
  font-family: custom_font, sans-serif;
}

/* Les widths */
.w-100{
  width:100%;
}
