/**
  * swiper
  */
@import url("https://fonts.googleapis.com/css2?family=Exo:ital,wght@0,100..900;1,100..900&display=swap");
.mySearchSwiper .swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 20px;
  height: 300px;
  height: auto;
  background: transparent;
}
.mySearchSwiper .swiper-button-next,
.mySearchSwiper .swiper-button-prev {
  background-color: #f07125;
  color: #fff; /* arrow color */
  width: 50px;
  height: 50px;
  border-radius: 25px;
  display: flex;
  align-content: center;
  justify-content: center;
}
.mySearchSwiper .swiper-button-next::after,
.mySearchSwiper .swiper-button-prev::after {
  font-size: 24px;
}
.mySearchSwiper .swiper-pagination {
  position: static; /* Very important: make the pagination normal block flow */
  margin-top: 20px; /* add some margin */
  text-align: center;
}
.mySearchSwiper .swiper-pagination-bullet {
  background: #fff;
  width: 9.05px;
  height: 9.05px;
}

/**
  * modal swiper
  */
.myModalSwiper {
  position: relative;
  padding-top: 80px; /* enough room for arrows */
  /* Container for arrows */
  /* Position both arrows to the top right */
}
.myModalSwiper .swiper-slide {
  border-radius: 20px;
}
.myModalSwiper .swiper-button-next,
.myModalSwiper .swiper-button-prev {
  top: 30px; /* Move above the swiper (adjust as needed) */
  width: 62px;
  height: 62px;
  background-color: transparent;
  border: 1px solid #000;
  border-radius: 50%;
  color: #000;
  font-size: 20px;
}
.myModalSwiper .swiper-button-next::after,
.myModalSwiper .swiper-button-prev::after {
  font-size: 18px;
  font-weight: bold;
  color: white;
}
.myModalSwiper .swiper-button-next {
  right: 0;
}
.myModalSwiper .swiper-button-prev {
  right: 70px;
  left: auto;
}
.myModalSwiper .swiper-pagination-bullet {
  background: #0F3130;
  width: 9.05px;
  height: 9.05px;
}

/**
 * myProductCompareSwiper
 */
.product-card {
  background: #fff;
  border-radius: 20px;
  padding: 20px;
  text-align: center;
  margin: 0 10px;
  font-family: "Exo";
  height: 90%;
  margin-top: 10%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.product-card > img {
  width: 80%;
  aspect-ratio: 1/1;
  overflow: hidden;
  object-fit: contain;
}
.product-card button.btn-view {
  margin-bottom: 4px;
  height: 40px;
}

.product-brand {
  font-weight: 500;
  color: #00b4b6;
  font-size: 0.9rem;
}

.product-title {
  font-weight: bold;
  color: #0f3130;
  font-size: 1rem;
}
.product-title.product-model {
  flex-grow: 1;
}

.price-current {
  font-weight: bold;
  color: #0f3130;
  font-weight: 500;
}

.price-old {
  text-decoration: line-through;
  color: #aaa;
  font-size: 0.9rem;
}

.product-icons {
  font-size: 0.8rem;
  letter-spacing: 0.3rem;
  color: #555;
}
.product-icons img {
  width: 36px;
  height: 36px;
}

.add-fav {
  color: #ff5e00;
  font-size: 0.9rem;
}
.add-fav label {
  color: #0f3130;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row-reverse;
  padding-top: 2px;
  font-size: 16px;
}
.add-fav label input {
  width: 0;
  height: 0;
  overflow: hidden;
}
.add-fav label::after {
  position: relative;
  content: "";
  border: 1px solid #0f3130;
  height: 16px;
  width: 16px;
  border-radius: 3px;
  margin-right: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 3px;
  padding-right: 2px;
}
.add-fav label:has(input:checked)::after {
  background-color: #ff5e00;
  border: 1px solid #ff5e00;
  content: "\f633";
  font-family: bootstrap-icons !important;
  color: white;
}

.carousel-control-prev,
.carousel-control-next {
  width: 48px;
  height: 48px;
  top: 50%;
  transform: translateY(-50%);
  background-color: #0f2e2e;
  border-radius: 50%;
  opacity: 1;
  z-index: 10;
}

.carousel-control-prev {
  left: -24px; /* half-width of button outside image */
}

.carousel-control-next {
  right: -24px;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  background-size: 70% 70%;
  background-color: transparent;
  filter: invert(1); /* makes icon white */
}

section.hero_banner .nav {
  font-weight: 400;
  font-size: 20px;
  line-height: 60px;
  color: #107A6D;
  align-items: center;
}
section.hero_banner .nav a {
  color: #107A6D;
  text-decoration: none;
  border-bottom: 1px solid #107A6D;
  align-items: center;
  line-height: 30px;
}
section.hero_banner .container {
  border-radius: 20px;
  background-color: #022D26;
  color: white;
  padding: 0 0px;
  margin-top: 28px;
  margin-bottom: 28px;
  overflow: hidden;
}
section.hero_banner .container .row {
  position: relative;
}
section.hero_banner .container .row.hp {
  min-height: 550px;
}
section.hero_banner .container .row > div:first-child {
  padding-left: 60px;
  padding-top: 50px;
  padding-bottom: 50px;
}
section.hero_banner .container .row > div:last-child {
  height: 100%;
  position: absolute;
  right: 0;
  top: 0;
}
section.hero_banner .container .row > div:last-child img:not(.mobile) {
  height: 100%;
  max-width: unset;
  width: auto;
  float: right;
}
section.hero_banner .container .row > div:last-child img.mobile {
  display: none;
}
section.hero_banner h2 {
  font-weight: 600;
  font-size: 56px;
  white-space: nowrap;
  letter-spacing: 3px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  user-select: none;
}
section.hero_banner h3 {
  font-weight: 300;
  letter-spacing: 2px;
  user-select: none;
}

.ai-highlight {
  letter-spacing: 6px;
  font-weight: 700;
  font-size: 90px;
  text-shadow: 0 0 1px #A2F2FA, 0 0 10px #A2F2FA;
  margin-right: 10px;
  margin-top: -15px;
}

section.hero_banner_compare .container {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

@media (max-width: 992px) {
  section.hero_banner .container .row > div:last-child {
    margin-right: -12%;
  }
  section.hero_banner h2 {
    font-size: 38px;
  }
  section.hero_banner h3 {
    font-size: 28px;
  }
}
@media (max-width: 768px) {
  section.hero_banner .container .row {
    flex-direction: column-reverse;
  }
  section.hero_banner .container .row > div:first-child {
    padding-left: 0px;
    width: min-content;
  }
  section.hero_banner .container .row > div:last-child {
    height: auto;
    position: relative;
    margin-right: 0%;
  }
  section.hero_banner .container .row > div:last-child img.mobile {
    display: initial;
    width: 100%;
    height: auto;
  }
  section.hero_banner .container .row > div:last-child img:not(.mobile) {
    display: none;
  }
  section.hero_banner h2 {
    font-size: min(8vw, 45px);
    justify-content: center;
  }
  section.hero_banner h3 {
    font-size: min(6vw, 28px);
  }
  section.hero_banner a.btn-orange {
    margin: auto;
  }
  section.hero_banner.hero_banner_compare .container, section.hero_banner.hero_banner_blog .container {
    max-width: unset;
  }
  section.hero_banner.hero_banner_compare h2 + div.mb-3.d-flex, section.hero_banner.hero_banner_blog h2 + div.mb-3.d-flex {
    justify-content: center;
  }
}
section.search {
  padding-top: 70px;
  padding-bottom: 120px;
}
section.search .text-center {
  padding-top: 70px;
  background-image: url("../images/section_search_bg.png");
  background-position: top;
  background-repeat: no-repeat;
  background-size: 250px;
}
section.search h2 {
  font-weight: 400 !important;
  letter-spacing: 2px;
  font-size: 50px;
  line-height: 49px;
}
section.search .subtitle {
  color: #ccc;
  font-size: 22px;
  font-weight: 300;
  padding: 0 30px;
}
section.search .tab-menu {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-top: 30px;
}
section.search .tab-menu a {
  color: #107a6d;
  text-decoration: none;
  font-weight: 500;
  font-size: 20px;
}
section.search .tab-menu a.active {
  color: #ff9736;
  border: 2px solid #ff9736;
  padding: 5px 16px;
  border-radius: 20px;
  font-weight: 600;
  background-color: rgba(255, 151, 54, 0.1);
  box-shadow: 0 3px 20px #0f3130;
}
section.search #mySearchSwiper {
  padding: 0 25px;
}
section.search #mySearchSwiper .swiper-button-prev {
  left: 0px;
}
section.search #mySearchSwiper .swiper-button-next {
  right: 0px;
}
section.search #mySearchSwiper .swiper-slide .product-card {
  margin: 0px;
}

