  /* Remove padding */
  .no-padding {
    padding: 0 !important;
  }
/* This height cover the full page view */
.height-100 {
height: 100vh;
min-height: 100%;
}
/* This height cover the full page view for all media */
.height-100-media {
    height: 100vh;
    }
    /* This height is set to cover 2/3 page view */
.height-75 {
    height: 75vh;
}
/* This height is set to cover 1/2 page view */
.height-50 {
    height: 50vh;
}
/* This height is set to cover 1/3 page view */
.height-33 {
    height: 33.33vh;
}
/* This height is set to cover 1/4 page view */
.height-25 {
    height: 25vh;
}
/* This height is set to cover 1/4 page view */
.height-20 {
    height: 20vh;
}

/* Vertical align center */
.v-center {
    align-items: center;
    display: flex;
}
/* Horizontal align center */
.h-center {
    justify-content: center;
    display: flex;
}


@media (max-width: 640px) {
 
}