:root {
  /* Primary colors */
  --bs-primary: #008dc7;
  --bs-primary-dark: #004F72;
  --bs-secondary: #7fd4f5;
  --bs-secondary-light: #e5f6fd;
  --bs-background: #333D66;
  --bs-primary-gradient: linear-gradient(90deg, #008dc7 0%, #7fd4f5 100%);


  /* Complementary colors */
  --bs-complementary-primary: #fb564d;
  --bs-complementary-secondary: #fbc107;

  /* Neutral colors */
  --bs-white: #fff;
  --bs-gray-light: #eceeef;
  --bs-gray: #7d7d7d;
  --bs-gray-dark: #5b5b5b;
  --bs-black: #000;

  /* State colors */
  --bs-success: #28a745;
  --bs-info: #17a2b8;
  --bs-warning: #ffc107;
  --bs-danger: #dc3545;

  /* Button color states */
  --bs-button-primary-hover: #293152;
  --bs-button-primary-disabled: #343847;
  --bs-button-secondary-hover: #99DDF7;
  --bs-button-secondary-disabled: #B0BFC4;

}

html {
  scroll-behavior: smooth;
}

/* Set zero margin and padding for heading tags */
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  padding: 0;
}

input,
input:placeholder-shown {
  padding-left: 18px !important;
  padding-right: 18px !important;
  height: 40px;
}

input.disabled,
input:disabled {
  pointer-events: none;
  background-color: #ADADAD;
  border: 1px solid var(--bs-gray-dark);
}

#primary-menu>li:not(:last-child) {
  margin-bottom: 20px;
}

/* Table and Desktop size */
@media screen and (min-width: 37.5em) {
  #primary-menu {
    gap: 20px;
  }
}

.flex-1 {
  flex: 1;
}

.text-white {
  color: var(--bs-white) !important;
}

.text-black {
  color: var(--bs-black) !important;
}

.text-gray {
  color: var(--bs-gray) !important;
}

.block {
  display: block;
}

.font-medium {
  font-weight: 500;
}

.font-bold {
  font-weight: 600;
}

.text-center {
  text-align: center;
}

.truncate-2 {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.truncate-3 {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.container {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
}

@media screen and (min-width: 640px) {
  .container {
    max-width: 640px;
  }
}

@media screen and (min-width: 768px) {
  .container {
    max-width: 768px;
  }
}

@media screen and (min-width: 1024px) {
  .container {
    max-width: 1024px;
  }
}

@media screen and (min-width: 1280px) {
  .container {
    max-width: 1280px;
  }
}

@media screen and (min-width: 1536px) {
  .container {
    max-width: 1536px;
  }
}

/* DEFINED TYPOGRAPHIES */
.title-1 {
  font-size: 32px;
  line-height: 40px;
  font-weight: 600;
}

.title-2 {
  font-size: 24px;
  line-height: 32px;
  font-weight: 500;
}

.subtitle {
  font-size: 18px;
  line-height: 26px;
  font-weight: 500;
}

.small-text {
  font-size: 14px;
  line-height: 22px;
  font-weight: 400;
}

/* DEFINED TYPOGRAPHIES END */

/* Styled headings */
h2.section-title {
  --font-size: clamp(40px, 6vw, 48px);
  font-size: var(--font-size);
  line-height: calc(var(--font-size) + 8px);
  font-weight: bold;
  color: var(--bs-primary);
  text-align: center;
  margin-bottom: 60px;
}

.text-primary-color {
  color: var(--bs-primary);
}

/* SELECT DEFAULT STYLE */

select {
  border: 1px solid var(--bs-gray);
  padding: 10px 20px;
  border-radius: 4px;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background: url('data:image/svg+xml;utf8,<svg width="18" height="10" viewBox="0 0 18 10" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M2.04417e-07 1.17318C2.38604e-07 0.391061 0.31188 -7.73172e-07 0.935642 -7.45907e-07C1.11386 -7.38117e-07 1.26238 0.0744857 1.38119 0.223462L9 7.59777L16.6188 0.223462C16.7376 0.0744864 16.8861 -4.86885e-08 17.0644 -4.08983e-08C17.6881 -1.36328e-08 18 0.391062 18 1.17319C18 1.50838 17.896 1.75046 17.6881 1.89944L9.71287 9.66481C9.50495 9.88827 9.26733 10 9 10C8.76238 10 8.46535 9.8324 8.10891 9.49721L0.31188 1.89944C0.103959 1.75046 1.89765e-07 1.50838 2.04417e-07 1.17318Z" fill="black"/></svg>') no-repeat right 16px center/16px 16px;
  padding-right: 40px;
}

/* SELECT DEFAULT STYLE END */


/* Styling icon config */

.bs-icon path {
  fill: var(--fill-icons-color) !important;
  stroke: var(--stroke-icon-color, black) !important;
}

/* Styling icon config END*/

/* Social media icons */
.social-media {
  display: flex;
  gap: 12px;
  align-items: center;
}


/* Social media icons END */

/* HEADER */

.site-header {
  box-shadow: 0px 2px 12px rgba(0, 0, 0, 0.1);
  background-color: var(--bs-white);
  /* position: sticky;
  top: 0;
  z-index: 1000; */
}

.site-top-bar {
  background-color: var(--bs-primary-dark);
}

.site-top-bar a {
  color: white;
}

.site-top-bar>div {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 8px;
  padding-bottom: 8px;
}

.main-navigation {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
}

.main-navigation .header-logo img {
  display: block;
  height: 80px;
  width: auto;
  object-fit: contain;
}


#primary-menu li {
  margin-bottom: 0 !important;
}

.header-menu {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
}

@media screen and (max-width: 767px) {
  
  .site-top-bar,
  .header-simulator {
    display: none;
  }
  
  .main-navigation .header-logo img {
    height: 56px;
  }

}

/* HEADER END */

/* FOOTER */

.site-footer {}

.site-info {
  background-color: var(--bs-primary-dark);
  color: var(--bs-white);
  position: relative;
}

.site-info>div {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  padding: 40px;
}

.footer-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 40px;
}

