/**
 *
 * Header Mobile
 *
**/

.header_mobile_screen {
  display: none !important;
}

/**
 *
 * Common
 *
**/

:root {
  --primary-color: #FF6F59;
  --secondary-color: #fff;
  --text-color: #1a1e1c;
}

.view-more-overlay a::before {
  content: 'View More';
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--secondary-color);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

.common-navigation {
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  aspect-ratio: 1 / 1;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: var(--secondary-color);
  box-shadow: 0px 1px 2px rgba(60, 64, 67, 0.3), 0px 2px 6px 2px rgba(60, 64, 67, 0.15);
  z-index: 10;
}

.title-and-subtitle {
  display: flex;
  flex-direction: column;
  gap: 10px;

  & > *:nth-child(1) {
    font-weight: 700;
    font-size: 18px;
    color: var(--text-color);

    @media (1024px <= width) {
      font-size: 24px;
    }
  }

  & > *:nth-child(2) {
    font-weight: 900;
    font-size: 24px;
    line-height: 1;
    color: var(--text-color);

    @media (1024px <= width) {
      font-size: 48px;
    }
  }
}

p, h1, h2, h3, h4, h5, h6 {
  padding: 0;
  margin: 0;
}

ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

.container {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;

  @media (min-width: 640px) {
    max-width: 640px;
  }

  @media (min-width: 768px) {
    max-width: 768px;
  }

  @media (min-width: 1024px) {
    max-width: 1024px;
  }

  @media (min-width: 1280px) {
    max-width: 1280px;
  }

  @media (min-width: 1536px) {
    max-width: 1536px;
  }
}

/**
 *
 * Banner Section
 *
**/

.banner-container {
  margin-top: 110px;
  padding-inline: 16px;

  @media (1024px <= width) {
    padding-inline: 40px;
  }
}

.banner-link {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1840 / 1035;
  background: linear-gradient(0deg, rgba(26, 30, 28, 0.4), rgba(26, 30, 28, 0.4)), var(--background-image);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 8px;

  @media (1024px <= width) {
    border-radius: 20px;
  }
}

.play-icon-container {
  width: 80px;
  aspect-ratio: 1 / 1;
}

/**
 *
 * Introduction Section
 *
**/

.introduction-section {
  padding-block: 40px;

  @media (1024px <= width) {
    padding-block: 80px;
  }
}

.introduction-content {
  display: grid; 
  gap: 16px;

  @media (1024px <= width) {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
}

.introduction-content > div:nth-child(1) .entry-post-content {
  margin-top: 10px;

  @media (1024px <= width) {
    margin-top: 20px;
  }
}

.introduction-content > div:nth-child(1) ul {
  margin-top: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  list-style: none;

  @media (1024px <= width) {
    margin-top: 40px;
  }
}

.introduction-content > div:nth-child(1) ul li {
  padding: 7px 12px;
  border-radius: 5px;

  @media (1024px <= width) {
    padding: 13.5px 24px;
    border-radius: 10px;
  }
}

.introduction-content > div:nth-child(1) ul li:nth-child(1) {
  background-color: var(--primary-color);
}

.introduction-content > div:nth-child(1) ul li:nth-child(1) a {
  font-size: 14px;
  font-weight: 700;
  color: var(--secondary-color);

  @media (1024px <= width) {
    font-size: 16px;
  }
}

.introduction-content > div:nth-child(1) ul li:nth-child(2) {
  border: 1px solid var(--primary-color);
}

.introduction-content > div:nth-child(1) ul li:nth-child(2) a {
  font-size: 14px;
  font-weight: 700;
  color: var(--primary-color);

  @media (1024px <= width) {
    font-size: 16px;
  }
}

.introduction-content > div:nth-child(2) {
  display: flex;
  flex-direction: column;
  gap: 16px;

  @media (1024px <= width) {
    gap: 30px;
  }
}

.introduction-content > div:nth-child(2) ul:nth-child(1) {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: center;
  justify-content: center;
  gap: 7px;

  @media (1024px <= width) {
    gap: 14px;
  }
}

.introduction-content > div:nth-child(2) ul:nth-child(1) li {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: var(--text-color);
  position: relative;

  @media (1024px <= width) {
    gap: 10px;
    font-size: 18px;
  }

  &:not(:last-child)::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    transform: translateX(8px);
    width: 1px;
    border-right: 1px solid #eaeaea;

    @media (1024px <= width) {
      transform: translateX(8px);
    }
  }
}

