/* ==========================================================================
   Base styles: opinionated defaults
   ========================================================================== */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

:root {
  --color-black: 0, 0, 0;
  --color-white: 255, 255, 255;
  --color-dark: 27, 30, 40;
  --color-gray: 82, 87, 92;
  --color-blue: 2, 42, 165;
  --color-red: 249, 12, 12;
  --color-light-gray: 246, 248, 251;
}

::-moz-selection {
  background: #bfdbec;
  text-shadow: none;
}

::selection {
  background: #bfdbec;
  text-shadow: none;
}

hr {
  display: block;
  height: 1px;
  border: 0;
  background-color: transparent;
  border-top: 1px solid #EBEBEB;
  margin: 10px 0;
  padding: 0;
  opacity: 1;
}

hr.dashed {
  border-top: 1px dashed #EBEBEB;
}

audio,
canvas,
iframe,
img,
svg,
video {
  vertical-align: middle;
}

fieldset {
  border: 0;
  margin: 0;
  padding: 0;
}

textarea {
  resize: vertical;
}

a {
  color: rgb(var(--color-gray));
  text-decoration: none;
  transition: all 150ms ease-in-out;
}

a:hover,
a:focus {
  text-decoration: none;
}

/* ==========================================================================
   Author's custom styles
   ========================================================================== */

