/* General Body Styles */
html{width: auto!important; overflow-x: hidden!important} 
body {
  overflow-x: hidden; /* Prevents horizontal scrolling */
  width: auto !important; /* Retained !important due to "do not change" constraint; width: auto is default for body */
  overflow-x: hidden !important; /* Redundant with overflow-x: hidden above, but retained due to constraint */
  font-family: avenir-lt-pro, sans-serif; /* Default font for the body */
}
.backgroundBody{ 
background: url('../imgs/bg.png') repeat-y;

}




/* Typography */
p {
  font-family: avenir-lt-pro, sans-serif;
  font-weight: 300;
  font-style: normal;
  /* Adjusted for better responsiveness: min, preferred, max */
  font-size: 1.3rem;
  color: #888b8d;
}

h1 {
  font-family: avenir-lt-pro, sans-serif;
  font-weight: 800;
  font-style: normal;
  /* Adjusted for better responsiveness: min, preferred, max */
  font-size: 3.5rem; /* Approx 32px to 72px */
}

h2 {
  font-family: avenir-lt-pro, sans-serif;
  font-weight: 800;
  font-style: normal;
  /* Adjusted for better responsiveness: min, preferred, max */
  font-size: 2.5rem; /* Approx 28px to 56px */
}

h3 {
  font-family: avenir-lt-pro, sans-serif;
  font-weight: 800;
  font-style: normal;
  /* Adjusted for better responsiveness: min, preferred, max */
  font-size: 2rem; /* Approx 24px to 48px */
}

h4 {
  font-family: avenir-lt-pro, sans-serif; /* Added for consistency, assuming it shares the family */
  font-weight: normal; /* Assuming normal weight, adjust if needed */
  /* Adjusted for better responsiveness: min, preferred, max */
  font-size: 1.75rem; /* Approx 16px to 28px */
}

/* Header container for video background */
.video-header-container {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  z-index: 0;
}

#background-video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  z-index: -70;
  transform: translateX(-50%) translateY(-50%);
  object-fit: cover;
}
.videoEmbed{
	    position: relative;
    margin: 1rem -15px 0;
    border: solid #DA0037;
}
.header-content {
  position: relative;
  z-index: 1;
  padding: 20px;
  border-radius: 8px;
  max-width: 90%;
}

/* Navigation Bar */
.navigation-bar {
  height: 150px;
}

.mobileBtn {
  display: none; /* Hidden by default, shown in media queries */
}

/* Slideshow Visibility */
.centerSlideshow {
  display: block; /* Desktop slideshow visible by default */
}

.mobileSlideshow {
  display: none;  /* Mobile slideshow hidden by default */
}

/* Parallelogram Slideshow */
.parallelogram-slideshow {
  position: relative;
  width: 85vw; /* Viewport width based, responsive */
  height: 20vw; /* Viewport width based, responsive */
  clip-path: polygon(8% 0%, 100% 0%, 92% 100%, 0% 100%);
  background-color: #333;
  overflow: hidden;
  margin-left: auto; /* Centering the slideshow */
  margin-right: auto; /* Centering the slideshow */
  /* justify-content: center; */ /* Not applicable directly on container unless it's a flex/grid parent of items to center */
}

.parallelogram-slideshow .slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.8s ease-in-out, visibility 0.8s;
}

.parallelogram-slideshow .slide.active {
  opacity: 1;
  visibility: visible;
}

.parallelogram-slideshow .slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 0;
}

.parallelogram-slideshow .nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: transparent;
  color: white;
  border: none;
  width: 44px;
  height: 44px;
  font-size: 36px;
  font-weight: bold;
  cursor: pointer;
  z-index: 10;
  transition: background-color 0.3s ease, transform 0.2s ease, color 0.3s ease; /* Added color transition */
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%; /* Making buttons circular for better touch target */
}

.parallelogram-slideshow .nav-btn:hover {
  color: rgba(0, 0, 0, 0.8); /* Darker icon on hover */
  background-color: rgba(255, 255, 255, 0.3); /* Slight background on hover */
  transform: translateY(-50%) scale(1.1);
}

.parallelogram-slideshow .nav-btn:active {
  transform: translateY(-50%) scale(1.0);
}

.parallelogram-slideshow .prev-btn {
  left: 7%;
}

.parallelogram-slideshow .next-btn {
  right: 7%;
}