section.qna {
  font-family: "Exo", "Microsoft JhengHei";
}
section.qna .container {
  max-width: calc(1080px - 1.5rem);
  border-radius: 20px;
  background-color: #022D26;
  color: white;
  margin-top: 28px;
  margin-bottom: 28px;
}
section.qna .container .row {
  border-radius: 20px;
  overflow: hidden;
  position: relative;
}
section.qna .accordion {
  display: flex;
  flex-direction: column;
  row-gap: 15px;
  --bs-accordion-border-radius: 20px;
  --bs-accordion-inner-border-radius: 20px;
  width: 120%;
}
section.qna .accordion .accordion-item {
  background-color: transparent;
}
section.qna .accordion .accordion-item * {
  font-size: 20px;
}
section.qna .accordion .accordion-item .accordion-header {
  line-height: unset;
}
section.qna .accordion .accordion-item .accordion-header .accordion-button {
  background: rgba(217, 217, 217, 0.1019607843);
  border-radius: var(--bs-accordion-inner-border-radius);
  color: white;
  letter-spacing: 1px;
  font-weight: 700;
  box-shadow: none;
  padding-top: 14px;
  padding-bottom: 12px;
}
section.qna .accordion .accordion-item .accordion-header .accordion-button::after {
  background-image: none;
  content: "+";
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: none;
}
section.qna .accordion .accordion-item .accordion-header .accordion-button:not(.collapsed) {
  background: linear-gradient(96.34deg, #D9743A 41.5%, #CF4C08 85%);
  color: white;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}
section.qna .accordion .accordion-item .accordion-header .accordion-button:not(.collapsed)::after {
  background-image: none;
  content: "-";
  color: white;
}
section.qna .accordion .accordion-item .accordion-collapse {
  background-color: transparent;
  letter-spacing: 1px;
}
section.qna .accordion .accordion-item .accordion-collapse .accordion-body {
  background: rgba(217, 217, 217, 0.1019607843);
  color: #ccc;
  border-bottom-left-radius: var(--bs-accordion-inner-border-radius);
  border-bottom-right-radius: var(--bs-accordion-inner-border-radius);
}
section.qna .view-more-btn {
  margin-top: 32px;
}
section.qna .qna-left {
  padding-left: 60px;
  z-index: 2;
  padding-top: 70px;
  padding-bottom: 60px;
  min-height: 780px;
}
section.qna .qna-left > h3 {
  font-size: 50px;
  padding-bottom: 27px;
  font-weight: 300;
  position: relative;
  display: flex;
  flex-direction: row;
}
section.qna .qna-left > h3 > div {
  white-space: nowrap;
}
section.qna .qna-left > h3::before {
  content: "";
  position: absolute;
  background: #2DADA3;
  width: 85px;
  height: 5px;
  border-radius: 10px;
  bottom: 0;
  left: 0;
}
section.qna .qna-right {
  padding: 0;
  height: 100%;
  position: absolute;
  right: 0;
  z-index: 1;
}
section.qna .qna-right img {
  object-fit: cover;
  margin-right: -18%;
}
section.qna .qna-right img:not(.mobile) {
  filter: drop-shadow(-3px 0px 1px #FCFDE6) drop-shadow(5px 0px 11px #FCFDE6);
  float: right;
  height: 100%;
}
section.qna .qna-right img.mobile {
  display: none;
}

@media (max-width: 992px) {
  section.qna {
    margin-left: 12px;
    margin-right: 12px;
  }
  section.qna > .container > .row {
    min-height: 900px;
    align-items: start !important;
  }
  section.qna .qna-left {
    width: 100%;
    padding-right: 60px;
  }
  section.qna .qna-left > h3 {
    flex-direction: column;
    row-gap: 12px;
  }
  section.qna .qna-left #qaAccordion {
    width: 100%;
  }
  section.qna .qna-left .view-more-btn {
    margin: 32px auto 0px;
  }
  section.qna .qna-right {
    height: auto;
    width: 100%;
    position: relative;
    margin-top: -33%;
  }
  section.qna .qna-right img {
    filter: drop-shadow(0px -3px 1px #FCFDE6) drop-shadow(0px 5px 11px #FCFDE6);
    margin-right: 0%;
    margin-bottom: -30%;
  }
  section.qna .qna-right img:not(.mobile) {
    display: none;
  }
  section.qna .qna-right img.mobile {
    display: initial;
    width: 100%;
  }
}
@media (max-width: 576px) {
  section.qna .qna-left {
    padding: 60px 30px 60px;
  }
  section.qna .qna-left > h3 > div:last-child {
    font-size: min(9.5vw, 44px);
  }
}
section.activity {
  font-family: "Exo", "Microsoft JhengHei";
  padding-top: 70px;
  padding-bottom: 120px;
}
section.activity h2 {
  font-weight: 400;
  font-size: 50px;
  line-height: 49px;
  letter-spacing: 2px;
}
section.activity .container.py-5 {
  position: relative;
}
section.activity .container.py-5 > div:first-of-type {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 20px;
}
section.activity .activity-left .event-card {
  position: relative;
  height: calc(100% - 20px);
  aspect-ratio: 1/1.2;
}
section.activity .activity-left .event-card .event-img {
  height: calc(100% - 100px);
}
section.activity .activity-left .event-card .event-location {
  margin-top: -6px;
}
section.activity .activity-left .event-card .event-info {
  background: #0F3130;
  height: 180px;
  position: absolute;
  width: 100%;
  z-index: 2;
  bottom: 0;
}
section.activity .activity-right .event-location {
  margin-top: 0px;
}
section.activity .activity-right .event-img-container {
  width: 33%;
}
section.activity .activity-right .event-img-container .event-img {
  aspect-ratio: 1/1;
}
section.activity .activity-right .left-copy {
  display: none !important;
}
section.activity .event-card {
  background: #0F3130;
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 20px;
}
section.activity .event-card .event-img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}
section.activity .event-card .event-img.coming-soon {
  background: linear-gradient(0deg, #c5c5c5, #107a6d);
}
section.activity .event-card .event-info {
  padding-left: 22px;
  padding-bottom: 15px;
}
section.activity .event-card .event-info .event-date-price {
  display: flex;
  justify-content: space-between;
  align-items: center;
  justify-content: end;
}
section.activity .event-card .event-info .event-date-price > * {
  font-size: 18px;
  padding: 4px 16px;
  color: white;
}
section.activity .event-card .event-info .event-date-price .event-meta {
  background: linear-gradient(96.34deg, #D9743A 41.5%, #CF4C08 85%);
  border-bottom-left-radius: 15px;
}
section.activity .event-card .event-info .event-date-price .event-tag {
  background-color: #107A6D;
}
section.activity .event-card .event-info:has(.event-title:only-child) {
  padding-bottom: 0px;
  display: flex;
  align-items: center;
}
section.activity .event-card .event-location {
  color: #2DADA3;
  font-size: 22px;
  margin-bottom: 4px;
}
section.activity .event-card .event-title {
  font-size: 30px;
  font-weight: bold;
  margin: -5px 0;
  color: #fff;
}
section.activity .event-card .read-more {
  color: #fff;
  font-size: 20px;
}
section.activity .text-center > a {
  margin: auto;
}
section.activity .activity-mobile-swiper-element {
  display: none;
}

@media (max-width: 1200px) {
  section.activity .container.py-5 > div:first-of-type {
    grid-template-columns: 1fr 1.5fr;
    column-gap: 20px;
  }
  section.activity .container.py-5 ::-webkit-scrollbar {
    display: none;
  }
  section.activity .activity-left .event-card .event-location {
    margin-top: 10px;
  }
  section.activity .activity-right .event-card .event-location {
    margin-top: 10px;
  }
}
@media (max-width: 768px) {
  section.activity .container.py-5 > div:first-of-type {
    grid-template-columns: 1fr;
    grid-template-rows: 1fr;
    column-gap: 20px;
    overflow-x: scroll;
    scroll-behavior: smooth;
  }
  section.activity .activity-left {
    display: none;
  }
  section.activity .activity-right {
    display: grid;
    grid-template-columns: repeat(var(--count), calc(100svw - 40px));
    margin-bottom: 30px;
  }
  section.activity .activity-right .event-card {
    width: 460px;
    margin: auto;
    aspect-ratio: 57/68;
    flex-direction: column;
    position: relative;
  }
  section.activity .activity-right .event-card .event-img-container {
    width: 100%;
  }
  section.activity .activity-right .event-card .event-info {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 45%;
    width: 100%;
    background: #0F3130;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  section.activity .activity-right .event-card .event-date-price {
    position: absolute;
    width: 100%;
    height: 35px;
    top: 0;
    left: 0;
    margin-top: -35px;
    justify-content: center;
    align-items: flex-end;
  }
  section.activity .activity-right .event-card .event-date-price .event-meta {
    border-top-left-radius: 15px;
    border-bottom-left-radius: 0px;
    border-top-right-radius: 15px;
  }
  section.activity .activity-right .event-card .event-date-price .event-tag {
    border-top-right-radius: 15px;
  }
  section.activity .activity-right .event-card.left-copy {
    display: flex !important;
  }
  section.activity .activity-mobile-swiper-element {
    display: block;
  }
  section.activity .activity-mobile-swiper-element.element-container {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  section.activity .activity-mobile-swiper-element.element-container .button-prev,
  section.activity .activity-mobile-swiper-element.element-container .button-next {
    background-color: #f07125;
    color: #fff;
    width: 50px;
    height: 50px;
    border-radius: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
  }
  section.activity .activity-mobile-swiper-element.element-container .button-prev::after,
  section.activity .activity-mobile-swiper-element.element-container .button-next::after {
    font-family: swiper-icons;
    font-size: 24px;
    text-transform: none !important;
    letter-spacing: 0;
    font-variant: initial;
    line-height: 1;
  }
  section.activity .activity-mobile-swiper-element.element-container .button-prev.button-disabled,
  section.activity .activity-mobile-swiper-element.element-container .button-next.button-disabled {
    opacity: 0.35;
    cursor: auto;
    pointer-events: none;
  }
  section.activity .activity-mobile-swiper-element.element-container .button-next::after {
    content: "next";
  }
  section.activity .activity-mobile-swiper-element.element-container .button-prev::after {
    content: "prev";
  }
  section.activity .activity-mobile-swiper-element.element-container .fake-click-element {
    flex-grow: 1;
    height: 80%;
    margin-top: -9.5%;
  }
  section.activity .activity-mobile-swiper-element.element-container .page-indicator {
    position: absolute;
    width: 100%;
    display: flex;
    height: fit-content;
    bottom: 2rem;
    left: 0;
    justify-content: center;
    column-gap: 10px;
  }
  section.activity .activity-mobile-swiper-element.element-container .page-indicator label input {
    width: 0px;
    height: 0px;
    overflow: hidden;
  }
  section.activity .activity-mobile-swiper-element.element-container .page-indicator label .indicator {
    width: 10px;
    height: 10px;
    border-radius: 5px;
    background-color: rgba(255, 255, 255, 0.3333333333);
    cursor: pointer;
  }
  section.activity .activity-mobile-swiper-element.element-container .page-indicator label input:checked ~ .indicator {
    background-color: white;
  }
}
@media (max-width: 576px) {
  section.activity .container.py-5 > div:first-of-type {
    position: relative;
  }
  section.activity .activity-right {
    grid-template-columns: repeat(var(--count), var(--card-container-width));
  }
  section.activity .activity-right .event-card {
    width: calc(var(--card-container-width) - 54px);
  }
  section.activity .activity-right .event-card .event-info .event-date-price > * {
    font-size: 4vw;
  }
  section.activity .activity-right .event-card .event-info .event-location {
    font-size: 5.5vw;
  }
  section.activity .activity-right .event-card .event-info .event-title {
    font-size: 7.5vw;
  }
  section.activity .activity-right .event-card .event-info .read-more {
    font-size: 4.2vw;
  }
}
@media (max-width: 400px) {
  section.activity .activity-right .event-card .event-info .event-date-price > * {
    font-size: 3.5vw;
  }
  section.activity .activity-right .event-card .event-info .event-title {
    font-size: 7vw;
  }
}
section.brand {
  padding-top: 70px;
  padding-bottom: 120px;
}
section.brand h2 {
  font-weight: 400;
  font-size: 50px;
  line-height: 49px;
}
section.brand .brand_container {
  background-color: #d9f0ea;
  padding: 20px;
  overflow: hidden;
}
section.brand .brand_container:hover .brand-group {
  animation-play-state: paused;
}
section.brand .brand-group {
  will-change: transform;
  width: fit-content;
  gap: 20px;
  padding-right: 20px;
  grid-auto-flow: column;
  animation: scrolling 25s linear infinite;
  grid-template-columns: repeat(10, 220px);
}
section.brand .brand-card {
  background-color: white;
  border-radius: 12px;
  padding: 15px 20px;
  text-align: center;
  transition: all 0.3s ease;
}
section.brand .brand-card img {
  max-height: 80px;
  max-width: 100%;
}
section.brand .brand-card.active {
  border: 2px solid #007bff;
}

@keyframes scrolling {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}
section.service {
  padding-top: 70px;
  padding-bottom: 120px;
  display: flex;
  align-items: center;
  min-height: 100svh;
  position: relative;
}
section.service .service-mobile-swiper-element {
  display: none;
}
section.service .mask-background {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  opacity: 55%;
  mix-blend-mode: hard-light;
  background-image: url("../images/service-background-mask.jpg");
  mask-image: linear-gradient(0deg, transparent 0%, rgba(11, 73, 65, 0.6) 100%);
  z-index: -1;
  transform: rotate(180deg) scaleX(-1);
}
section.service h2 {
  font-weight: 400 !important;
  font-size: 50px;
  line-height: 49px;
  letter-spacing: 2px;
}
section.service .subtitle {
  padding: 0 15px;
  min-width: 500px;
  color: #ccc;
  font-size: 24px;
  font-weight: 300;
  text-align: left;
}
section.service .service-card {
  background-color: #e7f2ee;
  border-radius: 180px 180px 16px 16px;
  overflow: hidden;
  text-align: center;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  width: 280px;
  aspect-ratio: 35/51;
  display: grid;
  grid-template-rows: calc(100% - 130px) 130px;
  margin: auto;
}
section.service .service-card .service-top {
  border-top: solid 5px #ff6f3c;
  border-radius: 180px 180px 0px 0px;
  display: flex;
  align-items: center;
  justify-content: space-around;
  flex-direction: column;
  padding-top: 50px;
}
section.service .service-card .service-top .service-icon {
  font-size: 40px;
  margin-top: 30px;
  margin-bottom: 15px;
}
section.service .service-card .service-top .service-header {
  font-weight: bold;
  margin-bottom: 10px;
  font-weight: 600;
  font-size: 30px;
  color: #0F3130;
}
section.service .service-card .service-bottom {
  background: linear-gradient(180deg, #F07125 50%, #CF4C08 100%);
  color: white;
  font-weight: 300;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: left;
  font-size: 20px;
  max-height: 130px;
  padding: 20px 15px;
}

@media (max-width: 992px) {
  section.service .service-card {
    width: 230px;
    grid-template-rows: calc(100% - 110px) 110px;
  }
  section.service .service-card .service-top {
    padding-top: 20px;
  }
  section.service .service-card .service-top .service-header {
    font-size: 26px;
  }
  section.service .service-card .service-bottom {
    font-size: 18px;
    max-height: 110px;
    padding: 20px 15px;
  }
}
@media (max-width: 768px) {
  section.service ::-webkit-scrollbar {
    display: none;
  }
  section.service .service_container {
    overflow-x: scroll;
    scroll-behavior: smooth;
    position: relative;
  }
  section.service .service_container > .row {
    flex-wrap: nowrap;
    justify-content: unset !important;
  }
  section.service .service_container > .row > .col-12 {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
  }
  section.service .service-mobile-swiper-element {
    display: block;
  }
  section.service .service-mobile-swiper-element.element-container {
    position: sticky;
    width: 100%;
    height: 100%;
    left: 0;
    margin-top: -350px;
    top: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  section.service .service-mobile-swiper-element.element-container .button-prev,
  section.service .service-mobile-swiper-element.element-container .button-next {
    background-color: #f07125;
    color: #fff;
    width: 50px;
    height: 50px;
    border-radius: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
  }
  section.service .service-mobile-swiper-element.element-container .button-prev::after,
  section.service .service-mobile-swiper-element.element-container .button-next::after {
    font-family: swiper-icons;
    font-size: 24px;
    text-transform: none !important;
    letter-spacing: 0;
    font-variant: initial;
    line-height: 1;
  }
  section.service .service-mobile-swiper-element.element-container .button-prev.button-disabled,
  section.service .service-mobile-swiper-element.element-container .button-next.button-disabled {
    opacity: 0.35;
    cursor: auto;
    pointer-events: none;
  }
  section.service .service-mobile-swiper-element.element-container .button-next::after {
    content: "next";
  }
  section.service .service-mobile-swiper-element.element-container .button-prev::after {
    content: "prev";
  }
  section.service .service-mobile-swiper-element.element-container .fake-click-element {
    flex-grow: 1;
    max-width: 230px;
    height: 350px;
    margin: auto;
    display: flex;
    cursor: pointer;
  }
  section.service .service-mobile-swiper-element.element-container .page-indicator {
    position: absolute;
    width: 100%;
    display: flex;
    height: fit-content;
    bottom: -40px;
    left: 0;
    justify-content: center;
    column-gap: 10px;
  }
  section.service .service-mobile-swiper-element.element-container .page-indicator label input {
    width: 0px;
    height: 0px;
    overflow: hidden;
  }
  section.service .service-mobile-swiper-element.element-container .page-indicator label .indicator {
    width: 10px;
    height: 10px;
    border-radius: 5px;
    background-color: rgba(255, 255, 255, 0.3333333333);
    cursor: pointer;
  }
  section.service .service-mobile-swiper-element.element-container .page-indicator label input:checked ~ .indicator {
    background-color: white;
  }
}
@media (max-width: 576px) {
  section.service p.subtitle {
    min-width: unset;
    width: 100%;
    padding: 0 7.5%;
  }
}
section.store {
  font-family: "Exo", "Microsoft JhengHei";
  padding-top: 70px;
  padding-bottom: 120px;
}
section.store h2 {
  font-weight: 400 !important;
  font-size: 50px;
  line-height: 49px;
  letter-spacing: 2px;
}
section.store .nav-tabs {
  margin-bottom: 0;
  border: none;
  box-shadow: none;
  flex-wrap: nowrap;
}
section.store .nav-tabs .nav-item {
  background-color: #ff6f3c;
  line-height: 50px;
  font-weight: 300;
  font-size: 25px;
  text-align: center;
  --tab-br: 15px;
}
section.store .nav-tabs .nav-item:first-child {
  border-top-left-radius: var(--tab-br);
}
section.store .nav-tabs .nav-item:last-child {
  border-top-right-radius: var(--tab-br);
}
section.store .nav-tabs .nav-item .nav-link {
  color: white;
  background-color: #ff6f3c;
  border: none;
  border-radius: var(--tab-br) var(--tab-br) 0 0;
  padding-left: 70px;
  padding-right: 70px;
  white-space: nowrap;
}
section.store .nav-tabs .nav-item .nav-link.active {
  background-color: #093e37;
  color: white;
}
section.store .tab-content {
  background-color: #093e37;
  border-radius: 16px;
  padding: 20px;
  margin-top: -1px;
  position: relative;
  border-bottom: 3px solid #FCFDE6;
}
section.store .tab-content::before {
  content: "";
  width: calc(100% - 32px);
  height: 2px;
  left: 16px;
  bottom: -2.5px;
  position: absolute;
  background-color: #FCFDE6;
  box-shadow: 0 0 12px #FCFDE6;
}
section.store .tab-content::after {
  content: "";
  width: 70%;
  left: 15%;
  bottom: 10px;
  position: absolute;
  aspect-ratio: 6/1;
  border-radius: 50%;
  box-shadow: 0 0 110px #F49322;
  z-index: -1;
}
section.store .tab-content .info-right {
  display: grid;
  grid-template-rows: 80px 60px 60px 100px;
  padding-left: 50px;
}
section.store .tab-content .info-right h4 {
  font-size: 40px;
  font-weight: 300;
  position: relative;
  margin-bottom: 0;
  white-space: nowrap;
}
section.store .tab-content .info-right h4::before {
  content: "";
  position: absolute;
  background: #2DADA3;
  width: 85px;
  height: 5px;
  border-radius: 10px;
  top: 56px;
  left: 0;
}
section.store .tab-content .info-right .info-text {
  display: flex;
  align-items: center;
  font-size: 27px;
  font-weight: 300;
}
section.store .tab-content .info-right .info-text .info-icon {
  margin-right: 16px;
  color: #F49322;
}
section.store .tab-content > .tab-pane > .row {
  padding: 20px;
}
section.store .store-info img {
  width: 100%;
  border-radius: 12px;
}
section.store .store-link {
  color: #5de0d2;
  text-decoration: none;
}
section.store .store-link:hover {
  text-decoration: underline;
}
section.store #storeTabContent {
  color: #fff;
}

@media (max-width: 992px) {
  section.store .nav-tabs {
    width: calc(100% - 32px);
    margin-left: 16px;
  }
  section.store .nav-tabs .nav-item {
    width: 50%;
    line-height: 50px;
  }
  section.store .nav-tabs .nav-item .nav-link {
    width: 100%;
    padding: 0;
    font-size: min(4.1vw, 20px);
  }
  section.store .tab-content .tab-pane > .row {
    flex-direction: column;
  }
  section.store .tab-content .tab-pane > .row > div {
    width: 100%;
  }
  section.store .tab-content .tab-pane > .row > div .store-info img {
    max-height: 300px;
    object-fit: cover;
  }
  section.store .tab-content .tab-pane > .row > div.info-right {
    margin-top: 60px;
    min-height: 320px;
  }
  section.store .tab-content .tab-pane > .row > div.info-right h4 {
    font-size: 30px;
  }
  section.store .tab-content .tab-pane > .row > div.info-right h4::before {
    top: 49px;
  }
  section.store .tab-content .tab-pane > .row > div.info-right .info-text {
    font-size: 17px;
  }
}
@media (max-width: 576px) {
  section.store .tab-content .tab-pane > .row > div.info-right {
    min-height: 300px;
    padding: 0;
    margin: 30px 20px;
    max-width: calc(100% - 40px);
  }
  section.store .tab-content .tab-pane > .row > div.info-right h4 {
    font-size: min(6.3vw, 30px);
  }
  section.store .tab-content .tab-pane > .row > div.info-right h4::before {
    top: 49px;
  }
  section.store .tab-content .tab-pane > .row > div.info-right .info-text {
    font-size: 17px;
  }
}
section.product_compare .container {
  background-color: #fff;
  border-radius: 20px;
}
section.product_compare div.card img {
  max-width: 205px;
}
section.product_compare .cd-products-comparison-table .product .top-info, section.product_compare .cd-products-comparison-table .features .top-info {
  height: 390px;
}
section.product_compare .cd-products-comparison-table .product .top-info .product-icons, section.product_compare .cd-products-comparison-table .features .top-info .product-icons {
  justify-content: center;
  flex-wrap: nowrap;
  column-gap: 6px;
  --bs-gutter-x: 0px;
}
section.product_compare .cd-products-comparison-table .product .top-info .product-icons img, section.product_compare .cd-products-comparison-table .features .top-info .product-icons img {
  width: 45px;
  height: 45px;
}
section.product_compare .cd-products-comparison-table .product .top-info .btn-orange, section.product_compare .cd-products-comparison-table .features .top-info .btn-orange {
  margin: auto;
}
section.product_compare .cd-products-comparison-table .product .top-info h4, section.product_compare .cd-products-comparison-table .features .top-info h4 {
  margin-top: 10px;
  font-size: 2rem;
}

@media only screen and (min-width: 1170px) {
  section.product_compare .cd-products-comparison-table .cd-products-table.top-fixed .product .top-info, section.product_compare .cd-products-comparison-table .cd-products-table.top-fixed .features .top-info {
    margin-top: 82px;
    height: 260px;
  }
  section.product_compare .cd-products-comparison-table .cd-products-table.top-fixed .product .top-info > img:first-child, section.product_compare .cd-products-comparison-table .cd-products-table.top-fixed .features .top-info > img:first-child {
    margin-top: 10px;
  }
  section.product_compare .cd-products-comparison-table .cd-products-table.top-fixed .product .top-info .product-icons, section.product_compare .cd-products-comparison-table .cd-products-table.top-fixed .features .top-info .product-icons {
    scale: 0.8;
    margin-bottom: -3px !important;
  }
  section.product_compare .cd-products-comparison-table .cd-products-table.top-fixed .product .top-info .product-icons img, section.product_compare .cd-products-comparison-table .cd-products-table.top-fixed .features .top-info .product-icons img {
    transform: none;
  }
  section.product_compare .cd-products-comparison-table .cd-products-table.top-fixed .product .top-info h3, section.product_compare .cd-products-comparison-table .cd-products-table.top-fixed .features .top-info h3 {
    margin-top: 15px;
  }
  section.product_compare .cd-products-comparison-table .cd-products-table.top-fixed .product .top-info .btn-orange, section.product_compare .cd-products-comparison-table .cd-products-table.top-fixed .features .top-info .btn-orange {
    margin-top: -120px !important;
    scale: 0.8;
  }
  section.product_compare .cd-products-comparison-table .cd-products-table.top-fixed .product .top-info .btn-orange .btn-orange, section.product_compare .cd-products-comparison-table .cd-products-table.top-fixed .features .top-info .btn-orange .btn-orange {
    margin-bottom: -6px !important;
  }
  section.product_compare .cd-products-comparison-table .cd-products-table.top-fixed .product .top-info h4, section.product_compare .cd-products-comparison-table .cd-products-table.top-fixed .features .top-info h4 {
    margin-top: 3px;
  }
}
@media only screen and (max-width: 1170px) {
  section.product_compare .cd-products-comparison-table .product .top-info, section.product_compare .cd-products-comparison-table .features .top-info {
    height: 320px;
  }
  section.product_compare .cd-products-comparison-table .product .top-info .btn-orange, section.product_compare .cd-products-comparison-table .features .top-info .btn-orange {
    width: 150%;
    font-size: 18px;
    margin-left: -25%;
    white-space: nowrap;
    height: 40px;
  }
  section.product_compare .cd-products-comparison-table .product .top-info .product-icons img, section.product_compare .cd-products-comparison-table .features .top-info .product-icons img {
    width: 35px;
    height: 35px;
  }
}
.compare-popup {
  position: fixed;
  bottom: 0;
  right: 20px;
  width: 270px;
  border-radius: 16px;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
  z-index: 2050;
  overflow: hidden;
}
.compare-popup.active .compare-popup-wrapper, .compare-popup.active .compare-btn-wrapper {
  display: block;
}

.compare-header {
  background: linear-gradient(to right, #ff6f3c, #ff7920);
  color: white;
  font-weight: bold;
  padding: 10px 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top-left-radius: 16px;
  border-top-right-radius: 16px;
  cursor: pointer;
}

.compare-item {
  display: flex;
  align-items: center;
  padding: 10px 15px;
  border-bottom: 1px solid #eee;
  background-color: #fff;
}

.compare-item img {
  width: 40px;
  height: auto;
  margin-right: 10px;
}

.compare-item .remove-btn {
  margin-left: auto;
  font-size: 1.2rem;
  color: #333;
  cursor: pointer;
}

.compare-popup-wrapper {
  display: none;
}

.compare-btn-wrapper {
  background-color: #fff;
  padding: 15px 0;
  display: none;
}

.compare-btn {
  background: linear-gradient(to right, #ff8126, #e65500);
  color: white;
  text-align: center;
  margin: 0 auto;
  padding: 12px;
  width: 226px;
  height: 50px;
  font-weight: bold;
  border-radius: 50px;
  border: 1.5px solid #FCFDE6;
  cursor: pointer;
}

.compare-header:hover,
.compare-btn:hover {
  background: linear-gradient(to right, #e65a00, #cc4400);
}

.compare-popup .template {
  display: none;
}

.custom-modal-width {
  max-width: 1080px;
  width: -webkit-fill-available;
}

.modal-content {
  background-color: #C0D4C9;
  padding-bottom: 62px;
  border-radius: 20px;
}
.modal-content h2 {
  font-family: "Exo";
  font-weight: 500 !important;
  font-size: 30.94px;
  line-height: 50px;
  letter-spacing: 2px;
  color: #0f3130;
}
.modal-content p.title {
  font-family: "Exo";
  font-weight: 700;
  font-size: 24px;
  line-height: 35px;
  letter-spacing: 0;
  color: #0f3130;
}
.modal-content p.subtitle {
  font-family: "Exo";
  font-weight: 400;
  font-size: 20px;
  line-height: 35px;
  letter-spacing: 0;
  color: #0f3130;
}
.modal-content p.text-muted.subtitle {
  font-weight: 300;
  color: #0f3130;
  max-width: 80%;
}
.modal-content h5.title {
  font-family: "Exo";
}
.modal-content .d-grid {
  margin-top: 20px;
}
.modal-content .modal-left {
  padding-left: 65px;
}
.modal-content .modal-left img {
  border: solid;
  border-bottom-right-radius: 20px;
  border-bottom-left-radius: 20px;
  border-width: 2px;
  border-color: #C5FFFD;
  border-top: none;
}
.modal-content .modal-right {
  position: relative;
}
.modal-content .modal_bottom_line_bg {
  position: absolute;
  width: calc(100% - 6rem);
  height: 3px;
  bottom: 0;
  background-color: #58b8b3;
  margin: 0;
  border: none;
  opacity: 1;
}
.modal-content .modal_bottom_line_50 {
  width: calc((100% - 6rem) / 2);
  background-color: #107A6D;
}
.modal-content button.rounded-pill {
  width: 200px;
  height: 70px;
  font-family: "Exo";
}
.modal-content p.text-muted.subtitle:has(~ .next-button-row) + div {
  flex-grow: 1;
  align-items: anchor-center;
}
.modal-content .form-control.rounded-pill {
  background: rgba(255, 255, 255, 0.3333333333);
  max-width: 460px;
  height: 70px;
  padding: 10px 31px !important;
  border: 1px solid #0f3130;
}
.modal-content .form-check {
  position: relative;
  padding-left: 36px;
}
.modal-content .form-check .form-check-input {
  width: 0;
  height: 0;
  overflow: hidden;
  opacity: 0;
}
.modal-content .form-check .form-check-label {
  letter-spacing: 1px;
  font-size: 18px;
}
.modal-content .form-check .form-check-label::before {
  content: "";
  width: 28px;
  height: 28px;
  left: 0;
  border-radius: 20px;
  border: 2px solid #0f3130;
  background: transparent;
  position: absolute;
}
.modal-content .form-check .form-check-input:checked ~ .form-check-label::after {
  content: "";
  font-family: bootstrap-icons !important;
  width: 22px;
  height: 22px;
  left: 3px;
  top: 3px;
  border-radius: 20px;
  background-color: #0f3130;
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
}

#carSeatSelectorModalPage1 h2,
#carSeatSelectorModalPage2 h2 {
  margin-bottom: 74px;
}

#carSeatSelectorModalPageResultListing .modal-content button.rounded-pill {
  width: 168px;
  height: 47px;
  border: none;
}
#carSeatSelectorModalPageResultListing .swiper-button-next,
#carSeatSelectorModalPageResultListing .swiper-button-prev {
  border: 2px solid #0f3130;
}
#carSeatSelectorModalPageResultListing .swiper-button-next::after,
#carSeatSelectorModalPageResultListing .swiper-button-prev::after {
  color: #0f3130;
}
#carSeatSelectorModalPageResultListing .product-card.selected {
  border: 2px solid #0f3130;
}
#carSeatSelectorModalPageResultListing .product-card .product-icons {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  overflow: hidden;
}

#carSeatSelectorModalPageResultDetail .product-title {
  font-weight: 400;
}
#carSeatSelectorModalPageResultDetail .product-icons {
  display: grid;
  grid-template-columns: repeat(auto-fit, 55px);
  overflow: hidden;
  column-gap: 12px;
}
#carSeatSelectorModalPageResultDetail .product-icons img {
  width: 100%;
  height: auto;
}
#carSeatSelectorModalPageResultDetail .carousel-control-next-icon,
#carSeatSelectorModalPageResultDetail .carousel-control-prev-icon {
  filter: none !important;
}
#carSeatSelectorModalPageResultDetail .modal-content button.rounded-pill {
  width: 178px;
  height: 50px;
  border: 1.5px solid #FCFDE6;
}
#carSeatSelectorModalPageResultDetail .modal-content {
  padding-top: 47px;
  padding-bottom: 62px;
}

