@font-face {
  font-family: 'acme';
  src: url("fonts/Acme-Regular.ttf");
}
@font-face {
  font-family: 'oswald';
  src: url("fonts/Oswald-ExtraLight.ttf");
}
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: 'oswald', sans-serif;
  font-size: 16px;
  line-height: 1.5;
  background-color: #333;
  background-image: url("images/buffs-hero-bg.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
}
.sec-hero {
  width: 100%;
  height: 800px;
  position: relative;
  display: flex;
  flex-direction: column;
}
.sec-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}
.top-nav {
  width: 90%;
  height: 120px;
  position: relative;
  z-index: 10;
  margin: 0 auto;
  color: #fff;
}
.top-nav ul {
  width: 30%;
  max-width: 300px;
  height: 100%;
  font-size: 1.2em;
  display: flex;
  justify-content: space-between;
  align-items: center;
  list-style: none;
  margin-left: auto;
}
.top-nav a {
  color: #fff;
  text-decoration: none;
}
.hero-div {
  width: 60%;
  height: 70%;
  color: #fff;
  margin: auto;
  z-index: 10;
  position: relative;
  font-family: 'acme';
}
.hero-div h1 {
  font-size: 7.5em;
  font-weight: normal;
  white-space: nowrap;
}
.hero-div h1 span {
  color: #57A9C7;
}
.h1-div {
  position: relative;
  width: fit-content;
}
.drops {
  width: 100px;
  height: 100px;
  position: absolute;
  transform: rotate(-45deg);
  top: 30px;
  right: -60px;
}
.hero-div h2 {
  font-size: 3em;
  font-weight: normal;
  padding-left: 10px;
}
.hero-div p {
  font-size: 2.7em;
  font-weight: normal;
  padding-left: 10px;
}
.flag-div {
  width: 100%;
  height: 200px;
  text-align: center;
  z-index: 10;
}
.co-flag {
  width: 90px;
  height: 90px;
  align-self: center;
}
/* Section Two - Location Cards */
.sec-two {
  width: 100%;
  height: 400px;
  background-color: #1D2932;
  display: grid;
}
.locations-div {
  width: 80%;
  height: 300px;
  margin: auto;
  display: flex;
  gap: 20px;
  color: #fff;
}
.card {
  width: 33.33%;
  min-width: 250px;
  height: 100%;
  background-color: rgba(0, 255, 255, 0.077);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border-radius: 15px;
  padding: 20px 20px;
}
.card a {
  text-decoration: none;
  color: #fff;
  background-color: #567B96;
  padding: 0.5em 2em;
  border-radius: 500px;
  display: grid;
  place-items: center;
  margin-bottom: 1em;
  font-size: 1.5em;
}
.card p {
  font-size: 1.2em;
}
.card .location-city {
  font-size: 1.5em;
}
/* Section Three - Disclaimers */
.sec-three {
  width: 100%;
  padding: 100px 0;
  background-color: rgba(20, 29, 36, 0.8);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  color: #fff;
  position: relative;
}
.sec-three .text-div {
  width: 60%;
  max-width: 600px;
  margin: 0 auto;
  font-size: 1.8em;
  font-weight: 100;
  margin-bottom: 1.5em;
  letter-spacing: 1px;
}
.sec-three .text-div p:not(:first-child) {
  padding-top: 1em;
}
.sec-three .text-div a {
  text-decoration: none;
  color: rgb(104, 137, 177);
}
.sec-three .buttons-div {
  width: 60%;
  max-width: 600px;
  display: flex;
  justify-content: space-around;
  align-items: center;
  
}
.sec-three .buttons-div a {
  text-decoration: none;
  color: #fff;
  background-color: #567B96;
  padding: 0.5em 2em;
  border-radius: 500px;
  display: grid;
  place-items: center;
  margin-bottom: 1em;
  font-size: 1.4em;
  width: 255px;
  padding-bottom: 0.55em;
}
.sec-three-overlay {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: rgba(57, 57, 57, 0.7);
  margin: 0 auto;
  display: grid;
  place-items: center;
  z-index: 20;
}
.sec-three-overlay-inner {
  width: 80%;
  max-width: 1100px;
  min-height: 90%;
  margin: 0 auto;
  background-color: rgb(49, 78, 87);
  font-size: 1.5em;
  padding: 30px 50px;
  text-align: center;
  position: relative;
}
.sec-three-overlay-inner::before {
  content: '';
  position: absolute;
  top: 30px;
  left: 30px;
  width: 100px;
  height: 100px;
  border-top: 1px solid rgba(255, 255, 255, 0.571);
  border-left: 1px solid rgba(255, 255, 255, 0.591);
  z-index: 20;
}
.sec-three-overlay-inner::after {
  content: '';
  position: absolute;
  bottom: 30px;
  right: 30px;
  width: 100px;
  height: 100px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.571);
  border-right: 1px solid rgba(255, 255, 255, 0.591);
  z-index: 20;
}
.sec-three-overlay .close-x {
  width: 40px;
  height: 40px;
  position: absolute;
  top: 30px;
  right: 30px;
  display: grid;
  place-items: center;
  cursor: pointer;
}
.sec-three-overlay-inner h3 {
  margin-top: 0.7em;
  color: #57A9C7;
}
.sec-three-overlay-inner p {
  margin-top: 0.7em;
}
.best-wash {
  display: none;
}
.credit-card {
  display: none;
  font-size: 0.9em;
}
.credit-card p {
  margin-top: 0.5em;
}
.credit-card h4 {
  margin-top: 0.5em;
}
/* Section Four - Locations Info */
.sec-four {
  width: 100%;
  height: auto;
  padding-bottom: 20px;
  background-color: #f2f2f2;
  display: flex;
  /* justify-content: center; */
  align-items: center;
  flex-direction: column;
  color: #fff;
  position: relative;
}
.location-info {
  width: 100%;
  height: 300px;
  display: flex;
  justify-content: center;
  /* align-items: center; */
  color: #fff;
  background-color: #f2f2f2;
  gap: 20px;
  margin-top: 20px;
}
.map-city {
  width: 40%;
  height: 100%;
  background-image: url("images/mapMonument.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  font-size: 1.5em;
  position: relative;
}
.map-city::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}
.map-city p {
  z-index: 10;
}
.text-info {
  width: 60%;
  height: 100%;
  background-color: #395264;
  display: grid;
  place-items: center;
}
.text-info-inner {
  width: 80%;
  height: 80%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-size: 1.5em;
  gap: 0.5em;
  /* background-color: #57a9c73f; */
}
.text-info-inner p:first-of-type {
  position: relative;
  margin-bottom: 0.7em;
}
.text-info-inner p:first-of-type::before {
  content: "H 11.5' x W 14' x L 24'";
  position: absolute;
  top: 35px;
  left: 20px;
  font-size: 16px;
}
.info-boulder {
  flex-direction: row-reverse; 
}
.info-boulder .map-city {
  background-image: url("images/mapBoulder.jpg");
}
.info-boulder .text-info-inner p:first-of-type::before {
  content: "H 10' x W 14' x L 25'";
}
.info-springs .map-city {
  background-image: url("images/mapSprings.jpg");
}
.info-springs .text-info-inner p:first-of-type::before {
  content: "H 12' x W 12' x L 25' ";
}
.info-springs a {
  color: #fff;
}
.sec-four-overlay {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: rgba(57, 57, 57, 0.7);
  margin: 0 auto;
  display: none;
  place-items: center;
  z-index: 20;
}
.sec-four-overlay-inner {
  width: 70%;
  margin: 0 auto;
  background-color: rgb(49, 78, 87);
  font-size: 1.5em;
  padding: 30px 50px;
  text-align: center;
  position: relative;
}
.sec-four-overlay .close-x {
  width: 40px;
  height: 40px;
  position: absolute;
  top: 30px;
  right: 30px;
  display: grid;
  place-items: center;
  cursor: pointer;
}
.sec-four-overlay-inner h3 {
  margin-top: 0.7em;
  color: #57A9C7;
}
.number-p-div {
  display: flex;
  justify-content: space-around;
  align-items: center;

}
.touchless-number {
  width: 100px;
  height: 100px;
  background-color: rgb(45, 45, 45);
  border-radius: 50%;
  display: grid;
  place-items: center;
  margin-top: 1.5em;
}
.sec-four-overlay-inner p {
  width: 80%;
  margin-top: 1.5em;
}
/* Section Five - Google Maps */
.sec-five {
  width: 100%;
  height: 400px;
  background-color: #f2f2f2;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  color: #fff;
  padding-bottom: 20px;
}
/* Section Six - Contact Form */
.sec-contact {
  width: 100%;
  height: 500px;
  background-color: #f2f2f2;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
}
.contact-form-div {
  width: 60%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: #395264;
}
.contact-form-div h2 {
  font-size: 2.5em;
  margin-bottom: 0.4em;
}
.contact-inner {
  width: 70%;
  height: 70%;
  min-width: 470px;
  max-width: 650px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  
  gap: 0.5em;
}
.contact-text {
  font-size: 1.2em;
  width: 30%;
  height: 90%;
  letter-spacing: 1px;
}
.contact-text p span {
  font-weight: bold;
}
.form-div {
  width: 60%;
  height: 90%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  
}
.form-div form {
  width: 80%;
  max-width: 300px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0.5em;
  font-family: 'oswald', sans-serif;
}
.input-box {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1em;
}
input {
  margin: auto;
  height: 40px;
  width: 100%;
  padding-left: 5px;
  font-family: 'oswald', sans-serif;
  font-size: 1em;
}
#comments {
  height: 80px;
  width: 100%;
  padding-left: 5px;
  font-family: 'oswald', sans-serif;
  font-size: 1em;
}
.input-box button {
  width: 150px;
  height: 50px;
  background-color: #1b2d3a;
  border: none;
  color: #fff;
  border-radius: 500px;
  cursor: pointer;
  font-size: 1.2em;
  font-weight: normal;
  font-family: 'oswald', sans-serif;
  padding-bottom: 2px;
}

