@import url("https://fonts.googleapis.com/css2?family=Bungee&amp;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&amp;display=swap");

@import url("https://fonts.googleapis.com/css2?family=Nunito:ital,wght@0,200..1000;1,200..1000&amp;display=swap");

@import url("https://fonts.googleapis.com/css2?family=Nunito+Sans:ital,opsz,wght@0,6..12,200..1000;1,6..12,200..1000&amp;display=swap");

@import url("https://fonts.googleapis.com/css2?family=Work+Sans:ital,wght@0,100..900;1,100..900&amp;display=swap");

@import url("https://fonts.googleapis.com/css2?family=Lora:ital,wght@0,400..700;1,400..700&amp;display=swap");

@import url("https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&amp;display=swap");

@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&amp;");

@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..900;1,400..900&amp;display=swap");

:root {
	--bodyColor: #303030;
	--bodyBg: #fff;
	--whiteColor: #ffffff;
	--whiteColor2: #f6f6f6;
	--blackColor: #000000;
	--blackColor2: #333333;
	--contentColor: #303030;
	--headingColor: #1f1f25;
	--primaryColor: #0a85d1;
	--secondaryColor: #f34f3f;
	--borderColor: #eeeeee;
	--greyColor: #ebebeb;
	--greyColor2: #333333;
	--yellow: #eab73e;
	--yellow2: #c29958;
	--red: #d3122a;
	--greywhite: #f69679;
	--green: #0b9d8a;
	--borderColor2: #ccc;
	--greyColor1: #f6f6f6;
	--greyColor3: #717171;
	--greyColor4: #f5f5f5;
	--deepblue: #1e1345;
	--darkgrey: #f6f6f6;
	--darkgrey2: #f1f1f1;
	--darkgrey3: #5a5a5a;
	--pink: #ce126e;
	--borderRadius: 5px;
	--borderRadius2: 10px;
	--borderRadius3: 15px;
	--borderRadius4: 100px;
	--transition: .3s;
	--transition2: transform 0.65s cubic-bezier(0.05, 0.2, 0.1, 1) 0s, box-shadow 0.65s cubic-bezier(0.05, 0.2, 0.1, 1) 0s;
	--bodyFont: "Poppins", sans-serif;
	--headingFont: "Futura Std", sans-serif;
	--gradientColor: linear-gradient(90deg, rgba(255, 192, 41, 1) 9.5%, rgba(130, 99, 255, 1) 74.49%)
  --gradientColor2 : linear-gradient(3.98deg, rgba(0, 0, 0, 0) 3.24%, var(--blackColor) 93.62%);
}

.is_dark {
	--bodyColor: #ffffff;
	--bodyBg: #1a1a1a;
	--whiteColor: #1a1a1a;
	--whiteColor2: #1a1a1a;
	--blackColor2: #fff;
	--contentColor: #fff;
	--headingColor: #fff;
	--greyColor: #333333;
	--blackColor: #fff;
}

.layout__2 {
	--bodyFont: "Nunito", sans-serif;
	--headingFont: "Nunito", sans-serif;
	--primaryColor: #eab73e;
}

.layout__3 {
	--bodyFont: "Work Sans", sans-serif;
	--headingFont: "Work Sans", sans-serif;
	--primaryColor: #d3122a;
}

.layout__4 {
	--bodyFont: "Lora", sans-serif;
	--headingFont: "Lora", sans-serif;
	--primaryColor: #f69679;
}

.layout__5 {
	--bodyFont: "Lato", sans-serif;
	--headingFont: "Lato", sans-serif;
	--primaryColor: #c29958;
}

.layout__6 {
	--bodyFont: "Nunito Sans", sans-serif;
	--headingFont: "Nunito Sans", sans-serif;
	--primaryColor: #0b9d8a;
}

.layout__7 {
	--bodyFont: "Inter", sans-serif;
	--headingFont: "Inter", sans-serif;
	--primaryColor: #02a9f7;
}

.layout__8 {
	--bodyFont: "Lato", sans-serif;
	--headingFont: "Playfair Display", serif;
	--primaryColor: #ff3654;
}

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

body {
	font-family: var(--bodyFont);
	background-color: var(--bodyBg);
	font-size: 16px;
	font-weight: 400;
	line-height: 1.8;
	position: relative;
	color: var(--bodyColor);
}

p {
	font-size: 16px;
	margin-bottom: 15px;
	color: var(--contentColor);
}

a {
	text-decoration: none;
	transition: var(--transition);
}

p,
a,
.btn,
button,
p,
input,
select,
textarea,
li,
img {
	-webkit-transition: all var(--transition) ease-out 0s;
	-moz-transition: all var(--transition) ease-out 0s;
	-ms-transition: all var(--transition) ease-out 0s;
	-o-transition: all var(--transition) ease-out 0s;
	transition: all var(--transition) ease-out 0s;
}

svg {
	width: 25px;
	transition: var(--transition);
}

a {
	color: var(--contentColor);
}

a:hover {
	color: var(--primaryColor);
}

input:focus-visible {
	outline: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	color: var(--headingColor);
	font-family: var(--headingFont);
	-webkit-transition: all 0.3s ease-out 0s;
	-moz-transition: all 0.3s ease-out 0s;
	-ms-transition: all 0.3s ease-out 0s;
	-o-transition: all 0.3s ease-out 0s;
	transition: all 0.3s ease-out 0s;
	margin-bottom: 15px;
}

