@import url('https://fonts.googleapis.com/css2?family=Signika:wght@300;400;500;600;700&display=swap');

* {
	padding: 0;
	margin: 0;
	box-sizing: border-box;
}

body {
	font-family: 'Signika', sans-serif;
	font-size: 16px;
	line-height: 1.4;
	color: #000000;
}

a {
	text-decoration: none;
	color: #ff7c51;
}

a:hover {
	color: #000;
}

p:last-of-type {
	margin-bottom: 0;
}

.btn {
	border-radius: 0;
	font-size: 18px;
	padding: 13px 37px;
	text-transform: uppercase;
	line-height: normal;
}

.btn-primary {
	background: #ff5b26;
	border-color: #ff5b26;
}

.btn-primary:hover {
	background: #3797ff;
	border-color: #3797ff;
}

/* --------------------------- Navbar style start --------------------------- */
.navbar-brand p {
	font-size: 40px;
	line-height: 40px;
	font-weight: 700;
	text-transform: uppercase;
}

.contact-number a {
	color: #3797ff;
	font-size: 24px;
	line-height: 24px;
	transition: all 0.3s;
}

.contact-number i {
	font-size: 24px;
	line-height: 20px;
	color: #3797ff;
	margin-right: 10px;
	margin-top: 3px;
	transition: all 0.3s;
}

.contact-number:hover a, .contact-number:hover i {
	color: #ff7c51;
}

.social-media ul li a {
	color: #3797ff;
	border: 2px solid #3797ff;
	line-height: 38px;
	width: 40px;
	height: 40px;
	display: inline-block;
	text-align: center;
}

.social-media ul li a:hover {
	background-color: #3797ff;
	transition: all 0.3s;
}

.social-media ul li a:hover i {
	color: #ffffff;
	transition: all 0.3s;
}

.main-navbar {
	position: relative;
}

.main-navbar::after {
	content: "";
	display: block;
	background-color: #3797ff;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 66px;
	z-index: 1;
}

.main-navbar .navbar {
	position: relative;
	z-index: 10;
}

.main-navbar .navbar-nav li {
	margin: 0px 10px;
}

.main-navbar .navbar-nav li a {
	font-size: 16px;
	line-height: 22px;
	color: #FFFFFF;
	padding: 20px 10px;
	text-transform: uppercase;
}

.main-navbar .navbar-nav li.active a, .main-navbar .navbar-nav li a:hover:not(.main-navbar .dropdown-menu li a) {
	color: #000000;
}

.dropdown-toggle::after {
	vertical-align: 0.15em;
}

.main-navbar .navbar-nav li .dropdown-menu {
	border-radius: 0;
}

.main-navbar .navbar-nav li .dropdown-menu {
	padding: 0;
	width: 270px;
}

.main-navbar .navbar-nav li .dropdown-menu li {
	margin: 0;
}

.main-navbar .navbar-nav li .dropdown-menu li a {
	padding: 6px 10px;
	border-radius: 0;
	background-color: #3797ff;
	display: block;
}

.main-navbar .navbar-nav li .dropdown-menu li a:hover {
	background-color: #2675c9;
}

/* mobile toggler */
.mobile-menu-toggler:focus, .mobile-menu-toggler:focus-visible {
	border: 0;
	box-shadow: none;
	outline: 0;
}

.mobile-menu-toggler i {
	font-size: 28px;
	line-height: 42px;
	color: #FFFFFF;
	width: 42px;
	height: 42px;
	display: block;
}

.navbar .mobile-menu-toggler.navbar-toggler[aria-expanded="true"] i::before {
	content: "\f00d";
}

/*======================================Product Section=====================================*/
.product_section {
	padding: 70px 0;
}

.productbox {
	display: none;
}

.sec_head {
	margin-bottom: 60px;
}

.sec_head  h2 {
	font-size: 36px;
	font-weight: 600;
}

.sec_head  .title_sep {
	margin-bottom: 10px;
}

.product_block .product_img {
	max-width: 100%;
	height: 310px;
	width: 100%;
	object-fit: cover;
}

.product_block {
	border: 1px solid #ececec;
	height: 100%;
	text-align: center;
	box-shadow: 0 0px 22px 0 rgb(8 18 109 / 10%);
}

.product_block .product_detail_block {
	padding: 25px;
	border-top: 1px solid #e7f1fd;
}

.product_block .product_title {
	position: relative;
	display: flex;
	flex-direction: column;
	margin-bottom: 18px;
	font-size: 24px;
}

.product_block .product_title:after {
	content: "";
	background: #ff5b26;
	width: 48px;
	height: 1px;
	display: block;
	position: relative;
	margin: 10px auto 3px;
	left: -5px;
}

.product_block .product_title:before {
	content: "";
	background: #ff5b26;
	width: 48px;
	height: 1px;
	display: block;
	margin: 0 auto;
	order: 1;
	right: -5px;
	position: relative;
}

