/* General */

/* Body */

p, .body {
  margin-bottom: 1.5rem;
  font-family: "myriad-variable";
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.5;
}

.body-lg {
  font-family: "myriad-variable";
  font-size: 1.25rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.5
}

.body-sm {
  font-family: "myriad-variable";
  font-size: 0.875rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.5;
}

.body-xs {
  font-family: "myriad-variable";
  font-size: 0.75rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.5;
}

/* Headings */

h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6 {
  margin-bottom: 1rem;
  font-family: "myriad-variable", sans-serif;
  font-style: normal;
  font-weight: 700;
  line-height: 1.2;
  color: inherit;
}

h1, .h1 {
  font-size: 2.5rem;
}

h2, .h2 {
  font-size: 2rem;
}

h3, .h3 {
  font-size: 1.75rem;
}

h4, .h4 {
  font-size: 1.5rem;
}

h5, .h5 {
  font-size: 1.25rem;
}

h6, .h6 {
  font-size: 1rem;
}

/* Display Headings */

.display-1, .display-2, .display-3,
.display-4, .display-5, .display-6 {
  margin-bottom: 1rem;
  font-family: "rockwell-nova", serif;
  font-style: normal;
  font-weight: 700;
  line-height: 1.1;
}

.display-1 {
  font-size: 3.5rem;
}

@media (min-width: 1024px) {
  .display-1 {
    font-size: 5rem;
  }
}

.display-2 {
  font-size: 3rem;
}

@media (min-width: 1024px) {
  .display-2 {
    font-size: 4.5rem;
  }
}

.display-3 {
  font-size: 2.75rem;
}

@media (min-width: 1024px) {
  .display-3 {
    font-size: 4rem;
  }
}

.display-4 {
  font-size: 2.5rem;
}

@media (min-width: 1024px) {
  .display-4 {
    font-size: 3.5rem;
  }
}

.display-5 {
  font-size: 2.25rem;
}

@media (min-width: 1024px) {
  .display-5 {
    font-size: 3rem;
  }
}

.display-6 {
  font-size: 2rem;
}

@media (min-width: 1024px) {
  .display-6 {
    font-size: 2.5rem;
  }
}

/* Subtitles */

.subtitle, 
.subtitle-lg {
  font-family: 'exo-2-variable', sans-serif;
  font-style: normal;
  font-weight: 700;
  line-height: 1.2;
  text-transform: uppercase;
}

.subtitle {
  font-size: 1rem;
  letter-spacing: 2.4px;
}

.subtitle-lg {
  font-size: 1.25rem;
  letter-spacing: 3px;
}

@media (min-width: 768px) {
  .md\:h4 {
    font-size: 1.5rem;
  }
}

.btn {
  font-family: 'exo-2-variable', sans-serif;
  font-style: normal;
  line-height: 1.2;
  text-transform: uppercase;
  font-size: 1rem;
  letter-spacing: 0.8px;
  font-weight: 600;
}

/* Components */

.bg-overlay {
  position: absolute;
  top: 0px;
  right: 0px;
  bottom: 0px;
  left: 0px;
}

.bg-overlay::after {
  position: absolute;
  top: 0px;
  right: 0px;
  bottom: 0px;
  left: 0px;
  content: '';
  background: linear-gradient(90deg, #000 0%, rgba(0, 0, 0, 0.00) 100%);
}

.bg-overlay .logo {
  top: 2rem;
  right: 2.5rem;
}

.bg-overlay-2 {
  position: absolute;
  top: 0px;
  right: 0px;
  bottom: 0px;
  left: 0px;
}

.bg-overlay-2::after {
  position: absolute;
  top: 0px;
  right: 0px;
  bottom: 0px;
  left: 0px;
  content: '';
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.50) 100%);
  -webkit-backdrop-filter: blur(2px);
          backdrop-filter: blur(2px);
}

.grid-cols-40-60 {
  grid-template-columns: 40% 60%;
}

.grid-cols-60-40 {
  grid-template-columns: 60% 40%;
}

.grid-cols-auto {
  grid-template-columns: auto;
  grid-auto-flow: column;
}

