.accordion {
  --bs-accordion-color: var(--bs-body-color);
  --bs-accordion-bg: transparent;
  --bs-accordion-transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out, border-radius .15s ease;
  --bs-accordion-border-color: #000;
  --bs-accordion-border-width: 1px;
  --bs-accordion-border-radius: .125rem;
  --bs-accordion-inner-border-radius: calc(var(--bs-border-radius) - (var(--bs-border-width)));
  --bs-accordion-btn-padding-x: 1.5rem;
  --bs-accordion-btn-padding-y: 1.5rem;
  --bs-accordion-btn-color: var(--bs-body-color);
  --bs-accordion-btn-bg: var(--bs-accordion-bg);
  --bs-accordion-btn-icon: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='%23212529' stroke-linecap='round' stroke-linejoin='round'%3e%3cpath d='M2 5L8 11L14 5'/%3e%3c/svg%3e");
  --bs-accordion-btn-icon-width: .9375rem;
  --bs-accordion-btn-icon-transform: rotate(-180deg);
  --bs-accordion-btn-icon-transition: transform .2s ease-in-out;
  --bs-accordion-btn-active-icon: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='rgb%285.2, 44, 101.2%29' stroke-linecap='round' stroke-linejoin='round'%3e%3cpath d='M2 5L8 11L14 5'/%3e%3c/svg%3e");
  --bs-accordion-btn-focus-box-shadow: var(--bs-primary);
  --bs-accordion-body-padding-x: 1.5rem;
  --bs-accordion-body-padding-y: 1.5rem;
  --bs-accordion-active-color: var(--bs-primary-text-emphasis);
  --bs-accordion-active-bg: var(--bs-primary-bg-subtle);
}

.accordion-button {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  padding: var(--bs-accordion-btn-padding-y) var(--bs-accordion-btn-padding-x);
  font-size: 1.125rem;
  color: var(--bs-accordion-btn-color);
  
  text-align: left;
  background-color: var(--bs-accordion-btn-bg);
  border: 0;
  border-radius: 0;
  overflow-anchor: none;
  transition: var(--bs-accordion-transition);
}

[dir="rtl"] .accordion-button {
  
  text-align: right;
}

@media (prefers-reduced-motion: reduce) {
  .accordion-button {
    transition: none;
  }
}

.accordion-button:not(.collapsed) {
  color: var(--bs-accordion-active-color);
  background-color: var(--bs-accordion-active-bg);
  box-shadow: inset 0 calc(-1 * var(--bs-accordion-border-width)) 0 var(--bs-accordion-border-color);
}

.accordion-button:not(.collapsed)::after {
  background-image: var(--bs-accordion-btn-active-icon);
  transform: var(--bs-accordion-btn-icon-transform);
}

.accordion-button::after {
  flex-shrink: 0;
  width: var(--bs-accordion-btn-icon-width);
  height: var(--bs-accordion-btn-icon-width);
  
  margin-left: auto;
  content: "";
  background-image: var(--bs-accordion-btn-icon);
  background-repeat: no-repeat;
  background-size: var(--bs-accordion-btn-icon-width);
  transition: var(--bs-accordion-btn-icon-transition);
}

[dir="rtl"] .accordion-button::after {
  margin-left: 0;
  
  margin-right: auto;
}

@media (prefers-reduced-motion: reduce) {
  .accordion-button::after {
    transition: none;
  }
}

.accordion-button:hover {
  z-index: 2;
}

.accordion-button:focus {
  z-index: 3;
  outline: 0;
  box-shadow: var(--bs-accordion-btn-focus-box-shadow);
}

.accordion-header {
  margin-bottom: 0;
}

.accordion-item {
  color: var(--bs-accordion-color);
  background-color: var(--bs-accordion-bg);
  border: var(--bs-accordion-border-width) solid var(--bs-accordion-border-color);
}

.accordion-item:first-of-type {
  border-top-left-radius: var(--bs-accordion-border-radius);
  border-top-right-radius: var(--bs-accordion-border-radius);
}

.accordion-item:first-of-type > .accordion-header .accordion-button {
  border-top-left-radius: var(--bs-accordion-inner-border-radius);
  border-top-right-radius: var(--bs-accordion-inner-border-radius);
}

.accordion-item:not(:first-of-type) {
  border-top: 0;
}

.accordion-item:last-of-type {
  border-bottom-right-radius: var(--bs-accordion-border-radius);
  border-bottom-left-radius: var(--bs-accordion-border-radius);
}

.accordion-item:last-of-type > .accordion-header .accordion-button.collapsed {
  border-bottom-right-radius: var(--bs-accordion-inner-border-radius);
  border-bottom-left-radius: var(--bs-accordion-inner-border-radius);
}

.accordion-item:last-of-type > .accordion-collapse {
  border-bottom-right-radius: var(--bs-accordion-border-radius);
  border-bottom-left-radius: var(--bs-accordion-border-radius);
}

.accordion-body {
  padding: var(--bs-accordion-body-padding-y) var(--bs-accordion-body-padding-x);
}

.accordion-flush > .accordion-item {
  border-right: 0;
  border-left: 0;
  border-radius: 0;
}

.accordion-flush > .accordion-item:first-child {
  border-top: 0;
}

.accordion-flush > .accordion-item:last-child {
  border-bottom: 0;
}

.accordion-flush > .accordion-item > .accordion-header .accordion-button, .accordion-flush > .accordion-item > .accordion-header .accordion-button.collapsed {
  border-radius: 0;
}

.accordion-flush > .accordion-item > .accordion-collapse {
  border-radius: 0;
}