.footer-logo img {
  width: 260px;
  height: auto;
  object-fit: contain;
}

.footer-links,
.footer-links #footer-menu {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-links #footer-menu {
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-links #footer-menu>li>a {
  color: var(--bs-white);
  text-decoration: none;
  font-size: 16px;
  line-height: 24px;
}


.footer-simulator {
  color: var(--bs-black);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 40px 20px;
  gap: 10px;
  height: fit-content;
  background: #FFFFFF;
  border-radius: 4px;
}

.footer-simulator form {
  width: 100%;
}

.footer-simulator form .simulator-form-group {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 12px;
}

.footer-simulator form .simulator-form-group #quantity-simulator-footer {
  width: 100%;
}

.footer-vehicle-illustration>img {
  position: absolute;
  right: 0;
  top: 72px;
  width: 260px;
  height: auto;
}

.footer-bottom {
  background-color: var(--bs-secondary-light);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  padding: 12px 32px;
}

.footer-bottom a {
  text-decoration: underline;
}

@media screen and (max-width: 1023px) {
  .site-info>div {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }

  .footer-logo {
    grid-column: span 2;
  }

  .footer-vehicle-illustration {
    display: none;
  }
}

@media screen and (max-width: 767px) {
  .site-info>div {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-logo img {
    width: 100%;
    max-width: 200px;
  }

  .footer-logo {
    grid-column: span 1;
  }

  .footer-links {
    align-items: center;
  }

  .footer-simulator {
    align-items: center;
    width: 100%;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: center;
  }

  .footer-bottom-separator {
    display: none;
  }
}

/* FOOTER END */


/* BUTTONS */
.btn {
  display: flex !important;
  align-items: center;
  justify-content: center;
  padding: 0px 20px;
  height: 40px;
  font-size: 18px;
  line-height: 26px;
  font-weight: 500;
  text-align: center;
  text-decoration: none;
  border-radius: 4px;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.btn-white {
  background-color: var(--bs-white);
  color: #000 !important;
  border: 1px solid var(--bs-gray);
}

.btn-white:hover {
  background-color: var(--bs-gray-light);
  color: #000 !important;
}

.btn-white:disabled,
.btn-white.disabled {
  background-color: var(--bs-gray);
  color: var(--bs-gray-dark) !important;
  cursor: not-allowed;
  pointer-events: none;
}

.btn-primary {
  background-color: var(--bs-background);
  color: var(--bs-white) !important;
}

.btn-primary:hover {
  background-color: var(--bs-button-primary-hover);
  color: var(--bs-white) !important;
}

.btn-primary:disabled,
.btn-primary.disabled {
  background-color: var(--bs-button-primary-disabled);
  color: var(--bs-gray) !important;
  cursor: not-allowed;
  pointer-events: none;
}


.btn-secondary {
  background-color: var(--bs-secondary);
  color: var(--bs-black) !important;
}

.btn-secondary:hover {
  background-color: var(--bs-button-secondary-hover);
}

.btn-secondary:disabled,
.btn-secondary.disabled {
  background-color: var(--bs-button-secondary-disabled);
  color: var(--bs-gray-dark) !important;
  cursor: not-allowed;
  pointer-events: none;
}

.btn-icon {
  gap: 16px;
  background-color: var(--bs-white);
}

.btn-icon:hover {
  background-color: #f5f5f5;
  color: var(--bs-black)
}

.btn-icon>svg {
  width: 20px !important;
  height: 20px !important;
}

.btn-logout {
  background-color: var(--bs-white);
  color: var(--bs-danger) !important;
  border: 1px solid var(--bs-danger);
}

.btn-logout:hover {
  background-color: #f6e9ea;
}

/* BUTTONS END */