/* Bootstrap CSS classes for width and height Padding and Margin starts */

/* width and height starts */

.me-0 {
  margin-right: 0 !important;
}

.me-1 {
  margin-right: 0.25rem !important;
}

.me-2 {
  margin-right: 0.5rem !important;
}

.me-3 {
  margin-right: 1rem !important;
}

.me-4 {
  margin-right: 1.5rem !important;
}

.me-5 {
  margin-right: 3rem !important;
}

.me-auto {
  margin-right: auto !important;
}

.mb-0 {
  margin-bottom: 0 !important;
}

.mb-1 {
  margin-bottom: 0.25rem !important;
}

.mb-2 {
  margin-bottom: 0.5rem !important;
}

.mb-3 {
  margin-bottom: 1rem !important;
}

.mb-4 {
  margin-bottom: 1.5rem !important;
}

.mb-5 {
  margin-bottom: 3rem !important;
}

.mb-auto {
  margin-bottom: auto !important;
}

.ms-0 {
  margin-left: 0 !important;
}

.ms-1 {
  margin-left: 0.25rem !important;
}

.ms-2 {
  margin-left: 0.5rem !important;
}

.ms-3 {
  margin-left: 1rem !important;
}

.ms-4 {
  margin-left: 1.5rem !important;
}

.ms-5 {
  margin-left: 3rem !important;
}

.ms-auto {
  margin-left: auto !important;
}

.card {
  position: relative;
  display: flex;
  min-width: 0;
  word-wrap: break-word;
  background-color: #fff;
  background-clip: border-box;
  border-radius: 0.25rem;
}
.card > hr {
  margin-right: 0;
  margin-left: 0;
}
.card > .list-group {
  border-top: inherit;
  border-bottom: inherit;
}
.card > .list-group:first-child {
  border-top-width: 0;
  border-top-left-radius: calc(0.25rem - 1px);
  border-top-right-radius: calc(0.25rem - 1px);
}
.card > .list-group:last-child {
  border-bottom-width: 0;
  border-bottom-right-radius: calc(0.25rem - 1px);
  border-bottom-left-radius: calc(0.25rem - 1px);
}
.card > .card-header + .list-group,
.card > .list-group + .card-footer {
  border-top: 0;
}

.card-body {
  flex: 1 1 auto;
    min-height: 1px;
    padding: 1.25rem;
}

.card-title {
  margin-bottom: 0.5rem;
}

.card-subtitle {
  margin-top: -0.25rem;
  margin-bottom: 0;
}

.card-text:last-child {
  margin-bottom: 0;
}

.card-link:hover {
  text-decoration: none;
}
.card-link + .card-link {
  margin-left: 1rem;
}

.card-header {
  padding: 0.5rem 1rem;
  margin-bottom: 0;
  background-color: rgba(0, 0, 0, 0.03);
  border-bottom: 1px solid rgba(0, 0, 0, 0.125);
}
.card-header:first-child {
  border-radius: calc(0.25rem - 1px) calc(0.25rem - 1px) 0 0;
}

.card-footer {
  padding: 0.5rem 1rem;
  background-color: rgba(0, 0, 0, 0.03);
  border-top: 1px solid rgba(0, 0, 0, 0.125);
}
.card-footer:last-child {
  border-radius: 0 0 calc(0.25rem - 1px) calc(0.25rem - 1px);
}

.card-header-tabs {
  margin-right: -0.5rem;
  margin-bottom: -0.5rem;
  margin-left: -0.5rem;
  border-bottom: 0;
}

.card-header-pills {
  margin-right: -0.5rem;
  margin-left: -0.5rem;
}

.card-img-overlay {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 1rem;
  border-radius: calc(0.25rem - 1px);
}

.card-img,
.card-img-top,
.card-img-bottom {
  width: 100%;
}

.card-img,
.card-img-top {
  border-top-left-radius: calc(0.25rem - 1px);
  border-top-right-radius: calc(0.25rem - 1px);
}

.card-img,
.card-img-bottom {
  border-bottom-right-radius: calc(0.25rem - 1px);
  border-bottom-left-radius: calc(0.25rem - 1px);
}

.card-group > .card {
  margin-bottom: 0.75rem;
}

.w-25 {
  width: 25% !important;
}

.w-50 {
  width: 50% !important;
}

.w-75 {
  width: 75% !important;
}

.w-100 {
  width: 100% !important;
}

.w-auto {
  width: auto !important;
}

.mw-100 {
  max-width: 100% !important;
}

.vw-100 {
  width: 100vw !important;
}

.min-vw-100 {
  min-width: 100vw !important;
}

.h-25 {
  height: 25% !important;
}

.h-50 {
  height: 50% !important;
}

.h-75 {
  height: 75% !important;
}

.h-100 {
  height: 100% !important;
}

.h-auto {
  height: auto !important;
}

.mh-100 {
  max-height: 100% !important;
}

.vh-100 {
  height: 100vh !important;
}

.min-vh-100 {
  min-height: 100vh !important;
}
/* width and height ends */

/* Padding Starts */

.p-0 {
    padding: 0rem !important;
}

.p-1 {
    padding: 0.25rem !important;
}

.p-2 {
    padding: 0.5rem !important;
}

.p-3 {
    padding: 1rem !important;
}

.p-4 {
    padding: 1.25rem !important;
}

.p-5 {
    padding: 1.5rem !important;
}


/* Very smaller Screens */

@media screen and (min-width: 320px) {
    .p-xs-0 {
        padding: 0rem !important;
    }
    .p-xs-1 {
        padding: 0.25rem !important;
    }
    .p-xs-2 {
        padding: 0.5rem !important;
    }
    .p-xs-3 {
        padding: 1rem !important;
    }
    .p-xs-4 {
        padding: 1.25rem !important;
    }
    .p-xs-5 {
        padding: 1.5rem !important;
    }
}


/* smaller Screens */

