/*!
    Theme Name: PIT Bumper Theme
    Theme URI: https://wearejsa.com
    Author: Jeffrey Scott Agency
    Author URI: https://wearejsa.com
    Description: Theme to style the PIT Bumper website from Jeffrey Scott Agency
    Version: 1.0.0
    Requires PHP:
    Tested up to: 8.5
    License: GNU General Public License v2 or later
    License URI: LICENSE
    Text Domain: jeffrey-scott-agency
    Tags: JSA
*/
body, html {
  margin: 0;
}

p {
  font-family: "Work Sans", sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 300;
  line-height: 145%; /* 29px */
  letter-spacing: -0.1px;
}

a {
  font-family: "Work Sans", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 145%; /* 23.2px */
  letter-spacing: -0.08px;
}

h1 {
  font-family: "Figtree", sans-serif;
  font-size: 40px;
  font-style: italic;
  font-weight: 900;
  line-height: 120%; /* 48px */
  letter-spacing: -0.8px;
  text-transform: uppercase;
}
@media (max-width: 665px) {
  h1 {
    font-size: 25px;
  }
}

h2 {
  font-family: "Figtree", sans-serif;
  font-size: 30px;
  font-style: normal;
  font-weight: 800;
  letter-spacing: -0.6px;
  text-transform: uppercase;
  margin: 0;
}

h3 {
  font-family: "Figtree", sans-serif;
  font-size: 28px;
  font-style: normal;
  font-weight: 600;
  line-height: 99%; /* 27.72px */
  letter-spacing: -0.42px;
}

h4 {
  font-family: "Figtree", sans-serif;
  font-size: 20px;
  font-style: italic;
  font-weight: 900;
  line-height: 120%; /* 24px */
  letter-spacing: -0.4px;
  text-transform: uppercase;
}

input, textarea {
  font-family: "Work Sans", sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 300;
  line-height: 145%; /* 29px */
  letter-spacing: -0.1px;
}

.site {
  min-height: 100dvh;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 150px 1fr minmax(689px, auto);
  grid-template-areas: "header" "content" "footer";
  background-color: white;
}
@media (max-width: 780px) {
  .site {
    grid-template-rows: 90px 1fr minmax(689px, auto);
  }
}