.introduction-content > div:nth-child(2) ul:nth-child(1) li div {
  width: 40px;
  aspect-ratio: 1 / 1;

  @media (1024px <= width) {
    width: 50px;
  }
}

.introduction-content > div:nth-child(2) ul:nth-child(1) li p {
  line-height: 1.2;
}

.introduction-content > div:nth-child(2) ul:nth-child(2) {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;

  @media (1024px <= width) {
    gap: 14px;
  }
}

.introduction-content > div:nth-child(2) ul:nth-child(2) li {
  overflow: hidden;
  border-radius: 8px;

  @media (1024px <= width) {
    border-radius: 15px;
  }
}

.introduction-content > div:nth-child(2) ul:nth-child(2) li:last-child {
  aspect-ratio: 1 / 1;
}

/**
 *
 * Gallery Section
 *
**/

.gallery-section {
  padding-top: 40px;

  @media (1024px <= width) {
    padding-top: 80px;
  }
}

.gallery-swiper-container {
  position: relative;
  margin-top: 16px;

  @media (1024px <= width) {
    margin-top: 30px;
  }
}

.gallery-swiper-container li {
  aspect-ratio: 323 / 485;
}

.gallery-swiper-container li > div {
  width: 100%;
  height: 100%;
  aspect-ratio: 323 / 485;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-image: var(--background-image);
  overflow: hidden;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  justify-content: end;
  padding: 15px;

  @media (1024px <= width) {
    padding: 30px;
    border-radius: 15px;
  }
}

.gallery-swiper-container li > div a {
  display: block;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0px 0px 52px rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(5px);
  border-radius: 9999px;
  padding-block: 8px;
  color: var(--secondary-color);
  font-weight: 300;
  font-size: 18px;
  text-align: center;
  transition: all 0.3s;

  &:hover {
    color: var(--text-color);
    background: var(--secondary-color);
  }
}

.gallery-swiper-navigation-prev {
  display: flex;
  position: absolute;
  left: 0;
  transform: translateY(-50%) translateX(calc(-50% + 8px));

  @media (1024px <= width) {
    transform: translateY(-50%) translateX(-50%);
  }
}

.gallery-swiper-navigation-next {
  display: flex;
  position: absolute;
  right: 0;
  transform: translateY(-50%) translateX(calc(50% - 8px));

  @media (1024px <= width) {
    transform: translateY(-50%) translateX(50%);
  }
}

/**
 *
 * Motorcycle Section
 *
**/

.motorcycle-information-list {
  display: flex;
  flex-direction: column;
  gap: 10px;

  @media (1024px <= width) {
    gap: 20px;
  }
}

.motorcycle-information-item {
  display: flex;
  align-items: center;
  gap: 4px;

  @media (1024px <= width) {
    gap: 8px;
  }
}

.motorcycle-information-content {
  font-size: 14px;

  @media (1024px <= width) {
    font-size: 16px;
  }
}

.motorcycle-section {
  padding-top: 40px;

  @media (1024px <= width) {
    padding-top: 80px;
  }
}

.swiper-container {
  margin-top: 16px;
  position: relative;

  @media (1024px <= width) {
    margin-top: 30px;
  }
}

.swiper-container .swiper-wrapper {
  padding-block: 1px;
  align-items: center;
}

.swiper-container .swiper-content {
  border: 1px solid #eaeaea;
  border-radius: 15px;
  overflow: hidden;
  width: 100%;
}

.swiper-container .swiper-content div:nth-child(1) {
  flex-shrink: 0;
  aspect-ratio: 1 / 1;
  display: flex;
  flex-direction: column;
  position: relative;
}

.swiper-container .swiper-content div:nth-child(1):hover > div {
  opacity: 1;
}