@media (min-width: 576px) {
	.card-group {
    display: flex;
    flex-flow: row wrap;
  }
  .card-group > .card {
    flex: 1 0 0%;
    margin-bottom: 0;
  }
  .card-group > .card + .card {
    margin-left: 0;
    border-left: 0;
  }
  .card-group > .card:not(:last-child) {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
  }
  .card-group > .card:not(:last-child) .card-img-top,
.card-group > .card:not(:last-child) .card-header {
    border-top-right-radius: 0;
  }
  .card-group > .card:not(:last-child) .card-img-bottom,
.card-group > .card:not(:last-child) .card-footer {
    border-bottom-right-radius: 0;
  }
  .card-group > .card:not(:first-child) {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
  }
  .card-group > .card:not(:first-child) .card-img-top,
.card-group > .card:not(:first-child) .card-header {
    border-top-left-radius: 0;
  }
  .card-group > .card:not(:first-child) .card-img-bottom,
.card-group > .card:not(:first-child) .card-footer {
    border-bottom-left-radius: 0;
  }
    .p-sm-0 {
        padding: 0rem !important;
    }
    .p-sm-1 {
        padding: 0.25rem !important;
    }
    .p-sm-2 {
        padding: 0.5rem !important;
    }
    .p-sm-3 {
        padding: 1rem !important;
    }
    .p-sm-4 {
        padding: 1.25rem !important;
    }
    .p-sm-5 {
        padding: 1.5rem !important;
    }
}


/* Medium Sized Screens */

@media (min-width: 768px) {
    .p-md-0 {
        padding: 0rem !important;
    }
    .p-md-1 {
        padding: 0.25rem !important;
    }
    .p-md-2 {
        padding: 0.5rem !important;
    }
    .p-md-3 {
        padding: 1rem !important;
    }
    .p-md-4 {
        padding: 1.25rem !important;
    }
    .p-md-5 {
        padding: 1.5rem !important;
    }
}


/* Large Screens */

@media (min-width: 992px) {
    .p-lg-0 {
        padding: 0rem !important;
    }
    .p-lg-1 {
        padding: 0.25rem !important;
    }
    .p-lg-2 {
        padding: 0.5rem !important;
    }
    .p-lg-3 {
        padding: 1rem !important;
    }
    .p-lg-4 {
        padding: 1.25rem !important;
    }
    .p-lg-5 {
        padding: 1.5rem !important;
    }
}


/* Very Large Screens */

@media (min-width: 1200px) {
    .p-xl-0 {
        padding: 0rem !important;
    }
    .p-xl-1 {
        padding: 0.25rem !important;
    }
    .p-xl-2 {
        padding: 0.5rem !important;
    }
    .p-xl-3 {
        padding: 1rem !important;
    }
    .p-xl-4 {
        padding: 1.25rem !important;
    }
    .p-xl-5 {
        padding: 1.5rem !important;
    }
}


/* Padding ends */


/* Padding Left starts */

.pl-0 {
    padding-left: 0 !important;
}

.pl-1 {
    padding-left: 0.25rem !important;
}

.pl-2 {
    padding-left: 0.5rem !important;
}

.pl-3 {
    padding-left: 1rem !important;
}

.pl-4 {
    padding-left: 1.25rem !important;
}

.pl-5 {
    padding-left: 1.5rem !important;
}


/* smaller Screens */

@media (min-width: 320px) {
    .pl-xs-0 {
        padding-left: 0 !important;
    }
    .pl-xs-1 {
        padding-left: 0.25rem !important;
    }
    .pl-xs-2 {
        padding-left: 0.5rem !important;
    }
    .pl-xs-3 {
        padding-left: 1rem !important;
    }
    .pl-xs-4 {
        padding-left: 1.25rem !important;
    }
    .pl-xs-5 {
        padding-left: 1.5rem !important;
    }
}


/* smaller Screens */

@media (min-width: 576px) {
    .pl-sm-0 {
        padding-left: 0 !important;
    }
    .pl-sm-1 {
        padding-left: 0.25rem !important;
    }
    .pl-sm-2 {
        padding-left: 0.5rem !important;
    }
    .pl-sm-3 {
        padding-left: 1rem !important;
    }
    .pl-sm-4 {
        padding-left: 1.25rem !important;
    }
    .pl-sm-5 {
        padding-left: 1.5rem !important;
    }
}


/* Medium Sized Screens */

@media (min-width: 768px) {
    .pl-md-0 {
        padding-left: 0 !important;
    }
    .pl-md-1 {
        padding-left: 0.25rem !important;
    }
    .pl-md-2 {
        padding-left: 0.5rem !important;
    }
    .pl-md-3 {
        padding-left: 1rem !important;
    }
    .pl-md-4 {
        padding-left: 1.25rem !important;
    }
    .pl-md-5 {
        padding-left: 1.5rem !important;
    }
}


/* Large Screens */

@media (min-width: 992px) {
    .pl-lg-0 {
        padding-left: 0 !important;
    }
    .pl-lg-1 {
        padding-left: 0.25rem !important;
    }
    .pl-lg-2 {
        padding-left: 0.5rem !important;
    }
    .pl-lg-3 {
        padding-left: 1rem !important;
    }
    .pl-lg-4 {
        padding-left: 1.25rem !important;
    }
    .pl-lg-5 {
        padding-left: 1.5rem !important;
    }
}


/* Very Large Screens */

@media (min-width: 1200px) {
    .pl-xl-0 {
        padding-left: 0 !important;
    }
    .pl-xl-1 {
        padding-left: 0.25rem !important;
    }
    .pl-xl-2 {
        padding-left: 0.5rem !important;
    }
    .pl-xl-3 {
        padding-left: 1rem !important;
    }
    .pl-xl-4 {
        padding-left: 1.25rem !important;
    }
    .pl-xl-5 {
        padding-left: 1.5rem !important;
    }
}


/* Padding Left ends */


/* Padding Right starts */

.pr-0 {
    padding-right: 0 !important;
}

.pr-1 {
    padding-right: 0.25rem !important;
}

.pr-2 {
    padding-right: 0.5rem !important;
}

.pr-3 {
    padding-right: 1rem !important;
}

.pr-4 {
    padding-right: 1.25rem !important;
}

.pr-5 {
    padding-right: 1.5rem !important;
}


/* very smaller Screens */

@media (min-width: 320px) {
    .pr-xs-0 {
        padding-right: 0 !important;
    }
    .pr-xs-1 {
        padding-right: 0.25rem !important;
    }
    .pr-xs-2 {
        padding-right: 0.5rem !important;
    }
    .pr-xs-3 {
        padding-right: 1rem !important;
    }
    .pr-xs-4 {
        padding-right: 1.25rem !important;
    }
    .pr-xs-5 {
        padding-right: 1.5rem !important;
    }
}


/* smaller Screens */

