@import url("https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Khand:wght@300;400;500;600;700&display=swap");
@keyframes slide {
  0% {
    transform: translateX(0); /* Start at original position */
  }
  50% {
    transform: translateX(50px); /* Move 50px to the right */
  }
  100% {
    transform: translateX(0); /* Return to original position */
  }
}
html * {
  margin: 0;
  padding: 0;
  max-width: 1200px;
}

html {
  background-color: #1F1F1F;
  font-size: 2vw;
}

body {
  overflow: visible;
  background-color: #222222;
  color: #D9D9D9;
  font-family: "Khand", serif;
  margin: auto auto;
  box-shadow: 0 10px 10px rgba(0, 0, 0, 0.25);
}

h1, h2, h3 {
  font-family: "Bebas Neue", serif;
}

h1 {
  font-size: 4rem;
  text-align: center;
}
@media only screen and (min-width: 1200px) {
  h1 {
    font-size: 96px;
  }
}

h2 {
  font-size: 3rem;
}
@media only screen and (min-width: 1200px) {
  h2 {
    font-size: 72px;
  }
}

h3 {
  font-size: 2rem;
}
@media only screen and (min-width: 1200px) {
  h3 {
    font-size: 48px;
  }
}

p, ul, ol, li, em {
  font-size: 1.5rem;
}
@media only screen and (max-width: 600px) {
  p, ul, ol, li, em {
    font-size: 16px;
  }
}
@media only screen and (min-width: 1200px) {
  p, ul, ol, li, em {
    font-size: 36px;
  }
}

ul, li {
  list-style-position: inside;
}

a {
  transition: all 0.3s;
  color: #B09058;
  text-decoration: none;
}
a i {
  transition: all 0.3s;
  color: #B09058;
}

a:hover {
  color: #D9D9D9;
  border-color: #D9D9D9;
}
a:hover i {
  color: #D9D9D9;
}

.active {
  border-bottom: solid 1px #B09058;
}

i {
  line-height: 0;
  vertical-align: middle;
}

.bold-btn {
  display: flex;
  justify-content: center;
}
.bold-btn a {
  transition: all 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #222222;
  box-shadow: 0 3px 3px rgba(0, 0, 0, 0.25);
  font-family: "Bebas Neue", serif;
  font-size: 2rem;
  text-decoration: none;
  padding: 0 2rem;
  border: 2px solid #B09058;
  border-radius: 4px;
}
@media only screen and (min-width: 1200px) {
  .bold-btn a {
    font-size: 48px;
  }
}
.bold-btn a:hover {
  background-color: #B09058;
  color: #222222;
}
.bold-btn a:hover i {
  color: #222222;
}

.important {
  color: #648ACC;
}