.modal-content .btn-close {
  z-index: 100;
}

@media (max-width: 992px) {
  .modal-dialog {
    max-width: unset;
  }
  .modal-dialog .modal-body .col-md-5.modal-left {
    display: none;
  }
  .modal-dialog .modal-body .col-md-7.modal-right {
    width: 100%;
  }
}
@media (max-width: 576px) {
  .modal-dialog .modal-body .row .modal-right h2.fw-bold {
    font-size: 26px;
    line-height: unset;
    margin-bottom: 30px !important;
  }
  .modal-dialog .modal-body .text-left.mb-5 {
    margin-bottom: 10px !important;
  }
  .modal-dialog .modal-body .text-left h2.fw-bold {
    font-size: 26px;
    line-height: unset;
    margin-bottom: 0px !important;
  }
  .modal-dialog .modal-body #myModalSwiper {
    margin-top: 10px !important;
    padding-top: 0;
  }
  .modal-dialog .modal-body #myModalSwiper p.text-muted.subtitle {
    top: 0 !important;
    position: relative !important;
    margin-bottom: 0;
    max-width: 100%;
  }
  .modal-dialog .modal-body #myModalSwiper .swiper-button-next,
  .modal-dialog .modal-body #myModalSwiper .swiper-button-prev {
    position: relative;
  }
  .modal-dialog .modal-body #myModalSwiper .product-card > img {
    margin-top: unset;
    margin-bottom: unset;
    filter: unset;
  }
  .modal-dialog .swiper-arrow-wrapper {
    display: flex;
    justify-content: center;
    flex-direction: row-reverse;
    height: 80px;
    column-gap: 20px;
  }
  .modal-dialog .swiper-arrow-wrapper > div {
    right: unset;
    left: unset;
  }
  #carSeatSelectorModalPageResultDetail .product-title {
    font-weight: 600;
    font-size: 26px;
    line-height: normal;
  }
}
footer {
  background-color: #DA762A;
}

