/* header */
.website_logo {
	margin: 4px 0px;
}
.website_logo img,
.footer_logo {
	width: 200px;
}
.header_navbar .menuzord {
    display: flex;
    justify-content: space-between;
    background-color: transparent;
}
.header_navbar .menuzord-brand {
	margin: 0px;
}
.header_navbar .menuzord-menu > li {
	margin: 0px 10px;
}
.header_navbar .menuzord-menu > li > a {
	color: var(--primary-color);
	font-size: 16px;
	padding: 26px 10px 10px;
}
.header_navbar.sticky .menuzord-menu > li > a {
	color: var(--black-color);
}
/* Inner Banner */
.inner_banner_area {
	display: block;
	min-height: 300px;
	background-position: 50% 50%;
	background-size: cover;
	position: relative;
}
.inner_banner_content {
	position: absolute;
	top: 65%;
	left: 0;
	right: 0;
	max-width: 1170px;
	margin: 0 auto;
	width: 100%;
	z-index: 1;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
}
.inner_banner_heading {
	text-align: center;
}
.inner_banner_heading .breadcrumb {
	font-size: 20px;
	background-color: transparent;
}
.inner_banner_heading .breadcrumb .breadcrumb-item {
	text-transform: capitalize;
}
.inner_banner_heading .breadcrumb .breadcrumb-item a {
	color: var(--black-color);
}
.inner_banner_heading .breadcrumb .breadcrumb-item.active {
	color: var(--secondary-color);
	font-weight: 500;
	text-transform: capitalize;
}
.inner_banner_title {
	color: #fff;
	text-transform: uppercase;
	display: none;
}

/*===========================
      Product css 
===========================*/
.product_card a {
	width: 100%;
}
.features_image {
	overflow: hidden;
	border-radius: 40px;
	box-shadow: 0px -3px 2px 0px #ddd;
}
.features_image img {
	transition: all ease-in-out 0.5s;
}
.single_features:hover .features_image img {
	transform: scale(1.1);
}

/***** Kosmos Sidebar ***/
.kosmos_product_category {
	margin-bottom: 1px;
	background-color: var(--secondary-color);
	text-align: center;
}
.kosmos_product_category .kosmos_product_name.category_active {
	background-color: var(--primary-color);
}
.kosmos_product_name,
.kosmos_product_name:hover {
	color: var(--white-color);
	width: 100%;
	text-transform: uppercase;
	padding: 10px;
}

/* Kosmos Inner Page */
.kosmos_inner_card {
	box-shadow: 0px 10px 25px #999;
	margin-bottom: 30px;
	padding: 20px;
}
.kosmos_inner_image {
	border: 1px solid #ddd;
}
.kosmos_inner_image img {
	padding: 20px;
}
.kosmos_inner_image,
.kosmos_inner_content {
	margin-bottom: 20px;
}
.kosmos_inner_title,
.kosmos_inner_content ul {
	margin-bottom: 15px;
}
.kosmos_inner_content table,
.kosmos_inner_content ul li {
	font-size: 14px;
}
.kosmos_inner_content ul {
	padding-left: 10px;
}
.kosmos_inner_content ul li {
	list-style-type: "- ";
	line-height: 25px;
	color: var(--black-color);
}
.enquire_div {
	text-align: center;
}
.catalogue_div {
	display: flex;
	justify-content: start;
	margin-top: 25px;
	gap: 25px;
}
.catalogue_div.end {
	justify-content: end;
}
.catalogue_btn.center {
	justify-content: center;
}
.catalogue_btn {
	border: 1px solid var(--primary-color);
	color: var(--primary-color);
	text-transform: uppercase;
	padding: 8px 10px;
	border-radius: 4px;
}
.catalogue_btn:hover,
.catalogue_btn:focus,
.catalogue_btn:active {
	background-color: var(--primary-color);
	color: var(--white-color);
	border-color: var(--primary-color);
}

.enquire_btn,
.enquire_btn:hover,
.enquire_btn:focus {
	padding: 10px 15px;
	background-color: var(--ternary-color);
	border-radius: 4px;
	color: var(--white-color);
	font-size: 14px;
	text-transform: uppercase;
}

