@charset "UTF-8";
/*!
 * Bootstrap  v5.2.3 (https://getbootstrap.com/)
 * Copyright 2011-2022 The Bootstrap Authors
 * Copyright 2011-2022 Twitter, Inc.
 * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)
 */


body {
  font-family: "Roboto", -apple-system, BlinkMacSystemFont, "Segoe UI",
               "Helvetica Neue", Arial, "Noto Sans", sans-serif;
  font-weight: 300;           /* ultra-thin (make sure it’s loaded above) */
  font-style: normal;
  font-optical-sizing: auto;  /* works with variable Roboto */
  line-height: 1.4;
}

a {
    color: #000;
    text-decoration: none;
    background-color: transparent;
}


/* Make content expand to push the footer down */
.content {
	flex: 1; /* This pushes the footer to the bottom */
	padding: 0px;
}


/* Breadcrumb */
.breadcrumb-container{
    width: 100%;
    margin: 0 auto;
    background-color: #f2f2f2;
    position: relative;
    z-index: 10;
    -webkit-box-shadow: 0 .25rem .75rem rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 0 .25rem .75rem rgba(0, 0, 0, 0.1);
    box-shadow: 0 .25rem .75rem rgba(0, 0, 0, 0.1);
}

.breadcrumb{
	min-height: 76px;
	background-color: white;
}

.bc-wrap {
    width: 1370px;
    margin: 0 auto;
    padding: 0 30px;
    box-sizing: border-box;
    position: relative; /* Ensures correct stacking */
}

.bc-top-wrap{
	padding: 0;
    display: flex;
    justify-content: space-between;
    position: relative;
    height: 34px;
}

.bc-tilte-wrap {
    display: flex;
    justify-content: space-around;
    max-width: 504px;
    position: relative;
}

.bc-title{
	display: flex;
    justify-content: space-around;
    max-width: 504px;
    position: relative;
}

.bc-title{
	display: flex;
    justify-content: space-around;
    max-width: 504px;
    position: relative;
}

.bc-container-wrap {
    display: block;
    height: 50%;
    z-index: 10 !important;
	margin-top: 5px;
}

.bc-container{
	max-height: 2.125rem;
    max-width: 100%;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    display: inline-flex;
}

.bc-nav-wrap {
    padding: 0;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    height: 46px;
    width: 100%;
    max-width: 1370px;
    padding-right: 60px;
    position: relative; /* Change from absolute */
}

.bc-nav-bar{
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
}

.menu-item {
    line-height: 42px;
    margin-right: 50px;
    padding-left: 0;
    padding-right: 0;
    border-bottom: 4px solid transparent;
    cursor: pointer;
    box-shadow: none;
    font-size: 14px;
    color: #333;
    box-sizing: border-box;
}

.breadcrumb-container {
    position: sticky;
    top: 0;
    z-index: 1000;
    background-color: white; /* Ensure it's visible */
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.1); /* Optional: Adds a shadow */
}

.home-btn {
    display: inline;
    position: relative;
}

.nav-2-container {
    max-height: 2.125rem;
    max-width: 100%;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    display: inline-flex;
}

.nav-2-container .nav-ul {
    display: flex;
    flex-direction: row;
    justify-content: end;
    width: 100%;
    text-decoration: none;
    list-style-type: none;
    align-items: center;
    padding-left: 0;
}

.nav-2-container .nav-ul .nav-dw {
    position: relative;
}



.nav-2-container .nav-ul i {
    margin-left: 0px;
}