.header {
  height: 82px;
  position: fixed;
  top: 40px;
  left: 0;
  margin-left: 50%;
  transform: translateX(-50%);
  width: 100%;
  z-index: 99;
}
.header.scroll > .container {
  background-color: #0F3130;
  border-top-left-radius: 0px;
  border-top-right-radius: 0px;
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
  margin-top: -40px;
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.4);
}
.header.scroll > .container .col-md-6 .icon-button.menu ~ .nav-menu {
  top: -40px;
}
.header > .container {
  width: 100%;
  margin: auto;
  margin-top: 0;
  justify-content: space-between;
  padding-top: 10px;
  padding-bottom: 10px;
  transition: all 0.3s ease;
  border-radius: 20px;
  flex-wrap: nowrap;
}
.header > .container .col-md-3 {
  margin-left: 24px;
  max-height: 62px;
  width: fit-content;
  z-index: 99;
}
.header > .container .col-md-3 img {
  max-height: 62px;
}
.header > .container .col-md-6 {
  flex-wrap: nowrap;
  justify-content: end;
  align-items: center;
  column-gap: 6px;
  margin-right: 24px;
}
.header > .container .col-md-6 .icon-button {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  cursor: pointer;
  position: relative;
}
.header > .container .col-md-6 .icon-button i {
  font-size: 24px;
  color: white;
}
.header > .container .col-md-6 .icon-button:hover {
  background: rgba(255, 255, 255, 0.2);
  border-radius: 20px;
}
.header > .container .col-md-6 .icon-button.cart .item-count {
  position: absolute;
  top: 0;
  right: 0;
  background-color: #b00b0b;
  color: white;
  font-family: "Exo";
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 20px;
  scale: 1;
  font-size: 14px;
  font-weight: 600;
}
.header > .container .col-md-6 .icon-button.cart .item-count.empty {
  scale: 0;
}
.header > .container .col-md-6 .icon-button.menu i {
  z-index: 99;
}
.header > .container .col-md-6 .icon-button.menu ~ .nav-menu {
  position: absolute;
  top: 0;
  right: calc(24px + 0.75rem);
  width: 320px;
  background: linear-gradient(180.06deg, rgba(218, 93, 10, 0.91) 37.61%, rgba(185, 68, 17, 0.91) 93.58%);
  margin: 0;
  padding: 0;
  transition: all 0.3s ease;
  scale: 1;
  border-radius: 0 20px 0 0;
  transform-origin: top right;
  opacity: 1;
}
.header > .container .col-md-6 .icon-button.menu ~ .nav-menu.closed {
  border-radius: 20px;
  scale: 0;
  opacity: 0;
  transition: all 0.3s ease;
}
.header > .container .col-md-6 .icon-button.menu ~ .nav-menu.closed li, .header > .container .col-md-6 .icon-button.menu ~ .nav-menu.closed a {
  color: transparent;
}
.header > .container .col-md-6 .icon-button.menu ~ .nav-menu ul {
  list-style-type: none;
  margin-bottom: 0;
  padding-left: 0;
  margin: 100px 30px 40px;
}
.header > .container .col-md-6 .icon-button.menu ~ .nav-menu ul li, .header > .container .col-md-6 .icon-button.menu ~ .nav-menu ul a {
  color: #FBE793;
  font-weight: 600;
  font-size: 22px;
  line-height: 46px;
  text-transform: capitalize;
  text-decoration: none;
}
.header > .container .col-md-6 .lang-picker-container {
  --on-hover-height: 62px;
  --border-n-text-color: white;
  --hover-background-color: #fff3;
  max-height: var(--on-hover-height);
  min-height: var(--on-hover-height);
  width: 100px;
}
.header > .container .col-md-6 .lang-picker-container * {
  transition: all 0.4s ease;
  background-color: transparent;
}
.header > .container .col-md-6 .lang-picker-container .lang-picker {
  height: 30px;
  margin: 0px;
  max-height: var(--on-hover-height);
  overflow: hidden;
  list-style-type: none;
  border: 1px solid var(--border-n-text-color);
  padding-left: 0px;
  border-radius: 5px;
  width: 86px;
  transform: translateY(15px);
}
.header > .container .col-md-6 .lang-picker-container .lang-picker:hover {
  height: var(--on-hover-height);
}
.header > .container .col-md-6 .lang-picker-container .lang-picker .lang-option {
  min-height: 30px;
  max-height: 30px;
  display: flex;
}
.header > .container .col-md-6 .lang-picker-container .lang-picker .lang-option:hover {
  background-color: var(--hover-background-color);
}
.header > .container .col-md-6 .lang-picker-container .lang-picker .lang-option i.fa-angle-down {
  display: flex;
  height: 28px;
  align-items: center;
  color: var(--border-n-text-color);
}
.header > .container .col-md-6 .lang-picker-container .lang-picker .lang-option button {
  text-transform: uppercase;
  min-height: 30px;
  max-height: 30px;
  display: flex;
  align-items: center;
  justify-content: start;
  color: var(--border-n-text-color);
  border: unset;
  padding: 10px;
}
.header > .container .col-md-6 .lang-picker-container .lang-picker .lang-option button:hover {
  border: unset;
}
.header > .container .col-md-6 .lang-picker-container .lang-picker .lang-option button i {
  height: 18px;
  width: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 5px;
}
.header > .container .col-md-6 .lang-picker-container .lang-picker .lang-option:not(.header > .container .col-md-6 .lang-picker-container .lang-picker .lang-option:first-child) button {
  width: 100%;
  float: left;
}