.datasheet_btn {
	border: 1px solid var(--secondary-color);
	color: var(--secondary-color);
	text-transform: uppercase;
	padding: 8px 10px;
	border-radius: 4px;
}
.datasheet_btn:hover,
.datasheet_btn:focus,
.datasheet_btn:active {
	background-color: var(--secondary-color);
	color: var(--white-color);
	border-color: var(--secondary-color);
}

/* Kosmos Cable Ties */
.cable_ties_content p {
	margin-top: 20px;
	text-align: justify;
}

/* Separator */
.separator {
	position: relative;
	font-size: 28px;
	color: var(--secondary-color);
	text-transform: uppercase;
	text-align: center;
	font-weight: 500;
}

.separator::before,
.separator::after {
	content: "";
	position: relative;
	display: block;
	width: 50px;
	height: 2px;
	background: var(--secondary-color);
	margin-left: auto;
	margin-right: auto;
}

.separator::before {
	top: 0;
	margin-bottom: 20px;
}

.separator::after {
	bottom: 0;
	margin-top: 20px;
}

/*** Shavison table ****/

.table_heading,
.table_heading h5,
.table_heading p {
	background-color: var(--secondary-color);
	color: var(--white-color);
	text-align: center;
	font-weight: 500;
}
/* Product Page */
.product_card {
	transition: all ease-in-out 0.5s;
	/* box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px; */
	box-shadow: rgb(0 0 0 / 24%) 0px 3px 8px;
	border-radius: 10px;
	margin-bottom: 25px;
}

.product_card:hover,
.product_card:focus {
	/* box-shadow: 0 8px 8px -6.4px rgba(0, 0, 0, 0.16); */
	box-shadow: rgba(17, 12, 46, 0.15) 0px 15px 50px 0px;
}
.product_title {
	padding: 10px;
	text-align: center;
	background-color: var(--secondary-color);
	border-radius: 0px 0px 10px 10px;
	color: var(--white-color);
	text-transform: uppercase;
	font-size: 14px;
}

.product_image {
	min-height: 180px;
	display: flex;
	align-items: center;
	justify-content: center;
}
.product_image img {
	border-radius: 10px 10px 0px 0px;
}

.product_sidebar {
	position: sticky;
	top: 95px;
	height: 500px;
	min-height: 500px;
	overflow: auto;
}

/**** Trinity *****/
.trinity_detailp {
	font-size: 14px;
	line-height: 25px;
	margin-bottom: 10px;
	text-align: justify;
}
.trinity_table {
	padding: 20px;
}
.click_to_go {
	display: flex;
	justify-content: center;
	gap: 5%;
}
.click_to_go a {
	padding: 5px 10px;
	border: 1px solid var(--secondary-color);
	color: var(--secondary-color);
	border-radius: 4px;
}

.trinity_table,
.shavison_table {
	font-size: 14px;
}

/* Elmex */

.elmex_heading {
	font-size: 20px;
	color: var(--primary-color);
}
.col-lg-12.col-md-12.col-sm-12.col-xs-12 {
	display: flex;
	padding: 10px;
}
.horizontal-align {
	display: flex;
	justify-content: center;
}

.elmex_table td,
.elmex_table th {
	padding: 10px;
	text-align: center;
}
.discription_img img {
	width: 100%;
}