header, footer {
  background-image: url("../images/concrete_texture_10.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

section {
  margin-top: 4rem;
}

header {
  box-shadow: 0 5px 5px rgba(0, 0, 0, 0.25);
}
header #navigation {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
header .subnav {
  display: none;
  position: absolute;
  background-color: #222222;
  min-width: 100px;
  z-index: 1;
  border-radius: 5px;
}
@media only screen and (min-width: 600px) {
  header .subnav li:nth-of-type(1) {
    padding: 0 0.75rem;
  }
}
header .subnav li {
  padding: 0 0.75rem;
}
@media only screen and (min-width: 600px) {
  header .subnav {
    box-shadow: 0 3px 3px rgba(0, 0, 0, 0.25);
  }
}
header .has-subnav:hover .subnav {
  display: block;
}
header img {
  width: 8rem;
  padding: 1rem 0 1rem 2rem;
}
@media only screen and (min-width: 1200px) {
  header img {
    max-width: 225px;
  }
}
header ul:nth-child(1) {
  list-style: none;
}
header li {
  font-size: 1.5rem;
  padding: 0 0.75rem;
}
@media only screen and (min-width: 1200px) {
  header li {
    font-size: 36px;
  }
}
header li a {
  text-decoration: none;
}
header li i {
  font-size: 1.5rem;
  color: #B09058;
}
@media only screen and (min-width: 1200px) {
  header li i {
    font-size: 36px;
  }
}
header li::marker {
  transition: all 0.3s;
  color: #B09058;
}
header li:hover::marker {
  color: #D9D9D9;
}
header li:nth-of-type(1) {
  padding-left: 0;
}
header li:nth-last-of-type(1) {
  padding-right: 2rem;
}
header #nav-btn {
  padding-right: 2rem;
}
@media only screen and (min-width: 601px) {
  header #nav-btn {
    display: none;
  }
}
header nav {
  font-family: "Bebas Neue", serif;
}
header nav ul {
  display: flex;
  flex-direction: row;
}
@media only screen and (max-width: 600px) {
  header nav {
    display: none;
    width: 100%;
    background-color: #222222;
  }
  header nav .subnav {
    position: relative;
  }
  header nav ul {
    display: block;
  }
  header nav li {
    padding: 0;
  }
  header nav ul:nth-child(1) {
    list-style: none;
  }
  header nav ul:nth-child(1) li {
    border-bottom: 1px solid rgba(217, 217, 217, 0.5);
    padding: 0.5rem 1rem;
  }
  header nav ul:nth-child(1) li li {
    border-bottom: none;
  }
  header nav ul:nth-child(2) {
    display: block;
  }
}
header i {
  color: #D9D9D9;
  font-size: 4rem;
}
@media only screen and (min-width: 1200px) {
  header i {
    font-size: 96px;
  }
}
header #notice {
  display: none;
  background-color: #395587;
  padding: 0.5rem 1rem;
  text-align: center;
}
header #notice p {
  font-family: "Khand", serif;
  font-size: 1.5rem;
  text-align: center;
  display: inline;
  text-shadow: 0 3px 3px rgba(0, 0, 0, 0.25);
}
@media only screen and (min-width: 1200px) {
  header #notice p {
    font-size: 36px;
  }
}

#hero {
  padding: 6vw 3vw;
  margin-top: 0;
  background-image: url("../images/pattern1.jpg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  border-image: fill 0 linear-gradient(rgba(34, 34, 34, 0.5), rgba(34, 34, 34, 0.5));
  display: flex;
  flex-direction: column;
}
#hero .flex {
  display: flex;
  flex-direction: row;
  align-items: last baseline;
  justify-content: space-between;
}
#hero h1 {
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-image: url("../images/concrete_texture_small_light.jpg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  text-align-last: justify;
  font-size: 22vw;
}
@media only screen and (min-width: 1200px) {
  #hero h1 {
    font-size: 264px;
  }
}
#hero p {
  color: white;
  padding-left: 2rem;
  font-family: "Bebas Neue", serif;
  font-size: 3.5vw;
  text-align: justify;
}
@media only screen and (min-width: 1200px) {
  #hero p {
    font-size: 42px;
    padding-left: 32px;
  }
}
#hero a {
  white-space: nowrap;
  background-color: #B09058;
  padding: 0 0.5vw 0 0.8vw;
  color: #222222;
  text-decoration: none;
  border-radius: 4px;
}
@media only screen and (min-width: 1200px) {
  #hero a {
    padding: 0 0 0 8px;
  }
}
#hero a i {
  color: #222222;
}
#hero a:hover {
  background-color: #222222;
  color: #B09058;
}
#hero a:hover i {
  color: #B09058;
}
@media only screen and (min-width: 1200px) {
  #hero {
    padding: 72px 36px;
  }
}

#mwbe {
  background-color: #D9D9D9;
  color: #222222;
  text-align: center;
  padding: 1rem 0;
  margin-top: 0;
  box-shadow: 0 5px 5px rgba(0, 0, 0, 0.25);
}
#mwbe h2 {
  font-size: 2rem;
}
@media only screen and (max-width: 600px) {
  #mwbe h2 {
    font-size: 20px;
  }
}
@media only screen and (min-width: 1200px) {
  #mwbe h2 {
    font-size: 48px;
  }
}
#mwbe h3 {
  font-family: "Khand", serif;
  font-size: 1rem;
  font-weight: 300;
}
@media only screen and (max-width: 600px) {
  #mwbe h3 {
    font-size: 14px;
  }
}
@media only screen and (min-width: 1200px) {
  #mwbe h3 {
    font-size: 30px;
  }
}