body {
  font-family: 'Montserrat';
  font-size: 16px;
  font-weight: 400;
  line-height: 27px;
  color: rgba(var(--color-gray));
  background-color: #fff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ========== Typography ========== */

h1 {
  font-size: 72px;
  line-height: 80px;
}

h2 {
  font-size: 52px;
  line-height: 60px;
}

h3 {
  font-size: 40px;
  line-height: 50px;
}

h4 {
  font-size: 32px;
  line-height: 40px;
}

h5 {
  font-size: 26px;
  line-height: 32px;
}

h6 {
  font-size: 22px;
  line-height: 30px;
}

.text-3xs {
  font-size: 10px;
  line-height: 18px;
}

.text-xxs {
  font-size: 12px;
  line-height: 18px;
}

.text-xs {
  font-size: 14px;
  line-height: 24px;
}

.text-base {
  font-size: 16px;
  line-height: 24px;
}

.text-md {
  font-size: 18px;
  line-height: 30px;
}

.text-lg {
  font-size: 20px;
  line-height: 20px;
}

.text-xl {
  font-size: 24px;
  line-height: 40px;
}

.text-3xl {
  font-size: 36px;
  line-height: 46px;
}

.lh-auto {
  line-height: normal;
}

.text-13 {
  font-size: 13px;
}

/* ========== Colors ========== */
.color-black {
  color: rgb(var(--color-black));
}

.color-dark {
  color: rgb(var(--color-dark));
}

.color-default {
  color: rgba(var(--color-default));
}

.color-white {
  color: rgb(var(--color-white));
}

.color-gray {
  color: rgb(var(--color-gray));
}

.color-red {
  color: rgb(var(--color-red));
}

.bg-gray {
  background-color: rgb(var(--color-gray));
}

.bg-light-gray {
  background-color: rgb(var(--color-light-gray));
}

/* ========== Forms & Input ========== */

.form-control {
  padding: 10px 12px;
  font-size: 14px;
  font-weight: 400;
  color: rgb(var(--color-default));
  background-clip: padding-box;
  background-color: rgb(var(--color-white));
  border-radius: 12px;
  border: 1px solid #E7E7E7;
}

.form-control::placeholder {
  color: rgba(51, 62, 66, 0.6);
}

.form-select {
  padding: 10px 12px;
  font-size: 14px;
  font-weight: 400;
  background-clip: padding-box;
  border: 1px solid #E7E7E7;
  border-radius: 12px;
}

.form-control:focus,
.form-select:focus {
  color: rgb(var(--color-dark));
  background-color: rgb(var(--color-white));
  border-color: #dfdfdf;
  outline: 0;
  box-shadow: none;
}

.form-control:disabled {
  background-color: #FFFFFF;
  border: 1px solid #E9E7EC;
}

.form-label {
  font-size: 14px;
}

.form-label.required::after {
  content: '*';
  color: rgb(var(--color-red));
}

/* ========== Button ========== */

.btn {
  font-size: 14px;
  line-height: 20px;
  padding: 10px 25px;
  border-radius: 8px;
  position: relative;
  z-index: 2;
  overflow: hidden;
}

.btn:hover {
  color: rgb(var(--color-white));
}

.btn:active {
  outline: 0;
  border: 0;
}

.btn-primary {
  background-color: rgb(var(--color-blue));
  border-color: rgb(var(--color-blue));
}

.btn-primary:hover {
  background-color: rgb(var(--color-red));
  border-color: rgb(var(--color-red));
}

.btn-outline-primary {
  color: rgb(var(--color-blue));
  border-color: rgb(var(--color-blue));
}

.btn-outline-primary:hover {
  color: rgb(var(--color-blue));
  border-color: rgb(var(--color-blue));
  background-color: rgb(var(--color-red));
}

/* ========== Header ========== */
.header {
  position: fixed;
  top: 10px;
  left: 0;
  z-index: 1049;
  width: 100%;
  transition: all 150ms ease-in-out;
}

.header .container,
.second-header .container {
  max-width: 1400px;
}

.header-row {
  display: flex;
  gap: 10px;
}

.main-logo,
.logo-daihatsu {
  max-width: 300px;
  width: 100%;
  height: 80px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 3;
}

.menu-wrap {
  border-radius: 12px;
  height: 80px;
  width: calc(100% - 560px);
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 3;
  padding: 15px;
}

.main-menu-wrap {
  width: calc(100% - 40px);
  display: flex;
  justify-content: center;
}

.logo-daihatsu {
  max-width: 240px;
  width: 100%;
}

.main-logo::before,
.logo-daihatsu::before,
.menu-wrap::before {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  transform: skew(-13deg, 0deg);
  background: #fff;
  border-radius: 12px;
  z-index: -1;
  box-shadow: 0px 4px 20.4px rgba(0, 0, 0, 0.05);
}

.menu-wrap::before {
  background: linear-gradient(90deg, #0C318E 1.14%, #0D52A4 37.87%);
}

.main-menu {
  display: flex;
  justify-content: center;
  align-items: center;
  list-style: none;
  gap: 35px;
  margin: 0;
  padding: 0;
}

.menu-link {
  color: rgb(var(--color-white));
  font-size: 17px;
  font-weight: 500;
}

.dropdown-menu.purna-drop {
  --bs-dropdown-min-width: 1000px;
  min-width: 1000px !important;
  margin-top: 40px !important;
  padding: 0 40px;
  margin-left: 120px !important;
  background: #FFFFFF;
  box-shadow: 0px 4px 12px rgba(34, 34, 34, 0.06);
  border-radius: 20px;
  border: 0;
}

.dropdown-menu.pb {
  padding-top: 35px !important;
  border: 0;
  background-color: transparent !important;
}

.wrap-pb {
  border: 0;
  background: #FFFFFF;
  box-shadow: 0px 4px 12px rgba(34, 34, 34, 0.06);
  border-radius: 20px;
  border: 0;
  padding: 5px;
}

.drop-link {
  font-weight: 600;
  font-size: 18px;
  line-height: 24px;
  color: rgb(var(--color-dark));
  display: block;
  padding: 10px 15px;
}

.drop-link:hover {
  color: rgb(var(--color-blue));
}

.search-wrap {
  position: absolute;
  right: 30px;
  top: 50%;
  transform: translateY(-50%);
}

.search-form {
  background: #FFFFFF;
  box-shadow: 0px 4px 12px rgba(34, 34, 34, 0.06);
  border-radius: 20px;
  padding: 5px;
  display: flex;
  align-items: center;
}

.search-items {
  width: 40px;
  display: flex;
  justify-content: center;
  height: 40px;
  align-items: center;
}

.form-items {
  width: calc(100% - 80px);
}

.form-items input {
  border: 0;
  color: rgb(var(--color-dark));
  font-size: 14px;
}

.btn-close-form {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}

.search-result {
  background: #FFFFFF;
  box-shadow: 0px 4px 12px rgba(34, 34, 34, 0.06);
  border-radius: 20px;
  padding: 20px;
  margin-top: 20px;
}

.result-list {
  list-style: none;
  padding: 0;
}

.result-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 5px 0;
}

.result-list li::before {
  content: '';
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: rgb(var(--color-blue));
  background-image: url(../img/ico-search.svg);
  background-size: 12px;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  justify-content: center;
  align-items: center;
}

.result-list li a {
  text-decoration: underline;
  color: rgb(var(--color-blue));
}

.result-list li a:hover {
  color: rgb(var(--color-red));
}

.row-recomendation {
  display: flex;
  flex-wrap: wrap;
  margin-left: -10px;
  margin-right: -10px;
}

.link-rec {
  display: inline-block;
  padding: 10px;
  background-color: rgb(var(--color-light-gray));
  border-radius: 20px;
  margin: 0 5px;
}

.rec-item {
  width: 20%;
  flex: 1 0 auto;
}

/* ========== Menu Mobile ========== */
.mobile-nav,
.purna-nav {
  max-width: 350px;
  height: 100vh;
  background-color: rgb(var(--color-white));
  position: fixed;
  left: -350px;
  top: 0;
  z-index: 190;
  width: 100%;
  padding: 30px;
  transition: all 150ms ease-in-out;
  box-shadow: 0px 0px 8px 0px rgba(106, 78, 38, 0.24);
  overflow: hidden;
}

.mobile-nav.show,
.purna-nav.show {
  left: 0;
}

.overlay-mobile {
  position: fixed;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  background-color: rgba(0, 0, 0, 0.6);
  width: 100%;
  height: 100%;
  z-index: 100;
  visibility: hidden;
  opacity: 0;
  transition: all 150ms ease-in-out;
}

.overlay-mobile.show {
  visibility: visible;
  opacity: 1;
}

.btn-toggle {
  padding: 0;
  border: 0;
  border-radius: 0;
  display: flex;
  align-items: center;
}

.logo-mobile {
  max-width: 120px;
  display: inline-block;
}

.header-menu {
  display: flex;
  justify-content: space-between;
  margin-bottom: 50px;
}

.main-menu-mobile {
  list-style: none;
  padding-left: 0;
}

.main-menu-mobile li {
  margin: 15px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.arrow-mobile {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  background-color: rgb(var(--color-blue));
  border-radius: 5px;
}

.main-menu-mobile li a {
  color: rgb(var(--color-dark2));
  font-size: 20px;
  font-weight: 700;
}

.main-menu-mobile li a:hover {
  color: rgb(var(--color-blue));
}

.big-daihatsu {
  position: absolute;
  z-index: -1;
  right: -0%;
  bottom: 0;
  opacity: .1;
}


/* ========== Content ========== */
.mySwiper2 {
  width: 100%;
  height: 1200px;
}

.mySwiper {
  height: 160px;
  box-sizing: border-box;
  padding: 20px;
  background: linear-gradient(90deg, #0C318E 3%, #0D52A4 100%);
  border-radius: 20px;
}

.thumb-slider {
  display: block;
  margin-top: -180px;
  width: 100%;
  padding: 20px 20px 0;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  position: relative;
  background: #fff;
  z-index: 2;
}

.thumb-slider::before,
.thumb-slider::after {
  content: '';
  width: 20px;
  height: 20px;
  position: absolute;
  left: -20px;
  bottom: 0;
  background-image: url(../img/deco-white.svg);
  background-size: 20px;
  z-index: 1;
}

.thumb-slider::after {
  left: auto;
  right: -20px;
  transform: rotate(-270deg);
}

.bg-slider {
  width: 100%;
  height: 1200px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
}

.produk-inner {
  margin-top: -140px;
}

.slider-thumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.mySwiper .swiper-slide {
  opacity: .6;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: scale(.6);
}

.mySwiper .swiper-slide .thumb-info {
  display: none;
}

.mySwiper .swiper-slide-active,
.mySwiper .swiper-slide-thumb-active {
  opacity: 1;
  transform: scale(1);
}

.mySwiper .swiper-slide-active .thumb-info {
  display: block;
}


.names {
  font-size: 21px;
  font-weight: 700;
}

.thumb-img {
  width: 155px;
}

.sections {
  padding: 80px 0;
}

.product-items,
.news-items {
  background: #F6F8FB;
  border-radius: 16px;
  padding: 15px;
  position: relative;
  cursor: pointer;
  z-index: 1;
}

.news-items {
  padding: 0;
}

.product-img {
  display: flex;
  justify-content: center;
  align-items: center;
  aspect-ratio: 16/9;
}

.product-img img {
  transform: scale(0.8);
  transition: all 100ms ease-in-out;
}

.product-items:hover .product-img img {
  transform: scale(1);
  transition: all 100ms ease-in-out;
}

.product-meta {
  padding: 15px 10px;
}

.news-image {
  aspect-ratio: 3/2;
  overflow: hidden;
  border-top-left-radius: 16px;
  border-top-right-radius: 16px;
}

.news-image img,
.promo-image img {
  width: 100%;
  object-fit: cover;
  object-position: center;
}

.promo-image {
  aspect-ratio: 16/7;
  overflow: hidden;
  border-top-left-radius: 16px;
  border-top-right-radius: 16px;
}

.news-image img,
.promo-image img {
  transition: all 0.4s cubic-bezier(.15, .75, .5, 1) 0s;
  -webkit-transition: all 0.4s cubic-bezier(.15, .75, .5, 1) 0s;
}

.news-items:hover .news-image img,
.news-items:hover .promo-image img {
  transform: scale(1.2);
  transition: all 0.4s cubic-bezier(.15, .75, .5, 1) 0s;
  -webkit-transition: all 0.4s cubic-bezier(.15, .75, .5, 1) 0s;
}

.product-title {
  font-weight: 700;
  font-size: 24px;
  line-height: 30px;
  color: rgb(var(--color-dark));
  display: inline-block;
}

.price-product {
  font-weight: 700;
  font-size: 20px;
  line-height: 30px;
  color: rgb(var(--color-blue));
}

.box-arrow,
.box-number {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 70px;
  height: 70px;
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  z-index: 4;
}

.box-number {
  right: 0;
  top: 0;
  bottom: auto;
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
}

.box-number.grey {
  right: auto;
  left: 0;
  top: 0;
  bottom: auto;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
}

.inner-arrow,
.inner-arrow-gray {
  width: 70px;
  height: 70px;
  display: block;
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  border-top-left-radius: 16px;
  background-color: rgb(var(--color-white));
}

.inner-number {
  width: 70px;
  height: 70px;
  display: block;
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
  border-top-left-radius: 0;
  border-bottom-left-radius: 20px;
  background-color: rgb(var(--color-white));
}

.inner-number.grey {
  justify-content: flex-start;
  align-items: flex-start;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 20px;
}

.inner-arrow-gray,
.inner-number.grey {
  background-color: rgb(var(--color-light-gray));
}

.box-inner-arrow,
.box-inner-arrow-gray,
.box-inner-number {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 56px;
  height: 56px;
  background-color: rgb(var(--color-blue));
  border-radius: 16px;
}

.box-inner-number {
  background-color: rgb(var(--color-red));
}

.box-inner-arrow::before,
.box-inner-arrow-gray::before,
.box-inner-number::before {
  content: '';
  background-image: url(../img/deco-white.svg);
  position: absolute;
  width: 20px;
  height: 20px;
  background-size: 20px;
  left: -20px;
  bottom: 0;
}

.box-inner-number::before {
  content: '';
  background-image: url(../img/deco-white.svg);
  position: absolute;
  width: 20px;
  height: 20px;
  background-size: 20px;
  left: -20px;
  bottom: auto;
  top: 0;
  transform: rotate(-90deg);
}

.box-inner-arrow-gray::before {
  background-image: url(../img/deco-gray.svg);
}

.box-inner-number.grey::before {
  background-image: url(../img/deco-gray.svg);
  left: auto;
  right: -20px;
  transform: rotate(180deg);
}

.box-inner-arrow::after,
.box-inner-arrow-gray::after,
.box-inner-number::after {
  content: '';
  background-image: url(../img/deco-white.svg);
  position: absolute;
  width: 20px;
  height: 20px;
  background-size: 20px;
  top: -20px;
  right: 0;
}

.box-inner-number::after {
  content: '';
  background-image: url(../img/deco-white.svg);
  position: absolute;
  width: 20px;
  height: 20px;
  background-size: 20px;
  top: auto;
  right: 0;
  bottom: -20px;
  transform: rotate(-90deg);
}

.box-inner-arrow-gray::after {
  background-image: url(../img/deco-gray.svg);
}

.box-inner-number.grey::after {
  background-image: url(../img/deco-gray.svg);
  left: 0;
  transform: rotate(180deg);
}

.product-items:hover .box-inner-arrow svg,
.purna-items:hover .box-inner-arrow-gray svg,
.purna-items:hover .box-inner-arrow svg,
.news-items:hover .box-inner-arrow svg {
  transition: all 100ms ease-in-out;
  transform: rotate(45deg);
}

.product-items:hover .box-inner-arrow,
.purna-items:hover .box-inner-arrow-gray,
.purna-items:hover .box-inner-arrow,
.news-items:hover .box-inner-arrow {
  background-color: rgb(var(--color-red));
}

.product-items:hover .box-inner-arrow svg,
.purna-items:hover .box-inner-arrow-gray svg,
.purna-items:hover .box-inner-arrow svg,
.news-items:hover .box-inner-arrow svg {
  transform: rotate(45deg);
}

.ribbon-prod {
  position: absolute;
  top: 15px;
  left: 15px;
  display: flex;
  gap: 5px;
}

.ribbon {
  padding: 4px 8px;
  background: rgb(var(--color-red));
  border-radius: 6px;
  font-weight: 700;
  font-size: 14px;
  display: inline-block;
  line-height: 20px;
  color: rgb(var(--color-white));
  text-transform: uppercase;
}


.ribbon-blue {
  display: inline-block;
  padding: 4px 8px;
  background: rgb(var(--color-blue));
  border-radius: 6px;
  font-weight: 700;
  font-size: 14px;
  line-height: 20px;
  color: rgb(var(--color-white));
  text-transform: uppercase;
}

.purna-items {
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 3/3.8;
  position: relative;
  cursor: pointer;
  display: block;
  transition: all 0.4s cubic-bezier(.15, .75, .5, 1) 0s;
  -webkit-transition: all 0.4s cubic-bezier(.15, .75, .5, 1) 0s;
}

.purna-items figure img {
  transition: all 0.4s cubic-bezier(.15, .75, .5, 1) 0s;
  -webkit-transition: all 0.4s cubic-bezier(.15, .75, .5, 1) 0s;
  object-fit: cover;
  object-position: center;
  width: 100%;
  height: 100%;
}

.purna-items:hover figure img {
  transform: scale(1.1);
}

.purna-items::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  transition: all 0.4s cubic-bezier(.15, .75, .5, 1) 0s;
  -webkit-transition: all 0.4s cubic-bezier(.15, .75, .5, 1) 0s;
  z-index: 1;
  background: linear-gradient(212.02deg, rgba(27, 30, 40, 0) 0%, #1B1E28 98.85%);
}

.purna-items:hover::before {
  transition: all 0.4s cubic-bezier(.15, .75, .5, 1) 0s;
  -webkit-transition: all 0.4s cubic-bezier(.15, .75, .5, 1) 0s;
  background: linear-gradient(212.02deg, rgba(27, 30, 40, 0.6) 0%, #1B1E28 98.85%);
}

.purna-meta {
  transition: all 0.4s cubic-bezier(.15, .75, .5, 1) 0s;
  -webkit-transition: all 0.4s cubic-bezier(.15, .75, .5, 1) 0s;
  position: absolute;
  bottom: -40px;
  padding: 20px;
  left: 0;
  z-index: 2;
  width: 100%;
}

.purna-meta.mm {
  bottom: -20px;
}

.purna-excerpt {
  font-size: 12px;
  line-height: 20px;
  display: block;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.purna-items:hover>.purna-meta {
  bottom: 0px;
}

.news-title {
  font-weight: 700;
  font-size: 18px;
  line-height: 28px;
  color: rgb(var(--color-dark));
  display: block;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.news-title:hover {
  color: rgb(var(--color-red));
}

.lokasi-row {
  padding: 35px;
}

.img-lokasi {
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 3/4;
}

.big-font {
  font-weight: 700;
  font-size: 48px;
  line-height: 64px;
  color: rgb(var(--color-blue));
}

.testimonial-section {
  background: linear-gradient(82deg, #0C318E 3%, #0D52A4 100%);
}

.img-testi {
  overflow: hidden;
  border-radius: 20px;
  border: 16px solid rgba(38, 97, 170, 0.5);
}

.img-lokasi img,
.img-testi img {
  object-fit: cover;
  object-position: center;
  width: 100%;
}

.box-testi {
  padding-top: 60px;
  position: relative;
  color: rgb(var(--color-white));
}

.box-testi::after {
  content: '';
  background-image: url(../img/quote.svg);
  width: 240px;
  height: 240px;
  background-size: 240px;
  position: absolute;
  right: -20px;
  top: -30px;
}

.profile {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  overflow: hidden;
}

.profile-info {
  width: calc(100% - 48px);
}

.testimonial-slider .swiper-slide {
  opacity: 0 !important;
}

.testimonial-slider .swiper-slide-active {
  opacity: 1 !important;
}

.inner-section {
  margin-top: 105px;
}

.img-top-prod {
  overflow: hidden;
  border-radius: 20px;
}

.img-top-prod img {
  object-fit: cover;
  object-position: center;
  width: 100%;
}

.input-pagi input {
  max-width: 44px;
  border-radius: 8px;
  text-align: center;
}

.arrow-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 8px;
}

.arrow-nav:hover {
  background: rgb(var(--color-light-gray));
}

.top-purna {
  padding: 50px 0;
  background-position: right bottom -90px;
  background-repeat: no-repeat;
}

.top-inner {
  padding: 30px 0;
  background-position: right bottom -90px;
}

.purna-hero img {
  object-fit: cover;
  width: 100%;
}

.thumb-purna {
  aspect-ratio: 1/.9;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
}

.thumb-purna img {
  object-fit: cover;
  width: 100%;
}

.gray-purna {
  background-color: rgb(var(--color-light-gray));
  padding: 50px;
  border-top-left-radius: 30px;
  border-bottom-left-radius: 30px;
  position: relative;
  z-index: 3;
}

.gray-purna::after {
  content: '';
  background-color: rgb(var(--color-light-gray));
  width: 100%;
  right: -100%;
  height: 100%;
  top: 0;
  display: block;
  position: absolute;
  z-index: 1;
}

.box-pusat {
  background: rgb(var(--color-light-gray));
  border-radius: 20px;
  padding: 60px;
}

#pusatBantuan.accordion-flush>.accordion-item {
  border: 0;
  border-radius: 20px;
  overflow: hidden;
}

#pusatBantuan.accordion-flush>.accordion-item.active {
  border: 1px solid rgb(var(--color-blue));
}

#pusatBantuan .accordion-button:not(.collapsed) .accordion-item {
  border: 0;
}

#pusatBantuan .accordion-button:not(.collapsed) {
  color: rgb(var(--color-dark));
  background-color: rgb(var(--color-white));
  box-shadow: none;
  font-size: 14px;
  font-weight: 700;
}

#pusatBantuan .accordion-button {
  font-weight: 700;
  font-size: 14px;
  color: rgb(var(--color-dark));
}

#pusatBantuan .accordion-body {
  font-size: 14px;
  line-height: 23px;
}