[data-bs-theme=dark] .accordion-button::after {
  --bs-accordion-btn-icon: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='rgb%28109.8, 168, 253.8%29'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
  --bs-accordion-btn-active-icon: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='rgb%28109.8, 168, 253.8%29'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion {
  --bs-accordion-btn-icon: url("data:image/svg+xml,%3csvg width='25' height='26' viewBox='0 0 25 26' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M20.8334 12.4792H4.16675V13.5209H20.8334V12.4792Z' fill='%23194BFF'/%3e%3cpath d='M13.0209 4.66675H11.9792V21.3334H13.0209V4.66675Z' fill='%23194BFF'/%3e%3c/svg%3e");
  --bs-accordion-btn-active-icon: url("data:image/svg+xml,%3csvg width='25' height='26' viewBox='0 0 25 26' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M20.8334 12.4792H4.16675V13.5209H20.8334V12.4792Z' fill='%23194BFF'/%3e%3c/svg%3e");
}

.accordion .accordion-item {
  color: var(--bs-accordion-color);
  border-top: 1px solid #000;
  border-bottom: none !important;
  border-left: none !important;
  border-right: none !important;
}

.accordion .accordion-item:not(:first-of-type) {
  border-top: 1px solid #000;
  border-bottom: none !important;
  border-left: none !important;
  border-right: none !important;
}

.accordion .accordion-button:not(.collapsed) {
  color: #000;
}

.accordion .accordion-button {
  font-weight: 700;
  background-color: transparent;
  box-shadow: none;
}

.accordion .accordion-button .collapsed {
  background-color: transparent;
}

.accordion .accordion-button::after {
  transform: scale(1.5);
}

.accordion .accordion-body {
  padding-top: 0;
  
  padding-left: 10px;
}

[dir="rtl"] .accordion .accordion-body {
  padding-left: 0;
  
  padding-right: 10px;
}

@media (min-width: 576px) {
  .accordion .accordion-body {
    
    padding-left: 1.5rem;
  }

  [dir="rtl"] .accordion .accordion-body {
    padding-left: 0;
    
    padding-right: 1.5rem;
  }
}

.inter-500, #geelyTechnology #tabs-2 .text-section .heading-section {
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
}

.inter-600, #geelyTechnology #tabs-3 .text-section .heading-section {
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: normal;
}

.tabs {
  display: flex;
  border: 1px transparent;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  z-index: 888;
}

.tabs .tabstudio {
  flex: 1;
  padding: 10px;
  text-align: center;
  background-color: #fff;
  color: #000;
  cursor: pointer;
  transition: all .3s;
  font-family: Arial, sans-serif;
  border: none;
}

.tabs .active {
  background-color: #000;
  color: #fff;
}

#colorSelectorExterior {
  width: auto;
}

@media screen and (max-width: 576px) {
  #colorSelectorExterior {
    width: auto;
    height: auto;
  }
}

#colorSelectorExterior .color-selector-wrap {
  width: 100px;
  gap: 12px;
}

@media screen and (max-width: 576px) {
  #colorSelectorExterior .color-selector-wrap {
    width: auto;
    gap: 12px;
  }
}

.color-selector {
  
  background: linear-gradient(180deg, #fff 0%, #f0f0f0 50%, #d6d6d6 100%);
  box-shadow: 0 4px 6px rgba(0, 0, 0, .1);
  font-size: 18px;
  font-family: "inter-bold";
  border-radius: 12px;
  
  left: 50px !important;
  top: 30%;
}

[dir="rtl"] .color-selector {
  
  background: linear-gradient(-180deg, #fff 0%, #f0f0f0 50%, #d6d6d6 100%);
  left: auto !important;
  
  right: 50px !important;
}

@media screen and (max-width: 576px) {
  .color-selector {
    top: auto;
    bottom: 7px;
    
    left: 50% !important;
    
    transform: translateX(-50%);
    
    right: auto !important;
  }

  [dir="rtl"] .color-selector {
    
    right: 50% !important;
    
    transform: translateX(50%);
    
    left: auto !important;
  }
}

.color-selector .color-circle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin: 10px 2px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: border-color .3s;
}

@media screen and (max-width: 576px) {
  .color-selector .color-circle {
    width: 32px;
    height: 32px;
  }
}

.color-selector .color-circle.selected {
  background-image: url("data:image/svg+xml,%3csvg width='20' height='20' viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M16.6616 4.5294C16.9213 4.75671 16.9477 5.15156 16.7204 5.41133L7.97036 15.4113C7.85645 15.5415 7.69368 15.6187 7.5208 15.6244C7.34791 15.6302 7.18037 15.564 7.05806 15.4417L3.30806 11.6917C3.06398 11.4476 3.06398 11.0519 3.30806 10.8078C3.55214 10.5637 3.94786 10.5637 4.19194 10.8078L7.46956 14.0854L15.7796 4.5882C16.0069 4.32843 16.4018 4.3021 16.6616 4.5294Z' fill='white'/%3e%3c/svg%3e");
  background-position: center;
  background-repeat: no-repeat;
}

.color-selector .color-circle:nth-child(2).selected {
  background-image: url("data:image/svg+xml,%3csvg width='20' height='21' viewBox='0 0 20 21' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M16.6616 5.0294C16.9213 5.25671 16.9477 5.65156 16.7204 5.91133L7.97036 15.9113C7.85645 16.0415 7.69368 16.1187 7.5208 16.1244C7.34791 16.1302 7.18037 16.064 7.05806 15.9417L3.30806 12.1917C3.06398 11.9476 3.06398 11.5519 3.30806 11.3078C3.55214 11.0637 3.94786 11.0637 4.19194 11.3078L7.46956 14.5854L15.7796 5.0882C16.0069 4.82843 16.4018 4.8021 16.6616 5.0294Z' fill='black'/%3e%3c/svg%3e");
}

#exteriorAnimation img {
  width: 80% !important;
  
  transform: translateX(10%);
}

[dir="rtl"] #exteriorAnimation img {
  
  transform: translateX(-10%);
}

@media screen and (max-width: 576px) {
  #exteriorAnimation img {
    width: 100% !important;
    transform: translateX(0%);
  }
}

#backgroundGradient360 {
  
  background: linear-gradient(180deg, #fff 15.87%, rgba(255, 255, 255, 0) 42%);
}

[dir="rtl"] #backgroundGradient360 {
  
  background: linear-gradient(-180deg, #fff 15.87%, rgba(255, 255, 255, 0) 42%);
}

@media screen and (max-width: 576px) {
  #backgroundGradient360 {
    background: none;
  }
}

#ProductStarray {
  background-image: url(https://geelyprod-static.oss-ap-southeast-5.aliyuncs.com/starray/360studio-background/glacier-blue.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

@media screen and (max-width: 576px) {
  #ProductStarray {
    background-image: url(https://geelyprod-static.oss-ap-southeast-5.aliyuncs.com/starray/360studio-background/glacier-blue-m.png);
  }
}

#ProductStarray #ProductHighlights {
  min-height: 100vh;
}

