.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgb(255, 255, 255);
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  transition: transform 0.3s ease-in-out;
}

.preloader .preloader_content .preloader_video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.preloader.slide_out {
  transform: translateY(-100%);
}

.navbar {
  background-color: rgb(255, 255, 255);
  width: 100%;
  transition-duration: 0.3s;
  z-index: 999;
}

.navbar .navbar_content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  padding-block: 20px;
}

.navbar .navbar_content .navbar_logo_link {
  z-index: 9999;
}

.navbar .navbar_content .navbar_logo_link .navbar_logo_img {
  width: 100px;
}

.navbar .navbar_content .navbar_list {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 40px;
  list-style: none;
}

.navbar .navbar_content .navbar_list .navbar_list_item {
  position: relative;
  cursor: pointer;
}

.navbar .navbar_content .navbar_list .navbar_list_item .navbar_list_item_btn {
  font-size: 1rem;
}

.navbar .navbar_content .navbar_list .navbar_list_item::after {
  content: "";
  width: 0%;
  height: 1px;
  background-color: rgba(0, 0, 0, 0.2);
  display: block;
  position: absolute;
  transition-duration: 0.3s;
}

.navbar .navbar_content .navbar_list .navbar_list_item:hover::after {
  width: 100%;
}

.navbar .navbar_content .navbar_menu_btn {
  z-index: 9999;
  padding: 10px;
  border-radius: 3px;
  background-color: rgb(0, 0, 0);
  font-weight: 500;
  color: rgb(255, 255, 255);
  display: none;
}

.navbar.navbar_active {
  position: fixed;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}

.navbar.navbar_hidden {
  transform: translateY(-100%);
}

.navbar_modal_overlay {
  position: fixed;
  background-color: rgba(0, 0, 0, 0.5);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
  z-index: 99999;
}

.navbar_modal {
  background-color: rgb(255, 255, 255);
  border-radius: 20px;
}

.navbar_modal .navbar_modal_content {
  padding: 40px;
}

.navbar_modal .navbar_modal_content .navbar_modal_header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  gap: 0 40px;
}

.navbar_modal .navbar_modal_content .navbar_modal_header .category_img {
  width: 100%;
  max-width: 120px;
}

.navbar_modal .navbar_modal_content .navbar_modal_header .navbar_modal_close_btn {
  background-color: rgb(0, 0, 0);
  color: rgb(255, 255, 255);
  padding: 10px;
  border-radius: 3px;
}

.navbar_modal .navbar_modal_content .subcategories_list {
  display: flex;
  justify-content: center;
  gap: 20px;
  overflow: auto;
}

.navbar_modal .navbar_modal_content .subcategories_list .subcategories_item_link {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 20px;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 10px;
  width: 100%;
  transition-duration: 0.3s;
}

.navbar_modal .navbar_modal_content .subcategories_list .subcategories_item_link .subcategories_img {
  width: 100%;
  height: 100%;
  max-width: 100px;
  max-height: 100px;
  -o-object-fit: contain;
  object-fit: contain;
  margin-bottom: 20px;
  transition-duration: 0.3s;
}

.navbar_modal .navbar_modal_content .subcategories_list .subcategories_item_link .subcategories_title {
  font-size: 1rem;
  text-align: center;
}

.navbar_modal .navbar_modal_content .subcategories_list .subcategories_item_link:hover {
  background-color: rgba(0, 0, 0, 0.1);
}

.navbar_modal .navbar_modal_content .subcategories_list .subcategories_item_link:hover .subcategories_img {
  transform: translateY(-5px);
}

#audio_navbar_modal_overlay,
#power_collection_navbar_modal_overlay,
#lifestyle_navbar_modal_overlay,
#automotives_navbar_modal_overlay,
#content_creation_navbar_modal_overlay,
#productivity_navbar_modal_overlay {
  display: none;
}

#audio_navbar_modal_overlay.navbar_modal_overlay_active,
#power_collection_navbar_modal_overlay.navbar_modal_overlay_active,
#lifestyle_navbar_modal_overlay.navbar_modal_overlay_active,
#automotives_navbar_modal_overlay.navbar_modal_overlay_active,
#content_creation_navbar_modal_overlay.navbar_modal_overlay_active,
#productivity_navbar_modal_overlay.navbar_modal_overlay_active {
  display: flex;
}

@media (max-width: 834px) {
  .navbar .navbar_content .navbar_list {
    flex-direction: column;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: rgb(255, 255, 255);
    display: none;
    justify-content: center;
    align-items: center;
    transition-duration: 0.3s;
    z-index: 999;
  }

  .navbar .navbar_content .navbar_list.navbar_list_active {
    display: flex;
  }

  .navbar .navbar_content .navbar_menu_btn {
    display: block;
  }

  .navbar_modal_overlay .navbar_modal .navbar_modal_content {
    padding: 20px;
  }

  .navbar_modal_overlay .navbar_modal .navbar_modal_content .subcategories_list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .navbar_modal_overlay .navbar_modal .navbar_modal_content .subcategories_list .subcategories_item_link .subcategories_img {
    max-width: 50px;
    max-height: 50px;
  }

  .navbar_modal_overlay .navbar_modal .navbar_modal_content .subcategories_list .subcategories_item_link .subcategories_title {
    font-size: 0.875rem;
  }

  .navbar_modal_overlay .navbar_modal .navbar_modal_content .subcategories_list .subcategories_item_link.subcategories_item_link:nth-child(odd):last-child {
    grid-column: 1/-1;
  }
}

