.h2 {
  font-size: 2.2rem;
  font-weight: 800;
  line-height: 1.2;
}

.h3 {
  font-size: 1.8rem;
  font-weight: 800;
  line-height: 1.2;
}

.h4 {
  font-size: 1.5rem;
  font-weight: 800;
  line-height: 1.2;
}

.float-left {
  float: left !important;
}
.float-right {
  float: right !important;
}
.float-none {
  float: none !important;
}
.float-clear {
  clear: both;
}
.float-clear-left {
  clear: left;
}
.float-clear-right {
  clear: right;
}

.font-italic {
  font-style: italic;
}

.small,
.font-small {
  font-size: 0.8rem;
}

.font-medium {
  font-size: 1.2rem;
}

.font-large {
  font-size: 1.5rem;
}

.d-block {
  display: block !important;
}
.d-inline {
  display: inline !important;
}
.d-inline-block {
  display: inline-block !important;
}
.d-none {
  display: none !important;
}

/* flex box utils */
.d-flex {
  display: flex !important;
}
.flex-wrap {
  flex-wrap: wrap;
}
.flex-column {
  flex-direction: column !important;
}
.flex-row {
  flex-direction: row !important;
}
.justify-content-center {
  justify-content: center !important;
}
.justify-content-start {
  justify-content: flex-start !important;
}
.justify-content-end {
  justify-content: flex-end !important;
}
.justify-content-between {
  justify-content: space-between !important;
}
.justify-content-around {
  justify-content: space-around !important;
}
.align-items-center {
  align-items: center !important;
}
.align-items-start {
  align-items: flex-start !important;
}
.align-items-end {
  align-items: flex-end !important;
}
.align-items-baseline {
  align-items: baseline !important;
}
.align-items-stretch {
  align-items: stretch !important;
}
.align-content-center {
  align-content: center !important;
}
.align-content-start {
  align-content: flex-start !important;
}
.align-content-end {
  align-content: flex-end !important;
}
.align-content-between {
  align-content: space-between !important;
}
.align-content-around {
  align-content: space-around !important;
}
.align-content-stretch {
  align-content: stretch !important;
}
.flex-wrap {
  flex-wrap: wrap !important;
}
.flex-nowrap {
  flex-wrap: nowrap !important;
}
.flex-wrap-reverse {
  flex-wrap: wrap-reverse !important;
}
.flex-grow-1 {
  flex-grow: 1 !important;
}
.flex-grow-2 {
  flex-grow: 2 !important;
}
.flex-grow-3 {
  flex-grow: 3 !important;
}
.flex-grow-4 {
  flex-grow: 4 !important;
}
.flex-grow-5 {
  flex-grow: 5 !important;
}
.flex-shrink-1 {
  flex-shrink: 1 !important;
}
.flex-shrink-2 {
  flex-shrink: 2 !important;
}
.flex-shrink-3 {
  flex-shrink: 3 !important;
}
.flex-shrink-4 {
  flex-shrink: 4 !important;
}
.flex-shrink-5 {
  flex-shrink: 5 !important;
}
.flex-1 {
  flex: 1 !important;
}
.flex-2 {
  flex: 2 !important;
}
.flex-3 {
  flex: 3 !important;
}
.flex-4 {
  flex: 4 !important;
}
.flex-5 {
  flex: 5 !important;
}
.order-1 {
  order: 1 !important;
}
.order-2 {
  order: 2 !important;
}

.flex-basis-30 {
  flex-basis: 30% !important;
}
.flex-basis-50 {
  flex-basis: 45% !important;
}

.flex-break {
  flex-basis: 100%;
  height: 0;
}

/* text utils */
.text-center {
  text-align: center !important;
}
.text-left {
  text-align: left !important;
}
.text-right {
  text-align: right !important;
}
.text-justify {
  text-align: justify !important;
}
.text-uppercase {
  text-transform: uppercase !important;
}
.text-lowercase {
  text-transform: lowercase !important;
}
.text-capitalize {
  text-transform: capitalize !important;
}
.text-muted {
  color: #6c757d !important;
}
.text-primary {
  color: #007bff !important;
}
.text-secondary {
  color: #6c757d !important;
}
.text-success {
  color: #28a745 !important;
}
.text-danger {
  color: #dc3545 !important;
}
.text-warning {
  color: #ffc107 !important;
}
.text-info {
  color: #17a2b8 !important;
}
.text-light {
  color: #f8f9fa !important;
}
.text-dark {
  color: #343a40 !important;
}
.text-white {
  color: #fff !important;
}
.links-white a,
.links-white a:hover,
.links-white a:visited,
.links-white a:active {
  color: #fff !important;
}
.text-black {
  color: #000 !important;
}