@media (min-width: 576px) {
    .pr-sm-0 {
        padding-right: 0 !important;
    }
    .pr-sm-1 {
        padding-right: 0.25rem !important;
    }
    .pr-sm-2 {
        padding-right: 0.5rem !important;
    }
    .pr-sm-3 {
        padding-right: 1rem !important;
    }
    .pr-sm-4 {
        padding-right: 1.25rem !important;
    }
    .pr-sm-5 {
        padding-right: 1.5rem !important;
    }
}


/* Medium Sized Screens */

@media (min-width: 768px) {
    .pr-md-0 {
        padding-right: 0 !important;
    }
    .pr-md-1 {
        padding-right: 0.25rem !important;
    }
    .pr-md-2 {
        padding-right: 0.5rem !important;
    }
    .pr-md-3 {
        padding-right: 1rem !important;
    }
    .pr-md-4 {
        padding-right: 1.25rem !important;
    }
    .pr-md-5 {
        padding-right: 1.5rem !important;
    }
}


/* Large Screens */

@media (min-width: 992px) {
    .pr-lg-0 {
        padding-right: 0 !important;
    }
    .pr-lg-1 {
        padding-right: 0.25rem !important;
    }
    .pr-lg-2 {
        padding-right: 0.5rem !important;
    }
    .pr-lg-3 {
        padding-right: 1rem !important;
    }
    .pr-lg-4 {
        padding-right: 1.25rem !important;
    }
    .pr-lg-5 {
        padding-right: 1.5rem !important;
    }
}


/* Very Large Screens */

@media (min-width: 1200px) {
    .pr-xl-0 {
        padding-right: 0 !important;
    }
    .pr-xl-1 {
        padding-right: 0.25rem !important;
    }
    .pr-xl-2 {
        padding-right: 0.5rem !important;
    }
    .pr-xl-3 {
        padding-right: 1rem !important;
    }
    .pr-xl-4 {
        padding-right: 1.25rem !important;
    }
    .pr-xl-5 {
        padding-right: 1.5rem !important;
    }
}


/* Padding Right ends */


/* Padding Left and Right Starts */

.px-0 {
    padding-left: 0 !important;
    padding-right: 0 !important;
}

.px-1 {
    padding-left: 0.25rem !important;
    padding-right: 0.25rem !important;
}

.px-2 {
    padding-left: 0.5rem !important;
    padding-right: 0.5rem !important;
}

.px-3 {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
}

.px-4 {
    padding-left: 1.25rem !important;
    padding-right: 1.25rem !important;
}

.px-5 {
    padding-left: 1.5rem !important;
    padding-right: 1.5rem !important;
}


/* very smaller Screens */

@media (min-width: 320px) {
    .px-xs-0 {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }
    .px-xs-1 {
        padding-left: 0.25rem !important;
        padding-right: 0.25rem !important;
    }
    .px-xs-2 {
        padding-left: 0.5rem !important;
        padding-right: 0.5rem !important;
    }
    .px-xs-3 {
        padding-left: 1rem !important;
        padding-right: 1rem !important;
    }
    .px-xs-4 {
        padding-left: 1.25rem !important;
        padding-right: 1.25rem !important;
    }
    .px-xs-5 {
        padding-left: 1.5rem !important;
        padding-right: 1.5rem !important;
    }
}


/* smaller Screens */

@media (min-width: 576px) {
    .px-sm-0 {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }
    .px-sm-1 {
        padding-left: 0.25rem !important;
        padding-right: 0.25rem !important;
    }
    .px-sm-2 {
        padding-left: 0.5rem !important;
        padding-right: 0.5rem !important;
    }
    .px-sm-3 {
        padding-left: 1rem !important;
        padding-right: 1rem !important;
    }
    .px-sm-4 {
        padding-left: 1.25rem !important;
        padding-right: 1.25rem !important;
    }
    .px-sm-5 {
        padding-left: 1.5rem !important;
        padding-right: 1.5rem !important;
    }
}


/* Medium Sized Screens */

@media (min-width: 768px) {
    .px-md-0 {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }
    .px-md-1 {
        padding-left: 0.25rem !important;
        padding-right: 0.25rem !important;
    }
    .px-md-2 {
        padding-left: 0.5rem !important;
        padding-right: 0.5rem !important;
    }
    .px-md-3 {
        padding-left: 1rem !important;
        padding-right: 1rem !important;
    }
    .px-md-4 {
        padding-left: 1.25rem !important;
        padding-right: 1.25rem !important;
    }
    .px-md-5 {
        padding-left: 1.5rem !important;
        padding-right: 1.5rem !important;
    }
}


/* Large Screens */

@media (min-width: 992px) {
    .px-lg-0 {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }
    .px-lg-1 {
        padding-left: 0.25rem !important;
        padding-right: 0.25rem !important;
    }
    .px-lg-2 {
        padding-left: 0.5rem !important;
        padding-right: 0.5rem !important;
    }
    .px-lg-3 {
        padding-left: 1rem !important;
        padding-right: 1rem !important;
    }
    .px-lg-4 {
        padding-left: 1.25rem !important;
        padding-right: 1.25rem !important;
    }
    .px-lg-5 {
        padding-left: 1.5rem !important;
        padding-right: 1.5rem !important;
    }
}


/* Very Large Screens */

@media (min-width: 1200px) {
    .px-xl-0 {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }
    .px-xl-1 {
        padding-left: 0.25rem !important;
        padding-right: 0.25rem !important;
    }
    .px-xl-2 {
        padding-left: 0.5rem !important;
        padding-right: 0.5rem !important;
    }
    .px-xl-3 {
        padding-left: 1rem !important;
        padding-right: 1rem !important;
    }
    .px-xl-4 {
        padding-left: 1.25rem !important;
        padding-right: 1.25rem !important;
    }
    .px-xl-5 {
        padding-left: 1.5rem !important;
        padding-right: 1.5rem !important;
    }
}


/* Padding  Left and Right ends */


/* Margin Starts */

.m-0 {
    margin: 0rem !important;
}

.m-1 {
    margin: 0.25rem !important;
}

.m-2 {
    margin: 0.5rem !important;
}

.m-3 {
    margin: 1rem !important;
}

.m-4 {
    margin: 1.25rem !important;
}

.m-5 {
    margin: 1.5rem !important;
}

.m-n1 {
    margin: -0.25rem !important;
}

.m-n2 {
    margin: -0.5rem !important;
}

.m-n3 {
    margin: -1rem !important;
}

.m-n4 {
    margin: -1.25rem !important;
}

.m-n5 {
    margin: -1.5rem !important;
}


/* very smaller Screens */