.container {
  width: 100%;
  max-width: 1400px;
  padding-inline: 20px;
  margin: 0 auto;
}

.footer {
  background-color: rgb(0, 0, 0);
}

.footer .footer_content {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-block: 100px;
  color: rgb(255, 255, 255);
  gap: 40px;
}

.footer .footer_content .socials .follow_us {
  text-align: center;
}

.footer .footer_content .socials .follow_us .follow_us_title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.footer .footer_content .socials .follow_us .socials_list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
}

.footer .footer_content .socials .follow_us .socials_list .socials_list_item_link .socials_list_item_icon {
  transition-duration: 0.3s;
  width: 100%;
  max-width: 40px;
}

.footer .footer_content .socials .follow_us .socials_list .socials_list_item_link:hover>.socials_list_item_icon {
  opacity: 0.6;
  transform: scale(1.1);
}

.footer .footer_content .line {
  width: 1px;
  height: 350px;
  background-color: rgb(255, 255, 255);
}

.footer .footer_content .quick_links .quick_links_title {
  font-size: 2.5rem;
  margin-bottom: 20px;
  font-weight: 700;
}

.footer .footer_content .quick_links .quick_links_list {
  list-style: none;
}

.footer .footer_content .quick_links .quick_links_list .quick_links_list_item {
  margin-bottom: 20px;
  transition-duration: 0.3s;
}

.footer .footer_content .quick_links .quick_links_list .quick_links_list_item .quick_links_list_item_link .quick_links_list_item_icon {
  filter: invert(100%);
}

.footer .footer_content .quick_links .quick_links_list .quick_links_list_item:last-child {
  margin-bottom: unset;
}

.footer .footer_content .quick_links .quick_links_list .quick_links_list_item:hover {
  color: rgba(255, 255, 255, 0.6);
}

.copyright {
  background-color: rgb(0, 0, 0);
  text-align: center;
  padding-block: 40px;
}

.copyright .copyright_text {
  color: rgb(255, 255, 255);
  font-size: 0.875rem;
}

@media (max-width: 834px) {
  .footer .footer_content {
    flex-direction: column;
  }

  .footer .footer_content .socials .follow_us {
    flex-direction: column;
  }

  .footer .footer_content .line {
    width: 100%;
    height: 1px;
    background-color: rgb(255, 255, 255);
  }

  .footer .footer_content .quick_links {
    flex-direction: column;
    text-align: center;
  }

  .footer .footer_content .quick_links .quick_links_list_item .quick_links_list_item_link .quick_links_list_item_icon {
    margin: 0 auto;
  }
}

header {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    padding-block: 60px 40px;
    background-color: #ffffff;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.games-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  max-width: 1400px;
  margin: 0 auto;
  padding: 60px 20px;
}

