.hero {
  position: relative;
  margin: auto;
  width: calc(100% - 20px);
  height: 50vh;
  min-height: 500px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  padding: 10px;
}

.heroVideo {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}

.heroContent {
  position: relative;
  overflow: hidden;
  padding: 50px 160px;
  margin: 10vh 0;
  box-sizing: border-box;
}

.heroText {
  color: white;
  font-size: 4em;
  font-weight: 300;
  font-family: "Oswald", sans-serif;
  text-align: left;
  margin: 0;
  padding: 0;
  text-shadow: 1px 1px 5px var(--darkBg);
}

.heroBack {
  width: 700px;
  height: 3000px;
  transform: rotate(25deg);
  position: absolute;
  top: -500px;
  left: -272px;
  backdrop-filter: blur(5px);
  z-index: -1;
  background-color: #ffffff3b;
}

@media screen and (max-width: 1000px) {
  .heroBack {
    width: 100%;
    height: 100%;
    transform: none;
    top: 0;
    left: 0;
  }

  .heroContent {
    padding: 50px 80px;
    margin: 10vh auto;
    width: fit-content;
  }
}

@media screen and (max-width: 800px) {
  .hero{
    min-height: 200px;
    height: fit-content;
  }

  .heroContent {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 50px auto;
    padding: 30px 5px;
    width: 100%;
  }

  .heroText {
    font-size: 2em;
    text-align: center;
    padding: 0 10px;
  }
}


.innerSection {
  margin: 0 auto;
  padding: 20px 0;
}

.ourPromise {
  width: min(1200px, 80vw);
}

.ourPromise h1,
.ourPromise h2 {
  text-align: left;
}

.ourPromise h2 {
  margin: 20px 0;
}

.ourPromise ul {
  margin-left: 20px;
}

.ourPromise ul li {
  font-size: 1.4em;
  font-weight: 300;
  line-height: 35px;
  margin: 20px 0;
  text-align: left;
  font-family: "Montserrat";
}

.promises {
  background-color: var(--accentColor);
  font-size: 1.3em;
  font-weight: 500;
  padding: 2px 5px;
  color: #fff;
}

.taglineBack {
  display: flex;
  background-image: url("../Design_Img/701A9377-Edit.png");
  background-size: cover;
  background-position: center;
  height: 70vh;
  align-items: center;
  justify-content: center;
}

@media screen and (max-width: 1000px) {
  .taglineBack {
    height: fit-content;
    padding: 40px 0px;
  }
}

.tagline {
  color: #000;
  text-align: center;
  padding: 60px 80px;
  background-color: #ffffff87;
  backdrop-filter: blur(20px);
}

.tagline h1 {
  font-size: 3em;
  font-weight: 300;
  line-height: 63px;
  text-shadow: 0 0 4px #fdfcfc75;
}

@media screen and (max-width: 1000px) {
  .promises {
    line-height: 40px;
    font-size: 1.2em;
  }

  .ourPromise h2 {
    font-size: 1.2em;
    font-weight: 500;
    line-height: 24px;
  }

  .ourPromise ul {
    margin-left: 0;
    list-style: none;
  }

  .tagline {
    padding: 60px 20px;
  }

  .tagline h1 {
    font-size: 2em;
    line-height: 40px;
  }
}