#ProductStarray #ProductHighlights h3 {
  font-size: 32px;
  letter-spacing: 5px;
}

@media screen and (max-width: 576px) {
  #ProductStarray #ProductHighlights h3 {
    font-size: 30px;
    letter-spacing: 2px;
  }
}

#ProductStarray #ProductHighlights h1 {
  font-size: 64px;
  margin-bottom: -4px !important;
}

@media screen and (max-width: 576px) {
  #ProductStarray #ProductHighlights h1 {
    font-size: 32px;
    letter-spacing: 2px;
  }
}

#ProductStarray #ProductHighlights h1 span {
  font-family: "inter-semibold";
  font-size: 24px;
  text-transform: none;
  font-weight: 500 !important;
  letter-spacing: 0;
}

@media screen and (max-width: 576px) {
  #ProductStarray #ProductHighlights p {
    margin-bottom: 0 !important;
  }
}

@media screen and (max-width: 576px) {
  #ProductStarray #ProductHighlights {
    min-height: 90vh;
  }
}

@media screen and (max-width: 576px) {
  #svg-360 {
    bottom: 120px !important;
  }

  #svg-360 img {
    width: 105px !important;
  }
}

@media screen and (max-width: 576px) {
  #svg-360-white {
    bottom: 120px !important;
  }

  #svg-360-white img {
    width: 105px !important;
  }
}

.mobile-active {
  background-color: #000 !important;
  width: 100% !important;
  height: 114px !important;
  bottom: 2px !important;
}

.mobile-active .tabs-class {
  bottom: 70px;
}

.mobile-active .tabs-class .tabs360 {
  color: #fff !important;
}

.mobile-active .tabs-class .active::after {
  background-color: #fff !important;
}

#switchAnimation {
  margin: 50px 0 20px 0;
}

@media screen and (max-width: 576px) {
  #switchAnimation {
    margin: 50px 0 20px 0;
  }
}

@media (max-width: 1280px) {
  .ml-md {
    
    margin-left: -28px;
  }

  [dir="rtl"] .ml-md {
    margin-left: 0;
    
    margin-right: -28px;
  }
}

#Highlights .gallery-wrapper {
  padding: 40px 0 60px 0;
}

#Highlights p {
  font-size: 18px;
}

@media screen and (max-width: 576px) {
  #Highlights p {
    font-size: 16px;
  }
}

#Highlights .image-gallery {
  border-radius: 18px;
}

@media screen and (max-width: 576px) {
  #Highlights .image-gallery {
    border-radius: 12px;
  }
}

#Highlights .gallerySwiper {
  margin: 60px 0 60px 0;
}

#Highlights .gallerySwiper .swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
}

#Highlights .gallerySwiper .swiper-slide img {
  display: block;
  width: 355px;
  height: 251.25px;
  object-fit: cover;
}

#Highlights .gallerySwiper .swiper-pagination {
  position: relative;
  top: 0;
  
  left: 0;
  margin-top: 15px;
}

[dir="rtl"] #Highlights .gallerySwiper .swiper-pagination {
  left: auto;
  
  right: 0;
}

#Highlights .gallerySwiper .swiper-pagination-bullet {
  background-color: #e8e7e7;
  width: 12px;
  height: 12px;
  opacity: 1;
}

#Highlights .gallerySwiper .swiper-pagination-bullet-active {
  background-color: #666;
}

#floating-section-product-geely {
  position: absolute;
  bottom: 50px !important;
  color: #fff;
  
  left: 0;
  width: 100%;
}

[dir="rtl"] #floating-section-product-geely {
  left: auto;
  
  right: 0;
}

@media screen and (max-width: 576px) {
  #floating-section-product-geely {
    bottom: 20px !important;
    top: auto !important;
  }
}

@media (max-width: 1440px) {
  #floating-section-product-geely .custom-position {
    position: relative;
    bottom: 10px;
  }
}

@media (max-width: 1280px) {
  #floating-section-product-geely .custom-position {
    position: relative;
    bottom: -15px;
  }

  #floating-section-product-geely .price-amount {
    font-size: 22px !important;
  }
}

@media (max-width: 575px) {
  #floating-section-product-geely .custom-position {
    position: relative;
    bottom: 50px;
  }
}

@media (max-width: 375px) {
  #floating-section-product-geely .custom-position {
    position: relative;
    bottom: -100px;
  }

  #floating-section-product-geely .price-amount {
    font-size: 16px !important;
  }
}

#floating-section-product-geely .price-container {
  display: flex;
  gap: 30px;
}

#floating-section-product-geely .price-card {
  
  padding-right: 30px;
}

[dir="rtl"] #floating-section-product-geely .price-card {
  padding-right: 0;
  
  padding-left: 30px;
}

#floating-section-product-geely .price-title {
  font-size: 14px;
  font-weight: bold;
  letter-spacing: 1px;
}

#floating-section-product-geely .price-amount {
  font-size: 24px;
  font-weight: bold;
}

#floating-section-product-geely .price-label {
  font-size: 12px;
}

#floating-section-product-geely .small-note {
  font-size: 10px;
  color: rgba(255, 255, 255, .7);
}

#floating-section-product-geely .border-sm-end {
  
  border-right: 1px solid white;
}

[dir="rtl"] #floating-section-product-geely .border-sm-end {
  border-right: none;
  
  border-left: 1px solid white;
}

@media (max-width: 575px) {
  #floating-section-product-geely .border-sm-end {
    
    border-right: unset !important;
  }

  [dir="rtl"] #floating-section-product-geely .border-sm-end {
    border-right: none !important;
    
    border-left: unset !important;
  }
}

#banner-iims .iims-button {
  padding: 12px 24px;
  color: #fff;
  border: none;
  margin: 0 20px;
  font-size: 16px;
  font-weight: 500;
}

@media (max-width: 1600px) {
  #banner-iims .iims-button {
    
    margin-left: 8px;
  }

  [dir="rtl"] #banner-iims .iims-button {
    margin-left: 0;
    
    margin-right: 8px;
  }
}