.game-card {
  background-color: #ffffff;
  border-radius: 10px;
  border: 1px solid rgba(0, 0, 0, 0.2);
  padding: 30px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.game-card img {
  width: 100%;
  max-width: 150px;
  height: 150px;
  object-fit: contain;
  margin-bottom: 20px;
}

.game-card h3 {
  font-size: 1.563rem;
  font-weight: 500;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 20px;
}

.game-card a {
  background-color: rgb(0, 0, 0);
  color: #ffffff;
  padding: 10px 20px;
  border-radius: 3px;
  font-weight: 500;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.game-card a:hover {
  background-color: rgb(77, 77, 77);
}

.game-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

@media (max-width: 834px) {
  .games-container {
    gap: 20px;
    padding: 40px 10px;
  }

  .game-card {
    padding: 20px 10px;
  }

  .game-card img {
    max-width: 120px;
    height: 120px;
  }
}

.product_card {
  background-color: rgb(255, 255, 255);
  width: 100%;
  border-radius: 10px;
  padding: 40px 20px;
  border: 1px solid rgba(0, 0, 0, 0.2);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  position: relative;
}

.product_card .product_card_logo {
  width: 100%;
  max-width: 60px;
  height: auto;
  position: absolute;
  top: 10px;
  right: 10px;
}

.product_card .product_card_img {
  width: 100%;
  max-width: 150px;
  height: 150px;
  -o-object-fit: contain;
  object-fit: contain;
  margin-bottom: 20px;
}

.product_card .product_card_title {
  font-size: 1.563rem;
  font-weight: 500;
  text-transform: uppercase;
  text-align: center;
}

.product_card .product_card_subtitle {
  font-size: 1rem;
  margin-bottom: 20px;
  text-transform: uppercase;
  text-align: center;
}

.product_card .product_learn_more_link {
  background-color: rgb(0, 0, 0);
  color: rgb(255, 255, 255);
  padding: 10px 20px;
  border-radius: 3px;
  font-weight: 500;
  transition-duration: 0.3s;
}

.product_card .product_learn_more_link:hover {
  background-color: rgb(77, 77, 77);
}

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

.pagination .pagination_link {
  padding: 10px;
  border: 1px solid rgb(0, 0, 0);
  color: rgb(255, 255, 255);
  font-size: 0.875rem;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
  color: rgb(0, 0, 0);
}

.pagination .pagination_link.pagination_link_active {
  background-color: rgb(0, 0, 0);
  color: rgb(255, 255, 255);
}

.pagination .pagination_prev_btn,
.pagination .pagination_next_btn {
  background-color: rgb(0, 0, 0);
  color: rgb(255, 255, 255);
}

.scroll_to_top_btn {
  background-color: rgb(255, 255, 255);
  padding: 10px;
  position: fixed;
  border-radius: 5px;
  transform: translateY(100%);
  right: 20px;
  bottom: 0;
  box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  transition-duration: 0.3s;
  z-index: 999;
}

.scroll_to_top_btn .arrow_up_icon {
  width: 20px;
}

.scroll_to_top_btn.scroll_to_top_btn_active {
  transform: translateY(0);
  bottom: 20px;
}

.hero_banners .hero_banners_content {
  overflow: hidden;
}

.hero_banners .hero_banners_content .swiper_hero_banners {
  width: 100%;
  height: 100%;
}

.hero_banners .hero_banners_content .swiper_hero_banners .swiper_wrapper_hero_banners .swiper_slide_hero_banners {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  -o-object-fit: cover;
  object-fit: cover;
}

.hero_banners .hero_banners_content .swiper_hero_banners .swiper_wrapper_hero_banners .swiper_slide_hero_banners .swiper_slide_hero_banners_img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.hero_banners .hero_banners_content .swiper_hero_banners .swiper_wrapper_hero_banners .swiper_slide_hero_banners .swiper_slide_hero_banners_learn_more_link {
  background-color: rgb(0, 0, 0);
  color: rgb(255, 255, 255);
  position: absolute;
  bottom: 40px;
  font-weight: 500;
  padding: 10px 20px;
  border-radius: 3px;
  transition-duration: 0.3s;
}

.hero_banners .hero_banners_content .swiper_hero_banners .swiper_wrapper_hero_banners .swiper_slide_hero_banners .swiper_slide_hero_banners_learn_more_link:hover {
  background-color: rgb(77, 77, 77);
}

.hero_banners .hero_banners_content .swiper_hero_banners .swiper_wrapper_hero_banners .no_hero_banners_found {
  margin: 40px auto;
  text-align: center;
  color: rgb(0, 0, 0);
}

.hero_banners .hero_banners_content .swiper_hero_banners .swiper_hero_banners_btn_next,
.hero_banners .hero_banners_content .swiper_hero_banners .swiper_hero_banners_btn_prev {
  background-color: rgb(0, 0, 0);
  border-radius: 3px;
  padding: 20px;
}

.hero_banners .hero_banners_content .swiper_hero_banners .swiper_hero_banners_btn_next::after,
.hero_banners .hero_banners_content .swiper_hero_banners .swiper_hero_banners_btn_prev::after {
  color: rgb(255, 255, 255);
  font-size: 1.563rem;
}

.hero_banners .hero_banners_content .swiper_hero_banners .swiper-pagination-bullet {
  background-color: rgb(0, 0, 0);
}

.featured {
  background-color: #ffffff;
  overflow: hidden;
}

.featured .featured_content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-block: 100px;
  gap: 40px;
}

.featured .featured_content .featured_text .featured_title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.featured .featured_content .featured_text .featured_title::after {
  content: "";
  width: 60px;
  height: 5px;
  background-color: rgb(0, 0, 0);
  display: block;
  margin: 10px 0;
  border-radius: 20px;
}

.featured .featured_content .featured_text .featured_description {
  font-size: 1.563rem;
}

.featured .featured_content .featured_card {
  position: relative;
  display: flex;
  justify-content: center;
}

.featured .featured_content .featured_card .featured_product_media {
  width: 100%;
  height: auto;
  max-width: 700px;
  -o-object-fit: contain;
  object-fit: contain;
  border-radius: 10px;
  pointer-events: none;
}

.featured .featured_content .featured_card .featured_learn_more_link {
  background-color: rgb(0, 0, 0);
  color: rgb(255, 255, 255);
  position: absolute;
  bottom: 20px;
  font-weight: 500;
  padding: 10px 20px;
  border-radius: 3px;
  transition-duration: 0.3s;
}

.featured .featured_content .featured_card .featured_learn_more_link:hover {
  background-color: rgb(77, 77, 77);
}

.featured .featured_content .no_featured_found {
  margin: 40px auto;
  text-align: center;
  color: rgb(0, 0, 0);
}

.gallery {
  background-color: #ffffff;
  padding: 100px 20px;
  text-align: center;
}

.gallery .gallery_content {
  max-width: 1200px;
  margin: 0 auto;
}

.gallery .gallery_content .see_more_link {
  padding: 10px;
  background-color: #000;
  color: #ffffff;
  display: inline-block;
  border-radius: 3px;
}

.gallery .gallery_content .gallery_title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 40px;
}