.parallelogram-slideshow .nav-btn.hidden {
  display: none;
}

/* Square Slideshow (Mobile) */
.square-slideshow {
  position: relative;
  width: 90vw;
  max-width: 400px;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  margin: 0 auto; /* Center horizontally */

}

.square-slideshow .slide {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.8s ease-in-out, visibility 0.8s;
}

.square-slideshow .slide.active {
  opacity: 1;
  visibility: visible;
}

.square-slideshow .slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;

}

.square-slideshow .nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: white;
  border: none;
  width: 40px;
  height: 40px;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
  z-index: 10;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: transparent;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.square-slideshow .nav-btn:hover {
  color: black;
  transform: translateY(-50%) scale(1.1);
}

.square-slideshow .nav-btn:active {
  transform: translateY(-50%) scale(1);
}

.square-slideshow .prev-btn {
  left: 10px;
}

.square-slideshow .next-btn {
  right: 10px;
}

.square-slideshow .nav-btn.hidden {
  display: none;
}

/* Text Styling */
.textDecoration {
  font-weight: 900;
  color: #DA0037;
}

/* Buttons */
.btnGetQuote {
  font-family: all-round-gothic, sans-serif;
  font-weight: 700;
  font-style: normal;
  /* Adjusted for better responsiveness */
  font-size: clamp(1.25rem, 3.5vh, 1.75rem); /* Approx 20px to 28px */
  background-color: #DA0037;
  color: white;
  text-decoration: none;
  padding: 2% 4%; /* Percentage padding is responsive */
  transition: background-color 0.3s; /* Simplified transition */
  text-align: center;
  display: inline-block; /* Ensures padding and centering work as expected */
}

.btnGetQuote:hover {
  background-color: #b30c36;
}

.btnGetQuoteNav {
  font-family: all-round-gothic, sans-serif;
  font-weight: 700;
  font-style: normal;
  /* Adjusted for better responsiveness */
  font-size: clamp(1.35rem, 4vh, 1.85rem); /* Approx 21.6px to 29.6px */
  background-color: #DA0037;
  color: white;
  text-decoration: none;
  padding: 1% 2%; /* Percentage padding */
  float: right; /* Retained from original */
  transition: background-color 0.3s;
  display: block; /* Retained from original */
}

.btnGetQuoteNav:hover {
  background-color: #b30c36;
}

.btn-xl{
	padding: 0.5rem 3rem .5rem 3rem;
    font-size: 3.25rem;
	
}
.btn-xl:hover{
	color: #DA0037;
	
}

/* Hero Sections */
.hero {
  background-image: url("../imgs/siren-homepage-hero-image-01.jpg");
  position: relative;
  background-size: cover;
  background-position: center; /* Ensure hero image is centered */
}

.ourServices {
  background-image: url("../imgs/siren-our-services-hero-image-01.jpg");
  background-size: cover;
  background-position: center; /* Ensure hero image is centered */
  color: white !important; /* Retained !important */
  padding: 6%;
}

.text-red {
  color: #DA0037;
}

.headerBtmBdr{  
border-bottom: 10px solid #DA0037;
}

/* Footer */
table, footer.footer, footer a { /* Consider more specific selectors if 'table' is too general */
  background-color: #231F20;
  color: #fff;
  text-decoration: none;
}

.footer {
  border-top: 10px solid #DA0037;
  padding: 20px 0; /* Added some default padding */
}

.footerHeaders {
  font-family: all-round-gothic, sans-serif;
  font-weight: 700;
  font-style: normal;
  /* Adjusted for better responsiveness */
  font-size: clamp(1.8rem, 5vw, 3rem); /* Original was 3rem, this allows scaling */
}

/* Utility */
.container-fluid {
  padding-left: 0;
  padding-right: 0;
}

.truckOverlay {
  width: 100%;
  position: absolute;
  /* margin-bottom: -25%; */ /* Negative margins can be tricky; review if layout issues */
  bottom: 25%; /* Alternative to margin-bottom: -25% if top is not fixed */
  top: 54%; /* Retained from original, check interaction with bottom */
  z-index: 5;
}

.btn-floating {
  color: #fff;
  transition: color 0.3s ease; /* Added transition */
}

.btn-floating:hover {
  color: #DA0037;
}


.paddingOverride { /* This class name is generic, ensure it's used appropriately */
  padding-top: 30%;
}