#delivery_banner {
  background-color: #B09058;
  color: #222222;
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-around;
  align-items: center;
  box-shadow: 0 5px 5px rgba(0, 0, 0, 0.25);
  margin: 1rem 0 4rem 0;
}
@media only screen and (min-width: 1200px) {
  #delivery_banner {
    margin: 24px 0 96px 0;
  }
}
#delivery_banner div {
  flex-shrink: 1;
  flex-grow: 0;
}
#delivery_banner .road_piece {
  display: inline-flex;
  flex-direction: column;
  flex-grow: 2;
  opacity: 0.8;
}
#delivery_banner .road_top {
  min-height: 0.875rem;
  border-bottom: 0.125rem dashed #B09058;
  background-color: #222222;
}
@media only screen and (min-width: 1200px) {
  #delivery_banner .road_top {
    min-height: 21px;
    border-bottom: 3px dashed #B09058;
  }
}
#delivery_banner .road_bottom {
  min-height: 0.875rem;
  background-color: #222222;
  border-top: 0.125rem dashed #B09058;
}
@media only screen and (min-width: 1200px) {
  #delivery_banner .road_bottom {
    min-height: 21px;
    border-top: 3px dashed #B09058;
  }
}
#delivery_banner h2 {
  font-size: 2rem;
  text-align: center;
  white-space: nowrap;
  padding: 1rem;
}
@media only screen and (max-width: 440px) {
  #delivery_banner h2 {
    padding: 0.5rem;
  }
}
@media only screen and (min-width: 1200px) {
  #delivery_banner h2 {
    font-size: 48px;
  }
}

#home-products .prod-card {
  filter: drop-shadow(0 2px 2px rgba(0, 0, 0, 0.25));
  color: #D9D9D9;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  border-image: fill 0 linear-gradient(rgba(34, 34, 34, 0.7), rgba(34, 34, 34, 0.7));
  --bs-card-border-width: 0;
  box-shadow: inset 0 0 0 1px rgba(217, 217, 217, 0.8);
}
#home-products .prod-card h2 {
  text-align: center;
}
#home-products .col:nth-of-type(odd) .prod-card {
  margin-left: 2rem;
}
#home-products .col:nth-of-type(even) .prod-card {
  margin-right: 2rem;
}
#home-products .col:nth-of-type(1) .prod-card {
  background-image: url("../images/promo_reinforcing.jpeg");
}
#home-products .col:nth-of-type(2) .prod-card {
  background-image: url("../images/promo_ada.jpeg");
}
#home-products .col:nth-of-type(3) .prod-card {
  background-image: url("../images/promo_blocks.jpeg");
}
#home-products .col:nth-of-type(4) .prod-card {
  background-image: url("../images/promo_tools.jpeg");
}
#home-products .col:nth-of-type(5) .prod-card {
  background-image: url("../images/promo_sealer.jpeg");
}
#home-products .col:nth-of-type(6) .prod-card {
  background-image: url("../images/promo_color.jpeg");
}
#home-products .bold-btn {
  margin-top: 4rem;
}

#home-rentals {
  padding: 0 2rem;
  margin-bottom: 4rem;
  filter: 0 5px 5px rgba(0, 0, 0, 0.25);
}
#home-rentals img {
  display: block;
  width: 40rem;
  margin: 1rem auto 2rem auto;
}
@media only screen and (min-width: 1200px) {
  #home-rentals img {
    width: 960px;
  }
}
#home-rentals .bold-btn {
  margin-top: 4rem;
}
#home-rentals ul ul {
  padding-left: 2rem;
}