#banner-iims .iims-button-close {
  padding: 10px 40px;
  color: #fff;
  border: none;
  margin: 0 20px;
  font-size: 16px;
  font-weight: bold;
}

@media (max-width: 1440px) {
  #banner-iims .iims-button-close {
    padding: 10px 42px;
    
    margin-left: 8px;
  }

  [dir="rtl"] #banner-iims .iims-button-close {
    margin-left: 0;
    
    margin-right: 8px;
  }
}

#banner-iims .tnc {
  font-size: 32px !important;
  letter-spacing: 3px;
}

#banner-iims .title-content {
  margin-bottom: 0;
}

#banner-iims .btn-dark:hover {
  background-color: #000 !important;
}

#banner-iims .spc-btn {
  width: 100%;
}

#banner-iims .modal {
  --bs-modal-width: 900px !important;
  
  text-align: left;
}

[dir="rtl"] #banner-iims .modal {
  
  text-align: right;
}

#banner-iims .modal-header {
  border-bottom: none;
}

#banner-iims .modal-body {
  max-height: 440px;
  overflow-y: scroll;
}

#banner-iims .modal-content {
  background-image: url("https://geelyauto.id/sites/default/files/2025-02/51cccdf55c25e610196c3d9ea923adc0.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 24px;
  border: 16px solid white;
  border-radius: 24px !important;
}

@media (max-width: 1440px) {
  #banner-iims .modal-content {
    background-position: unset;
  }
}

#banner-iims .btn-close {
  font-size: 24px;
}

#banner-iims .modal-footer {
  text-align: center;
  display: unset;
  border-top: none;
  padding-top: 42px;
}

@media (max-width: 425px) {
  #banner-iims-m .iims-button {
    padding: 10px 30px;
    color: #fff;
    border: none;
    
    margin-left: 8px;
    font-size: 14px;
    font-weight: bold;
  }

  [dir="rtl"] #banner-iims-m .iims-button {
    margin-left: 0;
    
    margin-right: 8px;
  }

  #banner-iims-m .iims-button-close {
    padding: 10px 42px;
    color: #fff;
    border: none;
    
    margin-left: 8px;
    font-size: 14px;
    font-weight: bold;
  }

  [dir="rtl"] #banner-iims-m .iims-button-close {
    margin-left: 0;
    
    margin-right: 8px;
  }

  #banner-iims-m .tnc {
    font-size: 32px !important;
    letter-spacing: 3px;
    line-height: 36px;
    margin-bottom: 12px;
  }

  #banner-iims-m .title-content {
    margin-bottom: 0;
  }

  #banner-iims-m .btn-dark:hover {
    background-color: #000 !important;
  }

  #banner-iims-m .modal {
    --bs-modal-width: 900px !important;
    
    text-align: left;
  }

  [dir="rtl"] #banner-iims-m .modal {
    
    text-align: right;
  }

  #banner-iims-m .modal-header {
    border-bottom: none;
    
    padding: 30px 25px 30px 0px;
  }

  [dir="rtl"] #banner-iims-m .modal-header {
    
    padding: 30px 0px 30px 25px;
  }

  #banner-iims-m .modal-body {
    max-height: 290px;
    overflow-y: scroll;
    padding: 20px;
    
    padding-right: 30px;
    font-size: 14px;
  }

  [dir="rtl"] #banner-iims-m .modal-body {
    padding-right: 0;
    
    padding-left: 30px;
  }

  #banner-iims-m .modal-content {
    background-image: url("https://geelyauto.id/sites/default/files/2025-02/51cccdf55c25e610196c3d9ea923adc0.png");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 0;
    border: 16px solid white;
    border-radius: 24px !important;
  }

  #banner-iims-m .btn-close {
    font-size: 24px;
  }

  #banner-iims-m .modal-footer {
    text-align: center;
    display: unset;
    border-top: none;
    padding-top: 24px;
    padding-bottom: 30px;
  }
}

#geelyDescriptionTechnology {
  padding-top: 90px;
  padding-bottom: 90px;
}

@media screen and (max-width: 576px) {
  #geelyDescriptionTechnology {
    padding-top: 48px;
    padding-bottom: 48px;
  }
}

#geelyDescriptionTechnology #product__full-video-description {
  padding-top: 60px;
  padding-bottom: 30px;
}

@media screen and (max-width: 576px) {
  #geelyDescriptionTechnology #product__full-video-description {
    padding-top: 60px;
    padding-bottom: 30px;
  }
}

#geelyDescriptionTechnology h5 {
  font-size: 22px !important;
  line-height: 26.4px;
  letter-spacing: 4.4px;
}

@media screen and (max-width: 576px) {
  #geelyDescriptionTechnology h5 {
    font-size: 20px !important;
    line-height: 24px;
    letter-spacing: 4px;
  }
}

#geelyDescriptionTechnology p {
  font-size: 18px !important;
  line-height: 25.2px;
}

@media screen and (max-width: 576px) {
  #geelyDescriptionTechnology p {
    font-size: 16px !important;
    line-height: 22.4px;
  }
}

#geelyDescriptionTechnology .geely__icons-description p {
  font-size: 16px !important;
  line-height: 22.4px;
}

@media screen and (max-width: 576px) {
  #geelyDescriptionTechnology .geely__icons-description p {
    font-size: 14px !important;
    line-height: 19.6px;
  }
}

#geelyTechnology {
  padding-top: 60px;
  padding-bottom: 60px;
}

@media screen and (max-width: 576px) {
  #geelyTechnology {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}

#geelyTechnology .heading-section h2 {
  font-size: 64px !important;
  margin-bottom: 0 !important;
}

@media screen and (max-width: 576px) {
  #geelyTechnology .heading-section h2 {
    font-size: 48px !important;
  }
}

#geelyTechnology .heading-section p {
  font-size: 18px !important;
  line-height: 25.2px;
}

@media screen and (max-width: 576px) {
  #geelyTechnology .heading-section p {
    font-size: 16px !important;
    line-height: 22.4px;
  }
}

#geelyTechnology .nav-accordion {
  display: flex;
  justify-content: space-between;
  border-top: 1px solid #e0e0e0;
  padding: 0;
  margin: 0;
  list-style: none;
}

#geelyTechnology .nav-accordion .tab {
  flex: 1;
  padding: 10px 0;
  position: relative;
}