/* Parallelogram Button Links */
.parallelogramBtn {
  display: block;
  width: 20rem; /* Fixed rem size, consider vw or % for more fluid responsiveness if needed */
  height: 20rem;
  position: relative;
  text-decoration: none;
  margin: 1rem; /* Added some margin for spacing if these are in a group */
}

.skew-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  transform: skew(-13deg);
  overflow: hidden;
}

.image-layer {
  position: absolute;
  top: 0;
  bottom: 0;
  left: -15%;
  width: 130%;
  transform: skew(13deg);
  background-size: cover;
  background-position: center;
  z-index: 1;
  transition: filter 0.5s ease-in-out;
}

.parallelogramBtn:hover .image-layer {
  filter: brightness(0.5);
}

.content {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px; /* Horizontal padding */
  background: rgba(0, 0, 0, 0.5); /* Semi-transparent overlay */
}

.skew-fix {
  transform: skew(13deg);
  color: #fff;
  text-align: center;
  font-size: 1.5rem; /* Responsive font size */
  font-family: avenir-lt-pro, sans-serif;
  line-height: 1.2;
  text-shadow: #000 1px 1px 5px;
  font-weight: 800;
}

/* Background Images for Parallelogram Buttons */
.bg1 { background-image: url('../imgs/quick-turnaround-times-image-01.jpg'); }
.bg2 { background-image: url('../imgs/complete-turnkey-solutions-image-01.jpg'); }
.bg3 { background-image: url('../imgs/certified-and-trusted-image-01.jpg'); }

/* Quote Display Toggles */
.dtQuote { display: block; } /* Desktop quote */
.mQuote { display: none; }  /* Mobile quote */


/* Hero Container with Text Banner and Image */
.hero-container {
  display: flex;
  align-items: flex-start;
  max-width: 1200px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  box-sizing: border-box;
}

.text-banner {
  background-color: #231F20;
  color: white;
  width: 70%;
  box-sizing: border-box;
  position: relative;
  z-index: 1;
  clip-path: polygon(60px 0, 100% 0, 100% 100%, 0% 100%);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin-top: 50px;
  min-height: 250px;
}

.banner-content {
  padding: 40px 38% 20px 75px; /* Original padding */
  position: relative;
}

.text-banner h3 { /* Was h1 in original, assuming HTML uses h3 */
  font-size: 2rem; /* Responsive font size */
  margin-top: 0;
  margin-bottom: 15px;
  font-weight: bold;
  text-transform: uppercase;
}

.text-banner p {
  font-size: clamp(0.875em, 2vw, 1em); /* Responsive font size */
  line-height: 1.6;
  margin-bottom: 15px;
  color: white; /* Explicitly set, though inherited */
}

.learn-more-strip {
  background-color: #DA0037;
  padding: 15px 35% 15px 75px; /* Original padding */
  margin-top: auto;
}

.learn-more-link {
  color: white;
  text-decoration: none;
  font-weight: bold;
  text-transform: uppercase;
  font-size: clamp(0.875em, 2vw, 1em); /* Responsive font size */
  display: inline-block;
  float: right; /* Retained */
  transition: color 0.3s ease, filter 0.3s ease; /* filter was 0.5s */
}

.learn-more-link .arrow {
  margin-left: 10px;
  font-size: 1.2em;
}

.learn-more-link:hover {
  color: #231F20;
  filter: brightness(0.85); /* Adjusted brightness for better visibility */
}

.image-section {
  flex-grow: 1;
  overflow: hidden;
  box-sizing: border-box;
  position: relative;
  z-index: 2;
  margin-left: -240px;
  height: 360px; /* Fixed height for desktop */
}

.image-section img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.staffTitle{
	  font-style: italic;
}
.single-team .inner {
    text-align: center;
	margin-bottom: 35px;
	padding: 5px 5px 0px;
}

.single-team .inner .team-img {
	position: relative;
}

.single-team .inner .team-img img {
	width: 100%;
}

.single-team .inner .team-img::after {
	content: "";
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	opacity: 0;
}

.single-team .inner .team-img:hover::after {
	opacity: 0.4;
}

.single-team .inner .team-content {
	padding: 22px 0px 11px;
	background-color: #FFF;
}

.single-team .inner .team-content h4 {
	  font-size: 2rem;
	font-weight: 800;
	font-family: avenir-lt-pro, sans-serif;
	text-transform: uppercase;
}