#pusatBantuan .accordion-button:focus {
  box-shadow: none;
}

#pusatBantuan .accordion-button::after {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  margin-left: auto;
  content: "";
  background-image: url(../img/arrow-pusat.svg);
  background-repeat: no-repeat;
  background-size: var(--bs-accordion-btn-icon-width);
  transition: var(--bs-accordion-btn-icon-transition);
}

.spec .accordion-button {
  background-color: rgb(var(--color-light-gray));
  border-radius: 20px;
}

.spec .accordion-button:not(.collapsed) {
  color: rgb(var(--color-dark));
  background-color: rgb(var(--color-light-gray)) !important;
  box-shadow: none;
  font-size: 14px;
  font-weight: 700;
  border: 1px solid rgb(var(--color-blue));
}

.manfaat {
  list-style: none;
  padding-left: 0;
}

.manfaat li {
  counter-increment: my-awesome-counter;
  position: relative;
  font-weight: 600;
  color: rgb(var(--color-dark));
  margin: 10px 0;
  display: flex;
  gap: 10px;
  align-items: center;
}

.manfaat li span {
  width: calc(100% - 65px);
}

.manfaat li::before {
  content: counter(my-awesome-counter);
  color: rgb(var(--color-white));
  font-size: 20px;
  font-weight: bold;
  --size: 53px;
  left: calc(-1 * var(--size) - 10px);
  line-height: var(--size);
  width: var(--size);
  height: var(--size);
  top: 0;
  background: rgb(var(--color-red));
  border-radius: 16px;
  text-align: center;
}