#geelyTechnology .nav-accordion .tab a {
  display: block;
  color: #9e9e9e;
  text-decoration: none;
  font-family: "GEELY Bold 20230926";
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 5px;
  line-height: 1.5;
  padding: 0rem 1rem;
}

#geelyTechnology .nav-accordion .tab a span {
  display: block;
  font-size: 16px;
  font-family: "Inter-Regular";
  font-weight: 400;
  color: #bdbdbd;
  margin-top: 5px;
  letter-spacing: 0;
}

#geelyTechnology .nav-accordion .tab a:hover {
  text-decoration: none;
}

#geelyTechnology .nav-accordion .tab.active {
  background: linear-gradient(to bottom, rgba(0, 0, 0, .1) 0%, rgba(0, 0, 0, 0) 70%);
}

#geelyTechnology .nav-accordion .tab.active a {
  color: #007bff;
}

#geelyTechnology .nav-accordion .tab.active a span {
  color: #000;
}

#geelyTechnology .nav-accordion .tab.active::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background-color: #007bff;
}

#geelyTechnology .dropdown-menu {
  border-top: 1px solid #e0e0e0;
  padding: 0;
  margin: 0;
  list-style: none;
}

#geelyTechnology .dropdown-menu.show {
  border: none !important;
  border-radius: 0 0 12px 12px !important;
}

#geelyTechnology .dropdown-menu .dropdown-item {
  color: #666;
}

#geelyTechnology .dropdown-menu .dropdown-item div {
  font-size: 20px;
  font-family: "Geely Bold 20230926";
  letter-spacing: 5px;
  line-height: 24px;
}

#geelyTechnology .dropdown-menu .dropdown-item span {
  font-size: 14px;
  font-family: "inter-regular";
  color: #666;
}

#geelyTechnology .dropdown-menu .tab {
  flex: 1;
  
  padding: 24px 18px 24px 24px;
  position: relative;
}

[dir="rtl"] #geelyTechnology .dropdown-menu .tab {
  
  padding: 24px 24px 24px 18px;
}

#geelyTechnology .dropdown-menu .tab a {
  display: block;
  color: #9e9e9e;
  text-decoration: none;
  font-family: "GEELY Bold 20230926";
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 5px;
  line-height: 1.5;
  padding: 0rem 1rem;
}

#geelyTechnology .dropdown-menu .tab a span {
  display: block;
  font-size: 16px;
  font-family: "Inter-Regular";
  font-weight: 400;
  color: #bdbdbd;
  margin-top: 5px;
  letter-spacing: 0;
}

#geelyTechnology .dropdown-menu .tab a:hover {
  text-decoration: none;
}

#geelyTechnology .dropdown-menu .tab.active {
  background: #e5e5e5;
}

#geelyTechnology .dropdown-menu .tab.active a {
  color: #007bff;
}

#geelyTechnology .dropdown-menu .tab.active a span {
  color: #000;
}

#geelyTechnology .dropdown .btn {
  
  padding: 24px 18px 24px 24px !important;
  background-color: #fff;
  border-radius: 12px;
}

[dir="rtl"] #geelyTechnology .dropdown .btn {
  
  padding: 24px 24px 24px 18px !important;
}

#geelyTechnology .dropdown .btn.show {
  border-radius: 12px 12px 0 0 !important;
  border: none !important;
}

#geelyTechnology .dropdown #activeTabTitle {
  font-size: 20px;
  color: #194bff;
  font-family: "Geely Bold 20230926";
  letter-spacing: 4px;
  line-height: 24px;
}

#geelyTechnology .dropdown #activeTabSubtitle {
  font-size: 14px;
  font-family: "inter-regular";
  color: #666;
  letter-spacing: 0;
}

#geelyTechnology #tabs-1 .text-section .heading-section {
  font-family: "inter-semibold";
  font-size: 30px;
  font-weight: 500;
  line-height: 36px;
}

@media screen and (max-width: 576px) {
  #geelyTechnology #tabs-1 .text-section .heading-section {
    font-size: 24px;
    margin-top: 10px;
  }
}

#geelyTechnology #tabs-1 .text-section .spec h3 {
  font-family: "GEELY Bold 20230926";
  font-size: 44px;
  font-weight: 400;
  line-height: 52px;
  letter-spacing: 5px;
  margin-bottom: 0;
}

@media screen and (max-width: 576px) {
  #geelyTechnology #tabs-1 .text-section .spec h3 {
    font-size: 32px;
  }
}

#geelyTechnology #tabs-1 .text-section .spec h3 span {
  font-family: "Inter-Regular";
  font-weight: 500;
  font-size: 24px;
  text-transform: none !important;
  letter-spacing: 0;
  
  margin-left: -1rem;
}

[dir="rtl"] #geelyTechnology #tabs-1 .text-section .spec h3 span {
  margin-left: 0;
  
  margin-right: -1rem;
}

#geelyTechnology #tabs-1 .text-section .spec .label {
  font-family: "Inter-Regular";
  font-size: 16px;
  font-weight: 400;
}

@media screen and (max-width: 576px) {
  #geelyTechnology #tabs-1 .text-section .spec .label {
    font-size: 14px;
    margin-top: -8px;
  }
}

#geelyTechnology #tabs-1 .text-section .charging h2 {
  font-size: 44px !important;
  letter-spacing: 5px;
  margin-bottom: 0 !important;
}

@media screen and (max-width: 576px) {
  #geelyTechnology #tabs-1 .text-section .charging h2 {
    font-size: 32px !important;
    letter-spacing: 0;
  }
}

#geelyTechnology #tabs-1 .text-section .charging p {
  font-family: "Inter-Regukar";
  font-size: 16px;
  font-weight: 400;
  margin-bottom: 0;
}

#geelyTechnology #tabs-1 .text-section .charging .label {
  font-family: "inter-regular";
  font-size: 30px;
  font-weight: 400;
}

@media screen and (max-width: 576px) {
  #geelyTechnology #tabs-1 .text-section .charging .label {
    font-size: 24px;
  }
}

#geelyTechnology #tabs-2 .text-section .heading-section {
  font-size: 30px;
  line-height: 36px;
}

@media screen and (max-width: 576px) {
  #geelyTechnology #tabs-2 .text-section .heading-section {
    font-size: 24px;
    margin-top: 10px;
  }
}

