.header-bg-cont {
  position: fixed;
  top: 0;
  width: 100%;
  height: 1700px;
  background: #ffffff;
  z-index: -999;
}

.header-bg {
  position: absolute;
  top: calc(175px - 10vw);
  width: 100%;
  height: 1700px;
  background-image: url("../../assets/img/hero.webp");
  background-size: 100vw;
  background-repeat: no-repeat;
}

@media (min-width: 576px) {
  .header-bg {
    top: calc(162px - 8vw);
  }
}

@media (min-width: 768px) {
  .header-bg {
    top: calc(160px - 8vw);
  }
}

@media (min-width: 992px) {
  .header-bg {
    top: calc(161px - 5vw);
  }
}

.heading-txt-shadow {
  text-shadow: 0px 0px 6px rgb(255 255 255), 0px 0px 6px rgb(255 255 255);
}

.hero-text-cont {
  background: rgba(210,210,210,0.6);
  box-shadow: 2px 3px 15px rgba(0,0,0,0.5);
  padding: 20px;
}

/* Services Images */

.services {
  position: relative;
  z-index: 10;
}

.services-bg-wrapper {
  position: absolute;
  left: 0;
  width: 100%;
  padding: 10px 15px;
  margin-top: -18px;
  z-index: 0;
}

@media (min-width: 576px) {
  .services-bg-wrapper {
    margin-top: -35px;
  }
}

@media (min-width: 768px) {
  .services-bg-wrapper {
    margin-top: -8px;
  }
}

@media (min-width: 992px) {
  .services-bg-wrapper {
    margin-top: -34px;
  }
}

@media (min-width: 1200px) {
  .services-bg-wrapper {
    margin-top: -45px;
    padding: 8px 50px;
  }
}

.services-bg {
  position: relative;
  height: calc(6px + 38vw);
  background-image: url("../../assets/img/services-left-sm.jpg"), url("../../assets/img/services-right-sm.jpg");
  background-position: left center, right center;
  background-repeat: no-repeat;
  background-size: contain;
  overflow: hidden;
}

@media (min-width: 576px) {
  .services-bg {
    height: 240px;
    background-image: url("../../assets/img/services-left-sm.jpg"), url("../../assets/img/services-right-sm.jpg");
  }
}

@media (min-width: 768px) {
  .services-bg {
    height: 150px;
    background-image: url("../../assets/img/services-left.jpg"), url("../../assets/img/services-right.jpg");
    background-position: left center, right center;
  }
}

@media (min-width: 992px) {
  .services-bg {
    height: 200px;
  }
}

@media (min-width: 1200px) {
  .services-bg {
    height: 235px;
  }
}

@media (min-width: 1400px) {
  .services-bg {
    height: 256px;
  }
}

/* Home Page Text */

.att-text {
  font-family: 'Roboto Condensed';
  font-size: 28px;
  line-height: 1.3;
  font-weight: 700;
}

@media (min-width: 576px) {
  .att-text {
    font-size: calc(18px + 1.75vw);
  }
}

@media (min-width: 768px) {
  .att-text {
    font-size: calc(20px + 2.3vw);
  }
}

@media (min-width: 992px) {
  .att-text {
    font-size: calc(21px + 3vw);
  }
}

@media (min-width: 1400px) {
  .att-text {
    font-size: 64px;
  }
}

