@import url("https://fonts.googleapis.com/css2?family=Crimson+Text:ital,wght@0,400;0,600;0,700;1,400;1,600;1,700&display=swap");
@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");

:root {
	--body: #fff;
	--black: #000;
	--white: #fff;
	--theme: #a6a182;
	--theme-2: #a6a182;
	--header: #000000;
	--base: #00813d;
	--text: #54595f;
	--text2: #bfbfbf;
	--border: #e6e6e6;
	--border2: #373737;
	--ratting: #f8bc26;
	--bg: #f8f8f8;
	--bg2: #0d0d0d;
	--color-gradient-1: linear-gradient(
		to left,
		#fd4a81,
		#ff5e73,
		#ff7269,
		#ff8662,
		#fc9860
	);
	---color-gradient-2: linear-gradient(
		to left,
		#ff8662,
		#fc9860,
		#ff7269,
		#fd4a81,
		#ff5e73
	);
	---box-shadow: 0px 6px 25px rgba(0, 0, 0, 0.05);
}

.theme-btn {
	background-color: var(--theme);
	color: var(--white);
	display: inline-block;
	font-size: 14px;
	font-weight: 600;
	padding: 22px 40px;
	border-radius: 0;
	letter-spacing: 1.2px;
	line-height: 1;
	text-transform: capitalize;
	-webkit-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
	position: relative;
	z-index: 1;
	border-radius: 5px;
}

.theme-btn::before {
	content: "";
	background-color: var(--header);
	width: 0;
	height: 50%;
	position: absolute;
	top: 0;
	left: 0;
	-webkit-transition: all 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86);
	transition: all 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86);
	z-index: -1;
	border-radius: 5px 5px 0 0;
}

.theme-btn::after {
	content: "";
	background-color: var(--header);
	width: 0;
	height: 50%;
	position: absolute;
	bottom: 0;
	right: 0;
	-webkit-transition: all 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86);
	transition: all 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86);
	z-index: -1;
	border-radius: 0 0 5px 5px;
}

.theme-btn i {
	margin-left: 5px;
}

.theme-btn:hover {
	color: var(--white);
}

.theme-btn:hover::before,
.theme-btn:hover::after {
	width: 100%;
}

.theme-btn.bg-transparent {
	background-color: transparent;
	border: 1px solid var(--theme);
	color: var(--header);
}

.theme-btn.bg-transparent::before {
	border-radius: 5px 5px 0 0;
	background-color: var(--theme);
}

.theme-btn.bg-transparent::after {
	border-radius: 0 0 5px 5px;
	background-color: var(--theme);
}

.theme-btn.bg-transparent:hover {
	color: var(--white);
}

.theme-btn.padding-style {
	padding: 24px 40px;
	line-height: 1.3;
}

@media (max-width: 767px) {
	.theme-btn.padding-style {
		padding: 18px 32px;
	}
}

@media (max-width: 575px) {
	.theme-btn.padding-style {
		padding: 16px 30px;
		font-size: 14px;
	}
}

.theme-btn.bg-white {
	background-color: var(--white);
	color: var(--header);
}

.theme-btn.bg-white::before,
.theme-btn.bg-white::after {
	background-color: var(--header);
}

.theme-btn.bg-white:hover {
	color: var(--white);
}

.theme-btn.radius-none {
	border-radius: 0;
}

.theme-btn.radius-none::before,
.theme-btn.radius-none::after {
	border-radius: 0;
}

.theme-btn.hover-white::before,
.theme-btn.hover-white::after {
	background-color: var(--white);
}

.theme-btn.hover-white:hover {
	color: var(--header);
}

@media (max-width: 767px) {
	.theme-btn {
		padding: 18px 32px;
	}
}

@media (max-width: 575px) {
	.theme-btn {
		padding: 16px 30px;
		font-size: 14px;
	}
}

.link-btn {
	letter-spacing: 1.2px;
	text-transform: capitalize;
	color: var(--header);
	font-weight: 600;
	display: inline-block;
	font-size: 14px;
}

.link-btn i {
	margin-left: 5px;
}

.link-btn:hover {
	color: var(--theme);
}

.link-btn.white-btn {
	color: var(--white);
}

.link-btn.white-btn:hover {
	color: var(--theme);
}

/* --------------------------------------------
    Template Default Fonts & Fonts Styles
 ---------------------------------------------- */
body {
	font-family: "Poppins", sans-serif;
	font-size: 16px;
	font-weight: normal;
	line-height: 28px;
	color: var(--text);
	background-color: var(--white);
	padding: 0;
	margin: 0;
	overflow-x: hidden;
}

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

button {
	border: none;
	background-color: transparent;
	padding: 0;
}

input:focus {
	color: var(--white);
	outline: none;
}

input {
	color: var(--white);
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: "Crimson Text", serif;
	margin: 0px;
	padding: 0;
	color: var(--header);
	text-transform: capitalize;
	transition: all 0.4s ease-in-out;
}

h1 {
	font-size: 68px;
	font-weight: 700;
	line-height: 118%;
}

h2 {
	font-size: 48px;
	line-height: 125%;
	font-weight: 700;
}

@media (max-width: 1199px) {
	h2 {
		font-size: 42px;
	}
}

@media (max-width: 767px) {
	h2 {
		font-size: 36px;
	}
}

@media (max-width: 575px) {
	h2 {
		font-size: 32px;
	}
}

h3 {
	font-size: 24px;
	font-weight: 600;
	line-height: 133%;
}

@media (max-width: 575px) {
	h3 {
		font-size: 20px;
	}
}

h4 {
	font-size: 20px;
	font-weight: 600;
}

h5 {
	font-size: 20px;
	font-weight: 600;
}

h6 {
	font-size: 16px;
	font-weight: 600;
	line-height: 145%;
}

a {
	text-decoration: none;
	outline: none !important;
	cursor: pointer;
	color: var(--header);
	transition: all 0.4s ease-in-out;
}

p {
	font-size: 13px;
	margin: 0px;
	transition: all 0.4s ease-in-out;
}

.search-wrap {
	width: 100%;
	height: 100%;
	overflow: hidden;
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 999999;
	background-color: rgba(255, 255, 255, 0.9);
}

.search-wrap .search-inner {
	position: relative;
	width: 100%;
	height: 100%;
}

.search-wrap .search-cell {
	position: absolute;
	top: 50%;
	width: 100%;
	transform: translateY(-50%);
}

.search-wrap .search-field-holder {
	width: 50%;
	margin: auto;
	position: relative;
	animation: slideInUp 0.3s;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
	.search-wrap .search-field-holder {
		width: 70%;
	}
}

@media (max-width: 575px) {
	.search-wrap .search-field-holder {
		width: 80%;
	}
}

.search-wrap .main-search-input {
	width: 100%;
	height: 70px;
	border: 0;
	padding: 0 50px;
	text-transform: capitalize;
	background: transparent;
	font-size: 25px;
	color: var(--header);
	border-bottom: 2px solid var(--header);
	text-align: center;
	letter-spacing: 2px;
}

@media (max-width: 575px) {
	.search-wrap .main-search-input {
		height: 50px;
		padding: 0 0;
		line-height: 50px;
		font-size: 18px;
	}
}

.search-wrap input.form-control,
.search-wrap input.form-control:focus {
	background-color: var(--header);
}

input.main-search-input::placeholder {
	color: var(--header);
	opacity: 1;
	font-size: 25px;
}

@media (max-width: 575px) {
	input.main-search-input::placeholder {
		font-size: 18px;
	}
}

.search-close {
	position: absolute;
	top: 50px;
	right: 50px;
	font-size: 30px;
	color: var(--theme);
	cursor: pointer;
}

.scroll-up {
	cursor: pointer;
	display: block;
	border-radius: 50px;
	z-index: 99;
	opacity: 0;
	visibility: hidden;
	transform: translateY(15px);
	position: fixed;
	right: 25px;
	bottom: 35px;
	height: 50px;
	width: 50px;
	transition: all 0.4s ease-in-out;
}

.scroll-up::after {
	position: absolute;
	font-family: "Font Awesome 5 Pro";
	content: "\f176";
	text-align: center;
	line-height: 50px;
	font-weight: 700;
	font-size: 18px;
	color: var(--theme);
	left: 0;
	top: 0;
	height: 50px;
	width: 50px;
	cursor: pointer;
	display: block;
	z-index: 1;
	transition: all 0.4s ease-in-out;
}

.scroll-up svg path {
	fill: none;
}

.scroll-up svg.scroll-circle path {
	stroke: var(--theme);
	stroke-width: 4px;
	box-sizing: border-box;
	transition: all 0.4s ease-in-out;
}

.scroll-up.active-scroll {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.mouse-cursor {
	position: fixed;
	left: 0;
	top: 0;
	pointer-events: none;
	border-radius: 50%;
	-webkit-transform: translateZ(0);
	transform: translateZ(0);
	visibility: hidden;
}

@media (max-width: 767px) {
	.mouse-cursor {
		display: none;
	}
}

.header-main {
	/* display: flex; */
	align-items: center;
	justify-content: space-between;
	padding: 10px 0;
	float: right;
}

@media (max-width: 1199px) {
	.header-main {
		padding: 15px 0px;
	}
}

.header-main .main-menu ul {
	margin-bottom: 0;
}

.header-main .main-menu ul li {
	position: relative;
	list-style: none;
	display: inline-block;
	margin-inline-end: 20px;
	padding: 19px 0;
}

.header-main .main-menu ul li:last-child {
	margin-inline-end: 0;
}

.header-main .main-menu ul li a {
	display: inline-block;
	font-size: 15px;
	font-weight: 500;
	color: #ffffff;
	text-align: left;
	position: relative;
	text-transform: capitalize;
	transition: all 0.4s ease-in-out;
}

.header-main .main-menu ul li a i {
	font-size: 15px;
	font-weight: 600;
	margin-left: 5px;
}

.header-main .main-menu ul li a:hover {
	color: #b11e1e;
}

.header-main .main-menu ul li .submenu {
	position: absolute;
	top: 100%;
	inset-inline-start: 0;
	min-width: 240px;
	background: var(--white);
	z-index: 99999;
	visibility: hidden;
	opacity: 0;
	transform-origin: top center;
	color: var(--header);
	box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.2);
	-webkit-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.2);
	-moz-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.2);
	transform: translateY(10px);
	transition: all 0.4s ease-in-out;
}

.header-main .main-menu ul li .submenu li {
	display: block;
	width: 100%;
	margin: 0;
	padding: 0;
}

.header-main .main-menu ul li .submenu li a {
	position: relative;
	z-index: 11;
	font-size: 16px;
	font-weight: 500;
	color: var(--header);
	padding: 0 25px;
	padding-bottom: 11px;
	padding-top: 11px;
	width: 100%;
	border-bottom: 1px solid #eeeeee;
}

.header-main .main-menu ul li .submenu li:last-child a {
	border: none;
}

.header-main .main-menu ul li .submenu li .submenu {
	inset-inline-start: 100%;
	top: 0;
	visibility: hidden;
	opacity: 0;
}

.header-main .main-menu ul li .submenu li:hover > a {
	background: #b11e1e;
	color: var(--white) !important;
}

.header-main .main-menu ul li .submenu li:hover > a::after {
	color: var(--theme);
}

.header-main .main-menu ul li .submenu li:hover > .submenu {
	-webkit-transform: translateY(1);
	-moz-transform: translateY(1);
	-ms-transform: translateY(1);
	-o-transform: translateY(1);
	transform: translateY(1);
	visibility: visible;
	opacity: 1;
}

.header-main .main-menu ul li .submenu li.has-dropdown > a::after {
	position: absolute;
	top: 50%;
	inset-inline-end: 25px;
	-webkit-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	-o-transform: translateY(-50%);
	transform: translateY(-50%);
	color: var(--theme);
}

.header-main .main-menu ul li .has-homemenu {
	width: 1100px;
	padding: 30px 30px 10px 30px;
	opacity: 0;
	left: -250px;
	visibility: hidden;
	padding: 30px 30px 10px 30px;
}

.header-main .main-menu ul li .has-homemenu .homemenu {
	position: relative;
}

.header-main .main-menu ul li .has-homemenu .homemenu .homemenu-thumb {
	position: relative;
}

.header-main
	.main-menu
	ul
	li
	.has-homemenu
	.homemenu
	.homemenu-thumb
	.demo-button {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 70%;
	gap: 10px;
	display: flex;
	justify-content: center;
	flex-direction: column;
	opacity: 0;
	visibility: hidden;
	transition: all 0.4s ease-in-out;
	margin-top: 20px;
}

.header-main
	.main-menu
	ul
	li
	.has-homemenu
	.homemenu
	.homemenu-thumb
	.demo-button
	.theme-btn {
	padding: 12px 15px;
	color: var(--white) !important;
	width: initial;
	font-size: 14px;
	text-align: center;
}

.header-main
	.main-menu
	ul
	li
	.has-homemenu
	.homemenu
	.homemenu-thumb
	.demo-button
	.theme-btn:hover {
	color: var(--white) !important;
}