header.site-header {
  grid-area: header;
  background-color: #212121;
  color: white;
  position: sticky;
  top: var(--wp-admin--admin-bar--height, 0px);
  z-index: 2000;
  display: grid;
  grid-template-columns: 200px 1fr;
  grid-template-areas: "branding menu";
  column-gap: 32px;
}
@media (max-width: 780px) {
  header.site-header {
    grid-template-columns: 150px 1fr;
    column-gap: 20px;
  }
}
header.site-header .site-branding {
  grid-area: branding;
  display: flex;
  justify-content: center;
  align-items: center;
}
header.site-header .site-branding img {
  height: 90px;
  width: auto;
}
@media (max-width: 780px) {
  header.site-header .site-branding img {
    height: 70px;
  }
}
header.site-header nav.main-navigation {
  grid-area: menu;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
header.site-header nav.main-navigation button {
  background: none;
  border: none;
  font: inherit;
}
header.site-header nav.main-navigation .menu-toggle {
  border: none;
  cursor: pointer;
  display: none;
  margin-bottom: 15px;
  cursor: pointer;
  text-decoration: none;
  color: white;
  font-family: "Figtree", sans-serif;
  font-size: 15px;
  font-style: italic;
  font-weight: 900;
  line-height: 145%; /* 21.75px */
  letter-spacing: -0.075px;
  text-transform: uppercase;
  padding: 0;
}
header.site-header nav.main-navigation .header-link-underline {
  height: 7px;
  background: #D00019;
  transform: skewX(-18deg);
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
  opacity: 0;
}
header.site-header nav.main-navigation .menu-item:hover > .header-link-underline, header.site-header nav.main-navigation .menu-item.current-menu-item .header-link-underline {
  opacity: 1;
}
header.site-header nav.main-navigation .menu-main-menu-container {
  padding-right: 50px;
}
header.site-header nav.main-navigation .menu-main-menu-container ul#primary_menu {
  display: flex;
  justify-content: flex-end;
  gap: 32px;
  list-style: none;
}
header.site-header nav.main-navigation .menu-main-menu-container ul#primary_menu a {
  display: block;
}
header.site-header nav.main-navigation .menu-main-menu-container ul#primary_menu a, header.site-header nav.main-navigation .menu-main-menu-container ul#primary_menu button {
  cursor: pointer;
  text-decoration: none;
  color: white;
  font-family: "Figtree", sans-serif;
  font-size: 15px;
  font-style: italic;
  font-weight: 900;
  line-height: 145%; /* 21.75px */
  letter-spacing: -0.075px;
  text-transform: uppercase;
  padding: 0;
}
header.site-header nav.main-navigation .menu-main-menu-container ul#primary_menu ul.sub-menu {
  display: flex;
  flex-direction: column;
  gap: 5px;
  position: absolute;
  list-style: none;
  padding-top: 5px;
  padding-left: 0;
  transform: translateY(-10px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0s linear 0.2s;
}
header.site-header nav.main-navigation .menu-main-menu-container ul#primary_menu ul.sub-menu.open {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0s;
}
@media (max-width: 780px) {
  header.site-header nav.main-navigation .menu-toggle {
    display: block;
  }
  header.site-header nav.main-navigation ul#primary_menu {
    display: none !important;
  }
  header.site-header nav.main-navigation .menu-main-menu-container {
    padding-right: 20px;
  }
}
header.site-header .mobile-navigation {
  position: fixed;
  height: calc(100dvh - var(--wp-admin--admin-bar--height, 0px));
  width: 200px;
  z-index: 2000;
  top: var(--wp-admin--admin-bar--height, 0px);
  right: 0;
  background-color: #212121;
  border-left: 2px #D00019 solid;
  box-sizing: border-box;
  transition: transform 0.1s ease;
  transform: translateX(100%);
}
header.site-header .mobile-navigation.open {
  transform: translateX(0);
}
header.site-header .mobile-navigation .menu-toggle {
  border: none;
  margin: 10px;
  margin-bottom: 0;
  cursor: pointer;
  cursor: pointer;
  text-decoration: none;
  color: white;
  font-family: "Figtree", sans-serif;
  font-size: 15px;
  font-style: italic;
  font-weight: 900;
  line-height: 145%; /* 21.75px */
  letter-spacing: -0.075px;
  text-transform: uppercase;
  padding: 0;
}
header.site-header .mobile-navigation ul#mobile_menu {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-left: 10px;
  list-style: none;
}
header.site-header .mobile-navigation ul#mobile_menu button {
  background: none;
  border: none;
  font: inherit;
}
header.site-header .mobile-navigation ul#mobile_menu a {
  display: inline-block;
}
header.site-header .mobile-navigation ul#mobile_menu a, header.site-header .mobile-navigation ul#mobile_menu button {
  cursor: pointer;
  text-decoration: none;
  color: white;
  font-family: "Figtree", sans-serif;
  font-size: 15px;
  font-style: italic;
  font-weight: 900;
  line-height: 145%; /* 21.75px */
  letter-spacing: -0.075px;
  text-transform: uppercase;
  padding: 0;
}
header.site-header .mobile-navigation ul.sub-menu {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding-left: 20px;
  list-style: none;
  max-height: 0;
  transform: translateY(-10px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: margin-top 0.2s ease, max-height 0.2s ease, opacity 0.2s ease, transform 0.2s ease, visibility 0s linear 0.2s;
}
header.site-header .mobile-navigation ul.sub-menu.open {
  margin-top: 5px;
  max-height: 200px;
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition: margin-top 0.2s ease, max-height 0.2s ease, opacity 0.2s ease, transform 0.2s ease, visibility 0s;
}

#wpadminbar {
  position: fixed;
}

main.site-main {
  grid-area: content;
  background-color: white;
}
@media (max-width: 780px) {
  main.site-main img {
    width: auto;
  }
}

footer.site-footer {
  grid-area: footer;
  background-color: #212121;
  color: white;
  padding: 0 20px;
}
footer.site-footer .content .footer-top {
  gap: 32px;
  padding-bottom: 50px;
  padding-top: 100px;
}
footer.site-footer .content hr {
  width: 90%;
}
footer.site-footer .content .footer-bottom {
  padding-top: 50px;
  padding-bottom: 50px;
  gap: 32px;
}
footer.site-footer .content .footer-bottom ul.wp-block-page-list {
  margin-top: 20px;
  display: flex;
  justify-content: center;
  list-style: none;
  gap: 20px;
}
footer.site-footer .content .footer-bottom ul.wp-block-page-list a {
  color: white;
  text-decoration: none;
}