.single-team .inner .team-content h5 {
	font-weight: 300;
	font-size: 1.5rem;
	letter-spacing: 0.5px;
}

.single-team .inner .team-content a {
	display: inline-block;
	margin: 0 3px;
	font-size: 16px;
	color:#000;
	text-decoration:none;
	
}

.team-social {
	background: #f3f6fa;
	width: 50%;
	padding-top: 4px;
	margin: auto;
	border-radius: 15px 15px 0px 0px;
	margin-top: 17px;
}

.swiper-container {
	width: 50%;
	height: 60%;
	margin-left: auto;
	margin-right: auto;
}
.swiper-slide {
	text-align: center;
	font-size: 18px;
	background: #fff;
	height: 100%;
	color: #000;
/* transform: scale(0.8); */
	/* Center slide text vertically */
	display: -webkit-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	-webkit-justify-content: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	-webkit-align-items: center;
	align-items: center;
	transition: 0.3s all;
	box-shadow: 0 0 20px #00000036;
	border-radius: 10px;
}

.swiper-slide:not(.swiper-slide-prev):not(.swiper-slide-active):not(.swiper-slide-next) {
	opacity: 0;
}

.swiper-slide-prev, 
.swiper-slide-next {
	opacity: 0.3;
}

.swiper-slide-active {
	transition: 0.3s all;
	opacity: 1;
	background-color: orange;
}

   .grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* 4 cards per row */
    gap: 20px;
    margin-bottom: 30px;
}
.card {
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column;
    height: 100%;
    overflow: hidden;
    padding-bottom: 15px;
}
        .card:hover {
            transform: translateY(-5px);
        }
     .card img {
    height: auto;
    flex: 1 1 auto;
    object-fit: cover;
}
        .card-content {
            padding: 15px;
        }
        .card h2 {
            font-size: 18px;
            margin: 0 0 10px;
            color: #da0037;
        }
        .price, .msrp, .savings {
            margin: 4px 0;
            font-size: 15px;
        }
        .savings {
            font-weight: bold;
            color: #c10000;
        }
        .pagination {
            text-align: center;
            margin-top: 30px;
        }
        .pagination a {
            display: inline-block;
            padding: 8px 12px;
            margin: 0 4px;
            background: #eee;
            color: #333;
            text-decoration: none;
            border-radius: 4px;
        }
        .pagination a.active {
            background: #da0037;
            color: white;
        }
.cta-button {
    width: 80%;
    margin: 15px auto 0; /* center horizontally + spacing */
    background-color: #DA0037;
    color: white;
    border: none;
    padding: 12px 0;
    font-size: 16px;
    font-weight: bold;
    text-align: center;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.2s ease;
}
.copyLink{
	text-decoration:none;
	color:#DA0037;
}
.cta-button:hover {
    background-color: #b8002c;
}
.btn-link{
	color: #DA0037;
}
.btn-link:hover{
	color: #960328;
}
/* Modal styling */


.modal h2 {
    margin-top: 0;
    color: #da0037;
}

.modal label {
    display: block;
    margin-top: 10px;
    font-weight: bold;
}

.modal input, .modal textarea {
    width: 100%;
    padding: 8px;
    margin-top: 5px;
    border-radius: 4px;
    border: 1px solid #ccc;
    box-sizing: border-box;
}

.modal button[type="submit"] {
    margin-top: 15px;
    background: #da0037;
    color: white;
    border: none;
    padding: 10px;
    width: 100%;
    border-radius: 5px;
    cursor: pointer;
}

.modal button[type="submit"]:hover {
    background: #0062b1;
}


@media (max-width: 768px) {
    .grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .grid {
        grid-template-columns: 1fr; /* 1 card per row on phones */
    }
}


/* ------------------------- MEDIA QUERIES ------------------------- */

/* Desktops and Large Tablets (1024px - 1280px) */
@media all and (min-width: 1024px) and (max-width: 1280px) {
  /* .skew-wrapper, .skew-fix, .image-layer styles for this breakpoint are identical to default,
      so they might be redundant unless overriding something from a lower breakpoint not shown.
      Kept for now due to "do not change" constraint. */
  .skew-wrapper { transform: skew(-13deg); }
  .skew-fix { transform: skew(13deg); }
  .image-layer { left: -15%; width: 130%; transform: skew(13deg); }

  .centerSlideshow { display: block; }
  .mobileSlideshow { display: none; }
  .dtQuote { display: block; }
  .mQuote { display: none; }
}