.contact-img-div {
  width: 40%;
  height: 100%;
  background-image: url("images/contact-img.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;

}
.contact-img-div::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}
footer {
  width: 100%;
  height: 120px;
  background-color: #1D2932;
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-direction: column;
  color: #fff;
  padding: 10px 0;
}
footer a img {
  width: 40px;
  height: 40px;
  opacity: 0.9;
}
footer a {
  color: #fff;
  font-size: 1em;
  text-decoration: none;
}

/* Media Query */
@media screen and (max-width: 875px) {
  .sec-hero {
    height: 600px;
  }
  .top-nav ul {
    width: 70%;
  }
  .hero-div {
   margin: 0;
   padding-left: 50px;
   width: 90%;
  }
  .sec-hero h1 {
    font-size: 6em;
  }
  .sec-hero h2 {
    font-size: 2.5em;
  }
  .sec-hero p {
    font-size: 2em;
  }
  .drops {
    width: 70px;
    height: 70px;
    top: 25px;
    right: -45px;
  }
  .sec-two {
    height: auto;
    padding: 50px 0;
  }
 .locations-div {
   height: auto;
   flex-direction: column;
   align-items: center;
 }
 .sec-three .text-div {
   width: 90%;
   font-size: 1.5em;
   text-align: center;
 }
 .sec-three .buttons-div {
   width: 90%;
 }
 .buttons-div {
    flex-direction: column;
    align-items: center;
 }
 .sec-three-overlay-inner {
   width: 100%;
   font-size: 1.2em;
   padding: 30px 10px;
 }
 .location-info {
   flex-direction: column;
   height: auto;
 }
 .map-city {
   width: 100%;
   height: 250px;
 }
 .text-info {
   width: 100%;
   height: 300px;
 }
 .sec-four-overlay-inner {
   width: 100%;
   font-size: 1.1em;
   padding: 30px 10px;
 }
 .touchless-number {
   width: 80px;
   height: 80px;
   font-size: 0.9em;
 }
 .sec-four-overlay .close-x {
   width: 30px;
   height: 30px;
   top: 20px;
   right: 20px;
 }
 .sec-three-overlay .close-x {
  width: 30px;
  height: 30px;
  top: 20px;
  right: 20px;
}
#map-iframe {
  width: 100%;
}
 /* section contact */
 .contact-form-div {
   width: 100%;
   background-image: url("/images/contact-img.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-blend-mode: multiply;
    background-color: rgba(51, 51, 51, 0.8);
 }
 .contact-img-div {
   display: none;
 }
}
@media screen and (max-width: 550px) {
  .top-nav ul {
    font-size: 1em;
  }
  .hero-div {
    width: 100%;
    padding-left: 10px;
    overflow: hidden;
  }
  .sec-hero h1 {
    font-size: 5em;
  }
  .sec-hero h2 {
    font-size: 1.8em;
  }
  .sec-hero p {
    font-size: 1.5em;
  }
  .drops {
    width: 50px;
    height: 50px;
    right: -30px;
  }
  .co-flag {
    width: 70px;
    height: 70px;
  }
  .sec-three {
    padding: 50px 0;
  }
  .sec-three .text-div { 
    font-size: 1.3em;
  }
.text-info-inner {
  font-size: 1.2em;
  width: 100%;
}
.text-info-inner p:first-of-type::before {
  top: 23px;
  font-size: 14px;
}
.sec-three .buttons-div a {
  font-size: 1.2em;
  width: 230px;
}
.sec-three-overlay-inner::before {
  display: none;
}
.sec-three-overlay-inner::after {
  display: none;
}
/* section 4 */
.sec-four .text-info {
  height: 250px;
}
#map-iframe {
  width: 100%;
}
  /* Contact */
  .sec-contact {
    height: auto;
    
  }
  .contact-form-div {
    padding: 30px 0;
  }
  .contact-inner {
    flex-direction: column;
    gap: 1.5em;
    min-width: 0;
    width: 100%;
  }
  .contact-text {
    width: 95%;
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 10px;
    padding: 20px 0;
    display: grid;
    font-size: 0.95em;
    text-align: center;
    grid-template-columns: 1fr 1fr; 
    grid-template-rows: 1fr 1fr; 
    gap: 5px 5px; 
    grid-template-areas: 
      "address email"
      "address phone"; 
  }
  .form-div {
    width: 100%;
  }
  .contact-text br {
    display: none;
  }
  .contact-text p {
    margin: auto;
  }
  .contact-text p:nth-of-type(1) {
    grid-area: address;
  }
  .contact-text p:nth-of-type(2) {
    grid-area: email;
  }
  .contact-text p:nth-of-type(3) {
    grid-area: phone;
  }
  .contact-text p:first-of-type {
    width: 20ch;
  }
}
@media screen and (max-width: 400px) {
  .sec-hero h1 {
    font-size: 4em;
  }
  .drops {
    top: 17px;
    width: 45px;
    height: 45px;
    right: -27px;
  }
}