@media (min-width: 320px) {
    .m-xs-0 {
        margin: 0rem !important;
    }
    .m-xs-1 {
        margin: 0.25rem !important;
    }
    .m-xs-2 {
        margin: 0.5rem !important;
    }
    .m-xs-3 {
        margin: 1rem !important;
    }
    .m-xs-4 {
        margin: 1.25rem !important;
    }
    .m-xs-5 {
        margin: 1.5rem !important;
    }
    .m-xs-n1 {
        margin: -0.25rem !important;
    }
    .m-xs-n2 {
        margin: -0.5rem !important;
    }
    .m-xs-n3 {
        margin: -1rem !important;
    }
    .m-xs-n4 {
        margin: -1.25rem !important;
    }
    .m-xs-n5 {
        margin: -1.5rem !important;
    }
}


/* smaller Screens */

@media (min-width: 576px) {
    .m-sm-0 {
        margin: 0rem !important;
    }
    .m-sm-1 {
        margin: 0.25rem !important;
    }
    .m-sm-2 {
        margin: 0.5rem !important;
    }
    .m-sm-3 {
        margin: 1rem !important;
    }
    .m-sm-4 {
        margin: 1.25rem !important;
    }
    .m-sm-5 {
        margin: 1.5rem !important;
    }
    .m-sm-n1 {
        margin: -0.25rem !important;
    }
    .m-sm-n2 {
        margin: -0.5rem !important;
    }
    .m-sm-n3 {
        margin: -1rem !important;
    }
    .m-sm-n4 {
        margin: -1.25rem !important;
    }
    .m-sm-n5 {
        margin: -1.5rem !important;
    }
}


/* Medium Sized Screens */

@media (min-width: 768px) {
	.mb-md-0 {
    margin-bottom: 0 !important;
  }

  .mb-md-1 {
    margin-bottom: 0.25rem !important;
  }

  .mb-md-2 {
    margin-bottom: 0.5rem !important;
  }

  .mb-md-3 {
    margin-bottom: 1rem !important;
  }

  .mb-md-4 {
    margin-bottom: 1.5rem !important;
  }

  .mb-md-5 {
    margin-bottom: 3rem !important;
  }

    .m-md-0 {
        margin: 0rem !important;
    }
    .m-md-1 {
        margin: 0.25rem !important;
    }
    .m-md-2 {
        margin: 0.5rem !important;
    }
    .m-md-3 {
        margin: 1rem !important;
    }
    .m-md-4 {
        margin: 1.25rem !important;
    }
    .m-md-5 {
        margin: 1.5rem !important;
    }
    .m-md-n1 {
        margin: -0.25rem !important;
    }
    .m-md-n2 {
        margin: -0.5rem !important;
    }
    .m-md-n3 {
        margin: -1rem !important;
    }
    .m-md-n4 {
        margin: -1.25rem !important;
    }
    .m-md-n5 {
        margin: -1.5rem !important;
    }
}


/* Large Screens */

@media (min-width: 992px) {
	.mb-lg-0 {
    margin-bottom: 0 !important;
  }

  .mb-lg-1 {
    margin-bottom: 0.25rem !important;
  }

  .mb-lg-2 {
    margin-bottom: 0.5rem !important;
  }

  .mb-lg-3 {
    margin-bottom: 1rem !important;
  }

  .mb-lg-4 {
    margin-bottom: 1.5rem !important;
  }

  .mb-lg-5 {
    margin-bottom: 3rem !important;
  }

  .mb-lg-auto {
    margin-bottom: auto !important;
  }

  .ms-lg-0 {
    margin-left: 0 !important;
  }

  .ms-lg-1 {
    margin-left: 0.25rem !important;
  }

  .ms-lg-2 {
    margin-left: 0.5rem !important;
  }

  .ms-lg-3 {
    margin-left: 1rem !important;
  }

  .ms-lg-4 {
    margin-left: 1.5rem !important;
  }

  .ms-lg-5 {
    margin-left: 3rem !important;
  }

  .ms-lg-auto {
    margin-left: auto !important;
  }

    .m-lg-0 {
        margin: 0rem !important;
    }
    .m-lg-1 {
        margin: 0.25rem !important;
    }
    .m-lg-2 {
        margin: 0.5rem !important;
    }
    .m-lg-3 {
        margin: 1rem !important;
    }
    .m-lg-4 {
        margin: 1.25rem !important;
    }
    .m-lg-5 {
        margin: 1.5rem !important;
    }
    .m-lg-n1 {
        margin: -0.25rem !important;
    }
    .m-lg-n2 {
        margin: -0.5rem !important;
    }
    .m-lg-n3 {
        margin: -1rem !important;
    }
    .m-lg-n4 {
        margin: -1.25rem !important;
    }
    .m-lg-n5 {
        margin: -1.5rem !important;
    }
}


/* Very Large Screens */

@media (min-width: 1200px) {
    .m-xl-0 {
        margin: 0rem !important;
    }
    .m-xl-1 {
        margin: 0.25rem !important;
    }
    .m-xl-2 {
        margin: 0.5rem !important;
    }
    .m-xl-3 {
        margin: 1rem !important;
    }
    .m-xl-4 {
        margin: 1.25rem !important;
    }
    .m-xl-5 {
        margin: 1.5rem !important;
    }
    .m-xl-n1 {
        margin: -0.25rem !important;
    }
    .m-xl-n2 {
        margin: -0.5rem !important;
    }
    .m-xl-n3 {
        margin: -1rem !important;
    }
    .m-xl-n4 {
        margin: -1.25rem !important;
    }
    .m-xl-n5 {
        margin: -1.5rem !important;
    }
}


/* Margin ends */


/* Left Margin starts */

.ml-0 {
    margin-left: 0 !important;
}

.ml-1 {
    margin-left: 0.25rem !important;
}

.ml-2 {
    margin-left: 0.5rem !important;
}

.ml-3 {
    margin-left: 1rem !important;
}

.ml-4 {
    margin-left: 1.25rem !important;
}

.ml-5 {
    margin-left: 1.5rem !important;
}

.ml-n1 {
    margin-left: -0.25rem !important;
}

.ml-n2 {
    margin-left: -0.5rem !important;
}

.ml-n3 {
    margin-left: -1rem !important;
}

.ml-n4 {
    margin-left: -1.25rem !important;
}

.ml-n5 {
    margin-left: -1.5rem !important;
}


/* very smaller Screens */

