/*
 * Stylesheet :
 * Created    : Oct 2024
 * -----------------------------------------------------------------------------------
 */
@import url('https://use.typekit.net/dyc4qud.css');
html {
  font-size: var(--gis-root-font-size);
  scroll-behavior: smooth;
}

body {
  font-size: 24px;
}

.site {
  overflow: clip;
}

.clearfix::before,
.clearfix::after {
  content: '';
  display: table;
}
.clearfix::after {
  clear: both;
}

h4 {
  color: #0b3780;
  font-size: 1.625rem;
  font-weight: 600;
  padding-left: 30px;
  position: relative;
}
h4:before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  background-color: #000;
  -webkit-clip-path: polygon(0% 0%, 100% 50%, 0% 100%);
  clip-path: polygon(0% 0%, 100% 50%, 0% 100%);
}

.bottom-text {
  font-size: 1.75rem;
  margin: 40px 0 10px;
}
.bottom-text span {
  color: #0b3780;
}

.content {
  margin-left: 0;
  font-size: 1.875rem;
  max-width: 500px;
  padding: 20px;
  border-radius: 0px 20px 20px 0px;
  background: rgba(255, 255, 255, 0.6);
  z-index: 2;
  position: relative;
  margin-top: 10px;
}
@media (min-width: 576px) {
  .content {
    margin-top: 100px;
  }
}
@media (min-width: 576px) {
  .content {
    max-width: 680px;
    margin-left: 50px;
    background: rgba(255, 255, 255, 0.8);
  }
}
@media (min-width: 1800px) {
  .content {
    max-width: 680px;
  }
}

.g-y {
  height: 100%;
  background: linear-gradient(180deg, #e4d287 40%, #e4d287 60%, #fffae4 100%);
}

/* Reset CSS */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html,
body {
  height: 100%;
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
}

body {
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
}

input,
button,
textarea,
select {
  font: inherit;
}

p,
h1,
h2,
h3,
h4,
h5,
h6 {
  overflow-wrap: break-word;
}

a {
  text-decoration: none;
  color: inherit;
}

ul,
ol {
  list-style: none;
}

:root {
  --gis-root-font-size: 12px;
  --gis-page-max-width: 100%;
  --gis-container-gutter-x: 15px;
  --gis-container-offset-x: var(--gis-container-gutter-x);
  --gis-container-max-width: calc(
    var(--gis-page-max-width) - var(--gis-container-gutter-x)
  );
}
@media (min-width: 576px) {
  :root {
    --gis-root-font-size: 14.4px;
  }
}
@media (min-width: 992px) {
  :root {
    --gis-root-font-size: 16px;
    --gis-container-gutter-x: 15px;
  }
}
@media (min-width: 1650px) {
  :root {
    --gis-container-gutter-x: 15px;
    --gis-page-max-width: 1920px;
  }
}
@media (min-width: 1800px) {
  :root {
    --gis-root-font-size: 16px;
    --gis-page-max-width: 1920px;
  }
}

body {
  font-family: 'aktiv-grotesk', sans-serif;
}

.font-thin {
  font-family: 'aktiv-grotesk', sans-serif;
  font-weight: 300;
  font-style: normal;
}

.font-regular {
  font-family: 'aktiv-grotesk', sans-serif;
  font-weight: 400;
  font-style: normal;
}

.font-medium {
  font-weight: 600;
  font-style: normal;
}

.font-bold {
  font-family: 'aktiv-grotesk', sans-serif;
  font-weight: 700;
  font-style: normal;
}

.font-extra-bold {
  font-family: 'aktiv-grotesk', sans-serif;
  font-weight: 800;
  font-style: normal;
}

header {
  position: relative;
  width: 100%;
  height: 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 20px;
  text-align: center;
}
@media (min-width: 576px) {
  header {
    height: auto;
  }
}
header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 100%;
  background: linear-gradient(136deg, black 32%, #4b4b4b 99%);
  z-index: -1;
}

header .main-logo {
  display: block;
  background-image: url('../images/banner-logo.png');
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  width: 190px;
  height: 90px;
  text-indent: -9999px;
  overflow: hidden;
  margin-right: 200px;
}

/* header .main-logo {
  display: block;
  background-image: url("../images/logo.png");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  width: 55px;
  height: 88px;
  text-indent: -9999px;
  overflow: hidden;
  margin-right: 200px;
} */
header h1 {
  font-size: 2.3125rem;
  font-weight: 500;
  color: #fff;
}
@media (max-width: 768px) {
  header h1 {
    font-size: 1.5rem;
  }
}

.menu {
  display: none;
  position: relative;
  gap: 100px;
  line-height: 0.7;
}
@media (min-width: 576px) {
  .menu {
    display: flex;
    align-items: center;
    justify-content: center;
  }
}
.menu li {
  height: 10px;
  padding-left: 30px;
  position: relative;
}
.menu li::before {
  content: '';
  position: absolute;
  top: 80%;
  transform: translateY(-50%);
  left: 0;
  width: 19px;
  height: 19px;
  background-image: url(../images/icons/arrow-menu.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}
.menu a {
  font-size: 1.1125rem;
  font-weight: 500;
  color: #fff;
}

.main-menu {
  width: 100%;
  padding: 5px 0 0px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.menu-items {
  position: relative;
}

.compass {
  display: block;
  position: relative;
  margin-bottom: -240px;
  z-index: 10;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.compass.hidden {
  opacity: 0;
}

.sales-locations {
  width: 100%;
  padding: 10px 0;
  /* margin-top: 15px; */
  background: linear-gradient(90deg, #4b0707 0%, #b11010 52%, #4b0707 100%);
}

#location-form {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  background-color: #fff;
  background-color: transparent;
}
@media (max-width: 768px) {
  #location-form {
    flex-direction: column;
    gap: 10px;
  }
  .sales-locations {
    padding-top: 80px;
  }
}
#location-form label {
  color: white;
  font-size: 20px;
  font-weight: 700;
}
@media (max-width: 768px) {
  #location-form label {
    font-size: 30px;
  }
}
#location-form input {
  width: 100px;
  height: 40px;
  font-size: 20px;
  font-weight: 500;
  color: #000;
  border: none;
  outline: none;
  margin-left: 20px;
  border-bottom-left-radius: 5px;
  border-top-left-radius: 5px;
  padding: 5px;
}

