.c-hero {
  padding-top: 15%;
  height: 100%;
  width: 1000px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.c-hero__img {
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
}
.c-hero__slogan {
  text-align: center;
  font-size: 2em;
  margin-top: 0.5em;
}

.u-hero__slogan--think {
  position: relative;
  z-index: 1;
}
.u-hero__slogan--think::before {
  content: " ";
  position: absolute;
  width: 2.1em;
  height: 0.2em;
  background-color: #9b262f;
  bottom: 0.2em;
  z-index: -1;
}
.u-hero__slogan--fabricate {
  position: relative;
  z-index: 1;
}
.u-hero__slogan--fabricate::before {
  content: " ";
  position: absolute;
  width: 3.7em;
  height: 0.2em;
  background-color: #9b262f;
  bottom: 0.2em;
  z-index: -1;
}

.o-content-container {
  margin-left: 7.5%;
  margin-right: 7.5%;
}

.c-title-h2 {
  margin-bottom: 5vw;
}
.c-title-h2--add-top-margin {
  margin-top: 4em;
}
.c-title-h2--add-bottom-margin {
  margin-bottom: -1vw;
}

.c-title-h3 {
  margin-top: 5vw;
  margin-bottom: 1vw;
}

.c-about__desc {
  margin-bottom: 2em;
}
.c-about__fully-insured {
  text-align: center;
  font-weight: bold;
  font-style: italic;
}
.c-about__card-flex-layout {
  display: flex;
  justify-content: center;
}
.c-about__card-flex-layout--add-top-margin {
  margin-top: 1.5em;
}
.c-about__card {
  margin-bottom: 0.25em;
  width: 100%;
}
.c-about__card--racecar-parts {
  background-image: url(../images/race-track-flag.jpg);
  margin-right: 0.125em;
}
.c-about__card--custom-fabrication {
  background-image: url(../images/custom-fabrication.jpg);
  margin-right: 0.125em;
  margin-left: 0.125em;
}
.c-about__card--welding-services {
  background-image: url(../images/welding-sparks.jpg);
  margin-left: 0.125em;
}
.c-about__card-line {
  display: block;
  background-color: #9b262f;
  width: 80%;
  height: 20px;
}
.c-about__card-desc {
  text-align: center;
}
.c-about__card-img {
  display: block;
  margin: auto auto;
  width: 100%;
}

.u-about__bold {
  font-weight: bold;
  position: relative;
  z-index: 1;
  display: inline-block;
}
.u-about__bold::before {
  content: " ";
  position: absolute;
  width: 4em;
  height: 0.3em;
  background-color: #9b262f;
  bottom: 0;
  z-index: -1;
}

.o-grid-layout {
  display: grid;
  grid-template-columns: repeat(2, 0.48fr);
  gap: 2vw;
}

.c-divider-line {
  display: block;
  height: 4px;
  background-color: #5c5c5c;
  width: 100%;
  margin-top: 80px;
  margin-bottom: 80px;
}

.c-img {
  width: 100%;
  height: 100%;
}
.c-img--hover-zoom:hover {
  transition: transform 1s ease;
  transform: scale(1.2);
}
.c-img__wrapper {
  overflow: hidden;
}
.c-img__grid-layout {
  display: grid;
  grid-template-columns: repeat(2, 0.48fr);
  gap: 0.5vw;
}
.c-img__grid-col {
  display: grid;
  gap: 0.5vw;
}

.c-tag-list {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding-left: 0;
}
.c-tag-list__item {
  color: white;
  background-color: #9b262f;
  margin: 0.25%;
  border-radius: 25px;
  padding: 1%;
}

.c-contact__grid-layout {
  display: grid;
  grid-template-columns: repeat(2, 48%);
  grid-template-rows: repeat(2, 50%);
  -moz-column-gap: 4%;
       column-gap: 4%;
}
.c-contact__grid-col-1 {
  display: grid;
}
.c-contact__grid-col-2 {
  display: grid;
}
.c-contact__list {
  list-style-type: none;
  padding-left: 0;
}
.c-contact__list-item {
  margin-bottom: 0.5em;
}
.c-contact__form-input, .c-contact__form-email {
  font-weight: 300;
  width: 100%;
}
.c-contact__form-textfield {
  font-weight: 300;
  height: 140px;
  width: 100%;
}
.c-contact__form-submit {
  font-weight: 300;
  background-color: #7f2028;
  border: none;
  color: white;
  padding: 15px 30px;
  text-decoration: none;
  cursor: pointer;
  display: block;
  margin: auto auto;
  border-radius: 25px;
}
.c-contact__form-submit:hover {
  background-color: green;
}
.c-contact__map {
  height: 400px;
  width: 850px;
  margin-top: 120px;
  margin-right: auto;
  margin-left: auto;
}

@media only screen and (max-width: 576px) {
  html,
body {
    padding-top: 45px;
  }

  .c-hero {
    width: 350px;
  }
  .c-hero__slogan {
    font-size: 1.6em;
  }

  .c-title-h2--add-top-margin {
    margin-top: 1.2em;
  }

  .c-about__card-flex-layout {
    flex-direction: column;
  }

  .c-img__grid-layout {
    grid-template-columns: repeat(1, 1fr);
  }

  .o-grid-layout {
    grid-template-columns: repeat(1, 0.98fr);
  }

  .c-contact__grid-layout {
    grid-template-columns: repeat(1, minmax(240px, 1fr));
  }
  .c-contact__map {
    width: 100%;
  }
}
@media only screen and (min-width: 577px) and (max-width: 924px) {
  html,
body {
    padding-top: 30px;
  }

  .c-hero {
    width: 500px;
  }
  .c-hero__slogan {
    font-size: 2em;
  }

  .c-about__card-flex-layout {
    flex-direction: column;
  }

  .c-img__grid-layout {
    grid-template-columns: repeat(1, 1fr);
  }

  .o-grid-layout {
    grid-template-columns: repeat(1, 0.98fr);
  }

  .c-contact {
    margin-right: auto;
    margin-left: auto;
  }
  .c-contact__grid-layout {
    grid-template-columns: repeat(1, 1fr);
  }
  .c-contact__map {
    width: 100%;
  }
}
@media only screen and (min-width: 925px) and (max-width: 1050px) {
  .c-hero {
    width: 700px;
  }

  .o-grid-layout {
    grid-template-columns: repeat(1, 0.98fr);
  }

  .c-contact__map {
    width: 100%;
  }
}/*# sourceMappingURL=index.css.map */