@media (min-width: 320px) {
    .ml-xs-0 {
        margin-left: 0 !important;
    }
    .ml-xs-1 {
        margin-left: 0.25rem !important;
    }
    .ml-xs-2 {
        margin-left: 0.5rem !important;
    }
    .ml-xs-3 {
        margin-left: 1rem !important;
    }
    .ml-xs-4 {
        margin-left: 1.25rem !important;
    }
    .ml-xs-5 {
        margin-left: 1.5rem !important;
    }
    .ml-xs-n1 {
        margin-left: -0.25rem !important;
    }
    .ml-xs-n2 {
        margin-left: -0.5rem !important;
    }
    .ml-xs-n3 {
        margin-left: -1rem !important;
    }
    .ml-xs-n4 {
        margin-left: -1.25rem !important;
    }
    .ml-xs-n5 {
        margin-left: -1.5rem !important;
    }
}


/* smaller Screens */

@media (min-width: 576px) {
    .ml-sm-0 {
        margin-left: 0 !important;
    }
    .ml-sm-1 {
        margin-left: 0.25rem !important;
    }
    .ml-sm-2 {
        margin-left: 0.5rem !important;
    }
    .ml-sm-3 {
        margin-left: 1rem !important;
    }
    .ml-sm-4 {
        margin-left: 1.25rem !important;
    }
    .ml-sm-5 {
        margin-left: 1.5rem !important;
    }
    .ml-sm-n1 {
        margin-left: -0.25rem !important;
    }
    .ml-sm-n2 {
        margin-left: -0.5rem !important;
    }
    .ml-sm-n3 {
        margin-left: -1rem !important;
    }
    .ml-sm-n4 {
        margin-left: -1.25rem !important;
    }
    .ml-sm-n5 {
        margin-left: -1.5rem !important;
    }
}


/* Medium Sized Screens */

@media (min-width: 768px) {
    .ml-md-0 {
        margin-left: 0 !important;
    }
    .ml-md-1 {
        margin-left: 0.25rem !important;
    }
    .ml-md-2 {
        margin-left: 0.5rem !important;
    }
    .ml-md-3 {
        margin-left: 1rem !important;
    }
    .ml-md-4 {
        margin-left: 1.25rem !important;
    }
    .ml-md-5 {
        margin-left: 1.5rem !important;
    }
    .ml-md-n1 {
        margin-left: -0.25rem !important;
    }
    .ml-md-n2 {
        margin-left: -0.5rem !important;
    }
    .ml-md-n3 {
        margin-left: -1rem !important;
    }
    .ml-md-n4 {
        margin-left: -1.25rem !important;
    }
    .ml-md-n5 {
        margin-left: -1.5rem !important;
    }
}


/* Large Screens */

@media (min-width: 992px) {
    .ml-lg-0 {
        margin-left: 0 !important;
    }
    .ml-lg-1 {
        margin-left: 0.25rem !important;
    }
    .ml-lg-2 {
        margin-left: 0.5rem !important;
    }
    .ml-lg-3 {
        margin-left: 1rem !important;
    }
    .ml-lg-4 {
        margin-left: 1.25rem !important;
    }
    .ml-lg-5 {
        margin-left: 1.5rem !important;
    }
    .ml-lg-n1 {
        margin-left: -0.25rem !important;
    }
    .ml-lg-n2 {
        margin-left: -0.5rem !important;
    }
    .ml-lg-n3 {
        margin-left: -1rem !important;
    }
    .ml-lg-n4 {
        margin-left: -1.25rem !important;
    }
    .ml-lg-n5 {
        margin-left: -1.5rem !important;
    }
}


/* Very Large Screens */

@media (min-width: 1200px) {
    .ml-xl-0 {
        margin-left: 0 !important;
    }
    .ml-xl-1 {
        margin-left: 0.25rem !important;
    }
    .ml-xl-2 {
        margin-left: 0.5rem !important;
    }
    .ml-xl-3 {
        margin-left: 1rem !important;
    }
    .ml-xl-4 {
        margin-left: 1.25rem !important;
    }
    .ml-xl-5 {
        margin-left: 1.5rem !important;
    }
    .ml-xl-n1 {
        margin-left: -0.25rem !important;
    }
    .ml-xl-n2 {
        margin-left: -0.5rem !important;
    }
    .ml-xl-n3 {
        margin-left: -1rem !important;
    }
    .ml-xl-n4 {
        margin-left: -1.25rem !important;
    }
    .ml-xl-n5 {
        margin-left: -1.5rem !important;
    }
}


/* Left Margin ends */


/* Right Margin starts */

.mr-0 {
    margin-right: 0 !important;
}

.mr-1 {
    margin-right: 0.25rem !important;
}

.mr-2 {
    margin-right: 0.5rem !important;
}

.mr-3 {
    margin-right: 1rem !important;
}

.mr-4 {
    margin-right: 1.25rem !important;
}

.mr-5 {
    margin-right: 1.5rem !important;
}

.mr-n1 {
    margin-right: -0.25rem !important;
}

.mr-n2 {
    margin-right: -0.5rem !important;
}

.mr-n3 {
    margin-right: -1rem !important;
}

.mr-n4 {
    margin-right: -1.25rem !important;
}

.mr-n5 {
    margin-right: -1.5rem !important;
}


/* very smaller Screens */

@media (min-width: 320px) {
    .mr-xs-0 {
        margin-right: 0 !important;
    }
    .mr-xs-1 {
        margin-right: 0.25rem !important;
    }
    .mr-xs-2 {
        margin-right: 0.5rem !important;
    }
    .mr-xs-3 {
        margin-right: 1rem !important;
    }
    .mr-xs-4 {
        margin-right: 1.25rem !important;
    }
    .mr-xs-5 {
        margin-right: 1.5rem !important;
    }
    .mr-xs-n1 {
        margin-right: -0.25rem !important;
    }
    .mr-xs-n2 {
        margin-right: -0.5rem !important;
    }
    .mr-xs-n3 {
        margin-right: -1rem !important;
    }
    .mr-xs-n4 {
        margin-right: -1.25rem !important;
    }
    .mr-xs-n5 {
        margin-right: -1.5rem !important;
    }
}


/* smaller Screens */