.gallery .gallery_content .gallery_title::after {
  content: "";
  width: 60px;
  height: 5px;
  background-color: #000;
  display: block;
  margin: 10px auto;
  border-radius: 20px;
}

.gallery .gallery_content .gallery_list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 20px;
}

.gallery .gallery_content .gallery_list .gallery_item {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  transition: all 0.3s ease;
}

.gallery .gallery_content .gallery_list .gallery_item .gallery_img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
}


.gallery .gallery_content .gallery_list .gallery_item:hover {
  transform: scale(1.02);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.gallery .gallery_content .gallery_list .gallery_item_title {
  padding: 10px;
  font-size: 1rem;
  font-weight: 600;
  color: #333;
  background-color: #fff;
  text-align: center;
}

.gallery .gallery_content .gallery_list .no_gallery_found {
  margin: 40px auto;
  color: #000;
  font-size: 1.2rem;
}

.tylex_events {
  background-color: #ffffff;
  padding: 100px 20px;
  text-align: center;
}

.tylex_events .tylex_events_content {
  max-width: 1200px;
  margin: 0 auto;
}

.tylex_events .tylex_events_content .see_more_btn {
  padding: 10px;
  background-color: #000;
  color: #ffffff;
  display: inline-block;
  border-radius: 3px;
}

.tylex_events .tylex_events_content .tylex_events_title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 40px;
}

.tylex_events .tylex_events_content .tylex_events_title::after {
  content: "";
  width: 60px;
  height: 5px;
  background-color: #000;
  display: block;
  margin: 10px auto;
  border-radius: 20px;
}

.tylex_events .tylex_events_content .tylex_events_list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 20px;
}

.tylex_events .tylex_events_content .tylex_events_list .card {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  transition: all 0.3s ease;
  background-color: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.2);
}

.tylex_events .tylex_events_content .tylex_events_list .card .card_content .card_header .card_header_img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tylex_events .tylex_events_content .tylex_events_list .card:hover {
  transform: scale(1.02);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.tylex_events .tylex_events_content .tylex_events_list .card .card_content .card_header .card_header_details {
  padding: 20px;
}

.tylex_events .tylex_events_content .tylex_events_list .card .card_content .card_header .card_header_details .card_header_title {
  font-size: 1rem;
  text-align: left;
  font-weight: 700;
  margin-bottom: 20px;
}

.tylex_events .tylex_events_content .tylex_events_list .card .card_content .card_header .card_header_details .card_header_date {
  font-size: 0.875rem;
  text-align: left;
  margin-bottom: 20px;
}

.tylex_events .tylex_events_content .tylex_events_list .card .card_content .card_header .card_header_details .read_more_btn {
  padding: 10px;
  background-color: #000;
  color: #ffffff;
  display: inline-block;
  border-radius: 3px;
}

.card_header_date .tylex_events .tylex_events_content .tylex_events_list .no_events_found {
  margin: 40px auto;
  color: #000;
  font-size: 1.2rem;
}

@media (max-width: 834px) {
  .tylex_events .tylex_events_content .tylex_events_list {
    grid-template-columns: 1fr;
  }

}

.tylex_event_details {
  padding: 4rem 1rem;
  background-color: #ffffff;
}

.tylex_event_details .container {
  max-width: 900px;
  margin: 0 auto;
  background-color: #fff;
  padding: 3rem 2rem;
}

.tylex_event_article {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.tylex_event_title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: #333;
  text-align: center;
}

.tylex_event_meta {
  font-size: 0.95rem;
  color: #666;
  font-style: italic;
  text-align: center;
}

.tylex_event_figure {
  margin: 2rem 0;
  text-align: center;
}

.tylex_event_image {
  max-width: 100%;
  height: auto;
  border-radius: 0.75rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

.tylex_event_image:hover {
  transform: scale(1.01);
}

.event_caption {
  margin-top: 0.75rem;
  font-size: 0.9rem;
  color: #888;
  text-align: center;
  font-style: italic;
}

.tylex_event_section p {
  font-size: 1.1rem;
  line-height: 1.75;
  color: #444;
}

.event_line {
  border: none;
  border-top: 2px solid #ccc;
  margin: 20px 0;
  width: 100%;
}

.event_footer_text {
  font-size: 0.9rem;
  font-style: italic;
  color: #555;
}

.back_to_events_container {
  margin-top: 3rem;
  text-align: left;
}

.back_to_events_link {
  font-size: 1rem;
  color: #000000;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.back_to_events_link:hover {
  color: #7a7a7a;
}

@media (max-width: 834px) {
  .tylex_event .tylex_event_content .event_image {
    width: 100%;
  }
}


.coming_soon {
  background-color: #ffffff;
}

.coming_soon .coming_soon_content {
  padding-block: 100px;
}

.coming_soon .coming_soon_content .coming_soon_title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 40px;
  text-align: center;
}

.coming_soon .coming_soon_content .coming_soon_title::after {
  content: "";
  width: 60px;
  height: 5px;
  background-color: rgb(0, 0, 0);
  display: block;
  margin: 10px auto;
  border-radius: 20px;
}

.coming_soon .coming_soon_content .swiper_coming_soon {
  width: 100%;
  height: 100%;
}

.coming_soon .coming_soon_content .swiper_coming_soon .swiper_wrapper_coming_soon .swiper_slide_coming_soon {
  position: relative;
  display: flex;
  justify-content: center;
}

.coming_soon .coming_soon_content .swiper_coming_soon .swiper_wrapper_coming_soon .swiper_slide_coming_soon .swiper_slide_coming_soon_img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  display: block;
  border-radius: 10px;
}