.box-form-spareparts {
  background: rgb(var(--color-light-gray));
  border: 1px solid #F0F0EA;
  border-radius: 20px;
  padding: 30px;
}

.bread-crumb {
  display: flex;
  padding: 0;
  margin: 0;
  list-style: none;
  gap: 10px;
}

.bread-crumb li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
}

.bread-crumb li a {
  font-weight: 700;
  color: rgb(var(--color-red));
  font-size: 14px;
}

.bread-crumb li a:hover {
  color: rgb(var(--color-blue));
}

.bread-crumb li::after {
  content: '/';
  display: inline-block;
}

.bread-crumb li:last-child::after {
  display: none;
}

.sa-wrapper {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
}

.share {
  display: flex;
  justify-content: center;
  gap: 10px;
  padding: 0;
  list-style: none;
}

.share a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
}

.career-item {
  box-sizing: border-box;
  background: #FFFFFF;
  border: 1px solid #F0F0EA;
  border-radius: 16px;
  display: flex;
  padding: 20px;
  justify-content: space-between;
  align-items: center;
  transition: all 100ms ease-in-out;
  cursor: pointer;
}

.career-item:hover {
  transform: translateY(-7px);
}

.career-name {
  font-weight: 700;
  font-size: 18px;
  line-height: 36px;
  color: rgb(var(--color-dark));
  display: inline-block;
}

.career-item:hover .career-name {
  color: rgb(var(--color-red));
}

.carer-meta {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  flex-wrap: wrap;
  gap: 10px;
}

.career-info {
  width: calc(100% - 40px);
}

.carer-meta li {
  display: flex;
  align-items: center;
}

.carer-meta li::after {
  content: '\2022';
  font-size: 40px;
  line-height: 10px;
  width: 16px;
  height: 16px;
  display: flex;
  justify-content: center;
  align-items: center;
  display: inline-block;
  margin-left: 10px;
  color: #E5E4E2;
}

.carer-meta li:last-child::after {
  display: none;
}