@media (max-width: 768px) {
  #location-form input {
    width: 170px;
    height: 40px;
    margin-left: 0px;
  }
}
#location-form button {
  padding: 5px 20px;
  height: 40px;
  font-size: 20px;
  font-weight: 500;
  color: #fff;
  background-color: #000;
  border: 1px solid #000;
  outline: none;
  cursor: pointer;
  border-bottom-right-radius: 5px;
  border-top-right-radius: 5px;
}

.main-menu {
  display: none;
}
@media (min-width: 576px) {
  .main-menu {
    display: flex;
  }
}

.site-header h3 {
  color: white;
  font-size: 19px;
  font-weight: 400;
}
@media (min-width: 576px) {
  .site-header h3 {
    font-size: 20px;
  }
}

.banner-logo {
  margin-top: 70px;
}
@media (min-width: 576px) {
  .banner-logo {
    margin-top: 0px;
  }
}

footer .contact-us {
  background: #d6d6d6;
  display: flex;
  padding: 30px 0;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}
footer .contact-us h5 {
  font-size: 23px;
}
footer .powered {
  background: #1e1e1e;
  padding: 25px 0;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 50px;
  font-size: 20px;
  font-weight: 400;
}
@media (max-width: 768px) {
  footer .powered {
    flex-direction: column;
    gap: 20px;
    align-items: center;
    justify-content: center;
  }
}
@media (max-width: 576px) {
  footer .powered {
    font-size: 16px;
  }
}
footer .powered .logo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.three-column__row {
  display: flex;
  flex-direction: column;
  padding: 0 20px;
}
@media (min-width: 576px) {
  .three-column__row {
    flex-direction: row;
    padding: 0;
  }
}
.three-column__row > *:first-child {
  width: 100%;
}
@media (min-width: 576px) {
  .three-column__row > *:first-child {
    width: 33.333%;
  }
}
.three-column__row > *:nth-child(2) {
  width: 100%;
}
@media (min-width: 576px) {
  .three-column__row > *:nth-child(2) {
    width: 33.333%;
  }
}
.three-column__row > *:nth-child(3) {
  width: 100%;
}
@media (min-width: 576px) {
  .three-column__row > *:nth-child(3) {
    width: 33.333%;
  }
}