/* Tablets (Portrait) & Small Desktops (max-width: 1023px) */
/* This also covers the hero-container adjustments */
@media all and (max-width: 1023px) {
  .hero-container {
    flex-direction: column;
    align-items: center;
  }

  .text-banner {
    width: 85%;
    margin: 10px auto 20px auto; /* Adjusted margin, removed top margin if image is first */
    clip-path: none;
    min-height: auto;
    /* margin-top: 0; /* Reset from desktop */ /* Handled by new margin */
  }

  .image-section {
    position: relative;
    order: -1;
    width: 85%;
    height: 250px;
    margin: 20px auto 0 auto;
    z-index: auto;
    flex-grow: 0;
  }

  .image-section img {
    object-fit: cover;

  }

  .banner-content {
    padding: 30px 30px 15px 30px;
  }

  .learn-more-strip {
    padding: 15px 30px;
  }

  .text-banner h3 {
    font-size: clamp(1.8em, 5vw, 2.2em);
  }

  
}


/* Smaller Tablets (768px - 1023px, overlaps with above, be cautious) */
/* Original: min-width: 768px and max-width: 1024px */
@media all and (min-width: 768px) and (max-width: 1023px) { /* Adjusted max-width for consistency */
 .backgroundBody{ 
background: unset;

}
  p { font-size: clamp(1rem, 3vw, 1.5rem); }
  h3 { font-size: clamp(2rem, 8vw, 3.5rem); }
  h4 { font-size: clamp(1.25rem, 4vw, 2rem); }

  .hero {
    /* background-image: url(../imgs/siren-homepage-hero-image-01.jpg); */
  }
  .centerSlideshow { display: block; }
  .mobileSlideshow { display: none; }
  .dtQuote { display: block; }
  .mQuote { display: none; }

  /* Parallelogram buttons become square */
  .skew-wrapper { transform: none;}
  .skew-fix { transform: none; }
  .image-layer { left: 0; width: 100%; transform: none; }

  .mobileBtn { display: block; }
  .btnGetQuoteNav { display: none; }

  .truckOverlay {
    top: 30%;
  }
  .paddingOverride {
    padding-top: 25%;
  }
}

/* Large Phones / Small Tablets (max-width: 767px) */
@media all and (max-width: 767px) {
 .backgroundBody{ 
background: unset;

}
  p { font-size: clamp(0.9rem, 3vw, 1.2rem); }
  h3 { font-size: clamp(1.8rem, 8vw, 3rem); }
  h4 { font-size: clamp(1.1rem, 4vw, 1.8rem); }

  .parallelogram-slideshow .nav-btn { font-size: 20px; width: 36px; height: 36px; }

  .centerSlideshow { display: none; }
  .mobileSlideshow { display: block; }

  .mobileBtn { display: block; }
  .btnGetQuoteNav { display: none; }

  .topPadding { padding-top: 15%; }
  .paddingOverride { padding-top: 0%; }

  .truckOverlay { top: 43%; }

  .hero {
    background-size: contain;
    background-repeat: no-repeat;
    height: auto;
    min-height: 200px;
    aspect-ratio: 16/7;
  }

  .dtQuote { display: none; }
  .mQuote { display: block; }

  .skew-wrapper { transform: none; }
  .skew-fix { transform: none; }
  .image-layer { left: 0; width: 100%; transform: none; }


  .text-banner {
    width: 90%;
  }
  .image-section {
    height: 200px;
    width: 90%;
  }
  .banner-content {
    padding: 25px 25px 10px 25px;
  }
  .text-banner h3 {
    font-size: clamp(1.6em, 5vw, 2em);
  }
  .learn-more-strip {
    padding: 10px 25px;
  }
}