.coming_soon .coming_soon_content .swiper_coming_soon .swiper_wrapper_coming_soon .swiper_slide_coming_soon .swiper_wrapper_coming_soon_learn_more_link {
  background-color: rgb(0, 0, 0);
  color: rgb(255, 255, 255);
  font-weight: 500;
  padding: 10px 20px;
  display: inline-block;
  border-radius: 3px;
  position: absolute;
  bottom: 20px;
  margin: 0 auto;
  transition-duration: 0.3s;
}

.coming_soon .coming_soon_content .swiper_coming_soon .swiper_wrapper_coming_soon .swiper_slide_coming_soon .swiper_wrapper_coming_soon_learn_more_link:hover {
  background-color: rgb(77, 77, 77);
}

.coming_soon .coming_soon_content .swiper_coming_soon .swiper_wrapper_coming_soon .no_coming_soon_found {
  margin: 40px auto;
  text-align: center;
  color: rgb(0, 0, 0);
}

.coming_soon .coming_soon_content .swiper_coming_soon .swiper_coming_soon_btn_next,
.coming_soon .coming_soon_content .swiper_coming_soon .swiper_coming_soon_btn_prev {
  background-color: rgb(0, 0, 0);
  border-radius: 3px;
  padding: 20px;
}

.coming_soon .coming_soon_content .swiper_coming_soon .swiper_coming_soon_btn_next::after,
.coming_soon .coming_soon_content .swiper_coming_soon .swiper_coming_soon_btn_prev::after {
  color: rgb(255, 255, 255);
  font-size: 1.563rem;
}

.support {
  background-color: rgb(0, 0, 0);
}

.support .support_content {
  color: rgb(255, 255, 255);
  padding-block: 100px;
  text-align: center;
}

.support .support_content .support_title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 40px;
}

.support .support_content .support_title::after {
  content: "";
  width: 60px;
  height: 5px;
  background-color: rgb(255, 255, 255);
  display: block;
  margin: 10px auto;
  border-radius: 20px;
}

.support .support_content .support_list {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
}