.arrow-career {
  width: 40px;
  height: 40px;
  background: rgb(var(--color-blue));
  border-radius: 12px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.career-item:hover .arrow-career {
  background: rgb(var(--color-red));
}

.career-item:hover .arrow-career svg {
  transform: rotate(45deg);
  transition: all 100ms ease-in-out;
}

.career-list li {
  color: rgb(var(--color-gray));
  font-size: 14px;
}

.custom-file-upload-hidden {
  display: none;
  visibility: hidden;
  position: absolute;
  left: -9999px;
}

.custom-file-upload {
  display: flex;
  width: 100%;
}

.custom-file-upload label {
  display: block;
  margin-bottom: 5px;
}

.file-upload-wrapper {
  display: flex;
  align-items: center;
  width: 100%;
}

.file-upload-input {
  width: calc(100% - 100px);
  color: rgb(var(--color-dark));
  font-size: 16px;
  padding: 11px 17px;
  border: none;
  background-color: rgb(var(--color-white));
  -moz-transition: all 0.2s ease-in;
  -o-transition: all 0.2s ease-in;
  -webkit-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
  border: 1px solid #E7E7E7;
  border-top-left-radius: 16px;
  border-bottom-left-radius: 16px;
}

.file-upload-input:hover,
.file-upload-input:focus {
  outline: none;
}

.file-upload-button {
  width: 100px;
  height: 100%;
  cursor: pointer;
  display: inline-block;
  color: #fff;
  font-size: 14px;
  padding: 0;
  border: none;
  margin-left: -1px;
  background-color: rgb(var(--color-red));
  -moz-transition: all 0.2s ease-in;
  -o-transition: all 0.2s ease-in;
  -webkit-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
  border-top-right-radius: 16px;
  border-bottom-right-radius: 16px;
}

.file-upload-button:hover {
  background-color: rgb(var(--color-blue));
}

#map-location {
  width: 100%;
  height: 430px;
  border: 1px solid #BFC7D2;
  border-radius: 10px;
  overflow: hidden;
}

.maps-info {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px;
  font-family: 'Montserrat';
}

.gm-style .gm-style-iw-c {
  width: 100% !important;
  max-width: 400px !important;
}

.maps-meta {
  width: calc(100% - 60px);
}

.img-maps {
  width: 56px;
  overflow: hidden;
  height: 56px;
  border-radius: 10px;
}

.gm-ui-hover-effect {
  position: absolute !important;
  right: 0;
  top: 0;
}

.maps-meta {
  font-weight: 700;
  color: rgb(var(--color-dark));
}

.lokasi-items {
  background: rgb(var(--color-white));
  border: 1px solid #BFC7D2;
  border-radius: 96px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.btn-lokasi {
  width: 32px;
  height: 32px;
  padding: 0;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: rgb(var(--color-red));
  transform: rotate(180deg);
  transition: all 100ms ease-in-out;
}

.btn-lokasi:hover,
.btn-lokasi:active,
.btn-lokasi:focus {
  background-color: rgb(var(--color-red));
}

.btn-lokasi.collapsed {
  transform: rotate(0deg);
}

.item-loc {
  box-sizing: border-box;
  background: #FFFFFF;
  border: 1px solid #BFC7D2;
  border-radius: 16px;
  padding: 15px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.item-loc.active {
  border: 1px solid rgb(var(--color-blue));
}

.lokasi-wrap {
  max-height: 350px;
  overflow-y: auto;
  overflow-x: hidden;
  padding-right: 10px;
}

.btn-loc-arrow {
  width: 32px;
  height: 32px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  background-color: rgb(var(--color-blue));
}

.btn-loc-arrow:hover {
  transform: rotate(45deg);
  background-color: rgb(var(--color-red));
}

#tab-360 .nav-link {
  box-sizing: border-box;
  justify-content: center;
  align-items: center;
  padding: 6px 24px;
  border: 1px solid #A0A4A8;
  border-radius: 38px;
  font-weight: 700;
  font-size: 16px;
  color: rgb(var(--color-gray));
}

#tab-360 .nav-link.active {
  background: #DCE3F8;
  border: 1px solid #022AA5;
  color: rgb(var(--color-blue));
}

.box-360 {
  width: 100%;
  overflow: hidden;
  border-radius: 10px;
  position: relative;
}

.title-360 {
  position: absolute;
  left: 0;
  top: 0;
  height: 130px;
  padding: 25px 35px;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.648) 0%, rgba(0, 0, 0, 0) 68.2%);
  width: 100%;
  color: rgb(var(--color-white));
  font-size: 24px;
  font-weight: bold;
}

.video-container {
  overflow: hidden;
  aspect-ratio: 16/9;
}

.js-video {
  overflow: hidden;
  padding-top: 56.25%;
  position: relative;
}

.js-video iframe {
  border: 0;
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}

.play {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 11;
  cursor: pointer;
}

.video-poster {
  background: url('../img/video-cover.jpg');
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 5;
  top: 0;
  left: 0;
}

.play i:hover {
  cursor: pointer;
}

.slider-save .swiper-slide,
.slider-secure .swiper-slide {
  width: max-content;
}

.select-menu .select-btn {
  display: flex;
  justify-content: space-between;
  background: #fff;
  font-size: 16px;
  line-height: 20px;
  font-weight: 400;
  border-radius: 8px;
  align-items: center;
  cursor: pointer;
  padding: 10px 12px;
  font-size: 14px;
  font-weight: 400;
  background-clip: padding-box;
  border: 1px solid #E7E7E7;
  border-radius: 12px;
  color: rgb(var(--color-dark));
}

.select-menu .options {
  position: absolute;
  width: 100%;
  overflow-y: auto;
  max-height: 295px;
  padding: 10px;
  margin-top: 10px;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  animation-name: fadeInDown;
  -webkit-animation-name: fadeInDown;
  animation-duration: 0.35s;
  animation-fill-mode: both;
  -webkit-animation-duration: 0.35s;
  -webkit-animation-fill-mode: both;
  display: none;
}

.select-menu .options .option {
  display: flex;
  cursor: pointer;
  padding: 5px 10px;
  border-radius: 8px;
  align-items: center;
  background: #fff;
}

.select-menu .options .option:hover {
  background: #f2f2f2;
}

.select-menu .options .option i,
.sBtn-data {
  font-size: 14px;
  margin-right: 12px;
  font-style: normal;
  display: inline-block;
  background: rgba(2, 42, 165, 0.1);
  border-radius: 6px;
  color: rgb(var(--color-blue));
  padding: 0px 5px;
}

.select-menu .options .option .option-text {
  font-size: 14px;
  color: rgb(var(--color-dark));
}

.select-btn i {
  font-size: 25px;
  transition: 0.3s;
}


.select-menu.active .options {
  display: block;
  opacity: 0;
  z-index: 10;
  animation-name: fadeInUp;
  -webkit-animation-name: fadeInUp;
  animation-duration: 0.4s;
  animation-fill-mode: both;
  -webkit-animation-duration: 0.4s;
  -webkit-animation-fill-mode: both;
}