#geelyTechnology #tabs-2 .text-section .spec h3 {
  font-family: "GEELY Bold 20230926";
  font-size: 32px;
  font-weight: 400;
  line-height: 52px;
  letter-spacing: 5px;
  margin-bottom: 0;
}

@media screen and (max-width: 576px) {
  #geelyTechnology #tabs-2 .text-section .spec h3 {
    font-size: 32px;
  }
}

#geelyTechnology #tabs-2 .text-section .spec .label {
  font-family: "Inter-Regular";
  font-size: 16px;
  font-weight: 400;
}

#geelyTechnology #tabs-2 .text-section .footnote {
  font-family: "inter-regular";
  font-size: 12px;
  font-weight: 400;
  line-height: 36px;
}

#geelyTechnology #tabs-3 .text-section .heading-section {
  font-size: 30px;
  font-weight: 500;
  line-height: 36px;
}

@media screen and (max-width: 576px) {
  #geelyTechnology #tabs-3 .text-section .heading-section {
    font-size: 24px;
    margin-top: 10px;
  }
}

#geelyTechnology #tabs-3 .text-section .spec h3 {
  font-family: "GEELY Bold 20230926";
  font-size: 44px;
  font-weight: 400;
  line-height: 52px;
  letter-spacing: 5px;
  margin-bottom: 0;
}

@media screen and (max-width: 576px) {
  #geelyTechnology #tabs-3 .text-section .spec h3 {
    font-size: 32px;
  }
}

#geelyTechnology #tabs-3 .text-section .spec h3 span {
  font-family: "Inter-Regular";
  font-weight: 500;
  font-size: 24px;
  text-transform: none !important;
  letter-spacing: 0;
  
  margin-left: -0.2rem;
}

[dir="rtl"] #geelyTechnology #tabs-3 .text-section .spec h3 span {
  margin-left: 0;
  
  margin-right: -0.2rem;
}

#geelyTechnology #tabs-3 .text-section .spec .label {
  font-family: "Inter-Regular";
  font-size: 16px;
  font-weight: 400;
}

#geelyTechnology #tabs-3 .text-section .footnote {
  font-family: "inter-regular";
  font-size: 12px;
  font-weight: 400;
  line-height: 36px;
}

#geelyTechnology .technologySwiper .swiper-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  position: relative;
  bottom: 0;
  
  left: 0;
}

[dir="rtl"] #geelyTechnology .technologySwiper .swiper-pagination {
  left: auto;
  
  right: 0;
}

#geelyTechnology .technologySwiper .swiper-pagination-bullet {
  background-color: #e8e7e7;
  width: 12px;
  height: 12px;
  opacity: 1;
}

#geelyTechnology .technologySwiper .swiper-pagination-bullet-active {
  background-color: #666;
}

#geelyTechnology .technologySwiper .swiper-controls {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  width: 100%;
  margin-top: 70px;
}

#geelyTechnology .technologySwiper .swiper-button-prev,
#geelyTechnology .technologySwiper .swiper-button-next {
  position: static;
  width: 40px;
  height: 40px;
  cursor: pointer;
}

#geelyTechnology .technologySwiper .swiper-button-prev::after,
#geelyTechnology .technologySwiper .swiper-button-next::after {
  content: unset;
}

#geelyTechnology .technologySwiper .swiper-button-next svg,
#geelyTechnology .technologySwiper .swiper-button-prev svg {
  width: 100%;
  height: 100%;
}

#geelyTechnology #footnote {
  position: absolute;
  bottom: 140px;
}

@media screen and (max-width: 576px) {
  #geelyTechnology #footnote {
    bottom: 120px;
  }
}

#geelyTechnology .image-rounded {
  border-radius: 18px;
}

@media screen and (max-width: 576px) {
  #geelyTechnology .image-rounded {
    border-radius: 12px;
  }
}

#geelyAppRemoteControl {
  padding-top: 90px;
  padding-bottom: 60px;
}

@media screen and (max-width: 576px) {
  #geelyAppRemoteControl {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}

#geelyAppRemoteControl .heading-section p {
  font-size: 18px !important;
}

@media screen and (max-width: 576px) {
  #geelyAppRemoteControl .heading-section p {
    font-size: 16px !important;
  }
}

#geelyDesignSpecs {
  padding-top: 90px;
  padding-bottom: 90px;
}

@media screen and (max-width: 576px) {
  #geelyDesignSpecs {
    padding-top: 48px;
    padding-bottom: 48px;
  }
}

#geelyDesignSpecs .heading-section p {
  font-size: 18px;
}

@media screen and (max-width: 576px) {
  #geelyDesignSpecs .heading-section p {
    font-size: 16px;
  }
}

#geelyDesignSpecs .image-rounded {
  border-radius: 18px;
}

@media screen and (max-width: 576px) {
  #geelyDesignSpecs .image-rounded {
    border-radius: 12px;
  }
}

#geelyMadeJourney {
  padding-top: 90px;
  padding-bottom: 90px;
}

@media screen and (max-width: 576px) {
  #geelyMadeJourney {
    padding-top: 48px;
    padding-bottom: 48px;
  }
}

#geelyMadeJourney .heading-section p {
  font-size: 18px;
}

#geelyMadeJourney .swiper {
  width: 100%;
  height: 100%;
  overflow: visible;
}

@media screen and (max-width: 576px) {
  #geelyMadeJourney .swiper {
    overflow: hidden;
    margin: 0 10px;
  }
}

#geelyMadeJourney .exteriorSwiper .swiper-slide {
  width: 90%;
  height: 100%;
}

#geelyMadeJourney .exteriorSwiper .swiper-slide:nth-child(2) {
  width: 90%;
  height: 100%;
}

#geelyMadeJourney .exteriorSwiper .swiper-slide:nth-child(3) {
  width: 90%;
  height: 100%;
}

#geelyMadeJourney .exteriorSwiper .swiper-slide:nth-child(4) {
  width: 90%;
  height: 100%;
}

@media screen and (max-width: 576px) {
  #geelyMadeJourney .exteriorSwiper .swiper-slide {
    width: 90% !important;
    display: flex;
    justify-content: center;
    align-items: center;
  }
}