.two-column {
  position: relative;
  z-index: 1;
}
.two-column__row {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
@media (min-width: 576px) {
  .two-column__row {
    flex-direction: row;
  }
}
.two-column__row > *:first-child {
  width: 100%;
}
@media (min-width: 576px) {
  .two-column__row > *:first-child {
    width: 50%;
  }
}
.two-column__row > *:nth-child(2) {
  width: 100%;
}
@media (min-width: 576px) {
  .two-column__row > *:nth-child(2) {
    width: 50%;
  }
}

.two-column-text {
  display: flex;
  flex-direction: column;
  gap: 60px;
}
@media (min-width: 576px) {
  .two-column-text {
    flex-direction: row;
  }
}
.two-column-text > * {
  width: 100%;
}
@media (min-width: 576px) {
  .two-column-text > * {
    width: 50%;
  }
}

.black-btn {
  display: block;
  margin: 0 auto;
  text-align: center;
  width: 304px;
  color: #fff;
  border-radius: 15px;
  background: #000;
  font-size: 1.5rem;
  font-weight: 700;
  padding: 5px 20px;
}

.orange-btn {
  display: block;
  margin: 0 auto;
  text-align: center;
  width: 304px;
  color: #fff;
  border-radius: 15px;
  background: #f58e14;
  font-size: 1.5rem;
  font-weight: 700;
  padding: 5px 20px;
}

.white-btn {
  display: block;
  margin: 50px auto;
  max-width: 610px;
  text-align: center;
  color: #ca6d00;
  border-radius: 90px;
  border: 3px solid #f58e14;
  background: #fff;
  box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.3);
  font-size: 1.5rem;
  font-weight: 700;
  padding: 20px;
}

.white-border-btn {
  position: relative;
  display: block;
  margin: 0 auto;
  text-align: center;
  width: 304px;
  color: #fff;
  border-radius: 15px;
  background: #f58e14;
  font-size: 1.5rem;
  font-weight: 700;
  padding: 10px;
}
.white-border-btn::before {
  content: '';
  position: absolute;
  left: -10px;
  top: -10px;
  width: calc(100% + 20px);
  height: calc(100% + 20px);
  border-radius: 20px;
  border: 3px solid #fff;
}

.navbar {
  width: 100%;
  padding: 0;
  position: relative;
  z-index: 300010;
  text-align: left;
}
@media (min-width: 576px) {
  .navbar {
    display: none;
  }
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 62px;
}

.navbar .menu-items {
  display: flex;
}

.navbar .nav-container li {
  list-style: none;
}

.navbar .nav-container a {
  text-decoration: none;
  color: #fff;
  font-weight: 500;
  font-size: 2.5rem;
  padding: 0;
}

.navbar .nav-container a {
  text-decoration: none;
  color: #fff;
  font-weight: 500;
  font-size: 1.5rem;
}

.navbar .nav-container .submenu a {
  font-size: 1rem;
  padding: 3px;
  margin-bottom: 0;
}

.navbar .nav-container .submenu li {
  margin-bottom: 0;
}

.navbar .nav-container li {
  margin-bottom: 0;
}

.navbar .nav-container a:hover {
  font-weight: bolder;
}

.nav-container {
  position: absolute;
  top: 0;
  right: -170px;
  height: 60px;
  z-index: 10010;
}

.nav-container .checkbox {
  position: absolute;
  display: block;
  height: 32px;
  width: 32px;
  top: 28px;
  right: 20px;
  z-index: 5;
  opacity: 0;
  cursor: pointer;
}