@media (min-width: 576px) {
    .mr-sm-0 {
        margin-right: 0 !important;
    }
    .mr-sm-1 {
        margin-right: 0.25rem !important;
    }
    .mr-sm-2 {
        margin-right: 0.5rem !important;
    }
    .mr-sm-3 {
        margin-right: 1rem !important;
    }
    .mr-sm-4 {
        margin-right: 1.25rem !important;
    }
    .mr-sm-5 {
        margin-right: 1.5rem !important;
    }
    .mr-sm-n1 {
        margin-right: -0.25rem !important;
    }
    .mr-sm-n2 {
        margin-right: -0.5rem !important;
    }
    .mr-sm-n3 {
        margin-right: -1rem !important;
    }
    .mr-sm-n4 {
        margin-right: -1.25rem !important;
    }
    .mr-sm-n5 {
        margin-right: -1.5rem !important;
    }
}


/* Medium Sized Screens */

@media (min-width: 768px) {
    .mr-md-0 {
        margin-right: 0 !important;
    }
    .mr-md-1 {
        margin-right: 0.25rem !important;
    }
    .mr-md-2 {
        margin-right: 0.5rem !important;
    }
    .mr-md-3 {
        margin-right: 1rem !important;
    }
    .mr-md-4 {
        margin-right: 1.25rem !important;
    }
    .mr-md-5 {
        margin-right: 1.5rem !important;
    }
    .mr-md-n1 {
        margin-right: -0.25rem !important;
    }
    .mr-md-n2 {
        margin-right: -0.5rem !important;
    }
    .mr-md-n3 {
        margin-right: -1rem !important;
    }
    .mr-md-n4 {
        margin-right: -1.25rem !important;
    }
    .mr-md-n5 {
        margin-right: -1.5rem !important;
    }
}


/* Large Screens */

@media (min-width: 992px) {
    .mr-lg-0 {
        margin-right: 0 !important;
    }
    .mr-lg-1 {
        margin-right: 0.25rem !important;
    }
    .mr-lg-2 {
        margin-right: 0.5rem !important;
    }
    .mr-lg-3 {
        margin-right: 1rem !important;
    }
    .mr-lg-4 {
        margin-right: 1.25rem !important;
    }
    .mr-lg-5 {
        margin-right: 1.5rem !important;
    }
    .mr-lg-n1 {
        margin-right: -0.25rem !important;
    }
    .mr-lg-n2 {
        margin-right: -0.5rem !important;
    }
    .mr-lg-n3 {
        margin-right: -1rem !important;
    }
    .mr-lg-n4 {
        margin-right: -1.25rem !important;
    }
    .mr-lg-n5 {
        margin-right: -1.5rem !important;
    }
}


/* Very Large Screens */

@media (min-width: 1200px) {
    .mr-xl-0 {
        margin-right: 0 !important;
    }
    .mr-xl-1 {
        margin-right: 0.25rem !important;
    }
    .mr-xl-2 {
        margin-right: 0.5rem !important;
    }
    .mr-xl-3 {
        margin-right: 1rem !important;
    }
    .mr-xl-4 {
        margin-right: 1.25rem !important;
    }
    .mr-xl-5 {
        margin-right: 1.5rem !important;
    }
    .mr-xl-n1 {
        margin-right: -0.25rem !important;
    }
    .mr-xl-n2 {
        margin-right: -0.5rem !important;
    }
    .mr-xl-n3 {
        margin-right: -1rem !important;
    }
    .mr-xl-n4 {
        margin-right: -1.25rem !important;
    }
    .mr-xl-n5 {
        margin-right: -1.5rem !important;
    }
}


/* Right Margin ends */


/* Margin Left and Right Starts */

.mx-0 {
    margin-left: 0 !important;
    margin-right: 0 !important;
}

.mx-1 {
    margin-left: 0.25rem !important;
    margin-right: 0.25rem !important;
}

.mx-2 {
    margin-left: 0.5rem !important;
    margin-right: 0.5rem !important;
}

.mx-3 {
    margin-left: 1rem !important;
    margin-right: 1rem !important;
}

.mx-4 {
    margin-left: 1.25rem !important;
    margin-right: 1.25rem !important;
}

.mx-5 {
    margin-left: 1.5rem !important;
    margin-right: 1.5rem !important;
}

.mx-n0 {
    margin-left: 0 !important;
    margin-right: 0 !important;
}

.mx-n1 {
    margin-left: -0.25rem !important;
    margin-right: -0.25rem !important;
}

.mx-n2 {
    margin-left: -0.5rem !important;
    margin-right: -0.5rem !important;
}

.mx-n3 {
    margin-left: -1rem !important;
    margin-right: -1rem !important;
}

.mx-n4 {
    margin-left: -1.25rem !important;
    margin-right: -1.25rem !important;
}

.mx-n5 {
    margin-left: -1.5rem !important;
    margin-right: -1.5rem !important;
}


/* very smaller Screens */

@media (min-width: 320px) {
    .mx-xs-0 {
        margin-left: 0 !important;
        margin-right: 0 !important;
    }
    .mx-xs-1 {
        margin-left: 0.25rem !important;
        margin-right: 0.25rem !important;
    }
    .mx-xs-2 {
        margin-left: 0.5rem !important;
        margin-right: 0.5rem !important;
    }
    .mx-xs-3 {
        margin-left: 1rem !important;
        margin-right: 1rem !important;
    }
    .mx-xs-4 {
        margin-left: 1.25rem !important;
        margin-right: 1.25rem !important;
    }
    .mx-xs-5 {
        margin-left: 1.5rem !important;
        margin-right: 1.5rem !important;
    }
    .mx-xs-n0 {
        margin-left: 0 !important;
        margin-right: 0 !important;
    }
    .mx-xs-n1 {
        margin-left: -0.25rem !important;
        margin-right: -0.25rem !important;
    }
    .mx-xs-n2 {
        margin-left: -0.5rem !important;
        margin-right: -0.5rem !important;
    }
    .mx-xs-n3 {
        margin-left: -1rem !important;
        margin-right: -1rem !important;
    }
    .mx-xs-n4 {
        margin-left: -1.25rem !important;
        margin-right: -1.25rem !important;
    }
    .mx-xs-n5 {
        margin-left: -1.5rem !important;
        margin-right: -1.5rem !important;
    }
}


/* smaller Screens */