#geelyMadeJourney .exteriorSwiper .swiper-slide .card-custom {
  border-radius: 15px;
  overflow: hidden;
  width: 100%;
  height: 530px;
}

@media screen and (max-width: 1440px) {
  #geelyMadeJourney .exteriorSwiper .swiper-slide .card-custom {
    height: 500px;
  }
}

@media screen and (max-width: 576px) {
  #geelyMadeJourney .exteriorSwiper .swiper-slide .card-custom {
    width: 100%;
    height: 447px;
  }
}

#geelyMadeJourney .exteriorSwiper .swiper-slide .card-custom .card-content {
  height: 100%;
  background-size: cover;
  background-color: #c9c0b7;
  background-position: center;
  background-repeat: no-repeat;
}

@media screen and (max-width: 576px) {
  #geelyMadeJourney .exteriorSwiper .swiper-slide .card-custom .card-content {
    background-size: cover;
    width: 100%;
  }
}

#geelyMadeJourney .exteriorSwiper .swiper-slide .card-custom .card-content#card-1 {
  background-image: url(https://geelyprod-static.oss-ap-southeast-5.aliyuncs.com/starray/journey-asset/exterior/exterior-1.jpg);
}

#geelyMadeJourney .exteriorSwiper .swiper-slide .card-custom .card-content#card-2 {
  background-image: url(https://geelyprod-static.oss-ap-southeast-5.aliyuncs.com/starray/journey-asset/exterior/exterior-2.jpg);
}

#geelyMadeJourney .exteriorSwiper .swiper-slide .card-custom .card-content#card-3 {
  background-image: url(https://geelyprod-static.oss-ap-southeast-5.aliyuncs.com/starray/journey-asset/exterior/exterior-3.jpg);
}

#geelyMadeJourney .exteriorSwiper .swiper-slide .card-custom .card-content#card-4 {
  background-image: url(https://geelyprod-static.oss-ap-southeast-5.aliyuncs.com/starray/journey-asset/exterior/exterior-4.jpg);
}

#geelyMadeJourney .exteriorSwiper .swiper-slide .card-custom .card-content#card-5 {
  background-image: url(https://geelyprod-static.oss-ap-southeast-5.aliyuncs.com/starray/journey-asset/exterior/exterior-5.jpg);
}

#geelyMadeJourney .exteriorSwiper .swiper-slide .card-custom .card-footer-custom {
  position: absolute;
  bottom: 0%;
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, .7) 100%);
  color: white;
  font-weight: bold;
  text-transform: uppercase;
  font-family: "Geely Bold 20230926";
  padding: 60px 30px 30px 30px;
  width: 100%;
  border-bottom-left-radius: 15px;
  border-bottom-right-radius: 15px;
  font-size: 22px;
  letter-spacing: 5px;
  border-top: none;
}

@media screen and (max-width: 576px) {
  #geelyMadeJourney .exteriorSwiper .swiper-slide .card-custom .card-footer-custom {
    font-size: 20px;
    padding: 60px 20px 30px 20px;
    letter-spacing: 3px;
  }
}

#geelyMadeJourney .exteriorSwiper .swiper-slide .card-custom .card-footer-custom p {
  font-size: 16px;
  text-transform: none;
  letter-spacing: 0;
  font-weight: 400;
  color: #fff;
  transform: translateY(10px);
}

@media screen and (max-width: 576px) {
  #geelyMadeJourney .exteriorSwiper .swiper-slide .card-custom .card-footer-custom p {
    font-size: 14px;
  }
}

#geelyMadeJourney .exteriorSwiper .swiper-slide .card-img-top {
  border-top-left-radius: 15px;
  border-top-right-radius: 15px;
}

#geelyMadeJourney .exteriorSwiper .swiper-container .swiper-pagination .swiper-pagination-bullet {
  background-color: #e8e7e7;
  width: 12px;
  height: 12px;
  opacity: 1;
}

#geelyMadeJourney .exteriorSwiper .swiper-container .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #666;
}

#geelyMadeJourney .exteriorSwiper .swiper-container .swiper-button-next,
#geelyMadeJourney .exteriorSwiper .swiper-container .swiper-button-prev {
  width: 60px;
  height: 60px;
  position: relative !important;
}

#geelyMadeJourney .exteriorSwiper .swiper-container .swiper-button-next::after {
  content: unset !important;
}

#geelyMadeJourney .exteriorSwiper .swiper-container .swiper-button-prev::after {
  content: unset !important;
}

#geelyMadeJourney .interiorSwiper .swiper-slide {
  width: 90%;
  height: 100%;
}

#geelyMadeJourney .interiorSwiper .swiper-slide:nth-child(2) {
  width: 90%;
  height: 100%;
}

#geelyMadeJourney .interiorSwiper .swiper-slide:nth-child(3) {
  width: 90%;
  height: 100%;
}

#geelyMadeJourney .interiorSwiper .swiper-slide:nth-child(4) {
  width: 90%;
  height: 100%;
}

@media screen and (max-width: 576px) {
  #geelyMadeJourney .interiorSwiper .swiper-slide {
    width: 90% !important;
    display: flex;
    justify-content: center;
    align-items: center;
  }
}

#geelyMadeJourney .interiorSwiper .swiper-slide .card-custom {
  border-radius: 15px;
  overflow: hidden;
  width: 100%;
  height: 530px;
}

@media screen and (max-width: 1440px) {
  #geelyMadeJourney .interiorSwiper .swiper-slide .card-custom {
    height: 500px;
  }
}

@media screen and (max-width: 576px) {
  #geelyMadeJourney .interiorSwiper .swiper-slide .card-custom {
    width: 100%;
    height: 447px;
  }
}

#geelyMadeJourney .interiorSwiper .swiper-slide .card-custom .card-content {
  height: 100%;
  background-size: cover;
  background-color: #c9c0b7;
  background-position: center;
  background-repeat: no-repeat;
}

@media screen and (max-width: 576px) {
  #geelyMadeJourney .interiorSwiper .swiper-slide .card-custom .card-content {
    background-size: cover;
    width: 100%;
  }
}

#geelyMadeJourney .interiorSwiper .swiper-slide .card-custom .card-content#card-1 {
  background-image: url(https://geelyprod-static.oss-ap-southeast-5.aliyuncs.com/starray/journey-asset/interior/interior-1.png);
}