.is-style-heading-page {
  font-family: "Figtree", sans-serif;
  font-size: 40px;
  font-style: italic;
  font-weight: 900;
  line-height: 120%; /* 48px */
  letter-spacing: -0.8px;
  text-transform: uppercase;
}
@media (max-width: 665px) {
  .is-style-heading-page {
    font-size: 25px;
  }
}
@media (screen: 665px) {
  .is-style-heading-page.shrink {
    font-size: 25px !important;
  }
}

.is-style-heading-hero-thin {
  font-family: "Figtree", sans-serif;
  font-size: 64px;
  font-style: italic;
  font-weight: 300;
  line-height: 105%;
  letter-spacing: -1.28px;
  text-transform: uppercase;
}
@media (max-width: 665px) {
  .is-style-heading-hero-thin {
    font-size: 35px;
  }
}

.is-style-heading-hero-thick {
  font-family: "Figtree", sans-serif;
  font-size: 64px;
  font-style: italic;
  font-weight: 900;
  line-height: 105%; /* 67.2px */
  letter-spacing: -1.28px;
  text-transform: uppercase;
}
@media (max-width: 665px) {
  .is-style-heading-hero-thick {
    font-size: 35px;
  }
}

.is-style-heading-small {
  font-family: "Figtree", sans-serif;
  font-size: 20px;
  font-style: italic;
  font-weight: 900;
  line-height: 120%; /* 24px */
  letter-spacing: -0.4px;
  text-transform: uppercase;
}

.is-style-heading-md-sm {
  font-family: "Figtree", sans-serif;
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: 145%; /* 34.8px */
  letter-spacing: -0.12px;
}

.is-style-heading-medium {
  font-family: "Figtree", sans-serif;
  font-size: 28px;
  font-style: normal;
  font-weight: 600;
  line-height: 99%; /* 27.72px */
  letter-spacing: -0.42px;
}

.is-style-heading-large {
  font-family: "Figtree", sans-serif;
  font-size: 30px;
  font-style: normal;
  font-weight: 800;
  letter-spacing: -0.6px;
  text-transform: uppercase;
  margin: 0;
}

.is-style-heading-footer-bold {
  font-family: "Figtree", sans-serif;
  font-size: 50px;
  font-style: italic;
  font-weight: 900;
  line-height: 90%; /* 60px */
  letter-spacing: -1px;
  text-transform: uppercase;
  margin: 0;
}

.is-style-heading-footer-thin {
  font-family: "Figtree", sans-serif;
  font-size: 50px;
  font-style: italic;
  font-weight: 300;
  line-height: 120%;
  letter-spacing: -1px;
  text-transform: uppercase;
  margin: 0;
}

.is-style-paragraph-image-caption {
  font-family: "Figtree", sans-serif;
  font-size: 14px;
  font-style: italic;
  font-weight: 500;
  line-height: 145%; /* 20.3px */
  letter-spacing: -0.07px;
}

.is-style-paragraph-review-signature {
  font-family: "Figtree", sans-serif;
  font-size: 18px;
  font-style: italic;
  font-weight: 800;
  line-height: 99%; /* 17.82px */
  letter-spacing: -0.27px;
  text-transform: uppercase;
}

.is-style-paragraph-giant-quote {
  font-feature-settings: "subs" on;
  font-family: "Figtree", sans-serif;
  font-size: 60px;
  font-style: italic;
  font-weight: 900;
  margin: 0;
  height: 30px;
}

.is-style-paragraph-product-tag {
  background-color: #D00019;
  color: white;
  padding: 7px 11px 7px 11px;
  font-size: 0.85em;
  font-style: normal;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 10px !important;
}

.is-style-button-primary a {
  font-family: "Figtree", sans-serif;
  font-size: 18px;
  font-style: italic;
  font-weight: 900;
  line-height: 145%; /* 26.1px */
  letter-spacing: -0.09px;
  text-transform: uppercase;
  background: unset;
  border-radius: unset;
  border: 3px solid #D00019;
  padding: 12px 16px;
  cursor: pointer;
}
.is-style-button-primary a:hover {
  color: black;
  background-color: white;
}