@media not all and (min-width: 768px) {
  .grid-cols-2,
.grid-cols-40-60,
.grid-cols-60-40,
.grid-cols-auto {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
}

.check-icon-list {
  display: flex;
  flex-flow: row wrap;
  row-gap: 16px;
  -moz-column-gap: 1.5rem;
       column-gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.check-icon-list li {
  flex-basis: calc(50% - 0.75rem);
  padding-left: 1.5rem;
  position: relative;
}

.check-icon-list li::before {
  content: '\f058';
  position: absolute;
  top: 0;
  left: 0;
  font-family: 'Font Awesome 6 Pro';
  font-size: 1rem;
  font-weight: 700;
  color: #CF202E;
}

.rounded-lg {
  border-radius: 0.5rem;
}

.px-4 {
  padding-left: 1rem;
  padding-right: 1rem;
}

.p-6 {
  padding: 1.5rem;
}

.px-6 {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.py-6 {
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}

.pt-6 {
  padding-top: 1.5rem;
}

.pr-6 {
  padding-right: 1.5rem;
}

.pb-6 {
  padding-bottom: 1.5rem;
}

.pl-6 {
  padding-left: 1.5rem;
}

.pb-\[20rem\] {
  padding-bottom: 20rem;
}

.pb-16 {
  padding-bottom: 4rem;
}

.pb-24 {
  padding-bottom: 6rem;
}

.pt-24 {
  padding-top: 6rem;
}

.m-6 {
  margin: 1.5rem;
}

.mx-6 {
  margin-left: 1.5rem;
  margin-right: 1.5rem;
}

.my-6 {
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
}

.mt-6 {
  margin-top: 1.5rem;
}

.mr-6 {
  margin-right: 1.5rem;
}

.mb-6 {
  margin-bottom: 1.5rem;
}

.ml-6 {
  margin-left: 1.5rem;
}

.mb-2 {
  margin-bottom: 0.5rem;
}

@media (min-width: 1024px) and (max-width: 1200px) {
  .lg\:px-5 {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
    font-size: 0.875rem;
  }
}

.card {
  position: relative;
  box-shadow: 0px 8px 32px 0px rgba(0, 0, 0, 0.20);
}

.card img {
  z-index: 1;
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: linear-gradient(180deg, #000 0%, rgba(0, 0, 0, 0.00) 100%);
  z-index: 2;
}

.card:hover::before {
  background: rgba(122, 0, 0, 0.80);
  -webkit-backdrop-filter: blur(2px);
          backdrop-filter: blur(2px);
}

.card > div {
  z-index: 3;
}

.aspect-3-2 {
  aspect-ratio: 3 / 2;
}

.aspect-2-3 {
  aspect-ratio: 2 / 3;
}

.presentationBG {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.90) 0%, rgba(30, 30, 31, 0.80) 100%),
                var(--presentationBG);
  background-position: center;
  background-size: cover;
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
}

.grid-cols-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid-cols-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.col-span-1 {
  grid-column: span 1/span 1;
}

.col-span-2 {
  grid-column: span 2/span 2;
}

.col-span-3 {
  grid-column: span 3/span 3;
}

.col-span-4 {
  grid-column: span 4/span 4;
}

.col-span-5 {
  grid-column: span 5/span 5;
}

.col-span-6 {
  grid-column: span 6/span 6;
}

.col-span-7 {
  grid-column: span 7/span 7;
}

.col-span-8 {
  grid-column: span 8/span 8;
}

.col-span-9 {
  grid-column: span 9/span 9;
}

.col-span-10 {
  grid-column: span 10/span 10;
}

.col-span-11 {
  grid-column: span 11/span 11;
}

.col-span-12 {
  grid-column: span 12/span 12;
}

@media (min-width: 768px) {
  .md\:col-span-1 {
    grid-column: span 1/span 1;
  }

  .md\:col-span-2 {
    grid-column: span 2/span 2;
  }

  .md\:col-span-3 {
    grid-column: span 3/span 3;
  }
}

@media (min-width: 1024px) {
  .lg\:col-span-1 {
    grid-column: span 1/span 1;
  }

  .lg\:col-span-2 {
    grid-column: span 2/span 2;
  }

  .lg\:col-span-3 {
    grid-column: span 3/span 3;
  }
}

.form-check {
  display: block;
  min-height: 1.5rem;
  padding-left: 1.5em;
  margin-bottom: .125rem;
}

.form-check-input {
  --bs-form-check-bg: var(--bs-body-bg);
  width: 1em;
  height: 1em;
  margin-top: .25em;
  vertical-align: top;
  background-color: var(--bs-form-check-bg);
  background-image: var(--bs-form-check-bg-image);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  border: var(--bs-border-width) solid var(--bs-border-color);
  -webkit-appearance: auto;
     -moz-appearance: auto;
          appearance: auto;
}

.form-check .form-check-input {
  float: left;
  margin-left: -1.5em;
}

.form-check-input[type="checkbox"] {
  border-radius: .25em;
}

.form-check-label {
  display: inline-block;
}

.isnew:checked + label,
.isused:checked + label,
.isall:checked + label {
  --tw-border-opacity: 1 !important;
  border-color: rgb(30 30 31 / var(--tw-border-opacity, 1)) !important;
  --tw-text-opacity: 1;
  color: rgb(207 32 46 / var(--tw-text-opacity, 1));
}

.form-control {
  background: white;
  border-radius: 0.5rem;
  border: 1px solid #B4B4B8;
  padding: 13.5px 1rem;
  line-height: 1;
}

.DnnModule .LiveForm.Default .Field input[type="checkbox"],
.DnnModule .LiveForm.Default .Field input[type="radio"] {
  padding: 0 !important;
  width: 1rem !important;
  height: 1rem !important;
}

.watermark-right {
  position: absolute;
  top: -2.5rem;
  right: -12rem;
  background-image: url("/Portals/0/Images/kenworth-watermark1.png");
  background-size: contain;
  width: 381px;
  height: 688px;
  z-index: -1;
}

.watermark-left {
  position: absolute;
  top: -2.5rem;
  left: -12rem;
  background-image: url("/Portals/0/Images/kenworth-watermark2.png");
  background-size: contain;
  width: 358px;
  height: 358px;
  z-index: -1;
}

@media (max-width: 1023px) {
  #site-logo {
    width: 180px !important;
    height: 24px !important;
  }
}

.swiper-wrapper {
  align-items: center !important;
}

.bulleted-list {
  padding-left: 2rem;
  list-style: disc;
}

.bulleted-list li {
  margin-bottom: 0.25rem;
}

div {
  scroll-margin-top: 138px;
}

[drawer-backdrop] {
  display: none;
}