@keyframes fadeInUp {
  from {
    transform: translate3d(0, 30px, 0);
  }

  to {
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}

@keyframes fadeInDown {
  from {
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }

  to {
    transform: translate3d(0, 20px, 0);
    opacity: 0;
  }
}

.box-blue {
  background: #0739D3;
  border-radius: 20px;
  padding: 25px;
}

.with-bg {
  display: block;
  text-align: center;
  background-color: rgba(255, 255, 255, 0.2);
  padding: 10px;
  border-radius: 5px;
}

.border-end.blue {
  border-right: var(--bs-border-width) var(--bs-border-style) rgba(255, 255, 255, 0.2) !important;
}

.image-variant {
  border-radius: 20px;
  overflow: hidden;
}

.variant-row {
  position: relative;
}

.variant-thumb {
  height: calc(100% - 40px);
}

.variant-thumb .swiper-slide {
  height: 30px;
}

.variant-thumb .swiper-slide img {
  height: 100%;
  width: 40px;
}

.pos-variant {
  position: absolute;
  top: 50%;
  left: 30px;
  transform: translateY(-50%);
  z-index: 100;
}

.pos-variant-inner {
  background-color: rgb(var(--color-white));
  padding: 5px;
  border-radius: 10px;
  height: 220px;
}

.swiper-slide-thumb-active .thumb-variant {
  border: 1px solid rgb(var(--color-blue));
}

.thumb-variant {
  overflow: hidden;
  border-radius: 5px;
}

.next-up,
.prev-bottom {
  width: 100%;
  height: 18px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.next-fitur,
.prev-fitur {
  position: absolute;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgb(var(--color-blue));
  top: 50%;
  z-index: 100;
  margin-top: -40px;
}

.prev-fitur {
  left: 10px;
}

.next-fitur {
  right: 10px;
  left: auto;
}

.secure-wrap {
  margin: 70px 0;
}

.secure-wrap .container::before {
  content: '';
  position: absolute;
  left: -30px;
  top: -30px;
  background-color: rgb(var(--color-light-gray));
  border-radius: 20px;
  z-index: -1;
  width: calc(100% + 60px);
  height: calc(100% + 60px);
}

.sticky-nav {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  z-index: 20;
  left: 30px;
}

.list-sticky-nav {
  display: flex;
  flex-direction: column;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 10px;
}

.list-sticky-nav li {
  display: flex;
  align-items: center;
  gap: 10px;
  transition: all 100ms ease-in-out;
}

.link-sticky-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 56px;
  height: 56px;
  background: rgb(var(--color-blue));
  border-radius: 12px;
}

.sticky-meta {
  opacity: 0;
  visibility: hidden;
  display: inline-block;
  padding: 10px 25px;
  position: relative;
  color: rgb(var(--color-white));
  font-weight: 600;
  display: none;
  transition: all 100ms ease-in-out;
}

.sticky-meta::before {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  transform: skew(-13deg, 0deg);
  background: rgb(var(--color-red));
  border-radius: 12px;
  z-index: -1;
  box-shadow: 0px 4px 20.4px rgba(0, 0, 0, 0.05);
}

.list-sticky-nav li:hover .sticky-meta {
  opacity: 1;
  visibility: visible;
  display: block;
}

.link-sticky-nav:hover {
  background-color: rgb(var(--color-red));
}

.second-header {
  position: fixed;
  top: 100px;
  z-index: 130;
  width: 100%;
  opacity: 0;
  transition: all 100ms ease-in-out;
  visibility: hidden;
}

.second-header.show {
  opacity: 1;
  visibility: visible;
}

.sh-inner {
  position: relative;
  padding: 8px 30px;
  justify-content: space-between;
  display: flex;
  align-items: center;
}

.link-left {
  display: flex;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 20px;
}

.sh-inner::before {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  transform: skew(-13deg, 0deg);
  background: rgb(var(--color-white));
  border-radius: 12px;
  z-index: -1;
  box-shadow: 0px 4px 20.4px rgba(0, 0, 0, 0.05);
}

.big-gap {
  padding: 20vh 0;
}

.deco-error {
  position: absolute;
  z-index: -2;
}

.news-image-search {
  width: 140px;
  height: 140px;
  border-radius: 16px;
  overflow: hidden;
}

.news-image-search img {
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.thanks-container {
  min-height: 800px;
  display: flex;
  justify-content: center;
  padding-top: 100px;
}

.box-car {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: -1;
}

.box-car.left {
  left: -30%;
}

.box-car.right {
  right: -50%;
}

/* ========== Popup ========== */
.modal-overlay {
  content: '';
  width: 100%;
  left: 0;
  background: rgba(0, 0, 0, 0.3);
  height: 100%;
  right: 0;
  top: 0;
  bottom: 0;
  position: fixed;
  z-index: 1050;
  opacity: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  visibility: hidden;
  transition: all 150ms ease-in-out;
}

.modal-overlay.show {
  opacity: 1;
  visibility: visible;
}

.content-center {
  position: relative;
  max-width: 600px;
  width: 100%;
  border-radius: 20px;
  background-color: rgb(var(--color-white));
}

.img-promo-popup img {
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
}

.btn-close-pop {
  position: absolute;
  padding: 0;
  right: -30px;
  top: -30px;
}

/* ========== Footer ========== */
.footer {
  background: #E5E4E2;
  position: relative;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: auto;
}

.footer-inside {
  padding: 60px 0;
}

.link-footer {
  margin: 0;
  padding: 0;
  list-style: none;
}

.link-footer li {
  margin: 5px 0;
}

.link-footer a {
  font-size: 14px;
  line-height: 28px;
  color: rgb(var(--color-gray));
}

.link-footer a:hover {
  color: rgb(var(--color-blue));
}

.copyright {
  padding: 20px 0;
  text-align: center;
  font-size: 14px;
}

.social {
  display: flex;
  gap: 5px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgb(var(--color-blue));
}

.social a:hover {
  background-color: rgb(var(--color-red));
}

/* ========== overide ========== */
.dropdown:hover .dropdown-menu {
  display: block;
}

.tipe-c {
  font-weight: 700;
  color: rgb(var(--color-dark));
  font-size: 14px;
  display: inline-flex;
  gap: 5px;
  align-items: center;
}

.tipe-c::after {
  content: '';
  background-image: url(../img/chev-icon.svg);
  background-size: 14px;
  width: 14px;
  height: 14px;
  display: flex;
  align-items: center;
}

.link-tipe {
  display: block;
  font-size: 12px;
  line-height: 20px;
  padding: 0px 10px;
  color: rgb(var(--color-dark));
}

.dropdown-menu.tipe {
  padding: 10px 0;
  filter: drop-shadow(0px 2px 12px rgba(8, 8, 8, 0.08));
  border-radius: 12px;
  border: 0;
}

.productSlider {
  overflow: visible;
}

.sections-product {
  padding-top: 90px;
}

.pb-prod {
  padding-bottom: 150px;
}

.prod.swiper-horizontal>.prod.swiper-pagination-bullets,
.prod.swiper-pagination-bullets.swiper-pagination-horizontal,
.prod.swiper-pagination-custom,
.prod.swiper-pagination-fraction {
  bottom: -50px;
  z-index: -1;
  display: flex;
  justify-content: center;
  gap: 5px;
}

.prod.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0;
}

.prod .swiper-pagination-bullet {
  margin: 0;
  width: 12px;
  height: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 1px solid transparent;
}

.prod .swiper-pagination-bullet::before {
  content: '';
  background: rgb(var(--color-blue));
  width: 7px;
  height: 7px;
  border-radius: 50%;
}

.prod .swiper-pagination-bullet-active {
  border: 1px solid rgb(var(--color-blue));
}

.whites .swiper-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 2px;
}