.support .support_content .support_list .support_item_link {
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.support .support_content .support_list .support_item_link .support_item_icon {
  margin-bottom: 20px;
  transition-duration: 0.3s;
}

.support .support_content .support_list .support_item_link .support_item_title {
  font-size: 1.563rem;
  font-weight: 500;
  transition-duration: 0.3s;
}

.support .support_content .support_list .support_item_link .support_item_description {
  font-size: 1rem;
  transition-duration: 0.3s;
}

.support .support_content .support_list .support_item_link:hover>.support_item_icon {
  opacity: 0.6;
}

.support .support_content .support_list .support_item_link:hover>.support_item_title,
.support .support_content .support_list .support_item_link:hover>.support_item_description {
  color: rgba(255, 255, 255, 0.6);
}

.marquee {
  background-color: rgb(0, 0, 0);
}

.marquee .marquee_container {
  overflow: hidden;
}

.marquee .marquee_container .marquee_logo_list {
  padding-block: 20px;
  display: inline-block;
  white-space: nowrap;
  animation: marquee 40s linear infinite;
  overflow: hidden;
}

.marquee .marquee_container .marquee_logo_list .marquee_logo {
  display: inline-block;
  margin-inline: 20px;
  vertical-align: middle;
  height: 100%;
  max-height: 60px;
}

@keyframes marquee {
  from {
    transform: translateX(0%);
  }

  to {
    transform: translateX(-50%);
  }
}

@media (max-width: 834px) {
  .featured .featured_content {
    flex-direction: column;
  }

  .featured .featured_content .featured_text {
    text-align: center;
  }

  .featured .featured_content .featured_text .featured_title::after {
    margin: 10px auto;
  }

  .gallery .gallery_content .gallery_list {
    grid-template-columns: 1fr;
  }

  .support .support_content .support_list {
    flex-direction: column;
  }
}

.categories_guide .categories_guide_content {
  padding-block: 100px;
}

.categories_guide .categories_guide_content .categories_guide_title {
  font-size: 2.5rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 40px;
}

.categories_guide .categories_guide_content .categories_guide_title::after {
  content: "";
  width: 60px;
  height: 5px;
  background-color: rgb(0, 0, 0);
  display: block;
  margin: 10px auto;
  border-radius: 20px;
}

.categories_guide .categories_guide_content .categories_guide_list {
  display: flex;
  justify-content: space-between;
  gap: 80px 40px;
}

.categories_guide .categories_guide_content .categories_guide_list .categories_guide_item .categories_guide_item_title {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 20px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
  padding-bottom: 10px;
}

.categories_guide .categories_guide_content .categories_guide_list .categories_guide_item .categories_guide_item_list {
  list-style: none;
}

.categories_guide .categories_guide_content .categories_guide_list .categories_guide_item .categories_guide_item_list .categories_guide_item_list_item {
  margin-bottom: 20px;
}

.categories_guide .categories_guide_content .categories_guide_list .categories_guide_item .categories_guide_item_list .categories_guide_item_list_item:last-child {
  margin-bottom: unset;
}

@media (max-width: 834px) {
  .categories_guide .categories_guide_content {
    text-align: center;
  }

  .categories_guide .categories_guide_content .categories_guide_list {
    flex-direction: column;
  }
}

.warranty .warranty_content {
  padding-block: 100px;
}

.warranty .warranty_content .warranty_title {
  font-size: 2.5rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 40px;
}

.warranty .warranty_content .warranty_title::after {
  content: "";
  width: 60px;
  height: 5px;
  background-color: rgb(0, 0, 0);
  display: block;
  margin: 10px auto;
  border-radius: 20px;
}

.warranty .warranty_content .warranty_statement .warranty_statement_title {
  margin-bottom: 20px;
  font-weight: 700;
}

.warranty .warranty_content .warranty_statement .warranty_statement_description {
  font-size: 1.563rem;
  margin-bottom: 40px;
}

.warranty .warranty_content .warranty_statement .supplementary_specification .supplementary_specification_title {
  margin-bottom: 20px;
  font-weight: 700;
}

.warranty .warranty_content .warranty_statement .supplementary_specification .supplementary_specification_list {
  margin-left: 20px;
}

.warranty .warranty_content .warranty_statement .supplementary_specification .supplementary_specification_list .supplementary_specification_list_item {
  margin-bottom: 20px;
  font-size: 1.563rem;
}

.warranty .warranty_content .warranty_statement .supplementary_specification .supplementary_specification_list .supplementary_specification_list_item:last-child {
  margin-bottom: unset;
}

.service_center .service_center_content {
  padding-block: 100px;
}

.service_center .service_center_content .service_center_title {
  font-size: 2.5rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 40px;
}

.service_center .service_center_content .service_center_title::after {
  content: "";
  width: 60px;
  height: 5px;
  background-color: rgb(0, 0, 0);
  display: block;
  margin: 10px auto;
  border-radius: 20px;
}

.service_center .service_center_content .map {
  display: flex;
  justify-content: center;
  margin-bottom: 40px;
}

.service_center .service_center_content .map iframe {
  width: 100%;
  max-width: 1200px;
  height: 500px;
  border-radius: 10px;
  margin: 0 auto;
}

.service_center .service_center_content .service_center_info {
  text-align: center;
}

.service_center .service_center_content .service_center_info .service_center_info_item {
  font-size: 1.563rem;
  margin-bottom: 20px;
  word-wrap: break-word;
}

.service_center .service_center_content .service_center_info .service_center_info_item:last-child {
  margin-bottom: unset;
}

.where_to_buy .where_to_buy_content {
  padding-block: 100px;
}

.where_to_buy .where_to_buy_content .where_to_buy_title {
  font-size: 2.5rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 40px;
}

.where_to_buy .where_to_buy_content .where_to_buy_title::after {
  content: "";
  width: 60px;
  height: 5px;
  background-color: rgb(0, 0, 0);
  display: block;
  margin: 10px auto;
  border-radius: 20px;
}

.where_to_buy .where_to_buy_content .where_to_buy_list {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 80px;
}

.where_to_buy .where_to_buy_content .where_to_buy_list .where_to_buy_link {
  animation: wiggle 1s ease-in-out infinite;
}

.where_to_buy .where_to_buy_content .where_to_buy_list .where_to_buy_link .where_to_buy_link_img {
  width: 100%;
  height: 100%;
  max-width: 160px;
  max-height: 160px;
}

@keyframes wiggle {

  0%,
  100% {
    transform: scale(1) rotate(-5deg);
  }

  50% {
    transform: scale(1.1) rotate(5deg);
  }
}

@media (max-width: 834px) {
  .where_to_buy .where_to_buy_content .where_to_buy_list {
    flex-direction: column;
  }
}

.about_us .about_us_content {
  padding-block: 100px;
}

.about_us .about_us_content .about_us_title {
  font-size: 2.5rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 40px;
}

.about_us .about_us_content .about_us_title::after {
  content: "";
  width: 60px;
  height: 5px;
  background-color: rgb(0, 0, 0);
  display: block;
  margin: 10px auto;
  border-radius: 20px;
}

.about_us .about_us_content .about_us_description {
  font-size: 1.563rem;
  margin-bottom: 40px;
}

.about_us .about_us_content .about_us_img {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  border-radius: 10px;
}

.faq .faq_content {
  padding-block: 100px;
}

.faq .faq_content .faq_title {
  font-size: 2.5rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 40px;
}

.faq .faq_content .faq_title::after {
  content: "";
  width: 60px;
  height: 5px;
  background-color: rgb(0, 0, 0);
  display: block;
  margin: 10px auto;
  border-radius: 20px;
}

.faq .faq_content .faq_list {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 20px;
}

.faq .faq_content .faq_list .faq_list_item {
  background-color: rgb(255, 255, 255);
  border-radius: 5px;
  padding: 20px;
  width: 100%;
  max-width: 1000px;
  text-align: left;
}

.faq .faq_content .faq_list .faq_list_item .faq_list_item_q {
  font-weight: 700;
  font-size: 1rem;
  display: flex;
  justify-content: space-between;
}

.faq .faq_content .faq_list .faq_list_item .faq_list_item_q span {
  font-weight: bold;
}

.faq .faq_content .faq_list .faq_list_item .faq_list_item_a {
  display: none;
  color: rgb(77, 77, 77);
}

.faq .faq_content .faq_list .faq_list_item .faq_list_item_a.faq_list_item_a_active {
  display: block;
  margin-top: 10px;
}

.product_list .product_list_container .product_list_banner {
  width: 100%;
}

.product_list .product_list_container .product_list_banner .product_list_banner_img {
  width: 100%;
}

.product_list .subcategories .subcategories_content {
  padding-block: 100px;
}

.product_list .subcategories .subcategories_content .subcategories_title {
  font-size: 2.5rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 40px;
}

.product_list .subcategories .subcategories_content .subcategories_title::after {
  content: "";
  width: 60px;
  height: 5px;
  background-color: rgb(0, 0, 0);
  display: block;
  margin: 10px auto;
  border-radius: 20px;
}

.product_list .subcategories .subcategories_content .subcategories_product_list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 20px;
  position: relative;
}