.nav-container .hamburger-lines {
  display: block;
  height: 26px;
  width: 32px;
  position: absolute;
  top: 28px;
  right: 20px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.nav-container .hamburger-lines .line {
  display: block;
  height: 4px;
  width: 100%;
  border-radius: 10px;
  background: #fff;
}

.community-page .nav-container .hamburger-lines .line {
  background: #fff;
}

.walkthrough-page .nav-container .hamburger-lines .line {
  background: #fff;
}

.nav-container .hamburger-lines .line1 {
  transform-origin: 0% 0%;
  transition: transform 0.4s ease-in-out;
}

.nav-container .hamburger-lines .line2 {
  transition: transform 0.2s ease-in-out;
}

.nav-container .hamburger-lines .line3 {
  transform-origin: 0% 100%;
  transition: transform 0.4s ease-in-out;
}

.navbar {
  position: relative;
}

.navbar .menu-items {
  padding: 30px 0;
  margin-top: 63px;
  background-color: #000;
  height: auto;
  width: 385px;
  transform: translateX(-100%);
  display: flex;
  flex-direction: column;
  transition: transform 0.5s ease-in-out;
  text-align: center;
  background-attachment: fixed;
  background-size: cover;
  position: absolute;
  top: 0;
  right: 0;
}

.landing-page .navbar .menu-items {
  margin-top: 100px;
}

.navbar .menu-items li {
  margin-bottom: 5px;
  font-size: 1.5rem;
  font-weight: 500;
}

.nav-container input[type='checkbox']:checked ~ .menu-items {
  transform: translateX(0);
}

.nav-container input[type='checkbox']:checked ~ .hamburger-lines .line1 {
  transform: rotate(45deg);
}

.nav-container input[type='checkbox']:checked ~ .hamburger-lines .line2 {
  transform: scaleY(0);
}

.nav-container input[type='checkbox']:checked ~ .hamburger-lines .line3 {
  transform: rotate(-45deg);
}

.nav-container input[type='checkbox']:checked ~ .logo {
  display: none;
}

#mobile-navigation .submenu {
  visibility: visible;
  opacity: 1;
}
#mobile-navigation .submenu > li > a {
  text-decoration: none;
  color: #fff;
  font-weight: 400;
  font-size: 1.5rem;
  padding: 10px;
  margin-left: 1rem;
}
@media (min-width: 576px) {
  #mobile-navigation .submenu {
    visibility: hidden;
    opacity: 0;
  }
  #mobile-navigation .submenu > li > a {
    font-size: 1.2rem;
  }
}

.menu-items li {
  position: relative;
}

.submenu {
  display: none;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  background-color: #fff;
  list-style: none;
  padding: 0;
  margin: 0;
  z-index: 10;
  border: 1px solid #eee;
  width: 100%;
}
@media (min-width: 576px) {
  .submenu {
    width: 300px;
  }
}

.submenu li {
  border-bottom: 1px solid #eee;
  text-align: center;
  padding: 10px !important;
}

.submenu li:last-child {
  border-bottom: none;
}

.submenu a {
  padding: 25px !important;
  font-size: 19px !important;
  color: #333 !important;
}

.submenu a:hover {
  color: #f58e14 !important;
}

.menu-items .submenu-active .submenu {
  display: block;
}

@media (max-width: 768px) {
  .menu {
    flex-direction: column;
    gap: 35px;
  }
  .submenu {
    display: none;
    border-left: 2px solid #ddd;
  }
  .menu-items .submenu-active .submenu {
    display: block;
    position: relative;
  }
}
.page-home .full-screen-image {
  width: 100%;
  height: 600px;
  margin: 0px auto 0;
  background-image: url(../images/SpartanCargoTrailers161a.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
@media (max-width: 560px) {
  .page-home .full-screen-image {
    width: 100%;
    margin: 0 auto 0;
    height: 300px;
  }
}
.page-home .about-spartan {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  margin-top: 0px;
}
@media (max-width: 768px) {
  .page-home .about-spartan {
    grid-template-columns: 1fr;
    gap: 20px;
    text-align: center;
  }
}
@media (max-width: 576px) {
  .page-home .about-spartan {
    gap: 10px;
  }
}
.page-home span {
  font-weight: 700;
  color: #b11010;
}

.images-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding-top: 100px;
  position: relative;
  z-index: 1;
}
@media (max-width: 768px) {
  .images-row {
    flex-direction: column;
    gap: 10px;
  }

  .page-home span {
    text-align: center;
  }
}
@media (max-width: 576px) {
  .images-row {
    gap: 25px;
  }
}

.bottom-content {
  position: relative;
  width: 100%;
  z-index: 0;
  padding-bottom: 50px;
}
.bottom-content::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 1130px;
  height: 700px;
  background-image: url(../images/Sketch.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  opacity: 0.2;
}

.search-box {
  display: flex;
  max-width: 880px;
  margin: 0 auto;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 20px;
  border: 1px solid #000;
  background-color: #fff;
  margin-top: 40px;
  font-weight: 600;
}
@media (max-width: 768px) {
  .search-box {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }
}

.red-btn {
  display: inline-block;
  background-color: #b11010;
  color: #fff;
  border-radius: 5px;
  white-space: nowrap;
  padding: 10px;
}

.container {
  padding: 20px;
  width: 100%;
  max-width: 1350px;
  margin-left: auto;
  margin-right: auto;
  padding-left: var(15px);
  padding-right: var(15px);
}
@media (min-width: 576px) {
  .container {
    padding: 30px 20px;
  }
}
@media (min-width: 576px) {
  .container {
    padding-left: var(20px);
    padding-right: var(20px);
  }
}

.row {
  display: flex;
  flex-direction: column;
}
@media (min-width: 576px) {
  .row {
    flex-direction: row;
  }
}

#results {
  margin-top: 50px;
  display: flex;
  flex-wrap: wrap;
  gap: 50px;
}
#results div {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: start;
  gap: 10px;
  text-align: center;
  font-size: 1.25rem;
  background: white;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  border-radius: 10px;
  border: 1px black solid;
  padding-bottom: 10px;
  overflow: hidden;
}
#results div h5 {
  width: 100%;
  height: 90px;
  padding-top: 10px;
  color: white;
  font-size: 26px;
  font-weight: 700;
  background: #b11010;
}
#results > * {
  width: 100%;
}
@media (min-width: 576px) {
  #results > * {
    width: calc(33.333% - 50px);
  }
}