.whites .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: transparent;
  opacity: var(--swiper-pagination-bullet-inactive-opacity, .2);
}

.whites .swiper-pagination-bullet::before {
  content: '';
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgb(var(--color-white));
}

.whites .swiper-pagination-bullet-active {
  opacity: 1;
  border: 1px solid rgb(var(--color-white));
}

.whites.swiper-pagination {
  position: relative;
  text-align: center;
  display: flex;
  justify-content: center;
  width: 100%;
  bottom: 30px;
}

#testi.swiper-pagination {
  position: relative;
}

#testi.whites.swiper-pagination {
  position: relative;
  text-align: center;
  display: flex;
  justify-content: flex-start;
  width: 100%;
  bottom: 120px;
}

.artic.swiper-button-next,
.artic.swiper-button-prev {
  position: absolute;
  top: 0;
  width: 50px;
  height: 100%;
  margin-top: 0;
  z-index: 10;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--swiper-navigation-color, var(--swiper-theme-color));
  background-color: rgba(0, 0, 0, 0.3);
  padding: 15px;
}

.artic.swiper-button-next {
  right: 0;
}

.artic.swiper-button-prev {
  left: 0;
}

.artic.swiper-button-next::after,
.artic.swiper-button-prev::after,
.hero-prod.swiper-button-next::after,
.hero-prod.swiper-button-prev::after {
  display: none;
}

.hero-prod.swiper-button-next,
.hero-prod.swiper-button-prev {
  width: 48px;
  height: 48px;
  border: 1px solid rgb(var(--color-white));
  border-radius: 50%;
  padding: 10px;
  z-index: 10;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: transparent;
}

.swiper-button-disabled {
  opacity: 0;
}

/* ========== Scroll ========== */

.content-menu::-webkit-scrollbar,
.lokasi-wrap::-webkit-scrollbar {
  width: 5px;
  border-radius: 5px;
}

/* Track */
.content-menu::-webkit-scrollbar-track,
.lokasi-wrap::-webkit-scrollbar-track {
  background: rgb(var(--color-light-gray));
  border-radius: 40px;
  border-radius: 5px;
}

/* Handle */
.content-menu::-webkit-scrollbar-thumb,
.lokasi-wrap::-webkit-scrollbar-thumb {
  background: rgb(var(--color-blue));
}

/* Handle on hover */
.content-menu::-webkit-scrollbar-thumb,
.lokasi-wrap::-webkit-scrollbar-thumb {
  height: 40px;
  border: 50px;
  border-radius: 5px;
  background: rgb(var(--color-blue));
}

.search-result {
  max-height: 70vh;
  overflow-y: auto;
  overflow-x: hidden;
}

/* ==========================================================================
   Helper classes
   ========================================================================== */

.hidden,
[hidden] {
  display: none !important;
}

.text-left {
  text-align: left !important;
}

.text-right {
  text-align: right;
}

.text-italic {
  font-style: italic;
}

.text-hidden {
  display: block;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.text-extraBold {
  font-weight: 800;
}

.text-bold {
  font-weight: 700;
}

.text-semiBold {
  font-weight: 600;
}

.text-medium {
  font-weight: 500;
}

.text-normal {
  font-weight: 400;
}

.text-light {
  font-weight: 300;
}

.text-Black {
  font-weight: 900;
}

.h-100vh {
  height: 100vh;
}

.mh-0 {
  min-height: 0;
}

.line-height {
  line-height: 0;
}


.sr-only {
  border: 0;
  clip: rect(0, 0, 0, 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  white-space: nowrap;
  width: 1px;
  /* 1 */
}

.sr-only.focusable:active,
.sr-only.focusable:focus {
  clip: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  position: static;
  white-space: inherit;
  width: auto;
}

.invisible {
  visibility: hidden;
}

.clearfix::before,
.clearfix::after {
  content: " ";
  display: table;
}

.clearfix::after {
  clear: both;
}

/* ==========================================================================
   Responsive Design.
   ========================================================================== */

@media (min-width: 576px) {

  .container,
  .container-sm {
    max-width: 600px;
  }

  .modal-md {
    max-width: 1050px;
  }
}

@media (min-width: 768px) {

  .container,
  .container-md,
  .container-sm {
    max-width: 720px;
  }
}

@media (min-width: 992px) {

  .container,
  .container-lg,
  .container-md,
  .container-sm {
    max-width: 960px;
  }


}

@media (min-width: 1025px) {

  .container,
  .container-lg,
  .container-md,
  .container-sm {
    max-width: 1140px;
  }


}

@media (min-width: 1200px) {

  .container,
  .container-lg,
  .container-md,
  .container-sm,
  .container-xl,
  .container-xxl {
    max-width: 1175px;
  }

  .hide-desktop {
    display: none;
  }
}

@media (min-width: 1400px) {}

@media (min-width: 1025px) and (max-width: 1199px) {}

@media (min-width: 992px) {
  #bt {
    display: none;
  }
}

@media (max-width: 1024px) {

  .container,
  .container-lg,
  .container-md,
  .container-sm {
    padding-left: 20px;
    padding-right: 20px;
  }

  body {
    font-size: 14px;
    line-height: 22px;
  }

  .main-logo,
  .logo-daihatsu {
    max-width: 150px;
    width: 100%;
    height: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 3;
  }

  .logo-daihatsu {
    max-width: 150px;
  }

  .menu-wrap {
    width: calc(100% - 320px);
  }

  .menu-link {
    font-size: 15px;
  }

  h1 {
    font-size: 60px;
    line-height: 70px;
  }

  .mySwiper2 {
    width: 100%;
    height: 75vh;
  }

  .bg-slider {
    width: 100%;
    height: 75vh;
  }

  h3 {
    font-size: 30px;
    line-height: 40px;
  }

  .dropdown-menu.purna-drop {
    --bs-dropdown-min-width: 900px;
    min-width: 900px !important;
    margin-top: 40px !important;
    padding: 0 40px;
    margin-left: 50px !important;
  }

  .text-3xl {
    font-size: 30px;
    line-height: 40px;
  }

  h6 {
    font-size: 20px;
    line-height: 30px;
  }

  .news-image-search {
    width: 120px;
    height: 120px;
    border-radius: 16px;
    overflow: hidden;
  }

  .box-car.left {
    left: -50%;
  }

  .box-car.right {
    right: -60%;
  }
}

@media (max-width: 991px) {
  .logo-daihatsu {
    display: none;
  }

  .main-logo {
    max-width: 100px;
    height: 60px;
    padding: 15px;
  }

  .menu-wrap {
    width: calc(100% - 120px);
    height: 60px;
  }

  .main-menu {
    gap: 20px;
  }

  h1 {
    font-size: 45px;
    line-height: 60px;
  }

  h2 {
    font-size: 40px;
    line-height: 50px;
  }

  .thumb-slider {
    display: block;
    margin-top: -180px;
    width: 90%;
    padding-right: 20px;
    position: relative;
  }

  .mySwiper2 {
    width: 100%;
    height: 75vh;
  }

  .bg-slider {
    width: 100%;
    height: 75vh;
  }

  .text-lg {
    font-size: 17px;
    line-height: 20px;
  }

  .purna-excerpt {
    max-width: 60%;
  }

  #testi.swiper-pagination-horizontal.swiper-pagination-bullets {
    bottom: 0;
    text-align: start;
  }

  #bt.prod.swiper-horizontal>.prod.swiper-pagination-bullets,
  #bt.prod.swiper-pagination-bullets.swiper-pagination-horizontal,
  #bt.prod.swiper-pagination-custom,
  #bt.prod.swiper-pagination-fraction {
    bottom: 0px;
  }

  .dropdown-menu.purna-drop {
    --bs-dropdown-min-width: 7900px;
    min-width: 700px !important;
    margin-top: 40px !important;
    padding: 0 40px;
    margin-left: 30px !important;
  }

  .text-3xl {
    font-size: 25px;
    line-height: 35px;
  }

  .slider-save .swiper-slide,
  .slider-secure .swiper-slide {
    width: 80%;
  }

  .second-header {
    display: none;
  }

  .pos-variant {
    position: absolute;
    top: 40%;
    left: 30px;
    transform: translateY(-50%);
    z-index: 100;
  }

  .news-image-search {
    width: 100%;
    height: 170px;
  }

  .news-image-search img {
    width: 100%;
  }

  .mySwiper .swiper-slide .slider-thumb {
    transform: scale(.5);
  }

  .mySwiper .swiper-slide-active .slider-thumb {
    transform: scale(1);
  }

  .thanks-container {
    min-height: 600px;
    padding-top: 20px;
  }

  .box-car {
    width: 90%;
  }

  .box-car.left {
    left: -40%;
  }

  .box-car.right {
    right: -40%;
  }
}