@media (max-width: 768px) {
  .header {
    max-width: unset;
    padding: 0;
  }
  .header.scroll > .container {
    border-radius: 0px;
  }
  .header > .container {
    width: 100svw;
    max-width: unset;
    background-color: #0F3130;
    border-radius: 0px;
    margin-top: -40px;
    box-shadow: 0 4px 4px rgba(0, 0, 0, 0.4);
  }
  .header > .container .col-md-3 {
    margin-left: 0px;
    max-width: 250px;
    padding-left: 0;
  }
  .header > .container .col-md-6 {
    flex-direction: row-reverse;
    margin-right: 0px;
    margin-top: 12px;
    width: auto;
  }
  .header > .container .col-md-6 .icon-button i {
    color: #2DADA3;
  }
  .header > .container .col-md-6 .icon-button:hover {
    background: transparent;
    border-radius: 0px;
  }
  .header > .container .col-md-6 .icon-button.cart {
    display: none;
  }
  .header > .container .col-md-6 .icon-button.menu ~ .nav-menu {
    right: 0;
    top: -40px;
    border-radius: 0;
    z-index: -1;
    aspect-ratio: unset;
  }
  .header > .container .col-md-6 .lang-picker-container {
    --on-hover-height: 62px;
    --border-n-text-color: #2DADA3;
    --hover-background-color: #fff3;
  }
}
@media (max-width: 350px) {
  .header > .container .col-md-6 .icon-button.menu ~ .nav-menu {
    width: 100svw;
  }
  .header > .container .col-md-6 .icon-button.menu ~ .nav-menu ul {
    margin: 120px 7.5vw 50px;
  }
  .header > .container .col-md-6 .icon-button.menu ~ .nav-menu ul li, .header > .container .col-md-6 .icon-button.menu ~ .nav-menu ul a {
    font-size: min(7.2vw, 26px);
  }
}
body.page-blog main .hero_banner.hero_banner_compare .container {
  border-radius: 20px;
}
body.page-blog main > .container.px-0 {
  display: flex;
  flex-direction: column;
  row-gap: 40px;
}
body.page-blog main > .container.px-0 #content {
  margin-bottom: -22px;
  color: white;
}
body.page-blog main > .container.px-0 ul.questions {
  background: rgba(255, 255, 255, 0.2);
  padding: 40px 40px;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  row-gap: 16px;
  list-style-type: none;
}
body.page-blog main > .container.px-0 ul.questions ul {
  list-style-type: none;
}
body.page-blog main > .container.px-0 ul.questions * {
  color: white;
  text-decoration: none;
}
body.page-blog main > .container.px-0 .answer-block * {
  color: white;
}
body.page-blog main > .container.px-0 .answer-block > *:first-child {
  font-size: 40px;
  line-height: 70px;
}
body.page-blog main > .container.px-0 .answer-block .answer-content {
  background: rgba(255, 255, 255, 0.1333333333);
  padding: 40px 40px;
  border-radius: 20px;
}
body.page-blog main > .container.px-0 .answer-block .answer-content * {
  font-size: 18px;
  font-weight: 400;
  line-height: 28px;
}
body.page-blog main > .container.px-0 .answer-block .answer-content h2 {
  line-height: 40px;
}
body.page-blog main > .container.px-0 .answer-block .answer-content h2:not(:first-child) {
  margin-top: 40px;
}
body.page-blog main > .container.px-0 .answer-block .answer-content h2 span {
  width: 30px;
  display: inline-block;
}
body.page-blog main > .container.px-0 .answer-block .answer-content .pl-30 {
  padding-left: 30px;
}
body.page-blog main > .container.px-0 .answer-block .answer-content .ml-30 {
  margin-left: 30px;
}
body.page-blog main > .container.px-0 .answer-block .answer-content p {
  padding-left: 30px;
}
body.page-blog main > .container.px-0 .answer-block .answer-content img {
  margin-left: 30px;
  width: calc(100% - 36px);
  object-fit: contain;
  max-height: 550px;
  margin-bottom: 1rem;
}
body.page-blog main > .container.px-0 .answer-block .answer-content img.mh-300 {
  max-height: 300px;
}
body.page-blog main > .container.px-0 .answer-block .answer-content li p {
  padding-left: 0px;
}
body.page-blog main > .container.px-0 .answer-block .answer-content li img {
  margin-left: 0px;
}

