/*-------------------------- LAYOUTS -------------------------*/

/*--- POSITION ---*/
.pos-relative {
  position: relative;
}

.z-index-1 {
  z-index: 1;
}

/*--- WIDTH / HEIGHT ---*/
.width-100-pct {
  width: 100% !important;
}

.height-100-pct {
  height: 100%;
}

/*--- SECTION ---*/
.section--dark {
  background-color: var(--background-secondary);
}

.section--light {
  background-color: var(--color-text-light);
}

.section-overlay {
  width: 100%;
  height: 100%;
  background-image: url("../../assets/images/h7_shape-1.png");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0.1;
}

.section-spacing-v-10 {
  padding-top: 10rem;
  padding-bottom: 10rem;
}

.section-spacing-v-12 {
  padding-top: 12rem;
  padding-bottom: 12rem;
}

@media only screen and (max-width: 27.5em) {
  .section-spacing-v-12 {
    padding-top: 8rem;
    padding-bottom: 8rem;
  }
}

/*-------------------------- LAYOUTS -------------------------*/

/*-------------------------- BORDERS -------------------------*/

.border-top-primary-light {
  border-top: 1px solid rgba(153, 214, 221, 0.2);
}

/*--- SEPARATORS ---*/
.hline-separator {
  display: block;
  width: 30%;
  height: 3px;
  background-color: var(--background-dark);
  border-radius: 10rem;
  margin: 2.5rem 0;
}

.hline-separator--primary {
  background-color: var(--background-primary);
}

.hline-separator--centered {
  margin: 2.5rem auto;
}

/*-------------------------- BORDERS -------------------------*/

/*------------------------ VISIBILITY ------------------------*/

@media only screen and (min-width: 56.25em) {
  .hide--desktop {
    display: none !important;
  }
}

@media only screen and (max-width: 56.25em) {
  .hide--tab {
    display: none !important;
  }
}

@media only screen and (max-width: 27.5em) {
  .hide--mobile {
    display: none !important;
  }
}

/*------------------------ VISIBILITY ------------------------*/
