@charset "utf-8";
/* CSS Document -- home.css */

/* --- offset '#about' fragment link --- */
html {
    scroll-padding-top: 146px;
}

/* ------------------- hero ------------------- */
.hero {
/*  background: url("../img/home-road-worker.jpg") no-repeat center center;*/
  background: url("../img/home-retail-worker.jpg") no-repeat center center;
  position: relative;
  width: 100%;
  min-height: 200px;
  background-size: cover;
  padding-top: 41.66%;
}
.hero-text {
  /*padding-top: var(--vertical-spacing);
  padding-bottom: var(--vertical-spacing);*/
  color: #fff;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.hero-text h1 {
  color: #fff;
  font-size: calc(1.85rem + 3.5vw);
  padding: 0 1rem;
}
@media (min-width: 1200px) {
  .hero-text h1 {
    font-size: 4.75rem;
  }
}
.hero .lead {
  position: absolute;
  top: 70%;
  text-transform: uppercase;
  font-family: "Oswald", sans-serif;
  font-size: 3vw;
  font-weight: 400;
}
.hero .lead .drop-text {
  position: relative;
  top: 2.4vw;
  margin-left: 1.75vw;
}
.hero .lead .drop-text::before {
  content: "";
  width: 0.6vw;
  height: 110%;
  position: absolute;
  top: -1.25vw;
  background: #fff;
  transform: skew(-45deg);
  left: -1.55vw;
}
@media (min-width: 1200px) {
  .hero .lead {
    font-size: 2.25rem;
  }
  .hero .lead .drop-text {
    top: 1.85rem;
    margin-left: 1rem;
  }
  .hero .lead .drop-text::before {
    width: 7px;
    height: 110%;
    top: -15px;
    left: -1rem;
  }
}

/* ------------------- cameos ------------------- */
.cameo-bg {
    max-width: 2600px;
    margin-left: auto;
    margin-right: auto;
    height: 380px;
}

.vanilla {
  background-color: var(--tc-vanilla);
}

.container-fluid {
  --section-title-offset: 120px;
}

/*.container-fluid.p-0.vanilla {
    margin-top: -1px;
}*/

.cameo-container {
  margin-top: calc(var(--section-title-offset) * -1)
}

.pt-cameo-section-title {
    padding-top: var(--section-title-offset);
}

/*.cameo-section-title {
    position: relative;
    top: var(--section-title-offset);
}*/

.cameo-left {
  background-image: url("../img/cameo-left-bg-scaled-slice.png");
  background-size: contain;
  background-position: 100% 0;
  background-repeat: no-repeat;
}

.cameo-right {
  background-image: url("../img/cameo-right-bg-scaled-slice.png");
  background-size: contain;
  background-position: 0 0;
  background-repeat: no-repeat;
}

.cameo-right .container-xxl {
    height: 100%;
}

.cameo-right .row {
    height: 100%;
    align-items: center;
}

@media (max-width: 1399.98px) {
  .cameo-left {
    background-position: 540px 0;
  }
  .cameo-right{
    background-position: -200px 0;
  }
}

@media (max-width: 1199.98px) {
  .cameo-left {
    background-position: 440px 0;
  }
  .cameo-right{
    background-position: -330px 0;
  }
}

@media (max-width: 991.98px) {
  /* up to lg breakpoint */
  .cameo-bg {
    height: unset;
  }
  .vanilla {
    background-color: var(--tc-vanilla);
  }
  .container-fluid {
    --section-title-offset: 120px;
  }
  .cameo-container {
    margin-top: calc(var(--section-title-offset) * -1)
  }
  .pt-cameo-section-title {
      padding-top: var(--section-title-offset);
  }
  .cameo-left,
  .cameo-right {
    background-image: none;
  }
  .cameo-right .container-xxl {
      height: unset;
  }
  .cameo-right .row {
      height: unset;
      align-items: start;
  }
}