@media (max-width: 576px) {
  main > .container.px-0 .answer-block > *:first-child {
    padding-left: 25px;
    padding-right: 25px;
  }
}
section.promotion {
  padding-bottom: 120px;
  display: flex;
  align-items: center;
  min-height: 40svh;
  position: relative;
}
section.promotion > .container {
  position: relative;
}
section.promotion .promo-swiper-element {
  display: none;
}
section.promotion .promo-card {
  background: linear-gradient(103.21deg, #DD5F0A 66.79%, #B54312 101.93%);
  border-radius: 20px;
  overflow: hidden;
  text-align: center;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  width: calc(100% - 1.5rem);
  aspect-ratio: 1600/837;
  position: relative;
  cursor: pointer;
  margin: auto;
  position: relative;
}
section.promotion .promo-card > a {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
section.promotion .promo-card::before {
  position: absolute;
  top: 10px;
  left: 10px;
  width: calc(100% - 20px);
  height: calc(100% - 20px);
  border: 5px solid #fcfde6;
  opacity: 0.25;
  border-radius: 20px;
}
section.promotion .promo-card > img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}
section.promotion .promo-card > img.mobile {
  display: none;
}
section.promotion .promo-card .promo-left {
  position: relative;
}
section.promotion .promo-card .promo-left .promo-image {
  height: 100%;
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  border-right: 2px solid #FCFDE6;
}
section.promotion .promo-card .promo-left .promo-image img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
section.promotion .promo-card .promo-right {
  color: white;
  padding: 30px 25px;
  font-size: 24px;
  font-weight: 300;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: left;
  row-gap: 20px;
}
section.promotion .promo-card .promo-right .promo-title {
  font-size: 36px;
  font-weight: 600;
}
section.promotion .promo-card .promo-right .promo-button {
  background: linear-gradient(96.34deg, #2DADA3 1.22%, #107A6D 85%);
}
section.promotion ::-webkit-scrollbar {
  display: none;
}
section.promotion .promo_container {
  overflow-x: scroll;
  scroll-behavior: smooth;
  position: relative;
}
section.promotion .promo_container > .row {
  flex-wrap: nowrap;
  justify-content: unset !important;
}
section.promotion .promo_container > .row > .col-12 {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}
section.promotion .promo-swiper-element {
  display: block;
}
section.promotion .promo-swiper-element.element-container {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
section.promotion .promo-swiper-element.element-container .button-prev,
section.promotion .promo-swiper-element.element-container .button-next {
  background-color: #f07125;
  color: #fff;
  width: 50px;
  height: 50px;
  border-radius: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  display: none;
}
section.promotion .promo-swiper-element.element-container .button-prev::after,
section.promotion .promo-swiper-element.element-container .button-next::after {
  font-family: swiper-icons;
  font-size: 24px;
  text-transform: none !important;
  letter-spacing: 0;
  font-variant: initial;
  line-height: 1;
}
section.promotion .promo-swiper-element.element-container .button-prev.button-disabled,
section.promotion .promo-swiper-element.element-container .button-next.button-disabled {
  opacity: 0.35;
  cursor: auto;
  pointer-events: none;
}
section.promotion .promo-swiper-element.element-container .button-next::after {
  content: "next";
}
section.promotion .promo-swiper-element.element-container .button-prev::after {
  content: "prev";
}
section.promotion .promo-swiper-element.element-container .fake-click-element {
  flex-grow: 1;
  max-width: 230px;
  height: 350px;
  margin: auto;
  display: flex;
  cursor: pointer;
}
section.promotion .promo-swiper-element.element-container .page-indicator {
  position: absolute;
  width: 100%;
  display: flex;
  height: fit-content;
  bottom: 0px;
  left: 0;
  justify-content: center;
  column-gap: 10px;
}
section.promotion .promo-swiper-element.element-container .page-indicator label input {
  width: 0px;
  height: 0px;
  overflow: hidden;
}
section.promotion .promo-swiper-element.element-container .page-indicator label .indicator {
  width: 10px;
  height: 10px;
  border-radius: 5px;
  background-color: rgba(255, 255, 255, 0.3333333333);
  cursor: pointer;
}
section.promotion .promo-swiper-element.element-container .page-indicator label input:checked ~ .indicator {
  background-color: white;
}

@media (max-width: 576px) {
  section.promotion .promo-card {
    aspect-ratio: 860/1562;
  }
  section.promotion .promo-card > img.mobile {
    display: block;
  }
  section.promotion .promo-card > img.desktop {
    display: none;
  }
  section.promotion p.subtitle {
    min-width: unset;
    width: 100%;
    padding: 0 7.5%;
  }
}
/**
 * common
 */
html {
  scroll-padding-top: 90px;
}

body {
  background-color: #0B4941;
}

h2 {
  font-weight: 400;
  font-size: 80px;
  line-height: 100px;
}

h3 {
  font-weight: 500;
  font-size: 36px;
  line-height: 49px;
}

p {
  font-weight: 500;
  font-size: 24px;
  line-height: 36px;
}

.btn-orange {
  background: linear-gradient(96.34deg, #FF8E4D 1.22%, #CF4C08 85%);
  border: 1.5px solid #FCFDE6;
  box-shadow: 0px 0px 5px #FCFDE6;
  border-radius: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 50px;
  width: fit-content;
  padding: 0px 36px;
  padding-top: 2px;
  font-size: 21px;
  min-height: unset;
  color: white;
}

.btn-orange:hover {
  color: white;
  border: 1.5px solid #FCFDE6;
  box-shadow: 0px 0px 0px #FCFDE6;
}

.title_bottom_line1 {
  background-color: #2DADA3;
  width: 94px;
  height: 6px;
  border-radius: 60px;
}

.title_bottom_line2 {
  background-color: #107A6D;
  width: 94px;
  height: 6px;
  border-radius: 60px;
}

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

/**
 * max contnet width exception
 */
@media (min-width: 1538px) {
  .container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
    max-width: 1080px;
  }
}/*# sourceMappingURL=main.css.map */