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

html, body {
    font-family: 'Montserrat', sans-serif;
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    background-color: black;
}

ul{
    margin: 0px;
}

.font-size-small{
    font-size: 14px;
}

.font-size-medium{
    font-size: 18px;
}

.font-size-large{
    font-size: 24px;
}

.font-weight-thin{
    font-weight: 300;
}

.font-weight-regular{
    font-weight: 400;
}

.font-weight-medium{
    font-weight: 500;
}

.font-weight-bold{
    font-weight: 600;
}

.bg-black{
    background-color: black;
}

.color-black{
    color: black;
}

.bg-white{
    background-color: white;
}

.color-white{
    color: white;
}

.color-grey{
    color: grey;
}

.logo-placeholder{
    width: 25px !important;
    height: 25px !important;
    background-color: white;
    margin: 5px;
    border-radius: 5px;
}

/* ESTILOS BOOTSTRAP */

.w-100{
    width: 100%;
}

/* Contenedor Flex */
.d-flex {
    display: flex;
}

.d-inline-flex {
    display: inline-flex ;
}

/* Dirección del eje principal */
.flex-row {
    flex-direction: row ;
}

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

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

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

/* Alineación en el eje principal */
.justify-content-start {
    justify-content: flex-start ;
}

.justify-content-end {
    justify-content: flex-end ;
}

.justify-content-center {
    justify-content: center ;
}

.justify-content-between {
    justify-content: space-between ;
}

.justify-content-around {
    justify-content: space-around ;
}

.justify-content-evenly {
    justify-content: space-evenly ;
}

/* Alineación en el eje transversal */
.align-items-start {
    align-items: flex-start ;
}

.align-items-end {
    align-items: flex-end ;
}

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

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

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

/* Alineación de contenido */
.align-content-start {
    align-content: flex-start ;
}

.align-content-end {
    align-content: flex-end ;
}

.align-content-center {
    align-content: center ;
}

.align-content-between {
    align-content: space-between ;
}

.align-content-around {
    align-content: space-around ;
}

.align-content-stretch {
    align-content: stretch ;
}


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

/* TABLET */
@media (min-width: 768px) {
    .font-size-small{
        font-size: 16px;
    }

    .font-size-medium{
        font-size: 20px;
    }

    .font-size-large{
        font-size: 28px;
    }
}

/* PC */
@media (min-width: 1200px) {
    .font-size-small{
        font-size: 16px;
    }

    .font-size-medium{
        font-size: 22px;
    }

    .font-size-large{
        font-size: 30px;
    }
}

.bold{
    font-weight: 600;
}