/* Text Helpers */

.text-center {
  text-align: center;
}
.text-left {
  text-align: left;
}
.text-right {
  text-align: right;
}
.uppercase {
  text-transform: uppercase;
}
.underline {
  text-decoration: underline;
}


/*  --- Building Helpers */

.w-100 {
  width: 100%;
}
.w-auto {
  width: auto;
}
.h-100 {
  height: 100%;
}
.h-auto {
  height: auto;
}
.m-auto {
  margin: auto;
}

/* Margin & Padding */

.mlr-auto,
.mlf-auto {
  margin-left: auto;
  margin-right: auto;
}
.m-0 {
  margin: 0;
}
.mt-0 {
  margin-top: 0 !important;
}
.mt-10 {
  margin-top: 10px;
}
.mt-20 {
  margin-top: 20px;
}
.mt-30 {
  margin-top: 30px;
}
.mb-0 {
  margin-bottom: 0 !important;
}
.mb-5 {
  margin-bottom: 5px;
}
.mb-10 {
  margin-bottom: 10px;
}
.mb-20 {
  margin-bottom: 20px;
}
.mb-30 {
  margin-bottom: 30px;
}
.mb-35 {
  margin-bottom: 35px;
}
.mb-40 {
  margin-bottom: 40px;
}
.mb-45 {
  margin-bottom: 45px;
}
.mb-60 {
  margin-bottom: 60px;
}
.p-0 {
  padding: 0 !important;
}
.pt-0 {
  padding-top: 0 !important;
}
.pb-0 {
  padding-bottom: 0 !important;
}
.pt-20 {
  padding-top: 20px;
}
.pb-20 {
  padding-bottom: 20px;
}
.pt-30 {
  padding-top: 30px;
}
.pt-40 {
  padding-top: 40px;
}
.pt-50 {
  padding-top: 50px;
}
.pb-30 {
  padding-bottom: 30px;
}
.pb-40 {
  padding-bottom: 40px;
}
.pb-50 {
  padding-bottom: 50px;
}


/* --- Flex */


.d-flex {
  display: flex;
}
.d-flex-center {
  justify-content: center;
}
.d-flex-between {
  justify-content: space-between;
}
.d-flex-start {
  justify-content: flex-start;
}
.d-flex-end {
  justify-content: flex-end;
}
.flex-wrap {
  flex-wrap: wrap;
}
.flex-1 {
  flex: 1;
}
.d-flex-col {
  flex-direction: column;
}
.flex-center-xy,
.middle-content {
  display: flex;
  justify-content: center;
  flex-direction: column;
}
.end-content,
.flex-end-xy {
  display: flex;
  justify-content: flex-end;
  flex-direction: column;
}

.pull-left,
.float-left {
  float: left;
}
.pull-right,
.float-right {
  float: right;
}


/* --- Position & Display */

.overflow-visible {
  overflow: visible;
}
.overflow-hidden {
  overflow: hidden;
}
.overlay {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
}
.position-relative {
  position: relative;
}
.position-absolute {
  position: absolute;
}
.position-fixed {
  position: fixed;
}
.d-none {
  display: none;
}
.d-block {
  display: block;
}
.d-inline-block {
  display: inline-block;
}
.z-1 {
  z-index: 1;
}
.z-2 {
  z-index: 2;
}
.z-3 {
  z-index: 3;
}


.wht-txt,
.wht-txt a:not(.button) {
  color: #fff;
}


.bg-img-contain {
  height: auto !important;
  object-fit: contain !important;
  min-height: unset !important;
}
.bg-img-cover {
  height: 100% !important;
  object-fit: cover !important;
}
.bg-img-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: calc(100% + 2px);
  height: calc(100% + 2px);
  object-fit: cover;
  pointer-events: none;
}
.bg-img-center-top {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% + 2px);
  height: auto;
  object-fit: cover;
  min-height: 100%;
  pointer-events: none;
}
.bg-img-center-bottom {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%);
  width: calc(100% + 2px);
  height: auto;
  object-fit: cover;
  min-height: 100%;
  pointer-events: none;
}