.swiper-container .swiper-content div:nth-child(1) > div {
  opacity: 0;
  transition: all 0.3s;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-inline: 5px;
  background: rgba(255, 255, 255, 0.9);

  @media (1024px <= width) {
    padding-inline: 10px;
  }
}

.swiper-container .swiper-content div:nth-child(1) > div ul {
  display: flex;
  flex-direction: column;
  gap: 5px;

  @media (1024px <= width) {
    gap: 10px;
  }
}

.swiper-container .swiper-content div:nth-child(1) > div ul li {
  display: flex;
  align-items: center;
  gap: 6px;

  @media (1024px <= width) {
    gap: 12px;
  }
}

.swiper-container .swiper-content div:nth-child(1) > div ul li div {
  flex-shrink: 0;
}

.swiper-container .swiper-content div:nth-child(1) > div ul li p {
  font-weight: 400;
  font-size: 12px;
  line-height: 1;
  color: var(--text-color);

  @media (1024px <= width) {
    font-size: 14px;
  }
}

.swiper-container .swiper-content div:nth-child(1) img {
  transition: all 0.3s;
}

.swiper-container .swiper-content div:nth-child(2) {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding-block: 15px;
  padding-inline: 10px;

  @media (1024px <= width) {
    gap: 15px;
    padding-block: 30px;
  }
}

.swiper-container .swiper-content div:nth-child(2) p {
  font-size: 14px;
  line-height: 1.2;
  font-weight: 700;
  color: var(--text-color);

  @media (1024px <= width) {
    font-size: 16px;
  }
}

.motorcycle-swiper {
  padding-bottom: 1px;
}

.motorcycle-swiper-navigation-prev {
  display: flex;
  position: absolute;
  left: 0;
  transform: translateY(-50%) translateX(calc(-50% + 8px));

  @media (1024px <= width) {
    transform: translateY(-50%) translateX(calc(-100% - 30px));
  }
}

.motorcycle-swiper-navigation-next {
  display: flex;
  position: absolute;
  right: 0;
  transform: translateY(-50%) translateX(calc(50% - 8px));

  @media (1024px <= width) {
    transform: translateY(-50%) translateX(calc(100% + 30px));
  }
}

/**
 *
 * Media Section
 *
**/

.media-section {
  padding-top: 40px;

  @media (1024px <= width) {
    padding-top: 80px;
  }
}

.media-section ul {
  margin-top: 15px;
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(6, 1fr);

  @media (1024px <= width) {
    margin-top: 30px;
    gap: 20px;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: repeat(2, 1fr);
  }
}

.media-section ul li {
  position: relative;
  display: var(--display);
  grid-column: var(--col-span);
  grid-row: var(--row-span);
  overflow: hidden;
  border-radius: 8px;

  @media (1024px <= width) {
    border-radius: 15px;
  }
}

.media-section ul li img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.3s;

  &:hover {
    transform: scale(1.1);
  }
}

/**
 *
 * Review Section
 *
**/

.ti-widget-container .ti-reviews-container .ti-reviews-container-wrapper {
  margin-inline: -12px !important;
}

.review-section {
  padding-top: 40px;

  @media (1024px <= width) {
    padding-top: 80px;
  }
}

.review-section .container > div {
  display: flex;
  row-gap: 10px;
  flex-wrap: wrap;
  align-items: end;
  justify-content: space-between;
}

.review-section .container > div ul {
  display: flex;
  border: 1px solid #eaeaea;
  border-radius: 9999px;
  overflow: hidden;
}

.review-section .container > div ul li {
  & label {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 6px 8px;
    transition: all 0.3s;
    cursor: pointer;

    @media (1024px <= width) {
      gap: 8px;
      padding: 12px 16px;
    }
  }

  &:not(:last-child) label {
    border-right: 1px solid #eaeaea;
  }
}

.review-section .container > div ul li input {
  display: none;
}

.review-section .container > div ul li:has(input:checked) label {
  background-color: var(--primary-color);
  color: var(--secondary-color);
}