.product_detail_block p {
	line-height: 26px;
}

.product_img_block {
	position: relative;
}

.overlay_block .product_link {
	align-items: center;
	width: 70px;
	height: 70px;
	justify-content: center;
	display: flex;
	border-radius: 100%;
	color: #ff5b26;
	background: #fff;
}

.product_block .overlay_block {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	background: rgb(55 151 255 / 60%);
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.5s;
	opacity: 0;
	visibility: hidden;
}

.product_img_block:hover .overlay_block {
	opacity: 1;
	visibility: visible;
}

/* ------------------------------ produtct page ----------------------------- */
.product-list {
	background: #f9f9f9;
	padding: 25px;
	box-shadow: 1px 1px 3px 2px rgb(0 0 0 / 10%);
}

.product-list h2 {
	margin-bottom: 20px;
}

.product-list ul li {
	margin-bottom: 12px;
}
.product-list ul li:last-child{
	margin-bottom: 0px;
}

.product-list ul li::marker {
	content: "\f101";
	font-family: "Font Awesome 6 Free";
	font-weight: 900;
	line-height: 20px;
	color: #ff5b26;
	margin-right: 10px;
}

.product-list ul li a {
	color: #000000;
	font-size: 20px;
	line-height: 36px;
	margin-left: 5px;
	transition: all 0.3s;
	line-height: normal;
}

.sigle-product-slider .slider:first-of-type {
	border-bottom: 1px solid #e7f1fd;
}

.sigle-product-slider .slider {
	margin-bottom: 0;
}

.product-list ul li a:hover {
	color: #ff5b26;
}

.sigle-product-slider .product-slid img {
	width: 100%;
}

.sigle-product-slider {
	box-shadow: 0 15px 39px 0 rgb(8 18 109 / 10%);
	border: 1px solid #e7f1fd;
	border-radius: 10px;
	overflow: hidden;
}

.product-info {
	margin-top: 50px;
	border: 1px solid #000000;
	padding: 30px;
}

.sigle-product-slider .slider-for .product-slid {
	margin: 0px !important;
}

.sigle-product-slider .slick-initialized .slick-slide {
	margin: 10px;
	border: 1px solid #e7f1fd;
	border-radius: 6px;
	overflow: hidden;
	box-shadow: 0 0px 2px 0 rgb(8 18 109 / 10%);
}

.sigle-product-slider .slick-prev:before, .sigle-product-slider .slick-next:before {
	color: #ffffff;
	font-size: 16px;
	font-family: "Font Awesome 6 Free";
	font-weight: 900;
	line-height: 20px;
	background-color: #000000;
	padding: 10px;
	border-radius: 100px;
	width: 40px;
	height: 40px;
	display: block;
}

.sigle-product-slider .slick-prev:before {
	content: "\f060";
}

.sigle-product-slider .slick-next:before {
	content: "\f061";
}

.sigle-product-slider .slick-prev {
	z-index: 10;
	left: 20px;
}

.sigle-product-slider .slick-next {
	z-index: 10;
	right: 40px;
}

.product-info .product-info-title {
	margin-bottom: 40px;
}

.product-info .product-info-box {
	margin-bottom: 50px;
}

.product-info .product-info-box li {
	display: flex;
	margin-bottom: 20px;
}

.product-info .product-info-box .info-title {
	min-width: 200px;
	font-weight: 600;
}

.product-info .product-info-box .info-text {
	width: auto;
	padding-left: 10px;
}

/*======================================Footer=====================================*/
footer {
	background: #2a2d33;
}

.footer_top {
	padding: 70px 0;
}

.footer_logo {
    font-weight: bold;
    font-size: 48px;
    margin-bottom: 15px;
    display: inline-block;
    vertical-align: top;
    line-height: 0;
}

.footer-widget h4 {
	color: #fff;
	font-weight: 600;
	margin-bottom: 24px;
	font-size: 18px;
}

.footer_bottom {
	color: #fff;
	background: #1e2228;
	text-align: center;
	padding: 26px 0;
}

.footer_menu ul, .contact_info ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

.footer_menu li {
	margin-bottom: 13px;
}

.footer_menu li:last-of-type {
	margin-bottom: 0;
}

.footer_menu a {
	color: #fff;
}

.footer_menu a:before {
	content: "\f101";
	font-weight: 900;
	margin-right: 12px;
	font-family: "Font Awesome 6 Free";
	color: #ff5b26;
}

.footer_menu a:hover {
	color: #ff5b26;
}

.social_icons {
	display: flex;
	list-style: none;
	margin: 0;
	padding: 0;
}

.social_icons li {
	margin-right: 15px;
}

.social_icons a {
	color: #fff;
	border: 2px solid #ff5b26;
	border-radius: 100%;
	width: 40px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.5s;
}