/* background utils */
.bg-primary {
  background-color: #007bff !important;
}
.bg-secondary {
  background-color: #6c757d !important;
}
.bg-success {
  background-color: #28a745 !important;
}
.bg-danger {
  background-color: #dc3545 !important;
}
.bg-warning {
  background-color: #ffc107 !important;
}
.bg-info {
  background-color: #17a2b8 !important;
}
.bg-light {
  background-color: #f8f9fa !important;
}
.bg-dark {
  background-color: #343a40 !important;
}
.bg-white {
  background-color: #fff !important;
}
.bg-black {
  background-color: #000 !important;
}

/* border utils */
.border {
  border: 1px solid #454545 !important;
}
.border-top {
  border-top: 1px solid #dee2e6 !important;
}
.border-right {
  border-right: 1px solid #dee2e6 !important;
}
.border-bottom {
  border-bottom: 1px solid #dee2e6 !important;
}
.border-left {
  border-left: 1px solid #dee2e6 !important;
}
.border-0 {
  border: 0 !important;
}
.border-top-0 {
  border-top: 0 !important;
}
.border-right-0 {
  border-right: 0 !important;
}
.border-bottom-0 {
  border-bottom: 0 !important;
}
.border-left-0 {
  border-left: 0 !important;
}
.border-primary {
  border-color: #007bff !important;
}
.border-secondary {
  border-color: #6c757d !important;
}
.border-success {
  border-color: #28a745 !important;
}
.border-danger {
  border-color: #dc3545 !important;
}
.border-warning {
  border-color: #ffc107 !important;
}
.border-info {
  border-color: #17a2b8 !important;
}
.border-light {
  border-color: #f8f9fa !important;
}
.border-dark {
  border-color: #343a40 !important;
}
.border-white {
  border-color: #fff !important;
}
.border-black {
  border-color: #000 !important;
}

/* rounded utils */
.rounded {
  border-radius: 0.25rem !important;
}
.rounded-top {
  border-top-left-radius: 0.25rem !important;
  border-top-right-radius: 0.25rem !important;
}
.rounded-right {
  border-top-right-radius: 0.25rem !important;
  border-bottom-right-radius: 0.25rem !important;
}
.rounded-bottom {
  border-bottom-right-radius: 0.25rem !important;
  border-bottom-left-radius: 0.25rem !important;
}
.rounded-left {
  border-top-left-radius: 0.25rem !important;
  border-bottom-left-radius: 0.25rem !important;
}
.rounded-circle {
  border-radius: 50% !important;
}
.rounded-0 {
  border-radius: 0 !important;
}
.rounded-sm {
  border-radius: 0.2rem !important;
}
.rounded-lg {
  border-radius: 0.3rem !important;
}
.rounded-xl {
  border-radius: 0.4rem !important;
}
.rounded-xxl {
  border-radius: 0.5rem !important;
}

/* shadow utils */
.shadow {
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
}
.shadow-sm {
  box-shadow: 0 0.2rem 0.5rem rgba(0, 0, 0, 0.15) !important;
}
.shadow-lg {
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
}
.shadow-none {
  box-shadow: none !important;
}

/* width utils */
.w-100 {
  width: 100% !important;
}
.w-70 {
  width: 70% !important;
}
.w-50 {
  width: 50% !important;
}
.w-30 {
  width: 30% !important;
}
.w-25 {
  width: 25% !important;
}
.w-75 {
  width: 75% !important;
}
.w-auto {
  width: auto !important;
}

.mw-50 {
  min-width: 45% !important;
}
.mw-30 {
  min-width: 30% !important;
}
.mw-25 {
  min-width: 25% !important;
}
.mw-75 {
  min-width: 75% !important;
}