.triangle-indicator {
    margin-top: .35rem;
    margin-left: 1.375rem;
    margin-bottom: .1875rem;
    background-image: url(../img/icon-dropdown-1.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    height: 10px;
    width: 10px;
    display: inline-block;
    vertical-align: middle;
    cursor: pointer;
}

.nav-2-container .nav-ul .nav-dw .link-drp {
    font-size: .75rem;
    color: #333;
    width: auto;
    text-overflow: ellipsis;
    position: relative;
    z-index: 100;
	padding-left: 12px;
    padding-top: 11px;
}

/* Hide small-screen breadcrumb on larger screens */
.sm-screen {
    display: none;
}

/* Hide large-screen breadcrumb on small devices */
.lg-screen {
    display: block;
}

@media (max-width: 768px) {
    .lg-screen {
        display: none;
    }

    .sm-screen {
        display: block;
    }
	
	.triangle-indicator {
		margin-right: 10px;
		margin-top: 8px;
		height: 10px !important;
		width: 10px;
	}
}

.breadcrumb-container.sm-screen {
    overflow-x: hidden;
    width: 100%;
}

/* Dropdown */
.bc .has-dropdown { position: relative; }
/* Submenu positioned immediately under the trigger (no gap) */
.bc .has-dropdown .dropdown-menu {
  position: absolute;
  top: 100%;          /* was 35px — remove the gap */
  left: 0;
  font-size: 12px;
  list-style: none;
  display: none;
  color: #505050;
  margin: 0;          /* avoid accidental offset */
  padding: .25rem 0;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: .5rem;
  box-shadow: 0 10px 25px rgba(0,0,0,.08);
  z-index: 1000;
}

/* Invisible hover “bridge” so you can move the mouse down without closing */
.bc .has-dropdown .dropdown-menu::before {
  content: "";
  position: absolute;
  top: 10px;     /* overlap the gap if any */
  left: 0;
  right: 0;
  height: 10px;   /* bridge height */
  background: transparent;
  /* pointer-events default is fine; it just extends hover area via parent containment */
}

.bc .has-dropdown.open > .dropdown-menu,
.bc .has-dropdown:hover > .dropdown-menu { display: block; }

.bc .dropdown-item {
  display: block;
  padding: .5rem .75rem;
  color: #111827;
  text-decoration: none;
  white-space: nowrap;
}
.bc .dropdown-item:hover { background: #f3f4f6; }

#mobile-bc { position: relative; z-index: 2000; margin-top:5px;}
#mobile-bc .breadcrumb-container.sm-screen,
#mobile-bc .bcrumb,
#mobile-bc .bc-wrap,
#mobile-bc .bc-top-wrap,
#mobile-bc .bc-container-wrap { overflow: visible; }

.bc-item.level-0 { padding-left: 0; }
.bc-item.level-1 { padding-left: 14px; }
.bc-item.level-2 { padding-left: 28px; }
.bc-item.level-3 { padding-left: 42px; }
.bc-item.level-4 { padding-left: 56px; }
.bc-item.level-5 { padding-left: 70px; }

/* Responsive tweak */
@media (hover: none) {
  .bc .has-dropdown:hover > .dropdown-menu { display: none; } /* rely on JS tap */
}

.sm-screen,
.sm-screen * {
    max-width: 100%;
    box-sizing: border-box;
    overflow-x: hidden;
	height: auto;
}


#navbar-toggler {
    padding: .25rem .75rem;
    font-size: 1.25rem;
    line-height: 1;
    background-color: transparent;
    border: 1px solid transparent;
    border-radius: .25rem;
	margin-right: 0px;
}


.mobile-menu {
  width: 100%;
  #max-width: 350px;
  background: #fff;
  border: 1px solid #dee2e6;
  border-radius: 0.5rem;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  position: relative;
}
.mobile-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem;
  border-bottom: 1px solid #dee2e6;
  font-weight: bold;
}
.menu-panel {
  #position: absolute;
  width: 100%;
  height: calc(100% - 70px);
  top: 70px;
  left: 0;
  background: #fff;
  transition: transform 0.3s ease;
  overflow-y: auto;
}
.menu-panel.hidden {
  transform: translateX(100%);
}
.menu-panel.visible {
  transform: translateX(0);
}

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

.mobile-menu li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 1rem;
  border-bottom: 1px solid #dee2e6;
  #cursor: pointer;
  transition: background 0.2s;
}

li:hover {
  background: #f8f9fa;
}
	
.hidden {
  display: none !important;
}
.menu-panel ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.menu-panel li {
  padding: 0.75rem 1rem;
  border-bottom: 1px solid #dee2e6;
  #cursor: pointer;
}

.submenu {
  padding-left: 1.5rem; /* Adds left padding for indentation */
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}

ul.submenu li {
  padding-left: 2.5rem;
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
  #border-bottom: 1px solid #dee2e6;
}

.submenu li {
  padding: 0.5rem 1rem;
  border-bottom: none;
  font-size: 0.95rem;
}

.accordion-menu {
  list-style: none;
  padding: 0;
  margin: 0;
}

.accordion-menu li{
  display: block;
}

.accordion-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 1rem;
  #cursor: pointer;
  #border-bottom: 1px solid #dee2e6;
}

.accordion-header span {
  flex: 1;
}

.menu-panel	a{
	color: #000;
    text-decoration: none;
    background-color: transparent;
	cursor: pointer;
}

.menu-panel	i{
	cursor: pointer;
}

/* Page */
.page-header{
	float: left;	
    width: 100%;
	box-sizing: border-box;
}

