:root {
  --black: #333;
  --dark-slate-blue: #001e45;
  --dark-red: #8a1e05;
  --white: white;
  --light-sea-green: #00aca2;
  --gold: #f6dd4f;
  --brown: #b22234;
}

.body {
  color: var(--black);
  font-family: Poppins, sans-serif;
  font-size: 18px;
  line-height: 1.75em;
}

.hero {
  background-image: url('../images/winter-couple.jpg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: scroll;
  justify-content: flex-start;
  align-items: flex-end;
  height: 100vh;
  padding-bottom: 2%;
  padding-left: 0%;
  padding-right: 0%;
  display: flex;
  position: relative;
}

.hero-wrapper-div {
  z-index: 1;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  width: 100%;
  max-width: none;
  padding: 0;
  display: flex;
  position: static;
  inset: 0%;
}

.hero-h2 {
  background-color: var(--dark-red);
  color: var(--white) !important;
  text-align: center;
  text-transform: uppercase;
  width: 100%;
  min-width: 1000px;
  margin-top: 0;
  margin-bottom: 30px;
  padding: 10px 30px;
  font-size: 2em;
  font-weight: 600;
  line-height: 1.2em;
}

.hero-h2.left {
  background-color: var(--dark-red);
  text-align: center;
  width: 100%;
  min-width: 0;
  margin-bottom: 0;
  font-size: 3.5em;
  line-height: 1em;
}

.h2-script-hero {
  color: var(--white);
  text-align: center;
  text-transform: none;
  text-shadow: none;
  max-width: 80%;
  margin: 0 0% 10px;
  font-family: Poppins, sans-serif;
  font-size: 2em;
  font-weight: 300;
  line-height: 1.2em;
  position: relative;
  top: auto;
}

.button {
  background-color: var(--white) !important;
  color: var(--dark-slate-blue) !important;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 10px;
  padding: 12px 30px;
  line-height: 1.2em;
}

.button:hover {
  background-color: var(--gold);
}

.yellow {
  color: var(--gold);
}

.hero-items {
  flex-flow: column;
  align-items: center;
  width: 100%;
  padding-top: 0;
  padding-bottom: 0;
  display: flex;
}

.hero-with-blue-bg {
  background-color: #001e45eb;
  flex-flow: column;
  align-items: center;
  width: 80%;
  margin-left: 10%;
  margin-right: 10%;
  padding-top: 30px;
  padding-bottom: 20px;
  display: flex;
}

.button.white._50 {
  padding: 15px 30px;
  background-color: #fff !important;
  margin: 0;
  color: #00aca2 !important;
}

.mdp-scheduler {
  background-color: var(--gold) !important;
  color: var(--white) !important;
}

@media screen and (max-width: 991px) {
  .hero {
    background-color: var(--black);
    align-items: flex-end;
    height: 800px;
    padding-bottom: 20px;
    padding-left: 0;
  }

  .hero-wrapper-div {
    padding: 0;
  }

  .hero-h2 {
    margin-bottom: 0;
    padding-left: 10px;
    padding-right: 10px;
    font-size: 1.5em;
  }

  .hero-h2.left {
    margin-bottom: 0;
    font-size: 3em;
  }

  .h2-script-hero {
    font-size: 2em;
  }

  .hero-with-blue-bg {
    width: 90%;
    margin-left: 5%;
    margin-right: 5%;
  }
}

@media screen and (max-width: 767px) {
  .hero {
    height: 500px;
    padding-bottom: 0;
  }

  .hero-wrapper-div {
    padding-bottom: 0;
  }

  .hero-h2 {
    font-size: 1em;
  }

  .hero-h2.left {
    margin-bottom: 0;
    font-size: 2em;
  }

  .h2-script-hero {
    margin-bottom: 0;
    font-size: 1.5em;
  }

  .button {
    text-align: center;
    margin-bottom: 0;
  }

  .hero-with-blue-bg {
    padding-top: 10px;
    padding-bottom: 15px;
  }
}

@media screen and (max-width: 479px) {
  .hero {
    background-color: var(--dark-slate-blue);
    background-image: url('../images/winter-couple.jpg');
    background-position: 50% 0;
    background-repeat: no-repeat;
    background-size: contain;
    background-attachment: scroll;
    align-items: flex-start;
    height: auto;
    padding: 225px 0 20px;
  }

  .hero-wrapper-div {
    justify-content: flex-start;
    max-width: none;
  }

  .hero-h2.left {
    text-align: center;
    font-size: 1.8em;
  }

  .h2-script-hero {
    text-align: center;
    font-size: 1.2em;
  }

  .button {
    letter-spacing: 0;
    padding-left: 20px;
    padding-right: 20px;
    font-size: .9em;
  }

  .hero-with-blue-bg {
    width: 100%;
    margin-left: 0%;
    margin-right: 0%;
    padding-top: 20px;
    padding-bottom: 20px;
  }
}