.common__row {
	align-items: center;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-weight: 500;
}

ul {
	margin: 0px;
	padding: 0px;
}

li {
	list-style: none;
	display: inline-block;
}

.row {
	--bs-gutter-x: 1.875rem;
}

.container,
.container-fluid,
.container-lg,
.container-md,
.container-sm,
.container-xl,
.container-xxl {
	--bs-gutter-x: 1.875rem;
	padding-right: calc(var(--bs-gutter-x) * 0.5);
	padding-left: calc(var(--bs-gutter-x) * 0.5);
}

@media (min-width: 1500px) and (max-width: 1920px) {
	.container {
		max-width: 1200px;
	}
}

.container-fluid.hero__fullwidth__spacing {
	padding-left: 195px;
	padding-right: 195px;
}

@media (min-width: 1366px) and (max-width: 1499px) {
	.container-fluid.hero__fullwidth__spacing {
		padding-left: 50px;
		padding-right: 50px;
	}
}

@media (min-width: 992px) and (max-width: 1365px) {
	.container-fluid.hero__fullwidth__spacing {
		padding-left: 15px;
		padding-right: 15px;
	}
}

@media (min-width: 768px) and (max-width: 991px) {
	.container-fluid.hero__fullwidth__spacing {
		padding-left: 15px;
		padding-right: 15px;
	}
}

@media (max-width: 767px) {
	.container-fluid.hero__fullwidth__spacing {
		padding-left: 15px;
		padding-right: 15px;
	}
}

@media (min-width: 1500px) and (max-width: 1920px) {
	.container__width .container {
		max-width: 1320px;
	}
}

@media (min-width: 1500px) and (max-width: 1920px) {
	.layout__7 .container {
		max-width: 1320px;
	}
}

.grid__coustom__wrapper {
	padding-left: calc(var(--bs-gutter-x) * 0.5);
	padding-right: calc(var(--bs-gutter-x) * 0.5);
}

.column__custom__class {
	padding-left: 15px;
	padding-right: 15px;
}

.custom__col__padding {
	padding-left: 5px;
	padding-right: 5px;
}

.custom__row__margin {
	margin-left: -5px;
	margin-right: -5px;
}

.column__custom__class__2 {
	padding: 0 7px;
}

.row__custom__class {
	margin-left: -15px;
	margin-right: -15px;
	padding: 0;
}

.sp_100 {
	padding: 100px 0;
}

.sp_90 {
	padding: 90px 0;
}

.sp_80 {
	padding: 80px 0;
}

.sp_70 {
	padding: 70px 0;
}

.sp_60 {
	padding: 60px 0;
}

.sp_50 {
	padding: 50px 0;
}

.sp_40 {
	padding: 40px 0;
}

.sp_30 {
	padding: 30px 0;
}

.sp_20 {
	padding: 20px 0;
}

.sp_top_120 {
	padding-top: 120px;
}

.sp_top_100 {
	padding-top: 100px;
}

@media (min-width: 992px) and (max-width: 1365px) {
	.sp_top_100 {
		padding-top: 80px;
	}
}

@media (min-width: 768px) and (max-width: 991px) {
	.sp_top_100 {
		padding-top: 50px;
	}
}

@media (max-width: 767px) {
	.sp_top_100 {
		padding-top: 30px;
	}
}

.sp_top_90 {
	padding-top: 90px;
}

@media (min-width: 992px) and (max-width: 1365px) {
	.sp_top_90 {
		padding-top: 70px;
	}
}

@media (min-width: 768px) and (max-width: 991px) {
	.sp_top_90 {
		padding-top: 50px;
	}
}

@media (max-width: 767px) {
	.sp_top_90 {
		padding-top: 30px;
	}
}

.sp_top_80 {
	padding-top: 80px;
}

@media (min-width: 992px) and (max-width: 1365px) {
	.sp_top_80 {
		padding-top: 60px;
	}
}

@media (min-width: 768px) and (max-width: 991px) {
	.sp_top_80 {
		padding-top: 50px;
	}
}

@media (max-width: 767px) {
	.sp_top_80 {
		padding-top: 50px;
	}
}

.sp_top_70 {
	padding-top: 70px;
}

@media (min-width: 768px) and (max-width: 991px) {
	.sp_top_70 {
		padding-top: 50px;
	}
}

@media (max-width: 767px) {
	.sp_top_70 {
		padding-top: 30px;
	}
}

.sp_top_60 {
	padding-top: 60px;
}

@media (min-width: 992px) and (max-width: 1365px) {
	.sp_top_60 {
		padding-top: 40px;
	}
}

@media (min-width: 768px) and (max-width: 991px) {
	.sp_top_60 {
		padding-top: 30px;
	}
}

@media (max-width: 767px) {
	.sp_top_60 {
		padding-top: 20px;
	}
}

.sp_top_50 {
	padding-top: 50px;
}

@media (min-width: 992px) and (max-width: 1365px) {
	.sp_top_50 {
		padding-top: 30px;
	}
}

@media (min-width: 768px) and (max-width: 991px) {
	.sp_top_50 {
		padding-top: 20px;
	}
}

@media (max-width: 767px) {
	.sp_top_50 {
		padding-top: 10px;
	}
}

.sp_top_40 {
	padding-top: 40px;
}

@media (min-width: 992px) and (max-width: 1365px) {
	.sp_top_40 {
		padding-top: 15px;
	}
}

