@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
body {
	margin: 0;
	font-family: var(--bs-body-font-family);
	font-size: var(--bs-body-font-size);
	font-weight: var(--bs-body-font-weight);
	line-height: var(--bs-body-line-height);
	text-align: var(--bs-body-text-align);
	background-color: var(--bs-body-bg);
	-webkit-text-size-adjust: 100%;
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
	color:#4b4b4b !important;
	font-family: 'Poppins', sans-serif;
}
body {
	-youbkit-touch-callout: none;
	/* iOS Safari */
	-youbkit-user-select: none;
	/* Chrome 6.0+, Safari 3.1+, Edge & Opera 15+ */
	-moz-user-select: none;
	/* Firefox */
	-ms-user-select: none;
	/* IE 10+ and Edge */
	user-select: none;
	/* Non-prefixed version,
                                currently supported by Chrome and Opera */
}
.img-responsive {
	width: 100%;
}
a {
	outline: none;
	text-decoration: none !important;
}
.text-left-m-center {
	text-align: left;
}

.text-right-m-center {
	text-align: right;
}

#scrollbar::-webkit-scrollbar-track {
	-webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, .3);
	background-color: #333;
}

#scrollbar::-webkit-scrollbar {
	width: 6px;
	background-color: #2784bf;
}

#scrollbar::-webkit-scrollbar-thumb {
	background-color: #2784bf;
	border-left: 1px solid #2784bf;
}
.icon-bar-social {
	position: fixed;
	top: 78%;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
	z-index: 10000;
	right: 2px;
}
.icon-whatsapp {
	position: relative;
}
.back-to-top {
	cursor: pointer;
	position: fixed;
	bottom: 20px;
	right: 20px;
	display: none;
	color: #263da3;
	text-decoration: none;
	font-size: 25px;
}
.lds-hourglass {
	display: inline-block;
	position: relative;
	width: 80px;
	height: 80px;
}

.lds-hourglass:after {
	content: " ";
	display: block;
	border-radius: 50%;
	width: 0;
	height: 0;
	margin: 8px;
	box-sizing: border-box;
	border: 32px solid #fff;
	border-color: #fff transparent #fff transparent;
	animation: lds-hourglass 1.2s infinite;
}

@keyframes lds-hourglass {
	0% {
		transform: rotate(0);
		animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
	}

	50% {
		transform: rotate(900deg);
		animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
	}

	100% {
		transform: rotate(1800deg);
	}
}

.header-top {
	background-color: #2784bf;
	padding: 7px 0;
}

.header-top-link-ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

.header-top-link-li {
	display: inline-block;
}

.header-top-link-li a {
	color: #ffffff;
	font-size: 14px;
	font-weight: 300;
}
.header-top-link-li a:hover{text-decoration: underline !important;}

.header-top-link-li i {
	font-size: 13px;
	margin-right: 3px;
	background: #2784bf;
	padding: 5px;
	color: #ece810;
	border-radius: 100%;
}

.logo {
	width: 310px;
	position: relative;
}

/* Menu Navigation */
.menu-navigation
{
	letter-spacing: 0.5px;
	padding-top: 0;
	background: #fff;
}
body.offcanvas-active {
	overflow: hidden;
}

.offcanvas-header {
	display: none;
}

.screen-darken {
	height: 100%;
	width: 0%;
	z-index: 30;
	position: fixed;
	top: 0;
	right: 0;
	opacity: 0;
	visibility: hidden;
	background-color: rgba(34, 34, 34, 0.6);
	transition: opacity .2s linear, visibility 0.2s, width 2s ease-in;
}

.screen-darken.active {
	z-index: 10;
	transition: opacity .3s ease, width 0s;
	opacity: 1;
	width: 100%;
	visibility: visible;
}