/* Small Phones (max-width: 479px) */
@media all and (max-width: 479px) {
	h1 {font-size: 2.5rem;}
  p { font-size: clamp(0.85rem, 4vw, 1rem); }
  h2 { font-size: clamp(1.5rem, 5vh, 2.5rem); }
  h3 { font-size: clamp(1.5rem, 8vw, 2.5rem); }
  h4 { font-size: clamp(1rem, 6vw, 1.5rem); }

  .btnGetQuote {
    font-size: clamp(1.1rem, 5vh, 1.4rem);
    padding: 3% 5%;
  }

  .hero {
    min-height: 150px;
    aspect-ratio: 16/6;
  }
  .truckOverlay {
    top: 23%;
  }
  .navigation-bar {
    height: 80px;
  }
  .paddingOverride {
    padding-top: 10%;
  }

  .text-banner {
    width: 95%;
  }
  .image-section {
    height: 180px;
    width: 80%;
  }
  .banner-content {
    padding: 20px 20px 10px 20px;
  }
  .text-banner h3 {
    font-size: clamp(1.4em, 5vw, 1.8em);
  }
  .text-banner p {
    font-size: clamp(0.8em, 3vw, 0.9em);
  }
  .learn-more-strip {
    padding: 10px 20px;
  }
}
@media all and (max-width: 431px) {
	  .paddingOverride {
    padding-top: 10%;
  }
 .truckOverlay {
    top: 27%;
  }
		
	
}
@media all and (max-width: 376px) {
	  .paddingOverride {
    padding-top: 10%;
  }
 .truckOverlay {
    top: 28%;
  }
		
	
}
@media (max-width: 321px) {
    .truckOverlay {
        top: 37%;
    }
}
@media only screen and (min-width: 1024px) and (max-width: 1366px) and (orientation: portrait) {
	.truckOverlay {
    top: 29%;
  }
		 .paddingOverride {
    padding-top: 20%;
  }
  .skew-wrapper { transform: none; }
  .skew-fix { transform: none; }
  .image-layer { left: 0; width: 100%; transform: none; }
		
	}
	

#wrapper-header {
    color: #fff;
    height: 150px;
    left: 0;
    margin: 0 auto;
    padding: 0;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 99;
	
}


#header-box {
    height: 285px;
    left: -12px;
    position: absolute;
    top: 0;
    width: 285px;
}
#header-box #headerbg {
    background: #DA0037;
    height: 100%;
    position: absolute;
    right: 0;
    top: 0;
    -webkit-transform: skew(-45deg);
    transform: skew(-45deg);
    -webkit-transform-origin: top right;
    transform-origin: top right;
    width: 100%;
    z-index: -1;
}
#header-box #logo {
    left: 30px;
    position: absolute;
    top: 43px;
    width: 70px;
}
#header-box #logo a {
    display: block;
}
#header-box #logo img {
    height: auto;
    width: 100%;
}
#header-box #menu-button {
    cursor: pointer;
    height: 66px;
    left: 130px;
    position: absolute;
    top: 43px;
    width: 55px;
    z-index: 99;
}
#header-box #menu-button span {
    background: #000;
    height: 5px;
    left: 0;
    position: absolute;
    transition: 0.1s ease-in-out;
}
#header-box #menu-button span#top {
    top: 18px;
    transition-delay: 0s;
    width: 55px;
}
#header-box #menu-button span#middle {
    top: 32px;
    transition-delay: 0.1s;
    width: 40px;
}
#header-box #menu-button span#bottom {
    top: 46px;
    transition-delay: 0.2s;
    width: 25px;
}
#header-box #menu-button.hoverstate span#top,
#header-box #menu-button:hover span#top {
    width: 60px;
}
#header-box #menu-button.hoverstate span#middle,
#header-box #menu-button:hover span#middle {
    width: 45px;
}
#header-box #menu-button.hoverstate span#bottom,
#header-box #menu-button:hover span#bottom {
    width: 30px;
}


@media only screen and (max-width: 767px) {
    #header-box {
        height: 60px;
        width: calc(100% - 10px);
    }
    #header-box #logo {
        left: 20px;
        top: 10px;
        width: 40px;
    }
    #header-box #menu-button,
    #header-box #menu-button:hover {
        left: auto;
        right: 30px;
        top: 10px;
    }
    #header-box #menu-button span,
    #header-box #menu-button:hover span {
        height: 3px;
    }
    #header-box #menu-button span#top,
    #header-box #menu-button:hover span#top {
        top: 7px;
        width: 40px;
    }
    #header-box #menu-button span#middle,
    #header-box #menu-button:hover span#middle {
        top: 18px;
        width: 30px;
    }
    #header-box #menu-button span#bottom,
    #header-box #menu-button:hover span#bottom {
        top: 30px;
        width: 20px;
    }
}
#wrapper-menu {
    background: #222;
    display: inline-block;
    left: -2000px;
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    transition: 0.8s ease-in-out;
    z-index: -2;
}
#wrapper-menu.active {
    left: 0;
}
#wrapper-menu ul {
    display: inline-block;
    margin: 0;
    padding: 0 0 0 255px;
	
}
#wrapper-menu ul li {
    float: left;
    list-style: none;
    margin: 0;
    padding: 0;
}
#wrapper-menu ul li a {
    color: #fff;
    display: block;
    font-size: 32px;
    padding: 15px 25px;
    text-decoration: none;
    text-transform: uppercase;
	font-family: futura-pt-condensed, sans-serif;