.is-style-button-hero a {
  font-family: "Figtree", sans-serif;
  font-size: 30.915px;
  font-style: italic;
  font-weight: 900;
  line-height: 145%; /* 44.827px */
  letter-spacing: -0.155px;
  text-transform: uppercase;
  background-color: black;
  border-radius: unset;
  border: 3px solid #D00019;
  padding: 16px 20px;
  transition: background-color 0.1s ease-in, color 0.1s ease-in;
}
.is-style-button-hero a:hover {
  color: black;
  background-color: white;
}

.is-style-image-hero {
  margin-bottom: 0;
  height: 442px;
  overflow: hidden;
}
.is-style-image-hero img {
  width: 100%;
}
@media (max-width: 780px) {
  .is-style-image-hero {
    height: auto;
  }
  .is-style-image-hero img {
    width: auto;
  }
}

.is-style-image-full-width {
  margin-bottom: 0;
}
.is-style-image-full-width img {
  width: 100%;
}

.is-style-image-customer img {
  height: 130px;
  width: auto;
}

.is-style-group-full-width {
  padding: 100px 79px;
}
@media (max-width: 780px) {
  .is-style-group-full-width {
    padding: 100px 20px;
  }
}

.is-style-group-width-standard {
  padding-left: 79px;
  padding-right: 79px;
}
@media (max-width: 780px) {
  .is-style-group-width-standard {
    padding-left: 20px;
    padding-right: 20px;
  }
}

@media (max-width: 1060px) {
  .is-style-group-column-reverse {
    flex-direction: column-reverse;
    align-items: unset;
  }
}

.is-style-row-two-column > .wp-block-group {
  flex: 1 1 40%;
}

.wp-block-group:has(> .is-style-group-border-left) {
  width: 100%;
}
@media (max-width: 807px) {
  .wp-block-group:has(> .is-style-group-border-left) {
    max-width: 300px;
  }
}
.wp-block-group:has(> .is-style-group-border-left) > .wp-block-group {
  padding-left: 50px;
  flex: 1 1 30%;
}
@media (min-width: 1157px) {
  .wp-block-group:has(> .is-style-group-border-left) > .wp-block-group:nth-child(4) {
    border-left: none;
  }
}
@media (max-width: 1157px) {
  .wp-block-group:has(> .is-style-group-border-left) > .wp-block-group:nth-child(2n+3) {
    border-left: none;
  }
}
@media (max-width: 807px) {
  .wp-block-group:has(> .is-style-group-border-left) > .wp-block-group {
    width: 100%;
    border-left: none;
    padding-left: 0;
  }
}

.is-style-group-border-left {
  border-left: black 0.5px solid;
}

.is-style-group-stack-stretch {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.is-style-group-hero-home {
  background-color: #212121;
  color: white;
  padding-top: 100px;
}
.is-style-group-hero-home .lower-section {
  max-width: 950px;
  padding-left: 20px;
  padding-right: 20px;
}
.is-style-group-hero-home .lower-section .wp-block-buttons {
  position: relative;
  bottom: -40px;
}

.triangle-right {
  width: 0;
  height: 0;
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
  border-left: 24px solid #D00019;
}

form.contact-us {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  max-width: 900px;
  margin-top: 50px;
  margin-bottom: 100px;
}
form.contact-us p {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
form.contact-us p:has(input[type=submit]) {
  flex-direction: column;
}
form.contact-us label {
  flex: 1 1 calc(50% - 12px);
  min-width: 250px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  font-family: "Figtree", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 99%; /* 15.84px */
  letter-spacing: -0.24px;
  text-transform: uppercase;
}
form.contact-us label.department {
  flex-basis: 100%;
}
form.contact-us label.department input {
  width: 100%;
}
form.contact-us input, form.contact-us textarea {
  width: 100%;
  box-sizing: border-box;
  font-size: 2rem;
}
form.contact-us input {
  height: 60px;
}
form.contact-us textarea {
  max-height: 270px;
}
form.contact-us input[type=submit] {
  font-family: "Figtree", sans-serif;
  font-size: 18px;
  font-style: italic;
  font-weight: 900;
  line-height: 145%; /* 26.1px */
  letter-spacing: -0.09px;
  text-transform: uppercase;
  background: unset;
  border-radius: unset;
  border: 3px solid #D00019;
  padding: 12px 16px;
  cursor: pointer;
}
form.contact-us input[type=submit]:hover {
  color: black;
  background-color: white;
}
form.contact-us input[type=submit] {
  background-color: #212121;
  color: white;
  align-self: center;
  max-width: 200px;
  padding-left: 20px;
  padding-right: 20px;
}

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