.icon-line {
  display: flex;
  align-items: center;
  gap: 5px;
}

.gallery-row {
  width: 100%;
  display: flex;
  gap: 20px;
  margin: 50px 0;
}
@media (max-width: 768px) {
  .gallery-row {
    flex-direction: column;
  }
}
.gallery-row > * {
  width: calc(33.33% - 20px);
}
@media (max-width: 768px) {
  .gallery-row > * {
    width: 100%;
  }
}

.gallery-content {
  position: relative;
  width: 100%;
  z-index: 0;
}
.gallery-content:before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 1000px;
  background-image: url(../images/galerry-bg.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.custom-prev,
.custom-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background: none;
  border: none;
  cursor: pointer;
}

.custom-prev {
  left: 30px;
}

.custom-next {
  right: 30px;
}

.custom-prev img,
.custom-next img {
  width: 90px;
  height: 90px;
}

.gallery-row .custom-prev img,
.gallery-row .custom-next img {
  width: 50px;
  height: 50px;
}

.gallery-content h1 {
  color: #b11010;
  font-size: 60px;
  font-weight: 600;
  text-align: center;
}

.design__content h1 {
  color: #b11010;
  font-size: 60px;
  font-weight: 600;
  text-align: center;
}
.gallery-content p {
  max-width: 815px;
  margin: 20px auto 40px;
  width: 100%;
  color: black;
  font-size: 20px;
  font-weight: 500;
}

@media (max-width: 768px) {
  .custom-prev {
    left: 0px;
  }
  .custom-next {
    right: 0px;
  }
}
.contact-content h1 {
  color: #b11010;
  font-size: 60px;
  font-weight: 600;
  text-align: center;
}

.about-us header {
  position: relative;
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 20px;
  text-align: center;
}
@media (min-width: 576px) {
  .about-us header {
    height: auto;
  }
}
.banner-logo {
  width: 150px;
}
@media (max-width: 768px) {
  .about-us .banner-logo {
    width: 100%;
  }
  .banner-logo {
    width: 270px;
  }
}
.about-us .why-spartan {
  position: relative;
  width: 100%;
  z-index: 0;
  height: 1500px;
}
@media (max-width: 768px) {
  .about-us .why-spartan {
    height: 100%;
  }
}
.about-us .why-spartan::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-image: url(../images/about-2.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  z-index: -1;
}
.about-us .why-spartan .row {
  gap: 40px;
  margin-top: 50px;
}
.about-us .why-spartan .spartan-info {
  width: 35%;
}
@media (max-width: 768px) {
  .about-us .why-spartan .spartan-info {
    width: 100%;
    text-align: center;
  }
}
@media (max-width: 576px) {
  .about-us .why-spartan .spartan-info {
    width: 100%;
  }
}
.about-us .why-spartan .spartan-img {
  width: 65%;
}
@media (max-width: 768px) {
  .about-us .why-spartan .spartan-img {
    width: 100%;
  }
}
@media (max-width: 576px) {
  .about-us .why-spartan .spartan-img {
    width: 100%;
  }
}
.about-us .why-spartan h3 {
  color: #b11010;
  font-size: 3.88rem;
  font-weight: 500;
}
.about-us .why-spartan strong {
  font-weight: 700;
  color: #b11010;
}
.about-us .why-spartan .reverse {
  display: flex;
  justify-content: center;
  align-items: center;
}
.about-us .why-spartan .search-box {
  margin-top: 200px;
}

