.d-none {
    display: none;
}

@media(min-width: 768px) {
    .d-md-block {
        display: block;
    }
}

.d-flex {
    display: flex;
}

.justify-content-center {
    justify-content: center;
}

.direction-column {
    flex-direction: column;
}

.align-items-end {
    align-items: flex-end;
}

.align-items-center {
    align-items: center;
}

.p-0 {
    padding: 0;
}

.w-100 {
    width: 100%;
}

/* Medium */

@media(min-width: 768px) {
    .d-md-block {
        display: block;
    }
    .d-md-flex {
        display: flex;
    }
    .align-items-md-between {
        align-items: space-between  !important;
    }
}

/* Whatsapp Phone */

.whatsapp-phone {
    position: fixed;
    bottom: 10px;
    left: 10px;
    background-color: #FFF;
    display: flex;
    min-width: 70px;
    justify-content: space-around;
    font-size: 36px;
    align-items: center;
    z-index: 99;
    border-radius: 1px;
}