@media (min-width: 768px) and (max-width: 991px) {
	.sp_top_40 {
		padding-top: 10px;
	}
}

@media (max-width: 767px) {
	.sp_top_40 {
		padding-top: 10px;
	}
}

.sp_top_30 {
	padding-top: 30px;
}

.sp_top_20 {
	padding-top: 20px;
}

.sp_bottom_110 {
	padding-bottom: 110px;
}

.sp_bottom_120 {
	padding-bottom: 120px;
}

.sp_bottom_100 {
	padding-bottom: 100px;
}

@media (min-width: 768px) and (max-width: 991px) {
	.sp_bottom_100 {
		padding-bottom: 50px;
	}
}

@media (max-width: 767px) {
	.sp_bottom_100 {
		padding-bottom: 30px;
	}
}

.sp_bottom_90 {
	padding-bottom: 90px;
}

@media (min-width: 768px) and (max-width: 991px) {
	.sp_bottom_90 {
		padding-bottom: 50px;
	}
}

@media (max-width: 767px) {
	.sp_bottom_90 {
		padding-bottom: 30px;
	}
}

.sp_bottom_80 {
	padding-bottom: 80px;
}

@media (min-width: 992px) and (max-width: 1365px) {
	.sp_bottom_80 {
		padding-bottom: 60px;
	}
}

@media (min-width: 768px) and (max-width: 991px) {
	.sp_bottom_80 {
		padding-bottom: 50px;
	}
}

@media (max-width: 767px) {
	.sp_bottom_80 {
		padding-bottom: 30px;
	}
}

.sp_bottom_70 {
	padding-bottom: 70px;
}

@media (min-width: 768px) and (max-width: 991px) {
	.sp_bottom_70 {
		padding-bottom: 50px;
	}
}

@media (max-width: 767px) {
	.sp_bottom_70 {
		padding-bottom: 30px;
	}
}

.sp_bottom_60 {
	padding-bottom: 60px;
}

@media (min-width: 768px) and (max-width: 991px) {
	.sp_bottom_60 {
		padding-bottom: 40px;
	}
}

@media (max-width: 767px) {
	.sp_bottom_60 {
		padding-bottom: 30px;
	}
}

.sp_bottom_50 {
	padding-bottom: 50px;
}

@media (min-width: 768px) and (max-width: 991px) {
	.sp_bottom_50 {
		padding-bottom: 20px;
	}
}

@media (max-width: 767px) {
	.sp_bottom_50 {
		padding-bottom: 10px;
	}
}

.sp_bottom_40 {
	padding-bottom: 40px;
}

.sp_bottom_30 {
	padding-bottom: 30px;
}

.sp_bottom_20 {
	padding-bottom: 20px;
}

.col--30 {
	padding-left: 30px;
	padding-right: 30px;
}

#scrollUp {
	width: 50px;
	height: 50px;
	line-height: 50px;
	background-color: var(--whiteColor);
	color: var(--primaryColor);
	right: 20px;
	bottom: 60px;
	text-align: center;
	overflow: hidden;
	border-radius: 50px;
	z-index: 9811 !important;
	position: fixed;
	display: block;
	box-shadow: 0px 10px 50px rgba(13, 38, 59, 0.15);
}

#scrollUp i {
	display: block;
	line-height: 50px;
	font-size: 20px;
	transition: 0.5s;
}

#scrollUp:hover i {
	background: var(--primaryColor);
	color: var(--whiteColor);
}

@keyframes dot-anim {
	0% {
		transform: translateY(20px);
	}

	100% {
		transform: translateY(0px);
	}
}

@keyframes dot-anim-2 {
	0% {
		transform: translateX(20px);
	}

	100% {
		transform: translateX(0px);
	}
}

@keyframes up-do-anim {
	0%, 25%, 50%, 75%, 100% {
		transform: translateY(0);
	}

	40% {
		transform: translateY(-30px);
	}

	60% {
		transform: translateY(-15px);
	}
}

@keyframes cir-anim {
	0% {
		-webkit-transform: rotate(0deg);
		-moz-transform: rotate(0deg);
		-ms-transform: rotate(0deg);
		transform: rotate(0deg);
	}

	100% {
		-webkit-transform: rotate(360deg);
		-moz-transform: rotate(360deg);
		-ms-transform: rotate(360deg);
		transform: rotate(360deg);
	}
}

@keyframes move5 {
	0% {
		-webkit-transform: translateY(0);
		transform: translateY(0);
	}

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

	100% {
		-webkit-transform: translateY(0);
		transform: translateY(0);
	}
}

.dot__color {
	color: var(--primaryColor);
}

.overflow__hidden {
	overflow: hidden;
}

.default__button {
	background: #05426d;
    color: #ffffff;
	    border-radius: 33px;
	padding: 12px 30px;
	text-transform: unset;
	font-size: 16px;
	font-style: normal;
	font-weight: 500;
	font-family: var(--headingFont);
	display: inline-block;
	position: relative;
	line-height: 1;
	z-index: 1;
	text-align: center;
}

@media (min-width: 1366px) and (max-width: 1499px) {
	.default__button {
		padding: 12px 30px;
	}
}

@media (min-width: 992px) and (max-width: 1365px) {
	.default__button {
		padding: 10px 30px;
	}
}

@media (min-width: 768px) and (max-width: 991px) {
	.default__button {
		padding: 7px 25px;
	}
}

@media (max-width: 767px) {
	.default__button {
		padding: 10px 15px;
		font-size: 15px;
	}
}