@media (min-width: 576px) {
    .mx-sm-0 {
        margin-left: 0 !important;
        margin-right: 0 !important;
    }
    .mx-sm-1 {
        margin-left: 0.25rem !important;
        margin-right: 0.25rem !important;
    }
    .mx-sm-2 {
        margin-left: 0.5rem !important;
        margin-right: 0.5rem !important;
    }
    .mx-sm-3 {
        margin-left: 1rem !important;
        margin-right: 1rem !important;
    }
    .mx-sm-4 {
        margin-left: 1.25rem !important;
        margin-right: 1.25rem !important;
    }
    .mx-sm-5 {
        margin-left: 1.5rem !important;
        margin-right: 1.5rem !important;
    }
    .mx-sm-n0 {
        margin-left: 0 !important;
        margin-right: 0 !important;
    }
    .mx-sm-n1 {
        margin-left: -0.25rem !important;
        margin-right: -0.25rem !important;
    }
    .mx-sm-n2 {
        margin-left: -0.5rem !important;
        margin-right: -0.5rem !important;
    }
    .mx-sm-n3 {
        margin-left: -1rem !important;
        margin-right: -1rem !important;
    }
    .mx-sm-n4 {
        margin-left: -1.25rem !important;
        margin-right: -1.25rem !important;
    }
    .mx-sm-n5 {
        margin-left: -1.5rem !important;
        margin-right: -1.5rem !important;
    }
}


/* Medium Sized Screens */

@media (min-width: 768px) {
    .mx-md-0 {
        margin-left: 0 !important;
        margin-right: 0 !important;
    }
    .mx-md-1 {
        margin-left: 0.25rem !important;
        margin-right: 0.25rem !important;
    }
    .mx-md-2 {
        margin-left: 0.5rem !important;
        margin-right: 0.5rem !important;
    }
    .mx-md-3 {
        margin-left: 1rem !important;
        margin-right: 1rem !important;
    }
    .mx-md-4 {
        margin-left: 1.25rem !important;
        margin-right: 1.25rem !important;
    }
    .mx-md-5 {
        margin-left: 1.5rem !important;
        margin-right: 1.5rem !important;
    }
    .mx-md-n0 {
        margin-left: 0 !important;
        margin-right: 0 !important;
    }
    .mx-md-n1 {
        margin-left: -0.25rem !important;
        margin-right: -0.25rem !important;
    }
    .mx-md-n2 {
        margin-left: -0.5rem !important;
        margin-right: -0.5rem !important;
    }
    .mx-md-n3 {
        margin-left: -1rem !important;
        margin-right: -1rem !important;
    }
    .mx-md-n4 {
        margin-left: -1.25rem !important;
        margin-right: -1.25rem !important;
    }
    .mx-md-n5 {
        margin-left: -1.5rem !important;
        margin-right: -1.5rem !important;
    }
}


/* Large Screens */

@media (min-width: 992px) {
    .mx-lg-0 {
        margin-left: 0 !important;
        margin-right: 0 !important;
    }
    .mx-lg-1 {
        margin-left: 0.25rem !important;
        margin-right: 0.25rem !important;
    }
    .mx-lg-2 {
        margin-left: 0.5rem !important;
        margin-right: 0.5rem !important;
    }
    .mx-lg-3 {
        margin-left: 1rem !important;
        margin-right: 1rem !important;
    }
    .mx-lg-4 {
        margin-left: 1.25rem !important;
        margin-right: 1.25rem !important;
    }
    .mx-lg-5 {
        margin-left: 1.5rem !important;
        margin-right: 1.5rem !important;
    }
    .mx-lg-n0 {
        margin-left: 0 !important;
        margin-right: 0 !important;
    }
    .mx-lg-n1 {
        margin-left: -0.25rem !important;
        margin-right: -0.25rem !important;
    }
    .mx-lg-n2 {
        margin-left: -0.5rem !important;
        margin-right: -0.5rem !important;
    }
    .mx-lg-n3 {
        margin-left: -1rem !important;
        margin-right: -1rem !important;
    }
    .mx-lg-n4 {
        margin-left: -1.25rem !important;
        margin-right: -1.25rem !important;
    }
    .mx-lg-n5 {
        margin-left: -1.5rem !important;
        margin-right: -1.5rem !important;
    }
}


/* Very Large Screens */

@media (min-width: 1200px) {
    .mx-xl-0 {
        margin-left: 0 !important;
        margin-right: 0 !important;
    }
    .mx-xl-1 {
        margin-left: 0.25rem !important;
        margin-right: 0.25rem !important;
    }
    .mx-xl-2 {
        margin-left: 0.5rem !important;
        margin-right: 0.5rem !important;
    }
    .mx-xl-3 {
        margin-left: 1rem !important;
        margin-right: 1rem !important;
    }
    .mx-xl-4 {
        margin-left: 1.25rem !important;
        margin-right: 1.25rem !important;
    }
    .mx-xl-5 {
        margin-left: 1.5rem !important;
        margin-right: 1.5rem !important;
    }
    .mx-xl-n0 {
        margin-left: 0 !important;
        margin-right: 0 !important;
    }
    .mx-xl-n1 {
        margin-left: -0.25rem !important;
        margin-right: -0.25rem !important;
    }
    .mx-xl-n2 {
        margin-left: -0.5rem !important;
        margin-right: -0.5rem !important;
    }
    .mx-xl-n3 {
        margin-left: -1rem !important;
        margin-right: -1rem !important;
    }
    .mx-xl-n4 {
        margin-left: -1.25rem !important;
        margin-right: -1.25rem !important;
    }
    .mx-xl-n5 {
        margin-left: -1.5rem !important;
        margin-right: -1.5rem !important;
    }
}


/* Margin Left and Right ends */


/* Margin Top starts */

.mt-0 {
    margin-top: 0 !important;
}

.mt-1 {
    margin-top: 0.25rem !important;
}

.mt-2 {
    margin-top: 0.5rem !important;
}

.mt-3 {
    margin-top: 1rem !important;
}

.mt-4 {
    margin-top: 1.25rem !important;
}

.mt-5 {
    margin-top: 1.5rem !important;
}

.mt-60 {
    margin-top: 60px !important;
}

.mt-80 {
    margin-top: 80px !important;
}

.mt-100 {
    margin-top: 100px !important;
}

.mt-120 {
    margin-top: 120px !important;
}

.mt-150 {
    margin-top: 150px !important;
}

.mt-n1 {
    margin-top: -0.25rem !important;
}

.mt-n2 {
    margin-top: -0.5rem !important;
}

.mt-n3 {
    margin-top: -1rem !important;
}

.mt-n4 {
    margin-top: -1.25rem !important;
}

.mt-n5 {
    margin-top: -1.5rem !important;
}


/* very smaller Screens */