.product_list .subcategories .subcategories_content .subcategories_product_list .no_products_found {
  width: 100%;
  position: absolute;
  text-align: center;
}

@media (max-width: 834px) {
  .product_list .product_list_container .subcategories .subcategories_content .subcategories_product_list {
    grid-template-columns: 1fr;
  }
}

.product_details {
  overflow: hidden;
}

.product_details .product_details_container .product_details_media {
  width: 100%;
  position: relative;
  display: flex;
  justify-content: center;
}

.product_details .product_details_container .product_details_media .product_details_product_media_vid {
  pointer-events: none;
}

.product_details .product_details_container .product_details_media .product_details_product_media_vid,
.product_details .product_details_container .product_details_media .product_details_product_media_img {
  width: 100%;
  height: auto;
}

.product_details .product_details_container .product_details_product_image {
  padding: 20px;
  background-color: rgb(0, 0, 0);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border-radius: 10px;
  margin: 20px 20px 0 20px;
}

.product_details .product_details_container .product_details_product_image .product_details_product_image_img_container .product_details_product_image_img {
  height: 100%;
  max-height: 400px;
  filter: drop-shadow(5px 5px 20px rgb(0, 0, 0));
  animation: float 5s ease-in-out infinite;
  z-index: 9;
}

.product_details .product_details_container .product_details_product_image .product_details_product_image_subtitle {
  color: rgb(255, 255, 255);
  font-size: 4rem;
  text-transform: uppercase;
  font-weight: 700;
  text-align: center;
}

.product_details .product_details_container .product_details_features_list {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 40px 0;
  padding-block: 100px;
}

.product_details .product_details_container .product_details_features_list .product_details_feature {
  text-align: center;
  background-color: rgb(255, 255, 255);
  padding: 20px;
  border-radius: 10px;
  width: 100%;
  max-width: 800px;
  border: 1px solid rgba(0, 0, 0, 0.2);
}

.product_details .product_details_container .product_details_features_list .product_details_feature .product_details_feature_title {
  font-size: 1.563rem;
  text-transform: uppercase;
  font-weight: 700;
}

.product_details .product_details_container .product_details_features_list .product_details_feature .product_details_feature_description {
  margin-bottom: 20px;
}

.product_details .product_details_container .product_details_features_list .product_details_feature .product_details_feature_img {
  width: 100%;
  height: auto;
  border-radius: 5px;
  margin: 0 auto;
}

.product_details .product_details_container .product_details_footer {
  padding-block: 100px;
  background-color: rgb(0, 0, 0);
}

.product_details .product_details_container .product_details_footer .product_details_footer_container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 80px;
  margin-bottom: 60px;
}

.product_details .product_details_container .product_details_footer .product_details_footer_container .product_details_footer_text {
  color: rgb(255, 255, 255);
}

.product_details .product_details_container .product_details_footer .product_details_footer_container .product_details_footer_text .product_details_footer_tagline {
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 80px;
}

.product_details .product_details_container .product_details_footer .product_details_footer_container .product_details_footer_text .product_details_footer_logo {
  width: 100px;
  margin-bottom: 20px;
}

.product_details .product_details_container .product_details_footer .product_details_footer_container .product_details_footer_text .product_details_footer_product_name {
  display: flex;
  flex-wrap: wrap;
  text-transform: uppercase;
  gap: 10px;
}

.product_details .product_details_container .product_details_footer .product_details_footer_container .product_details_footer_text .product_details_footer_product_name .product_details_footer_title {
  font-weight: 700;
}