/* ============ mobile view ============ */
@media all and (max-width: 991px) {
	.offcanvas-header {
		display: block;
	}

	.mobile-offcanvas {
		visibility: hidden;
		transform:
			translateX(-100%);
		border-radius: 0;
		display:
			block;
		position: fixed;
		top: 0;
		left: 0;
		height: 100%;
		z-index: 1200;
		width: 80%;
		overflow-y: scroll;
		overflow-x: hidden;
		transition: visibility .3s ease-in-out, transform .3s ease-in-out;
		background: #fff;
	}

	.mobile-offcanvas.show {
		visibility: visible;
		transform: translateX(0);
	}

	.mobile-offcanvas .container,
	.mobile-offcanvas .container-fluid {
		display: block;
	}
}

@media all and (min-width: 992px) {
	.navbar .dropdown-menu-end {
		right: 0;
		left: auto;
	}

	.navbar .nav-item .dropdown-menu {
		display: block;
		opacity: 0;
		visibility: hidden;
		transition: .3s;
		margin-top: 0;
	}

	.navbar .nav-item:hover .nav-link {}

	.navbar .dropdown-menu.fade-down {
		top: 80%;
		transform: rotateX(-75deg);
		transform-origin: 0% 0%;
	}

	.navbar .dropdown-menu.fade-up {
		top: 160%;
	}

	.navbar .nav-item:hover .dropdown-menu {
		transition: .3s;
		opacity: 1;
		visibility: visible;
		top: 100%;
		transform: rotateX(0deg);
	}
}


/*** Header carousel ***/
@media (max-width: 768px) {
	.header-carousel .owl-carousel-item {
		position: relative;
		min-height: 500px;
	}

	.header-carousel .owl-carousel-item img {
		position: absolute;
		width: 100%;
		height: 100%;
		object-fit: cover;
	}
}

.header-carousel .owl-nav {
	position: absolute;
	top: 85px;
	right: 8%;
	transform: translateY(-50%);
	display: flex;
	flex-direction: column;
}

.header-carousel .owl-nav .owl-prev,
.header-carousel .owl-nav .owl-next {
	margin: 7px 0;
	width: 35px;
	height: 35px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #FFFFFF;
	background: transparent;
	border: 1px solid #FFFFFF;
	font-size: 16px;
	transition: .5s;
}

.header-carousel .owl-nav .owl-prev:hover,
.header-carousel .owl-nav .owl-next:hover {
	background: var(--primary);
	border-color: var(--primary);
}


.banner-title {
	font-size: 40px;
	font-weight: 700;
	color: #4b4b4b !important;
	text-transform: uppercase;
}

.header-carousel .title-h5 {
	color: #4b4b4b!important;
	font-weight: 300;
	font-size: 23px;
}

.slider-bg
{
	background: #ffffffd4;
	padding: 10px;
	width: 90%;
}


/*** products ***/
.products {
    min-height: 100vh;
    background: linear-gradient(rgba(255, 255, 255, .9), rgba(255, 255, 255, .9)), url(../img/carousel-1.jpg) center center no-repeat;
    background-attachment: fixed;
    background-size: cover;
}

.products-item .products-overlay {
    position: absolute;
    width: 100%;
    height: 0;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgb(255 255 255 / 74%);
    overflow: hidden;
    opacity: 0;
    transition: .5s;
}

.products-item:hover .products-overlay {
    height: 100%;
    opacity: 1;
}

.products-item img {
    transition: .5s;
}
.products-item:hover img {
    transform: scale(1.1);
}

.footer-section
{
	background: #2784bf;
}

.footer-link
{
	margin: 0 0 10px 0;
	font-weight: 300;
}

.footer-social {
	/* margin-top: 20px; */
}

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

.footer-social ul li {
	margin: 0 10px 0 0;
	display: inline-block;
}

.footer-social ul li a i {
	text-align: center;
	-webkit-transition: 400ms;
	font-size: 20px;
	-moz-transition: 400ms;
	-o-transition: 400ms;
	transition: 400ms;
}

.icon-facebook {
	color: #4267B2 !important;
}

.icon-twitter {
	color: #00acee !important;
}

.icon-instagram {
	color: #8a3ab9 !important;
}

.footer-link i {
	margin-right: 5px;
	font-size: 95% !important;
	color: #ece810;
}

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

.page-breadcrumb
{
    background-color: #333;
    background-image: url(../img/slider-2.jpg);
    background-position: bottom;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 50px 0;
}