.dealers header {
  position: relative;
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 20px;
  text-align: center;
}
@media (min-width: 576px) {
  .dealers header {
    height: auto;
  }
}
.dealers .banner-logo {
  width: 150px;
}
@media (max-width: 768px) {
  .dealers .banner-logo {
    width: 100%;
  }
}
.dealers .why-spartan {
  position: relative;
  width: 100%;
  z-index: 0;
}
@media (max-width: 768px) {
  .dealers .why-spartan {
    height: 100%;
  }
}
.dealers .why-spartan::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-image: url(../images/results-bg.png);
  background-position: top;
  background-repeat: no-repeat;
  z-index: -1;
}
.dealers .row {
  gap: 40px;
  margin-top: 50px;
}
.dealers .spartan-info {
  width: 20%;
}
@media (max-width: 768px) {
  .dealers .spartan-info {
    width: 100%;
  }
}
@media (max-width: 576px) {
  .dealers .spartan-info {
    width: 100%;
  }
}
.dealers .spartan-img {
  width: 80%;
}
@media (max-width: 768px) {
  .dealers .spartan-img {
    width: 100%;
  }
}
@media (max-width: 576px) {
  .dealers .spartan-img {
    width: 100%;
  }
}
.dealers h2 {
  color: #b11010;
  font-size: 3.88rem;
  font-weight: 500;
}

.photo-gallery header {
  width: 100%;
  height: 80px;
}
@media (min-width: 576px) {
  .photo-gallery header {
    height: auto;
  }
}
.photo-gallery .banner-logo {
  width: 150px;
}
@media (max-width: 768px) {
  .photo-gallery .banner-logo {
    width: 100%;
  }
}