#geelyMadeJourney .interiorSwiper .swiper-slide .card-custom .card-content#card-2 {
  background-image: url(https://geelyprod-static.oss-ap-southeast-5.aliyuncs.com/starray/journey-asset/interior/interior-2.png);
}

#geelyMadeJourney .interiorSwiper .swiper-slide .card-custom .card-content#card-3 {
  background-image: url(https://geelyprod-static.oss-ap-southeast-5.aliyuncs.com/starray/journey-asset/interior/interior-3.png);
}

#geelyMadeJourney .interiorSwiper .swiper-slide .card-custom .card-content#card-4 {
  background-image: url(https://geelyprod-static.oss-ap-southeast-5.aliyuncs.com/starray/journey-asset/interior/interior-4.png);
}

#geelyMadeJourney .interiorSwiper .swiper-slide .card-custom .card-content#card-5 {
  background-image: url(https://geelyprod-static.oss-ap-southeast-5.aliyuncs.com/starray/journey-asset/interior/interior-5.png);
}

#geelyMadeJourney .interiorSwiper .swiper-slide .card-custom .card-content#card-6 {
  background-image: url(https://geelyprod-static.oss-ap-southeast-5.aliyuncs.com/starray/journey-asset/interior/interior-6.png);
}

#geelyMadeJourney .interiorSwiper .swiper-slide .card-custom .card-content#card-7 {
  background-image: url(https://geelyprod-static.oss-ap-southeast-5.aliyuncs.com/starray/journey-asset/interior/interior-7.png);
}

#geelyMadeJourney .interiorSwiper .swiper-slide .card-custom .card-footer-custom {
  position: absolute;
  bottom: 0%;
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, .7) 100%);
  color: white;
  font-weight: bold;
  text-transform: uppercase;
  font-family: "Geely Bold 20230926";
  padding: 60px 30px 30px 30px;
  width: 100%;
  border-bottom-left-radius: 15px;
  border-bottom-right-radius: 15px;
  font-size: 22px;
  letter-spacing: 5px;
  border-top: none;
}

@media screen and (max-width: 576px) {
  #geelyMadeJourney .interiorSwiper .swiper-slide .card-custom .card-footer-custom {
    font-size: 20px;
    padding: 60px 20px 30px 20px;
    letter-spacing: 3px;
  }
}

#geelyMadeJourney .interiorSwiper .swiper-slide .card-custom .card-footer-custom p {
  font-size: 16px;
  text-transform: none;
  letter-spacing: 0;
  font-weight: 400;
  color: #fff;
  transform: translateY(10px);
}

@media screen and (max-width: 576px) {
  #geelyMadeJourney .interiorSwiper .swiper-slide .card-custom .card-footer-custom p {
    font-size: 14px;
  }
}

#geelyMadeJourney .interiorSwiper .swiper-slide .card-img-top {
  border-top-left-radius: 15px;
  border-top-right-radius: 15px;
}

#geelyMadeJourney .interiorSwiper .swiper-container .swiper-pagination .swiper-pagination-bullet {
  background-color: #e8e7e7;
  width: 12px;
  height: 12px;
  opacity: 1;
}

#geelyMadeJourney .interiorSwiper .swiper-container .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #666;
}

#geelyMadeJourney .interiorSwiper .swiper-container .swiper-button-next,
#geelyMadeJourney .interiorSwiper .swiper-container .swiper-button-prev {
  width: 60px;
  height: 60px;
  position: relative !important;
}

#geelyMadeJourney .interiorSwiper .swiper-container .swiper-button-next::after {
  content: unset !important;
}

#geelyMadeJourney .interiorSwiper .swiper-container .swiper-button-prev::after {
  content: unset !important;
}

#geelyMadeJourney .tabs-class .tabs-class-wrapper {
  position: relative;
}

#geelyMadeJourney .tabs-class .tabs-class-wrapper .tabs360 {
  padding: 12px 24px;
  background-color: transparent;
  text-align: center;
  color: #000;
  cursor: pointer;
  transition: all .3s;
  font-family: "inter-bold";
  font-size: 16px;
  position: relative;
}

#geelyMadeJourney .tabs-class .tabs-class-wrapper .active::after {
  content: "";
  position: absolute;
  bottom: 0;
  
  left: 50%;
  
  transform: translateX(-50%);
  width: 100px;
  height: 5px;
  background-color: #000;
}

[dir="rtl"] #geelyMadeJourney .tabs-class .tabs-class-wrapper .active::after {
  left: auto;
  
  right: 50%;
  
  transform: translateX(50%);
}

@media screen and (max-width: 576px) {
  #geelyMadeJourney .tabs-class .tabs-class-wrapper .active::after {
    bottom: 3px;
  }
}

#bannerContent #bannerContentGradient {
  padding-top: 90px;
  padding-bottom: 90px;
  
  background: linear-gradient(92deg, rgba(0, 0, 0, .6) 39.05%, rgba(0, 0, 0, 0) 74.46%);
}

[dir="rtl"] #bannerContent #bannerContentGradient {
  
  background: linear-gradient(-92deg, rgba(0, 0, 0, .6) 39.05%, rgba(0, 0, 0, 0) 74.46%);
}

@media screen and (max-width: 576px) {
  #bannerContent #bannerContentGradient {
    padding-top: 60px;
    
    background: linear-gradient(171deg, rgba(0, 0, 0, .6) 33.29%, rgba(0, 0, 0, 0) 55.38%);
  }

  [dir="rtl"] #bannerContent #bannerContentGradient {
    
    background: linear-gradient(-171deg, rgba(0, 0, 0, .6) 33.29%, rgba(0, 0, 0, 0) 55.38%);
  }
}

#bannerContent h2 {
  font-size: 44px !important;
  line-height: 52.8px;
  letter-spacing: 4.4px;
}

@media screen and (max-width: 576px) {
  #bannerContent h2 {
    font-size: 32px !important;
    line-height: 38.4px;
    letter-spacing: 3.2px;
  }
}

#bannerContent p {
  font-size: 16px !important;
}

@media screen and (max-width: 576px) {
  #bannerContent p {
    font-size: 14px !important;
  }
}