.ph-wrap{
	padding-left: 30px;
    padding-right: 30px;
	padding-top: 50px;
    padding-bottom: 20px;
	text-align: center;
    margin: 0 auto;
}

.ph-title{
	font-size: 40px;
    line-height: 50px;
	color: #333;
	font-weight: 600;
    letter-spacing: normal;
}

.ph-title h2 {
    font-family: "OpenSansBold", "Microsoft YaHei", "Helvetica Neue", "PingFang SC", "Hiragino Sans GB", "WenQuanYi Micro Hei", sans-serif;
    font-weight: inherit;
    color: inherit;
    line-height: inherit;
    margin: 0;
	height: auto;
}

/* General */
.seo-fs-4{
	font-size: 20px;
    line-height: 24px;
    padding-top: 10px;
    padding-bottom: 0 !important;
    margin: 0;
    color: #333;
    text-align: left;
    font-weight: 600;
    word-break: break-word;
    position: relative;
    z-index: 999;
}

.btn-mute{
	font-size: 1rem; 
	border-radius: 25px;
    border: 2px solid black; 
	color: black; 
	background: transparent;
	font-size: 1.25rem;
}

.btn-active{
	font-size: 1rem; 
	border-radius: 25px;
    border: 2px solid red; 
	color: white; 
	background: red;
	font-size: 1.25rem;
}

.btn-mute:hover{ 
	color: black;
}

.btn-active:hover{
	color: white; 
}

.banner-h{
	font-family: "Open Sans", sans-serif;
    font-weight: 700;
}

.overlay-text {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    z-index: 10; /* Higher than the image */
}

.overlay-text.overlay-left{
  align-items: flex-start;
  text-align: left;
  justify-content: center;
  padding-left: 4rem ;
}

.overlay-text.overlay-right{
  align-items: flex-end;
  text-align: right;
  justify-content: center;
  padding-right: 3rem;
}

.title-h2{
    font-weight: 700;
}

.no-dec-list{
    list-style-type: none;
}

.no-dec-list-bold{
    list-style-type: none;
	font-size: 0.85rem;
	font-weight: bold;
}

/* Video */
.video-container {
	position: relative;
	overflow: hidden;
	border-radius: 10px;
	cursor: pointer;
	display: inline-block;
}
.video-thumbnail {
	width: 100%;
	border-radius: 10px;
	display: block;
}
.play-button {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	background: rgba(0, 0, 0, 0.7);
	color: white;
	border: none;
	border-radius: 12px;
	width: 100px;
	height: 50px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 24px;
	transition: background 0.3s;
}
.play-button:hover {
	background: rgba(255, 0, 0, 1);
}
.video-title {
	position: absolute;
	bottom: 10px;
	left: 10px;
	color: white;
	font-size: 1.2rem;
	font-weight: bold;
	background: rgba(0, 0, 0, 0.5);
	padding: 5px 10px;
	border-radius: 5px;
}

#videoModal .modal-content {
	background-color: transparent;
	border: 0;
}

/* Product List */
.prod-cat-container{
    width: 100%;
    margin: 0 auto;
    background-color: #f2f2f2;
    position: relative;
}

.prod-cat .card img{
  height:150px;
  width:100%;
}

div [class^="col-"]{
  padding-left:5px;
  padding-right:5px;
}
.card{
  transition:0.5s;
  cursor:pointer;
}
.card-title{  
  font-size:17px;
  font-weight: bold;
  transition:1s;
  cursor:pointer;
}
.card-title i{  
  font-size:17px;
  font-weight: bold;
  transition:1s;
  cursor:pointer;
  color:#ffa710
}
.card-title i:hover{
  transform: scale(1.25) rotate(100deg); 
  color:#18d4ca;
  
}
.card:hover{
  transform: scale(1.05);
  box-shadow: 10px 10px 15px rgba(0,0,0,0.3);
}
.card-text{
  height:80px;  
}

.card::before, .card::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  transform: scale3d(0, 0, 1);
  transition: transform .3s ease-out 0s;
  background: rgba(255, 255, 255, 0.1);
  content: '';
  pointer-events: none;
}
.card::before {
  transform-origin: left top;
}
.card::after {
  transform-origin: right bottom;
}
.card:hover::before, .card:hover::after, .card:focus::before, .card:focus::after {
  transform: scale3d(1, 1, 1);
}

.cred a{
    color: #868686;
    text-decoration: none;
    background-color: transparent;
}

.page-higlight .list-bold li {
  background-color: transparent !important;
}

.page-higlight .list-bold li:hover {
  background-color: transparent !important;
}

.brand-back p{
	padding-top : 5px !important; padding-bottom: 5px !important;
}