.review-section .container > div ul li div {
  width: 20px;
  height: 20px;
  flex-shrink: 0;

  @media (1024px <= width) {
    width: 24px;
    height: 24px;
  }
}

.review-section .container > div ul li div img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.review-section .container > ul {
  margin-top: 15px;

  @media (1024px <= width) {
    margin-top: 30px;
  }
}

/**
 *
 * Team Section
 *
**/

.team-information-description {
  font-size: 14px;

  @media (1024px <= width) {
    font-size: 16px;
  }
}

.team-information {
  display: flex;
  flex-direction: column;
  gap: 5px;
  
  @media (1024px <= width) {
    gap: 10px;
  }
}

.team-information .team-information-title {
  font-weight: 700;
  font-size: 18px;
  color: var(--text-color);
  
  @media (1024px <= width) {
    font-size: 24px;
  }
}

.team-information ul {
  margin-top: 20px;
  display: flex;
  align-items: center;
  gap: 6px;

  @media (1024px <= width) {
    margin-top: 40px;
    gap: 12px;
  }
}

.team-information ul li {
  padding: 7px 12px;
  border-radius: 10px; 

  @media (1024px <= width) {
    padding: 13.5px 24px;
  }
}

.team-information ul li:nth-child(1) {
  background-color: var(--primary-color);
}

.team-information ul li:nth-child(1) a {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: var(--secondary-color);

  @media (1024px <= width) {
    font-size: 16px;
  }
}

.team-information ul li:nth-child(2) {
  border: 1px solid var(--primary-color);
}

.team-information ul li:nth-child(2) a {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: var(--primary-color);

  @media (1024px <= width) {
    font-size: 16px;
  }
}

.team-section {
  padding-top: 40px;

  @media (1024px <= width) {
    padding-top: 80px;
  }
}

.team-swiper-container {
  position: relative;
}

.team-section .container > div {
  margin-top: 20px;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 10px;

  @media (1024px <= width) {
    margin-top: 40px;
    gap: 20px;
  }
}

.team-section .container > div > div:nth-child(1) {
  grid-column: 1 / -1;

  @media (1024px <= width) {
    grid-column: span 5;
  }
}

.team-section .container > div > div:nth-child(2) {
  grid-column: 1 / -1;

  @media (1024px <= width) {
    grid-column: span 7;
  }
}

