/************
 *
 * Text Media Styles
 *
 ***********/
/******* Functions *******/
/******* Mixins *******/
/******* Bootstrap *******/
/**
* Fonts
*/
:root {
  --bs-primary: $blue;
  --bs-secondary: $gray-600;
  --bs-tertiary: $teal;
  --bs-success: $green;
  --bs-info: $cyan;
  --bs-warning: $yellow;
  --bs-danger: $red;
  --bs-light: $gray-100;
  --bs-dark: $gray-900;
}

/******* Variables *******/
.off-grid {
  position: relative;
  height: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.off-grid__bg-half {
  position: relative;
}
.off-grid__bg-half img,
.off-grid__bg-half video {
  width: 100%;
  position: relative;
}
.off-grid__bg-half:hover .edit_image_holder {
  opacity: 1;
}
@media (max-width: 767.98px) {
  .off-grid__bg-half {
    aspect-ratio: 1/1;
  }
}
.off-grid__header {
  margin-top: 0;
  margin-bottom: 1.5rem;
}
.off-grid__header.display-1 {
  text-indent: -1em;
  padding-left: 1em;
}
.off-grid__text {
  color: var(--bs-dark);
  text-transform: none !important;
  max-width: 80%;
}
.off-grid__text * {
  text-transform: none !important;
}
.off-grid__text *:last-child {
  margin-bottom: 0 !important;
}
.off-grid[data-bs-theme=dark] .off-grid__text {
  color: var(--bs-light) !important;
}
.off-grid[data-bs-theme=dark] .off-grid__text * {
  color: var(--bs-light) !important;
}
.off-grid .component__buttons-container {
  margin-top: 1rem;
}
.off-grid__content > * {
  margin-bottom: 1.5rem;
}
.off-grid__content > *:first-child {
  margin-top: 1.5rem;
}