.default__button__2 {
	padding: 15px 50px;
	border: 1px solid var(--borderColor);
	background: transparent;
	display: inline-block;
}

@media (min-width: 992px) and (max-width: 1365px) {
	.default__button__2 {
		padding: 10px 40px;
	}
}

@media (min-width: 768px) and (max-width: 991px) {
	.default__button__2 {
		padding: 10px 40px;
	}
}

@media (max-width: 767px) {
	.default__button__2 {
		padding: 10px 40px;
	}
}




.default__button.btn__yellow {
	background: var(--yellow);
	border: 1px solid var(--yellow);
	color: var(--whiteColor);
}




.default__button::after {
	content: "";
	position: absolute;
	z-index: -1;
	transition: all 0.3s;
	width: 0%;
	height: 100%;
	top: 0;
	left: 0;
	background: var(--whiteColor);
	border-radius: 5px;
}


.red__color {
	color: var(--red);
}

.primary__color {
	color: var(--primaryColor);
}

.section__padding {
	padding: 0 150px;
}

.custom__column__padding.row,
.custom__column__padding.row * {
	--bs-gutter-x: 5px;
}

@media (min-width: 1500px) and (max-width: 1920px) {
	.custom__column__5 {
		width: 20%;
	}
}


.section__title {
	padding-bottom: 40px;
}



.body__overlay {
	position: relative;
}

.body__overlay::after {
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	content: "";
	background-color: var(--blackColor);
	z-index: 9999;
	opacity: 0;
	visibility: hidden;
	transition: var(--transition);
}

.body__overlay.opened::after {
	opacity: 0.5;
	visibility: visible;
}








.headerarea__left {
	display: flex;
	height: 100%;
	align-items: center;
}

.headerarea__main__menu {
	text-align: center;
}



.headerarea__main__menu nav ul > li {
	position: relative;
}

.headerarea__main__menu nav ul > li > a {
	display: block;
	font-size: 16px;
	padding: 10px 20px;
	font-weight: 600;
	position: relative;
	color: var(--blackColor);
	line-height: 60px;
	font-family: var(--headingFont);
}

@media (min-width: 992px) and (max-width: 1365px) {
	.headerarea__main__menu nav ul > li > a {
		line-height: 50px;
		font-size: 15px;
		padding: 10px 15px;
	}
}



.headerarea__main__menu nav ul > li:hover > a {
	color: var(--primaryColor);
}

.headerarea__main__menu nav ul > li .headerarea__submenu {
	position: absolute;
	clip: rect(0px, 200vw, 0, 0px);
	transition: opacity 0.4s linear, clip 0.6s linear, visibility 0s 0.4s;
	transform: translateZ(0);
	background-color: var(--whiteColor);
	min-width: 200px;
	transition: 0.3s;
	top: 100%;
	left: 0;
	padding: 14px 0;
	opacity: 0;
	visibility: hidden;
	z-index: 999;
	box-shadow: 0 5px 20px 0 rgba(23, 44, 82, 0.1);
	border-radius: 15px;
}

.headerarea__main__menu nav ul > li .headerarea__submenu li {
	display: block;
	margin: 0;
}

.headerarea__main__menu nav ul > li .headerarea__submenu li:hover > a {
	color: var(--primaryColor);
}

.headerarea__main__menu nav ul > li .headerarea__submenu li a {
	padding: 8px 15px;
	text-align: left;
	display: block;
	color: var(--blackColor);
	line-height: 30px;
	font-family: var(--bodyFont);
	font-weight: normal;
}

.headerarea__main__menu nav ul > li .headerarea__submenu.headerarea__submenu__2 li a {
	color: var(--blackColor);
}

.headerarea__main__menu nav ul > li .headerarea__submenu.headerarea__megamenu {
	padding: 20px;
	padding-bottom: 30px;
}

.headerarea__main__menu nav ul > li .headerarea__submenu.headerarea__megamenu ul li a {
	padding: 8px 0;
	display: inline-block;
}

.headerarea__main__menu nav ul > li:hover .headerarea__submenu {
	visibility: visible;
	opacity: 1;
	clip: rect(0px, 100vw, 200vh, -30px);
	transition: clip 0.6s linear, opacity 0.4s linear;
}


.headerarea__right {
	text-align: right;
	display: flex;
	justify-content: flex-end;
	height: 100%;
	align-items: center;
}

.headerarea__right ul li {
	margin-right: 15px;
}

@media (min-width: 1366px) and (max-width: 1499px) {
	.headerarea__right ul li {
		margin-right: 10px;
	}
}

@media (min-width: 992px) and (max-width: 1365px) {
	.headerarea__right ul li {
		margin-right: 5px;
	}
}

.headerarea__right ul li:last-child {
	margin-right: 0;
}

.headerarea__contact__info a {
	display: flex;
	align-items: center;
	justify-content: end;
	height: 100%;
	font-size: 20px;
}

.headerarea__contact__info a:hover svg {
	fill: var(--primaryColor);
}

.headerarea__contact__info a svg {
	width: 30px;
	fill: var(--blackColor);
	transition: 0.3s;
	margin-right: 10px;
}



.header__label {
	position: absolute;
	right: 13px;
	font-size: 10px;
	background-color: var(--secondaryColor);
	display: inline-block;
	color: var(--whiteColor);
	line-height: 1;
	padding: 3px 10px;
	border-radius: 3px;
	top: 12px;
	font-weight: normal;
}