.design header {
  position: relative;
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 20px;
  text-align: center;
}
@media (min-width: 576px) {
  .design header {
    height: auto;
  }
}
.design .banner-logo {
  width: 150px;
}
@media (max-width: 768px) {
  .design .banner-logo {
    width: 100%;
  }
}
.design .design__content {
  position: relative;
  width: 100%;
  z-index: 0;
}
.design .design__content::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-image: url(../images/design-bg.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.design .text-first,
.design .img-first {
  width: 50%;
  font-size: 1.25rem;
}
@media (max-width: 768px) {
  .design .text-first,
  .design .img-first {
    width: 100%;
  }
}
.design .text-first h5,
.design .img-first h5 {
  height: 50px;
  display: block;
  font-weight: 700;
  width: 270px;
  background-color: #fff;
  text-align: center;
  margin: 40px auto -75px;
  position: relative;
  z-index: 10;
}
@media (max-width: 768px) {
  .design .text-first h5,
  .design .img-first h5 {
    margin: 40px auto -75px;
  }
}
.design .text-first {
  margin-top: 40px;
}
.design .img-first {
  margin-top: -50px;
}
@media (max-width: 768px) {
  .design .img-first {
    margin-top: 0;
  }
}
.design h2 {
  color: #b11010;
  font-size: 3.88rem;
  text-align: center;
  font-weight: 600;
}
.design .select-design {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  text-align: center;
  padding: 20px;
  border-radius: 17px;
  border: 1px #707070 solid;
  padding-top: 50px;
  margin-top: 50px;
}
.design .select-design > * {
  /* width: calc(50% - 20px); */
  width: 100%;
  color: white;
  font-size: 20px;
  font-weight: 700;
  background-color: #9c0000;
  border-radius: 10px;
  padding: 5px 0;
  margin-bottom: 2px;
  position: relative;
}
@media (max-width: 768px) {
  .design .select-design > * {
    width: 100%;
  }
}
.design .select-design > * a {
  display: block;
  width: 100%;
  height: 100%;
}
@media (max-width: 768px) {
  .design .select-design {
    flex-direction: column;
    gap: 10px;
  }
}
.design h2 {
  width: 100%;
  padding: 10px 0;
  text-align: center;
  background-color: #9c0000;
  color: white;
  font-size: 20px;
  font-weight: 700;
  margin: 10px 0;
}

.available-list .available-list__top {
  -moz-columns: 3;
  columns: 3;
  -moz-column-gap: 60px;
  column-gap: 60px;
  list-style-type: disc;
  padding: 0 20px;
}
@media (max-width: 768px) {
  .available-list .available-list__top {
    -moz-columns: 1;
    columns: 1;
    padding: 10px 20px;
  }
}
.available-list .available-list__top li {
  padding: 10px 0;
}
.available-list p {
  max-width: 820px;
  width: 100%;
  margin: 50px auto;
  font-weight: 700;
}

.color-list {
  -moz-columns: 5;
  columns: 5;
  font-size: 20px;
  font-weight: 500;
}

@media (max-width: 768px) {
  .design .color-list {
    font-size: 1rem;
  }

  .design .color-list li img {
    width: 70%;
  }
}

@media (max-width: 440px) {
  .design .color-list {
    font-size: 0.7rem;
  }

  .design .color-list li img {
    width: 50%;
  }
}

.color-list li {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  margin-bottom: 50px;
}

.table-row {
  display: flex;
  gap: 50px;
  overflow-x: auto;
  white-space: nowrap;
}
.table-row > * {
  border: 1px solid #000;
  border-collapse: collapse;
  width: calc(50% - 50px);
}

@media (max-width: 1200px) {
  .table-row {
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 768px) {
  .table-row > * {
    width: 100%;
  }
  .table-row {
    width: 100%;
    font-size: 1rem;
  }
}

.table-row th,
.table-row td {
  font-weight: 400;
  border-left: 1px solid #000;
  padding: 8px;
  text-align: center;
}
.table-row th:first-child,
.table-row td:first-child {
  border-left: none;
}
.table-row .black {
  display: block;
  margin: 10px 0px;
  background-color: #000;
  color: #fff;
}
.table-row .silver {
  display: block;
  margin: 10px 0px;
  background-color: #a8aa9c;
  color: #fff;
}
.table-row .charcoal {
  display: block;
  margin: 10px 0px;
  background-color: #3c321f;
  color: #fff;
}
.table-row .red {
  display: block;
  margin: 10px 0px;
  background-color: #9c0000;
  color: #fff;
}
.table-row .pewter {
  display: block;
  margin: 10px 0px;
  background-color: #767374;
  color: #fff;
}
.table-row .orange {
  display: block;
  margin: 10px 0px;
  background-color: #d55001;
  color: #fff;
}
.table-row .yellow {
  display: block;
  margin: 10px 0px;
  background-color: #dfa100;
  color: #fff;
}
.table-row .em-green {
  display: block;
  margin: 10px 0px;
  background-color: #08777f;
  color: #fff;
}
.table-row .eltc-green {
  display: block;
  margin: 10px 0px;
  background-color: #00c635;
  color: #fff;
}
.table-row .deep-blue {
  display: block;
  margin: 10px 0px;
  background-color: #0f319e;
  color: #fff;
}
.table-row .ind-blue {
  display: block;
  margin: 10px 0px;
  background-color: #2b3d5b;
  color: #fff;
}
.table-row .brandy-wine {
  display: block;
  margin: 10px 0px;
  background-color: #94000b;
  color: #fff;
}
.table-row .true-blue {
  display: block;
  margin: 10px 0px;
  background-color: #0049ae;
  color: #fff;
}
.table-row .sierra-tan {
  display: block;
  margin: 10px 0px;
  background-color: #908d78;
  color: #fff;
}

.blue-small-box-list {
  display: flex;
  flex-wrap: wrap;
  gap: 50px;
}
.blue-small-box-list > * {
  width: calc(33.333% - 50px);
  background: rgba(255, 255, 255, 0.36);
  border-radius: 20px;
  border: 1px #0049ae solid;
  font-size: 1.25rem;
}
.blue-small-box-list > * li {
  padding: 15px 20px;
}
.blue-small-box-list > * .box-list-long li {
  padding: 5px 20px !important;
  -moz-column-break-inside: avoid;
  break-inside: avoid;
}
@media (max-width: 768px) {
  .blue-small-box-list > * {
    width: 100%;
  }
}
.blue-small-box-list > * .box-title {
  background-color: #0049ae;
  border-top-right-radius: 20px;
  border-top-left-radius: 20px;
  text-align: center;
  color: #fff;
  font-weight: 700;
  padding: 10px 0;
}

.blue-big-box-list {
  display: flex;
  flex-wrap: wrap;
  margin: 0;
}
.blue-big-box-list > * {
  width: 100%;
  background: rgba(255, 255, 255, 0.36);
  border-radius: 20px;
  border: 1px #0049ae solid;
  font-size: 1.25rem;
  position: relative;
  margin: 40px 0;
}
.blue-big-box-list > * .box-title {
  width: 100%;
  display: block;
  background-color: #0049ae;
  border-top-right-radius: 20px;
  border-top-left-radius: 20px;
  text-align: center;
  color: #fff;
  font-weight: 700;
  padding: 10px 0;
}
.blue-big-box-list > * .box-list {
  -moz-columns: 3;
  columns: 3;
  -moz-column-gap: 60px;
  column-gap: 60px;
}
.blue-big-box-list > * .box-list li {
  padding: 10px 20px;
  -moz-column-break-inside: avoid;
  break-inside: avoid;
}
@media (max-width: 768px) {
  .blue-big-box-list > * {
    width: 100%;
  }
  .blue-big-box-list > * .box-list {
    -moz-columns: 1;
    columns: 1;
  }
}

.text-below-box {
  max-width: 740px;
  width: 100%;
  margin: 40px auto;
}

.button-list {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  text-align: center;
  margin: 30px 0 0;
}
.button-list > * {
  width: calc(25% - 20px);
  color: white;
  font-size: 20px;
  font-weight: 700;
  background-color: #9c0000;
  border-radius: 10px;
  padding: 5px 0;
  margin-bottom: 30px;
  position: relative;
}
@media (max-width: 768px) {
  .button-list > * {
    width: 100%;
  }
}
.button-list > * a {
  display: block;
  width: 100%;
  height: 100%;
}
@media (max-width: 768px) {
  .button-list {
    flex-direction: column;
    gap: 10px;
  }
}

.waranty .row {
  gap: 50px;
}
.waranty .row > * {
  width: calc(50% - 20px);
}

.waranty .row strong {
  display: block;
  margin: 30px 0 10px;
}

.table-row table {
  overflow-x: scroll;
  white-space: nowrap;
} /*# sourceMappingURL=style.css.map */

.footer-links {
  display: flex;
  gap: 70px;
}

@media (max-width: 768px) {
  .waranty .row > * {
    width: 100%;
  }

  .footer-links {
    gap: 10px;
    flex-direction: column;
  }
}

.waranty {
  position: relative;
}

.waranty::before {
  content: '—';
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: -45px;
}

@media (max-width: 768px) {
  .waranty .row > * {
    width: 100%;
  }

  .footer-links {
    gap: 10px;
    flex-direction: column;
    margin-bottom: 20px;
  }

  .waranty::before {
    content: '';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: -45px;
  }
}

.load {
  margin: 30px auto;
  padding: 10px 50px;
  color: white;
  font-size: 20px;
  font-weight: 700;
  background-color: #9c0000;
  border-radius: 10px;
  border: none;
  cursor: pointer;
}

.rusult-row {
  justify-content: center;
}

.video-box {
  width: 100%;
  text-align: center;
  margin-top: 40px;
}

.video-box-frame {
  width: 80%;
  height: 500px;
}

.border-img {
  border-radius: 20px;
  border: 3px solid #707070;
}

.slider-img {
  width: 100%;
  /* height: 500px; */
  margin: 0 auto;
  display: block;
}

.slider-img img {
  width: 100%;
  height: 500px;
  display: block;
  margin: 0 auto;
  object-fit: contain;
  border-radius: 20px;
}

@media (max-width: 768px) {
  .slider-img img {
    width: 100%;
    height: 100%;
    display: block;
    /* margin: 0 auto; */
    object-fit: cover;
    border-radius: 20px;
  }
}

.slider-small-img {
  width: 100%;
  height: 350px;
}

.slider-small-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
}

@media (max-width: 768px) {
  .video-box-frame {
    width: 100%;
    height: 200px;
  }
  .slider-img {
    width: 80%;
    height: 300px;
    border-radius: 20px;
  }
}

.slick-slide img {
}

.return-to-top {
  position: fixed;
  font-weight: 1000;
  bottom: 1rem;
  right: 1rem;
  padding: 0.5rem 0.75rem;
  font-size: 1.25rem;
  color: #fff;
  background-color: #9c0000;
  border: none;
  border-radius: 4px;
  text-decoration: none;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
  z-index: 1000;
}

.return-to-top.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.return-to-top:hover {
  background-color: #ba1c1c;
}

.nav-container .main-logo {
  position: absolute;
  top: 0;
  left: -230px;
}