font-weight: 500;
font-style: normal;
}
#wrapper-menu ul li a:hover,
#wrapper-menu ul li.active a,
#wrapper-menu ul li.current-menu-item a {
    color: #DA0037;
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
}
#wrapper-menu:before {
    background: #222;
    bottom: 0;
    content: "";
    height: 100%;
    position: absolute;
    right: -40px;
    -webkit-transform: skew(-45deg);
    transform: skew(-45deg);
    width: 50%;
    z-index: -1;
}
#wrapper-menu-close {
	font-family: avenir-lt-pro, sans-serif;
    color: #fff;
    content: "X";
    cursor: pointer;
    display: none;
    font-size: 30px;
    height: 38px;
    line-height: 0.7em;
    padding: 5px 10px;
    position: absolute;
    right: 10px;
    text-align: center;
    top: 10px;
    width: 40px;
    z-index: 99;
}
#wrapper-menu-overlay {
    background: rgba(0, 0, 0, 0.9);
    content: "";
    display: none;
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;

}
@media only screen and (max-width: 1024px) {
    #wrapper-menu {
        background: none;
        min-height: 100%;
        position: fixed;
        top: 0;
        -webkit-transform: translate(-50%);
        transform: translate(-50%);
        transition: 0.4s ease-in-out;
        width: 100%;
        z-index: 999;
    }
    #wrapper-menu:before {
        display: none;
    }
    #wrapper-menu .hs-menu-wrapper {
        margin: 0 auto;
        max-width: 450px;
    }
    #wrapper-menu ul {
        display: block;
        margin: 0 auto;
        padding: 50px;
        position: relative;
        z-index: 98;
    }
    #wrapper-menu ul li {
        float: none;
        text-align: center;
    }
    #wrapper-menu ul li a {
        display: inline-block;
        font-size: 3vh;
        text-align: center;
    }
    #wrapper-menu #wrapper-menu-close,
    #wrapper-menu #wrapper-menu-overlay {
        display: block;
    }
    #wrapper-menu.active {
        left: 50%;
    }
    #wrapper-menu.active #wrapper-menu-close,
    #wrapper-menu.active #wrapper-menu-overlay {
        display: block;
    }
}

/* ================================================================================
  FIX: Re-ordered and consolidated .truckOverlay media queries
  
  The original file had these rules scattered and in the wrong order.
  They are now grouped here, from smallest to largest 'min-width', to ensure
  the correct styles apply at each breakpoint due to the CSS cascade.
  ================================================================================
*/
@media only screen and (min-width: 1200px) {
    .paddingOverride { padding-top: 20%; }
    .truckOverlay { top: 57%; }
}

@media only screen and (min-width: 1300px) {
    .paddingOverride { padding-top: 22%; }
    .truckOverlay { top: 63%; }
}

@media all and (min-width: 1400px) {
    .paddingOverride { padding-top: 25%; }
    .truckOverlay { top: 65%; }
}

@media all and (min-width: 1440px) {
    .truckOverlay { top: 57%; }
}

@media only screen and (min-width: 1900px) {
    .paddingOverride { padding-top: 26%; }
    .truckOverlay { top: 58%; }
}


@media all and (min-width: 2048px) {
    .truckOverlay { top: 53%; }
}

@media all and (min-width: 2240px) {
    .truckOverlay { top: 54%; }
}

@media all and (min-width: 2304px) {
    .truckOverlay { top: 46%; }
}

@media only screen and (min-width: 2500px) {
    .paddingOverride { padding-top: 25%; }
    .truckOverlay { top: 48%; }
}

@media all and (min-width: 3200px) {
    .truckOverlay { top: 38%; }
}

@media all and (min-width: 3840px) {
    .truckOverlay { top: 30%; }
}
