:root {
  line-height: 1.5;
  font-weight: 400;
  color-scheme: light dark;
  font-synthesis: none;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

html {
  box-sizing: border-box;
}

*,
*::before,
*::after {
  box-sizing: inherit;
}

a,
a:visited,
a:active {
  text-decoration: none;
}

h1,
h2,
h3 {
  line-height: 1.1;
  margin-top: 0;
}

p {
  margin-top: 0;
  margin-bottom: 0.5rem;
}

body {
  font-family: "Trebuchet MS", "Lucida Sans Unicode", "Lucida Grande", "Lucida Sans", Arial, sans-serif;
  overflow-x: hidden;
  padding: 0;
  margin: 0;
  display: flex;
  width: 100%;
  background-color: rgb(230, 230, 230);
  color: #4d4d4d;
}

#skip-to-main {
  z-index: 3;
  background-color: rgb(230, 230, 230);
  position: absolute;
  transform: translateY(-2rem);
}

#skip-to-main:focus {
  transform: translateY(0);
}

#root {
  position: relative;
  margin: 0;
  padding: 0;
  width: 100%;
  overflow-y: hidden;
}

main {
  position: relative;
}

#copyright-notice {
  width: 100%;
  display: flex;
  justify-content: center;
  position: absolute;
  bottom: 0;
}
#copyright-notice > p {
  margin: 0;
}

header {
  position: relative;
  min-height: 100px;
  height: fit-content;
}
header #header-container {
  position: relative;
}
header #header-container a {
  position: relative;
  z-index: 2;
}
header #header-container #logo {
  height: 100px;
  aspect-ratio: 1/1;
  padding: 0.25rem;
}
header #header-container nav {
  display: grid;
  grid-template-columns: repeat(auto-fill, max(9ch, 15%));
  column-gap: 1rem;
  align-items: center;
  align-self: center;
  justify-self: center;
  height: 100px;
  width: 50%;
  border-right: solid #c4c4c4 2px;
  border-bottom: solid #c4c4c4 2px;
  border-bottom-right-radius: 100px;
}
header #header-container nav > a {
  font-family: Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  text-align: center;
  color: #4d4d4d;
  font-size: 1.1rem;
  font-weight: 400;
  text-decoration: none;
}
header #header-container nav > a:hover {
  color: #c4c4c4;
}
header #header-container nav > .current-page {
  text-decoration: underline;
}
header #road-mask {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 95%;
  border-bottom: solid #c4c4c4 2px;
  border-right: solid #c4c4c4 2px;
  border-bottom-right-radius: 65px;
}
header #road-mask > #inner-header-curve {
  position: absolute;
  height: calc(100% + 2px);
  width: 70%;
}
header #road-mask .truck-1 {
  position: absolute;
  z-index: 2;
  left: max(100px + 2rem, 10%);
  bottom: calc(-1 * (0.375rem + 1px));
}

.top-hero h1,
.top-hero h2,
.top-hero h3,
.top-hero a {
  font-family: Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  margin-bottom: 1.5rem;
}
.top-hero #left-col {
  overflow-y: hidden;
  position: relative;
  top: -2px;
  border-top: solid #c4c4c4 2px;
  border-right: solid #c4c4c4 2px;
  border-top-right-radius: 80px;
  padding: 0;
  display: flex;
  justify-content: center;
}
.top-hero #left-col > .hero-text-area {
  padding: 0 2rem 0 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.top-hero #left-col .blurb {
  padding-top: 2rem;
  padding-bottom: 2rem;
  height: 100%;
  align-items: start;
  justify-content: center;
}
.top-hero #left-col .blurb .blurb-description {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0rem 0 2rem 0;
}
.top-hero #left-col .blurb .blurb-description p {
  font-size: 1rem;
  text-align: start;
}
.top-hero #left-col .blurb > h1 {
  margin-top: 0.5rem;
  display: flex;
  font-size: 1.8rem;
  align-items: end;
}
.top-hero #right-col .slide-pic {
  display: flex;
  position: absolute;
  border-radius: 30px;
  z-index: 2;
  opacity: 0;
  width: 100%;
  display: none;
}
.top-hero #right-col button {
  border: 0;
  background: none;
  aspect-ratio: 1/2;
  width: max(30px, 10%);
}
.top-hero #right-col button img {
  width: 100%;
}
.top-hero #right-col button:nth-child(1) > img {
  transform: rotate(180deg);
}
.top-hero #side-road {
  position: absolute;
  top: 50%;
  left: 0;
  height: 50%;
  width: 15%;
  border-top: solid #c4c4c4 2px;
  border-right: solid #c4c4c4 2px;
  border-top-right-radius: 60px;
}
.top-hero #side-road > div {
  position: absolute;
  right: calc(-1 * (0.375rem + 1px));
  top: max(60px, 20%);
}
.top-hero #side-road .truck-2 {
  offset-rotate: auto 90deg;
  right: 0;
  top: 0;
  position: absolute;
  height: 1.5rem;
  width: 0.75rem;
}

.accent-bg {
  width: fit-content;
  background-color: #A81F1C;
  color: rgb(230, 230, 230);
  padding: 0.2rem 0.5rem 0.2rem 0.5rem;
  border-radius: 0.25rem;
}

.truck {
  border: solid #A81F1C 2px;
  border-radius: 25%;
  height: 0.75rem;
  width: 1.5rem;
  background-color: #A81F1C;
}

.red-button {
  padding: 0.2rem 0.5rem 0.2rem 0.5rem;
  background-color: #A81F1C;
  color: rgb(230, 230, 230);
  border: none;
  border-radius: 0.25rem;
}

.top-hero #row-clamp {
  position: relative;
  min-height: calc(100svh - 100px);
  margin: 0;
}

@media (max-width: 991px) {
  #expertise-hero-1 #right-col,
  #services-hero-1 #right-col,
  #media-hero-1 #right-col {
    padding: 2rem calc(1rem + 2px) 2rem calc(1rem + 2px);
  }
  .top-hero > #row-clamp > #left-col {
    height: auto;
    width: calc(100% - 1rem);
    margin: 0 1rem 0 0;
  }
}
@media (max-width: 767px) {
  #home-hero-1 > #row-clamp,
  #contact-hero-1 > #row-clamp {
    min-height: calc(100svh - 100px - 1rem - 26.4px);
  }
  header {
    padding-bottom: 1rem;
  }
  header > #header-container > .row {
    flex-direction: column;
    justify-content: center;
  }
  header > #header-container > div > .col-md-2 {
    display: flex;
    justify-content: space-evenly;
  }
  header > #header-container nav {
    grid-template-columns: repeat(auto-fill, max(25% - 1rem, 8ch));
    width: calc(90% - 1ch);
    justify-content: center;
    height: auto;
    text-align: center;
    border: none;
  }
  header #road-mask {
    width: calc(100% - 1rem);
  }
  header #road-mask .truck-1 {
    left: 10%;
  }
}
@media (max-width: 404px) {
  header > #header-container nav {
    grid-template-columns: repeat(2, max(25% - 1rem, 8ch));
    grid-template-rows: repeat(2, 50%);
  }
  #home-hero-1 > #row-clamp,
  #contact-hero-1 > #row-clamp {
    min-height: calc(100svh - 100px - 1rem - 52.8px);
  }
}
@keyframes move {
  0% {
    offset-distance: 0%;
  }
  95% {
    offset-distance: 95%;
    opacity: 1;
  }
  100% {
    offset-distance: 100%;
    opacity: 0;
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0%;
  }
  100% {
    opacity: 100%;
  }
}
@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    display: none;
  }
}

/*# sourceMappingURL=index.css.map */