.mxw-50 {
  max-width: 45% !important;
}
.mxw-30 {
  max-width: 30% !important;
}
.mxw-25 {
  max-width: 25% !important;
}
.mxw-75 {
  max-width: 75% !important;
}

/* height utils */
.h-100 {
  height: 100% !important;
}
.h-50 {
  height: 50% !important;
}

/* margin utils */

.mt-0 {
  margin-top: 0 !important;
}
.mt-1 {
  margin-top: 0.5rem !important;
}
.mt-2 {
  margin-top: 0.8rem !important;
}
.mt-3 {
  margin-top: 1rem !important;
}
.mt-4 {
  margin-top: 1.4rem !important;
}
.mt-5 {
  margin-top: 1.8rem !important;
}

.mr-0 {
  margin-right: 0 !important;
}
.mr-1 {
  margin-right: 0.5rem !important;
}
.mr-2 {
  margin-right: 0.8rem !important;
}
.mr-3 {
  margin-right: 1rem !important;
}
.mr-4 {
  margin-right: 1.4rem !important;
}
.mr-5 {
  margin-right: 1.8rem !important;
}

.mb-0 {
  margin-bottom: 0 !important;
}
.mb-1 {
  margin-bottom: 0.5rem !important;
}
.mb-2 {
  margin-bottom: 0.8rem !important;
}
.mb-3 {
  margin-bottom: 1rem !important;
}
.mb-4 {
  margin-bottom: 1.4rem !important;
}
.mb-5 {
  margin-bottom: 1.8rem !important;
}
.mb-10 {
  margin-bottom: 2.8rem !important;
}

.ml-0 {
  margin-left: 0 !important;
}
.ml-1 {
  margin-left: 0.5rem !important;
}
.ml-2 {
  margin-left: 0.8rem !important;
}
.ml-3 {
  margin-left: 1rem !important;
}
.ml-4 {
  margin-left: 1.4rem !important;
}
.ml-5 {
  margin-left: 1.8rem !important;
}

/* padding utils */

.pt-0 {
  padding-top: 0 !important;
}
.pt-1 {
  padding-top: 0.5rem !important;
}
.pt-2 {
  padding-top: 0.8rem !important;
}
.pt-3 {
  padding-top: 1rem !important;
}
.pt-4 {
  padding-top: 1.4rem !important;
}
.pt-5 {
  padding-top: 1.8rem !important;
}

.pr-0 {
  padding-right: 0 !important;
}
.pr-1 {
  padding-right: 0.5rem !important;
}
.pr-2 {
  padding-right: 0.8rem !important;
}
.pr-3 {
  padding-right: 1rem !important;
}
.pr-4 {
  padding-right: 1.4rem !important;
}
.pr-5 {
  padding-right: 1.8rem !important;
}

.pb-0 {
  padding-bottom: 0 !important;
}
.pb-1 {
  padding-bottom: 0.5rem !important;
}
.pb-2 {
  padding-bottom: 0.8rem !important;
}
.pb-3 {
  padding-bottom: 1rem !important;
}
.pb-4 {
  padding-bottom: 1.4rem !important;
}
.pb-5 {
  padding-bottom: 1.8rem !important;
}

.pl-0 {
  padding-left: 0 !important;
}
.pl-1 {
  padding-left: 0.5rem !important;
}
.pl-2 {
  padding-left: 0.8rem !important;
}
.pl-3 {
  padding-left: 1rem !important;
}
.pl-4 {
  padding-left: 1.4rem !important;
}
.pl-5 {
  padding-left: 1.8rem !important;
}
.bg-transparent {
  background-color: transparent !important;
}

/* for larger devices */
@media (min-width: 992px) {
  .md-flex-row {
    flex-direction: row !important;
  }
  .md-w-30 {
    width: 36% !important;
  }
  .md-w-50 {
    width: 50% !important;
  }
  .md-w-70 {
    width: 70% !important;
  }
  .md-mw-50 {
    min-width: 50% !important;
  }
  .md-mxw-50 {
    max-width: 50% !important;
  }
  .md-flex-basis-50 {
    flex-basis: 50% !important;
  }
}