#products h1 {
  margin-top: 4rem;
}
#products h2 {
  margin-top: 6.75rem;
  margin-bottom: 1rem;
}
#products .bold-btn {
  margin-top: 0.5rem;
}
#products .important {
  text-align: center;
  font-weight: bold;
  margin-top: 6.75rem;
}
@media only screen and (min-width: 1200px) {
  #products .important {
    margin-top: 4rem;
  }
}
#products #by-supplier, #products #other-products {
  margin: 4rem 2rem;
}
#products .product-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
}
@media only screen and (min-width: 1200px) {
  #products .product-container {
    gap: 24px;
  }
}
#products .product-group {
  margin-top: 2rem;
  width: 45%;
}
@media only screen and (max-width: 600px) {
  #products .product-group {
    width: 100%;
  }
}
#products #supplier-logos {
  background-image: url("/images/stamp_rentals.jpeg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  border-image: fill 0 linear-gradient(rgba(34, 34, 34, 0.7), rgba(34, 34, 34, 0.7));
  --bs-card-border-width: 0;
  padding: 2rem;
  width: 100%;
  margin: 4rem 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  align-items: flex-start;
  gap: 1rem;
  box-shadow: 0 5px 5px rgba(0, 0, 0, 0.25), 0 -5px 5px rgba(0, 0, 0, 0.25);
}
@media only screen and (min-width: 1200px) {
  #products #supplier-logos {
    gap: 24px;
  }
}
#products #supplier-logos img {
  min-width: 20px;
  max-width: 100px;
  width: 10rem;
}
#products #products-rentals {
  margin: 4rem 2rem;
}
#products #products-rentals .bold-btn {
  margin-top: 2rem;
}

#rentals h1 {
  margin-top: 4rem;
}
#rentals h2 {
  margin: 4rem 0 0 2rem;
}
#rentals h3 {
  margin: 2rem 0 0 2rem;
}
#rentals #how-it-works {
  background-image: url("/images/stamp_rentals_2.jpeg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  border-image: fill 0 linear-gradient(#222222, rgba(0, 0, 0, 0.0666666667), #222222);
  padding-top: 20px;
  padding-bottom: 40px;
  margin-top: 0.5rem;
}
#rentals #how-it-works h2 {
  margin-bottom: 2rem;
}
#rentals #how-it-works .how {
  background-color: #1F1F1F;
  filter: drop-shadow(0 2px 2px rgba(0, 0, 0, 0.25));
  color: #D9D9D9;
  box-shadow: inset 0 0 0 1px rgba(217, 217, 217, 0.8);
  border-radius: 12px;
  padding: 1rem;
  margin: 0.5rem 1rem;
  display: flex;
  flex-direction: row;
}
#rentals #how-it-works .how i {
  margin: auto;
  padding-right: 1rem;
}
#rentals #how-it-works .how p {
  flex-grow: 1;
}
#rentals #how-it-works .how:last-of-type i {
  transform: scaleX(-1);
  padding-right: 0;
  padding-left: 1rem;
}
#rentals #rental-brochure p {
  margin: 2rem 2rem;
}
#rentals #rental-brochure div {
  display: flex;
  justify-content: center;
}
#rentals #rental-brochure a {
  text-align: center;
  padding-bottom: 2rem;
}
#rentals #rental-brochure a img {
  transition: all 0.3s;
  width: 20rem;
  min-width: 200px;
  max-width: 300px;
  margin-bottom: 1rem;
  outline: 2px solid rgba(176, 144, 88, 0.5);
  outline-offset: -2px;
}
#rentals #rental-brochure a p {
  margin: 0;
}
#rentals #rental-brochure #brochure-container {
  height: 100vh;
}

#resources section {
  padding: 0 2rem;
}
#resources h2 {
  margin-bottom: 4rem;
}
#resources .resource-group {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  text-align: center;
}
@media only screen and (min-width: 1200px) {
  #resources .resource-group {
    gap: 24px;
  }
}
#resources .resource-group a {
  display: block;
  width: 48%;
  padding-bottom: 2rem;
}
#resources .resource-group a img {
  transition: all 0.3s;
  width: 20rem;
  min-width: 100px;
  max-width: 250px;
  margin-bottom: 1rem;
  outline: 2px solid rgba(176, 144, 88, 0.5);
  outline-offset: -2px;
}
#resources .resource-group a i {
  font-size: 2rem;
}
@media only screen and (min-width: 1200px) {
  #resources .resource-group a i {
    font-size: 48px;
  }
}
#resources .resource-group a:hover img {
  outline: 2px solid rgba(217, 217, 217, 0.5);
}
#resources #color-charts h2 {
  margin-bottom: 0;
}
#resources #color-charts .important {
  margin: 2rem 0 4rem;
}
#resources #other-resources {
  margin-bottom: 4rem;
}