.team-information-swiper-container .swiper-slide > div {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.team-information-swiper-container .swiper-slide > div > p:nth-child(1) {
  font-weight: 700;
  font-size: 24px;
  color: var(--text-color);
}

.team-information-swiper-container .swiper-slide > div ul {
  margin-top: 40px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.team-information-swiper-container .swiper-slide > div ul li {
  padding: 13.5px 24px;
  border-radius: 10px;
}

.team-information-swiper-container .swiper-slide > div ul li:nth-child(1) {
  background-color: var(--primary-color);
}

.team-information-swiper-container .swiper-slide > div ul li:nth-child(1) a {
  font-weight: 700;
  color: var(--secondary-color);
}

.team-information-swiper-container .swiper-slide > div ul li:nth-child(2) {
  border: 1px solid var(--primary-color);
}

.team-information-swiper-container .swiper-slide > div ul li:nth-child(2) a {
  font-weight: 700;
  color: var(--primary-color);
}

.information-item {
  display: flex;
  align-items: center;
  gap: 4px;

  @media (1024px <= width) {
    gap: 8px;
  }
}

.information-item p {
  font-size: 14px;

  @media (1024px <= width) {
    font-size: 16px;
  }
}

.team-section .team-swiper-container .swiper-slide {
  aspect-ratio: 557 / 362;
}

.team-section .team-swiper-container .swiper-slide div {
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 15px;
}

.team-section .team-swiper-container .swiper-slide div img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-swiper-navigation-prev {
  display: flex;
  position: absolute;
  left: 0;
  transform: translateY(-50%) translateX(calc(-50% + 8px));

  @media (1024px <= width) {
    transform: translateY(-50%) translateX(-50%);
  }
}

.team-swiper-navigation-next {
  display: flex;
  position: absolute;
  right: 0;
  transform: translateY(-50%) translateX(calc(50% - 8px));

  @media (1024px <= width) {
    transform: translateY(-50%) translateX(50%);
  }
}

/**
 *
 * Option Table Section
 *
**/

.option-table-section {
  padding-top: 40px;

  @media (1024px <= width) {
    padding-top: 80px;
  }
}

.option-table-section hgroup {
  width: fit-content;
  margin-inline: auto;
}

.option-table-section hgroup * {
  text-align: center;
}

.option-table-section .container > div {
  margin-top: 15px;
  display: flex;
  flex-direction: column;
  gap: 30px;

  @media (1024px <= width) {
    margin-top: 30px;
    gap: 60px;
    flex-direction: row;
  }
}

.option-table-section .image-container {
  overflow: hidden;
  border-radius: 15px;

  @media (1024px <= width) {
    width: 35%;
  }
}

.option-table-section .image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.option-table-section .table-content {
  flex: 1
}

.table-content table {
  border: none;
  margin-top: 10px;

  @media (1024px <= width) {
    margin-top: 20px;
  }
}

.table-content table td {
  border: none;
  border-bottom: 1px solid #eaeaea;
}

.table-content table tr:first-child td, 
.table-content table tr:not(:first-child) td:first-child {
  font-size: 14px;
  color: var(--text-color);

  @media (1024px <= width) {
    font-size: 18px;
  }
}

.table-content table tr:not(:first-child) td:not(:first-child) {
  text-align: center;
}

.table-content table tr:not(:first-child) td:not(:first-child) {
  font-size: 0px;
  position: relative;

  &::before {
    content: '';
    display: block;
    background-image: url("data:image/svg+xml,%3Csvg width='30' height='30' viewBox='0 0 30 30' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M6.25 15H23.75' stroke='%23EAEAEA' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E%0A");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    width: 24px;
    height: 24px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);

    @media (1024px <= width) {
      width: 30px;
      height: 30px;
    }
  }

  &[data-tick]::before {
    background-image: url("data:image/svg+xml,%3Csvg width='30' height='30' viewBox='0 0 30 30' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M25 7.5L11.25 21.25L5 15' stroke='%23254441' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E%0A");
  }
}

/**
 *
 * Question Section
 *
**/

.question-section {
  padding-block: 40px;

  @media (1024px <= width) {
    padding-block: 80px;
  }
}

.question-section > .container > ul {
  margin-top: 15px;
  display: grid;
  gap: 16px;

  @media (1024px <= width) {
    margin-top: 30px;
    gap: 30px;
    grid-template-columns: repeat(2, 1fr);
  }
}

.question-section > .container > ul li hgroup {
  display: flex;
  flex-direction: column;
  gap: 5px;
  
  @media (1024px <= width) {
    gap: 10px;
  }
}

.question-section > .container > ul li hgroup p:nth-child(1) {
  font-weight: 900;
  font-size: 24px;
  color: var(--text-color);

  @media (1024px <= width) {
    font-size: 36px;
  }
}

.question-section > .container > ul li hgroup p:nth-child(2) {
  font-weight: 300;
  font-size: 14px;
  color: var(--text-color);
}

.question-list {
  margin-top: 10px;

  @media (1024px <= width) {
    margin-top: 20px;
  }
}

.question-list li {
  & label {
    padding-block: 5px;
    display: flex;
    align-items: center;
    justify-content: space-between;

    @media (1024px <= width) {
      padding-block: 10px;
    }
  }

  &:not(:last-child) label {
    border-bottom: 1px solid #eaeaea;
  }
}

.question-list li label p {
  font-size: 14px;
  font-weight: 500;

  @media (1024px <= width) {
    font-size: 16px;
  }
}

.question-list li input {
  display: none;
}

.question-list li div {
  transition: all 0.3s;
  font-size: 14px;

  @media (1024px <= width) {
    font-size: 16px;
  }
}

.question-list li input:not(:checked) + div {
  overflow: hidden;
  opacity: 0;
  max-height: 0;
}

.question-list li input:checked + div {
  overflow: visible;
  opacity: 1;
  max-height: 9999vh;
}