@media (min-width: 320px) {
    .mt-xs-0 {
        margin-top: 0 !important;
    }
    .mt-xs-1 {
        margin-top: 0.25rem !important;
    }
    .mt-xs-2 {
        margin-top: 0.5rem !important;
    }
    .mt-xs-3 {
        margin-top: 1rem !important;
    }
    .mt-xs-4 {
        margin-top: 1.25rem !important;
    }
    .mt-xs-5 {
        margin-top: 1.5rem !important;
    }
    .mt-xs-60 {
        margin-top: 60px !important;
    }
    .mt-xs-80 {
        margin-top: 80px !important;
    }
    .mt-xs-100 {
        margin-top: 100px !important;
    }
    .mt-xs-120 {
        margin-top: 120px !important;
    }
    .mt-xs-150 {
        margin-top: 150px !important;
    }
    .mt-xs-n1 {
        margin-top: -0.25rem !important;
    }
    .mt-xs-n2 {
        margin-top: -0.5rem !important;
    }
    .mt-xs-n3 {
        margin-top: -1rem !important;
    }
    .mt-xs-n4 {
        margin-top: -1.25rem !important;
    }
    .mt-xs-n5 {
        margin-top: -1.5rem !important;
    }
}


/* smaller Screens */

@media (min-width: 576px) {
    .mt-sm-0 {
        margin-top: 0 !important;
    }
    .mt-sm-1 {
        margin-top: 0.25rem !important;
    }
    .mt-sm-2 {
        margin-top: 0.5rem !important;
    }
    .mt-sm-3 {
        margin-top: 1rem !important;
    }
    .mt-sm-4 {
        margin-top: 1.25rem !important;
    }
    .mt-sm-5 {
        margin-top: 1.5rem !important;
    }
    .mt-sm-60 {
        margin-top: 60px !important;
    }
    .mt-sm-80 {
        margin-top: 80px !important;
    }
    .mt-sm-100 {
        margin-top: 100px !important;
    }
    .mt-sm-120 {
        margin-top: 120px !important;
    }
    .mt-sm-150 {
        margin-top: 150px !important;
    }
    .mt-sm-n1 {
        margin-top: -0.25rem !important;
    }
    .mt-sm-n2 {
        margin-top: -0.5rem !important;
    }
    .mt-sm-n3 {
        margin-top: -1rem !important;
    }
    .mt-sm-n4 {
        margin-top: -1.25rem !important;
    }
    .mt-sm-n5 {
        margin-top: -1.5rem !important;
    }
}


/* Medium Sized Screens */

@media (min-width: 768px) {
    .mt-md-0 {
        margin-top: 0 !important;
    }
    .mt-md-1 {
        margin-top: 0.25rem !important;
    }
    .mt-md-2 {
        margin-top: 0.5rem !important;
    }
    .mt-md-3 {
        margin-top: 1rem !important;
    }
    .mt-md-4 {
        margin-top: 1.25rem !important;
    }
    .mt-md-5 {
        margin-top: 1.5rem !important;
    }
    .mt-md-6 {
        margin-top: 2rem !important;
    }
    .mt-md-60 {
        margin-top: 60px !important;
    }
    .mt-md-80 {
        margin-top: 80px !important;
    }
    .mt-md-100 {
        margin-top: 100px !important;
    }
    .mt-md-120 {
        margin-top: 120px !important;
    }
    .mt-md-150 {
        margin-top: 150px !important;
    }
    .mt-md-n1 {
        margin-top: -0.25rem !important;
    }
    .mt-md-n2 {
        margin-top: -0.5rem !important;
    }
    .mt-md-n3 {
        margin-top: -1rem !important;
    }
    .mt-md-n4 {
        margin-top: -1.25rem !important;
    }
    .mt-md-n5 {
        margin-top: -1.5rem !important;
    }
}


/* Large Screens */

@media (min-width: 992px) {
    .mt-lg-0 {
        margin-top: 0 !important;
    }
    .mt-lg-1 {
        margin-top: 0.25rem !important;
    }
    .mt-lg-2 {
        margin-top: 0.5rem !important;
    }
    .mt-lg-3 {
        margin-top: 1rem !important;
    }
    .mt-lg-4 {
        margin-top: 1.25rem !important;
    }
    .mt-lg-5 {
        margin-top: 1.5rem !important;
    }
    .mt-lg-60 {
        margin-top: 60px !important;
    }
    .mt-lg-80 {
        margin-top: 80px !important;
    }
    .mt-lg-100 {
        margin-top: 100px !important;
    }
    .mt-lg-120 {
        margin-top: 120px !important;
    }
    .mt-lg-150 {
        margin-top: 150px !important;
    }
    .mt-lg-n1 {
        margin-top: -0.25rem !important;
    }
    .mt-lg-n2 {
        margin-top: -0.5rem !important;
    }
    .mt-lg-n3 {
        margin-top: -1rem !important;
    }
    .mt-lg-n4 {
        margin-top: -1.25rem !important;
    }
    .mt-lg-n5 {
        margin-top: -1.5rem !important;
    }
}


/* Very Large Screens */

@media (min-width: 1200px) {
    .mt-xl-0 {
        margin-top: 0 !important;
    }
    .mt-xl-1 {
        margin-top: 0.25rem !important;
    }
    .mt-xl-2 {
        margin-top: 0.5rem !important;
    }
    .mt-xl-3 {
        margin-top: 1rem !important;
    }
    .mt-xl-4 {
        margin-top: 1.25rem !important;
    }
    .mt-xl-5 {
        margin-top: 1.5rem !important;
    }
    .mt-xl-60 {
        margin-top: 60px !important;
    }
    .mt-xl-80 {
        margin-top: 80px !important;
    }
    .mt-xl-100 {
        margin-top: 100px !important;
    }
    .mt-xl-120 {
        margin-top: 120px !important;
    }
    .mt-xl-150 {
        margin-top: 150px !important;
    }
    .mt-xl-n1 {
        margin-top: -0.25rem !important;
    }
    .mt-xl-n2 {
        margin-top: -0.5rem !important;
    }
    .mt-xl-n3 {
        margin-top: -1rem !important;
    }
    .mt-xl-n4 {
        margin-top: -1.25rem !important;
    }
    .mt-xl-n5 {
        margin-top: -1.5rem !important;
    }
}


/* Margin Top ends */


/* Margin bottom starts */

.mb-60 {
    margin-bottom: 60px;
}


/* Margin bottom ends */


/* Bootstrap CSS classes for Padding and Margin ends */

@media screen and (min-width: 992px) {
    .large-8 {
        margin: 0 auto;
    }
}