.header-main .main-menu ul li .has-homemenu .homemenu .homemenu-thumb::before {
	background: -webkit-gradient(
		linear,
		left top,
		left bottom,
		from(rgba(99, 92, 92, 0)),
		to(#292930)
	);
	background: linear-gradient(to bottom, rgba(99, 92, 92, 0) 0%, #292930 100%);
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0;
	top: 0;
	overflow: hidden;
	opacity: 0;
	-webkit-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
	content: "";
}

.header-main
	.main-menu
	ul
	li
	.has-homemenu
	.homemenu
	.homemenu-thumb:hover::before {
	visibility: visible;
	opacity: 1;
}

.header-main
	.main-menu
	ul
	li
	.has-homemenu
	.homemenu
	.homemenu-thumb:hover
	.demo-button {
	opacity: 1;
	visibility: visible;
	margin-top: 0;
}

.header-main
	.main-menu
	ul
	li
	.has-homemenu
	.homemenu
	.homemenu-thumb:hover
	.homemenu-btn {
	opacity: 1;
	visibility: visible;
	bottom: 50%;
	transform: translateY(50%);
}

.header-main .main-menu ul li .has-homemenu .homemenu .homemenu-thumb img {
	width: 100%;
}

.header-main .main-menu ul li .has-homemenu .homemenu .homemenu-title {
	text-align: center;
	margin: 15px auto;
	display: inline-block;
	font-size: 16px;
}

.header-main .main-menu ul li:hover > a {
	color: #b11e1e;
}

.header-main .main-menu ul li:hover > a::after {
	color: var(--theme);
}

.header-main .main-menu ul li:hover > .submenu {
	visibility: visible;
	opacity: 1;
	transform: translateY(0px);
}

.header-1 {
	position: absolute;
	width: 100%;
	z-index: 9;
}

.header-1 .mega-menu-wrapper .header-main .header-left {
	display: flex;
	align-items: center;
	gap: 90px;
}

.header-1 .mega-menu-wrapper .header-main .header-right {
	gap: 40px;
}

@media (max-width: 1399px) {
	.header-1 .mega-menu-wrapper .header-main .header-right {
		gap: 20px;
	}
}

.header-1 .mega-menu-wrapper .header-main .header-right .menu-cart {
	position: relative;
}

@media (max-width: 1199px) {
	.header-1 .mega-menu-wrapper .header-main .header-right .menu-cart {
		display: none;
	}
}

.header-1 .mega-menu-wrapper .header-main .header-right .menu-cart .cart-box {
	background: var(--white) none repeat scroll 0 0;
	box-shadow: 0 0 7px 0.5px rgba(0, 0, 0, 0.15);
	padding: 5px 20px 0px;
	position: absolute;
	left: -70px;
	top: 150%;
	transform: rotateX(90deg);
	transform-origin: center top 0;
	transition: all 0.5s ease 0s;
	visibility: hidden;
	width: 340px;
	z-index: 9999;
}

@media (max-width: 1399px) {
	.header-1 .mega-menu-wrapper .header-main .header-right .menu-cart .cart-box {
		left: -260px;
	}
}

.header-1
	.mega-menu-wrapper
	.header-main
	.header-right
	.menu-cart
	.cart-box
	ul
	li {
	display: flex;
	align-items: center;
	padding: 10px 0;
	gap: 15px;
	border-bottom: 1px solid var(--border);
	font-size: 16px;
	font-weight: 600;
	text-transform: capitalize;
}

.header-1
	.mega-menu-wrapper
	.header-main
	.header-right
	.menu-cart
	.cart-box
	ul
	li
	a {
	padding: 0;
	position: relative;
	font-size: 16px;
	text-transform: capitalize;
}

.header-1
	.mega-menu-wrapper
	.header-main
	.header-right
	.menu-cart
	.cart-box
	ul
	li
	a::after {
	position: absolute;
	content: "\f00d";
	font-family: "Font Awesome 5 Pro";
	font-weight: 600;
	top: 15px;
	right: -88px;
	color: var(--white);
	font-size: 10px;
	width: 18px;
	height: 18px;
	line-height: 18px;
	border-radius: 30px;
	background-color: var(--theme);
	text-align: center;
}

.header-1
	.mega-menu-wrapper
	.header-main
	.header-right
	.menu-cart
	.cart-box
	ul
	li
	span {
	display: block;
	font-size: 16px;
	font-weight: 500;
	color: var(--header);
}

.header-1
	.mega-menu-wrapper
	.header-main
	.header-right
	.menu-cart
	.cart-box
	ul
	li
	img {
	width: 90px;
}

.header-1
	.mega-menu-wrapper
	.header-main
	.header-right
	.menu-cart
	.cart-box
	.shopping-items {
	margin-top: 10px;
}

.header-1
	.mega-menu-wrapper
	.header-main
	.header-right
	.menu-cart
	.cart-box
	.shopping-items
	span {
	font-size: 16px;
	font-weight: 600;
	color: var(--header);
	text-transform: capitalize;
}

.header-1
	.mega-menu-wrapper
	.header-main
	.header-right
	.menu-cart
	.cart-box
	.cart-button {
	margin-top: 20px;
}

.header-1
	.mega-menu-wrapper
	.header-main
	.header-right
	.menu-cart
	.cart-box
	.cart-button
	.theme-btn {
	padding: 16px 28px;
	font-size: 14px;
}

.header-1 .mega-menu-wrapper .header-main .header-right .menu-cart .cart-icon {
	position: relative;
	width: 45px;
	height: 45px;
	text-align: center;
	line-height: 45px;
	background-color: var(--bg);
	display: inline-block;
	border-radius: 50%;
}

.header-1
	.mega-menu-wrapper
	.header-main
	.header-right
	.menu-cart
	.cart-icon::before {
	position: absolute;
	top: -7px;
	right: -8px;
	content: "1";
	width: 18px;
	line-height: 18px;
	height: 18px;
	border-radius: 18px;
	background-color: var(--theme);
	color: var(--white);
	font-size: 12px;
	text-align: center;
	font-weight: 500;
}

.header-1
	.mega-menu-wrapper
	.header-main
	.header-right
	.menu-cart
	.cart-icon
	i {
	color: var(--header);
}

.header-1
	.mega-menu-wrapper
	.header-main
	.header-right
	.menu-cart:hover
	.cart-box {
	transform: rotateX(0deg);
	visibility: visible;
}

@media (max-width: 1399px) {
	.header-1 .mega-menu-wrapper .header-main .header-right .header-button {
		display: none;
	}
}

.header-1.header-2 {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 9999;
}

.header-1.header-2 .container-fluid {
	padding: 0 80px;
}

@media (max-width: 1399px) {
	.header-1.header-2 .container-fluid {
		padding: 0 20px;
	}
}

.header-1.header-2 .mega-menu-wrapper .header-main .main-menu ul li a {
	color: var(--white);
}

.header-1.header-2 .mega-menu-wrapper .header-main .main-menu ul li:hover a {
	color: var(--theme);
}

.header-1.header-2
	.mega-menu-wrapper
	.header-main
	.main-menu
	ul
	li
	.submenu
	li
	a {
	color: var(--header);
}

.header-1.header-2
	.mega-menu-wrapper
	.header-main
	.main-menu
	ul
	li
	.submenu
	li:hover
	a {
	color: var(--header);
}

.header-1.header-2 .mega-menu-wrapper .header-main .header-right {
	gap: 40px;
}

@media (max-width: 1399px) {
	.header-1.header-2
		.mega-menu-wrapper
		.header-main
		.header-right
		.header-button {
		display: none;
	}
}

.header-1.header-2 .mega-menu-wrapper .header-right {
	gap: 50px;
}

.header-1.header-2 .mega-menu-wrapper .header-right .icon-items {
	display: flex;
	align-items: center;
	gap: 20px;
}

@media (max-width: 1399px) {
	.header-1.header-2 .mega-menu-wrapper .header-right .icon-items {
		display: none;
	}
}

.header-1.header-2 .mega-menu-wrapper .header-right .icon-items .icon {
	width: 48px;
	height: 48px;
	line-height: 48px;
	text-align: center;
	background-color: var(--theme);
	border-radius: 5px;
	color: var(--white);
}

.header-1.header-2 .mega-menu-wrapper .header-right .icon-items .content p {
	color: var(--white);
	margin-bottom: 5px;
}

.header-1.header-2 .mega-menu-wrapper .header-right .icon-items .content h4 a {
	color: var(--white);
}

.header-1.header-2 .mega-menu-wrapper .header-right .search-icon {
	color: var(--white);
	border-left: 1px solid var(--text);
	border-right: 1px solid var(--text);
	padding: 0 20px;
}

.header-3 {
	background-color: var(--bg);
	position: relative;
	z-index: 9;
}

.header-3 .container-fluid {
	padding: 0 80px;
}

@media (max-width: 1399px) {
	.header-3 .container-fluid {
		padding: 0 20px;
	}
}

.header-3 .mega-menu-wrapper .header-main {
	padding: 0;
}

.header-3 .mega-menu-wrapper .header-main .header-right {
	gap: 40px;
}

@media (max-width: 1399px) {
	.header-3 .mega-menu-wrapper .header-main .header-right .header-button {
		display: none;
	}
}

.header-3 .mega-menu-wrapper .header-right {
	gap: 50px;
}

.header-3 .mega-menu-wrapper .header-right .icon-items {
	display: flex;
	align-items: center;
	gap: 20px;
}

@media (max-width: 1399px) {
	.header-3 .mega-menu-wrapper .header-right .icon-items {
		display: none;
	}
}

.header-3 .mega-menu-wrapper .header-right .icon-items .icon {
	color: var(--theme);
	font-size: 32px;
}

.header-3 .mega-menu-wrapper .header-right .icon-items .content p {
	color: var(--text);
	margin-bottom: 5px;
}

.header-3 .mega-menu-wrapper .header-right .icon-items .content h4 a {
	color: var(--text);
}

.header-3 .mega-menu-wrapper .header-right .search-icon {
	color: var(--white);
	padding: 30px;
	background-color: var(--theme);
}

.header-4 {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 99;
}

@media (max-width: 1199px) {
	.header-4 {
		background-color: var(--white);
	}
}

.header-4 .mega-menu-wrapper .header-main {
	padding: 10px 40px;
	background-color: var(--white);
	box-shadow: var(---box-shadow);
}

@media (max-width: 1199px) {
	.header-4 .mega-menu-wrapper .header-main {
		box-shadow: none;
		padding: 20px 0;
	}
}

.header-4 .mega-menu-wrapper .header-main .header-left {
	display: flex;
	align-items: center;
	gap: 90px;
}

.header-4 .mega-menu-wrapper .header-main .header-right {
	gap: 40px;
}

.header-4 .mega-menu-wrapper .header-main .header-right .search-icon {
	border-left: 1px solid var(--border);
	border-right: 1px solid var(--border);
	padding: 0 20px;
}

.header-5 {
	position: relative;
	z-index: 9;
}

@media (max-width: 1399px) {
	.header-5 .mega-menu-wrapper .header-main .main-menu ul li .has-homemenu {
		left: -350px;
	}
}

.header-5 .mega-menu-wrapper .header-main .main-menu ul li a {
	color: var(--white);
}

.header-5 .mega-menu-wrapper .header-main .main-menu ul li:hover a {
	color: var(--theme);
}

.header-5 .mega-menu-wrapper .header-main .main-menu ul li .submenu li a {
	color: var(--header);
}

.header-5 .mega-menu-wrapper .header-main .main-menu ul li .submenu li:hover a {
	color: var(--header);
}

.header-5 .mega-menu-wrapper .header-main .header-right {
	gap: 20px;
}

.header-5 .mega-menu-wrapper .header-main .header-right .search-icon {
	width: 55px;
	height: 55px;
	line-height: 55px;
	text-align: center;
	background-color: var(--bg2);
	color: var(--white);
}

.header-5 .mega-menu-wrapper .header-main .header-right .sidebar__toggle {
	width: 55px;
	height: 55px;
	line-height: 55px;
	text-align: center;
	background-color: var(--bg2);
}

@media (max-width: 1199px) {
	.header-5 .mega-menu-wrapper .header-main .header-right .sidebar__toggle {
		display: block !important;
	}
}

.header-5
	.mega-menu-wrapper
	.header-main
	.header-right
	.header-button
	.theme-btn {
	border-radius: 0;
}

.header-5 .mega-menu-wrapper .header-main .header-right .header-button::before,
.header-5 .mega-menu-wrapper .header-main .header-right .header-button::after {
	border-radius: 0;
}

@media (max-width: 1399px) {
	.header-5 .mega-menu-wrapper .header-main .header-right .header-button {
		display: none;
	}
}

.sidebar__toggle {
	cursor: pointer;
}

.sticky {
	position: fixed !important;
	top: 0 !important;
	left: 0;
	width: 100%;
	z-index: 100;
	transition: all 0.9s;
	background-color: #ffffffe6;
	box-shadow: var(---box-shadow);
	-webkit-transition: all 0.9s;
	transition: all 0.9s;
	-webkit-animation: 500ms ease-in-out 0s normal none 1 running fadeInDown;
	animation: 500ms ease-in-out 0s normal none 1 running fadeInDown;
}

.header-2.sticky .header-logo-2 .internal-page .spinner {
	background-color: #fff;
}

.sticky.header-2 {
	background-color: #060606;
}

.sticky .header-main .main-menu ul li {
	padding: 10px 0;
}

.sticky.header-4 .mega-menu-wrapper .header-main {
	box-shadow: none;
}

.sticky.header-5 {
	background-color: #060606;
}

.sticky.header-5
	.mega-menu-wrapper
	.header-main
	.main-menu
	ul
	li
	.has-homemenu {
	left: -450px;
}

.sticky.header-5 .mega-menu-wrapper .header-main .header-right .search-icon {
	display: none;
}

.sticky.header-5
	.mega-menu-wrapper
	.header-main
	.header-right
	.sidebar__toggle {
	display: none;
}

.sticky.header-5 .mega-menu-wrapper .header-main .header-right .header-button {
	display: none;
}

.offcanvas__info {
	background: var(--white) none repeat scroll 0 0;
	border-left: 2px solid var(--theme);
	position: fixed;
	right: 0;
	top: 0;
	width: 400px;
	height: 100%;
	-webkit-transform: translateX(calc(100% + 80px));
	-moz-transform: translateX(calc(100% + 80px));
	-ms-transform: translateX(calc(100% + 80px));
	-o-transform: translateX(calc(100% + 80px));
	transform: translateX(calc(100% + 80px));
	-webkit-transition: transform 0.45s ease-in-out, opacity 0.45s ease-in-out;
	-moz-transition: transform 0.45s ease-in-out, opacity 0.45s ease-in-out;
	transition: transform 0.45s ease-in-out, opacity 0.45s ease-in-out;
	z-index: 99999;
	overflow-y: scroll;
	overscroll-behavior-y: contain;
	scrollbar-width: none;
}

.offcanvas__info::-webkit-scrollbar {
	display: none;
}

.offcanvas__info.info-open {
	opacity: 1;
	-webkit-transform: translateX(0);
	-moz-transform: translateX(0);
	-ms-transform: translateX(0);
	-o-transform: translateX(0);
	transform: translateX(0);
}

.offcanvas__wrapper {
	position: relative;
	height: 100%;
	padding: 30px 30px;
}

.offcanvas__wrapper .offcanvas__content .text {
	color: var(--text);
}

.offcanvas__wrapper .offcanvas__content .offcanvas__close {
	width: 45px;
	height: 45px;
	line-height: 45px;
	text-align: center;
	border-radius: 50%;

	position: relative;
	z-index: 9;
	cursor: pointer;
}

.offcanvas__wrapper .offcanvas__content .offcanvas__close i {
	color: #000;
	font-size: 30px;
}

.offcanvas__wrapper .offcanvas__content .offcanvas__contact {
	margin-top: 20px;
}

.offcanvas__wrapper .offcanvas__content .offcanvas__contact ul {
	margin-top: 20px;
}

.offcanvas__wrapper .offcanvas__content .offcanvas__contact ul li {
	font-size: 16px;
	font-weight: 500;
	text-transform: capitalize;
}

.offcanvas__wrapper
	.offcanvas__content
	.offcanvas__contact
	ul
	li:not(:last-child) {
	margin-bottom: 15px;
}

.offcanvas__wrapper
	.offcanvas__content
	.offcanvas__contact
	ul
	li
	.offcanvas__contact-icon {
	margin-right: 20px;
}

.offcanvas__wrapper
	.offcanvas__content
	.offcanvas__contact
	ul
	li
	.offcanvas__contact-icon
	i {
	color: var(--theme);
}

.offcanvas__wrapper
	.offcanvas__content
	.offcanvas__contact
	.header-button
	.theme-btn {
	width: 100%;
	padding: 16px 40px;
}

.offcanvas__wrapper .offcanvas__content .offcanvas__contact .social-icon {
	margin-top: 30px;
	gap: 10px;
}

.offcanvas__wrapper .offcanvas__content .offcanvas__contact .social-icon a {
	width: 45px;
	height: 45px;
	line-height: 45px;
	text-align: center;
	font-size: 16px;
	display: block;
	background: transparent;
	color: var(--header);
	border-radius: 50%;
	-webkit-transition: all 0.4s ease-in-out;
	transition: all 0.4s ease-in-out;
	text-align: center;
	border: 1px solid var(--border);
}

.offcanvas__wrapper
	.offcanvas__content
	.offcanvas__contact
	.social-icon
	a:hover {
	background-color: var(--theme);
	color: var(--white);
}

.offcanvas__overlay {
	position: fixed;
	height: 100%;
	width: 100%;
	background: #151515;
	z-index: 900;
	top: 0;
	opacity: 0;
	visibility: hidden;
	right: 0;
}

.offcanvas__overlay.overlay-open {
	opacity: 0.8;
	visibility: visible;
}

@media (max-width: 450px) {
	.offcanvas__info {
		width: 300px;
	}
}

@media (max-width: 575px) {
	.offcanvas__wrapper {
		padding: 20px;
	}
}

.breadcrumb-wrapper {
	position: relative;
	overflow: hidden;
}

.breadcrumb-wrapper::before {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	content: "";
	background: linear-gradient(
		180deg,
		rgba(0, 0, 0, 0.285) 0%,
		rgba(0, 0, 0, 0.47) 100%
	);
}

.breadcrumb-wrapper .page-heading {
	position: relative;
	z-index: 9;
	margin-top: 55px;
}

@media (max-width: 1199px) {
	.breadcrumb-wrapper .page-heading {
		margin-top: 35px;
	}
}

@media (max-width: 991px) {
	.breadcrumb-wrapper .page-heading {
		text-align: center;
	}
}

.breadcrumb-wrapper .page-heading h1 {
	color: var(--white);
	font-size: 68px;
	position: relative;
	z-index: 9;
	line-height: 1.3;
}

@media (max-width: 991px) {
	.breadcrumb-wrapper .page-heading h1 {
		font-size: 50px;
	}
}

@media (max-width: 575px) {
	.breadcrumb-wrapper .page-heading h1 {
		font-size: 42px;
	}
}

.breadcrumb-wrapper .page-heading .breadcrumb-items {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-top: 15px;
}

@media (max-width: 991px) {
	.breadcrumb-wrapper .page-heading .breadcrumb-items {
		justify-content: center;
	}
}

.breadcrumb-wrapper .page-heading .breadcrumb-items li {
	font-size: 16px;
	color: var(--white);
	font-weight: 500;
	text-transform: capitalize;
}

.breadcrumb-wrapper .page-heading .breadcrumb-items li a {
	color: var(--white);
	transition: all 0.4s ease-in-out;
}

.breadcrumb-wrapper .page-heading .breadcrumb-items li a:hover {
	color: var(--theme);
}

.breadcrumb-wrapper .page-heading .breadcrumb-items li i {
	color: var(--white);
}

@media (max-width: 575px) {
	.breadcrumb-wrapper .page-heading .breadcrumb-items li i {
		font-size: 16px;
	}
}

.error-items .error-image {
	margin-bottom: 50px;
}

.error-items .error-image img {
	width: 100%;
	height: 100%;
}

.mean-container a.meanmenu-reveal {
	display: none;
}

.mean-container .mean-nav {
	background: none;
	margin-top: 0;
}

.mean-container .mean-bar {
	padding: 0;
	min-height: auto;
	background: none;
}

.mean-container .mean-nav > ul {
	padding: 0;
	margin: 0;
	width: 100%;
	list-style-type: none;
	display: block !important;
}

.mean-container .mean-nav > ul .homemenu {
	position: relative;
}

.mean-container .mean-nav > ul .homemenu .homemenu-thumb {
	position: relative;
	width: 280px;
}

.mean-container .mean-nav > ul .homemenu .homemenu-thumb .demo-button {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 60%;
	gap: 10px;
	display: flex;
	justify-content: center;
	flex-direction: column;
	opacity: 0;
	visibility: hidden;
	transition: all 0.4s ease-in-out;
}

.mean-container
	.mean-nav
	> ul
	.homemenu
	.homemenu-thumb
	.demo-button
	.theme-btn {
	padding: 10px 30px;
	color: var(--white) !important;
	width: initial;
	font-size: 14px;
	text-align: center;
}

.mean-container
	.mean-nav
	> ul
	.homemenu
	.homemenu-thumb
	.demo-button
	.theme-btn:hover {
	color: var(--white) !important;
}

.mean-container .mean-nav > ul .homemenu .homemenu-thumb::before {
	background: -webkit-gradient(
		linear,
		left top,
		left bottom,
		from(rgba(99, 92, 92, 0)),
		to(#292930)
	);
	background: linear-gradient(to bottom, rgba(99, 92, 92, 0) 0%, #292930 100%);
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0;
	top: 0;
	overflow: hidden;
	opacity: 0;
	-webkit-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
	content: "";
}

.mean-container .mean-nav > ul .homemenu .homemenu-thumb:hover::before {
	visibility: visible;
	opacity: 1;
}

.mean-container .mean-nav > ul .homemenu .homemenu-thumb:hover .demo-button {
	opacity: 1;
	visibility: visible;
	margin-top: 0;
}

.mean-container .mean-nav > ul .homemenu .homemenu-thumb:hover .homemenu-btn {
	opacity: 1;
	visibility: visible;
	bottom: 50%;
	transform: translateY(50%);
}

.mean-container .mean-nav > ul .homemenu .homemenu-thumb img {
	width: 100%;
}

.mean-container .mean-nav > ul .homemenu .homemenu-content .homemenu-title {
	margin-top: 15px;
	display: inline-block;
	font-size: 16px;
}

.mean-container a.meanmenu-reveal {
	display: none !important;
}

.mean-container .mean-nav ul li a {
	width: 100%;
	padding: 10px 0;
	color: var(--header);
	font-size: 16px;
	line-height: 1.5;
	font-weight: 500;
}

.mean-container .mean-nav ul li a:hover {
	color: var(--theme);
}

.mean-container .mean-nav ul li a:last-child {
	border-bottom: 0;
}

.mean-container .mean-nav ul li a:hover {
	color: var(--theme);
}

.mean-container .mean-nav ul li a.mean-expand {
	margin-top: 5px;
	padding: 0 !important;
}

.mean-container .mean-nav ul li > a > i {
	display: none;
}

.mean-container .mean-nav ul li > a.mean-expand i {
	display: inline-block;
}

.mean-container .mean-nav > ul > li:first-child > a {
	border-top: 0;
}

.mean-container .mean-nav ul li a.mean-expand.mean-clicked i {
	transform: rotate(45deg);
	-webkit-transform: rotate(45deg);
	-moz-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	-o-transform: rotate(45deg);
	transition: all 0.4s ease-in-out;
}

.mean-container .mean-nav ul li .mega-menu li a {
	height: 200px;
	width: 100%;
	padding: 0;
	border-top: 0;
	margin-bottom: 20px;
}

@media (max-width: 1199px) {
	.mean-container .mean-nav ul li.menu-thumb {
		display: none;
	}
}

.hero-1 {
	position: relative;
	position: relative;
	padding: 215px 0 90px;
}

@media (max-width: 1199px) {
	.hero-1 {
		margin-bottom: -20px;
		padding: 160px 0 90px;
	}
}

@media (max-width: 991px) {
	.hero-1 {
		margin-bottom: -40px;
		padding: 130px 0 90px;
	}
}

@media (max-width: 767px) {
	.hero-1 {
		margin-bottom: -50px;
		padding: 100px 0 90px;
	}
}

@media (max-width: 575px) {
	.hero-1 {
		padding: 70px 0 90px;
	}
}

.hero-1 .star-image {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	left: 3%;
}

.hero-1 .hero-image-2 {
	position: absolute;
	top: 55.5%;
	left: 17%;
}

@media (max-width: 1199px) {
	.hero-1 .hero-image-2 {
		left: 4%;
	}
}

@media (max-width: 991px) {
	.hero-1 .hero-image-2 {
		top: 40%;
		left: 45%;
		max-width: 300px;
		z-index: 9;
	}

	.hero-1 .hero-image-2 img {
		width: 100%;
		height: 100%;
	}
}

@media (max-width: 767px) {
	.hero-1 .hero-image-2 {
		top: 45%;
		left: 45%;
		max-width: 230px;
	}
}

@media (max-width: 575px) {
	.hero-1 .hero-image-2 {
		top: 39.5%;
		left: 42%;
		max-width: 200px;
	}
}

.hero-1 .hero-image-2 img {
	border-radius: 5px;
}

.hero-1 .hero-image-2::before {
	content: "";
	width: 100%;
	height: 109%;
	position: absolute;
	right: 0px;
	right: -15px;
	top: -15px;
	border: 1px solid var(--theme);
	border-radius: 5px;
	z-index: -1;
}

.hero-1 .hero-image-2::after {
	position: absolute;
	right: -12%;
	top: -12%;
	width: 22px;
	height: 22px;
	border-radius: 5px;
	content: "";
	background-color: var(--theme);
	z-index: 2;
}

.hero-1::before {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	content: "";
	/* background-color: var(--bg); */
	height: 60%;
	z-index: -1;
}

.hero-1 .hero-content {
	position: relative;
	z-index: 9;
	margin-top: 50px;
}

@media (max-width: 991px) {
	.hero-1 .hero-content {
		margin-bottom: 70px;
		margin-top: 0;
	}
}

@media (max-width: 767px) {
	.hero-1 .hero-content {
		margin-bottom: 60px;
	}
}

@media (max-width: 575px) {
	.hero-1 .hero-content {
		text-align: center;
		margin-top: 0;
		margin-bottom: 50px;
	}
}

.hero-1 .hero-content h1 {
	margin-bottom: 20px;
}

@media (max-width: 1199px) {
	.hero-1 .hero-content h1 {
		font-size: 48px;
	}
}

@media (max-width: 767px) {
	.hero-1 .hero-content h1 {
		font-size: 42px;
	}
}

@media (max-width: 575px) {
	.hero-1 .hero-content h1 {
		font-size: 32px;
		margin-bottom: 15px;
	}
}

.hero-1 .hero-content h1 span {
	margin-left: 80px;
}

@media (max-width: 1199px) {
	.hero-1 .hero-content h1 span {
		margin-left: 0;
	}
}

.hero-1 .hero-content p {
	max-width: 300px;
	margin: 0 auto;
	text-align: right;
}

@media (max-width: 1199px) {
	.hero-1 .hero-content p {
		text-align: left;
		max-width: initial;
	}
}

@media (max-width: 575px) {
	.hero-1 .hero-content p {
		text-align: center;
	}
}

.hero-1 .hero-image {
	/* max-width: 660px; */
	/* height: 750px; */
	/* margin-left: -120px; */
	position: relative;
	border-radius: 5px;
}

@media (max-width: 991px) {
	.hero-1 .hero-image {
		margin-left: 0;
	}
}

@media (max-width: 767px) {
	.hero-1 .hero-image {
		height: 500px;
	}
}

@media (max-width: 575px) {
	.hero-1 .hero-image {
		height: 400px;
	}
}

.hero-1 .hero-image::before {
	content: "";
	width: 100%;
	height: 100%;
	position: absolute;
	right: 0px;
	left: -11px;
	top: -15px;
	border: 1px solid var(--theme);
	border-radius: 5px;
	z-index: -1;
}

@media (max-width: 575px) {
	.hero-1 .hero-image::before {
		left: 0;
		height: 100%;
		top: 0;
	}
}

.hero-1 .hero-image .client-items {
	display: flex;
	align-items: center;
	gap: 20px;
	padding: 20px;
	background-color: var(--white);
	border-radius: 5px;
	box-shadow: var(---box-shadow);
	position: absolute;
	bottom: 20px;
	right: 20px;
}

.hero-1 .hero-image .client-items .client-content h3 {
	font-size: 28px;
	font-weight: 700;
}

.hero-2 {
	padding-top: 150px;
	padding-bottom: 110px;
	position: relative;
	z-index: 9;
}

@media (max-width: 767px) {
	.hero-2 {
		padding-top: 130px;
	}
}

@media (max-width: 575px) {
	.hero-2 {
		padding-top: 100px;
	}
}

.hero-2 .line {
	position: absolute;
	bottom: 20%;
	left: 5%;
	z-index: 2;
}

@media (max-width: 1600px) {
	.hero-2 .line {
		display: none;
	}
}

.hero-2 .star-shape {
	position: absolute;
	left: 3%;
	top: 20%;
}

.hero-2 .star-shape-2 {
	position: absolute;
	right: 10%;
	bottom: 20%;
}

.hero-2 .text {
	position: absolute;
	bottom: 12%;
	left: 72%;
	transform: translateX(-50%);
}

.hero-2 .text::before {
	position: absolute;
	top: 28px;
	left: -150px;
	content: "";
	width: 106px;
	height: 1px;
	background-color: var(--theme);
}

@media (max-width: 991px) {
	.hero-2 .text::before {
		display: none;
	}
}

@media (max-width: 575px) {
	.hero-2 .text {
		left: 50%;
		bottom: 7%;
		text-align: center;
	}
}

.hero-2 .text p {
	color: var(--white);
}

.hero-2::before {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	content: "";
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	background-image: url(../img/hero/overlay-shape.jpg);
	width: 50%;
	z-index: -1;
}

.hero-2::after {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	content: "";
	width: 100%;
	z-index: -1;
	left: 48%;
	background-color: var(--black);
	opacity: 0.7;
}

.hero-2 .hero-content {
	position: relative;
	z-index: 9;
}

@media (max-width: 575px) {
	.hero-2 .hero-content {
		text-align: center;
		margin: 0 auto;
	}
}

.hero-2 .hero-content h1 {
	font-size: 100px;
	color: var(--theme);
	margin-bottom: 20px;
}

@media (max-width: 1399px) {
	.hero-2 .hero-content h1 {
		font-size: 90px;
	}
}

@media (max-width: 1199px) {
	.hero-2 .hero-content h1 {
		font-size: 80px;
	}
}

@media (max-width: 991px) {
	.hero-2 .hero-content h1 {
		font-size: 62px;
	}
}

@media (max-width: 767px) {
	.hero-2 .hero-content h1 {
		font-size: 48px;
	}
}

@media (max-width: 575px) {
	.hero-2 .hero-content h1 {
		font-size: 38px;
	}
}

.hero-2 .hero-content h1 span {
	font-weight: 300;
}

.hero-2 .hero-content p {
	color: rgba(255, 255, 255, 0.7019607843);
	margin-bottom: 40px;
}

@media (max-width: 575px) {
	.hero-2 .hero-content p {
		margin-bottom: 20px;
	}
}

.hero-2 .hero-content .social-icon {
	gap: 20px;
	margin-top: 50px;
	position: relative;
}

@media (max-width: 575px) {
	.hero-2 .hero-content .social-icon {
		justify-content: center;
		margin-top: 30px;
		margin-bottom: 75px;
	}
}

.hero-2 .hero-content .social-icon a {
	width: 40px;
	height: 40px;
	text-align: center;
	line-height: 40px;
	border-radius: 5px;
	display: inline-block;
	background-color: transparent;
	color: var(--white);
	transition: all 0.4s ease-in-out;
	border: 1px solid var(--text);
}

.hero-2 .hero-content .social-icon a:hover {
	background-color: var(--theme);
	color: var(--white);
	border: 1px solid transparent;
}

.hero-3 {
	padding: 155px 0;
}

@media (max-width: 991px) {
	.hero-3 {
		padding-top: 130px;
	}
}

@media (max-width: 767px) {
	.hero-3 {
		padding-top: 100px;
	}
}

@media (max-width: 575px) {
	.hero-3 {
		padding-top: 80px;
	}
}

@media (max-width: 575px) {
	.hero-3 .hero-content {
		text-align: center;
		margin: 0 auto;
	}
}

.hero-3 .hero-content span {
	font-size: 18px;
	font-weight: 600;
	color: var(--header);
}

.hero-3 .hero-content h1 {
	margin-bottom: 20px;
}

@media (max-width: 1399px) {
	.hero-3 .hero-content h1 {
		font-size: 56px;
	}
}

@media (max-width: 1199px) {
	.hero-3 .hero-content h1 {
		font-size: 48px;
	}
}

@media (max-width: 991px) {
	.hero-3 .hero-content h1 {
		font-size: 52px;
	}
}

@media (max-width: 767px) {
	.hero-3 .hero-content h1 {
		font-size: 42px;
	}
}

@media (max-width: 575px) {
	.hero-3 .hero-content h1 {
		font-size: 32px;
	}
}

.hero-3 .hero-content p {
	color: var(--black);
}

.hero-3 .hero-content .hero-button {
	margin-top: 40px;
	display: flex;
	align-items: center;
	gap: 40px;
}

@media (max-width: 1199px) {
	.hero-3 .hero-content .hero-button {
		gap: 25px;
	}
}

@media (max-width: 767px) {
	.hero-3 .hero-content .hero-button {
		margin-top: 30px;
		gap: 30px;
	}
}

@media (max-width: 575px) {
	.hero-3 .hero-content .hero-button {
		margin-top: 25px;
		gap: 20px;
		justify-content: center;
		flex-wrap: wrap;
	}
}

.hero-3 .hero-content .hero-button .icon-items {
	display: flex;
	align-items: center;
	gap: 15px;
}

.hero-3 .hero-content .hero-button .icon-items .icon {
	width: 55px;
	height: 55px;
	background-color: transparent;
	text-align: center;
	line-height: 45px;
	color: var(--theme);
	border: 5px solid rgba(166, 161, 130, 0.28);
	border-radius: 50%;
}

.hero-3 .hero-content .hero-button .icon-items .content {
	text-align: left !important;
}

.hero-3 .hero-content .hero-button .icon-items .content p {
	font-weight: 500;
	color: var(--black);
	margin-bottom: 5px;
}

.hero-3 .hero-slider-items {
	margin-right: -90%;
	transform: rotate(-45deg);
}

@media (max-width: 1199px) {
	.hero-3 .hero-slider-items {
		transform: rotate(0);
	}
}

@media (max-width: 991px) {
	.hero-3 .hero-slider-items {
		margin-right: 0;
	}
}

.hero-3 .hero-slider-items .hero-image {
	max-width: 410px;
}

.hero-3 .hero-slider-items .hero-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

@media (max-width: 767px) {
	.hero-3 .hero-slider-items .hero-image {
		max-width: 590px;
		height: 500px;
	}
}

@media (max-width: 575px) {
	.hero-3 .hero-slider-items .hero-image {
		max-width: 450px;
		height: 420px;
	}
}

.hero-4 {
	position: relative;
	z-index: 9;
}

.hero-4 .hero-content {
	margin-top: 160px;
	margin-bottom: 90px;
	padding: 80px 60px;
	background-color: var(--white);
	position: relative;
	z-index: 9;
}

@media (max-width: 991px) {
	.hero-4 .hero-content {
		margin-bottom: 0;
	}
}

@media (max-width: 767px) {
	.hero-4 .hero-content {
		padding: 50px 40px;
	}
}

@media (max-width: 575px) {
	.hero-4 .hero-content {
		padding: 40px 30px;
		text-align: center;
	}
}

.hero-4 .hero-content::before {
	position: absolute;
	top: 20px;
	right: 20px;
	width: 50px;
	height: 50px;
	content: "";
	background-color: var(--theme);
	opacity: 0.4;
}

.hero-4 .hero-content span {
	font-size: 18px;
	font-weight: 600;
	color: var(--theme);
	margin-bottom: 10px;
	display: inline-block;
}

.hero-4 .hero-content h1 {
	margin-bottom: 20px;
}

@media (max-width: 1199px) {
	.hero-4 .hero-content h1 {
		font-size: 56px;
	}
}

@media (max-width: 1399px) {
	.hero-4 .hero-content h1 {
		font-size: 60px;
	}
}

@media (max-width: 991px) {
	.hero-4 .hero-content h1 {
		font-size: 50px;
	}
}

@media (max-width: 767px) {
	.hero-4 .hero-content h1 {
		font-size: 42px;
	}
}

@media (max-width: 575px) {
	.hero-4 .hero-content h1 {
		font-size: 32px;
	}
}

.hero-4 .hero-content p {
	margin-bottom: 40px;
}

@media (max-width: 767px) {
	.hero-4 .hero-content p {
		margin-bottom: 30px;
	}
}

@media (max-width: 575px) {
	.hero-4 .hero-content p {
		margin-bottom: 20px;
	}
}

.hero-4 .hero-image {
	width: 1050px;
	height: 650px;
	border-radius: 5px;
	margin-left: -80px;
	position: relative;
}

@media (max-width: 991px) {
	.hero-4 .hero-image {
		width: initial;
		max-width: 1050px;
		margin-left: 0;
	}
}

@media (max-width: 767px) {
	.hero-4 .hero-image {
		height: 500px;
	}
}

@media (max-width: 575px) {
	.hero-4 .hero-image {
		height: 430px;
	}
}

.hero-4 .hero-image::before {
	position: absolute;
	bottom: -7%;
	right: 0;
	width: 800px;
	height: 90px;
	content: "";
	background-color: var(--theme);
	z-index: -1;
}

@media (max-width: 1199px) {
	.hero-4 .hero-image::before {
		display: none;
	}
}

.hero-5 {
	overflow: hidden;
	margin-top: 120px;
}

.hero-5 .hero-wrapper {
	margin-left: -350px;
	margin-right: -350px;
	overflow: hidden;
}

@media (max-width: 1199px) {
	.hero-5 .hero-wrapper {
		margin-left: 0;
		margin-right: 0;
	}
}

.hero-5 .hero-wrapper .hero-items {
	overflow: hidden;
}

.hero-5 .hero-wrapper .hero-items .hero-image img {
	width: 100%;
	height: 100%;
}

.hero-5 .hero-wrapper .hero-items .hero-content {
	padding: 60px 80px;
	background-color: var(--bg2);
	max-width: 1070px;
	margin: 0 auto;
	margin-top: -110px;
	position: relative;
	z-index: 9;
	opacity: 0;
	visibility: hidden;
	transition: all 0.4s ease-in-out;
	border-left: 4px solid var(--theme);
}

@media (max-width: 1199px) {
	.hero-5 .hero-wrapper .hero-items .hero-content {
		margin-top: 0;
	}
}

@media (max-width: 767px) {
	.hero-5 .hero-wrapper .hero-items .hero-content {
		padding: 50px 40px;
	}
}

@media (max-width: 575px) {
	.hero-5 .hero-wrapper .hero-items .hero-content {
		padding: 40px 30px;
	}
}

.hero-5 .hero-wrapper .hero-items .hero-content h1 {
	color: var(--white);
	margin-bottom: 20px;
}

@media (max-width: 1399px) {
	.hero-5 .hero-wrapper .hero-items .hero-content h1 {
		font-size: 60px;
	}
}

@media (max-width: 1199px) {
	.hero-5 .hero-wrapper .hero-items .hero-content h1 {
		font-size: 52px;
	}
}

@media (max-width: 991px) {
	.hero-5 .hero-wrapper .hero-items .hero-content h1 {
		font-size: 48px;
	}
}

@media (max-width: 767px) {
	.hero-5 .hero-wrapper .hero-items .hero-content h1 {
		font-size: 42px;
	}
}

@media (max-width: 575px) {
	.hero-5 .hero-wrapper .hero-items .hero-content h1 {
		font-size: 32px;
	}
}

.hero-5 .hero-wrapper .hero-items .hero-content h1 span {
	font-weight: 300;
}

.hero-5 .hero-wrapper .hero-items .hero-content p {
	color: var(--white);
}

.hero-5
	.hero-wrapper
	.swiper-slide.swiper-slide-active
	.hero-items
	.hero-content {
	visibility: visible;
	opacity: 1;
}

::-webkit-scrollbar {
	width: 4px;
	height: 4px;
}

/* Track */
::-webkit-scrollbar-track {
	box-shadow: inset 0 0 5px var(--theme);
	border-radius: 5px;
}

/* Handle */
::-webkit-scrollbar-thumb {
	background: var(--theme);
	border-radius: 10px;
}

.fix {
	overflow: hidden;
}

.ralt {
	position: relative;
}

.ripple {
	position: relative;
}

.ripple::before,
.ripple::after {
	position: absolute;
	left: 50%;
	top: 50%;
	width: 115px;
	height: 115px;
	-webkit-transform: translateX(-50%) translateY(-50%);
	transform: translateX(-50%) translateY(-50%);
	border-radius: 50%;
	box-shadow: 0 0 0 0 rgba(166, 161, 130, 0.7);
	animation: rippleOne 3s infinite;
}

.ripple::before {
	-webkit-animation-delay: 0.9s;
	animation-delay: 0.9s;
	content: "";
	position: absolute;
	right: 0;
	bottom: 0;
}

.ripple::after {
	-webkit-animation-delay: 0.6s;
	animation-delay: 0.6s;
	content: "";
	position: absolute;
	right: 0;
	bottom: 0;
}

.swiper-dot {
	text-align: center;
	margin-top: 40px;
	margin-bottom: -7px;
}

.swiper-dot .swiper-pagination-bullet {
	width: 12px;
	height: 8px;
	transition: 0.6s;
	background-color: #d9d9d9;
	opacity: 1;
	border-radius: 60px;
	position: relative;
}

.swiper-dot .swiper-pagination-bullet.swiper-pagination-bullet-active {
	background-color: var(--theme);
	transition: 0.6s;
	position: relative;
	width: 51px;
}

.array-button {
	position: relative;
	z-index: 99;
	display: flex;
	align-items: center;
	gap: 20px;
}

.array-button .array-prev {
	width: 60px;
	height: 60px;
	line-height: 60px;
	border-radius: 50%;
	background-color: rgba(166, 161, 130, 0.2);
	color: var(--theme);
	font-size: 18px;
	font-weight: 600;
	transition: all 0.4s ease-in-out;
}

@media (max-width: 575px) {
	.array-button .array-prev {
		width: 45px;
		height: 45px;
		line-height: 45px;
	}
}

.array-button .array-prev:hover {
	background-color: var(--theme);
	color: var(--white);
}

.array-button .array-next {
	width: 60px;
	height: 60px;
	line-height: 60px;
	border-radius: 50%;
	background-color: var(--theme);
	color: var(--white);
	font-size: 18px;
	font-weight: 600;
	transition: all 0.4s ease-in-out;
}

@media (max-width: 575px) {
	.array-button .array-next {
		width: 45px;
		height: 45px;
		line-height: 45px;
	}
}

.array-button .array-next:hover {
	background-color: rgba(166, 161, 130, 0.2);
	color: var(--theme);
}

.array-button.radius-none .array-prev,
.array-button.radius-none .array-next {
	border-radius: 0 !important;
}

.mt-10 {
	margin-top: 10px;
}

@media (max-width: 575px) {
	br {
		display: none;
	}
}

/* background */
.bg-cover {
	background-repeat: no-repeat;
	background-size: cover;
	position: relative;
	background-position: center;
}

.nice-select {
	font-size: 16px;
	width: unset;
	outline: none;
	background-color: transparent;
	border: 1px solid rgba(255, 255, 255, 0.2);
	color: var(--white);
	padding: 16px 20px;
	font-weight: normal;
	border-radius: 5px;
	transition: all 0.4s ease-in-out;
}

@media (max-width: 767px) {
	.nice-select {
		padding: 14px 20px;
	}
}

@media (max-width: 575px) {
	.nice-select {
		padding: 12px 18px;
	}
}

.nice-select span {
	color: rgba(255, 255, 255, 0.7019607843);
	font-size: 16px;
	margin-bottom: 0 !important;
}

.nice-select option {
	color: rgba(255, 255, 255, 0.7019607843);
}

.nice-select .current {
	margin-right: 12px;
}

.nice-select:after {
	right: 23px;
	border-bottom: 1px solid var(--theme);
	border-right: 1px solid var(--theme);
	width: 10px;
	height: 10px;
}

.nice-select.open .list {
	background: var(--black);
	margin-top: 16px;
	width: 100%;
	text-transform: capitalize;
	color: var(--text);
}

.nice-select .option.selected.focus {
	background: var(--black);
	outline: none;
	color: var(--theme);
	text-transform: capitalize;
	font-size: 16px;
}

.nice-select .option {
	border: none;
}

.nice-select .option:hover {
	background: transparent;
}

.head-color {
	color: var(--header);
}

.footer-bg {
	/* background-color: #00c7d1; */
}

.background-black {
	background-color: var(--black) !important;
}

.bg-white {
	background-color: var(--white) !important;
}

.border-none {
	border-top: none !important;
}

.ml-100 {
	margin-left: 69px !important;
}

@media (max-width: 991px) {
	.ml-100 {
		margin-left: 0 !important;
	}
}

.border-radius-none {
	border-radius: 0 !important;
}

.border-radius-none input {
	border-radius: 0 !important;
}

.text-color {
	color: rgba(255, 255, 255, 0.7019607843);
}

@media (max-width: 991px) {
	.title-responsive {
		flex-wrap: wrap;
		justify-content: center;
		text-align: center;
	}
}

.mb-10 {
	margin-bottom: -10px !important;
}

.style-2-bg {
	position: relative;
}

.style-2-bg::after {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	content: "";
	background-color: var(--bg);
	top: -100px;
	z-index: -1;
}

.pt-80 {
	padding-top: 80px;
}

.pb-80 {
	padding-bottom: 80px;
}

.box-shadow {
	background-color: var(--white);
	box-shadow: var(---box-shadow);
}

.w-100 {
	width: 100% !important;
}

.mt-30 {
	margin-top: 30px !important;
}

.mb-15 {
	margin-bottom: -15px !important;
}

.mt-40 {
	padding-top: 40px;
}

.testimonial-wrapper {
	position: relative;
	margin-top: 30px;
	display: inline-block;
}

@media (max-width: 991px) {
	.testimonial-wrapper {
		width: 100%;
	}
}

.testimonial-wrapper .array-button {
	position: absolute;
	top: 0;
	right: 0;
}

@media (max-width: 1199px) {
	.testimonial-wrapper .array-button {
		display: none;
	}
}

.testimonial-wrapper .array-button .array-prev {
	background-color: transparent;
	width: 50px;
	height: 50px;
	border-radius: 5px;
	line-height: 50px;
	border: 1px solid var(--border);
	color: var(--header);
	font-weight: bold;
}

.testimonial-wrapper .array-button .array-prev:hover {
	background-color: var(--theme);
	color: var(--white);
	border: 1px solid transparent;
}

.testimonial-wrapper .array-button .array-next {
	background-color: transparent;
	width: 50px;
	height: 50px;
	border-radius: 5px;
	line-height: 50px;
	border: 1px solid var(--theme);
	color: var(--theme);
	font-weight: bold;
}

.testimonial-wrapper .array-button .array-next:hover {
	background-color: var(--theme);
	color: var(--white);
}

.testimonial-wrapper .testimonial-image {
	height: 534px;
	width: 850px;
	border-radius: 5px;
}

@media (max-width: 1199px) {
	.testimonial-wrapper .testimonial-image {
		width: 600px;
	}
}

@media (max-width: 991px) {
	.testimonial-wrapper .testimonial-image {
		width: initial;
		max-width: 850px;
	}
}

@media (max-width: 767px) {
	.testimonial-wrapper .testimonial-image {
		height: 480px;
	}
}

@media (max-width: 575px) {
	.testimonial-wrapper .testimonial-image {
		height: 430px;
	}
}

.testimonial-wrapper .testimonial-area {
	max-width: 670px;
}

.testimonial-wrapper .testimonial-items {
	padding: 60px;
	background-color: var(--white);
	border-radius: 5px;
	position: relative;
	z-index: 9;
}

@media (max-width: 767px) {
	.testimonial-wrapper .testimonial-items {
		padding: 40px 30px;
	}
}

.testimonial-wrapper .testimonial-items .icon {
	position: absolute;
	top: 60px;
	right: 60px;
	font-size: 48px;
	color: var(--theme);
}

@media (max-width: 767px) {
	.testimonial-wrapper .testimonial-items .icon {
		top: 50px;
		right: 50px;
	}
}

@media (max-width: 575px) {
	.testimonial-wrapper .testimonial-items .icon {
		top: 40px;
		right: 20px;
		font-size: 38px;
	}
}

.testimonial-wrapper .testimonial-items .client-items {
	display: flex;
	align-items: center;
	gap: 20px;
}

.testimonial-wrapper .testimonial-items .client-items .client-image {
	width: 70px;
	height: 70px;
	border-radius: 50%;
}

.testimonial-wrapper .testimonial-items .client-items .client-content h5 {
	margin-bottom: 5px;
}

.testimonial-wrapper .testimonial-items .star {
	margin-top: 30px;
}

@media (max-width: 575px) {
	.testimonial-wrapper .testimonial-items .star {
		margin-top: 20px;
	}
}

.testimonial-wrapper .testimonial-items .star i {
	color: var(--ratting);
}

.testimonial-wrapper .testimonial-items .star .text-color {
	color: #e6e6e6;
}

.testimonial-wrapper .testimonial-items p {
	font-size: 15px;
	margin-top: 20px;
}

@media (max-width: 575px) {
	.testimonial-wrapper .testimonial-items p {
		margin-top: 15px;
		font-size: 16px;
	}
}

.testimonial-wrapper.style-2 {
	position: relative;
}

.testimonial-wrapper.style-2 .testimonial-image {
	height: 393px;
	margin-top: -160px;
	width: 960px;
}

@media (max-width: 991px) {
	.testimonial-wrapper.style-2 .testimonial-image {
		max-width: 960px;
		margin-top: 0;
		width: initial;
	}
}

.testimonial-wrapper.style-2 .testimonial-area {
	padding-top: 110px;
	max-width: 740px;
	margin-left: -100px;
}

@media (max-width: 991px) {
	.testimonial-wrapper.style-2 .testimonial-area {
		padding-top: 0;
		margin-left: 0;
	}
}

.testimonial-wrapper.style-2 .testimonial-items {
	background-color: var(--black);
	border-radius: 0;
	position: relative;
}

.testimonial-wrapper.style-2 .testimonial-items::before {
	position: absolute;
	top: 0;
	left: 0;
	width: 45px;
	height: 45px;
	content: "";
	background-color: var(--theme);
	opacity: 0.5;
}

.testimonial-wrapper.style-2 .testimonial-items h4 {
	color: var(--white);
	font-weight: 400;
	line-height: 145%;
	font-size: 18px;
}

@media (max-width: 575px) {
	.testimonial-wrapper.style-2 .testimonial-items h4 {
		font-size: 16px;
	}
}

.testimonial-wrapper.style-2 .testimonial-items .client-content {
	margin-top: 30px;
}

.testimonial-wrapper.style-2 .testimonial-items .client-content h3 {
	color: var(--white);
	margin-bottom: 5px;
}

.testimonial-wrapper.style-2 .testimonial-items .client-content span {
	color: var(--white);
	font-weight: 400;
}

.testimonial-wrapper.style-2 .testimonial-items .icon {
	bottom: 55px;
	right: 60px;
	top: initial;
	opacity: 0.5;
}

.testimonial-wrapper.style-2 .array-button {
	position: absolute;
	bottom: -88%;
	left: 55%;
	transform: translateX(-50%);
	gap: 0;
}

.testimonial-wrapper.style-2 .array-button .array-prev {
	color: var(--black);
	border-radius: 0;
}

.testimonial-wrapper.style-2 .array-button .array-prev:hover {
	background-color: var(--theme);
	color: var(--white);
}

.testimonial-wrapper.style-2 .array-button .array-next {
	background-color: var(--theme);
	color: var(--white);
	border-radius: 0;
}

.testimonial-wrapper.style-2 .array-button .array-next:hover {
	background-color: var(--black);
}

.testimonial-wrapper.style-2::before {
	position: absolute;
	bottom: 25px;
	left: 0;
	height: 1px;
	width: 350px;
	content: "";
	background-color: var(--theme);
}

.testimonial-wrapper-2 {
	position: relative;
}

.testimonial-wrapper-2 .testimonial-image {
	max-width: 630px;
	height: 507px;
}

@media (max-width: 767px) {
	.testimonial-wrapper-2 .testimonial-image {
		height: 480px;
	}
}

@media (max-width: 575px) {
	.testimonial-wrapper-2 .testimonial-image {
		height: 430px;
	}
}

.testimonial-wrapper-2 .testimonial-content {
	padding: 0 90px;
	position: relative;
	z-index: 9;
}

@media (max-width: 1199px) {
	.testimonial-wrapper-2 .testimonial-content {
		padding: 0 40px;
	}
}

@media (max-width: 991px) {
	.testimonial-wrapper-2 .testimonial-content {
		padding: 0;
	}
}

.testimonial-wrapper-2 .testimonial-content .client-info {
	margin-bottom: 30px;
}

@media (max-width: 575px) {
	.testimonial-wrapper-2 .testimonial-content .client-info {
		margin-bottom: 20px;
	}
}

.testimonial-wrapper-2 .testimonial-content .client-info h3 {
	color: var(--white);
	margin-bottom: 5px;
}

.testimonial-wrapper-2 .testimonial-content .client-info span {
	color: var(--white);
}

.testimonial-wrapper-2 .testimonial-content p {
	color: var(--white);
	font-size: 18px;
}

.testimonial-wrapper-2 .testimonial-content .social-icon {
	padding: 10px 35px;
	border-radius: 5px;
	border: 1px solid rgba(255, 255, 255, 0.2);
	display: inline-block;
	margin-top: 30px;
}

.testimonial-wrapper-2 .testimonial-content .social-icon a {
	color: var(--white);
}

.testimonial-wrapper-2 .testimonial-content .social-icon a:hover {
	color: var(--theme);
}

.testimonial-wrapper-2 .array-button {
	position: absolute;
	bottom: 0;
	right: 0;
}

@media (max-width: 767px) {
	.testimonial-wrapper-2 .array-button {
		display: none;
	}
}

.testimonial-wrapper-2 .array-button .array-prev {
	background-color: transparent;
	color: var(--theme) !important;
	border: 1px solid var(--theme);
}

.testimonial-wrapper-2 .array-button .array-prev i {
	color: var(--theme);
}

.testimonial-wrapper-2 .array-button .array-prev:hover {
	background-color: var(--theme);
	color: var(--white);
}

.testimonial-wrapper-2 .array-button .array-next {
	background-color: transparent;
	color: var(--white);
	border: 1px solid var(--white);
}

.testimonial-wrapper-2 .array-button .array-next i {
	color: var(--theme);
	transition: all 0.4s ease-in-out;
}

.testimonial-wrapper-2 .array-button .array-next:hover {
	background-color: var(--theme);
	border: 1px solid transparent;
}

.testimonial-wrapper-2 .array-button .array-next:hover i {
	color: var(--white);
}

.testimonial-section-5 {
	position: relative;
}

.testimonial-section-5::before {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	content: "";
	background-color: var(--bg2);
	left: 45%;
}

@media (max-width: 991px) {
	.testimonial-section-5::before {
		display: none;
	}
}

.testimonial-section-5 .frame-shape {
	position: absolute;
	right: 0;
	top: 0;
	bottom: 0;
}

.footer-widgets-wrapper {
	padding: 30px 0 38px;
	position: relative;
	z-index: 9;
}

@media (max-width: 1199px) {
	.footer-widgets-wrapper {
		padding: 70px 0 100px;
	}
}

@media (max-width: 991px) {
	.footer-widgets-wrapper {
		padding: 50px 0 80px;
	}
}

.footer-widgets-wrapper .single-footer-widget {
	margin-top: 30px;
}

.footer-widgets-wrapper .single-footer-widget .widget-head {
	margin-bottom: 0;
	width: 73%;
}

.footer-widgets-wrapper .single-footer-widget .widget-head h5 {
	font-weight: 600;
	color: var(--white);
	font-size: 27px;
	margin-bottom: 25px;
}

.footer-widgets-wrapper .single-footer-widget .footer-content p {
	color: var(--white);
}

.footer-widgets-wrapper .single-footer-widget .footer-content .footer-input {
	position: relative;
	margin-top: 40px;
}

.footer-widgets-wrapper
	.single-footer-widget
	.footer-content
	.footer-input
	input {
	background: rgba(255, 255, 255, 0.1);
	border: none;
	outline: none;
	padding: 18px 20px;
	width: 100%;
	border-radius: 5px;
}

.footer-widgets-wrapper
	.single-footer-widget
	.footer-content
	.footer-input
	input::placeholder {
	color: var(--white);
}

.footer-widgets-wrapper
	.single-footer-widget
	.footer-content
	.footer-input
	.newsletter-btn {
	position: absolute;
	top: 0;
	right: 0;
	width: 60px;
	height: 64px;
	line-height: 60px;
	border-radius: 5px;
	text-align: center;
	background-color: var(--theme);
	color: var(--white);
}

.footer-widgets-wrapper
	.single-footer-widget
	.footer-content
	.footer-input.style-two {
	position: relative;
	margin-top: 40px;
}

.footer-widgets-wrapper
	.single-footer-widget
	.footer-content
	.footer-input.style-two
	input {
	background: transparent;
	border: 1px solid rgba(255, 255, 255, 0.7019607843);
}

.footer-widgets-wrapper
	.single-footer-widget
	.footer-content
	.footer-input.style-two
	input::placeholder {
	color: var(--white);
}

.footer-widgets-wrapper
	.single-footer-widget
	.footer-content
	.footer-input.style-two
	.newsletter-btn {
	border-radius: 0 5px 5px 0;
}

.footer-widgets-wrapper
	.single-footer-widget
	.footer-content
	.footer-input.style-three
	input {
	background-color: var(--black);
	border-radius: 0;
}

.footer-widgets-wrapper
	.single-footer-widget
	.footer-content
	.footer-input.style-three
	.newsletter-btn {
	border-radius: 0;
	color: var(--black);
	font-size: 18px;
	top: 5px;
	right: 5px;
	height: 54px;
}

.footer-widgets-wrapper .single-footer-widget .footer-content .social-icon {
	gap: 10px;
	margin-top: 40px;
}

.footer-widgets-wrapper .single-footer-widget .footer-content .social-icon a {
	width: 40px;
	height: 40px;
	text-align: center;
	line-height: 40px;
	border-radius: 5px;
	display: inline-block;
	background-color: #ffffff;
	color: rgba(255, 255, 255, 0.7019607843);
	transition: all 0.4s ease-in-out;
	border: 1px solid;
}

.footer-widgets-wrapper
	.single-footer-widget
	.footer-content
	.social-icon
	a:hover {
	background-color: var(--theme);
	color: var(--white);
}

.footer-widgets-wrapper
	.single-footer-widget
	.footer-content
	.contact-info-area
	.contact-items {
	display: flex;
	gap: 20px;
}

.footer-widgets-wrapper
	.single-footer-widget
	.footer-content
	.contact-info-area
	.contact-items:not(:last-child) {
	margin-bottom: 5px;
}

.footer-widgets-wrapper
	.single-footer-widget
	.footer-content
	.contact-info-area
	.contact-items
	.icon {
	/* width: 40px; */
	/* height: 40px; */
	line-height: 40px;
	text-align: center;
	/* border: 1px solid var(--theme); */
	color: rgba(255, 255, 255, 0.7019607843);
	border-radius: 50%;
}

.footer-widgets-wrapper
	.single-footer-widget
	.footer-content
	.contact-info-area
	.contact-items
	.content {
	flex-basis: 79%;
}

.footer-widgets-wrapper
	.single-footer-widget
	.footer-content
	.contact-info-area
	.contact-items
	.content
	p {
	color: var(--white);
	font-weight: 500;
	margin-top: 5px;
	margin-bottom: 0;
	font-size: 15px;
}

.footer-widgets-wrapper
	.single-footer-widget
	.footer-content
	.contact-info-area
	.contact-items
	.content
	p
	a {
	color: var(--white);
}

.footer-widgets-wrapper
	.single-footer-widget
	.footer-content
	.contact-info-area-2
	.contact-items {
	display: flex;
	align-items: center;
	gap: 20px;
}

.footer-widgets-wrapper
	.single-footer-widget
	.footer-content
	.contact-info-area-2
	.contact-items:not(:last-child) {
	margin-bottom: 20px;
}

.footer-widgets-wrapper
	.single-footer-widget
	.footer-content
	.contact-info-area-2
	.contact-items
	.icon {
	font-size: 20px;
	color: var(--theme);
}

.footer-widgets-wrapper
	.single-footer-widget
	.footer-content
	.contact-info-area-2
	.contact-items
	.content
	p {
	color: var(--white);
}

.footer-widgets-wrapper
	.single-footer-widget
	.footer-content
	.contact-info-area-2
	.contact-items
	.content
	h6 {
	font-size: 16px;
	font-weight: 400;
}

.footer-widgets-wrapper
	.single-footer-widget
	.footer-content
	.contact-info-area-2
	.contact-items
	.content
	h6
	a {
	color: var(--white);
}

.footer-widgets-wrapper .single-footer-widget .list-items li {
	text-transform: capitalize;
}

.footer-widgets-wrapper .single-footer-widget .list-items li:not(:last-child) {
	margin-bottom: 15px;
}

.footer-widgets-wrapper .single-footer-widget .list-items li a {
	font-size: 17px;
	color: var(--white);
	position: relative;
}

.footer-widgets-wrapper .single-footer-widget .list-items li a::before {
	position: absolute;
	top: 8px;
	left: 0;
	width: 10px;
	height: 2px;
	content: "";
	background-color: #cbcbcb;
	opacity: 0;
	visibility: hidden;
	transition: all 0.4s ease-in-out;
}

.footer-widgets-wrapper .single-footer-widget .list-items li a:hover {
	padding-left: 20px;
	color: #cbcbcb;
}

.footer-widgets-wrapper .single-footer-widget .list-items li a:hover::before {
	opacity: 1;
	visibility: visible;
}

.footer-widgets-wrapper.style-2 .single-footer-widget {
	margin-top: 30px;
}

.footer-widgets-wrapper.style-2
	.single-footer-widget
	.footer-content
	.social-icon
	a {
	background-color: rgba(255, 255, 255, 0.1);
	border-radius: 50%;
}

.footer-widgets-wrapper.style-2
	.single-footer-widget
	.footer-content
	.social-icon
	a:hover {
	background-color: var(--theme);
	color: var(--white);
}

.footer-widgets-wrapper.style-2 .single-footer-widget .list-items li i {
	margin-right: 10px;
	color: var(--theme);
}

.footer-bottom {
	padding: 11px 0;
	position: relative;
	z-index: 9;
	background-color: rgb(112 95 75);
}

@media (max-width: 575px) {
	.footer-bottom {
		padding: 20px 0;
		text-align: center;
	}
}

@media (max-width: 991px) {
	.footer-bottom .footer-wrapper {
		flex-wrap: wrap;
		gap: 10px;
		justify-content: center !important;
		margin-top: 30px;
	}
}

.footer-bottom .footer-wrapper p {
	color: rgb(255 255 255);
}

.footer-bottom .footer-wrapper p a {
	color: #ff4343;
}

.footer-bottom .footer-wrapper .footer-menu {
	display: flex;
	align-items: center;
	gap: 20px;
}

@media (max-width: 575px) {
	.footer-bottom .footer-wrapper .footer-menu {
		flex-wrap: wrap;
		gap: 15px;
		justify-content: center;
	}
}

.footer-bottom .footer-wrapper .footer-menu li a {
	color: rgba(255, 255, 255, 0.7019607843);
	background-image: linear-gradient(var(--theme), var(--theme));
	background-position: 0 95%;
	background-repeat: no-repeat;
	background-size: 0% 2px;
	display: inline-block;
	transition: all 0.4s ease-in-out;
}

.footer-bottom .footer-wrapper .footer-menu li a:hover {
	background-size: 100% 1px;
}

.footer-bottom .footer-wrapper.border-style {
	border-top: 1px solid var(--text) !important;
}

.footer-bottom.style-2 {
	background-color: transparent;
	padding: 0;
	position: relative;
	z-index: 9;
	margin-top: -5px;
}

@media (max-width: 991px) {
	.footer-bottom.style-2 {
		margin-top: -35px;
	}
}

.footer-bottom.style-2 .footer-wrapper {
	border-top: 1px solid rgba(255, 255, 255, 0.2);
	padding: 30px 0;
}

.footer-section {
	position: relative;
	overflow: hidden;
	padding-top: 80px;
}

.footer-section .shape-img {
	position: absolute;
	bottom: 0;
	left: 0;
	opacity: 0.2;
}

.footer-section .shape-img-2 {
	position: absolute;
	bottom: 0;
	left: 0;
	opacity: 0.1;
}

.footer-section .footer-shape-3 {
	position: absolute;
	bottom: 0;
	right: 0;
}

.footer-section .bg-shape {
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
}

.footer-section .bg-shape img {
	width: 100%;
	height: 100%;
}

/*# sourceMappingURL=main.css.map */

.tc-header-style1 .header-slider {
	position: relative;
	overflow: hidden;
}

.tc-header-style1 .header-slider .swiper-slide {
	position: relative;
	overflow: hidden;
	width: 100%;
}

.tc-header-style1 .header-slider .swiper-slide-active {
	position: relative;
	z-index: 20;
}

.tc-header-style1 .header-slider .slider-controls {
	position: absolute;
	right: 40px;
	bottom: 18px;
	z-index: 5;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	padding: 10px 20px;
	border-radius: 30px;
	color: #fff;
}

.tc-header-style1 .header-slider .slider-controls .swiper-button-next,
.tc-header-style1 .header-slider .slider-controls .swiper-button-prev {
	position: static;
	height: -webkit-max-content;
	height: -moz-max-content;
	height: max-content;
	-webkit-margin-start: 50px;
	margin-inline-start: 50px;
	font-size: 30px;
}

.tc-header-style1 .header-slider .slider-controls .swiper-button-next::after,
.tc-header-style1 .header-slider .slider-controls .swiper-button-prev::after {
	color: #fff;
	position: relative;
}

.tc-header-style1 .header-slider .swiper-pagination {
	position: absolute;
	left: 4vw;
	bottom: 24px;
	color: #fff;
	z-index: 30;
	width: -webkit-max-content;
	width: -moz-max-content;
	width: max-content;
}

.tc-header-style1 .header-slider .swiper-pagination > span {
	font-size: 30px;
	font-weight: 100;
	display: block;
	margin: 10px 0;
}

.tc-header-style1 .slider-card {
	position: relative;
}

.tc-header-style1 .slider-card .img {
	/* height: 650px; */
	/* position: relative; */
	/* min-height: 100vh; */
}

.tc-header-style1 .slider-card .img::after {
	position: absolute;
	content: "";
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	/* background-color: #000; */
	opacity: 30%;
	pointer-events: none;
}

.tc-header-style1 .slider-card .info {
	position: absolute;
	left: 0;
	bottom: 30px;
	width: 100%;
	z-index: 20;
	color: #fff;
}

.tc-header-style1 .slider-card .info h1 {
	font-size: calc(12vw + 20px);
	font-weight: 500;
	line-height: 1;
	text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}

@media screen and (max-width: 991px) {
	.tc-header-style1 .slider-card .img {
		height: 550px;
	}

	.tc-header-style1 .slider-card .info {
		bottom: 60px;
	}

	.tc-header-style1 .swiper-pagination {
		display: none;
	}

	.tc-header-style1 .header-slider .slider-controls {
		bottom: 165px;
		right: 0;
	}

	.tc-header-style1 .header-slider .slider-controls .swiper-button-prev::after,
	.tc-header-style1 .header-slider .slider-controls .swiper-button-next::after {
		font-size: 20px;
	}
}

html[lang="ar"]
	.home-style1
	.tc-header-style1
	.header-slider
	.swiper-pagination {
	left: auto;
	right: 4vw;
}

html[lang="ar"] .home-style1 .tc-header-style1 .header-slider .slider-controls {
	right: auto;
	left: 40px;
}

html[lang="ar"]
	.home-style1
	.tc-header-style1
	.header-slider
	.slider-card
	.info
	h1 {
	font-size: calc(10vw + 10px);
}

.sticky .main-menu ul li a {
	color: #000 !important;
}

#sidebarMenu {
	top: 0;
	height: 100%;
	position: fixed;
	right: 0;
	width: 305px;
	/* z-index: 9999; */
	/* margin-top: 60px; */
	transform: translateX(305px);
	transition: transform 250ms ease-in-out;
	background: #ffff;
}

.sidebarMenuInner {
	margin: 0;
	padding: 0;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	padding-top: 82px;
}

.sidebarMenuInner li {
	list-style: none;
	color: #fff;
	text-transform: uppercase;
	font-weight: bold;
	padding: 10px;
	cursor: pointer;
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.sidebarMenuInner li span {
	display: block;
	font-size: 14px;
	color: rgba(255, 255, 255, 0.5);
}

.sidebarMenuInner li a {
	color: #000;
	text-transform: math-auto;
	cursor: pointer;
	text-decoration: none;
}

input[type="checkbox"]:checked ~ #sidebarMenu {
	transform: translateX(0);
}

input[type="checkbox"] {
	transition: all 0.3s;
	box-sizing: border-box;
	display: none;
}

.sidebarIconToggle {
	transition: all 0.3s;
	box-sizing: border-box;
	cursor: pointer;
	position: relative;
	z-index: 99;
	right: 0;
	height: 100%;
	width: 100%;
	/* top: -21px; */
	/* left: 0; */
	/* height: 22px; */
	width: 39px;
}

.spinner {
	transition: all 0.3s;
	box-sizing: border-box;
	position: absolute;
	height: 3px;
	width: 100%;
	background-color: #fff;
}

.horizontal {
	transition: all 0.3s;
	box-sizing: border-box;
	position: relative;
	float: left;
	margin-top: 7px;
}

.diagonal.part-1 {
	position: relative;
	transition: all 0.3s;
	box-sizing: border-box;
	float: left;
}

.diagonal.part-2 {
	transition: all 0.3s;
	box-sizing: border-box;
	position: relative;
	float: left;
	margin-top: 7px;
}

input[type="checkbox"]:checked ~ .sidebarIconToggle > .horizontal {
	transition: all 0.3s;
	box-sizing: border-box;
	opacity: 0;
	background: #000;
}

input[type="checkbox"]:checked ~ .sidebarIconToggle > .diagonal.part-1 {
	transition: all 0.3s;
	box-sizing: border-box;
	transform: rotate(135deg);
	background: #000;
	margin-top: 8px;
}

input[type="checkbox"]:checked ~ .sidebarIconToggle > .diagonal.part-2 {
	transition: all 0.3s;
	box-sizing: border-box;
	transform: rotate(-135deg);
	margin-top: -9px;
	background: #000;
}

.ptb-50 {
	padding: 50px 0px;
}

.sticky .spinner {
	background-color: #000 !important;
}

.hero-image img {
	width: 100%;
}

.sub-heading {
	color: #000;
	font-weight: 500;
	margin-bottom: 8px;
	font-size: 17px;
}

.heading {
	font-size: 60px;
	color: #4a4a4a;
	line-height: 70px;
	margin-bottom: 20px;
}

.heading span {
	/* font-style: italic; */
	color: #b11e1e;
	/* font-size: 60px; */
}

.th-btn {
	margin-top: 45px;
	position: relative;
	z-index: 2;
	overflow: hidden;
	vertical-align: middle;
	display: inline-block;
	border: none;
	text-transform: capitalize;
	text-align: center;
	background-color: #b11e1e;
	color: #ffffff;
	font-size: 16px;
	font-weight: 400;
	line-height: 1;
	padding: 20.5px 22px;
	/* min-width: 170px; */
	border-radius: 30px;
	-webkit-perspective: 320px;
	perspective: 320px;
}

.th-btn.style4 {
	/* background-color: #b11e1e; */
}

a.th-btn.style4 {
}

.th-btn:before {
	content: "";
	position: absolute;
	height: 0;
	top: 50%;
	right: 0;
	width: 0;
	background-color: #b11e1e;
	z-index: -1;
	-webkit-transition: all 0.4s ease-in-out;
	transition: all 0.4s ease-in-out;
	border-radius: inherit;
	-webkit-transform-origin: top center;
	-ms-transform-origin: top center;
	transform-origin: top center;
}

.th-btn.style4:before,
.th-btn.style4:after {
	background-color: #a12121;
}

.th-btn.style4:hover {
	background-color: #d54040;
	color: #fff;
}

.th-btn:hover::before,
.th-btn:hover:after,
.th-btn.active::before,
.th-btn.active:after {
	top: 0;
	height: 100%;
	width: 100%;
	right: unset;
	left: 0;
}

.about-img img {
	/* border-radius: 999px; */
	width: 100%;
}

.contact-process-wrap {
	background-color: #101840;
	padding: 48px;
	border-radius: 24px;
	max-width: 495px;
	position: relative;
	z-index: 2;
}

.contact-process-wrap.no-bg {
	padding: 0;
	background-color: transparent;
}

.contact-process-wrap:before {
	content: "";
	position: absolute;
	top: 70px;
	left: 92px;
	height: calc(100% - 160px);
	border-left: 1px dashed #e1e4e5;
}

.contact-process-wrap.no-bg:before {
	top: 70px;
	left: 44px;
	height: calc(100% - 150px);
	border-left: 1px dashed #666;
}

.contact-process {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	gap: 32px;
	margin-bottom: 28px;
}

.contact-process .box-number {
	width: 88px;
	height: 88px;
	line-height: 88px;
	font-size: 18px;
	font-weight: 600;
	color: #fff;
	text-align: center;
	border-radius: 99px;
	background-color: rgba(244, 118, 41, 0.2);
	position: relative;
	z-index: 2;
}

.contact-process .box-number:before {
	content: "";
	position: absolute;
	inset: 18px;
	background-color: #b11e1e;
	border-radius: inherit;
	z-index: -1;
}

.media-body {
	-webkit-box-flex: 1;
	-webkit-flex: 1;
	-ms-flex: 1;
	flex: 1;
}

.contact-process .box-title {
	color: #000;
	margin-bottom: 0;
	font-size: 24px;
}

.contact-process .box-text {
	font-size: 17px;
	color: #e1e4e5;
}

.heading2 {
	font-size: 50px;
	color: #444444;
	line-height: 51px;
	/* font-style: italic; */
	margin-bottom: 12px;
}

.ScrollSmoother-wrapper {
	display: none;
}

.category-card {
	position: relative;
	margin-top: 50px;
}

.arrow-svg {
	margin-left: 51px;
	margin-top: 30px;
}

.pt-50 {
	padding-top: 50px;
}

.new-welcome-sec {
	/* background-image: url(../img/about-bg-img.png); */
	/* background-color: #efffd5; */
}

.stroke-img {
	margin-bottom: -11px;
	position: relative;
	z-index: 1;
}

.button-read-more {
	display: inline-block;
	color: #b11e1e;
	position: relative;
	z-index: 1;
	vertical-align: middle;
	transition: all 0.3s ease-in-out;
	box-sizing: border-box;
	margin-left: 0;
	margin-bottom: 0;
	font-size: 13px;
	text-transform: uppercase;
	font-weight: 700;
	padding-left: 27px;
	line-height: 34px;
}

.button-read-more:before {
	content: "";
	display: block;
	width: 17px;
	height: 1px;
	background: blue;
	position: absolute;
	left: 0;
	top: 15px;
	transition: 0.4s;
}

.button-read-more:before {
	background: #b11e1e;
}

.button-read-more:hover:before {
	width: 45px;
}

.button-read-more:after {
	content: "";
	display: block;
	width: 6px;
	height: 6px;
	border-width: 1px 1px 0 0;
	border-style: solid;
	border-color: blue;
	transform: rotate(45deg);
	position: absolute;
	left: 10px;
	top: 12px;
	transition: 0.3s;
	transition-delay: 0.1s;
}

.button-read-more:after {
	border-color: #b11e1e;
}

.button-read-more:hover:after {
	opacity: 0;
	left: 25px;
	transition-delay: 0s;
}

.infobox_button {
	position: relative;
}

.category-card {
	position: relative;
}

.category-content {
	position: absolute;
	bottom: -37px;
	left: -33px;
}

.category-content h5 {
	font-size: 35px;
}

.category-card-2 {
	margin-top: 200px;
}

.category-card-2 .stroke-img {
	position: absolute;
	bottom: -64px;
	left: -192px;
}

.category-card-2 .category-content {
	top: -32px;
}

.new-category-sec {
	position: relative;
	/* background-image: url(../img/how_to_work_bg.png); */
	background-repeat: no-repeat;
	background-size: cover;
	padding-bottom: 146px;
}

.vector-1 {
	position: absolute;
	width: 16%;
	top: 0;
}

.vector-1 img {
	width: 100%;
}

.women-product-sec {
	/* background-image: url(../img/Leaf-Background-1.png); */
	background-position: top right;
	background-repeat: no-repeat;
	background-size: contain;
	background-color: #ffdfd1;
}

.womn-pro-div {
	padding: 0px 20px;
}

.portfolio-image img {
	width: 100%;
}

.step-card-img {
	position: relative;
}

.step-icon {
	position: absolute;
	top: 0;
}

.category-content h3 {
	font-size: 34px;
}

.steps-card h5 {
	margin-top: 25px;
	text-align: center;
	font-size: 24px;
}

.steps-card p {
	text-align: center;
}

.steps-card {
	margin-top: 30px;
}

.middle-banner-sec {
	position: relative;
	border-top: 1px solid #ddd;
	padding-bottom: 270px;
}

.mid-ban-vec-1 {
	position: absolute;
	left: 0;
	top: 0;
}

.mid-ban-vec-2 {
	position: absolute;
	right: 0;
	width: 19%;
}

.mid-ban-vec-3 {
	position: absolute;
	bottom: 0;
	width: 30%;
	left: 18%;
}

.mid-ban-vec-2 img {
	width: 100%;
}

.mid-ban-vec-3 img {
	border-radius: 15px;
	width: 100%;
}

.middle-banner-sec .th-btn {
	margin: 0;
	margin-right: 50px;
}

.middle-banner-sec .heading {
	font-family: "Playfair Display", serif;
	font-weight: 500;
	color: #000;
	font-size: 70px;
	line-height: 79px;
}

.mid-ban-content {
	position: relative;
}

.desc {
	position: absolute;
	max-width: 400px;
	bottom: -56%;
	right: -1%;
	border-left: 1px solid #ddd;
	margin-bottom: 24px;
	padding-left: 27px;
	display: 15px;
}

.down-arrow-wrap {
	position: absolute;
	bottom: 0;
	left: 13%;
	width: 100%;
	height: 210px;
	z-index: -1;
	display: flex;
	align-items: center;
	justify-content: center;
}

.down-arrow-wrap:before {
	background-color: #ddd;
	content: "";
	width: 100%;
	height: 1px;
	position: absolute;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
}

.down-arrow-wrap .arrow-inner {
	position: relative;
	padding: 8px;
}

.down-arrow-wrap .arrow-inner .arrow-text {
	animation-name: spin;
	animation-duration: 15s;
	animation-iteration-count: infinite;
	animation-timing-function: linear;
	position: absolute;
	top: 0;
	left: 0;
	transform: translate(-50%, -50%);
	z-index: -2;
}

@keyframes spin {
	from {
		transform: rotate(0deg);
	}

	to {
		transform: rotate(360deg);
	}
}

.why-choose-sec {
	/* background-image: url(../img/prc_bg.png); */
	margin-top: 50px;
	background-color: #cae3de78;
}

.why-choose-sec .accordion-button:not(.collapsed) {
	background-color: #fff;
}

.why-choose-sec .accordion-item {
	margin-top: 15px;
	border-radius: 15px;
}

.why-choose-sec .accordion-button {
	font-size: 27px;
	padding: 10px 15px;
	border-radius: 15px;
	font-weight: 600;
}

.why-choose-sec .heading2 {
	margin-bottom: 25px;
}

.why-choose-img {
	position: relative;
	background-image: url(../img/bubbles.png);
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
}

.why-choose-img {
	position: relative;
}

.why-choose-img-1 {
	position: absolute;
	right: 20%;
}

.why-choose-img-1 img {
	border-radius: 100%;
	/* width: 50%; */
	width: 300px;
	height: 300px;
}

.why-choose-img-2 {
	position: absolute;
	left: 20%;
}

.why-choose-img-2 img {
	border-radius: 100%;
	/* width: 50%; */
	width: 220px;
	height: 220px;
}

.img-fluid {
	width: 100%;
}

.trend-pro-box {
	padding: 150px;
	/* background: #daf7fd; */
	padding-top: 0;
	padding-bottom: 50px;
	background: rgb(202, 182, 253);
	background: transparent;
}

.trend-pro-card {
	text-align: center;
	/* border: 3px dotted #ffffff; */
	margin-bottom: 20px;
	padding: 15px;
	/* background-color: #fff; */
}

.trend-pro-card img {
	/* background-color: #fff; */
	border: 2px dashed #878787;
}

.trending-pro {
	margin-top: 50px;
	position: relative;
	/* background: #efefef; */
	background: rgb(202, 182, 253);
	background: #fff;
}

.company-waterpmark {
	/* position: absolute; */
	top: 7%;
	text-align: 7%;
	color: #666666;
	text-align: center;
	margin-bottom: 0;
	line-height: 117px;
}

.company-waterpmark p {
	font-size: 77px;
	font-weight: 600;
	font-family: "Playfair Display", serif;
}

.header-logo-2 img {
	width: 100%;
}

.portfolio-wrapper {
	margin-right: -35%;
}

@media (max-width: 1199px) {
	.portfolio-wrapper {
		margin-right: 0;
	}
}

.portfolio-wrapper.style-2 {
	margin-right: 0;
	padding: 0 95px;
}

@media (max-width: 1399px) {
	.portfolio-wrapper.style-2 {
		padding: 0;
	}
}

.portfolio-wrapper.style-2 .portfolio-items {
	margin-top: 0;
}

@media (max-width: 767px) {
	.portfolio-wrapper.style-2 .portfolio-items .portfolio-image {
		max-width: 700px;
	}
}

.portfolio-items {
	/* margin-top: 30px; */
	position: relative;
}

.portfolio-items::before {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	content: "";
	background-color: var(--black);
	z-index: 1;
	top: 20px;
	width: 90%;
	height: 93%;
	left: 20px;
	opacity: 0;
	visibility: hidden;
	transition: all 0.4s ease-in-out;
}

@media (max-width: 1399px) {
	.portfolio-items::before {
		top: 0;
		width: 100%;
		height: 100%;
		left: 0;
	}
}

.portfolio-items .portfolio-image {
	max-width: 410px;
	/* border: 2px solid #ddd; */
	/* height: 534px; */
	border-radius: 5px;
	position: relative;
	background: #ffffff;
}

@media (max-width: 1399px) {
	.portfolio-items .portfolio-image {
		max-width: 550px;
	}
}

@media (max-width: 1199px) {
	.portfolio-items .portfolio-image {
		margin-right: 0;
	}
}

@media (max-width: 767px) {
	.portfolio-items .portfolio-image {
		height: 500px;
	}
}

@media (max-width: 575px) {
	.portfolio-items .portfolio-image {
		max-width: 550px;
	}
}

.portfolio-items .portfolio-image .portfolio-content {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 100%;
	text-align: center;
	z-index: 9;
	opacity: 0;
	visibility: hidden;
	transition: all 0.4s ease-in-out;
}

@media (max-width: 991px) {
	.portfolio-items .portfolio-image .portfolio-content br {
		display: block;
	}
}

.portfolio-items .portfolio-image .portfolio-content .icon {
	width: 55px;
	height: 55px;
	line-height: 55px;
	border-radius: 50%;
	text-align: center;
	background-color: #bc403f;
	color: var(--white);
	display: inline-block;
	transition: all 0.4s ease-in-out;
	margin-bottom: 30px;
}

.portfolio-items .portfolio-image .portfolio-content .icon:hover {
	background-color: #cd7e79;
	color: var(--theme);
}

.portfolio-items .portfolio-image .portfolio-content h3 {
	margin-bottom: 10px;
}

.portfolio-items .portfolio-image .portfolio-content h3 a {
	color: var(--white);
}

.portfolio-items .portfolio-image .portfolio-content h3 a:hover {
	color: var(--theme);
}

.portfolio-items .portfolio-image .portfolio-content p {
	color: var(--white);
}

.portfolio-items:hover::before {
	opacity: 0.8;
	visibility: visible;
}

.portfolio-items:hover .portfolio-image .portfolio-content {
	opacity: 1;
	visibility: visible;
}

.portfolio-wrapper-2 {
	margin-bottom: 30px;
}

.portfolio-wrapper-2 .portfolio-content {
	display: flex;
	align-items: center;
	gap: 110px;
	border-top: 1px solid rgba(255, 255, 255, 0.2);
	padding: 40px 0;
}

@media (max-width: 767px) {
	.portfolio-wrapper-2 .portfolio-content {
		gap: 90px;
		padding: 30px 0;
	}
}

@media (max-width: 575px) {
	.portfolio-wrapper-2 .portfolio-content {
		gap: 70px;
		padding: 25px 0;
	}
}

.portfolio-wrapper-2 .portfolio-content:last-child {
	border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.portfolio-wrapper-2 .portfolio-content .content {
	position: relative;
	overflow: hidden;
}

.portfolio-wrapper-2 .portfolio-content .content::before {
	position: absolute;
	top: 6px;
	left: 0px;
	content: "";
	width: 90px;
	height: 16px;
	background-size: cover;
	background-image: url(../img/arrow.svg);
	left: -100px;
	opacity: 0;
	visibility: hidden;
	transition: all 0.4s ease-in-out;
}

.portfolio-wrapper-2 .portfolio-content .content p {
	color: var(--theme);
	transition: all 0.4s ease-in-out;
}

.portfolio-wrapper-2 .portfolio-content h3 a {
	color: var(--white);
}

.portfolio-wrapper-2 .portfolio-content h3 a:hover {
	color: var(--theme);
}

.portfolio-wrapper-2 .portfolio-content:hover .content::before {
	opacity: 1;
	visibility: visible;
	left: 0;
}

.portfolio-wrapper-2 .portfolio-content:hover .content p {
	padding-left: 110px;
}

.portfolio-wrapper-2 .portfolio-image {
	margin-left: 100px;
	position: relative;
	z-index: 9;
}

@media (max-width: 1399px) {
	.portfolio-wrapper-2 .portfolio-image {
		margin-left: 50px;
	}
}

@media (max-width: 1199px) {
	.portfolio-wrapper-2 .portfolio-image {
		margin-left: 0;
	}
}

.portfolio-wrapper-2 .portfolio-image img {
	width: 100%;
	height: 100%;
	border-radius: 5px;
}

.portfolio-wrapper-2 .portfolio-image::before {
	position: absolute;
	top: 20px;
	left: 0;
	right: 0;
	bottom: 0;
	content: "";
	width: 535px;
	height: 410px;
	border-radius: 5px;
	background-color: var(--theme);
	transform: rotate(-15deg);
	z-index: -1;
	opacity: 0.5;
}

@media (max-width: 1399px) {
	.portfolio-wrapper-2 .portfolio-image::before {
		width: 495px;
	}
}

@media (max-width: 1199px) {
	.portfolio-wrapper-2 .portfolio-image::before {
		display: none;
	}
}

@media (max-width: 767px) {
	.portfolio-wrapper-3 {
		margin-top: -20px;
	}
}

.portfolio-wrapper-3 .portfolio-content {
	margin-left: 33px;
}

@media (max-width: 1199px) {
	.portfolio-wrapper-3 .portfolio-content {
		margin-left: 0;
	}

	.portfolio-wrapper-3 .portfolio-content br {
		display: block;
	}
}

@media (max-width: 575px) {
	.portfolio-wrapper-3 .portfolio-content {
		text-align: center;
	}
}

.portfolio-wrapper-3 .portfolio-content h6 {
	font-size: 18px;
	font-weight: 600;
	color: var(--theme);
	display: inline-block;
	margin-bottom: 10px;
	line-height: 1;
}

.portfolio-wrapper-3 .portfolio-content h3 {
	font-size: 28px;
	font-weight: 700;
	margin-bottom: 15px;
}

@media (max-width: 991px) {
	.portfolio-wrapper-3 .portfolio-content h3 {
		font-size: 26px;
	}
}

@media (max-width: 767px) {
	.portfolio-wrapper-3 .portfolio-content h3 {
		font-size: 24px;
	}
}

@media (max-width: 575px) {
	.portfolio-wrapper-3 .portfolio-content h3 {
		font-size: 20px;
		margin-bottom: 10px;
	}
}

.portfolio-wrapper-3 .portfolio-content h3 a:hover {
	color: var(--theme);
}

.portfolio-wrapper-3 .portfolio-content p {
	margin-bottom: 35px;
}

@media (max-width: 767px) {
	.portfolio-wrapper-3 .portfolio-content p {
		margin-bottom: 25px;
	}
}

.portfolio-wrapper-3 .portfolio-content ul {
	margin-bottom: 35px;
	margin-top: -10px;
}

.portfolio-wrapper-3 .portfolio-content ul li i {
	color: var(--theme);
	margin-right: 5px;
}

.portfolio-wrapper-3 .portfolio-content ul li:not(:last-child) {
	margin-bottom: 15px;
}

.portfolio-wrapper-3 .portfolio-content .counter-item {
	display: inline-flex;
	gap: 20px;
	padding: 20px;
	background-color: #c1995b;
}

.portfolio-wrapper-3 .portfolio-content .counter-item h2 {
	font-size: 48px;
}

.portfolio-wrapper-3 .portfolio-content .counter-item h2 span {
	font-size: 48px;
	color: var(--white);
	font-weight: 700;
	margin-bottom: 0;
}

.portfolio-wrapper-3 .portfolio-content .counter-item p {
	margin-bottom: 0;
}

.portfolio-wrapper-3 .project-image {
	margin-left: 33px;
}

@media (max-width: 1199px) {
	.portfolio-wrapper-3 .project-image {
		margin-left: 0;
	}
}

.portfolio-wrapper-3 .project-image img {
	width: 100%;
	height: 100%;
	border-radius: 5px;
}

.portfolio-section-2
	.swiper-slide.swiper-slide-active
	.portfolio-single-items
	.portfolio-image
	.portfolio-content {
	opacity: 1;
	visibility: visible;
	bottom: 20px;
}

.portfolio-single-items {
	margin-top: 30px;
	overflow: hidden;
}

.portfolio-single-items .portfolio-image {
	height: 402px;
	transition: all 0.4s ease-in-out;
	position: relative;
}

.portfolio-single-items .portfolio-image .portfolio-content {
	position: absolute;
	bottom: 0;
	left: 20px;
	right: 20px;
	padding: 30px;
	background-color: var(--black);
	bottom: -150px;
	opacity: 0;
	transition: all 0.4s ease-in-out;
}

.portfolio-single-items .portfolio-image .portfolio-content h3 {
	margin-bottom: 10px;
}

.portfolio-single-items .portfolio-image .portfolio-content h3 a {
	color: var(--white);
}

.portfolio-single-items .portfolio-image .portfolio-content h3 a:hover {
	color: var(--theme);
}

.portfolio-single-items .portfolio-image .portfolio-content p {
	color: var(--white);
}

.portfolio-single-items:hover .portfolio-image .portfolio-content {
	opacity: 1;
	visibility: visible;
	bottom: 20px;
}

.widget-head img {
	width: 100%;
}

.women-pr-swiper {
	margin-top: 20px;
}

.array-button svg {
	width: 18px;
}

.testimonial-items svg {
	width: 50px;
	fill: #9f9f9f;
}

.star svg {
	width: 16px;
	fill: #f5ea13;
}

.social-icon svg {
	width: 15px;
	fill: #000000;
}

.contact-items svg {
	width: 16px;
	fill: #ffffff;
	/* padding: 18px; */
}

.slider-card img {
	width: 100%;
}

.logo-black {
	display: none;
}

.sticky .logo-black {
	display: block;
}

.sticky .logo-white {
	display: none;
}

.mid-ban-vec-1 img {
	border-radius: 15px;
}

.mid-ban-vec-2 img {
	border-radius: 15px;
}

.sidebarMenuInner li img {
	width: 82%;
}

.side-social-icon {
}

.side-social-icon ul {
}

.side-social-icon li {
	display: inline-block;
	padding: 0;
	border: 0;
	width: 14%;
}

.side-social-icon li a {
	color: #ffffff;
}

.side-social-icon li a svg {
	fill: #fff;
	width: 20px;
	height: 20px;
	/* background: #000; */
}

.portfolio-content .icon svg {
	width: 20px;
	fill: #fff;
}

.testimonial-section .swiper-button-next:after,
.testimonial-section .swiper-rtl .swiper-button-prev:after {
	display: none;
}

.testimonial-section .swiper-button-prev:after,
.testimonial-section .swiper-rtl .swiper-button-next:after {
	display: none;
}

.testimonial-section .swiper-button-prev,
.testimonial-section .swiper-rtl .swiper-button-next {
	left: -130px;
}

.women-pr-swiper .swiper-button-next:after,
.women-pr-swiper .swiper-button-prev:after {
	font-size: 29px;
	display: none;
	width: 18px;
}

.women-pr-swiper .swiper-button-next,
.women-pr-swiper .swiper-rtl .swiper-button-prev {
	/* background: #fff; */
	padding: 0;
	border: 1px solid #000;
	border-radius: 5px;
	padding: 5px;
}

.women-pr-swiper .swiper-button-prev,
.women-pr-swiper .swiper-rtl .swiper-button-next {
	/* background: #fff; */
	padding: 0;
	border: 1px solid #000;
	border-radius: 5px;
	padding: 5px;
}

.trend-mySwiper .swiper-button-next:after,
.trend-mySwiper .swiper-button-prev:after {
	font-size: 29px;
	display: none;
}

.trend-mySwiper .swiper-button-next,
.trend-mySwiper .swiper-rtl .swiper-button-prev {
	border: 1px solid #585858;
	/* background: #fff; */
	padding: 13px;
	border-radius: 5px;
	width: 50px;
}

.trend-mySwiper .swiper-button-prev,
.trend-mySwiper .swiper-rtl .swiper-button-next {
	/* background: #fff; */
	padding: 26px;
	border: 1px solid #585858;
	/* background: #fff; */
	padding: 13px;
	border-radius: 5px;
	width: 50px;
}

.trend-mySwiper .swiper-button-prev,
.trend-mySwiper .swiper-rtl .swiper-button-next {
	bottom: 0;
	top: auto;
}

.trend-mySwiper .swiper-button-next,
.trend-mySwiper .swiper-button-prev {
	bottom: 0;
	top: auto;
	/* left: 33%; */
}

.testimonial-section {
	position: relative;
}

.testi-img {
	position: absolute;
	right: 0;
	top: 0;
}

.sticky .logo img {
	/* width: 50%; */
}

.logo {
	width: 71%;
}

.sticky .logo {
	width: 65%;
}

.trend-pro-card p {
	color: #000;
	font-size: 25px;
	/* font-weight: 600; */
	margin-top: 45px;
}

.testi-img-2 {
	position: absolute;
	left: 0;
	top: 0;
}

.carousel-control-prev-icon {
	border: 1px solid #ddd;
	border-radius: 100%;
	padding: 25px;
	background-size: 56%;
}

.carousel-control-next-icon {
	border: 1px solid #ddd;
	border-radius: 100%;
	padding: 25px;
	background-size: 56%;
}

.desc p {
	font-size: 15px;
}

.trending-pro .swiper-pointer-events {
	padding-bottom: 60px;
}

.trend-mySwiper .swiper-button-prev {
	left: 43%;
}

.trend-mySwiper .swiper-button-next {
	right: 32%;
}

.footer-section {
	background-image: url(../img/footer-bg.webp);
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
}

.new-welcome-sec {
	position: relative;
}

.new-welcome-sec .welcome-vector {
	position: absolute;
}

.trend-right {
	position: relative;
}

.trend-right-content {
	position: absolute;
	top: 17%;
	width: 100%;
}

.trending-myswiper .swiper-slide {
	height: auto !important;
}

.trending-myswiper {
	overflow: hidden;
}

.trend-right {
	position: relative;
	height: 100%;
}

.trend-icon-1 {
	position: absolute;
	width: 22%;
	opacity: 0.5;
	left: 0;
	top: 0;
}

.trend-icon-2 {
	position: absolute;
	width: 22%;
	opacity: 0.6;
	right: 0;
	bottom: 0;
}

.trend-icon-1 img {
	width: 100%;
}

.trend-icon-2 img {
	width: 100%;
}

.internal-page .header-1 {
	position: relative;
}

.internal-page .header-main .main-menu ul li a {
	color: #000;
}

.internal-page .spinner {
	background-color: #000;
}

.breadcrumb-banner {
	background-color: #ebabc6;
	padding: 100px 0px;
	position: relative;
}

.breadcrumb-text {
	color: #ffffff;
	font-size: 46px;
	margin-bottom: 15px;
}

.breadcrumb-link {
	color: #bf4545;
}

.breadcrumb-link a {
	color: #000000;
}

.bread-vec-1 {
	position: absolute;
	bottom: 0;
	right: 0;
}

.bread-vec-3 {
	position: absolute;
	top: 10%;
	right: 17%;
}

.bread-vec-2 {
	position: absolute;
	bottom: 16%;
	left: 20%;
}

.bread-vec-4 {
	position: absolute;
	top: 0;
	--e-transform-rotateZ: 180deg;
	transform: perspective(var(--e-transform-perspective, 0))
		rotate(var(--e-transform-rotateZ, 0)) rotateX(var(--e-transform-rotateX, 0))
		rotateY(var(--e-transform-rotateY, 0))
		translate(var(--e-transform-translate, 0))
		translateX(var(--e-transform-translateX, 0))
		translateY(var(--e-transform-translateY, 0))
		scaleX(
			calc(
				var(--e-transform-flipX, 1) *
					var(--e-transform-scaleX, var(--e-transform-scale, 1))
			)
		)
		scaleY(
			calc(
				var(--e-transform-flipY, 1) *
					var(--e-transform-scaleY, var(--e-transform-scale, 1))
			)
		)
		skewX(var(--e-transform-skewX, 0)) skewY(var(--e-transform-skewY, 0));
}

.product-listing-sec .nav-tabs .nav-item.show .nav-link,
.product-listing-sec .nav-tabs .nav-link.active {
	color: #ffffff;
	background-color: #000000;
	border-radius: 50px;
}

.product-listing-sec .nav-tabs .nav-link {
	border: none;
	margin: 0px 12px;
	color: #000;
	border-radius: 50px;
}

.product-listing-sec .nav-tabs {
	border-radius: 50px !important;
	border-bottom: 0;
	display: inline-flex;
	border: 1px solid #aeb0b6;
	padding: 5px;
	margin-bottom: 45px;
}

.product-listing-sec {
	position: relative;
	overflow: hidden;

	.testi-img {
		animation: float 3s infinite ease-in-out;
	}
}

.product-item.style-one .product-thumbnail {
	position: relative;
	overflow: hidden;
	border-radius: 10px;
	/* border: 2px dashed #ff8686; */
}

.product-item.style-one .product-thumbnail img {
	width: 100%;
	border-radius: 16px;
}

/*.product-item.style-one .product-thumbnail .discount {*/
/*	width: 79px;*/
/*	height: 36px;*/
/*	position: absolute;*/
/*	top: 26px;*/
/*	left: 0;*/
/*	border-radius: 0px 50px 50px 0px;*/
/*	text-transform: uppercase;*/
/*	color: #000;*/
/*	background: #88f98bb5;*/
/*	padding: 5px 10px;*/
/*	font-weight: 600;*/
/*}*/

.product-item.style-one .product-thumbnail .discount {
	width: 41px;
	height: 25px;
	position: absolute;
	top: 11px;
	left: 0;
	line-height: 23px;
	border-radius: 0px 50px 50px 0px;
	text-transform: uppercase;
	color: #000;
	background: #f7bbbbb5;
	padding: 1px 6px;
	font-weight: 400;
	font-size: 11px;
}

.product-item.style-one .product-thumbnail .cart-button {
	position: absolute;
	bottom: -50%;
	left: 50%;
	transform: translateX(-50%);
	-webkit-transition: all 0.4s ease-out 0s;
	-moz-transition: all 0.4s ease-out 0s;
	-ms-transition: all 0.4s ease-out 0s;
	-o-transition: all 0.4s ease-out 0s;
	transition: all 0.4s ease-out 0s;
}

.product-item.style-one .product-thumbnail .cart-button .cart-btn {
	width: 180px;
	height: 180px;
	border-radius: 50%;
	border: 2px solid #fff;
	text-align: center;
	padding: 15px;
	background: #5e5141;
	display: inline-block;
}

.product-item.style-one .product-thumbnail .cart-button .cart-btn svg {
	display: block;
	margin-bottom: 7px;
	margin: 0px auto;
	margin-bottom: 10px;
}

.product-item.style-one .product-thumbnail .cart-button .cart-btn span {
	font: 400 18px;
	color: #fff;
	font-size: 17px;
}

.product-item.style-one .product-info-wrap {
	text-align: center;
	padding-top: 20px;
	align-items: flex-start;
	justify-content: space-between;
}

.product-item.style-one .product-info {
	position: relative;
}

.product-item.style-one .product-info h3.title {
	font-size: 22px;
}

.product-item.style-one:hover .product-thumbnail .cart-button {
	bottom: -90px;
}

.cart-btn svg {
	width: 20px;
	fill: #fff;
}

.product-item {
	margin-bottom: 30px;
	display: block;
}

.product-detail-img {
	border: 2px dashed #f0b69e;
	border-radius: 10px;
}

.product-item.style-one .product-thumbnail .hover-content {
	position: absolute;
	bottom: 26px;
	right: -50px;
	-webkit-transition: all 0.35s ease-out 0s;
	-moz-transition: all 0.35s ease-out 0s;
	-ms-transition: all 0.35s ease-out 0s;
	-o-transition: all 0.35s ease-out 0s;
	transition: all 0.35s ease-out 0s;
}

.product-item.style-one:hover .product-thumbnail .hover-content {
	right: 9px;
}

.hover-content svg {
	width: 50px;
	fill: #ffffff;
	background: #000;
	padding: 9px;
	border-radius: 100px;
}

.product-detail-sec .heading2 {
	border-bottom: 1px solid #c7c7c7;
	display: inline-block;
}

.product-detail-sec ul {
	border-bottom: 1px dashed #000;
	margin-bottom: 20px;
}

.product-detail-sec ul li {
	display: inline-block;
	border: 1px solid #111;
	margin-right: 10px;
	padding: 8px 22px;
	font-size: 18px;
	margin-bottom: 20px;
	color: #000;
}

.product-detail-sec h5 {
	font-size: 27px;
	margin: 15px 0px;
}

.product-detail-sec .th-btn {
	margin-top: 20px;
}

.enquiry-form .th-btn {
	margin-top: 20px;
}

.enquiry-form input {
	/* border-radius: 10px; */
	/* background-color: transparent; */
	/* border: 1px solid rgb(205 229 237); */
	/* height: 46px; */
	/* width: 100%; */
	/* border: none; */
	/* outline: none; */
	/* padding: 0 20px; */
	/* line-height: 58px; */
	/* font-size: 16px; */
	/* color: #a5a5a5; */
	margin-bottom: 15px;
	/* font-weight: 400; */
	border: none;
	background-color: #ffffffa6;
	border-bottom: 1px solid rgb(219 219 219);
	height: 45px;
	width: 100%;
	/* border: none; */
	/* outline: none; */
	padding: 0 20px;
	line-height: 58px;
	font-size: 16px;
	color: #a5a5a5;
	font-weight: 400;
}

.enquiry-form textarea {
	/* border-radius: 10px; */
	border: none;
	background-color: #ffffffa6;
	border-bottom: 1px solid rgb(219 219 219);
	height: 100%;
	width: 100%;
	/* border: none; */
	/* outline: none; */
	padding: 0 20px;
	line-height: 58px;
	font-size: 16px;
	color: #a5a5a5;
	font-weight: 400;
}

.pb-50 {
	padding-bottom: 50px;
}

.contact-details-box p svg {
	width: 20px;
	fill: #c70d0d;
	margin-right: 16px;
}

.contact-details-box p {
	color: #000;
	margin-bottom: 15px;
}

.contact-details-box .heading2 {
	margin-bottom: 25px;
}

.contact-details-box {
	padding: 25px;
	border: 1px solid #ddd;
	background: #f7f7f7;
}

.about-us {
	position: relative;

	.testi-img {
		z-index: -1;
		animation: float 3s infinite ease-in-out;

		img {
			height: 600px;
		}
	}

	.zoom-fade {
		position: absolute;
		left: -30px;
		animation: zoom-fade 5s infinite ease-in-out;
		opacity: 0.5;
	}
}

.about-us-img {
	/* height: 486px; */
	/* width: 400px; */
	border-top-left-radius: 100px;
	border-bottom-right-radius: 40px;
	overflow: hidden;
	margin-left: 25px;
	img {
		height: 100%;
		width: 100%;
	}
}

@keyframes float {
	0% {
		transform: translateY(0);
	}

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

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

@keyframes zoom-fade {
	0% {
		transform: scale(0.9) translateX(-50%);
	}

	50% {
		transform: scale(1) translateX(-50%);
	}

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

.page-content {
	display: grid;
	grid-gap: 1rem;
	padding: 1rem;
	max-width: 1024px;
	margin: 0 auto;
}

@media (min-width: 600px) {
	.page-content {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (min-width: 800px) {
	.page-content {
		grid-template-columns: repeat(4, 1fr);
	}
}

.about-middle-banner {
	background-image: url(../img/about-middle-banner.webp);
	padding: 100px 0px;
}

.about-banner-content {
	background-color: #fff;
	padding: 50px 30px;
	border: 3px solid #dddddd;
	border-radius: 10px;
}

.single-working-process {
	position: relative;
	display: block;
	padding-top: 40px;
	background: transparent;
	transition: all 500ms ease;
	margin-bottom: 60px;
}

.single-working-process .top-box {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	width: 90px;
	height: 90px;
	display: block;
	border: 3px solid #ff8e7c;
	padding: 27px 0;
	background: #ffffff;
	border-radius: 50%;
	text-align: center;
	margin: 0 auto;
	z-index: 3;
}

.single-working-process .top-box::before {
	position: absolute;
	top: -1px;
	left: -1px;
	bottom: -1px;
	right: -1px;
	content: "";
	background: #ff8e7c;
	border-radius: 50%;
	transition: all 0.5s ease-in-out 0s;
	transform-style: preserve-3d;
	transform: perspective(1200px) rotateY(-90deg) translateZ(0px);
	opacity: 0;
	z-index: -1;
}

.single-working-process .top-box span {
	color: #27282c;
	font-size: 24px;
	line-height: 30px;
	font-weight: 500;
	text-transform: uppercase;
	transition: all 700ms ease 100ms;
}

.single-working-process .inner {
	position: relative;
	display: block;
	padding: 82px 30px 50px;
	background: #ff8e7c;
	border-top: 3px solid #ff8e7c;
	-webkit-box-shadow: 0px 6px 10px 3px #e8e8e8;
	box-shadow: 0px 6px 10px 3px #e8e8e8;
	transition: all 300ms ease;
	min-height: 276px;
}

.single-working-process .inner h3 {
	color: #ffffff;
	font-weight: 600;
	font-size: 37px;
	margin: 0 0 8px;
}

.single-working-process .inner p {
	color: #fff;
	margin: 0;
}

.single-working-process:hover .inner {
	box-shadow: none;
}

.single-working-process:hover .top-box::before {
	transform: perspective(1200px) rotateY(0deg) translateZ(0px);
	transition-delay: 0.1s;
	opacity: 1;
}

.internal-why-choose {
	background-color: #f6f6f6;
}

.single-working-process:hover .top-box span {
	color: #fff;
}

.mision-card {
	padding: 25px;
	box-shadow: 5px 5px 15px #ddd;
	border-radius: 15px;
	min-height: 476px;
	margin-top: 25px;
}

.mision-card h5 {
	font-size: 28px;
	margin-bottom: 25px;
}

.service-two__item {
	position: relative;
	z-index: 1;
	text-align: center;
	background-color: #fff;
	border-radius: 10px;
	padding: 10px 10px 0;
	margin-bottom: 25px;
	box-shadow: 0px 0px 28px #ddd;
}

.service-two__item__image {
	position: relative;
	transition: all 500ms ease;
}

.service-two__item__content {
	position: relative;
	padding: 0 32px 49px;
}

.service-two__item__title {
	text-transform: capitalize;
	font-weight: bold;
	font-size: 22px;
	line-height: 1.2em;
	margin: 20px 0 12px;
}

.service-two__item__title a {
	color: inherit;
	background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px
		95% / 0px 1px no-repeat;
	transition: all 500ms ease;
}

.service-two__item__text {
	margin: 0;
	line-height: 28px;
	transition: all 300ms ease;
}

.service-two__item__link {
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 28px;
	color: #44a05b;
	transition: all 500ms ease;
	line-height: 1em;
	filter: drop-shadow(0 0 6.5px rgba(0, 0, 0, 0.04));
	background-color: #fff;
	border-radius: 50%;
	width: 50px;
	height: 50px;
	margin: 0 auto;
	position: absolute;
	left: 0;
	right: 0;
	bottom: -24px;
	transform: rotate(39deg);
}

.service-two__item::after {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	width: 100%;
	background-color: var(--alefox-black2, #48f9e0);
	z-index: -1;
	border-radius: 10px;
	transform: scale(1, 0);
	perspective: 400px;
	visibility: hidden;
	transition: transform 500ms ease-in-out, visibility 500ms ease-in-out;
	transform-origin: bottom center;
}

.service-two__item:hover::after {
	transform: scale(1, 1);
	visibility: visible;
	transform-origin: top center;
}

.service-two__item__link svg {
	width: 20px;
	fill: #000;
}

.blog-keyword {
	padding: 0;
	display: inline-block;
	border-bottom: 1px solid #ddd;
	margin-bottom: 25px;
}

.blog-keyword li {
	display: inline-block;
	margin-right: 15px;
}
.latest-blog {
	/* margin-top: 100px; */
	padding: 20px;
	border: 1px solid #adadad;
}
.latest-blog li {
	font-size: 22px;
	margin-bottom: 20px;
	border-bottom: 1px solid #ddd;
	padding-bottom: 5px;
	font-weight: 400;
}
.blog-detail-page h4 {
	margin-top: 45px;
	font-size: 35px;
}
.side-social-icon img {
	/* width: 12% !important; */
}
.mision-card img {
	width: 20%;
	margin-bottom: 20px;
}
.why-choose-sec .accordion-body {
	font-size: 15px;
}
.contact-page-details {
	background-color: #41caf614;
}

.kulfiImage {
	position: relative;
	border-radius: 20px;
	overflow: hidden;
	z-index: 99;
	padding: 3px;

	height: 100%;

	img#largeImage {
		height: 100%;
		position: relative;
		z-index: 999;
		width: 100%;
	}
}
#description {
	padding: 5px;
	margin: 10px 0;
	color: rgba(0, 0, 0, 0.5);
}
#kulfiThumbs {
	margin-top: 10px;

	img {
		height: 75px;
		cursor: pointer;
		margin-right: 10px;

		border: 1px solid black;
		border-radius: 10px;
	}
}

@keyframes float {
	0% {
		transform: translateY(0);
	}

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

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

.product-des-content {
	position: relative;
	z-index: 9;

	h3 {
		color: #000;
	}
}

.relevant-product-sec {
	margin-top: 100px;
}

.product-detail-sec {
	position: relative;
}

.product-detail-sec::after {
	content: "";
	position: absolute;
	inset: 0;
	width: 100%;
	height: 87%;
	background: url("../img/product-bg.avif");
	background-repeat: no-repeat;
	background-position: right;
	opacity: 0.25;

	z-index: -1;
}

.product-detail-sec .th-btn {
	background-color: #000;
}

.relevant-product-sec h3 {
	color: #000;
}

.kulfiImage::after {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%) rotate(45deg);
	height: 700px;
	width: 300px;
	background: linear-gradient(to left, pink, skyblue);
	animation: move 1.5s infinite;
}

@keyframes move {
	100% {
		transform: translate(-50%, -50%) rotate(225deg);
	}
}

.tiles {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	padding: 4px;
}

.tile {
	position: relative;
	float: left;
	width: 100%;
	height: 100%;
	overflow: hidden;
	z-index: 9999;
}

.photo {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	transition: transform 0.5s ease-out;
}

.txt {
	position: absolute;
	z-index: 2;
	right: 0;
	bottom: 10%;
	left: 0;
	font-family: "Roboto Slab", serif;
	font-size: 9px;
	line-height: 12px;
	text-align: center;
	cursor: default;
}

.x {
	font-size: 32px;
	line-height: 32px;
}