.green {
  color: #42B05A;
}

#contactinfo, #hours {
  padding: 0 2rem;
}

#contactinfo h1 {
  margin-bottom: 4rem;
}
#contactinfo ul {
  list-style: none;
}
#contactinfo i {
  padding-right: 1rem;
}

#hours h1 {
  margin-bottom: 1rem;
}
#hours .important {
  margin-bottom: 4rem;
}
#hours h2 {
  padding-bottom: 1rem;
}
#hours td {
  font-size: 2rem;
  padding-right: 1rem;
}
@media only screen and (min-width: 1200px) {
  #hours td {
    font-size: 48px;
  }
}
#hours td:nth-child(1) {
  font-weight: bold;
}

#directions {
  padding-bottom: 0;
}
#directions h1 {
  margin-bottom: 1rem;
}
#directions p {
  margin-bottom: 4rem;
}
#directions div:nth-child(1) {
  padding: 0 2rem;
}
#directions div:nth-child(2) {
  background-image: url("/images/placeholder-building.png");
  background-repeat: no-repeat;
  background-position: cover;
  background-size: cover;
  max-height: 450px;
}
#directions iframe {
  position: relative;
  width: 80%;
  clip-path: polygon(0 0, 100% 0%, calc(100% - 20vw) 100%, 0 100%);
}
@media only screen and (min-width: 1200px) {
  #directions iframe {
    clip-path: polygon(0 0, 100% 0%, calc(100% - 240px) 100%, 0 100%);
  }
}

footer {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 -5px 5px rgba(0, 0, 0, 0.25);
}
footer h1, footer p, footer li {
  font-size: 1rem;
  text-align: left;
}
@media only screen and (max-width: 600px) {
  footer h1, footer p, footer li {
    font-size: 14px;
  }
}
@media only screen and (min-width: 1200px) {
  footer h1, footer p, footer li {
    font-size: 30px;
  }
}
footer h1 {
  display: block;
  border-bottom: 1px solid rgba(217, 217, 217, 0.5);
  margin-bottom: 0.5rem;
}
footer img {
  width: 5rem;
  margin: 2rem auto;
}
footer div {
  display: flex;
  flex-direction: row;
  padding: 0 2rem;
}
footer div div {
  display: flex;
  flex-direction: column;
}
footer section {
  margin: 0;
}
footer #footer-left, footer #footer-right {
  flex: 1;
  padding: 0;
}
footer #footer-left h1 {
  margin-right: 2rem;
}
footer #footer-left ul {
  list-style: none;
}
footer #footer-right td {
  padding-right: 0.5rem;
  font-size: 1rem;
}
@media only screen and (max-width: 600px) {
  footer #footer-right td {
    font-size: 14px;
  }
}
@media only screen and (min-width: 1200px) {
  footer #footer-right td {
    font-size: 30px;
  }
}
footer #footer-right td:nth-child(1) {
  font-weight: bold;
}
footer #footer-right section:nth-child(1) {
  padding-bottom: 2rem;
}
footer #footer-right section:nth-child(2) ul {
  list-style: none;
}
footer #footer-right i {
  padding-right: 0.5rem;
}
footer #copyright {
  margin-top: 1rem;
  padding: 0.5rem 0;
  background-color: #222222;
  text-align: center;
}
footer #copyright span {
  font-family: "Bebas Neue", serif;
  font-size: 0.9rem;
  margin: 0 auto;
}
@media only screen and (max-width: 600px) {
  footer #copyright span {
    font-size: 12px;
  }
}
@media only screen and (min-width: 1200px) {
  footer #copyright span {
    font-size: 24px;
  }
}

/* Extra small devices (phones, 600px and down) */
/* Small devices (portrait tablets and large phones, 600px and up) */
/* Medium devices (landscape tablets, 768px and up) */
/* Large devices (laptops/desktops, 992px and up) */
/* Extra large devices (large laptops and desktops, 1200px and up) */