.social_icons a:hover {
	background: #ff5b26;
	color: #fff;
}

.contact_info li {
	display: flex;
	align-items: center;
	margin-bottom: 28px;
}

.contact_info li i {
	font-size: 22px;
	color: #ff5b26;
	margin-right: 13px;
}

.contact_info li a {
	color: #fff;
}

.contact_info li a:hover {
	color: #ff7c51;
}

.footer-widget {
	margin-bottom: 20px;
}

.sortproduct {
    margin: 25px 0 0;
    width: 100%;
    display: inline-block;
}


.toppart {
    margin: 0 0 40px;
    text-align: center;
}
.toppart p {
    max-width: 840px;
    margin: 0 auto;
}
.three-col .col-box{
    background: #f5f5f5;
    padding: 20px;
    border-radius: 15px;
    border: 1px solid #ececec;
    height: 100%;
}
.three-col h3 {
    font-size: 24px;
}

.product-info h5 {
    display: block;
    border-bottom: 1px solid #C0C0C0;
    margin: 0 15px 15px !important;
    padding: 0 0 13px 0;
    width: calc(100% - 30px);
}


@media all and (min-width:992px) {
	.navbar .nav-item .dropdown-menu {
		display: none;
	}

	.navbar .nav-item:hover .dropdown-menu {
		display: block;
	}

	.navbar .nav-item .dropdown-menu {
		margin-top: 0;
	}

}

@media (max-width:991px) {
	.contact-number i {
		font-size: 20px;
		line-height: 30px;
	}

	.contact-number a {
		font-size: 20px;
		line-height: 30px;
	}

	.social-media ul li a {
		line-height: 32px;
		width: 35px;
		height: 35px;
	}

	.social-media ul li a i {
		font-size: 14px;
	}

	.product-list {
		margin-bottom: 30px;
	}

	.product-list ul li {
		width: 50%;
	}

	.product-list ul {
		display: flex;
		flex-wrap: wrap;
	}

	.product-list ul li {
		width: 50%;
	}

	.sigle-product {
		margin-bottom: 30px;
	}
	.three-col .col-box {
	    margin: 0 0 20px;
	    height: auto;
	}

}

@media (max-width:767px) {
	body {
		font-size: 15px;
		line-height: 1.3;
	}

	.top-bar {
		width: 100%;
	}

	.navbar-brand p {
		font-size: 30px;
	}

	.main-navbar::after {
		height: 50px;
	}

	.main-navbar .menu {
		margin-right: calc(-.5 * var(--bs-gutter-x));
		margin-left: calc(-.5 * var(--bs-gutter-x));
	}

	.main-navbar .navbar .navbar-nav {
		background: #f5f5f5;
	}

	.main-navbar .navbar-nav li a {
		color: #000;
		padding: 12px 10px;
	}

	.main-navbar .navbar-nav li .dropdown-menu a {
		color: #ffffff;
	}

	.main-navbar .navbar-nav li {
		margin: 0;
	}

	.main-navbar .navbar-nav li.active a, .main-navbar .navbar-nav li a:hover:not(.main-navbar .dropdown-menu li a) {
		background-color: #2675c9;
		color: #FFFFFF;
	}

	.product_block .product_detail_block {
		padding: 20px;
	}

	.product_section {
		padding: 50px 0;
	}

	.sec_head {
		margin-bottom: 30px;
	}

	.sec_head  h2 {
		font-size: 28px;
	}

	.btn {
		font-size: 15px;
	}

	.product-list ul li {
		width: 100%;
	}

	.product-info .product-info-box li {
		flex-direction: column;
	}

	.product-info .product-info-box .info-title, .product-info .product-info-box .info-text {
		width: 100%;
	}

	.product-info .product-info-box li .info-title {
		margin-bottom: 5px;
	}

	.footer-widget {
		margin-bottom: 50px;
	}

	.footer_top {
		padding: 50px 0 0;
	}

	.footer_bottom {
		padding: 15px 0;
		font-size: 15px;
	}

	.footer-widget h4 {
		margin-bottom: 17px;
		font-size: 16px;
	}

	.footer_logo {
		font-size: 36px;
		margin-bottom: 10px;
	}

}

@media (max-width:575px) {
	.contact-number i {
		font-size: 16px;
		line-height: 26px;
		margin-right: 5px;
	}

	.contact-number a {
		font-size: 18px;
		line-height: 28px;
	}

	.mobile-menu-toggler i {
		font-size: 23px;
	}

}

@media (max-width:460px) {
	.social-media ul li a {
		line-height: 26px;
		width: 30px;
		height: 30px;
	}

	.social-media ul li a i {
		font-size: 14px;
	}

}

.sigle-product-slider .slick-initialized.slider-nav .slick-slide img {
	height: 140px;
	object-fit: cover;
	width: 100%;
	cursor: pointer;
}