.product_details .product_details_container .product_details_footer .product_details_footer_container .product_details_footer_img {
  height: 100%;
  max-height: 400px;
  margin: 0 auto;
}

.product_details .product_details_container .product_details_footer .shop_now_container {
  display: flex;
  justify-content: flex-start;
}

.product_details .product_details_container .product_details_footer .shop_now_container .shop_now {
  background-color: rgb(255, 255, 255);
  border-radius: 10px;
  width: 100%;
  max-width: 300px;
}

.product_details .product_details_container .product_details_footer .shop_now_container .shop_now .shop_now_content {
  padding: 20px;
  display: flex;
  flex-direction: column;
}

.product_details .product_details_container .product_details_footer .shop_now_container .shop_now .shop_now_content .shop_now_title {
  color: rgb(0, 0, 0);
  font-weight: 700;
  font-size: 1.563rem;
  margin-bottom: 20px;
  text-align: center;
}

.product_details .product_details_container .product_details_footer .shop_now_container .shop_now .shop_now_content .platform_list {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.product_details .product_details_container .product_details_footer .shop_now_container .shop_now .shop_now_content .platform_list .platform_list_item_link {
  padding: 10px;
  transition-duration: 0.3s;
}

.product_details .product_details_container .product_details_footer .shop_now_container .shop_now .shop_now_content .platform_list .platform_list_item_link .platform_list_item_img {
  width: 40px;
  transition-duration: 0.3s;
}

.product_details .product_details_container .product_details_footer .shop_now_container .shop_now .shop_now_content .platform_list .platform_list_item_link:hover {
  background-color: rgba(0, 0, 0, 0.2);
  border-radius: 5px;
}

.product_details .product_details_container .product_details_footer .shop_now_container .shop_now .shop_now_content .platform_list .platform_list_item_link:hover>.platform_list_item_img {
  transform: scale(1.1);
}

@keyframes float {

  0%,
  100% {
    transform: translateY(-20px) rotate(10deg);
  }

  50% {
    transform: translateY(20px);
  }
}

@media (max-width: 834px) {
  .product_details .product_details_container .product_details_product_image .product_details_product_image_img_container .product_details_product_image_img {
    max-height: 300px;
    max-width: 300px;
  }

  .product_details .product_details_container .product_details_product_image .product_details_product_image_subtitle {
    font-size: 2.5rem;
  }

  .product_details .product_details_container .product_details_footer .product_details_footer_container {
    flex-direction: column;
  }

  .product_details .product_details_container .product_details_footer .product_details_footer_container .product_details_footer_img {
    max-height: 300px;
    max-width: 300px;
  }

  .product_details .product_details_container .product_details_footer .shop_now_container {
    justify-content: center;
  }
}

.not_found .not_found_content {
  padding-block: 100px;
  display: flex;
  justify-content: center;
  text-align: center;
}

.not_found .not_found_content .not_found_container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.not_found .not_found_content .not_found_container .coming_soon_title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 40px;
}

.not_found .not_found_content .not_found_container .not_found_link {
  background-color: rgb(0, 0, 0);
  border-radius: 5px;
  padding: 10px 20px;
  color: rgb(255, 255, 255);
  font-weight: 500;
  display: inline-block;
}

.search-form {
  position: relative;
  display: flex;
  align-items: center;
  border: 1px solid #ccc;
  border-radius: 20px;
  background-color: white;
  padding: 5px 10px;
}

.search-input {
  border: none;
  outline: none;
  padding: 5px 10px;
  width: 200px;
  font-size: 14px;
}

.search-button {
  background: none;
  border: none;
  cursor: pointer;
}

.search-button img {
  width: 20px;
  height: 20px;
}

/* Dropdown Styling */
.search-suggestions {
  position: absolute;
  top: calc(100% + 5px);
  /* Ensures dropdown is below search bar */
  left: 0;
  width: 100%;
  max-width: 300px;
  background: #fff;
  border-radius: 8px;
  border: 1px solid #ddd;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  max-height: 350px;
  overflow-y: auto;
  display: none;
  z-index: 1000;
  padding: 10px 0;
}

.search-suggestion-item {
  display: flex;
  align-items: center;
  padding: 12px 15px;
  text-decoration: none;
  color: #333;
  font-size: 14px;
  transition: background 0.2s ease-in-out;
}

.search-suggestion-item:hover {
  background-color: #f9f9f9;
}

/* Image styling */
.search-suggestion-item img {
  width: 50px;
  height: 50px;
  object-fit: contain;
  border-radius: 5px;
  margin-right: 15px;
  background: #f8f8f8;
  padding: 5px;
  border: 1px solid #ddd;
}

/* Adjust text styling */
.search-suggestion-item .text-content {
  display: flex;
  flex-direction: column;
}

.search-suggestion-item .title {
  font-weight: 500;
  font-size: 14px;
}

.search-suggestion-item .subtitle {
  font-size: 12px;
  /* Smaller font for subtitle */
  color: #666;
}

/* Scrollbar */
.search-suggestions::-webkit-scrollbar {
  width: 8px;
}

.search-suggestions::-webkit-scrollbar-thumb {
  background: #ccc;
  border-radius: 10px;
}