.transparent__header {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	width: 100%;
	z-index: 9;
}





.headerarea__middle {
	padding: 20px 0;
}

@media (min-width: 768px) and (max-width: 991px) {
	.headerarea__middle {
		padding-top: 0px;
		padding-bottom: 0px;
	}
}

@media (max-width: 767px) {
	.headerarea__middle {
		padding-top: 0px;
		padding-bottom: 0px;
	}
}

.headerarea__middle .headerarea__logo {
	text-align: center;
}








.header__topbar {
	        background: linear-gradient(90deg, #e0f7fa, #b2ebf2, #80deea);
	padding-top: 4px;
	padding-bottom: 4px;
	border-bottom: 1px solid;
	border-color: rgba(0, 0, 0, 0);
}

.header__topbar__left ul li {
	    color: #000000;
	margin: 0 30px 0 0;
	font-size: 14px;
	font-weight: 400;
}

.header__topbar__left ul li i {
	margin-right: 3px;
}

.header__topbar__left ul li svg {
	width: 18px;
	margin-right: 5px;
}

.header__topbar__right {
	display: flex;
	align-items: center;
	justify-content: end;
}




.cursor__pointer {
	cursor: pointer;
}

/* mobail__menu__start */
/*Mobile menu*/
.mob_menu_wrapper {
	display: none;
	padding-top: 15px;
	padding-bottom: 15px;
}

.mobile-off-canvas .mobile-aside-button {
	font-size: 30px;
}

.mobile__logo {
	margin-bottom: 20px;
	padding-bottom: 20px;
	border-bottom: 1px solid var(--borderColor);
}

.mobile-off-canvas .mobile-aside-button:hover {
	color: var(--primaryColor);
}

.header-right-wrap {
	display: flex;
	justify-content: flex-end;
}

.mobile-aside-button {
	font-size: 20px;
}

.header_area .mob_menu_wrapper {
	display: none;
}

.wrapper .body-overlay {
	background: rgba(35, 35, 36, 0.7) none repeat scroll 0 0;
	height: 100%;
	left: 0;
	opacity: 0;
	position: fixed;
	top: 0;
	-webkit-transition: all 0.5s ease-in-out 0s;
	transition: all 0.5s ease-in-out 0s;
	visibility: hidden;
	width: 100%;
	z-index: 9999;
}

.wrapper.overlay-active .body-overlay {
	opacity: 1;
	visibility: visible;
}

.mobile-off-canvas-active .mobile-aside-close {
	width: 40px;
	height: 40px;
	display: inline-block;
	background: #343538;
	color: var(--whiteColor);
	line-height: 40px;
	text-align: center;
	top: 0;
	font-size: 18px;
	position: absolute;
	cursor: pointer;
	right: -40px;
}

.mobile-off-canvas-active .mobile-aside-close i {
	transition: 0.3s;
}

.mobile-off-canvas-active {
	position: fixed;
	top: 0;
	width: 330px;
	min-height: 100vh;
	bottom: 0;
	z-index: 111;
	left: -330px;
	visibility: hidden;
	opacity: 1;
	-webkit-transition: all 400ms ease-out;
	transition: all 400ms ease-out;
	background-color: var(--whiteColor);
	-webkit-box-shadow: 0 0 87px 0 rgba(0, 0, 0, 0.09);
	box-shadow: 0 0 87px 0 rgba(0, 0, 0, 0.09);
	z-index: 9999;
}

@media only screen and (max-width: 767px) {
	.mobile-off-canvas-active {
		width: 260px;
		left: -260px;
	}
}

.mobile-off-canvas-active.inside {
	visibility: visible;
	opacity: 1;
	left: 0px;
}

mobile-aside-close .mobile-off-canvas-active .mobile-aside-close i {
	-webkit-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
	display: inline-block;
	color: var(--whiteColor);
}

.mobile-off-canvas-active .mobile-aside-close:hover i {
	color: var(--primaryColor);
	-webkit-transform: rotate(90deg);
	transform: rotate(90deg);
}

.mobile-off-canvas-active .header-mobile-aside-wrap {
	padding: 40px 30px 50px;
	overflow: auto;
	height: 100%;
}

@media only screen and (max-width: 767px) {
	.mobile-off-canvas-active .header-mobile-aside-wrap {
		padding: 30px 20px 50px;
	}
}



.mobile-off-canvas-active .header-mobile-aside-wrap .mobile-menu-wrap {
	border-bottom: 1px solid var(--borderColor);
	margin-bottom: 36px;
	padding-bottom: 27px;
}

.mobile-off-canvas-active .header-mobile-aside-wrap .mobile-menu-wrap .mobile-navigation nav {
	height: 100%;
}

.mobile-off-canvas-active .header-mobile-aside-wrap .mobile-menu-wrap .mobile-navigation nav .mobile-menu li {
	display: block;
	position: relative;
	font-family: var(--headingFont);
	padding: 5px 0;
}

.mobile-off-canvas-active .header-mobile-aside-wrap .mobile-menu-wrap .mobile-navigation nav .mobile-menu li.menu-item-has-children .menu-expand {
	line-height: 50;
	top: -5px;
	left: 95%;
	width: 30px;
	position: absolute;
	height: 50px;
	text-align: center;
	cursor: pointer;
}

.mobile-off-canvas-active .header-mobile-aside-wrap .mobile-menu-wrap .mobile-navigation nav .mobile-menu li.menu-item-has-children .menu-expand i {
	display: block;
	position: relative;
	width: 10px;
	margin-top: 25px;
	border-bottom: 1px solid var(--blackColor);
	-webkit-transition: all 250ms ease-out;
	transition: all 250ms ease-out;
}

.mobile-off-canvas-active .header-mobile-aside-wrap .mobile-menu-wrap .mobile-navigation nav .mobile-menu li.menu-item-has-children .menu-expand i::before {
	top: 0;
	width: 100%;
	content: "";
	display: block;
	position: absolute;
	-webkit-transform: rotate(90deg);
	transform: rotate(90deg);
	border-bottom: 1px solid var(--blackColor);
	-webkit-transition: 0.4s;
	transition: 0.4s;
}

.mobile-off-canvas-active .header-mobile-aside-wrap .mobile-menu-wrap .mobile-navigation nav .mobile-menu li.menu-item-has-children.active > .menu-expand i::before {
	-webkit-transform: rotate(0);
	transform: rotate(0);
}

.mobile-off-canvas-active .header-mobile-aside-wrap .mobile-menu-wrap .mobile-navigation nav .mobile-menu li a {
	font-size: 16px;
	text-transform: capitalize;
	line-height: 18px;
	position: relative;
	display: inline-block;
	color: var(--blackColor);
}

.mobile-off-canvas-active .header-mobile-aside-wrap .mobile-menu-wrap .mobile-navigation nav .mobile-menu li a:hover {
	color: var(--primaryColor);
}

.mobile-off-canvas-active .header-mobile-aside-wrap .mobile-menu-wrap .mobile-navigation nav .mobile-menu li ul li a {
	padding: 0 15px;
	font-size: 14px;
	color: var(--blackColor);
}

.mobile-off-canvas-active .header-mobile-aside-wrap .mobile-menu-wrap .mobile-navigation nav .mobile-menu li ul li a:hover {
	color: var(--primaryColor);
}

.mobile-off-canvas-active .header-mobile-aside-wrap .mobile-menu-wrap .mobile-navigation nav .mobile-menu li ul li ul li a {
	padding: 0 30px;
	font-size: 14px;
	font-weight: 300;
}

.mobile-off-canvas-active .header-mobile-aside-wrap .mobile-curr-lang-wrap {
	border-bottom: 1px solid var(--borderColor);
	margin-bottom: 31px;
	padding-bottom: 37px;
}

@media only screen and (max-width: 767px) {
	.mobile-off-canvas-active .header-mobile-aside-wrap .mobile-curr-lang-wrap {
		display: block;
	}
}

.mobile-off-canvas-active .header-mobile-aside-wrap .mobile-curr-lang-wrap .single-mobile-curr-lang {
	position: relative;
	margin-bottom: 15px;
}

.mobile-off-canvas-active .header-mobile-aside-wrap .mobile-curr-lang-wrap .single-mobile-curr-lang:last-child {
	margin-bottom: 0;
}

.mobile-off-canvas-active .header-mobile-aside-wrap .mobile-curr-lang-wrap .single-mobile-curr-lang a {
	font-size: 16px;
	display: block;
	letter-spacing: 0.2px;
	color: var(--blackColor);
}

.mobile-off-canvas-active .header-mobile-aside-wrap .mobile-curr-lang-wrap .single-mobile-curr-lang a i {
	float: right;
	font-size: 15px;
	position: relative;
	top: 8px;
}

.mobile-off-canvas-active .header-mobile-aside-wrap .mobile-curr-lang-wrap .single-mobile-curr-lang .lang-curr-dropdown {
	margin-top: 5px;
	display: none;
	background-color: var(--whiteColor);
	-webkit-box-shadow: 0 0 20px 0.4px rgba(0, 0, 0, 0.1);
	box-shadow: 0 0 20px 0.4px rgba(0, 0, 0, 0.1);
	padding: 22px 30px 26px;
	width: 100%;
	z-index: 11;
}

.mobile-off-canvas-active .header-mobile-aside-wrap .mobile-curr-lang-wrap .single-mobile-curr-lang .lang-curr-dropdown ul li {
	padding-bottom: 10px;
	display: block;
}

.mobile-off-canvas-active .header-mobile-aside-wrap .mobile-curr-lang-wrap .single-mobile-curr-lang .lang-curr-dropdown ul li:last-child {
	padding-bottom: 0px;
}

.mobile-off-canvas-active .header-mobile-aside-wrap .mobile-curr-lang-wrap .single-mobile-curr-lang .lang-curr-dropdown ul li a {
	font-size: 14px;
	letter-spacing: 0.2px;
}

.mobile-off-canvas-active .header-mobile-aside-wrap .mobile-curr-lang-wrap .single-mobile-curr-lang .lang-curr-dropdown ul li a:hover {
	color: var(--primaryColor);
}

.mobile-off-canvas-active .header-mobile-aside-wrap .mobile-curr-lang-wrap .single-mobile-curr-lang:hover > a {
	color: var(--primaryColor);
}

@media only screen and (max-width: 767px) {
	.mobile-off-canvas-active .header-mobile-aside-wrap .mobile-curr-lang-wrap .single-mobile-curr-lang {
		margin-bottom: 5px;
	}

	.mobile-off-canvas-active .header-mobile-aside-wrap .mobile-curr-lang-wrap .single-mobile-curr-lang:last-child {
		margin-bottom: 0;
	}
}

.mobile-off-canvas-active .header-mobile-aside-wrap .mobile-social-wrap {
	margin-bottom: 20px;
}

.mobile-off-canvas-active .header-mobile-aside-wrap .mobile-social-wrap a {
	font-size: 16px;
	margin-right: 10px;
	background: var(--borderColor);
	width: 40px;
	height: 40px;
	display: inline-block;
	text-align: center;
	line-height: 40px;
	border-radius: 5px;
}

@media (max-width: 767px) {
	.mobile-off-canvas-active .header-mobile-aside-wrap .mobile-social-wrap a {
		margin-right: 0;
	}
}

.mobile-off-canvas-active .header-mobile-aside-wrap .mobile-social-wrap a:last-child {
	margin-right: 0;
}

.headerarea__right__mobail__menu li {
	margin-right: 10px;
}

@media only screen and (max-width: 991px) {
	.desktop__menu__wrapper {
		display: none;
	}

	.mob_menu_wrapper {
		display: block;
	}

	.header__topbar {
		display: none;
	}
}

.logo__mobile img {
	width: 100%;
}

.mob_menu_wrapper.header__sticky.sticky {
	padding: 5px 10px;
}






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

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





.before-after-wrap {
	overflow: hidden;
	position: relative;
	border-radius: var(--borderRadius3);
}

@media only screen and (min-width: 350px) {
	.before-after-wrap {
		height: 350px;
	}
}

@media only screen and (min-width: 768px) {
	.before-after-wrap {
		height: 450px;
	}
}

@media only screen and (min-width: 1366px) {
	.before-after-wrap {
		height: 700px;
	}
}



@keyframes first {
	0% {
		width: 0%;
	}

	50% {
		width: 80%;
	}

	100% {
		width: 50%;
	}
}

@-webkit-keyframes first {
	0% {
		width: 0%;
	}

	50% {
		width: 80%;
	}

	100% {
		width: 50%;
	}
}

.before-after-wrap .before__after__common {
	position: absolute;
	color: var(--whiteColor);
	z-index: 9;
	font-size: 18px;
	bottom: 20px;
	left: 20px;
	background: var(--primaryColor);
	padding: 3px 20px;
	border-radius: 5px;
}

.before-after-wrap .before__after__common.after__class {
	right: 20px;
	left: auto;
}











.headertopbar__2 {
	    background: linear-gradient(135deg, #ff5a3c, #ff8a3c);
}

.headertopbar__7 {
	background: linear-gradient(310deg, rgb(17, 189, 251) 15%, rgb(33, 249, 150) 85%);
	padding: 2px 0;
}

.headertopbar__animate {
	display: flex;
	white-space: nowrap;
	position: relative;
	will-change: transform;
	animation: marquee 20s linear 0s infinite normal;
	animation-play-state: running;
	padding: 3px 0;
}

.headertopbar__animate .header__animate__item {
	padding: 0 15px;
}

.headertopbar__animate .header__animate__item p {
	color: var(--whiteColor);
	font-size: 14px;
	margin-bottom: 0;
	position: relative;
	padding-left: 20px;
	margin: 0;
}

.headertopbar__animate .header__animate__item p:before {
	position: absolute;
	left: 0;
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background: var(--whiteColor);
	content: "";
	top: 50%;
	transform: translate(-50%);
	margin-top: -5px;
}

.footer {
	background: var(--greyColor);
}

.footer__title {
	font-size: 20px;
	margin-bottom: 25px;
	font-weight: 600;
}

@media (max-width: 767px) {
	.footer__title {
		margin-bottom: 15px;
		font-size: 18px;
	}
}

@media (min-width: 768px) and (max-width: 991px) {
	.footer__widget {
		margin-bottom: 30px;
	}
}

@media (max-width: 767px) {
	.footer__widget {
		margin-bottom: 30px;
	}
}

.footer__widget .footer__text p {
	width: 100%;
	margin-bottom: 25px;
}

.footer__content p {
	margin: 0;
	margin-bottom: 15px;
	max-width: 72%;
}

@media (min-width: 992px) and (max-width: 1365px) {
	.footer__content p {
		max-width: 100%;
	}
}

@media (min-width: 768px) and (max-width: 991px) {
	.footer__content p {
		max-width: 100%;
	}
}

@media (max-width: 767px) {
	.footer__content p {
		max-width: 100%;
	}
}

.footer__social__icon ul li {
	margin-right: 15px;
}

.footer__bottom {
	margin-top: 20px;
}

.footer__bottom h5 {
	line-height: 1.3;
	margin-bottom: 10px;
	font-size: 18px;
}

.footer__img ul li {
	padding: 2px;
}

.footer__menu ul li {
	display: block;
	margin-bottom: 15px;
}

.footer__menu ul li a {
	font-size: 14px;
}

.footer__input {
	position: relative;
	margin-bottom: 30px;
}

.footer__input input {
	height: 65px;
	background-color: var(--whiteColor);
	border: 1px solid var(--whiteColor);
	padding-left: 20px;
	font-size: 16px;
	width: 100%;
	border-radius: var(--borderRadius);
}

.footer__input button {
	height: 65px;
	padding: 0 18px;
	border-radius: 0 5px 5px 0;
	position: absolute;
	right: 0;
	top: 0;
	border: none;
	background: var(--primaryColor);
	color: var(--whiteColor);
}

.footer__input button:hover {
	background: var(--blackColor);
	color: var(--whiteColor);
}

.footer__input__4 button {
	background: var(--greywhite);
}

.footer__middle .footer__logo {
	display: flex;
	align-items: center;
	white-space: nowrap;
	justify-content: center;
	margin-bottom: 20px;
}

.footer__address ul li {
	display: block;
}

.footer__2 {
	background: #fcf7eb no-repeat scroll center center/cover;
}

.footer__input__5 button {
	background: var(--yellow2);
}

.footer__social__icon {
	margin-top: 15px;
}

.copyright {
	border-top: 1px solid #dcdcdc;
	border-bottom: 1px solid #dcdcdc;
	padding-top: 20px;
	padding-bottom: 20px;
}

.copyright__text p {
	margin: 0;
}

.copyright__menu {
	text-align: right;
}

@media (min-width: 768px) and (max-width: 991px) {
	.copyright__menu {
		text-align: start;
		margin-top: 10px;
	}
}

@media (max-width: 767px) {
	.copyright__menu {
		text-align: start;
		margin-top: 10px;
	}
}

.copyright__menu ul li {
	font-size: 16px;
	font-weight: 400;
	list-style: none;
	display: inline-block;
	margin-top: 0;
	margin-right: 20px;
}

@media (min-width: 992px) and (max-width: 1365px) {
	.copyright__menu ul li {
		font-size: 13px;
		margin-right: 10px;
	}
}

@media (max-width: 767px) {
	.copyright__menu ul li {
		font-size: 14px;
		margin-right: 10px;
	}
}

.copyright__menu ul li:last-child {
	margin-right: 0;
}

.layout__2 .footer__title {
	font-weight: 700;
}

.is_dark .headerarea__has__dropdown span {
	color: var(--blackColor);
}

.is_dark .header__topbar {
	background-color: var(--greyColor2);
}

.is_dark .header__topbar .header__topbar__left ul li {
	color: var(--blackColor);
}

.is_dark .header__topbar .header__topbar__language__wraper span {
	color: var(--blackColor);
}

.is_dark .header__topbar .header__topbar__language__inner ul li a i {
	color: var(--blackColor);
}

.is_dark .header__topbar .header__topbar__social__icon ul li a {
	color: var(--blackColor);
}

.is_dark .header__topbar__language {
	color: var(--blackColor);
}

.is_dark .minicart__close__btn {
	color: var(--blackColor);
}

.is_dark .minicart__single .minicart__single__img .minicart__single__close button {
	background: var(--blackColor);
}

.is_dark .setting__wrap__close {
	color: var(--blackColor);
}

.is_dark .headersearch__active__input button {
	color: var(--blackColor);
}

.is_dark .headersearch__active__close {
	color: var(--blackColor);
}

.is_dark .headersearch__active__input input {
	color: var(--blackColor);
}



.is_dark .mobile-off-canvas-active .header-mobile-aside-wrap .mobile-search form input {
	background-color: #332b2b;
	color: var(--blackColor);
}

.is_dark .mobile-off-canvas-active .header-mobile-aside-wrap .mobile-social-wrap a {
	background: #332b2b;
}

.is_dark .mobile-off-canvas-active .mobile-aside-close {
	color: var(--blackColor);
}


.is_dark .footer__inner {
	background-color: var(--greyColor2);
}



.is_dark .feature__border {
	border: 1px solid #333333;
}

.is_dark .testimonial__2 {
	background-color: var(--greyColor2);
}

.is_dark .footer__2 {
	background-color: var(--greyColor2);
}

.is_dark .newslatter__2 {
	background-color: var(--whiteColor);
}

.is_dark .footer__inner {
	background-color: var(--greyColor2);
}

.is_dark .small__grid__wraper {
	border: 1px solid #333333;
}

.is_dark .copyright {
	background-color: #1a1a1a;
	border-color: #1a1a1a;
}



.is_dark .loginarea__wraper {
	background-color: var(--greyColor2);
}



.is_dark .registerarea__form__container {
	background-color: var(--greyColor2);
}

.is_dark .descriptionarea__tab__button li button {
	color: var(--blackColor);
}

.is_dark .single__product__button {
	background: var(--blackColor);
}

.is_dark .single__product__bottom__button {
	background: var(--blackColor);
}


.is_dark .default__button {
	color: var(--blackColor);
}



.is_dark .modal-content {
	background-color: #333333;
}

.is_dark .featurearea__quantity .qty-container button {
	color: var(--blackColor);
}

.is_dark .qty-container input {
	background: #333333;
	color: var(--blackColor);
}

.is_dark .slider__default__arrow--2 .slick-arrow {
	background: var(--whiteColor);
}

.is_dark .slider__default__arrow--2 .slick-arrow:hover {
	color: var(--blackColor);
}

.umgsldnew {
  width: 100%;
  position: relative;
  overflow: hidden;
}

.umgsldnew-track {
  display: flex;
  transition: transform 0.6s ease-in-out;
}

.umgsldnew-slide {
  min-width: 100%;
}

.umgsldnew-slide img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  display: block;
}

/* Manual lines */
.umgsldnew-dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
}

.umgsldnew-dots span {
  width: 22px;
  height: 4px;
  background: rgba(255,255,255,0.6);
  cursor: pointer;
  transition: 0.3s;
}

.umgsldnew-dots span.active {
  background: #ffffff;
}

/* Mobile responsive */
@media (max-width: 768px) {
  .umgsldnew-slide img {
    height: 151px;
    object-fit: contain;
    background: #000;
  }
}