@media (max-width: 767px) {
  p {
    font-size: 14px;
  }

  .menu-wrap {
    justify-content: flex-end;
    padding-right: 20px;
    height: 50px;
  }

  .main-menu li {
    display: none;
  }

  .main-logo {
    height: 50px;
  }

  .main-menu li:nth-last-child(2),
  .main-menu li:last-child {
    display: block;
  }

  .search-wrap {
    position: relative;
    top: 0;
    right: 0;
    transform: none;
  }

  h1 {
    font-size: 30px;
    line-height: 40px;
  }

  h2 {
    font-size: 26px;
    line-height: 40px;
  }

  .sections {
    padding: 50px 0;
  }

  .mySwiper2 {
    width: 100%;
    height: 800px;
  }

  .bg-slider {
    width: 100%;
    height: 800px;
    background-repeat: no-repeat;
    background-position: center right -300px;
  }

  .thumb-slider {
    margin-top: -100px;
    padding-left: 20px;
    width: 100%;
  }

  .produk-inner {
    margin-top: -296px;
  }

  h3 {
    font-size: 22px;
    line-height: 30px;
  }

  .purna-excerpt {
    max-width: 80%;
  }

  .lokasi-row {
    padding: 25px;
  }

  .sections-product {
    padding-top: 60px;
  }

  .pb-prod {
    padding-bottom: 120px;
  }

  .big-font {
    font-size: 28px;
    line-height: 44px;
  }

  .row-recomendation {
    gap: 10px;
  }

  .rec-item {
    width: calc(50% - 5px);
    flex: 1 0 auto;
  }

  .box-pusat {
    border-radius: 20px;
    padding: 25px;
  }

  .inner-section {
    margin-top: 75px;
  }

  .top-purna {
    padding: 30px 0;
    background-position: right bottom -90px;
  }

  .career-name {
    line-height: 26px;
    margin-bottom: 10px;
  }

  #map-location {
    height: 300px;
  }

  .slider-save .swiper-slide,
  .slider-secure .swiper-slide {
    width: 90%;
  }

  .slider-save .swiper-slide .text-xl,
  .slider-secure .swiper-slide .text-xl {
    font-size: 16px;
  }

  .sticky-nav {
    display: none;
  }

  .box-blue .border-end.blue {
    border: 0 !important;
  }

  .pos-variant {
    position: absolute;
    top: 23%;
    left: 10px;
  }

  .pos-variant-inner {
    background-color: rgb(var(--color-white));
    padding: 5px;
    border-radius: 10px;
    height: 170px;
  }

  .deco-error {
    position: absolute;
    z-index: -1;
    bottom: -20px;
  }

  .modal-overlay {
    padding: 10px;
  }

  .promo-pop .btn,
  .btn-pd .btn {
    padding: 10px;
    font-size: 12px;
  }

  .btn-close-pop {
    position: absolute;
    padding: 0;
    right: 0px;
    top: -40px;
  }

  .thanks-container {
    min-height: 500px;
    padding-top: 20px;
  }

  .box-car {
    width: 90%;
  }

  .box-car.left {
    left: -40%;
  }

  .box-car.right {
    right: -40%;
  }

  .deco-error.thanks {
    bottom: auto;
    top: 110px;
  }
}

@media (min-width: 768px) {

  .main-menu li:nth-last-child(2) {
    display: none;
  }
}

@media (max-width: 1000px) and (orientation: landscape) {}

@media (max-width: 700px) and (orientation: landscape) {}



/* ==========================================================================
   Print styles.
   ========================================================================== */

@media print {

  *,
  *::before,
  *::after {
    background: #fff !important;
    color: #000 !important;
    box-shadow: none !important;
    text-shadow: none !important;
  }

  a,
  a:visited {
    text-decoration: underline;
  }

  a[href^="#"]::after,
  a[href^="javascript:"]::after {
    content: "";
  }

  pre {
    white-space: pre-wrap !important;
  }

  pre,
  blockquote {
    border: 1px solid #999;
    page-break-inside: avoid;
  }

  thead {
    display: table-header-group;
  }

  tr,
  img {
    page-break-inside: avoid;
  }

  p,
  h2,
  h3 {
    orphans: 3;
    widows: 3;
  }

  h2,
  h3 {
    page-break-after: avoid;
  }
}