.w-100 {
    width: 100% !important;
}
.w-75 {
    width: 75% !important;
}
.w-50 {
    width: 49% !important;
}
.w-25 {
    width: 25% !important;
}
.w-auto {
    width: auto !important;
}
.d-none {
    display: none !important;
}
.d-block{
    display: block !important;
}
.d-flex{
    display: flex !important;
}

@media (min-width: 0px) {
    .w-sm-100 {
        width: 100% !important;
    }
    .w-sm-75 {
        width: 75% !important;
    }
    .w-sm-50 {
        width: 49% !important;
    }
    .w-sm-25 {
        width: 25% !important;
    }
    .w-sm-auto {
        width: auto !important;
    }
    .d-sm-none {
        display: none !important;
    }
    .d-sm-block{
        display: block !important;
    }
    .d-sm-flex{
        display: flex !important;
    }
}

@media (min-width: 768px) {
    .w-md-100 {
        width: 100% !important;
    }
    .w-md-75 {
        width: 75% !important;
    }
    .w-md-50 {
        width: 49% !important;
    }
    .w-md-25 {
        width: 25% !important;
    }
    .w-md-auto {
        width: auto !important;
    }
    .d-md-none {
        display: none !important;
    }
    .d-md-block{
        display: block !important;
    }
    .d-md-flex{
        display: flex !important;
    }
}

@media (min-width: 992px) {
    .w-lg-100 {
        width: 100% !important;
    }
    .w-lg-75 {
        width: 75% !important;
    }
    .w-lg-50 {
        width: 49% !important;
    }
    .w-lg-25 {
        width: 25% !important;
    }
    .w-lg-auto {
        width: auto !important;
    }
    .d-lg-none {
        display: none !important;
    }
    .d-lg-block{
        display: block !important;
    }
    .d-lg-flex{
        display: flex !important;
    }
}

@media (min-width: 1200px) {
    .w-xl-100 {
        width: 100% !important;
    }
    .w-xl-75 {
        width: 75% !important;
    }
    .w-xl-50 {
        width: 49% !important;
    }
    .w-xl-25 {
        width: 25% !important;
    }
    .w-xl-auto {
        width: auto !important;
    }
    .d-xl-none {
        display: none !important;
    }
    .d-xl-block{
        display: block !important;
    }
    .d-xl-flex{
        display: flex !important;
    }
}