/* Text Utilities */

.u-text-center {
  text-align: center;
}

.color-white {
  color: #ffffff !important;
}

.heading-2 {
  font-weight: 700;
  font-size: 40px;
  line-height: 48px;
}

@media (max-width: 767px) {
    h2.heading-2 {
        font-size: 30px !important;
    }
}

.heading-3 {
  font-weight: 500;
  font-size: 23.06px;
  line-height: 28.8px;
}

.body-text {
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
}

/* General */

.new-d-none {
  display: none !important;
}

.new-d-block {
  display: block !important;
}

.new-d-flex {
  display: flex !important;
}

.new-d-grid {
  display: grid !important;
}

@media (min-width: 768px) {
  .new-d-none-md {
    display: none !important;
  }
  .new-d-block-md {
    display: block !important;
  }
  .new-d-flex-md {
    display: flex !important;
  }
  .new-d-grid-md {
    display: grid !important;
  }
}

@media (min-width: 992px) {
  .new-d-none-lg {
    display: none !important;
  }
  .new-d-block-lg {
    display: block !important;
  }
  .new-d-flex-lg {
    display: flex !important;
  }
  .new-d-grid-lg {
    display: grid !important;
  }
}

@media (min-width: 1322px) {
  .new-d-none-xl {
    display: none !important;
  }
  .new-d-block-xl {
    display: block !important;
  }
  .new-d-flex-xl {
    display: flex !important;
  }
  .new-d-grid-xl {
    display: grid !important;
  }
}