/***** Pricelist *****/
.pricelist_tab_container {
	padding: 20px 10px;
	background-color: #ffffff;
}
.pricelist_tabs {
	margin-bottom: 0px;
	padding: 20px;
	display: flex;
	border-bottom: 0px;
	justify-content: center;
}
.pricelist_tabs .pricelist_nav_link {
	padding: 10px 15px;
	font-size: 14px;
	border-radius: 50px;
	box-shadow: -1px 1px 3px #282828;
	margin-right: 20px;
	font-weight: 700;
	margin-bottom: 20px;
	display: flex;
	align-items: center;
	justify-self: center;
}
.pricelist_tabs .pricelist_nav_link.active,
.pricelist_tabs .pricelist_nav_link.active:focus,
.pricelist_tabs .pricelist_nav_link.active:hover {
	background-color: transparent;
	color: var(--primary-color);
	box-shadow: 0px 2px 4px 2px #dddddd;
}
.pricelist_tabs .pricelist_nav_link:hover {
	background-color: transparent;
	color: #282828;
	box-shadow: inset -1px -1px 7px 0px #282828;
}
.pricelist_nav_link img {
	width: 100px;
}
.pricelist_content {
	box-shadow: 5px 8px 30px 0 rgba(31, 35, 37, 0.08);
	padding: 20px;
}
.pricelist-card {
	box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px,
		rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
	border-radius: 4px;
}
.pricelist-image {
	display: flex;
	background: #fff;
	justify-content: center;
}

.pricelist-button {
	text-align: center;
	background-color: var(--primary-color);
	color: #fff;
	font-size: 13px;
	padding: 10px 5px;
	border-radius: 0px 0px 4px 4px;
}

/* Certificate */

.certificate_card {
	margin-bottom: 25px;
}
.certificate_card:hover {
	cursor: pointer;
}
.certificate_img {
	box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 4px;
	border-radius: 0px 0px 4px 4px;
	display: flex;
	justify-content: center;
	align-items: center;
}
.certificate_img img {
	height: 250px;
	width: 100%;
	object-fit: contain;
}

.certificate_title {
	text-align: center;
	padding: 10px;
}
.certificate_title h6 {
	color: var(--primary-color);
	margin: 0;
	border-bottom: 1px solid var(--primary-color);
	display: inline-block;
	padding-bottom: 5px;
	font-weight: 600;
}

/* footer */

.footer_logo {
	padding: 5px;
	background-color: var(--white-color);
}
.footer_brand_link {
	margin-top: 80px;
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
	.footer_brand_link {
		margin-top: 0px;
	}
}
@media only screen and (max-width: 576px) {
	.footer_brand_link {
		margin-top: 0px;
	}
	.footer_link_wrapper .footer_brand_link .link {
		padding-top: 0px;
	}
}

.plz-wait {
	display: none;
}


/* Madhura CSS Start */

h1.about-title {
    font-size: 35px;
    text-align: center;
    margin-top: -50px;
}


/* New Loader CSS Start */


/* Mobile Header */
.mobile-header {
    padding: 10px 0;
    background: #fff;
}
.mobile-nav {
    display: flex;
    justify-content: start;
    align-items: center;
    gap: 15px;
}
.menu-toggle {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
}
.mobile-logo img {
    width: 120px;
}

/* Sidebar Styles */
.sidebar {
    position: fixed;
    top: 0;
    left: -280px; /* Initially hidden */
    width: 280px;
    height: 100vh;
    background-color: #111;
    padding-top: 20px;
    transition: 0.4s;
    z-index: 1000;
    box-shadow: 3px 0 10px rgba(0, 0, 0, 0.2);
}
.sidebar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
}
.sidebar-logo {
    width: 180px;
	background-color: #fff;
	padding: 10px;
}
.close-btn {
    font-size: 30px;
    background: none;
    border: none;
    color: #fff;
    cursor: pointer;
}
.sidebar-nav {
    list-style: none;
    padding: 0;
}
.sidebar-nav li {
    padding: 10px 20px;
}
.sidebar-nav li a {
    color: #fff;
    text-decoration: none;
    display: block;
}
.sidebar-nav li a:hover {
    background: rgba(255, 255, 255, 0.1);
}
.arrow-icon {
    float: right;
    transition: 0.3s;
}
.sidebar-dropdown .sidebar-submenu {
    display: none;
    list-style: none;
    padding-left: 20px;
}
.sidebar-dropdown.active .sidebar-submenu {
    display: block;
}
.sidebar-dropdown.active .arrow-icon {
    transform: rotate(180deg);
}

/* Show Sidebar */
.sidebar.active {
    left: 0;
}

/* Overlay Effect */
#overlay {
    position: fixed;
    display: none;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 999;
}
#overlay.active {
    display: block;
}