@charset "UTF-8";

/*======================================================================================

---------------------------------------*/
@font-face {
	font-family: "Inter", sans-serif;
	src: url('arial.ttf');
	font-style: normal;
}

:root {
	--body: #fff;
	--black: #000;
	--white: #fff;
	--theme: #11A21B;
	--theme2: #11A21B;
	--theme3: #11A21B;
	--header: #2F2F2F;
	--text: #50624A;
	--border: #02060A;
	--bg: #F5F6F4;
	--bg2: #50624A;
	--bg3: #F5F6F4;
	--box-shadow: 0px 1px 14px 0px rgba(0, 0, 0, 0.13);
}

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

@media (max-width: 575px) {
	body {
		font-size: 14px;
	}
}

.header-1.header-2 .header-main .overlay-shape {
	display: none;
}

.breadcrumb-wrapper.bg-cover::after {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 21%;
	content: "";
	z-index: -1;
	background: linear-gradient(180deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0) 100%);
	z-index: -1;
}

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: "Instrument Sans", sans-serif;
	margin: 0px;
	padding: 0;
	color: var(--header);
	transition: all 0.4s ease-in-out;
}

h1 {
	font-size: 45px;
	font-weight: 700;
	line-height: 120%;
	text-transform: capitalize;
}

@media (max-width: 1899px) {
	h1 {
		font-size: 46px;
	}
}

@media (max-width: 1600px) {
	h1 {
		font-size: 45px;
	}
}

@media (max-width: 1399px) {
	h1 {
		font-size: 41px;
	}
}

@media (max-width: 1199px) {
	h1 {
		font-size: 37px;
	}
}

@media (max-width: 991px) {
	h1 {
		font-size: 40px;
		line-height: 130% !important;
	}
}

@media (max-width: 767px) {
	h1 {
		font-size: 40px;
	}
}

@media (max-width: 575px) {
	h1 {
		font-size: 30px;
	}
}

@media (max-width: 470px) {
	h1 {
		font-size: 30px;
	}
}

h2 {
	font-size: 50px;
	font-weight: 700;
	line-height: 120%;
}

@media (max-width: 1399px) {
	h2 {
		font-size: 40px;
	}
}

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

@media (max-width: 991px) {
	h2 {
		font-size: 35px;
	}
}

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

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

@media (max-width: 470px) {
	h2 {
		font-size: 26px;
	}
}

h3 {
	font-size: 21px;
	font-weight: 700;
	line-height: 120%;
	/* text-transform: capitalize; */
}

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

h4 {
	font-size: 20px;
	font-weight: 700;
	line-height: 150%;

}

h5 {
	font-size: 18px;
	font-weight: 700;
	
}

h6 {
	font-size: 16px;
	font-weight: 600;
	
}

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

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

span {
	margin: 0px;
	
}

.theme-btn {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	vertical-align: middle;
	-webkit-appearance: none;
	appearance: none;
	outline: none !important;
	border: none;
	font-weight: 700;
	font-size: 16px;
	color: var(--white);
	padding: 15px 30px 15px;
	transition: 0.5s ease-in-out;
	text-transform: capitalize;
	overflow: hidden;
	gap: 5px;
	text-align: center;
	background-color: var(--theme3);
	z-index: 1;
	border-radius: 8px;
}

@media (max-width: 1399px) {
	.theme-btn {
		padding: 15px 25px 15px;
	}
}

.theme-btn::before {
	content: "";
	background-color: var(--header);
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	clip-path: circle(0% at 50% 50%);
	transition: all cubic-bezier(0, 0.96, 0.58, 1.1) 0.8s;
	z-index: -1;
}

.theme-btn:hover::before {
	clip-path: circle(100% at 50% 50%);
	transition: all cubic-bezier(0, 0.96, 0.58, 1.1) 4s;
	transition-delay: 200ms;
}

.theme-btn::after {
	content: "";
	background-color: rgba(47, 47, 47, 0.3);
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	clip-path: circle(0% at 50% 50%);
	transition: all cubic-bezier(0, 0.96, 0.58, 1.1) 0.8s;
	z-index: -1;
}

.theme-btn:hover::after {
	clip-path: circle(100% at 50% 50%);
	transition: all cubic-bezier(0, 0.96, 0.58, 1.1) 4s;
}

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

.theme-btn:hover img {
	filter: brightness(0);
}

.theme-btn.theme-btn-3 {
	background-color: var(--theme3);
}

.link-btn {
	color: var(--theme);
	font-size: 16px;
	font-weight: 600;
	display: inline-block;
	font-family: "Instrument Sans", sans-serif;
}

.link-btn i {
	margin-left: 5px;
	color: var(--theme);
}

.theme-btn-2 {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	vertical-align: middle;
	-webkit-appearance: none;
	appearance: none;
	outline: none !important;
	border: none;
	font-weight: 700;
	font-size: 16px;
	color: #fff;
	padding: 16px 22px 16px;
	transition: 0.5s ease-in-out;
	text-transform: capitalize;
	overflow: hidden;
	gap: 5px;
	text-align: center;
	background-color: var(--theme2);
	z-index: 1;
	border-radius: 8px;
}

.theme-btn-2::before {
	content: "";
	background-color: var(--header);
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	clip-path: circle(0% at 50% 50%);
	transition: all cubic-bezier(0, 0.96, 0.58, 1.1) 0.8s;
	z-index: -1;
}

.theme-btn-2:hover::before {
	clip-path: circle(100% at 50% 50%);
	transition: all cubic-bezier(0, 0.96, 0.58, 1.1) 4s;
	transition-delay: 200ms;
}

.theme-btn-2::after {
	content: "";
	background-color: rgba(47, 47, 47, 0.3);
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	clip-path: circle(0% at 50% 50%);
	transition: all cubic-bezier(0, 0.96, 0.58, 1.1) 0.8s;
	z-index: -1;
}

.theme-btn-2:hover::after {
	clip-path: circle(100% at 50% 50%);
	transition: all cubic-bezier(0, 0.96, 0.58, 1.1) 4s;
}

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

.theme-btn-2:hover img {
	filter: brightness(0);
}

.theme-btn-2.style-btns {
	/* border: 1px solid #000; */
}

.theme-btn-2.style-btns:hover {
	color: #fff;
}

.link-btn-2 {
	color: var(--theme3);
	font-size: 16px;
	font-weight: 600;
	display: inline-block;
	font-family: "Instrument Sans", sans-serif;
	text-decoration: underline;
	text-transform: capitalize;
	background-position: 0 95%;
	background-repeat: no-repeat;
	background-size: 0% 2px;
	display: inline;
}

.link-btn-2:hover {
	color: var(--theme2);
	background-size: 100% 2px;
	background-image: linear-gradient(180deg, var(--theme2) 0%, var(--theme2) 100%);
}

/*---------------------------------------
03. Components
---------------------------------------*/
.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;
	background: none;
}

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

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

.mean-container .mean-nav ul li a {
	display: block;
	width: 100%;
	padding: 10px 0;
	color: var(--black);
	font-size: 16px;
	font-weight: 500;
	line-height: 2;
	text-transform: capitalize;
	border-bottom: 1px solid rgba(0, 0, 0, 0.2) !important;
	border: none;
}

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

.mean-container .mean-nav ul li .submenu li a {
	border-bottom: none !important;
	font-size: 14px;
	padding: 6px 0;
	color: var(--header);
}

.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;
	font-size: 18px;
}

.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;
}

/* Preloader Wrapper */
#agri-preloader {
	position: fixed;
	inset: 0;
	background: #fff;
	/* dark green */
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 9999;
}

/* Content */
.preloader-content {
	text-align: center;
	color: #fff;
}

/* Leaf Shape */
.leaf {
	width: 60px;
	height: 60px;
	background: #4CAF50;
	border-radius: 0 100% 0 100%;
	transform: rotate(45deg);
	margin: 0 auto 15px;
	animation: leafSpin 1.2s linear infinite;
}

/* Text */
.preloader-content h4 {
	font-size: 16px;
	letter-spacing: 1px;
	color: var(--header);
	margin: 0;
}

.farmer-loader {
	width: 90px;
	animation: float 1.2s ease-in-out infinite;
}

@keyframes float {

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

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

.back-to-top {
	background-color: var(--theme);
	width: 50px;
	height: 50px;
	line-height: 40px;
	border-radius: 100px;
	color: var(--white);
	font-size: 16px;
	position: fixed;
	display: inline-block;
	z-index: 9999;
	right: 30px;
	bottom: 30px;
	transition: all 0.4s ease-in-out;
	opacity: 0;
	visibility: hidden;
	transform: translateY(20px);
}

.back-to-top.theme-bg-2 {
	background-color: var(--theme2);
	color: #fff;
}

.back-to-top.theme-bg-2:hover {
	color: var(--theme2);
}

.back-to-top.theme-bg-3 {
	background-color: var(--theme3);
	color: var(--white);
}

.back-to-top.theme-bg-3:hover {
	color: var(--theme3);
}

@media (max-width: 575px) {
	.back-to-top {
		display: none;
	}
}

.back-to-top:hover {
	background-color: var(--white);
	color: var(--theme);
}

.back-to-top.show {
	opacity: 1;
	visibility: visible;
	transform: translate(0);
}

.cursor-outer {
	-webkit-margin-start: -12px;
	margin-inline-start: -12px;
	margin-top: -12px;
	width: 30px;
	height: 30px;
	border: 1px solid var(--theme);
	background-color: var(--theme);
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	z-index: 10000000;
	opacity: 0.34;
	-webkit-transition: all 0.4s ease-out 0s;
	transition: all 0.4s ease-out 0s;
}

.cursor-outer.cursor-hover {
	opacity: 0.14;
}

.cursor-outer.cursor-big {
	opacity: 0;
}

.mouseCursor {
	position: fixed;
	top: 0;
	inset-inline-start: 0;
	inset-inline-end: 0;
	bottom: 0;
	pointer-events: none;
	border-radius: 50%;
	-webkit-transform: translateZ(0);
	transform: translateZ(0);
	visibility: hidden;
	text-align: center;
}

.mouseCursor.cursor-big {
	width: 20px;
	height: 20px;
	-webkit-margin-start: -12px;
	margin-inline-start: -12px;
	margin-top: -12px;
}

.cursor-inner {
	-webkit-margin-start: -3px;
	margin-inline-start: -3px;
	margin-top: -3px;
	width: 10px;
	height: 10px;
	z-index: 10000001;
	background-color: var(--theme);
	opacity: 1;
	-webkit-transition: all 0.24s ease-out 0s;
	transition: all 0.24s ease-out 0s;
}

.cursor-inner span {
	color: var(--text);
	line-height: 60px;
	opacity: 0;
	text-transform: uppercase;
	letter-spacing: 1px;
	font-size: 12px;
}

.cursor-inner.cursor-big span {
	opacity: 1;
}

.cursor-inner.cursor-hover {
	-webkit-margin-start: -10px;
	margin-inline-start: -10px;
	margin-top: -10px;
	width: 30px;
	height: 30px;
	background-color: var(--theme);
	border: 1px solid #686363;
	opacity: 0;
}

.search_popup {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	background-color: var(--header);
	z-index: 100;
	padding-top: 70px;
	padding-bottom: 100px;
	opacity: 0;
	backdrop-filter: blur(10px);
	transform: translateY(-100%);
	transition: all 0.6s ease;
}

.search_popup.search-opened {
	opacity: 1;
	transform: translateY(0%);
	transition-delay: 0s;
	z-index: 999999;
}

.search_popup.search-opened .search_form .search_input {
	transform: translateY(0px);
	opacity: 1;
	transition-delay: 0.3s;
}

.search_popup.search-opened .search_form .search_input::after {
	width: 100%;
	transition-delay: 0.5s;
}

@media (max-width: 575px) {
	.search_popup {
		padding-top: 50px;
		padding-bottom: 70px;
	}
}

.search_wrapper .search_top {
	margin-bottom: 80px;
}

.search_wrapper .search_top .search_logo {
	max-width: 200px;
}

.search_wrapper .search_top .search_logo a {
	display: block;
}

@media (max-width: 575px) {
	.search_wrapper .search_top .search_logo {
		max-width: 150px;
	}
}

.search_wrapper .search_top .search_close {
	margin-left: auto;
	margin-top: 10px;
}

.search_wrapper .search_top .search_close .search_close_btn {
	display: inline-block;
	width: 35px;
	height: 35px;
	font-size: 35px;
	line-height: 1;
	color: rgba(255, 255, 255, 0.3);
}

.search_wrapper .search_top .search_close .search_close_btn svg {
	width: 30px;
	height: 30px;
}

.search_wrapper .search_top .search_close .search_close_btn:hover {
	color: var(--white);
	transform: rotate(90deg);
}

@media (max-width: 575px) {
	.search_wrapper .search_top {
		margin-bottom: 50px;
	}
}

@media (max-width: 500px) {
	.search_wrapper .search_top {
		margin-bottom: 40px;
	}
}

.search_wrapper .search_form .search_input {
	position: relative;
	height: 80px;
	transform: translateY(-40px);
	transition: all 0.4s ease-in-out;
	transition-delay: 0.5s;
	opacity: 0;
}

.search_wrapper .search_form .search_input::after {
	position: absolute;
	content: "";
	left: 0;
	bottom: 0;
	width: 0%;
	height: 1px;
	background-color: rgba(255, 255, 255, 0.3);
	transition-delay: 0.3s;
	transition: all 0.4s ease-in-out;
}

.search_wrapper .search_form .search_input input {
	width: 100%;
	height: 100%;
	background-color: transparent;
	border: 0;
	outline: 0;
	padding-left: 22px;
	font-size: 24px;
	color: var(--text);
	border-bottom: 1px solid transparent;
	padding: 0;
	padding-left: 25px;
	padding-right: 30px;
}

.search_wrapper .search_form .search_input input::placeholder {
	font-size: 24px;
}

.search_wrapper .search_form .search_input input~.search-focus-border {
	position: absolute;
	bottom: 0;
	left: auto;
	right: 0;
	width: 0;
	height: 1px;
	background-color: var(--white);
	transition: all 0.5s;
}

.search_wrapper .search_form .search_input input:focus~.search-focus-border {
	width: 100%;
	left: 0;
	right: auto;
	transition: all 0.5s;
}

@media (max-width: 575px) {
	.search_wrapper .search_form .search_input input {
		font-size: 20px;
	}

	.search_wrapper .search_form .search_input input::placeholder {
		font-size: 20px;
	}
}

@media (max-width: 500px) {
	.search_wrapper .search_form .search_input input {
		font-size: 18px;
	}

	.search_wrapper .search_form .search_input input::placeholder {
		font-size: 18px;
	}
}

.search_wrapper .search_form .search_input button {
	position: absolute;
	top: 50%;
	right: 0;
	transform: translateY(-50%);
	font-size: 18px;
	color: var(--white);
}

.search-popup-overlay {
	position: fixed;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background-color: var(--theme);
	z-index: 99;
	opacity: 0;
	visibility: hidden;
	transform: translateY(-100%);
	cursor: zoom-out;
	transition: transform 0.6s ease, opacity 0.6s ease;
}

.search-popup-overlay.bg-theme-2 {
	background-color: var(--theme2);
}

.search-popup-overlay.bg-theme-3 {
	background-color: var(--theme3);
}

.search-popup-overlay.search-popup-overlay-open {
	opacity: 0.8;
	visibility: visible;
	transform: translateY(0);
	transition-delay: 0.35s;
}

@-webkit-keyframes rippleOne {
	70% {
		-webkit-box-shadow: 0 0 0 40px rgba(244, 68, 56, 0);
		box-shadow: 0 0 0 40px rgba(244, 68, 56, 0);
	}

	100% {
		-webkit-box-shadow: 0 0 0 0 rgba(244, 68, 56, 0);
		box-shadow: 0 0 0 0 rgba(244, 68, 56, 0);
	}
}

@keyframes rippleOne {
	70% {
		-webkit-box-shadow: 0 0 0 40px rgba(244, 68, 56, 0);
		box-shadow: 0 0 0 40px rgba(244, 68, 56, 0);
	}

	100% {
		-webkit-box-shadow: 0 0 0 0 rgba(244, 68, 56, 0);
		box-shadow: 0 0 0 0 rgba(244, 68, 56, 0);
	}
}

@keyframes gelatine {

	from,
	to {
		transform: scale(1, 1);
	}

	25% {
		transform: scale(0.7, 1.1);
	}

	50% {
		transform: scale(1.1, 0.7);
	}

	75% {
		transform: scale(0.95, 1.05);
	}
}

@keyframes cir36 {
	100% {
		transform: rotate(360deg);
	}
}

@keyframes rounded {
	50% {
		transform: rotate(15deg);
	}
}

@keyframes up-down {
	0% {
		transform: translateY(10px);
	}

	100% {
		transform: translateY(-10px);
	}
}

@-webkit-keyframes spinner {
	to {
		-webkit-transform: rotateZ(360deg);
		transform: rotateZ(360deg);
	}
}

@keyframes spinner {
	to {
		-webkit-transform: rotateZ(360deg);
		transform: rotateZ(360deg);
	}
}

@-webkit-keyframes letters-loading {

	0%,
	75%,
	100% {
		opacity: 0;
		transform: rotateY(-90deg);
	}

	25%,
	50% {
		opacity: 1;
		transform: rotateY(0deg);
	}
}

@keyframes letters-loading {

	0%,
	75%,
	100% {
		opacity: 0;
		transform: rotateY(-90deg);
	}

	25%,
	50% {
		opacity: 1;
		transform: rotateY(0deg);
	}
}

@keyframes loaderspin {
	0% {
		transform: translate(-50%, -50%) rotate(0deg);
	}

	100% {
		transform: translate(-50%, -50%) rotate(360deg);
	}
}

@keyframes tpswing {
	0% {
		-webkit-transform: rotate(20deg);
		-ms-transform: rotate(20deg);
		transform: rotate(20deg);
	}

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

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

	100% {
		width: 100%;
	}
}

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

	100% {
		width: 100%;
	}
}

@-webkit-keyframes loaderspin {
	0% {
		transform: translate(-50%, -50%) rotate(0deg);
	}

	100% {
		transform: translate(-50%, -50%) rotate(360deg);
	}
}

@keyframes loaderpulse {
	0% {
		transform: scale(1);
	}

	100% {
		transform: scale(1.2);
	}
}

@keyframes rounded {
	50% {
		transform: rotate(20deg);
	}
}

@keyframes cir36 {
	100% {
		transform: rotate(360deg);
	}
}

.float-bob-y {
	-webkit-animation-name: float-bob-y;
	animation-name: float-bob-y;
	-webkit-animation-duration: 3s;
	animation-duration: 3s;
	-webkit-animation-iteration-count: infinite;
	animation-iteration-count: infinite;
	-webkit-animation-timing-function: linear;
	animation-timing-function: linear;
}

@-webkit-keyframes float-bob-y {
	0% {
		-webkit-transform: translateY(-30px);
		transform: translateY(-30px);
	}

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

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

@keyframes float-bob-y {
	0% {
		-webkit-transform: translateY(-30px);
		transform: translateY(-30px);
	}

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

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

.float-bob-x {
	-webkit-animation-name: float-bob-x;
	animation-name: float-bob-x;
	-webkit-animation-duration: 3s;
	animation-duration: 3s;
	-webkit-animation-iteration-count: infinite;
	animation-iteration-count: infinite;
	-webkit-animation-timing-function: linear;
	animation-timing-function: linear;
}

@-webkit-keyframes float-bob-x {
	0% {
		-webkit-transform: translateX(0px);
		transform: translateX(30px);
	}

	50% {
		-webkit-transform: translateX(10px);
		transform: translateX(10px);
	}

	100% {
		-webkit-transform: translateX(30px);
		transform: translateX(30px);
	}
}

@keyframes float-bob-x {
	0% {
		-webkit-transform: translateX(30px);
		transform: translateX(30px);
	}

	50% {
		-webkit-transform: translateX(10px);
		transform: translateX(10px);
	}

	100% {
		-webkit-transform: translateX(30px);
		transform: translateX(30px);
	}
}

@keyframes bounce-x {
	0% {
		-webkit-transform: translateX(0);
		transform: translateX(0);
	}

	50% {
		-webkit-transform: translateX(30px);
		transform: translateX(30px);
	}

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

.bounce-x {
	-webkit-animation: bounce-x 7s infinite linear;
	animation: bounce-x 7s infinite linear;
}

@keyframes criss-cross-left {
	0% {
		left: -20px;
	}

	50% {
		left: 50%;
		width: 20px;
		height: 20px;
	}

	100% {
		left: 50%;
		width: 375px;
		height: 375px;
	}
}

@keyframes criss-cross-right {
	0% {
		right: -20px;
	}

	50% {
		right: 50%;
		width: 20px;
		height: 20px;
	}

	100% {
		right: 50%;
		width: 375px;
		height: 375px;
	}
}

@keyframes rotated2 {
	0% {
		transform: rotate(0);
	}

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

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

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

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

@keyframes zoom {
	0% {
		transform: scale(0.5);
	}

	50% {
		transform: scale(1);
	}

	100% {
		transform: scale(0.5);
	}
}

@keyframes translateY2 {
	0% {
		-webkit-transform: translateY(-30px);
		-moz-transform: translateY(-30px);
		-ms-transform: translateY(-30px);
		-o-transform: translateY(-30px);
		transform: translateY(-30px);
	}

	100% {
		-webkit-transform: translateY(20px);
		-moz-transform: translateY(20px);
		-ms-transform: translateY(20px);
		-o-transform: translateY(20px);
		transform: translateY(20px);
	}
}

@keyframes translateX2 {
	0% {
		-webkit-transform: translateX(-30px);
		-moz-transform: translateX(-30px);
		-ms-transform: translateX(-30px);
		-o-transform: translateX(-30px);
		transform: translateX(-30px);
	}

	100% {
		-webkit-transform: translatXY(20px);
		-moz-transform: translateX(20px);
		-ms-transform: translateX(20px);
		-o-transform: translateX(20px);
		transform: translateX(20px);
	}
}

@keyframes moving {
	0% {
		transform: translatey(0px);
	}

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

	50% {
		transform: translatey(-40px);
	}

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

/*img-animation**********************/
.img-custom-anim-right {
	animation: img-anim-right 1.3s forwards cubic-bezier(0.645, 0.045, 0.355, 1) 0.4s;
	opacity: 0;
}

@keyframes img-anim-right {
	0% {
		transform: translateX(5%);
		clip-path: inset(0 0 0 100%);
		opacity: 0;
	}

	100% {
		transform: translateX(0);
		clip-path: inset(0 0 0 0);
		opacity: 1;
	}
}

.img-custom-anim-left {
	animation: img-anim-left 1.3s forwards cubic-bezier(0.645, 0.045, 0.355, 1) 0.4s;
	opacity: 0;
}

@keyframes img-anim-left {
	0% {
		transform: translateX(-5%);
		clip-path: inset(0 100% 0 0);
		opacity: 0;
	}

	100% {
		transform: translateX(0);
		clip-path: inset(0 0 0 0);
		opacity: 1;
	}
}

.img-custom-anim-top {
	animation: img-anim-top 1.3s forwards cubic-bezier(0.645, 0.045, 0.355, 1);
	opacity: 0;
}

@keyframes img-anim-top {
	0% {
		transform: translateY(-5%);
		clip-path: inset(0 0 100% 0);
		opacity: 0;
	}

	100% {
		transform: translateY(0);
		clip-path: inset(0 0 0 0);
		opacity: 1;
	}
}

@keyframes animate-positive {
	0% {
		width: 0;
	}
}

@keyframes scale {
	0% {
		top: -1000px;
		-webkit-transform: scale(1);
		transform: scale(1);
		opacity: 0;
	}

	100% {
		opacity: 1;
		-webkit-transform: scale(1);
		transform: scale(1);
	}
}

.animation-infinite {
	animation: ShapeAnim 50s linear infinite;
	height: 30px;
	width: 100%;
	background-repeat: repeat;
	overflow: hidden;
}

@keyframes ShapeAnim {
	0% {
		background-position: top left;
	}

	100% {
		background-position: top left 3000px;
	}
}

.splt-txt .whitespace {
	width: 8px;
}

.splt-txt.animated .char {
	-webkit-animation: fadeIn 0.4s cubic-bezier(0.3, 0, 0.7, 1) both;
	animation: fadeIn 0.4s cubic-bezier(0.3, 0, 0.7, 1) both;
	-webkit-animation-delay: calc(30ms * var(--char-index));
	animation-delay: calc(30ms * var(--char-index));
}

.splt-txt-bounce .whitespace {
	width: 20px;
}

@media (max-width: 991px) {
	.splt-txt-bounce .whitespace {
		width: 10px;
	}
}

.splt-txt-bounce.animated .char {
	-webkit-animation: bounceIn 0.4s cubic-bezier(0.3, 0, 0.7, 1) both;
	animation: bounceIn 0.4s cubic-bezier(0.3, 0, 0.7, 1) both;
	-webkit-animation-delay: calc(30ms * var(--char-index));
	animation-delay: calc(30ms * var(--char-index));
}

@keyframes jello {
	11.1% {
		-webkit-transform: none;
		transform: none;
	}

	22.2% {
		-webkit-transform: skewX(-12.5deg) skewY(-12.5deg);
		transform: skewX(-12.5deg) skewY(-12.5deg);
	}

	33.3% {
		-webkit-transform: skewX(6.25deg) skewY(6.25deg);
		transform: skewX(6.25deg) skewY(6.25deg);
	}

	44.4% {
		-webkit-transform: skewX(-3.125deg) skewY(-3.125deg);
		transform: skewX(-3.125deg) skewY(-3.125deg);
	}

	55.5% {
		-webkit-transform: skewX(1.5625deg) skewY(1.5625deg);
		transform: skewX(1.5625deg) skewY(1.5625deg);
	}

	66.6% {
		-webkit-transform: skewX(-0.78125deg) skewY(-0.78125deg);
		transform: skewX(-0.78125deg) skewY(-0.78125deg);
	}

	77.7% {
		-webkit-transform: skewX(0.390625deg) skewY(0.390625deg);
		transform: skewX(0.390625deg) skewY(0.390625deg);
	}

	88.8% {
		-webkit-transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
		transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
	}

	100% {
		-webkit-transform: none;
		transform: none;
	}
}

/* CSS */
.text-anims {
	opacity: 0;
	transform: scale(0.8);
	transition: opacity 1s ease-out, transform 1s ease-out;
}

.text-anims.show {
	opacity: 1;
	transform: scale(1);
}

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

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

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

	100% {
		transform: translateX(calc(-100% - var(--gap)));
	}
}

@-webkit-keyframes borderanimate2 {
	0% {
		-webkit-transform: translate(-50%, -50%) scale(0.8);
		transform: translate(-50%, -50%) scale(0.8);
	}

	60% {
		opacity: 1;
	}

	100% {
		-webkit-transform: translate(-50%, -50%) scale(2.5);
		transform: translate(-50%, -50%) scale(2.5);
		opacity: 0;
	}
}

@keyframes borderanimate2 {
	0% {
		-webkit-transform: translate(-50%, -50%) scale(0.8);
		transform: translate(-50%, -50%) scale(0.8);
	}

	60% {
		opacity: 1;
	}

	100% {
		-webkit-transform: translate(-50%, -50%) scale(2.5);
		transform: translate(-50%, -50%) scale(2.5);
		opacity: 0;
	}
}

@keyframes waterFall {
	0% {
		transform: translateY(-40px) scaleY(0.6);
		opacity: 0;
	}

	20% {
		opacity: 1;
	}

	100% {
		transform: translateY(430px) scaleY(1);
		opacity: 0;
	}
}

@keyframes drone-fly-real {
	0% {
		transform: translate(-50%, -50%) translate(0, 0) rotate(0deg);
	}

	20% {
		transform: translate(-50%, -50%) translate(-40px, -40px) rotate(-2deg);
	}

	40% {
		transform: translate(-50%, -50%) translate(40px, -90px) rotate(2deg);
	}

	60% {
		transform: translate(-50%, -50%) translate(-30px, -130px) rotate(-2deg);
	}

	80% {
		transform: translate(-50%, -50%) translate(30px, -70px) rotate(1.5deg);
	}

	100% {
		transform: translate(-50%, -50%) translate(0, 0) rotate(0deg);
	}
}

/*---------------------------------------
04. Layouts
---------------------------------------*/
.header-top-section {
	position: relative;
	margin-bottom: 30px !important;
	border-radius: 10px;
	margin: 0 30px;
}

.header-top-section .container-fluid {
	padding: 0 20px;
}

@media (max-width: 575px) {
	.header-top-section .container-fluid {
		padding: 0 15px;
	}
}

@media (max-width: 1399px) {
	.header-top-section {
		display: none;
	}
}

.header-top-wrapper {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 20px 0;
	position: relative;
	z-index: 999;
}

.header-top-wrapper .header-left .list {
	display: flex;
	align-items: center;
	gap: 20px;
}

.header-top-wrapper .header-left .list li {
	color: var(--white);
}

.header-top-wrapper .header-left .list li a {
	color: var(--white);
}

.header-top-wrapper p {
	color: rgb(255, 255, 255);
	font-size: 14px;
	font-weight: 500;
	text-transform: capitalize;
}

.header-top-wrapper p span {
	font-weight: 700;
}

.header-top-wrapper .header-right {
	display: flex;
	align-items: center;
	gap: 15px;
}

.header-top-wrapper .header-right span {
	color: var(--white);
}

.header-top-wrapper .header-right .social-icon {
	display: flex;
	align-items: center;
	gap: 15px;
	text-transform: capitalize;
}

.header-top-wrapper .header-right .social-icon a {
	color: var(--white);
	transition: all 0.4s ease-in-out;
}

.header-top-wrapper .header-right .social-icon a:hover {
	color: rgba(255, 255, 255, 0.5);
}

.our-statistics-content h2 {
	margin-bottom: 15px;
}

@media (max-width: 1199px) {
	.menu-thumb {
		display: none !important;
	}
}

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

.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: 45px;
}

@media (max-width: 1199px) {
	.header-main .main-menu ul li {
		margin-inline-end: 30px;
	}
}

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

.header-main .main-menu ul li a {
	display: inline-block;
	font-size: 18px;
	font-weight: 500;
	color: rgb(80, 98, 74);
	padding: 20px 0;
	text-align: left;
	position: relative;
	text-transform: capitalize;
	transition: all 0.4s ease-in-out;
}

.header-main .main-menu ul li a i {
	margin-left: 4px;
	font-size: 14px;
}

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

.header-main .main-menu ul li .submenu {
	position: absolute;
	top: 115%;
	inset-inline-start: 0;
	min-width: 100%;
	display: flex;
	padding: 20px 20px;
	justify-content: space-between;
	z-index: 99999;
	visibility: hidden;
	opacity: 0;
	transform-origin: top center;
	color: var(--header);
	transform: translateY(-10px);
	transition: all 0.4s ease-in-out;
	border-top: 6px solid var(--theme);
	background-color: var(--white);
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
	border-radius: 8px;
}

.header-main .main-menu ul li .submenu li {
	display: block;
	width: 47%;
	margin: 0;
	text-align: center;
}

.header-main .main-menu ul li .submenu li a {
	position: relative;
	z-index: 11;
	font-size: 16px;
	text-align: center;
	\: 500;
	letter-spacing: -0.34px;
	color: var(--header);
	line-height: 38px;
	padding: 0;
	padding-right: 0;
	width: 100%;
	/* display: flex; */
	/* align-items: center; */
	/* justify-content: space-between; */
}

.header-main .main-menu ul li .submenu li a::before {
	content: "";
	position: absolute;
	width: 0px;
	height: 2px;
	background: var(--theme);
	left: 14px;
	display: none;
	bottom: 18px;
	transition: all 0.4s ease-in-out;
}

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

.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 {
	color: var(--theme) !important;
	/* margin-left: 10px; */
}

.header-main .main-menu ul li .submenu li:hover>a::before {
	width: 10px;
}

.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: 1000px;
	padding: 30px 30px 10px 30px;
	opacity: 0;
	left: -250px;
	visibility: hidden;
	padding: 30px 30px 10px 30px;
	background-color: var(--white);
	border-radius: 8px;
}

.header-main .main-menu ul li .has-homemenu .homemenu-items {
	display: flex;
	align-items: center;
	gap: 30px;
	justify-content: space-between;
}

@media (max-width: 991px) {
	.header-main .main-menu ul li .has-homemenu .homemenu-items {
		flex-wrap: wrap;
	}
}

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

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

.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb .demo-button {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	opacity: 0;
	visibility: hidden;
	transition: all 0.4s ease-in-out;
	margin-top: 20px;
	width: 100%;
	padding: 0 12px;
}

@media (max-width: 1399px) {
	.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb .demo-button .theme-btn {
		font-size: 14px;
		min-width: 140px;
	}
}

.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb .demo-button .theme-btn {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	line-height: initial;
	vertical-align: middle;
	-webkit-appearance: none;
	appearance: none;
	outline: none !important;
	border: none;
	font-weight: 700;
	font-size: 16px;
	color: var(--white);
	padding: 15px 40px 15px;
	transition: 0.5s ease-in-out;
	text-transform: capitalize;
	overflow: hidden;
	gap: 5px;
	text-align: center;
	background-color: var(--theme);
	z-index: 1;
	border-radius: 8px;
}

@media (max-width: 1399px) {
	.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb .demo-button .theme-btn {
		padding: 15px 25px 15px;
	}
}

.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb .demo-button .theme-btn::after {
	content: "";
	background-color: var(--header);
}

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

.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb .demo-button .theme-btn:hover img {
	filter: brightness(0);
}

.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb .demo-button .theme-btn.theme-btn-3 {
	background-color: var(--theme3);
}

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

.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb .demo-button .theme-btn-2 {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	vertical-align: middle;
	-webkit-appearance: none;
	appearance: none;
	outline: none !important;
	border: none;
	line-height: initial;
	font-weight: 700;
	font-size: 16px;
	color: var(--header);
	padding: 15px 40px 15px;
	transition: 0.5s ease-in-out;
	text-transform: capitalize;
	overflow: hidden;
	gap: 5px;
	text-align: center;
	background-color: var(--theme2);
	z-index: 1;
	border-radius: 8px;
}

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

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

.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb .demo-button .theme-btn-2:hover img {
	filter: brightness(0);
}

.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb::before {
	background: -webkit-gradient(linear, left top, left bottom, from(rgba(20, 19, 19, 0)), to(#5e5ef6));
	background: linear-gradient(to bottom, rgba(99, 92, 92, 0) 0%, #252527 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-items .homemenu .homemenu-thumb:hover::before {
	visibility: visible;
	opacity: 1;
}

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

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

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

.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-title {
	text-align: center;
	margin: 15px auto;
	display: inline-block;
	font-size: 16px;
	font-weight: 600;
	color: var(--header);
}

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

.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-main .header-right {
	position: relative;
	z-index: 999;
	display: flex;
	align-items: center;
	gap: 70px;
}

.header-main .header-right.style-1 {
	gap: 200px !important;
}

@media (max-width: 1399px) {
	.header-main .header-right.style-1 {
		gap: 40px !important;
	}
}

.header-main .header-right.style-1 .icon-items {
	margin-right: -110px !important;
}

@media (max-width: 1399px) {
	.header-main .header-right.style-1 .icon-items {
		margin-right: 0 !important;
	}
}

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

.header-main .header-right .icon-items {
	display: flex;
	align-items: center;
	gap: 45px;
}

.header-main .header-right .icon-items .menu_search .search_btn {
	color: var(--white);
}

.header-main .header-right .icon-items a i {
	color: var(--white);
}

.header-main .header-right .header-btn {
	display: flex;
	align-items: center;
	gap: 30px;
}

.header-main .header-right .header-btn span {
	background: rgba(255, 255, 255, 0.1);
	border: 1px solid rgba(255, 255, 255, 0.2);
	border-radius: 8px;
	padding: 15px 20px;
	display: inline-block;
	font-weight: 700;
}

.header-main .header-right .header-btn span i {
	color: var(--white);
	margin-right: 5px;
}

@media (max-width: 1220px) {
	.header-main .header-right .header-btn span {
		display: none;
	}
}

.header-main .header-right .header-btn span a {
	color: var(--white);
}

@media (max-width: 1220px) {
	.header-main .header-right .header-btn {
		gap: 16px;
	}
}


.header-main .header-right .header-btn .sidebar__toggle {
	cursor: pointer;
	font-size: 20px;
	display: none;
	border-radius: 50%;
	padding: 7px 12px;
	background-color: var(--theme2);
	color: var(--white);
}

.header-1 {
	position: absolute;
	width: 100%;
	left: 0;
	right: 0;
	z-index: 999;
	top: 0;
	margin-top: 45px;
	margin-top: 0px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

@media (max-width: 1399px) {
	.header-1 {
		top: 0;
		margin-top: 0;
	}
}

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

@media (max-width: 1600px) {
	.header-1 .container-fluid {
		padding: 0 90px;
	}
}

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

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

@media (max-width: 575px) {
	.header-1 .container-fluid {
		padding: 0 15px;
	}
}

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

.header-1 .header-main .main-menu ul li a:hover {
	color: var(--theme2);
}

.header-1 .header-main .main-menu ul li .submenu {
	border-top: 6px solid var(--theme2);
}

.header-1 .header-main .main-menu ul li .submenu li a:hover {
	color: var(--theme2) !important;
}

.header-1 .header-main .main-menu ul li .submenu li a:hover::before {
	background-color: var(--theme2);
}

@media (max-width: 1899px) {
	.header-1 .header-main .main-menu ul li {
		margin-inline-end: 28px;
	}
}

.header-1 .header-main .header-left .logo .header-logo-2 {
	display: none;
}

@media (max-width: 1899px) {
	.header-1 .header-main .header-left .logo .header-logo-2 {
		gap: 40px;
	}
}

@media (max-width: 1899px) {
	.header-1 .header-main .header-right {
		gap: 40px;
	}
}

@media (max-width: 1899px) {
	.header-1 .header-main .header-right .icon-items {
		gap: 40px;
	}
}

@media (max-width: 1600px) {
	.header-1 .header-main .header-right .header-btn span {
		padding: 15px;
	}
}

.header-1.header-2 {
	/* border-bottom: none; */
	/* margin-top: 30px; */
}

@media (max-width: 1399px) {
	.header-1.header-2 {
		margin-top: 0;
	}
}

.header-1.header-2 .header-main {
	position: relative;
	padding: 14px;
	border-radius: 20px;
}

.header-1.header-2 .header-main.header-inner {
	padding: 15px 20px;
}

@media (max-width: 1600px) {
	.header-1.header-2 .header-main.header-inner {
		padding: 10px 20px;
	}
}

@media (max-width: 575px) {
	.header-1.header-2 .header-main.header-inner {
		padding: 10px 0px;
	}
}

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

@media (max-width: 1600px) {
	.header-1.header-2 .header-main {
		padding: 10px 20px;
	}
}

@media (max-width: 1399px) {
	.header-1.header-2 .header-main {
		padding: 10px 0;
	}
}

.header-1.header-2 .header-main .overlay-shape {
	position: absolute;
	top: 0;
	left: 0;
	border: 1px solid #e7f5e84d;
	right: 0;
	background-color: rgba(0, 0, 0, 0.2);
	backdrop-filter: blur(10px);
	bottom: 0;
	border-radius: 20px;
	z-index: -1;
}

@media (max-width: 1899px) {
	.header-1.header-2 .header-main .overlay-shape img {
		width: 100%;
		height: 100%;
	}
}

@media (max-width: 1399px) {
	.header-1.header-2 .header-main .overlay-shape {
		display: none;
	}
}

.header-1.header-2 .header-main .overlay-shape img {
	border-radius: 20px;
}

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

.header-1.header-2 .header-main .main-menu ul li .submenu {
	border-top: 6px solid var(--theme3);
}

.header-1.header-2 .header-main .main-menu ul li .submenu li a::before {
	background-color: var(--theme3) !important;
}

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

.header-1.header-2 .header-main .main-menu ul li .submenu li a:hover::before {
	background-color: var(--theme3) !important;
}

@media (max-width: 1899px) {
	.header-1.header-2 .header-main .main-menu ul li {
		margin-inline-end: 28px;
	}
}

.header-1.header-2 .header-main .header-right {
	gap: 100px;
}

@media (max-width: 1399px) {
	.header-1.header-2 .header-main .header-right {
		gap: 30px;
	}
}

.header-1.header-2 .header-main .header-right .icon-items {
	margin-right: -50px;
}

@media (max-width: 1399px) {
	.header-1.header-2 .header-main .header-right .icon-items {
		margin-right: 0;
	}
}

.header-1.header-2 .header-main .header-right .header-btn .header-button .theme-btn.theme-btn-3::before {
	background-color: var(--white);
}

.header-1.header-2 .header-main .header-right .header-btn .header-button .theme-btn.theme-btn-3::after {
	background-color: rgba(255, 255, 255, 0.3);
}

.header-1.header-2 .header-main .header-right .header-btn .header-button .theme-btn.theme-btn-3:hover {
	color: var(--theme3);
}

.header-1.header-2 .header-main .header-right .header-btn .header__hamburger .sidebar__toggle {
	width: 40px;
	height: 40px;
	line-height: 40px;
	text-align: center;
	border: 1px solid rgba(255, 255, 255, 0.2);
	border-radius: 100px;
}

.header-1.header-2.header-4 {
	margin-top: 20px;
}

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

.header-1.header-2.header-4 .header-main .main-menu ul li a:hover {
	color: var(--theme3);
}

.header-1.header-2.header-4 .header-main .main-menu ul li .theme-btn {
	color: var(--white) !important;
}

.header-1.header-2.header-4 .header-main .main-menu ul li .submenu {
	border-top: 6px solid var(--theme3);
}

.header-1.header-2.header-4 .header-main .main-menu ul li .submenu li a:hover {
	color: var(--theme3) !important;
}

.header-1.header-2.header-4 .header-main .main-menu ul li .submenu li a:hover::before {
	background-color: var(--theme3);
}

@media (max-width: 1899px) {
	.header-1.header-2.header-4 .header-main .main-menu ul li {
		margin-inline-end: 28px;
	}
}

.header-1.header-2.header-4 .header-main .header-right .icon-items .menu_search .search_btn {
	color: var(--white);
}

.header-1.header-2.header-4 .header-main .header-right .icon-items a i {
	color: var(--white);
}

.header-1.header-3 {
	margin-top: 60px;
}

@media (max-width: 1600px) {
	.header-1.header-3 {
		margin-top: 70px;
	}
}

@media (max-width: 1399px) {
	.header-1.header-3 {
		margin-top: 0;
	}
}

@media (max-width: 575px) {
	.header-1.header-3 {
		margin-top: 10px;
	}
}

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

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

@media (max-width: 575px) {
	.header-1.header-3 .container-fluid {
		padding: 0 15px;
	}
}

.header-1.header-3 .header-main {
	position: relative;
}

@media (max-width: 575px) {
	.header-1.header-3 .header-main .logo .header-logo {
		display: none !important;
	}
}

.header-1.header-3 .header-main .logo .header-logo-2 {
	display: none;
}

@media (max-width: 575px) {
	.header-1.header-3 .header-main .logo .header-logo-2 {
		display: block !important;
	}
}

.header-1.header-3 .header-main .main-menu ul li a {
	color: rgb(80, 98, 74);
}

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

.header-1.header-3 .header-main .main-menu ul li .submenu {
	border-top: 6px solid var(--theme);
}

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

.header-1.header-3 .header-main .main-menu ul li .submenu li a:hover {
	color: var(--theme) !important;
}

.header-1.header-3 .header-main .main-menu ul li .submenu li a:hover::before {
	background-color: var(--theme) !important;
}

@media (max-width: 1899px) {
	.header-1.header-3 .header-main .main-menu ul li {
		margin-inline-end: 28px;
	}
}

.header-1.header-3 .header-main .header-right {
	gap: 50px;
}

@media (max-width: 1399px) {
	.header-1.header-3 .header-main .header-right {
		gap: 30px;
	}
}

.header-1.header-3 .header-main .header-right .icon-items .menu_search .search_btn {
	color: rgb(80, 98, 74);
}

@media (max-width: 575px) {
	.header-1.header-3 .header-main .header-right .icon-items .menu_search .search_btn {
		color: rgb(47, 47, 47);
		font-size: 16px;
	}
}

.header-1.header-3 .header-main .header-right .icon-items a i {
	color: rgb(80, 98, 74);
}

@media (max-width: 575px) {
	.header-1.header-3 .header-main .header-right .icon-items a i {
		color: rgb(47, 47, 47);
	}
}

.header-1.header-3 .header-main .header-right .header-btn .header-button .theme-btn {
	border: 1px solid var(--theme);
	background-color: transparent;
	color: var(--theme3);
}

.header-1.header-3 .header-main .header-right .header-btn .header-button .theme-btn::before {
	background-color: var(--theme);
}

.header-1.header-3 .header-main .header-right .header-btn .header-button .theme-btn::after {
	background-color: rgba(200, 67, 58, 0.3);
}

.header-1.header-3 .header-main .header-right .header-btn .header-button .theme-btn:hover {
	color: var(--white);
}

.about-us-content .list li em {
	margin-right: 8px;
	color: var(--theme3);
}

.header-1.header-3 .header-main .header-right .header-btn .header__hamburger .sidebar__toggle {
	background-color: rgb(255, 255, 255);
	border-radius: 6px;
	color: rgb(80, 98, 74);
	width: 52px;
	height: 52px;
	line-height: 52px;
}

.pages {
	text-align: center;
	margin-top: 40px;
}

.pages li {
	display: inline-block;
	vertical-align: top;

}

.pages li a {
	display: block;
	background: #fff;
	padding: 0px 14px;
	font-size: 13px;
	margin: 0 3px;
	color: rgb(90, 88, 88);
	border-radius: 5px;
	border: 2px solid #efeff0;
}

.pages li:hover a,
.pages li.active a {
	background: var(--theme2);
	color: #fff;
}

@media (max-width: 1399px) {
	.header-1.header-3 .header-main .header-right .header-btn .header__hamburger .sidebar__toggle {
		display: none;
	}
}

.header-1.header-3 .header-main .header-right .header-btn .header__hamburger .sidebar__toggle.style-2 {
	display: none !important;
}

@media (max-width: 1399px) {
	.header-1.header-3 .header-main .header-right .header-btn .header__hamburger .sidebar__toggle.style-2 {
		display: block !important;
	}
}

@media (max-width: 1399px) {
	.header-1.header-3 .header-main .header-right .header-btn .header__hamburger .sidebar__toggle {
		width: 40px;
		height: 40px;
		line-height: 40px;
		border: 1px solid rgba(47, 47, 47, 0.2);
		color: rgb(47, 47, 47);
		background-color: transparent;
		border-radius: 100px;
	}

	.header-1.header-3 .header-main .header-right .header-btn .header__hamburger .sidebar__toggle.style-2 {
		display: block !important;
	}
}

.sticky {
	position: fixed !important;
	top: 0 !important;
	left: 0;
	width: 100%;
	z-index: 99999;
	transition: all 0.9s;
	background-color: var(--white);
	-webkit-animation: 500ms ease-in-out 0s normal none 1 running fadeInDown;
	animation: 500ms ease-in-out 0s normal none 1 running fadeInDown;
	box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}

.sticky.header-1 {
	margin-top: 0;
}

.sticky.header-1 .header-main .header-left .header-logo {
	display: none;
}

.sticky.header-1 .header-main .header-left .header-logo-2 {
	display: block;
}

.sticky.header-1 .header-main .main-menu ul li a {
	color: var(--header);
}

.sticky.header-1 .header-main .header-right .icon-items .menu_search .search_btn {
	color: var(--header);
}

.sticky.header-1 .header-main .header-right .icon-items a i {
	color: var(--header);
}

.sticky.header-1 .header-main .header-right .header-btn span {
	background-color: var(--header);
}

.sticky.header-1 .header-main .header-right .header-btn .sidebar__toggle {
	color: #fff;
}

.sticky.header-2 .header-main {
	padding: 10px;
}

.sticky.header-2 .header-main .overlay-shape {
	display: none;
}

.sticky.header-2 .header-main .main-menu ul li a:hover {
	color: var(--header) !important;
}

.sticky.header-2 .header-main .main-menu ul li a:hover::before {
	background-color: var(--theme3) !important;
}

.sticky.header-2 .header-main .main-menu ul li .submenu li:hover>a {
	color: var(--theme3) !important;
	/* margin-left: 10px; */
}

.sticky.header-2 .header-main .main-menu ul li .submenu li:hover>a::before {
	width: 10px;
}

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

.sticky.header-2 .header-main .header-right .header-btn .header-button .theme-btn.theme-btn-3 {
	background-color: transparent;
	border: 1px solid var(--theme3);
	color: var(--theme3);
}

.sticky.header-2 .header-main .header-right .header-btn .header-button .theme-btn.theme-btn-3::before {
	background-color: var(--theme3);
}

.sticky.header-2 .header-main .header-right .header-btn .header-button .theme-btn.theme-btn-3::after {
	background-color: rgba(17, 162, 27, 0.3);
}

.sticky.header-2 .header-main .header-right .header-btn .header-button .theme-btn.theme-btn-3:hover {
	color: var(--white);
}

.sticky.header-2 .header-main .header-right .header-btn .header__hamburger .sidebar__toggle {
	border: 1px solid var(--header);
}

.sticky.header-3 {
	margin-top: 0;
}

.sticky.header-4 {
	margin-top: 0px !important;
}

.sticky.header-4 .header-main .main-menu ul li a {
	color: var(--header) !important;
}

.sticky.header-4 .header-main .main-menu ul li a:hover {
	color: var(--theme3);
}

.sticky.header-4 .header-main .main-menu ul li .submenu {
	border-top: 6px solid var(--theme3);
}

.sticky.header-4 .header-main .main-menu ul li .submenu li a:hover {
	color: var(--theme3) !important;
}

.sticky.header-4 .header-main .main-menu ul li .submenu li a:hover::before {
	background-color: var(--theme3);
}

.sticky.header-4 .header-main .header-right .icon-items .menu_search .search_btn {
	color: var(--header) !important;
}

.sticky.header-4 .header-main .header-right .icon-items a i {
	color: var(--header) !important;
}

.offcanvas__info {
	background: var(--white) none repeat scroll 0 0;
	border-left: 2px solid var(--theme2);
	position: fixed;
	right: 0;
	top: 0;
	width: 450px;
	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: 9999999;
	overflow-y: scroll;
	overscroll-behavior-y: contain;
	scrollbar-width: none;
}

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

.offcanvas__info.style-2 {
	border-left: 2px solid var(--theme3) !important;
}

.offcanvas__info.style-3 {
	border-left: 2px solid var(--theme) !important;
}

.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(--black);
}

.offcanvas__wrapper .offcanvas__content .offcanvas__close {
	width: 45px;
	height: 45px;
	line-height: 45px;
	text-align: center;
	border-radius: 50%;
	background-color: var(--theme2);
	position: relative;
	z-index: 9;
	cursor: pointer;
}

.offcanvas__wrapper .offcanvas__content .offcanvas__close.style-2 {
	background-color: var(--theme3);
}

.offcanvas__wrapper .offcanvas__content .offcanvas__close.style-2 i {
	color: var(--white);
}

.offcanvas__wrapper .offcanvas__content .offcanvas__close.style-3 {
	background-color: var(--theme);
}

.offcanvas__wrapper .offcanvas__content .offcanvas__close.style-3 i {
	color: var(--white);
}

.offcanvas__wrapper .offcanvas__content .offcanvas__close i {
	color: #fff;
}

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

@media (max-width: 575px) {
	.offcanvas__wrapper .offcanvas__content .offcanvas__contact {
		display: none;
	}
}

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

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

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

@media (max-width: 575px) {
	.offcanvas__wrapper .offcanvas__content .offcanvas__contact ul li {
		font-size: 14px;
	}
}

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

@media (max-width: 575px) {
	.offcanvas__wrapper .offcanvas__content .offcanvas__contact ul li:not(:last-child) {
		margin-bottom: 20px;
	}
}

.offcanvas__wrapper .offcanvas__content .offcanvas__contact ul li a {
	color: var(--black);
}

.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(--theme3);
}

.offcanvas__wrapper .offcanvas__content .offcanvas__contact ul li .offcanvas__contact-icon.style-1 {
	color: var(--theme) !important;
}

.offcanvas__wrapper .offcanvas__content .offcanvas__contact ul li .offcanvas__contact-icon.style-2 {
	color: var(--theme2) !important;
}

.offcanvas__wrapper .offcanvas__content .offcanvas__contact span {
	text-transform: initial;
}

.offcanvas__wrapper .offcanvas__content .offcanvas__contact .header-button .theme-btn {
	width: 100%;
	padding: 20px 40px;
	text-transform: capitalize !important;
}

.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;
	border-radius: 100%;
	text-align: center;
	font-size: 16px;
	display: block;
	background: transparent;
	color: #000;
	-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(--theme3);
	color: var(--white);
	border: 1px solid var(--theme3);
}

.offcanvas__wrapper .offcanvas__content .offcanvas__contact .social-icon.style-3 a:hover {
	background-color: var(--theme) !important;
	border: 1px solid var(--theme) !important;
}

.offcanvas__wrapper .offcanvas__content .offcanvas__contact .social-icon.style-2 a:hover {
	background-color: var(--theme2) !important;
	border: 1px solid var(--theme2) !important;
}

.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;
	z-index: 9;
	background-color: rgba(17, 162, 27, 0.1);
}

@media (max-width: 1399px) {
	.breadcrumb-wrapper {
		margin-top: 0;
	}
}

.breadcrumb-wrapper .top-image {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	opacity: 0;
	visibility: hidden;
}

.breadcrumb-wrapper .top-image img {
	width: 100%;
	height: 100%;
}

@media (max-width: 1399px) {
	.breadcrumb-wrapper .top-image {
		/* opacity: 1; */
		/* visibility: visible; */
	}
}

@media (max-width: 1399px) {
	.breadcrumb-wrapper.bg-cover {
		/* background-image: none !important; */
	}
}

.breadcrumb-wrapper .page-heading {
	position: relative;
	padding: 225px 0 120px;
	z-index: 9;
	text-align: center;
}

@media (max-width: 1399px) {
	.breadcrumb-wrapper .page-heading {
		text-align: center;
		padding-top: 150px;
		padding-bottom: 100px;
	}
}

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

.breadcrumb-wrapper .page-heading h1 {
	color: #ffffff !important;
	font-size: 50px;
	position: relative;
	text-transform: capitalize;
	z-index: 9;
	font-weight: 700;
	text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

@media (max-width: 1399px) {
	.breadcrumb-wrapper .page-heading h1 {
		font-size: 50px;
		color: var(--white) !important;
	}
}

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

.breadcrumb-wrapper .page-heading .breadcrumb-items {
	display: flex;
	align-items: center;
	/* text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5); */
	margin-top: 20px;
	gap: 8px;
	filter: brightness(0)invert(1);
	justify-content: center;
	border: 1px solid rgba(47, 47, 47, 0.2);
	display: inline-flex;
	border-radius: 6px;
	padding: 2px 10px;
}

@media (max-width: 575px) {
	.breadcrumb-wrapper .page-heading .breadcrumb-items {
		margin-top: 15px;
	}
}

.breadcrumb-wrapper .page-heading .breadcrumb-items li {
	color: rgb(17, 162, 27);
	text-transform: uppercase;
	font-weight: 600;
	font-size: 15px;
	/* text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5); */
}

@media (max-width: 1399px) {
	.breadcrumb-wrapper .page-heading .breadcrumb-items li {
		color: var(--white);
	}
}

.breadcrumb-wrapper .page-heading .breadcrumb-items li a {
	color: var(--header);
	transition: all 0.4s ease-in-out;
	/* text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5); */
}

@media (max-width: 1399px) {
	.breadcrumb-wrapper .page-heading .breadcrumb-items li a {
		color: var(--white);
	}
}

.breadcrumb-wrapper .page-heading .breadcrumb-items li a i {
	color: var(--header);
	margin-right: 9px;
}

.breadcrumb-wrapper .page-heading .breadcrumb-items li a:hover {
	color: rgb(17, 162, 27);
	opacity: 1;
}

.breadcrumb-wrapper .page-heading .breadcrumb-items li a i {
	color: rgb(17, 162, 27);
	margin-right: 5px;
}

.error-items {
	text-align: center;
	position: relative;
	margin-top: -40px;
}

@media (max-width: 1399px) {
	.error-items {
		margin-top: 0;
	}
}

.error-items .error-image {
	background-size: cover;
	background-position: 50%;
	-webkit-background-clip: text;
	color: transparent;
	background-image: url(../../assets/img/404.png);
	background-position: -85% 811px;
	background-size: 91% auto;
	font-size: 330px;
	font-weight: 700;
	line-height: 1;
	letter-spacing: -9.6px;
	animation-duration: 1500ms;
	-webkit-animation-duration: 1500ms;
	margin-bottom: 10px;
}

@media (max-width: 1399px) {
	.error-items .error-image {
		font-size: 300px;
		text-align: center;
		letter-spacing: initial;
		background-size: 58% auto;
	}
}

@media (max-width: 1199px) {
	.error-items .error-image {
		font-size: 250px;
		text-align: center;
		letter-spacing: initial;
		background-size: 76% auto;
	}
}

@media (max-width: 991px) {
	.error-items .error-image {
		font-size: 180px;
		background-size: 92% auto;
	}
}

@media (max-width: 767px) {
	.error-items .error-image {
		font-size: 130px;
		background-size: 90% auto;
	}
}

@media (max-width: 575px) {
	.error-items .error-image {
		font-size: 90px;
		background-size: 83% auto;
	}
}

.error-items h2 {
	font-size: 72px;
	font-weight: 500;
	letter-spacing: -2px;
	margin-bottom: 15px;
}

@media (max-width: 991px) {
	.error-items h2 {
		font-size: 50px;
	}
}

@media (max-width: 767px) {
	.error-items h2 {
		font-size: 40px;
	}
}

@media (max-width: 575px) {
	.error-items h2 {
		font-size: 30px;
	}
}

.error-items p {
	max-width: 722px;
	margin: 0 auto 40px;
}

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

.footer-widget-wrapper {
	padding: 170px 0 70px;
}

@media (max-width: 1399px) {
	.footer-widget-wrapper {
		padding: 70px 0 70px;
	}
}

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

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

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

.footer-widget-wrapper .single-footer-widget .widget-head h4 {
	color: var(--white);
}

.footer-widget-wrapper .single-footer-widget .footer-content p {
	max-width: 400px;
	color: rgb(255, 255, 255);
}

.footer-widget-wrapper .single-footer-widget .footer-content .social-icon {
	display: flex;
	align-items: center;
	gap: 20px;
	margin-top: 40px;
}

.footer-widget-wrapper .single-footer-widget .footer-content .social-icon a {
	display: inline-block;
	width: 40px;
	height: 40px;
	line-height: 40px;
	border-radius: 100px;
	color: var(--white);
	border: 1px solid rgba(255, 255, 255, 0.2);
	text-align: center;
}

.footer-widget-wrapper .single-footer-widget .footer-content .social-icon a:hover {
	background-color: var(--theme);
	border: 1px solid var(--theme);
}

.footer-widget-wrapper .single-footer-widget .list-area li {
	transition: all 0.4s ease-in-out;
	font-weight: 400;
	font-size: 16px;
}

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

.footer-widget-wrapper .single-footer-widget .list-area li a {
	color: rgb(255, 255, 255);
}

.footer-widget-wrapper .single-footer-widget .list-area li a i {
	margin-right: 5px;
	color: rgb(255, 255, 255);
	font-size: 13px;
	transition: all 0.4s ease-in-out;
}

.footer-widget-wrapper .single-footer-widget .list-area li:hover {
	margin-left: 5px;
}

.footer-widget-wrapper .single-footer-widget .list-area li:hover a {
	color: var(--theme);
}

.footer-widget-wrapper .single-footer-widget .list-area li:hover a i {
	color: var(--theme);
}

.footer-widget-wrapper.footer-widget-wrapper-2 {
	padding: 60px 0 60px;
}

@media (max-width: 991px) {
	.footer-widget-wrapper.footer-widget-wrapper-2 {
		padding: 30px 0 60px;
	}
}

.footer-widget-wrapper.footer-widget-wrapper-2 .single-footer-widget .footer-contact-image {
	position: relative;
	border-radius: 10px;
	margin-right: 50px;
}

@media (max-width: 1399px) {
	.footer-widget-wrapper.footer-widget-wrapper-2 .single-footer-widget .footer-contact-image {
		margin-right: 0;
	}
}

.footer-widget-wrapper.footer-widget-wrapper-2 .single-footer-widget .footer-contact-image::before {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	content: "";
	background: rgba(47, 47, 47, 0.6);
	border-radius: 10px;
}

.footer-widget-wrapper.footer-widget-wrapper-2 .single-footer-widget .footer-contact-image .footer-contact-content {
	max-width: 100%;
	width: 100%;
	padding: 40px 30px;
	position: relative;
}

@media (max-width: 1399px) {
	.footer-widget-wrapper.footer-widget-wrapper-2 .single-footer-widget .footer-contact-image .footer-contact-content {
		padding: 30px 20px;
	}
}

.footer-widget-wrapper.footer-widget-wrapper-2 .single-footer-widget .footer-contact-image .footer-contact-content h3 {
	color: var(--white);
	margin-bottom: 20px;
}

.footer-widget-wrapper.footer-widget-wrapper-2 .single-footer-widget .footer-contact-image .footer-contact-content form {
	max-width: 510px;
	width: 100%;
}

.footer-widget-wrapper.footer-widget-wrapper-2 .single-footer-widget .footer-contact-image .footer-contact-content .form-clt {
	position: relative;
}

.footer-widget-wrapper.footer-widget-wrapper-2 .single-footer-widget .footer-contact-image .footer-contact-content .form-clt input {
	width: 100%;
	outline: none;
	border: none;
	background-color: var(--white);
	color: rgb(80, 98, 74);
	line-height: 1;
	padding: 25px 50px;
	border-radius: 10px;
	max-width: 510px;
}

@media (max-width: 470px) {
	.footer-widget-wrapper.footer-widget-wrapper-2 .single-footer-widget .footer-contact-image .footer-contact-content .form-clt input {
		padding: 25px 30px;
	}
}

.footer-widget-wrapper.footer-widget-wrapper-2 .single-footer-widget .footer-contact-image .footer-contact-content .form-clt input::placeholder {
	color: rgb(80, 98, 74);
}

.footer-widget-wrapper.footer-widget-wrapper-2 .single-footer-widget .footer-contact-image .footer-contact-content .form-clt i {
	position: absolute;
	left: 25px;
	top: 30px;
	color: var(--header);
}

@media (max-width: 470px) {
	.footer-widget-wrapper.footer-widget-wrapper-2 .single-footer-widget .footer-contact-image .footer-contact-content .form-clt i {
		left: 10px;
	}
}

.footer-widget-wrapper.footer-widget-wrapper-2 .single-footer-widget .footer-contact-image .footer-contact-content .form-clt .theme-btn-2 {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	border-top-left-radius: 0;
	border-bottom-left-radius: 0;
	padding: 15px 30px 15px;
}

@media (max-width: 470px) {
	.footer-widget-wrapper.footer-widget-wrapper-2 .single-footer-widget .footer-contact-image .footer-contact-content .form-clt .theme-btn-2 {
		padding: 10px 20px 10px;
	}
}

.footer-widget-wrapper.footer-widget-wrapper-2 .single-footer-widget .footer-contact-image .footer-contact-content .payment-save {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-top: 20px;
}

.footer-widget-wrapper.footer-widget-wrapper-2 .single-footer-widget .footer-contact-image .footer-contact-content .payment-save input {
	width: 14px;
	height: 14px;
	border: 1px solid var(--white);
	background-color: transparent;
	outline: none;
	color: var(--white);
	border-radius: 3px;
	transform: translateY(-2px);
	box-shadow: none;
}

@media (max-width: 470px) {
	.footer-widget-wrapper.footer-widget-wrapper-2 .single-footer-widget .footer-contact-image .footer-contact-content .payment-save input {
		transform: translateY(0px);
	}
}

.footer-widget-wrapper.footer-widget-wrapper-2 .single-footer-widget .footer-contact-image .footer-contact-content .payment-save label {
	font-size: 14px;
	font-weight: 500;
	text-transform: capitalize;
	color: var(--white);
}

.footer-widget-wrapper.footer-widget-wrapper-2 .single-footer-widget .list-area li:hover {
	margin-left: 5px;
}

.footer-widget-wrapper.footer-widget-wrapper-2 .single-footer-widget .list-area li:hover a {
	color: var(--theme2);
}

.footer-widget-wrapper.footer-widget-wrapper-2 .single-footer-widget .list-area li:hover a i {
	color: var(--theme2);
}

.footer-widget-wrapper.footer-widget-wrapper-2.widget-3 .single-footer-widget .footer-contact-image {
	background-color: var(--theme3);
}

.footer-widget-wrapper.footer-widget-wrapper-2.widget-3 .single-footer-widget .footer-contact-image::before {
	display: none;
}

.footer-widget-wrapper.footer-widget-wrapper-2.widget-3 .single-footer-widget .footer-contact-image .form-clt {
	position: relative;
}

.footer-widget-wrapper.footer-widget-wrapper-2.widget-3 .single-footer-widget .footer-contact-image .form-clt input {
	width: 100%;
	outline: none;
	border: none;
	background-color: var(--white);
	color: rgb(80, 98, 74);
	line-height: 1;
	padding: 25px 50px;
	border-radius: 10px;
	max-width: 510px;
}

@media (max-width: 470px) {
	.footer-widget-wrapper.footer-widget-wrapper-2.widget-3 .single-footer-widget .footer-contact-image .form-clt input {
		padding: 25px 30px;
	}
}

.footer-widget-wrapper.footer-widget-wrapper-2.widget-3 .single-footer-widget .footer-contact-image .form-clt input::placeholder {
	color: rgb(80, 98, 74);
}

.footer-widget-wrapper.footer-widget-wrapper-2.widget-3 .single-footer-widget .footer-contact-image .form-clt i {
	color: var(--theme3);
}

.footer-widget-wrapper.footer-widget-wrapper-2.widget-3 .single-footer-widget .footer-contact-image .form-clt .theme-btn-2 {
	background-color: var(--header);
	color: var(--white);
}

.footer-widget-wrapper.footer-widget-wrapper-2.widget-3 .single-footer-widget .footer-contact-image .form-clt .theme-btn-2::before {
	background-color: var(--theme3);
}

@media (max-width: 470px) {
	.footer-widget-wrapper.footer-widget-wrapper-2.widget-3 .single-footer-widget .footer-contact-image .form-clt .theme-btn-2 {
		padding: 10px 20px 10px;
	}
}

.footer-widget-wrapper.footer-widget-wrapper-2.widget-3 .single-footer-widget .list-area li:hover {
	margin-left: 5px;
}

.footer-widget-wrapper.footer-widget-wrapper-2.widget-3 .single-footer-widget .list-area li:hover a {
	color: var(--theme3);
}

.footer-widget-wrapper.footer-widget-wrapper-2.widget-3 .single-footer-widget .list-area li:hover a i {
	color: var(--theme3);
}

.footer-widget-wrapper.footer-widget-wrapper-2.style-inner-wrapper .single-footer-widget .footer-contact-image {
	background-color: rgb(1, 40, 4);
}

.footer-widget-wrapper.footer-widget-wrapper-2.style-inner-wrapper .single-footer-widget .footer-contact-image::before {
	display: none;
}

.footer-widget-wrapper.footer-widget-wrapper-2.style-inner-wrapper .single-footer-widget .footer-contact-image .form-clt {
	position: relative;
}

.footer-widget-wrapper.footer-widget-wrapper-2.style-inner-wrapper .single-footer-widget .footer-contact-image .form-clt input {
	width: 100%;
	outline: none;
	border: none;
	background-color: var(--white);
	color: rgb(80, 98, 74);
	line-height: 1;
	padding: 25px 50px;
	border-radius: 10px;
	max-width: 510px;
}

@media (max-width: 470px) {
	.footer-widget-wrapper.footer-widget-wrapper-2.style-inner-wrapper .single-footer-widget .footer-contact-image .form-clt input {
		padding: 25px 30px;
	}
}

.footer-widget-wrapper.footer-widget-wrapper-2.style-inner-wrapper .single-footer-widget .footer-contact-image .form-clt input::placeholder {
	color: rgb(80, 98, 74);
}

.footer-widget-wrapper.footer-widget-wrapper-2.style-inner-wrapper .single-footer-widget .footer-contact-image .form-clt i {
	color: var(--theme3);
}

.footer-widget-wrapper.footer-widget-wrapper-2.style-inner-wrapper .single-footer-widget .footer-contact-image .form-clt .theme-btn {
	background-color: rgb(17, 162, 27);
	color: var(--white);
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	border-top-left-radius: 0;
	border-bottom-left-radius: 0;
	padding: 15px 30px 15px;
}

.footer-widget-wrapper.footer-widget-wrapper-2.style-inner-wrapper .single-footer-widget .footer-contact-image .form-clt .theme-btn::before {
	background-color: var(--theme3);
}

@media (max-width: 470px) {
	.footer-widget-wrapper.footer-widget-wrapper-2.style-inner-wrapper .single-footer-widget .footer-contact-image .form-clt .theme-btn {
		padding: 10px 20px 10px;
	}
}

.footer-widget-wrapper.footer-widget-wrapper-2.style-inner-wrapper .single-footer-widget .list-area li:hover {
	margin-left: 5px;
}

.footer-widget-wrapper.footer-widget-wrapper-2.style-inner-wrapper .single-footer-widget .list-area li:hover a {
	color: var(--theme3);
}

.footer-widget-wrapper.footer-widget-wrapper-2.style-inner-wrapper .single-footer-widget .list-area li:hover a i {
	color: var(--theme3);
}

.footer-section {
	padding-bottom: 80px;
}

.footer-area {
	margin: 0 30px 80px;
	border-radius: 20px;
}

@media (max-width: 1399px) {
	.footer-area {
		margin: 0 15px 0px;
	}
}

.footer-bottom {
	padding-bottom: 30px;
}

.footer-bottom .footer-wrapper {
	display: flex;
	align-items: center;
	justify-content: space-between;
	border-top: 1px solid rgba(255, 255, 255, 0.2);
	border-bottom: 1px solid rgba(255, 255, 255, 0.2);
	padding: 30px 0;
}

@media (max-width: 1399px) {
	.footer-bottom .footer-wrapper {
		flex-wrap: wrap;
		gap: 10px;
	}
}

@media (max-width: 767px) {
	.footer-bottom .footer-wrapper {
		justify-content: center;
	}
}

.footer-bottom .footer-wrapper h5 {
	font-size: 14px;
	font-weight: 500;
	color: rgb(131, 131, 131);
	line-height: 150%;
}

@media (max-width: 767px) {
	.footer-bottom .footer-wrapper h5 {
		text-align: center;
	}
}

.footer-bottom .footer-wrapper h5 span {
	color: var(--white);
	font-weight: 700;
}

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

.footer-bottom .footer-wrapper p span {
	color: var(--white);
}

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

@media (max-width: 1399px) {
	.footer-bottom .footer-wrapper .footer-list {
		flex-wrap: wrap;
		gap: 15px;
	}
}

.footer-bottom .footer-wrapper .footer-list li a {
	color: rgb(131, 131, 131);
}

.footer-bottom .footer-wrapper .footer-list li a:hover {
	color: var(--white);
}

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

.footer-bottom .footer-wrapper .social-icon a {
	display: inline-block;
	width: 40px;
	height: 40px;
	line-height: 40px;
	border-radius: 100px;
	color: var(--white);
	border: 1px solid rgba(255, 255, 255, 0.2);
	text-align: center;
}

.footer-bottom .footer-wrapper .social-icon a:hover {
	background-color: var(--theme3);
	border: 1px solid var(--theme3);
}

.footer-section-2 .footer-top-item {
	display: flex;
	align-items: center;
	justify-content: space-between;
	border-bottom: 1px solid rgba(255, 255, 255, 0.2);
	padding: 100px 0 60px;
}

@media (max-width: 1399px) {
	.footer-section-2 .footer-top-item {
		flex-wrap: wrap;
		gap: 30px;
	}
}

@media (max-width: 991px) {
	.footer-section-2 .footer-top-item {
		padding-top: 80px;
		padding-bottom: 50px;
	}
}

.footer-section-2 .footer-top-item .footer-right-item {
	display: flex;
	align-items: center;
	gap: 50px;
}

@media (max-width: 1399px) {
	.footer-section-2 .footer-top-item .footer-right-item {
		flex-wrap: wrap;
		gap: 25px;
	}
}

.footer-section-2 .footer-top-item .footer-right-item .social-icon {
	display: flex;
	align-items: center;
	gap: 20px;
}

.footer-section-2 .footer-top-item .footer-right-item .social-icon a {
	display: inline-block;
	width: 44px;
	height: 44px;
	line-height: 44px;
	border-radius: 100px;
	color: var(--white);
	border: 1px solid rgba(255, 255, 255, 0.2);
	text-align: center;
}

.footer-section-2 .footer-top-item .footer-right-item .social-icon a:hover {
	background-color: var(--theme2);
	border: 1px solid var(--theme2);
	color: var(--header);
}

.footer-section-2 .footer-top-item .footer-right-item .icon-item {
	display: flex;
	align-items: center;
	gap: 15px;
	border-left: 1px solid rgba(255, 255, 255, 0.2);
	padding-left: 50px;
}

@media (max-width: 1399px) {
	.footer-section-2 .footer-top-item .footer-right-item .icon-item {
		padding-left: 0;
		border-left: none;
	}
}

@media (max-width: 470px) {
	.footer-section-2 .footer-top-item .footer-right-item .icon-item {
		gap: 8px;
	}
}

.footer-section-2 .footer-top-item .footer-right-item .icon-item .icon {
	width: 44px;
	height: 44px;
	line-height: 44px;
	text-align: center;
	background-color: var(--theme2);
	border-radius: 100px;
	color: var(--header);
}

.footer-section-2 .footer-top-item .footer-right-item .icon-item .icon img {
	filter: brightness(0)invert(1);
}

.footer-section-2 .footer-top-item .footer-right-item .icon-item .cont span {
	font-size: 16px;
	font-weight: 500;
	margin-bottom: 5px;
	color: rgb(255 255 255 / 72%);
	text-transform: capitalize;
}

.footer-section-2 .footer-top-item .footer-right-item .icon-item .cont h4 a {
	color: var(--white);
}

.footer-section-2 .footer-top-item.style-inner .footer-right-item .social-icon a:hover {
	background-color: var(--theme3);
	color: var(--white);
	border: 1px solid var(--theme3);
}

.footer-section-2 .footer-top-item.style-inner .footer-right-item .icon-item .icon {
	background-color: var(--theme3);
}

.footer-section-2 .footer-top-item.style-inner .footer-right-item .icon-item .icon img {
	filter: brightness(0) invert(1);
}

.footer-section-2 .footer-top-item.style-inner .footer-right-item .icon-item .cont h3 {
	font-size: 20px;
	font-weight: 700;
	line-height: 150%;
	text-transform: capitalize;
}

.footer-section-2 .footer-top-item.style-inner .footer-right-item .icon-item .cont h3 a {
	color: var(--white);
}

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

.rowiu .col-xl-12 {
	display: flex;
	width: 100%;
	flex-wrap: wrap;
	margin-top: 8px;
	padding-top: 0;
	justify-content: space-between;
}

.rowiu .col-xl-12 .news-card-item {
	width: 48%;
}

@media (max-width: 1399px) {
	.footer-section-2 .left-shape {
		display: none;
	}
}

.footer-section-2 .right-shape {
	position: absolute;
	right: 30px;
	bottom: 0;
}

@media (max-width: 1399px) {
	.footer-section-2 .right-shape {
		display: none;
	}
}

.footer-section-3 .footer-top-item-3 {
	display: flex;
	align-items: center;
	justify-content: space-between;
	border-bottom: 1px solid rgba(255, 255, 255, 0.2);
	padding: 100px 0 60px;
}

@media (max-width: 1399px) {
	.footer-section-3 .footer-top-item-3 {
		flex-wrap: wrap;
		gap: 30px;
	}
}

@media (max-width: 991px) {
	.footer-section-3 .footer-top-item-3 {
		padding-top: 80px;
	}
}

.footer-section-3 .footer-top-item-3 .left-content p {
	color: var(--white);
	max-width: 421px;
	margin-top: 30px;
}

.footer-section-3 .footer-top-item-3 .footer-right-item .icon-item {
	display: flex;
	align-items: center;
	gap: 15px;
	margin-bottom: 50px;
}

@media (max-width: 470px) {
	.footer-section-3 .footer-top-item-3 .footer-right-item .icon-item {
		gap: 8px;
	}
}

.footer-section-3 .footer-top-item-3 .footer-right-item .icon-item .icon {
	width: 44px;
	height: 44px;
	line-height: 44px;
	text-align: center;
	background-color: var(--white);
	border-radius: 100px;
}

.footer-section-3 .footer-top-item-3 .footer-right-item .icon-item .cont span {
	font-size: 16px;
	font-weight: 500;
	margin-bottom: 5px;
	color: rgb(142, 142, 142);
	text-transform: capitalize;
}

.footer-section-3 .footer-top-item-3 .footer-right-item .icon-item .cont h4 a {
	color: var(--white);
}

@media (max-width: 1399px) {
	.footer-section-3.bg-cover {
		background-position: initial;
		background-color: #012804;
	}
}

.section-title {
	position: relative;
	z-index: 99;
	margin-bottom: 30px;
}

@media (max-width: 767px) {
	.section-title {
		margin-bottom: 0;
	}

	.section-title br {
		display: none;
	}
}

.section-title .sub-title {
	font-size: 16px;
	font-weight: 600;
	border: 1px solid rgba(17, 162, 27, 0.2);
	color: var(--theme3);
	padding: 6px 9px;
	display: inline-block;
	border-radius: 6px;
	line-height: 1;
	margin-bottom: 10px;
	font-family: "Inter", sans-serif;
	text-transform: capitalize;
}

.section-title .sub-title.style-2 {
	border: 1px solid rgba(255, 255, 255, 0.2);
}

@media (max-width: 1399px) {
	.section-title h2 br {
		display: none;
	}
}

.section-title .sub-title-2 {
	color: var(--theme3);
	margin-bottom: 10px;
	font-weight: 600;
	font-size: 16px;
	font-family: "Inter", sans-serif;
	display: inline-block;
	text-transform: capitalize;
}

.section-title .sub-title-2 img {
	margin-right: 8px;
	filter: hue-rotate(44deg);
}

.section-title .sub-title-2.style-2 {
	color: var(--header);
}

.section-title .sub-title-3 {
	border: 1px solid rgba(17, 162, 27, 0.2);
	color: var(--theme3);
	border-radius: 6px;
	text-transform: uppercase;
	padding: 2px 9px;
	font-family: "Inter", sans-serif;
	margin-bottom: 15px;
	display: inline-block;
	font-weight: 600;
	font-size: 15px;
}

.section-title .sub-title-3.style-border {
	border: 1px solid rgba(255, 255, 255, 0.2);
}

.section-title-area {
	display: flex;
	align-items: center;
	justify-content: space-between;
	position: relative;
	z-index: 9;
	margin-bottom: 30px;
}

@media (max-width: 767px) {
	.section-title-area {
		margin-bottom: 0;
	}

	.section-title-area br {
		display: none;
	}
}

@media (max-width: 1399px) {
	.section-title-area p br {
		display: none;
	}
}

.section-title-area .section-title {
	margin-bottom: 0;
}

@media (max-width: 991px) {
	.section-title-area {
		flex-wrap: wrap;
		gap: 30px;
	}
}

.center {
	text-align: center;
	margin: 0 auto;
}

.section-bg {
	background-color: var(--bg);
}

.section-bg-3 {
	background-color: var(--bg3);
}

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

.theme-bg-2 {
	background-color: var(--theme2);
}

.section-bg-2 {
	background-color: var(--bg2);
}

.section-padding {
	padding: 120px 0;
}

@media (max-width: 1199px) {
	.section-padding {
		padding: 100px 0;
	}
}

@media (max-width: 991px) {
	.section-padding {
		padding: 80px 0;
	}
}

.footer-bg {
	background-color: rgb(1, 40, 4);
}

/*---------------------------------------
05. Sections
---------------------------------------*/
.about-wrapper .about-image {
	max-width: 640px;
	position: relative;
	border-radius: 20px;
}

@media (max-width: 1399px) {
	.about-wrapper .about-image {
		max-width: initial;
	}
}

.about-wrapper .about-image .about-image-item {
	display: grid;
	align-items: center;
	gap: 30px;
	position: absolute;
	right: -100px;
	top: 125px;
}

@media (max-width: 1399px) {
	.about-wrapper .about-image .about-image-item {
		right: 0;
		top: 0;
		flex-wrap: wrap;
		top: 100px;
	}
}

@media (max-width: 991px) {
	.about-wrapper .about-image .about-image-item {
		top: 250px;
	}
}

@media (max-width: 767px) {
	.about-wrapper .about-image .about-image-item {
		top: 80px;
	}
}

.about-wrapper .about-image .about-image-item .about-thumb {
	max-width: 234px;
}

@media (max-width: 1399px) {
	.about-wrapper .about-image .about-image-item .about-thumb {
		max-width: 160px;
	}
}

@media (max-width: 575px) {
	.about-wrapper .about-image .about-image-item .about-thumb {
		max-width: 120px;
	}
}

.about-wrapper .about-image .about-image-item .about-thumb img {
	width: 100%;
	height: 100%;
	border-radius: 20px;
	border: 4px solid var(--white);
}

.about-wrapper .about-image img {
	width: 100%;
	height: 100%;
	border-radius: 20px;
}

.about-wrapper .about-content {
	margin-left: 84px;
}

@media (max-width: 1399px) {
	.about-wrapper .about-content {
		margin-left: 0;
	}
}

.about-wrapper .about-content .text {
	margin-top: 15px;
	max-width: 609px;
}

.about-wrapper .about-content .about-box-item {
	display: flex;
	align-items: center;
	justify-content: space-between;
	border-radius: 20px;
	background-color: var(--white);
	padding: 0 0 0 20px;
	margin-top: 30px;
	margin-bottom: 50px;
}

@media (max-width: 1399px) {
	.about-wrapper .about-content .about-box-item {
		flex-wrap: wrap;
		gap: 20px;
		margin-bottom: 30px;
		padding: 15px;
	}
}

.about-wrapper .about-content .about-box-item .left-item h3 {
	font-weight: 600;
	font-size: 18px;
}

.about-wrapper .about-content .about-box-item .left-item .list-item {
	display: flex;
	align-items: center;
	gap: 20px;
	margin-top: 20px;
}

@media (max-width: 1399px) {
	.about-wrapper .about-content .about-box-item .left-item .list-item {
		gap: 10px;
	}
}

.about-wrapper .about-content .about-box-item .left-item .list-item .list li {
	color: rgb(47, 47, 47);
	font-weight: 500;
}

@media (max-width: 1399px) {
	.about-wrapper .about-content .about-box-item .left-item .list-item .list li {
		font-size: 14px;
	}
}

.about-wrapper .about-content .about-box-item .left-item .list-item .list li i {
	margin-right: 8px;
	color: var(--theme3);
}

.about-wrapper .about-content .about-box-item .left-item .list-item .list li:not(:last-child) {
	margin-bottom: 10px;
}

@media (max-width: 575px) {
	.about-wrapper .about-content .about-box-item .right-image {
		display: none;
	}
}

.about-wrapper .about-content .about-box-item .right-image img {
	width: 100%;
	height: 100%;
	border-top-right-radius: 20px;
	border-bottom-right-radius: 20px;
}

@media (max-width: 1399px) {
	.about-wrapper .about-content .about-box-item .right-image img {
		border-radius: 20px;
	}
}

.about-wrapper .about-content .about-box-item .right-image-2 {
	opacity: 0;
	visibility: hidden;
	display: none;
}

@media (max-width: 575px) {
	.about-wrapper .about-content .about-box-item .right-image-2 {
		opacity: 1;
		visibility: visible;
		max-width: 100%;
		display: block;
	}
}

.about-wrapper .about-content .about-box-item .right-image-2 img {
	width: 100%;
	height: 100%;
	border-radius: 20px;
}

.about-wrapper .about-content .about-button {
	display: flex;
	align-items: center;
	gap: 30px;
}

@media (max-width: 1399px) {
	.about-wrapper .about-content .about-button {
		flex-wrap: wrap;
		gap: 20px;
	}
}

.about-wrapper .about-content .about-button .theme-btn.style-2 {
	background-color: transparent;
	border: 1px solid var(--theme);
	color: var(--theme);
}

.about-wrapper .about-content .about-button .theme-btn.style-2::before {
	background-color: var(--theme);
}

.about-wrapper .about-content .about-button .theme-btn.style-2::after {
	background-color: rgba(200, 67, 58, 0.3);
}

.about-wrapper .about-content .about-button .theme-btn.style-2:hover {
	color: var(--white);
}

.about-section {
	position: relative;
}

.about-section .left-shape {
	position: absolute;
	top: 490px;
	left: 0;
}

@media (max-width: 1600px) {
	.about-section .left-shape {
		display: none;
	}
}

.about-section .right-shape {
	position: absolute;
	right: 75px;
	bottom: 70px;
}

@media (max-width: 1399px) {
	.about-section .right-shape {
		display: none;
	}
}

.about-section .right-shape img {
	animation: rotateCircle 10s linear infinite;
}

.about-section-2 {
	z-index: 9;
}

.about-section-2 .section-title-area {
	/* border-top: 1px solid rgba(47, 47, 47, 0.2); */
	border-bottom: 1px solid rgba(47, 47, 47, 0.2);
	padding: 60px 0;
	margin-bottom: 48px;
}

@media (max-width: 1399px) {
	.about-section-2 .section-title-area {
		padding: 30px 0;
		margin-bottom: 30px;
	}
}

.about-section-2 .section-title-area p {
	margin-bottom: 30px;
}

.about-section-2 .left-shape {
	position: absolute;
	left: 0;
	top: 10.5%;
	z-index: -1;
}

@media (max-width: 1399px) {
	.about-section-2 .left-shape {
		display: none;
	}
}

.about-section-2 .left-shape-2 {
	position: absolute;
	left: 30px;
	top: 44%;
	z-index: -1;
}

@media (max-width: 1600px) {
	.about-section-2 .left-shape-2 {
		display: none;
	}
}

.about-section-2 .right-shape {
	position: absolute;
	right: 0;
	top: 10.5%;
	z-index: -1;
}

@media (max-width: 1399px) {
	.about-section-2 .right-shape {
		display: none;
	}
}

.about-section-2 .right-shape-2 {
	position: absolute;
	right: 30px;
	top: 32%;
	z-index: -1;
}

@media (max-width: 1600px) {
	.about-section-2 .right-shape-2 {
		display: none;
	}
}

.about-section-2 .maize-shape {
	position: absolute;
	top: 19.5%;
	left: 30px;
}

@media (max-width: 1600px) {
	.about-section-2 .maize-shape {
		display: none;
	}
}

.about-section-2 .maize-shape-2 {
	position: absolute;
	top: 14%;
	right: 30px;
}

@media (max-width: 1600px) {
	.about-section-2 .maize-shape-2 {
		display: none;
	}
}

.about-wrapper-2 .count-wrap {
	display: flex;
	align-items: center;
	align-items: start;
	justify-content: space-between;
	margin-top: 130px;
}

@media (max-width: 1399px) {
	.about-wrapper-2 .count-wrap {
		margin-top: 0;
	}
}

@media (max-width: 991px) {
	.about-wrapper-2 .count-wrap {
		flex-wrap: wrap;
		gap: 30px;
	}
}

.about-wrapper-2 .count-wrap .count-item-2 h2 {
	font-weight: 600;
	font-size: 120px;
	color: transparent;
	line-height: 94%;
	-webkit-text-stroke: 1px var(--theme3);
}

@media (max-width: 1399px) {
	.about-wrapper-2 .count-wrap .count-item-2 h2 {
		font-size: 80px;
	}
}

.about-wrapper-2 .count-wrap .count-item-2 p {
	font-size: 17px;
	font-weight: 400;
	color: rgb(47, 47, 47);
	max-width: 318px;
}

@media (max-width: 1399px) {
	.about-wrapper-2 .count-wrap .count-item-2 p {
		font-size: 15px;
	}
}

.about-wrapper-2 .count-wrap .count-item-2.active h2 {
	color: var(--theme3);
}

.about-wrapper-2 .count-wrap .count-item-2.style-top {
	margin-top: -100px;
}

@media (max-width: 1399px) {
	.about-wrapper-2 .count-wrap .count-item-2.style-top {
		margin-top: 0;
	}
}

.about-wrapper-2 .trac-wrap {
	margin-top: -60px;
}

@media (max-width: 1399px) {
	.about-wrapper-2 .trac-wrap {
		margin-top: 30px;
	}
}

@media (max-width: 991px) {
	.about-wrapper-2 .trac-wrap {
		margin-top: 0;
	}
}

.about-wrapper-2 .trac-wrap .tractor-image {
	text-align: center;
	max-width: 491px;
	margin: 0 auto;
}

@media (max-width: 575px) {
	.about-wrapper-2 .trac-wrap .tractor-image {
		max-width: 190px;
		margin-left: 60px;
		/* animation-name: inherit; */
	}
}

.about-wrapper-2 .trac-wrap .tractor-image img {
	width: 100%;
	height: 100%;
	filter: drop-shadow(0px 4px 150px rgba(245, 216, 62, 0.5));
}
#translate{
	display: none;
}
.about-wrapper-2 .paddy-image {
	margin-top: -180px;
	position: relative;
}

@media (max-width: 1399px) {
	.about-wrapper-2 .paddy-image {
		/* margin-top: -165px; */
	}
}

@media (max-width: 575px) {
	.about-wrapper-2 .paddy-image {
		margin-top: -51px;
	}
}

.about-wrapper-2 .paddy-image .video-btn {
	width: 120px;
	height: 120px;
	line-height: 120px;
	display: inline-block;
	text-align: center;
	border-radius: 100px;
	background-color: var(--white);
	color: var(--theme3);
	position: absolute;
	z-index: 9;
	bottom: 120px;
	left: 50%;
	transform: translateX(-50%);
	font-size: 17px;
}

@media (max-width: 1399px) {
	.about-wrapper-2 .paddy-image .video-btn.ripple-2::before {
		display: none;
	}

	.about-wrapper-2 .paddy-image .video-btn.ripple-2::after {
		display: none;
	}
}

@media (max-width: 1399px) {
	.about-wrapper-2 .paddy-image .video-btn {
		bottom: 60px;
	}
}

@media (max-width: 991px) {
	.about-wrapper-2 .paddy-image .video-btn {
		width: 100px;
		height: 100px;
		line-height: 100px;
		bottom: 40px;
	}
}

@media (max-width: 767px) {
	.about-wrapper-2 .paddy-image .video-btn {
		width: 65px;
		height: 65px;
		line-height: 65px;
		bottom: 13px;
	}
}

.about-wrapper-2 .paddy-image .video-btn::before {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	content: "";
	background: rgba(255, 255, 255, 0.25);
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 198px;
	height: 198px;
	border-radius: 100px;
}

.about-wrapper-2 .paddy-image .video-btn::after {
	position: absolute;
	content: "";
	background: rgba(255, 255, 255, 0.25);
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 154px;
	height: 154px;
	border-radius: 100px;
}

.about-wrapper-2 .paddy-image img {
	width: 100%;
	height: 100%;
	border-radius: 20px;
}

.about-wrapper-3 .about-content .text {
	max-width: 690px;
	margin-top: 15px;
}

.about-wrapper-3 .about-content .about-image-item {
	display: flex;
	align-items: center;
	margin-top: 50px;
}

@media (max-width: 1399px) {
	.about-wrapper-3 .about-content .about-image-item {
		margin-top: 30px;
	}
}

@media (max-width: 991px) {
	.about-wrapper-3 .about-content .about-image-item {
		gap: 20px;
		flex-wrap: wrap;
		margin-top: 30px;
	}
}

@media (max-width: 575px) {
	.about-wrapper-3 .about-content .about-image-item {
		flex-wrap: initial;
		gap: 0;
	}
}

.about-wrapper-3 .about-content .about-image-item .about-image {
	position: relative;
	width: 313px;
	height: 175px;
	max-width: 100%;
	-webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 313 175'%3E%3Cpath d='M2.56509 29.7474C-4.8756 16.4161 4.76189 0 20.029 0H249.183C256.013 0 262.371 3.48579 266.045 9.24437L309.101 76.7444C313.286 83.3043 313.286 91.6957 309.101 98.2556L266.045 165.756C262.371 171.514 256.013 175 249.183 175H20.029C4.76185 175 -4.87562 158.584 2.56507 145.253L29.3587 97.2473C32.7401 91.189 32.7401 83.811 29.3588 77.7527L2.56509 29.7474Z' fill='white'/%3E%3C/svg%3E");
	-webkit-mask-repeat: no-repeat;
	-webkit-mask-position: center;
	-webkit-mask-size: cover;
	mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 313 175'%3E%3Cpath d='M2.56509 29.7474C-4.8756 16.4161 4.76189 0 20.029 0H249.183C256.013 0 262.371 3.48579 266.045 9.24437L309.101 76.7444C313.286 83.3043 313.286 91.6957 309.101 98.2556L266.045 165.756C262.371 171.514 256.013 175 249.183 175H20.029C4.76185 175 -4.87562 158.584 2.56507 145.253L29.3587 97.2473C32.7401 91.189 32.7401 83.811 29.3588 77.7527L2.56509 29.7474Z' fill='white'/%3E%3C/svg%3E");
	mask-repeat: no-repeat;
	mask-position: center;
	mask-size: cover;
}

@media (max-width: 1399px) {
	.about-wrapper-3 .about-content .about-image-item .about-image {
		height: 150px;
	}
}

@media (max-width: 991px) {
	.about-wrapper-3 .about-content .about-image-item .about-image {
		height: 175px;
	}
}

@media (max-width: 575px) {
	.about-wrapper-3 .about-content .about-image-item .about-image {
		width: 200px;
		height: 98px;
	}
}

.about-wrapper-3 .about-content .about-image-item .about-image img {
	width: 100%;
	height: 100%;
	border-radius: 20px;
}

.about-wrapper-3 .about-content .about-image-item .about-image .count-content {
	position: absolute;
	top: 30px;
	left: 50px;
}

@media (max-width: 575px) {
	.about-wrapper-3 .about-content .about-image-item .about-image .count-content {
		top: 18px;
		left: 30px;
	}
}

.about-wrapper-3 .about-content .about-image-item .about-image .count-content h2 {
	font-size: 100px;
	color: var(--white);
	line-height: 90%;
}

@media (max-width: 1399px) {
	.about-wrapper-3 .about-content .about-image-item .about-image .count-content h2 {
		font-size: 75px;
	}
}

@media (max-width: 575px) {
	.about-wrapper-3 .about-content .about-image-item .about-image .count-content h2 {
		font-size: 40px;
		text-align: center;
	}
}

.about-wrapper-3 .about-content .about-image-item .about-image .count-content p {
	text-transform: uppercase;
	color: var(--white);
	font-weight: 600;
	font-size: 16px;
}

@media (max-width: 1399px) {
	.about-wrapper-3 .about-content .about-image-item .about-image .count-content p {
		font-size: 14px;
	}
}

@media (max-width: 575px) {
	.about-wrapper-3 .about-content .about-image-item .about-image .count-content p {
		font-size: 10px;
	}
}

.about-wrapper-3 .about-box {
	border-radius: 20px;
	padding: 70px;
	width: 100%;
	max-width: 590px;
	position: relative;
}

@media (max-width: 1399px) {
	.about-wrapper-3 .about-box {
		padding: 30px;
		max-width: initial;
		width: initial;
	}
}

@media (max-width: 991px) {
	.about-wrapper-3 .about-box {
		padding: 40px;
	}
}

@media (max-width: 767px) {
	.about-wrapper-3 .about-box {
		padding: 30px;
	}
}

.about-wrapper-3 .about-box::before {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	content: "";
	height: 95%;
	background-color: rgba(47, 47, 47, 0.2);
	top: 13px;
	left: initial;
	right: -10px;
	border-radius: 10px;
	z-index: -1;
}

@media (max-width: 1399px) {
	.about-wrapper-3 .about-box::before {
		display: none;
	}
}

.about-wrapper-3 .about-box::after {
	position: absolute;
	bottom: 0;
	width: 100%;
	height: 90%;
	content: "";
	background-color: rgba(47, 47, 47, 0.1);
	top: 25px;
	left: initial;
	right: -20px;
	border-radius: 10px;
	z-index: -1;
}

@media (max-width: 1399px) {
	.about-wrapper-3 .about-box::after {
		display: none;
	}
}

.about-wrapper-3 .about-box .about-right-item h3 {
	color: var(--white);
	font-size: 20px;
	font-weight: 700;
	line-height: 150%;
}

.about-wrapper-3 .about-box .about-right-item .list-item {
	display: flex;
	align-items: center;
	gap: 20px;
	margin-top: 20px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.2);
	padding-bottom: 30px;
	margin-bottom: 30px;
}

@media (max-width: 1399px) {
	.about-wrapper-3 .about-box .about-right-item .list-item {
		gap: 10px;
	}
}

.about-wrapper-3 .about-box .about-right-item .list-item .list li {
	color: var(--white);
	font-weight: 500;
}

@media (max-width: 1399px) {
	.about-wrapper-3 .about-box .about-right-item .list-item .list li {
		font-size: 14px;
	}
}

@media (max-width: 575px) {
	.about-wrapper-3 .about-box .about-right-item .list-item .list li {
		font-size: 13px;
	}
}

.about-wrapper-3 .about-box .about-right-item .list-item .list li i {
	margin-right: 8px;
	color: rgb(17, 162, 27);
}

.about-wrapper-3 .about-box .about-right-item .list-item .list li:not(:last-child) {
	margin-bottom: 10px;
}

.about-wrapper-3 .about-box .about-right-item .info-item {
	display: flex;
	align-items: center;
	gap: 20px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.2);
	padding-bottom: 30px;
	margin-bottom: 30px;
}

.about-wrapper-3 .about-box .about-right-item .info-item .content h4 {
	font-weight: 600;
	color: var(--white);
}

.about-wrapper-3 .about-box .about-right-item .info-item .content span {
	color: rgb(131, 131, 131);
	font-weight: 400;
	font-size: 15px;
}

.about-wrapper-3 .about-box .about-right-item .about-button {
	display: flex;
	align-items: center;
	gap: 30px;
}

@media (max-width: 1399px) {
	.about-wrapper-3 .about-box .about-right-item .about-button {
		gap: 10px;
	}
}

@media (max-width: 1399px) {
	.about-wrapper-3 .about-box .about-right-item .about-button .theme-btn {
		padding: 13px 20px 13px;
	}
}

.about-wrapper-3 .about-box .about-right-item .about-button .theme-btn.theme-btn-3::before {
	background-color: var(--white);
}

.about-wrapper-3 .about-box .about-right-item .about-button .theme-btn.theme-btn-3::after {
	background-color: rgba(255, 255, 255, 0.3);
}

.about-wrapper-3 .about-box .about-right-item .about-button .theme-btn.theme-btn-3:hover {
	color: var(--theme3);
}

.about-wrapper-3 .about-box .about-right-item .about-button .theme-btn.style-2 {
	background-color: transparent;
	border: 1px solid rgb(255, 255, 255);
	color: var(--white);
}

.about-wrapper-3 .about-box .about-right-item .about-button .theme-btn.style-2::before {
	background-color: var(--theme3);
}

.about-wrapper-3 .about-box .about-right-item .about-button .theme-btn.style-2::after {
	background-color: rgba(17, 162, 27, 0.3);
}

.about-wrapper-3 .about-box .about-right-item .about-button .theme-btn.style-2:hover {
	color: var(--white);
	border: 1px solid var(--theme3);
}

.about-section-3 {
	position: relative;
}

.about-section-3 .chili-shape {
	position: absolute;
	left: 30px;
	top: 120px;
}

@media (max-width: 1600px) {
	.about-section-3 .chili-shape {
		display: none;
	}
}

.about-section-3 .tree-shape {
	position: absolute;
	right: 30px;
	bottom: 120px;
}

@media (max-width: 1600px) {
	.about-section-3 .tree-shape {
		display: none;
	}
}

.about-us-two-wrapper .about-us-image img {
	width: 100%;
	height: 100%;
	border-radius: 10px;
}

.about-us-two-wrapper .about-us-content .text {
	margin-top: 15px;
	max-width: 690px;
}

.about-us-two-wrapper .about-us-content .client-info-item {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-top: 30px;
	margin-bottom: 30px;
}

@media (max-width: 991px) {
	.about-us-two-wrapper .about-us-content .client-info-item {
		flex-wrap: wrap;
		gap: 25px;
	}
}

.about-us-two-wrapper .about-us-content .client-info-item .client-item {
	display: flex;
	align-items: center;
	gap: 30px;
}

@media (max-width: 1399px) {
	.about-us-two-wrapper .about-us-content .client-info-item .client-item {
		gap: 20px;
	}
}

.about-us-two-wrapper .about-us-content .client-info-item .client-item h3 {
	font-size: 20px;
	font-weight: 600;
}

.about-us-two-wrapper .about-us-content .list li {
	color: var(--header);
	font-weight: 500;
}

@media (max-width: 1399px) {
	.about-us-two-wrapper .about-us-content .list li {
		font-size: 14px;
	}
}

.about-us-two-wrapper .about-us-content .list li i {
	margin-right: 8px;
	color: var(--theme3);
}

.about-us-two-wrapper .about-us-content .list li:not(:last-child) {
	margin-bottom: 10px;
}

.about-us-two-wrapper .about-us-content .about-us-btn-item {
	display: flex;
	align-items: center;
	gap: 44px;
	position: relative;
	margin-top: 50px;
}

@media (max-width: 1399px) {
	.about-us-two-wrapper .about-us-content .about-us-btn-item {
		flex-wrap: wrap;
		gap: 25px;
		margin-top: 30px;
	}
}

@media (max-width: 470px) {
	.about-us-two-wrapper .about-us-content .about-us-btn-item {
		flex-wrap: initial;
		gap: 10px;
	}
}

.about-us-two-wrapper .about-us-content .about-us-btn-item .theme-btn {
	border: 1px solid var(--theme3);
	background-color: transparent;
	color: var(--theme3);
}

@media (max-width: 470px) {
	.about-us-two-wrapper .about-us-content .about-us-btn-item .theme-btn {
		padding: 10px 25px 10px;
	}
}

.about-us-two-wrapper .about-us-content .about-us-btn-item .theme-btn::before {
	background-color: var(--theme3);
}

.about-us-two-wrapper .about-us-content .about-us-btn-item .theme-btn::after {
	background-color: rgba(17, 162, 27, 0.3);
}

.about-us-two-wrapper .about-us-content .about-us-btn-item .theme-btn:hover {
	border: 1px solid var(--theme3);
	color: var(--white);
}

.about-us-two-wrapper .about-us-content .about-us-btn-item .icon-item {
	display: flex;
	align-items: center;
	gap: 15px;
}

@media (max-width: 470px) {
	.about-us-two-wrapper .about-us-content .about-us-btn-item .icon-item {
		gap: 8px;
	}
}

.about-us-two-wrapper .about-us-content .about-us-btn-item .icon-item .icon {
	width: 52px;
	height: 52px;
	line-height: 48px;
	text-align: center;
	background-color: var(--white);
	border: 1px solid var(--theme3);
	border-radius: 100px;
	color: var(--theme3);
}

@media (max-width: 470px) {
	.about-us-two-wrapper .about-us-content .about-us-btn-item .icon-item .icon {
		width: 48px;
		height: 48px;
		line-height: 48px;
	}
}

.about-us-two-wrapper .about-us-content .about-us-btn-item .icon-item h3 {
	font-weight: 600;
}

@media (max-width: 470px) {
	.about-us-two-wrapper .about-us-content .about-us-btn-item .icon-item h3 {
		font-size: 16px;
	}
}

.about-us-two-wrapper .about-us-content .about-us-btn-item .icon-item h3 a {
	color: var(--header);
}

.about-wrapper-4 .about-image {
	position: relative;
	max-width: 460px;
	z-index: 9;
}

@media (max-width: 1399px) {
	.about-wrapper-4 .about-image {
		max-width: initial;
	}
}

.about-wrapper-4 .about-image img {
	width: 100%;
	height: 100%;
	border-radius: 10px;
}

.about-wrapper-4 .about-image .about-image-2 {
	position: absolute;
	bottom: -320px;
	right: -150px;
	max-width: 470px;
	z-index: -1;
}

@media (max-width: 1399px) {
	.about-wrapper-4 .about-image .about-image-2 {
		right: 0;
		bottom: 0;
		max-width: 170px;
		z-index: 1;
	}
}

@media (max-width: 991px) {
	.about-wrapper-4 .about-image .about-image-2 {
		max-width: 370px;
	}
}

@media (max-width: 767px) {
	.about-wrapper-4 .about-image .about-image-2 {
		max-width: 170px;
	}
}

.about-wrapper-4 .about-content .text {
	max-width: 690px;
	margin-top: 15px;
}

.about-wrapper-4 .about-content .about-icon-item {
	display: flex;
	align-items: center;
	gap: 150px;
	margin-top: 30px;
}

@media (max-width: 1399px) {
	.about-wrapper-4 .about-content .about-icon-item {
		flex-wrap: wrap;
		gap: 30px;
	}
}

.about-wrapper-4 .about-content .about-icon-item .icon-item {
	display: flex;
	align-items: center;
	gap: 15px;
}

.about-wrapper-4 .about-content .about-icon-item .icon-item img {
	width: 64px;
}

@media (max-width: 1399px) {
	.about-wrapper-4 .about-content .about-icon-item .icon-item h3 {
		font-size: 20px;
	}
}

.about-wrapper-4 .about-content .list-item {
	display: flex;
	align-items: center;
	gap: 20px;
	margin-top: 40px;
	border-bottom: 1px solid rgba(17, 162, 27, 0.2);
	padding-bottom: 30px;
	margin-bottom: 30px;
}

@media (max-width: 1399px) {
	.about-wrapper-4 .about-content .list-item {
		gap: 10px;
	}
}

.about-wrapper-4 .about-content .list-item .list li {
	color: var(--theme3);
	font-weight: 500;
}

@media (max-width: 1399px) {
	.about-wrapper-4 .about-content .list-item .list li {
		font-size: 14px;
	}
}

@media (max-width: 575px) {
	.about-wrapper-4 .about-content .list-item .list li {
		font-size: 13px;
	}
}

.about-wrapper-4 .about-content .list-item .list li i {
	margin-right: 8px;
	color: var(--theme3);
}

.about-wrapper-4 .about-content .list-item .list li:not(:last-child) {
	margin-bottom: 10px;
}

.brand-box-1 {
	height: 120px;
	line-height: 120px;
	text-align: center;
	position: relative;
	overflow: hidden;
}

.brand-box-1 .brand-img-1 {
	position: absolute;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
}

.brand-box-1 .brand-img-1 img {
	transition: all 0.6s ease;
	transform: translateY(0);
	opacity: 0.4;
}

.brand-box-1 .brand-img-1:last-child img {
	transform: translateY(-350%);
	opacity: 0;
}

.brand-box-1:hover .brand-img-1:first-child img {
	transform: translateY(100%);
	opacity: 0;
}

.brand-box-1:hover .brand-img-1:last-child img {
	transform: translateY(0);
	opacity: 1;
}

.brand-slider.style-border {
	border-bottom: 1px solid rgba(47, 47, 47, 0.2);
	padding-bottom: 120px;
}

@media (max-width: 1399px) {
	.brand-slider.style-border {
		padding-bottom: 100px;
	}
}

@media (max-width: 991px) {
	.brand-slider.style-border {
		padding-bottom: 80px;
	}
}

.brand-section-2 .swiper-slide.swiper-slide-active .brand-box-1 .brand-img-1:first-child img {
	transform: translateY(100%);
	opacity: 0;
}

.brand-section-2 .swiper-slide.swiper-slide-active .brand-box-1 .brand-img-1:last-child img {
	transform: translateY(0);
	opacity: 1;
}

.brand-section-3 h2 {
	color: var(--header);
	font-weight: 600;
	font-size: 16px;
	text-transform: capitalize;
	position: relative;
	margin-bottom: 60px;
	padding-left: 15px;
	padding-right: 15px;
	text-align: center;
	font-family: "Inter", sans-serif;
}

@media (max-width: 1399px) {
	.brand-section-3 h2 {
		margin-bottom: 30px;
	}
}

.brand-section-3 h2::before {
	position: absolute;
	content: "";
	height: 1px;
	width: 638px;
	background-color: rgba(47, 47, 47, 0.2);
	left: 0;
	top: 10px;
}

@media (max-width: 1399px) {
	.brand-section-3 h2::before {
		display: none;
	}
}

.brand-section-3 h2::after {
	position: absolute;
	content: "";
	height: 1px;
	width: 638px;
	background-color: rgba(47, 47, 47, 0.2);
	right: 0;
	top: 10px;
}

@media (max-width: 1399px) {
	.brand-section-3 h2::after {
		display: none;
	}
}

.brand-section-3 .swiper-slide.swiper-slide-active .brand-box-1 .brand-img-1:first-child img {
	transform: translateY(100%);
	opacity: 0;
}

.brand-section-3 .swiper-slide.swiper-slide-active .brand-box-1 .brand-img-1:last-child img {
	transform: translateY(0);
	opacity: 1;
}

.brand-section .swiper-slide.swiper-slide-active .brand-box-1 .brand-img-1:first-child img {
	transform: translateY(100%);
	opacity: 0;
}

.brand-section .swiper-slide.swiper-slide-active .brand-box-1 .brand-img-1:last-child img {
	transform: translateY(0);
	opacity: 1;
}

.contact-info-wrapper {
	display: flex;
	align-items: center;
	align-items: end;
	justify-content: space-between;
}

@media (max-width: 1399px) {
	.contact-info-wrapper {
		flex-wrap: wrap;
		gap: 30px;
	}
}

.contact-info-wrapper .contact-info-left-content .info-icon-item {
	display: flex;
	align-items: center;
	gap: 78px;
	justify-content: space-around;
	margin-top: 50px;
}

@media (max-width: 1399px) {
	.contact-info-wrapper .contact-info-left-content .info-icon-item {
		margin-top: 30px;
		flex-wrap: wrap;
		gap: 30px;
	}
}

.contact-info-wrapper .contact-info-left-content .info-icon-item .icon-item {
	display: flex;
	align-items: center;
	gap: 15px;
}

@media (max-width: 470px) {
	.contact-info-wrapper .contact-info-left-content .info-icon-item .icon-item {
		gap: 8px;
	}
}

.contact-info-wrapper .contact-info-left-content .info-icon-item .icon-item .icon {
	width: 44px;
	height: 44px;
	line-height: 44px;
	text-align: center;
	background-color: var(--theme3);
	border-radius: 100px;
	color: #fff;
}

.contact-info-wrapper .contact-info-left-content .info-icon-item .icon-item .icon img {
	filter: brightness(0) invert(1);
}

.contact-info-wrapper .contact-info-left-content .info-icon-item .icon-item .cont span {
	font-size: 16px;
	font-weight: 500;
	margin-bottom: 5px;
	color: rgb(142, 142, 142);
	/* text-transform: capitalize; */
}

.contact-info-wrapper .contact-info-left-content .info-icon-item .icon-item .cont h3 {
	font-size: 20px;
	font-weight: 700;
}

.contact-info-wrapper .contact-info-left-content .info-icon-item .icon-item .cont h3 a {
	color: var(--header);
}

.contact-info-wrapper .info-right-content p {
	max-width: 420px;
	color: rgb(80, 98, 74);
	margin-bottom: 50px;
	font-weight: 400;
}

@media (max-width: 1399px) {
	.contact-info-wrapper .info-right-content p {
		margin-bottom: 30px;
	}
}

.contact-info-wrapper .info-right-content .icon-item {
	display: flex;
	align-items: center;
	gap: 15px;
}

@media (max-width: 470px) {
	.contact-info-wrapper .info-right-content .icon-item {
		gap: 8px;
		flex-wrap: wrap;
	}
}

.contact-info-wrapper .info-right-content .icon-item .icon {
	width: 44px;
	height: 44px;
	line-height: 44px;
	text-align: center;
	background-color: var(--theme3);
	border-radius: 100px;
	color: var(--white);
	font-size: 20px;
}

.contact-info-wrapper .info-right-content .icon-item .cont span {
	font-size: 16px;
	font-weight: 500;
	margin-bottom: 5px;
	color: rgb(142, 142, 142);
	text-transform: capitalize;
}

.contact-info-wrapper .info-right-content .icon-item .cont h3 {
	font-size: 20px;
	font-weight: 700;
}

.contact-info-wrapper .info-right-content .icon-item .cont h3 a {
	color: var(--header);
}

.contact-wrapper .contact-content {
	border-radius: 10px;
	padding: 57px;
	background-color: var(--white);
}

@media (max-width: 1399px) {
	.contact-wrapper .contact-content {
		padding: 30px;
	}
}

.contact-wrapper .contact-content .contact-form .form-clt span {
	color: var(--header);
	margin-bottom: 10px;
	display: inline-block;
	text-transform: capitalize;
	font-weight: 500;
}

.contact-wrapper .contact-content .contact-form .form-clt input,
.contact-wrapper .contact-content .contact-form .form-clt textarea {
	border-radius: 10px;
	border: none;
	background-color: var(--white);
	border: 1px solid rgba(47, 47, 47, 0.1);
	line-height: 1;
	padding: 14px 25px;
	width: 100%;
	text-transform: capitalize;
	color: var(--text);
	outline: none;
}

.contact-wrapper .contact-content .contact-form .form-clt textarea {
	padding-bottom: 0px;
	resize: none;
}

.contact-wrapper .contact-map iframe {
	width: 100%;
	height: 862px;
	border-radius: 10px;
}

@media (max-width: 1399px) {
	.contact-wrapper .contact-map iframe {
		height: 800px;
	}
}

@media (max-width: 991px) {
	.contact-wrapper .contact-map iframe {
		height: 450px;
	}
}

@media (max-width: 575px) {
	.contact-wrapper .contact-map iframe {
		height: 350px;
	}
}

.contact-section {
	position: relative;
}

.contact-section .left-shape {
	position: absolute;
	bottom: 0;
	left: 0;
}

@media (max-width: 1600px) {
	.contact-section .left-shape {
		display: none;
	}
}

.contact-section .maize-shape {
	position: absolute;
	top: 0;
	right: 0;
}

@media (max-width: 1600px) {
	.contact-section .maize-shape {
		display: none;
	}
}

.cta-wrapper {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 80px 75px;
	border-radius: 20px;
	position: relative;
	overflow: hidden;
	margin-bottom: -140px;
	z-index: 999;
}

@media (max-width: 1399px) {
	.cta-wrapper {
		margin-bottom: 100px;
	}
}

@media (max-width: 991px) {
	.cta-wrapper {
		margin-bottom: 80px;
	}
}

.cta-wrapper .tomato {
	position: absolute;
	top: 0;
	right: 360px;
}

.cta-wrapper .tomato img {
	width: 100%;
	height: 100%;
}

@media (max-width: 1399px) {
	.cta-wrapper .tomato {
		display: none;
	}
}

.cta-wrapper .cta-shape {
	position: absolute;
	right: 478px;
	bottom: 25px;
}

@media (max-width: 1399px) {
	.cta-wrapper .cta-shape {
		display: none;
	}
}

@media (max-width: 1399px) {
	.cta-wrapper {
		flex-wrap: wrap;
		gap: 30px;
		padding: 60px;
	}
}

@media (max-width: 991px) {
	.cta-wrapper {
		padding: 50px;
	}
}

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

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

.cta-wrapper .cta-content {
	max-width: 670px;
	width: 100%;
}

.cta-wrapper .cta-content h3 {
	color: var(--white);
	margin-bottom: 15px;
}

.cta-wrapper .cta-content form {
	max-width: 691px;
	width: 100%;
}

.cta-wrapper .cta-content .form-clt {
	position: relative;
}

.cta-wrapper .cta-content .form-clt input {
	width: 100%;
	outline: none;
	border: none;
	background-color: var(--white);
	color: rgb(80, 98, 74);
	line-height: 1;
	padding: 25px 50px;
	border-radius: 10px;
	max-width: 691px;
}

@media (max-width: 470px) {
	.cta-wrapper .cta-content .form-clt input {
		padding: 25px 30px;
	}
}

.cta-wrapper .cta-content .form-clt input::placeholder {
	color: rgb(80, 98, 74);
}

.cta-wrapper .cta-content .form-clt i {
	position: absolute;
	left: 25px;
	top: 28px;
}

@media (max-width: 470px) {
	.cta-wrapper .cta-content .form-clt i {
		left: 10px;
	}
}

.cta-wrapper .cta-content .form-clt .theme-btn {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	background: rgb(47, 47, 47);
	border-top-left-radius: 0;
	border-bottom-left-radius: 0;
}

@media (max-width: 470px) {
	.cta-wrapper .cta-content .form-clt .theme-btn {
		padding: 10px 20px 10px;
	}
}

.cta-wrapper .icon-item {
	display: flex;
	align-items: center;
	gap: 15px;
}

.cta-wrapper .icon-item .icon {
	width: 52px;
	height: 52px;
	line-height: 52px;
	text-align: center;
	background-color: var(--white);
	border-radius: 100px;
	color: var(--theme3);
}

.cta-wrapper .icon-item h3 {
	font-weight: 600;
}

.cta-wrapper .icon-item h3 a {
	color: var(--white);
}

.cta-section {
	position: relative;
	z-index: 99999;
}

@media (max-width: 1399px) {
	.cta-section {
		overflow: hidden;
	}
}

.faq-wrapper-2 .faq-content .progress-wrap {
	margin-top: 30px;
}

.faq-wrapper-2 .faq-content .progress-wrap .pro-items {
	width: 100%;
}

.faq-wrapper-2 .faq-content .progress-wrap .pro-items:not(:last-child) {
	margin-bottom: 30px;
}

.faq-wrapper-2 .faq-content .progress-wrap .pro-items .pro-head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 10px;
}

.faq-wrapper-2 .faq-content .progress-wrap .pro-items .pro-head .title {
	color: var(--white);
	font-weight: 700;
	font-size: 16px;
	text-transform: capitalize;
	font-family: "Instrument Sans", sans-serif;
}

.faq-wrapper-2 .faq-content .progress-wrap .pro-items .pro-head .point {
	font-size: 16px;
	font-weight: 700;
	color: var(--theme2);
}

.faq-wrapper-2 .faq-content .progress-wrap .pro-items .progress {
	background-color: var(--white);
	justify-content: flex-start;
	align-items: center;
	position: relative;
	display: flex;
	height: 10px;
	width: 100%;
	border-radius: 100px;
}

.faq-wrapper-2 .faq-content .progress-wrap .pro-items .progress-value {
	animation: load 3s normal forwards;
	border-radius: 100px;
	background: var(--theme2);
	height: 10px;
	width: 0;
}

.faq-wrapper-2 .faq-content .progress-wrap .pro-items .style-two {
	animation: load2 3s normal forwards;
}

.faq-wrapper-2 .faq-content .progress-wrap .pro-items .style-three {
	animation: load3 3s normal forwards;
}

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

	100% {
		width: 69%;
	}
}

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

	100% {
		width: 80%;
	}
}

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

	100% {
		width: 98%;
	}
}

.faq-wrapper-2 .faq-box {
	margin-left: 20px;
	position: relative;
	z-index: 9;
}

.faq-wrapper-2 .faq-box::before {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	content: "";
	background-color: rgba(250, 247, 240, 0.2);
	top: 20px;
	left: initial;
	right: -20px;
	border-radius: 10px;
	z-index: -1;
}

@media (max-width: 1399px) {
	.faq-wrapper-2 .faq-box::before {
		display: none;
	}
}

.faq-wrapper-2 .faq-box::after {
	position: absolute;
	bottom: 0;
	width: 100%;
	height: 100%;
	content: "";
	background-color: rgba(250, 247, 240, 0.2);
	top: 10px;
	left: initial;
	right: -10px;
	border-radius: 10px;
	z-index: -1;
}

@media (max-width: 1399px) {
	.faq-wrapper-2 .faq-box::after {
		display: none;
	}
}

@media (max-width: 1399px) {
	.faq-wrapper-2 .faq-box {
		margin-left: 0;
	}
}

.faq-wrapper-2 .faq-box .faq-items {
	background-color: rgb(250, 247, 240);
	border-radius: 10px;
	padding: 30px;
}

@media (max-width: 1399px) {
	.faq-wrapper-2 .faq-box .faq-items {
		padding: 20px;
	}
}

.faq-wrapper-2 .faq-box .faq-items .accordion .accordion-item {
	border: none;
	margin-bottom: 25px;
	background: var(--white);
	padding: 0;
	border-radius: 6px !important;
}

.faq-wrapper-2 .faq-box .faq-items .accordion .accordion-item h2 button {
	font-size: 22px;
	line-height: 1;
	font-weight: 700;
	box-shadow: none;
	padding: 24px 20px;
	font-family: "Instrument Sans", sans-serif;
	color: var(--header);
	text-transform: capitalize;
}

@media (max-width: 1399px) {
	.faq-wrapper-2 .faq-box .faq-items .accordion .accordion-item h2 button {
		font-size: 18px;
		padding: 24px 16px;
	}
}

@media (max-width: 575px) {
	.faq-wrapper-2 .faq-box .faq-items .accordion .accordion-item h2 button {
		font-size: 16px;
		padding: 24px 16px;
	}
}

.faq-wrapper-2 .faq-box .faq-items .accordion .accordion-item .accordion-body {
	background-color: var(--theme2);
	border-bottom-left-radius: 6px;
	border-bottom-right-radius: 6px;
	border-top: 1px solid rgba(47, 47, 47, 0.2);
}

.faq-wrapper-2 .faq-box .faq-items .accordion .accordion-item .accordion-body p {
	color: rgb(80, 98, 74);
	line-height: 32px;
	font-weight: 400;
	font-size: 16px;
	text-align: left;
}

@media (max-width: 575px) {
	.faq-wrapper-2 .faq-box .faq-items .accordion .accordion-item .accordion-body p {
		width: 100%;
		font-size: 14px;
		line-height: 28px;
	}
}

.faq-wrapper-2 .faq-box .faq-items .accordion .accordion-button {
	background-color: var(--theme2);
	color: var(--header) !important;
	border-top-left-radius: 6px;
	border-top-right-radius: 6px;
}

.faq-wrapper-2 .faq-box .faq-items .accordion .accordion-button::after {
	display: none;
}

.faq-wrapper-2 .faq-box .faq-items .accordion .accordion-button::before {
	position: absolute;
	content: "+";
	font-family: "Font Awesome 6 Pro";
	font-weight: 700;
	top: 13px;
	right: 22px;
	font-size: 14px;
	text-align: center;
	transition: all 0.4s ease-in-out;
	color: var(--theme2);
	width: 35px;
	height: 35px;
	line-height: 35px;
	border-radius: 100px;
	text-align: center;
	background-color: rgb(47, 47, 47);
}

@media (max-width: 1399px) {
	.faq-wrapper-2 .faq-box .faq-items .accordion .accordion-button::before {
		width: 30px;
		height: 30px;
		line-height: 30px;
	}
}

@media (max-width: 575px) {
	.faq-wrapper-2 .faq-box .faq-items .accordion .accordion-button::before {
		right: 8px;
		width: 25px;
		height: 25px;
		line-height: 25px;
	}
}

.faq-wrapper-2 .faq-box .faq-items .accordion .accordion-button.collapsed {
	background-color: transparent;
	color: var(--header) !important;
}

.faq-wrapper-2 .faq-box .faq-items .accordion .accordion-button.collapsed::before {
	content: "\f068";
	font-family: "Font Awesome 6 Pro";
	color: var(--header);
	background-color: rgba(245, 216, 62, 0.2);
}

.faq-wrapper-3 .faq-content {
	margin-left: 60px;
}

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

.faq-wrapper-3 .faq-content .text {
	max-width: 604px;
	margin-top: 15px;
	margin-bottom: 40px;
}

@media (max-width: 1399px) {
	.faq-wrapper-3 .faq-content .text {
		margin-bottom: 30px;
	}
}

.faq-wrapper-3 .faq-content .theme-btn {
	border: 1px solid rgb(17, 162, 27);
	color: var(--theme3);
	background-color: transparent;
}

.faq-wrapper-3 .faq-content .theme-btn::before {
	background-color: var(--theme3);
}

.faq-wrapper-3 .faq-content .theme-btn::after {
	background-color: rgba(17, 162, 27, 0.3);
}

.faq-wrapper-3 .faq-content .theme-btn:hover {
	color: var(--white);
}

.faq-wrapper-3 .faq-contentt {
	margin-left: 40px;
}

@media (max-width: 1399px) {
	.faq-wrapper-3 .faq-contentt {
		margin-left: 0;
	}
}

.faq-wrapper-3 .faq-contentt .faq-image-item {
	display: flex;
	align-items: start;
	gap: 55px;
	margin-top: 50px;
	margin-left: 48px;
}

@media (max-width: 1399px) {
	.faq-wrapper-3 .faq-contentt .faq-image-item {
		margin-left: 0;
		margin-top: 30px;
		gap: 20px;
	}
}

@media (max-width: 991px) {
	.faq-wrapper-3 .faq-contentt .faq-image-item {
		flex-wrap: wrap;
		gap: 30px;
	}
}

.faq-wrapper-3 .faq-contentt .faq-image-item .faq-image {
	margin-top: 0;
}

@media (max-width: 991px) {
	.faq-wrapper-3 .faq-contentt .faq-image-item .faq-image {
		flex-basis: 100%;
	}
}

.faq-wrapper-3 .faq-contentt .faq-image-item .faq-image img {
	width: 100%;
	height: 100%;
	border-radius: 10px;
}

.faq-wrapper-3 .faq-contentt .faq-image-item .faq-image.style-2 {
	margin-top: 70px;
}

@media (max-width: 1399px) {
	.faq-wrapper-3 .faq-contentt .faq-image-item .faq-image.style-2 {
		margin-top: 0;
	}
}

.faq-wrapper-3 .faq-box {
	margin-left: 20px;
	position: relative;
	z-index: 9;
}

@media (max-width: 1399px) {
	.faq-wrapper-3 .faq-box {
		margin-left: 0;
	}
}

.faq-wrapper-3 .faq-box.style-inner {
	background-color: rgba(47, 47, 47, 0.2);
	border: 1px solid rgba(47, 47, 47, 0.2);
	border-radius: 10px;
}

.faq-wrapper-3 .faq-box .faq-items {
	background-color: rgb(255, 255, 255);
	border-radius: 10px;
	padding: 30px 30px 20px;
}

@media (max-width: 1399px) {
	.faq-wrapper-3 .faq-box .faq-items {
		padding: 20px;
	}
}

.faq-wrapper-3 .faq-box .faq-items .accordion .accordion-item {
	border: none;
	margin-bottom: 15px;
	background: var(--white);
	padding: 0;
	border-bottom: 1px solid rgba(47, 47, 47, 0.2);
}

.faq-wrapper-3 .faq-box .faq-items .accordion .accordion-item.border-none {
	border-bottom: none;
}

.faq-wrapper-3 .faq-box .faq-items .accordion .accordion-item h2 button {
	font-size: 22px;
	line-height: 1;
	font-weight: 700;
	box-shadow: none;
	padding: 24px 20px;
	font-family: "Instrument Sans", sans-serif;
	color: var(--header);
	text-transform: capitalize;
}

@media (max-width: 1399px) {
	.faq-wrapper-3 .faq-box .faq-items .accordion .accordion-item h2 button {
		font-size: 18px;
		padding: 24px 16px;
	}
}

@media (max-width: 575px) {
	.faq-wrapper-3 .faq-box .faq-items .accordion .accordion-item h2 button {
		font-size: 16px;
		padding: 24px 16px;
		line-height: 130%;
	}
}

.faq-wrapper-3 .faq-box .faq-items .accordion .accordion-item .accordion-body {
	background-color: rgb(47, 47, 47);
	border-bottom-left-radius: 6px;
	border-bottom-right-radius: 6px;
	border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.faq-wrapper-3 .faq-box .faq-items .accordion .accordion-item .accordion-body p {
	color: rgb(255, 255, 255);
	line-height: 32px;
	font-weight: 400;
	font-size: 16px;
	text-align: left;
}

@media (max-width: 575px) {
	.faq-wrapper-3 .faq-box .faq-items .accordion .accordion-item .accordion-body p {
		width: 100%;
		font-size: 14px;
		line-height: 28px;
	}
}

.faq-wrapper-3 .faq-box .faq-items .accordion .accordion-button {
	background-color: rgb(47, 47, 47);
	color: var(--white) !important;
	border-top-left-radius: 6px;
	border-top-right-radius: 6px;
	border-bottom: none;
}

.faq-wrapper-3 .faq-box .faq-items .accordion .accordion-button::after {
	display: none;
}

.faq-wrapper-3 .faq-box .faq-items .accordion .accordion-button::before {
	position: absolute;
	content: "\f068";
	font-family: "Font Awesome 6 Pro";
	font-weight: 700;
	top: 13px;
	right: 22px;
	font-size: 14px;
	text-align: center;
	transition: all 0.4s ease-in-out;
	color: var(--white);
	width: 35px;
	height: 35px;
	line-height: 35px;
	border-radius: 100px;
	text-align: center;
	background-color: var(--theme3);
}

@media (max-width: 1399px) {
	.faq-wrapper-3 .faq-box .faq-items .accordion .accordion-button::before {
		width: 30px;
		height: 30px;
		line-height: 30px;
	}
}

@media (max-width: 575px) {
	.faq-wrapper-3 .faq-box .faq-items .accordion .accordion-button::before {
		right: 8px;
		width: 25px;
		height: 25px;
		line-height: 25px;
	}
}

.faq-wrapper-3 .faq-box .faq-items .accordion .accordion-button.collapsed {
	background-color: transparent;
	color: var(--header) !important;
}

.faq-wrapper-3 .faq-box .faq-items .accordion .accordion-button.collapsed::before {
	content: "+";
	font-family: "Font Awesome 6 Pro";
	color: rgb(17, 162, 27);
	background-color: rgba(17, 162, 27, 0.1);
}

.faq-section-2 {
	position: relative;
}

.faq-section-2 .faq-shape {
	position: absolute;
	left: 0;
	bottom: 0;
}

.faq-section-3 {
	position: relative;
	margin: 0 60px;
	border-radius: 20px;
	margin-top: 120px;
}

@media (max-width: 1399px) {
	.faq-section-3 {
		margin: 0 15px;
		margin-top: 100px;
	}
}

@media (max-width: 991px) {
	.faq-section-3 {
		margin-top: 80px;
	}
}

.faq-section-3 .faq-shape {
	position: absolute;
	left: 0;
	bottom: 0;
}

@media (max-width: 1399px) {
	.faq-section-3 .faq-shape {
		display: none;
	}
}

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

@media (max-width: 1600px) {
	.faq-section-3 .drone-shape {
		max-width: 500px;
	}

	.faq-section-3 .drone-shape img {
		width: 100%;
		height: 100%;
	}
}

@media (max-width: 1399px) {
	.faq-section-3 .drone-shape {
		display: none;
	}
}

.faq-inner-section {
	position: relative;
	z-index: 9;
}

.faq-inner-section .faq-shape {
	position: absolute;
	left: -70px;
	z-index: -1;
	bottom: 120px;
}

@media (max-width: 1600px) {
	.faq-inner-section .faq-shape {
		display: none;
	}
}

.faq-itemss {
	margin-top: 30px;
	text-align: center;
}

.faq-itemss .accordion .accordion-item {
	border: none;
	margin-bottom: 25px;
	background: var(--bg3);
	padding: 0;
	border-radius: 8px !important;
}

.faq-itemss .accordion .accordion-item h2 button {
	font-size: 24px;
	line-height: 1;
	font-weight: 600;
	box-shadow: none;
	border-top-left-radius: 8px !important;
	border-top-right-radius: 8px !important;
	padding: 24px 20px;
	font-family: "Instrument Sans", sans-serif;
	color: var(--header);
	text-transform: capitalize;
}

@media (max-width: 1399px) {
	.faq-itemss .accordion .accordion-item h2 button {
		font-size: 20px;
		padding: 24px 16px;
	}
}

@media (max-width: 575px) {
	.faq-itemss .accordion .accordion-item h2 button {
		font-size: 16px;
		padding: 24px 16px;
	}
}

.faq-itemss .accordion .accordion-item .accordion-body p {
	color: var(--text);
	line-height: 32px;
	font-weight: 400;
	font-size: 16px;
	text-align: left;
}

@media (max-width: 575px) {
	.faq-itemss .accordion .accordion-item .accordion-body p {
		width: 100%;
		font-size: 14px;
		line-height: 28px;
	}
}

.faq-itemss .accordion .accordion-button {
	background-color: var(--theme3);
	color: var(--white) !important;
}

.faq-itemss .accordion .accordion-button::after {
	display: none;
}

.faq-itemss .accordion .accordion-button::before {
	position: absolute;
	content: "+";
	font-family: "Font Awesome 6 Pro";
	font-weight: 700;
	top: 13px;
	right: 22px;
	font-size: 14px;
	text-align: center;
	transition: all 0.4s ease-in-out;
	color: var(--theme3);
	width: 35px;
	height: 35px;
	line-height: 35px;
	border-radius: 100px;
	text-align: center;
	background-color: var(--white);
}

@media (max-width: 1399px) {
	.faq-itemss .accordion .accordion-button::before {
		width: 30px;
		height: 30px;
		line-height: 30px;
	}
}

.faq-itemss .accordion .accordion-button.collapsed {
	background-color: transparent;
	color: var(--header) !important;
}

.faq-itemss .accordion .accordion-button.collapsed::before {
	content: "\f068";
	font-family: "Font Awesome 6 Pro";
	color: var(--white);
	background-color: var(--theme3);
}

.feature-card-item {
	background-color: var(--white);
	border-radius: 20px;
	padding: 30px;
}

.feature-card-item.inner-page {
	background-color: rgb(243, 250, 243);
}

.feature-card-item.inner-page .content .plus-icon::before {
	background-color: var(--white);
}

.feature-card-item .feature-image {
	position: relative;
	overflow: hidden;
	border-radius: 20px;
}

.feature-card-item .feature-image::before {
	position: absolute;
	top: 0;
	left: -85%;
	z-index: 99;
	display: block;
	content: "";
	width: 50%;
	height: 100%;
	background: -o-linear-gradient(right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.7) 100%);
	background: -webkit-gradient(linear, left top, right top, from(rgba(255, 255, 255, 0)), to(rgba(255, 255, 255, 0.7)));
	background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.7) 100%);
	-webkit-transform: skewX(-25deg);
	-ms-transform: skewX(-25deg);
	transform: skewX(-25deg);
}

.feature-card-item .feature-image .icon {
	width: 94px;
	height: 94px;
	line-height: 94px;
	text-align: center;
	border-radius: 100%;
	background-color: var(--white);
	position: absolute;
	left: 30px;
	bottom: 30px;
	display: inline-block;
	transition: all 0.4s ease-in-out;
}

.feature-card-item .feature-image .icon img {
	width: initial;
	height: initial;
	display: initial;
}

.feature-card-item .feature-image img {
	width: 100%;
	height: 100%;
	border-radius: 20px;
	display: block;
	transform: scale(1);
	transition: transform 1.4s cubic-bezier(0.19, 1, 0.22, 1);
	will-change: transform;
}

.feature-card-item .content {
	margin-top: 30px;
}

.feature-card-item .content h3 {
	margin-bottom: 10px;
}

.feature-card-item .content h3 a {
	background-position: 0 95%;
	background-repeat: no-repeat;
	background-size: 0% 2px;
	display: inline;
}

.feature-card-item .content h3 a:hover {
	color: var(--theme);
	background-size: 100% 2px;
	background-image: linear-gradient(180deg, var(--theme) 0%, var(--theme) 100%);
}

.feature-card-item .content p {
	max-width: 384px;
	margin-bottom: 30px;
}

.feature-card-item .content .plus-icon {
	position: relative;
	margin-left: 15px;
	color: var(--theme);
}

.feature-card-item .content .plus-icon i {
	position: relative;
	z-index: 999;
}

.feature-card-item .content .plus-icon span {
	opacity: 0;
	visibility: hidden;
	display: inline-block;
	margin-left: 5px;
}

.feature-card-item .content .plus-icon::before {
	position: absolute;
	content: "";
	top: 50%;
	left: 8%;
	transform: translate(-50%, -50%);
	width: 52px;
	height: 52px;
	line-height: 52px;
	text-align: center;
	border-radius: 50%;
	background-color: rgba(200, 67, 58, 0.1);
	color: var(--theme);
	border-radius: 100px;
	transition: all 0.4s ease-in-out;
}

.feature-card-item .content .plus-icon:hover {
	color: var(--white);
}

.feature-card-item .content .plus-icon:hover span {
	opacity: 1;
	visibility: visible;
	color: var(--white);
	position: relative;
	z-index: 999;
}

.feature-card-item .content .plus-icon:hover::before {
	width: 150px;
	left: 51%;
	background-color: var(--theme3);
}

.feature-card-item .content .plus-icon.style-theme {
	color: var(--theme3);
}

.feature-card-item .content .plus-icon.style-theme:hover {
	color: var(--white);
}

.feature-card-item:hover .feature-image img {
	transform: scale(1.18);
}

.feature-card-item:hover .feature-image::before {
	-webkit-animation: shine 1s;
	animation: shine 1s;
}

.feature-card-item:hover .feature-image .icon {
	transform: rotateY(180deg);
	display: inline-block;
}

.feature-card-item:hover .feature-image .icon img {
	transform: scale(initial);
}

.why-choose-us-section {
	position: relative;
	margin: 0 30px;
	border-radius: 20px;
}

.why-choose-us-section::before {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	content: "";
	background-color: rgba(79, 127, 58, 0.8);
	border-radius: 20px;
}

@media (max-width: 1399px) {
	.why-choose-us-section {
		overflow: hidden;
		margin: 0 0;
	}
}

.why-choose-us-section .choose-us-slider {
	margin-right: -410px;
	margin-top: 48px;
	padding-bottom: 60px;
}

@media (max-width: 1399px) {
	.why-choose-us-section .choose-us-slider {
		padding-bottom: 30px;
		margin-top: 30px;
		margin-right: 0;
	}
}

.why-choose-us-section .content-item .content {
	text-align: center;
	margin: 0 auto;
	max-width: 983px;
	border-top: 1px solid rgba(255, 255, 255, 0.2);
	border-bottom: 1px solid rgba(255, 255, 255, 0.2);
	padding: 30px 0;
	position: relative;
}

.why-choose-us-section .content-item .content span {
	font-size: 24px;
	font-weight: 600;
	color: var(--white);
	position: relative;
	text-align: center;
	margin: 0 auto;
	font-style: italic;
}

@media (max-width: 1399px) {
	.why-choose-us-section .content-item .content span {
		font-size: 20px;
	}
}

@media (max-width: 991px) {
	.why-choose-us-section .content-item .content span {
		font-size: 16px;
	}
}

.why-choose-us-section .content-item .choose-us-btn-item {
	display: flex;
	align-items: center;
	gap: 44px;
	position: relative;
	justify-content: center;
	margin-top: 60px;
}

@media (max-width: 1399px) {
	.why-choose-us-section .content-item .choose-us-btn-item {
		flex-wrap: wrap;
		gap: 25px;
		margin-top: 30px;
	}
}

@media (max-width: 470px) {
	.why-choose-us-section .content-item .choose-us-btn-item {
		flex-wrap: initial;
		gap: 10px;
	}
}

.why-choose-us-section .content-item .choose-us-btn-item .theme-btn {
	border: 1px solid rgb(255, 255, 255);
	background-color: transparent;
}

@media (max-width: 470px) {
	.why-choose-us-section .content-item .choose-us-btn-item .theme-btn {
		padding: 10px 25px 10px;
	}
}

.why-choose-us-section .content-item .choose-us-btn-item .theme-btn::before {
	background-color: var(--white);
}

.why-choose-us-section .content-item .choose-us-btn-item .theme-btn::after {
	background-color: rgba(255, 255, 255, 0.3);
}

.why-choose-us-section .content-item .choose-us-btn-item .theme-btn:hover {
	border: 1px solid var(--white);
	color: var(--theme);
}

.why-choose-us-section .content-item .choose-us-btn-item .icon-item {
	display: flex;
	align-items: center;
	gap: 15px;
}

@media (max-width: 470px) {
	.why-choose-us-section .content-item .choose-us-btn-item .icon-item {
		gap: 8px;
	}
}

.why-choose-us-section .content-item .choose-us-btn-item .icon-item .icon {
	width: 52px;
	height: 52px;
	line-height: 52px;
	text-align: center;
	background-color: var(--white);
	border-radius: 100px;
	color: var(--theme3);
}

@media (max-width: 470px) {
	.why-choose-us-section .content-item .choose-us-btn-item .icon-item .icon {
		width: 48px;
		height: 48px;
		line-height: 48px;
	}
}

.why-choose-us-section .content-item .choose-us-btn-item .icon-item h3 {
	font-weight: 600;
}

@media (max-width: 470px) {
	.why-choose-us-section .content-item .choose-us-btn-item .icon-item h3 {
		font-size: 16px;
	}
}

.why-choose-us-section .content-item .choose-us-btn-item .icon-item h3 a {
	color: var(--white);
}

.why-choose-us-card {
	background-color: var(--white);
	border-radius: 10px;
	padding: 30px;
	position: relative;
	z-index: 9;
	transition: all 0.4s ease-in-out;
}

.why-choose-us-card::after {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: var(--theme);
	border-radius: 10px;
	z-index: -1;
	transform: scale(1, 0);
	transition: transform 500ms ease;
	transform-origin: bottom center;
}

@media (max-width: 1600px) {
	.why-choose-us-card h3 {
		font-size: 20px;
	}
}

.why-choose-us-card p {
	max-width: 330px;
	margin-top: 10px;
}

.why-choose-us-card .shape-image {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: -1;
	transition: all 0.4s ease-in-out;
	opacity: 0;
	visibility: hidden;
}

.why-choose-us-card .shape-image img {
	width: 100%;
	height: 100%;
	border-radius: 10px;
}

.why-choose-us-card:hover::after {
	transform: scale(1, 1);
	transform-origin: top center;
}

.why-choose-us-card:hover h3 {
	color: var(--white);
}

.why-choose-us-card:hover p {
	color: var(--white);
}

.why-choose-us-card:hover .shape-image {
	opacity: 1;
	visibility: visible;
	z-index: 9999;
}

.why-choose-us-wrapper-2 .why-choose-us-image {
	position: relative;
	z-index: 9;
	max-width: 628px;
}

@media (max-width: 1399px) {
	.why-choose-us-wrapper-2 .why-choose-us-image {
		max-width: initial;
	}
}

.why-choose-us-wrapper-2 .why-choose-us-image .circle-shape {
	position: absolute;
	left: -80px;
	top: 0;
	z-index: -1;
}

.why-choose-us-wrapper-2 .why-choose-us-image .circle-shape img {
	animation: rotateCircle 10s linear infinite;
}

@media (max-width: 1600px) {
	.why-choose-us-wrapper-2 .why-choose-us-image .circle-shape {
		left: 0;
	}
}

@media (max-width: 1399px) {
	.why-choose-us-wrapper-2 .why-choose-us-image .circle-shape {
		display: none;
	}
}

.why-choose-us-wrapper-2 .why-choose-us-image img {
	width: 100%;
	height: 100%;
	filter: drop-shadow(0px 4px 80px rgba(47, 47, 47, 0.3));
}

.why-choose-us-wrapper-2 .why-choose-us-content .text {
	margin-top: 15px;
	max-width: 690px;
}

.why-choose-us-wrapper-2 .why-choose-us-content .choose-us-box {
	display: flex;
	align-items: center;
	justify-content: space-between;
	background: rgba(255, 255, 255, 0.5);
	border-radius: 10px;
	padding: 20px;
	margin-top: 30px;
	margin-bottom: 50px;
	border: 1px solid var(--white);
}

@media (max-width: 1399px) {
	.why-choose-us-wrapper-2 .why-choose-us-content .choose-us-box {
		margin-bottom: 30px;
		flex-wrap: wrap;
		gap: 15px;
	}
}

.why-choose-us-wrapper-2 .why-choose-us-content .choose-us-box .content h3 {
	font-size: 20px;
	font-weight: 700;
	line-height: 150%;
	text-transform: capitalize;
}

.why-choose-us-wrapper-2 .why-choose-us-content .choose-us-box .content span {
	max-width: 290px;
	display: inline-block;
	margin-top: 5px;
}

.why-choose-us-wrapper-2 .why-choose-us-content .choose-us-box .content.style-2 {
	border-left: 1px solid rgba(47, 47, 47, 0.2);
	padding-left: 30px;
}

@media (max-width: 1399px) {
	.why-choose-us-wrapper-2 .why-choose-us-content .choose-us-box .content.style-2 {
		padding-left: 0;
		border: none;
	}
}

.why-choose-us-wrapper-2 .why-choose-us-content .choose-us-btn-item {
	display: flex;
	align-items: center;
	gap: 44px;
	position: relative;
}

@media (max-width: 1399px) {
	.why-choose-us-wrapper-2 .why-choose-us-content .choose-us-btn-item {
		flex-wrap: wrap;
		gap: 25px;
	}
}

.why-choose-us-wrapper-2 .why-choose-us-content .choose-us-btn-item .theme-btn {
	border: 1px solid rgb(47, 47, 47);
	background-color: transparent;
	color: rgb(47, 47, 47);
}

.why-choose-us-wrapper-2 .why-choose-us-content .choose-us-btn-item .theme-btn:hover {
	border: 1px solid var(--header);
	color: var(--theme2);
}

.why-choose-us-wrapper-2 .why-choose-us-content .choose-us-btn-item .icon-item {
	display: flex;
	align-items: center;
	gap: 15px;
}

@media (max-width: 470px) {
	.why-choose-us-wrapper-2 .why-choose-us-content .choose-us-btn-item .icon-item {
		gap: 8px;
	}
}

.why-choose-us-wrapper-2 .why-choose-us-content .choose-us-btn-item .icon-item .icon {
	width: 47px;
	height: 47px;
	line-height: 47px;
	text-align: center;
	background-color: var(--white);
	border-radius: 100px;
	color: var(--theme2);
}

.why-choose-us-wrapper-2 .why-choose-us-content .choose-us-btn-item .icon-item .cont h4 {
	font-size: 14px;
	font-weight: 700;
	margin-bottom: 5px;
}

.why-choose-us-wrapper-2 .why-choose-us-content .choose-us-btn-item .icon-item .cont h5 {
	font-weight: 700;
	font-size: 16px;
}

.why-choose-us-wrapper-2 .why-choose-us-content .choose-us-btn-item .icon-item .cont h5 a {
	color: var(--header);
}

.why-choose-us-section-2 {
	position: relative;
}

.why-choose-us-section-2 .left-shape {
	position: absolute;
	left: 0;
	bottom: 0;
}

@media (max-width: 1399px) {
	.why-choose-us-section-2 .left-shape {
		display: none;
	}
}

.why-choose-us-section-2 .right-shape {
	position: absolute;
	right: 0;
	top: 0;
}

@media (max-width: 1399px) {
	.why-choose-us-section-2 .right-shape {
		display: none;
	}
}

.why-choose-us-section-2 .maize-3 {
	position: absolute;
	bottom: 0;
	left: 430px;
	z-index: 999;
}

@media (max-width: 1600px) {
	.why-choose-us-section-2 .maize-3 {
		left: 205px;
	}
}

@media (max-width: 1399px) {
	.why-choose-us-section-2 .maize-3 {
		display: none;
	}
}

.feature-box-item-2 {
	background: var(--white);
	box-shadow: 0px 4px 60px rgba(79, 127, 58, 0.15);
	border-radius: 10px;
	padding: 30px;
	position: relative;
	z-index: 9;
	transition: all 0.5s ease;
	overflow: hidden;
}

.feature-box-item-2::before {
	position: absolute;
	content: "";
	left: 0;
	top: 0;
	right: 0;
	bottom: 0;
	opacity: 0;
	transform: scale(1, 0.3);
	background-color: var(--theme2);
	transition: all 0.5s ease;
	z-index: -1;
	border-radius: 8px;
}

.feature-box-item-2.active::before {
	opacity: 1;
	transform: scale(1, 1);
}

.feature-box-item-2.active .maize-shape img {
	filter: initial;
}

.feature-box-item-2.active .masking-shape>img {
	opacity: 0;
	visibility: hidden;
}

.feature-box-item-2.active .masking-shape .masking-2 {
	opacity: 1;
	visibility: visible;
}

.feature-box-item-2.active .masking-shape .icon img {
	filter: brightness(0) invert(1);
}

.feature-box-item-2 .maize-shape {
	position: absolute;
	right: 0;
	top: 0;
}

.feature-box-item-2 .maize-shape img {
	filter: blur(5px);
	transition: all 0.5s ease;
}

@media (max-width: 1399px) {
	.feature-box-item-2 .maize-shape img {
		width: 160px;
	}
}

.feature-box-item-2 .masking-shape {
	margin-bottom: 30px;
	position: relative;
	display: inline-block;
	z-index: 5;
}

.feature-box-item-2 .masking-shape>img {
	display: block;
	position: relative;
	z-index: 1;
	opacity: 1;
	visibility: visible;
	transition: all 0.3s ease;
}

.feature-box-item-2 .masking-shape .masking-2 {
	position: absolute;
	inset: 0;
	z-index: 3;
	opacity: 0;
	visibility: hidden;
	transition: all 0.3s ease;
}

.feature-box-item-2 .masking-shape .masking-2 img {
	width: 100%;
	height: 100%;
	display: block;
}

.feature-box-item-2 .masking-shape .icon {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: 4;
}

.feature-box-item-2 .content p {
	max-width: 390px;
	margin-top: 10px;
}

.feature-section-2 {
	margin-bottom: 60px;
}

@media (max-width: 1399px) {
	.feature-section-2 {
		margin-bottom: 100px;
	}
}

@media (max-width: 991px) {
	.feature-section-2 {
		margin-bottom: 80px;
	}
}

.drone-video-wrapper {
	padding: 435px 60px 60px;
	border-radius: 20px;
	position: relative;
}

@media (max-width: 1399px) {
	.drone-video-wrapper {
		padding: 60px;
	}
}

@media (max-width: 991px) {
	.drone-video-wrapper {
		padding: 50px;
	}
}

@media (max-width: 767px) {
	.drone-video-wrapper {
		padding: 40px;
	}
}

@media (max-width: 575px) {
	.drone-video-wrapper {
		padding: 30px 30px 30px;
	}
}

.drone-video-wrapper .video-btn {
	width: 71px;
	height: 71px;
	line-height: 71px;
	display: inline-block;
	text-align: center;
	border-radius: 100px;
	background-color: var(--theme3);
	color: var(--white);
	position: absolute;
	z-index: 9;
	top: 40%;
	left: 50%;
	transform: translate(-50%, -50%);
	font-size: 17px;
}

@media (max-width: 1399px) {
	.drone-video-wrapper .video-btn {
		display: none;
	}
}

@media (max-width: 1399px) {
	.drone-video-wrapper .video-btn.ripple-2::before {
		display: none;
	}

	.drone-video-wrapper .video-btn.ripple-2::after {
		display: none;
	}
}

.drone-video-wrapper .video-btn::before {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	content: "";
	background: rgba(255, 255, 255, 0.25);
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 118px;
	height: 118px;
	border-radius: 100px;
}

.drone-video-wrapper .video-btn::after {
	position: absolute;
	content: "";
	background: rgba(255, 255, 255, 0.25);
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 91px;
	height: 91px;
	border-radius: 100px;
}

.drone-video-wrapper .drone-video {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
}

.drone-video-wrapper .drone-video video {
	width: 100%;
	height: 650px;
	object-fit: cover;
	border-radius: 20px;
}

.drone-video-wrapper .drone-video-content {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

@media (max-width: 1399px) {
	.drone-video-wrapper .drone-video-content {
		flex-wrap: wrap;
		gap: 30px;
	}
}

.drone-video-wrapper .drone-video-content .tag-list-item {
	display: flex;
	align-items: center;
	gap: 15px;
	position: relative;
	padding: 19px 14px;
	z-index: 9;
	margin-top: 50px;
}

@media (max-width: 1399px) {
	.drone-video-wrapper .drone-video-content .tag-list-item {
		flex-wrap: wrap;
		padding: 0;
	}
}

@media (max-width: 1399px) {
	.drone-video-wrapper .drone-video-content .tag-list-item {
		margin-top: 0;
	}
}

.drone-video-wrapper .drone-video-content .tag-list-item::before {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	content: "";
	background-color: rgb(17, 162, 27);
	border-radius: 100px 0px 0px 100px;
	z-index: -1;
	width: 461px;
}

@media (max-width: 1399px) {
	.drone-video-wrapper .drone-video-content .tag-list-item::before {
		display: none;
	}
}

.drone-video-wrapper .drone-video-content .tag-list-item span {
	background-color: var(--white);
	color: var(--theme3);
	padding: 2px 10px;
	border-radius: 100px;
	font-weight: 500;
}

.process-card {
	border-radius: 10px;
	padding: 20px 20px;
	text-align: center;
	transition: all 0.3s ease;
	position: relative;
	box-shadow: 0px 4px 60px rgba(17, 162, 27, 0.12);
	background-color: var(--white);
	margin-top: 30px;
}

.process-card::after {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: var(--theme3);
	border-radius: 10px;
	z-index: -1;
	transform: scale(1, 0);
	transition: transform 500ms ease;
	transform-origin: bottom center;
}

.process-card.active::after {
	transform: scale(1, 1);
	transform-origin: top center;
	z-index: 9;
}

.process-card.active .card-icon {
	position: relative;
	z-index: 999;
}

.process-card.active .card-title {
	color: var(--white);
	position: relative;
	z-index: 999;
}

.process-card.active .card-description {
	color: var(--white);
	position: relative;
	z-index: 999;
}

.process-card.card-style {
	/* margin-top: 120px; */
}

@media (max-width: 1399px) {
	.process-card.card-style {
		margin-top: 30px;
	}
}

.process-card .card-icon {
	/* width: 164px; */
	/* height: 164px; */
	line-height: 164px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	/* border: 1px solid rgb(17, 162, 27); */
	background-color: var(--white);
	margin: 0 auto;
	position: relative;
}

@media (max-width: 1399px) {
	.process-card .card-icon {
		width: 140px;
		height: 140px;
		line-height: 140px;
	}
}

.product-details-content-yi {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

.product-details-content-yi h3 {
	width: 100%;
}

.process-card .card-icon span {
	color: rgb(17, 162, 27);
	width: 40px;
	height: 40px;
	line-height: 40px;
	text-align: center;
	border-radius: 100px;
	border: 1px solid rgb(17, 162, 27);
	position: absolute;
	left: 8px;
	bottom: 5px;
	background: var(--white);
}

.process-card .card-title {
	font-size: 18px;
	font-weight: 700;
	margin-bottom: 15px;
	margin-top: 20px;
	color: var(--header);
	font-weight: 700;
	font-family: "Instrument Sans", sans-serif;
}

.process-card .card-description {
	font-size: 16px;
	line-height: 1.7;
	color: rgb(80, 98, 74);
	margin: 0;
}

.process-card:hover {
	transform: translateY(-10px);
}

.drone-specification-wrapper {
	border-top: 1px solid rgba(255, 255, 255, 0.2);
	border-bottom: 1px solid rgba(255, 255, 255, 0.2);
	padding-bottom: 60px;
	padding-top: 48px;
	margin-top: 48px;
	height: 570px;
	overflow: hidden;
}

.drone-specification-wrapper .swiper-slide-next .drone-specification-item {
	transform: translateY(160px);
	transition: all 0.4s ease-in-out;
}

.drone-specification-wrapper .swiper-slide-prev .drone-specification-item {
	transform: translateY(160px);
	transition: all 0.4s ease-in-out;
}

.drone-specification-wrapper .arrow-button {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-top: 40px;
	justify-content: center;
}

.drone-specification-wrapper .arrow-button .array-prev,
.drone-specification-wrapper .arrow-button .array-next {
	width: 48px;
	height: 48px;
	line-height: 48px;
	text-align: center;
	border-radius: 100px;
	background-color: var(--white);
	transition: all 0.4s ease-in-out;
	border: 1px solid var(--white);
}

.drone-specification-wrapper .arrow-button .array-prev img,
.drone-specification-wrapper .arrow-button .array-next img {
	transition: all 0.4s ease-in-out;
}

.drone-specification-wrapper .arrow-button .array-prev:hover,
.drone-specification-wrapper .arrow-button .array-next:hover {
	background-color: var(--theme3);
	border: 1px solid rgba(255, 255, 255, 0.2);
}

.drone-specification-wrapper .arrow-button .array-prev:hover img,
.drone-specification-wrapper .arrow-button .array-next:hover img {
	filter: brightness(0) invert(1);
}

.drone-specification-wrapper .drone-specification-item {
	padding: 30px;
	border-radius: 10px;
	text-align: center;
	transition: all 0.4s ease-in-out;
}

.drone-specification-wrapper .drone-specification-item .drone-image {
	max-width: 390px;
}

.drone-specification-wrapper .drone-specification-item .drone-image img {
	width: 100%;
	height: 100%;
}

.drone-specification-wrapper .drone-specification-item .drone-content {
	margin-top: 30px;
	opacity: 0;
	visibility: hidden;
	transition: all 0.4s ease-in-out;
	height: 0;
}

.drone-specification-wrapper .drone-specification-item .drone-content h3 {
	color: var(--white);
	margin-bottom: 5px;
}

.drone-specification-wrapper .drone-specification-item .drone-content span {
	font-size: 15px;
	color: var(--white);
}

.drone-specification-wrapper .drone-specification-item .drone-content p {
	color: var(--white);
	margin-top: 10px;
	font-weight: 400;
	max-width: 390px;
}

.drone-specification-section .drone-specification-wrapper .swiper-slide.swiper-slide-active .drone-specification-item {
	background: linear-gradient(180deg, #FFFFFF 0%, rgba(255, 255, 255, 0) 100%);
}

.drone-specification-section .drone-specification-wrapper .swiper-slide.swiper-slide-active .drone-specification-item .drone-content {
	opacity: 1;
	visibility: visible;
	height: initial;
}

.drone-specification-section .section-title-area .right-item {
	display: flex;
	align-items: center;
	gap: 10px;
}

.drone-specification-section .section-title-area .right-item .group-image-item {
	display: flex;
	align-items: center;
}

.drone-specification-section .section-title-area .right-item .group-image-item .group-image img {
	margin-left: 0;
	width: initial;
	height: initial;
	border: 3px solid rgb(17, 162, 27);
	border-radius: 100px;
}

.drone-specification-section .section-title-area .right-item .group-image-item .group-image.style-2 {
	margin-left: -30px;
}

.drone-specification-section .section-title-area .right-item .group-image-item .icon {
	width: 65px;
	height: 65px;
	line-height: 65px;
	text-align: center;
	border-radius: 100px;
	color: var(--white);
	border: 3px solid var(--theme3);
	margin-left: -30px;
	background-color: var(--white);
	position: relative;
}

.drone-specification-section .section-title-area .right-item .group-image-item .icon h3 {
	color: rgb(17, 162, 27);
	font-size: 16px;
	font-weight: 700;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

.drone-specification-section .section-title-area .right-item p {
	color: var(--white);
	font-weight: 500;
	max-width: 136px;
}

.drone-specification-section .gallery-wrapper {
	position: relative;
	width: 100%;
	overflow: hidden;
	cursor: none;
	margin-top: 60px;
}

@media (max-width: 1399px) {
	.drone-specification-section .gallery-wrapper {
		margin-top: 30px;
	}
}

.drone-specification-section .gallery-wrapper .gallery-track {
	display: flex;
	width: max-content;
	transition: transform 0.2s ease-out;
}

@media (max-width: 1399px) {
	.drone-specification-section .gallery-wrapper .gallery-track {
		width: initial;
	}
}

.drone-specification-section .gallery-wrapper .gallery-track .gallery-item {
	min-width: 250px;
	margin: 0 10px;
}

.drone-specification-section .gallery-wrapper .gallery-track .gallery-item img {
	display: block;
	width: 100%;
	border-radius: 10px;
}

.drone-specification-section .gallery-wrapper .drag-circle {
	position: absolute;
	width: 130px;
	height: 130px;
	border-radius: 50%;
	background: var(--white);
	backdrop-filter: blur(5px);
	display: flex;
	align-items: center;
	justify-content: center;
	pointer-events: none;
	transform: translate(-50%, -50%);
	z-index: 10;
	color: var(--theme3);
}

@media (max-width: 1399px) {
	.drone-specification-section .gallery-wrapper .drag-circle {
		width: 100px;
		height: 100px;
	}
}

.drone-specification-section .gallery-wrapper .drag-circle .arrow {
	position: absolute;
	font-size: 20px;
}

.drone-specification-section .gallery-wrapper .drag-circle .arrow.left {
	left: 15px;
	color: var(--theme3);
}

.drone-specification-section .gallery-wrapper .drag-circle .arrow.right {
	right: 15px;
	color: var(--theme3);
}

.drone-specification-section .gallery-wrapper .drag-circle .text {
	user-select: none;
}

.letter-image {
	background-size: cover;
	background-position: 50%;
	-webkit-background-clip: text;
	color: transparent;
	background-image: url(../../assets/img/home-3/text.jpg);
	background-position: 8% 836px;
	background-size: 106% auto;
	font-size: 513px;
	font-weight: 700;
	line-height: 1;
	letter-spacing: -9.6px;
	animation-duration: 1500ms;
	-webkit-animation-duration: 1500ms;
	margin-bottom: 30px;
}

@media (max-width: 1899px) {
	.letter-image {
		font-size: 440px;
	}
}

@media (max-width: 1600px) {
	.letter-image {
		font-size: 380px;
	}
}

@media (max-width: 1399px) {
	.letter-image {
		font-size: 250px;
		text-align: center;
		letter-spacing: initial;
	}
}

@media (max-width: 991px) {
	.letter-image {
		font-size: 180px;
	}
}

@media (max-width: 575px) {
	.letter-image {
		font-size: 90px;
	}
}

.letter-image-section {
	margin: 0 50px;
	margin-bottom: -50px;
	position: relative;
	margin-top: 40px;
}

@media (max-width: 1399px) {
	.letter-image-section {
		margin: 0 30px;
		margin-top: 50px;
		margin-bottom: 70px;
	}
}

@media (max-width: 991px) {
	.letter-image-section {
		margin: 0 15px;
		margin-top: 50px;
		margin-bottom: 70px;
	}
}

.letter-image-section .drone-shape {
	position: absolute;
	left: 50%;
	top: 150%;
	transform: translate(-50%, -50%);
	max-width: 856px;
	margin-top: -220px;
	animation: drone-fly-real 4.5s ease-in-out infinite;
}

@media (max-width: 1600px) {
	.letter-image-section .drone-shape {
		top: 173%;
	}
}

@media (max-width: 1399px) {
	.letter-image-section .drone-shape {
		display: none;
	}
}

.letter-image-section .drone-shape img {
	width: 100%;
	height: 100%;
}

.letter-image-section-2 {
	margin: 0 50px;
	margin-top: 50px;
	margin-bottom: 50px;
}

@media (max-width: 1600px) {
	.letter-image-section-2 {
		margin-top: 65px;
		margin-bottom: 65px;
	}
}

@media (max-width: 1399px) {
	.letter-image-section-2 {
		margin: 0 30px;
		margin-top: 70px;
		margin-bottom: 70px;
	}
}

@media (max-width: 991px) {
	.letter-image-section-2 {
		margin: 0 15px;
		margin-top: 70px;
		margin-bottom: 70px;
	}
}

.counter-inner-wrapper .count-wrap {
	display: flex;
	align-items: center;
	align-items: start;
	justify-content: space-between;
	margin-top: 130px;
}

@media (max-width: 1399px) {
	.counter-inner-wrapper .count-wrap {
		margin-top: 0;
	}
}

@media (max-width: 991px) {
	.counter-inner-wrapper .count-wrap {
		flex-wrap: wrap;
		gap: 30px;
	}
}

.counter-inner-wrapper .count-wrap .count-item-2 h2 {
	font-weight: 600;
	font-size: 200px;
	color: transparent;
	line-height: 94%;
	-webkit-text-stroke: 1px rgb(17, 162, 27);
}

@media (max-width: 1399px) {
	.counter-inner-wrapper .count-wrap .count-item-2 h2 {
		font-size: 90px;
	}
}

.counter-inner-wrapper .count-wrap .count-item-2 p {
	font-size: 24px;
	font-weight: 400;
	color: rgb(47, 47, 47);
	max-width: 318px;
}

@media (max-width: 1399px) {
	.counter-inner-wrapper .count-wrap .count-item-2 p {
		font-size: 18px;
	}
}

.counter-inner-wrapper .count-wrap .count-item-2:hover h2 {
	color: var(--theme3);
}

.counter-inner-wrapper .count-wrap .count-item-2.style-top {
	margin-top: -100px;
}

@media (max-width: 1399px) {
	.counter-inner-wrapper .count-wrap .count-item-2.style-top {
		margin-top: 0;
	}
}

.counter-inner-wrapper .trac-wrap {
	margin-top: -60px;
}

@media (max-width: 1399px) {
	.counter-inner-wrapper .trac-wrap {
		margin-top: 30px;
	}
}

@media (max-width: 991px) {
	.counter-inner-wrapper .trac-wrap {
		margin-top: 0;
	}
}

.counter-inner-wrapper .trac-wrap .tractor-image {
	text-align: center;
	max-width: 491px;
	margin: 0 auto;
}

@media (max-width: 1399px) {
	.counter-inner-wrapper .trac-wrap .tractor-image {
		display: none;
	}
}

@media (max-width: 575px) {
	.counter-inner-wrapper .trac-wrap .tractor-image {
		max-width: 300px;
		margin-left: -10px;
	}
}

.counter-inner-wrapper .trac-wrap .tractor-image img {
	width: 100%;
	height: 100%;
	filter: drop-shadow(0px 4px 100px rgba(17, 162, 27, 0.1));
}

.counter-inner-section {
	position: relative;
}

.counter-inner-section .chili-shape {
	position: absolute;
	bottom: 120px;
	left: 60px;
}

@media (max-width: 1399px) {
	.counter-inner-section .chili-shape {
		display: none;
	}
}

.our-history-wrapper {
	background-color: rgb(245, 246, 244);
	border-radius: 20px;
	display: flex;
	align-items: center;
	gap: 60px;
	padding-left: 1%;
	overflow: hidden;
}

@media (max-width: 1399px) {
	.our-history-wrapper {
		flex-wrap: wrap;
		gap: 30px;
		padding: 30px;
	}
}

.our-history-wrapper .history-image {
	position: relative;
	overflow: hidden;
	width: 51%;
	height: 100%;
}

@media (max-width: 1399px) {
	.our-history-wrapper .history-image {
		/* flex-basis: 100%; */
	}
}

.our-history-wrapper .history-image::after {
	content: "";
	position: absolute;
	width: 200%;
	height: 0%;
	left: 50%;
	top: 50%;
	background-color: rgba(255, 255, 255, 0.3);
	transform: translate(-50%, -50%) rotate(-45deg);
	z-index: 1;
}

.our-history-wrapper .history-image .year-list {
	position: absolute;
	right: 0px;
	top: 80px;
	display: grid;
	gap: 135px;
}

@media (max-width: 1600px) {
	.our-history-wrapper .history-image .year-list {
		gap: 105px;
	}
}

@media (max-width: 1399px) {
	.our-history-wrapper .history-image .year-list {
		display: none;
	}
}

.our-history-wrapper .history-image .year-list h2 {
	color: transparent;
	line-height: 94%;
	-webkit-text-stroke: 1px var(--white);
	transform: rotate(-90deg);
}

.our-history-wrapper .history-image .year-list h2:hover {
	color: var(--white);
}

.our-history-wrapper .history-image .year-list h2.active {
	color: var(--white);
	-webkit-text-stroke: 1px var(--white);
}

.our-history-wrapper .history-image img {
	width: 100%;
	height: 100%;
	border-top-left-radius: 20px;
	border-bottom-left-radius: 20px;
}

@media (max-width: 1399px) {
	.our-history-wrapper .history-image img {
		border-radius: 20px;
	}
}

.our-history-wrapper .history-image:hover::after {
	height: 250%;
	transition: all 600ms linear;
	background-color: transparent;
}

@media (max-width: 1600px) {
	.our-history-wrapper .our-history-content .section-title h2 {
		font-size: 40px;
	}
}

@media (max-width: 1399px) {
	.our-history-wrapper .our-history-content .section-title h2 {
		font-size: 27px;
	}
}

@media (max-width: 1199px) {
	.our-history-wrapper .our-history-content .section-title h2 {
		font-size: 33px;
	}
}

@media (max-width: 991px) {
	.our-history-wrapper .our-history-content .section-title h2 {
		font-size: 35px;
	}
}

@media (max-width: 767px) {
	.our-history-wrapper .our-history-content .section-title h2 {
		font-size: 30px;
	}
}

@media (max-width: 575px) {
	.our-history-wrapper .our-history-content .section-title h2 {
		font-size: 26px;
	}
}

@media (max-width: 470px) {
	.our-history-wrapper .our-history-content .section-title h2 {
		font-size: 26px;
	}
}

.our-history-wrapper .our-history-content .nav {
	display: flex;
	gap: 10px;
	margin-bottom: 30px;
	padding-bottom: 30px;
	margin-top: 30px;
	border-bottom: 1px solid rgba(47, 47, 47, 0.2);
}

@media (max-width: 991px) {
	.our-history-wrapper .our-history-content .nav {
		flex-wrap: wrap;
		gap: 15px;
	}
}

.our-history-wrapper .our-history-content .nav li {
	font-size: 16px;
	font-weight: 700;
}

.our-history-wrapper .our-history-content .nav li .nav-link {
	color: rgb(17, 162, 27);
	transition: all 0.4s ease-in-out;
	padding: 18px 32px;
	background-color: var(--white);
	border-radius: 30px;
	font-family: "Instrument Sans", sans-serif;
	line-height: 1;
	text-transform: capitalize;
}

@media (max-width: 1199px) {
	.our-history-wrapper .our-history-content .nav li .nav-link {
		padding: 15px 24px;
	}
}

.our-history-wrapper .our-history-content .nav li .nav-link.active {
	position: relative;
	background-color: rgb(17, 162, 27);
	color: var(--white);
}

.our-history-wrapper .our-history-content .tab-content .content h3 {
	font-size: 16px;
	font-weight: 700;
	font-family: "Inter", sans-serif;
	margin-bottom: 25px;
}

.our-history-wrapper .our-history-content .tab-content .content p {
	color: rgb(80, 98, 74);
	line-height: 175%;
	font-weight: 400;
	margin-bottom: 20px;
	max-width: 690px;
	text-transform: initial;
}

.our-history-section-3 {
	position: relative;
}

@media (max-width: 1399px) {
	.our-history-section-3 {
		overflow: hidden;
	}
}

.our-history-section-3 .cabage-shape {
	position: absolute;
	right: 50px;
	top: -50px;
	z-index: 999;
}

@media (max-width: 1399px) {
	.our-history-section-3 .cabage-shape {
		display: none;
	}
}

.our-statistics-wrapper .our-statistics-image {
	position: relative;
	overflow: hidden;
}

.our-statistics-wrapper .our-statistics-image::after {
	content: "";
	position: absolute;
	width: 200%;
	height: 0%;
	left: 50%;
	top: 50%;
	background-color: rgba(255, 255, 255, 0.3);
	transform: translate(-50%, -50%) rotate(-45deg);
	z-index: 1;
}

/* .our-statistics-wrapper .our-statistics-image:hover::after {
	height: 250%;
	transition: all 600ms linear;
	background-color: transparent;
} */

.our-statistics-wrapper .our-statistics-image img {
	width: 100%;
	height: 100%;
	border-radius: 10px;
}

.our-statistics-wrapper .our-statistics-content .text {
	max-width: 690px;
	margin-top: 15px;
}

.our-statistics-wrapper .our-statistics-content .our-statistics-card {
	display: flex;
	align-items: center;
	width: 100%;
	justify-content: space-between;
}

@media (max-width: 1399px) {
	.our-statistics-wrapper .our-statistics-content .our-statistics-card {
		gap: 20px;
	}
}

@media (max-width: 991px) {
	.our-statistics-wrapper .our-statistics-content .our-statistics-card {
		flex-wrap: wrap;
	}
}

.our-statistics-wrapper .our-statistics-content .our-statistics-card .statistics-card {
	background-color: var(--white);
	border-radius: 10px;
	padding: 22px;
	margin-top: 10px;
	width: 100%;
}

@media (max-width: 1399px) {
	.our-statistics-wrapper .our-statistics-content .our-statistics-card .statistics-card {
		padding: 20px;
	}
}

@media (max-width: 991px) {
	.our-statistics-wrapper .our-statistics-content .our-statistics-card .statistics-card {
		padding: 28px;
	}
}

@media (max-width: 767px) {
	.our-statistics-wrapper .our-statistics-content .our-statistics-card .statistics-card {
		width: 100%;
	}
}

.our-statistics-wrapper .our-statistics-content .our-statistics-card .statistics-card h3 {
	font-size: 60px;
	font-weight: 700;
	color: transparent;
	line-height: 94%;
	-webkit-text-stroke: 1px rgb(17, 162, 27);
}

.our-statistics-wrapper .our-statistics-content .our-statistics-card .statistics-card p {
	margin-top: 10px;
	max-width: 100%;
	color: rgb(80, 98, 74);
	font-weight: 400;
}

@media (max-width: 1399px) {
	.our-statistics-wrapper .our-statistics-content .our-statistics-card .statistics-card p {
		font-size: 14px;
	}
}

@media (max-width: 991px) {
	.our-statistics-wrapper .our-statistics-content .our-statistics-card .statistics-card p {
		font-size: 16px;
	}
}

.mask-image-section {
	margin: 0 60px;
}

@media (max-width: 1399px) {
	.mask-image-section {
		margin: 0 30px;
	}
}

@media (max-width: 575px) {
	.mask-image-section {
		margin: 0 15px;
	}
}

.mask-image-section .mask-image img {
	width: 100%;
	height: 100%;
}

.our-impact-wrapper {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

@media (max-width: 1399px) {
	.our-impact-wrapper {
		flex-wrap: wrap;
		gap: 30px;
	}
}

.our-impact-wrapper h2 {
	font-size: 40px;
	color: var(--white);
}

@media (max-width: 1399px) {
	.our-impact-wrapper h2 {
		font-size: 35px;
	}
}

@media (max-width: 991px) {
	.our-impact-wrapper h2 {
		font-size: 30px;
	}
}

@media (max-width: 575px) {
	.our-impact-wrapper h2 {
		font-size: 25px;
	}
}

.our-impact-wrapper .imapct-item {
	display: flex;
	align-items: center;
	gap: 90px;
}

@media (max-width: 1399px) {
	.our-impact-wrapper .imapct-item {
		flex-wrap: wrap;
		gap: 30px;
	}
}

.our-impact-wrapper .imapct-item .icon-items {
	text-align: center;
	border-left: 1px solid rgba(255, 255, 255, 0.2);
	padding-left: 90px;
}

@media (max-width: 1399px) {
	.our-impact-wrapper .imapct-item .icon-items {
		border-left: none;
		padding-left: 0;
	}
}

.our-impact-wrapper .imapct-item .icon-items .content {
	margin-top: 15px;
}

.our-impact-wrapper .imapct-item .icon-items .content h3 {
	color: var(--white);
	font-size: 18px;
	font-weight: 600;
}

.our-impact-wrapper .imapct-item .icon-items .content h4 {
	font-size: 16px;
	font-weight: 600;
	color: var(--theme3);
}

.our-imapact-section {
	position: relative;
	z-index: 9;
}

.our-imapact-section::before {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	content: "";
	background: rgba(47, 47, 47, 0.9);
	z-index: -1;
}

.why-choose-us-wrapper-4 .why-choose-us-box {
	border: 1px solid #2f2f2f33;
	padding: 30px;
	border-radius: 8px;
	transition: all 0.4s ease-in-out;
	position: relative;
}

@media (max-width: 1399px) {
	.why-choose-us-wrapper-4 .why-choose-us-box {
		padding: 22px;
	}
}

@media (max-width: 991px) {
	.why-choose-us-wrapper-4 .why-choose-us-box {
		padding: 30px;
	}
}

.why-choose-us-wrapper-4 .why-choose-us-box::before {
	content: "";
	position: absolute;
	right: 0;
	width: 0;
	height: 100%;
	transition: all ease 0.5s;
	z-index: -1;
	top: 0;
	background: linear-gradient(90deg, var(--theme3) 2.34%, var(--theme3) 100%);
	border-radius: 8px;
}

.why-choose-us-wrapper-4 .why-choose-us-box .top-content {
	display: flex;
	/* align-items: center; */
	gap: 15px;
	margin-bottom: 20px;
}

.why-choose-us-wrapper-4 .why-choose-us-box:hover {
	transform: translateY(-10px);
	border: 1px solid var(--theme3);
}

.why-choose-us-wrapper-4 .why-choose-us-box:hover .top-content .icon img {
	transform: scale(1.15) rotate(5deg);
	filter: brightness(0) invert(1);
}

.why-choose-us-wrapper-4 .why-choose-us-box:hover .top-content h3 {
	color: var(--white);
}

.why-choose-us-wrapper-4 .why-choose-us-box:hover p {
	color: var(--white);
}

.why-choose-us-wrapper-4 .why-choose-us-box:hover::before {
	width: 100%;
	right: auto;
	left: 0;
}

.hero-1 {
	margin: 0 15px;
	border-radius: 10px;
	padding: 190px 0;
	margin-top: 160px;
	position: relative;
}

@media (max-width: 1399px) {
	.hero-1 {
		padding: 150px 0 110px;
		margin-top: 70px;
		margin: 0 0;
	}
}

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

@media (max-width: 575px) {
	.hero-1 {
		padding: 130px 0 130px;
		margin-top: 0px;
		background-color: #fff;
	}
}

.hero-1 .container-fluid {
	padding: 0 170px;
}

@media (max-width: 1899px) {
	.hero-1 .container-fluid {
		padding: 0 50px;
	}
}

@media (max-width: 1600px) {
	.hero-1 .container-fluid {
		padding: 0 30px;
	}
}

@media (max-width: 1399px) {
	.hero-1 .container-fluid {
		padding: 0 15px;
	}
}

.hero-1 .left-shape {
	position: absolute;
	left: 30px;
	bottom: 0;
}

@media (max-width: 1399px) {
	.hero-1 .left-shape {
		display: none;
	}
}

@media (min-width: 320px) and (max-width: 475px) {
	.hero-1 .left-shape {
		left: 0;
		z-index: 999;
		display: block;
	}
}

.hero-1 .right-shape {
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	bottom: 0;
}

@media (max-width: 1399px) {
	.hero-1 .right-shape {
		display: none;
	}
}

@media (min-width: 320px) and (max-width: 475px) {
	.hero-1 .right-shape {
		left: initial;
		z-index: 999;
		right: 30px;
		transform: translateX(0);
		display: block;
	}

	.hero-1 .right-shape img {
		width: 90px;
	}
}

.hero-1 .right-shape-2 {
	position: absolute;
	right: 454px;
	bottom: 332px;
}

@media (max-width: 1600px) {
	.hero-1 .right-shape-2 {
		right: 338px;
	}
}

@media (max-width: 1399px) {
	.hero-1 .right-shape-2 {
		display: none;
	}
}

.hero-1 .right-shape-3 {
	position: absolute;
	right: 485px;
	bottom: 145px;
}

@media (max-width: 1600px) {
	.hero-1 .right-shape-3 {
		right: 385px;
	}
}

@media (max-width: 1399px) {
	.hero-1 .right-shape-3 {
		display: none;
	}
}

.hero-1 .right-shape-4 {
	position: absolute;
	right: 70px;
	top: 100px;
}

@media (max-width: 1600px) {
	.hero-1 .right-shape-4 {
		right: 12px;
	}
}

@media (max-width: 1399px) {
	.hero-1 .right-shape-4 {
		display: none;
	}
}

@media (max-width: 575px) {
	.hero-1 .hero-content {
		display: none;
	}
}

.hero-1 .hero-content span {
	color: var(--theme);
	font-weight: 600;
	border-radius: 5px;
	background-color: rgb(255, 255, 255);
	padding: 2px 20px 2px 10px;
	margin-bottom: 15px;
	display: inline-block;
	clip-path: polygon(100% 0, 90% 100%, 0 100%, 0 0);
	font-family: "Instrument Sans", sans-serif;
}

@media (max-width: 1399px) {
	.hero-1 .hero-content span {
		margin-bottom: 15px;
	}
}

.hero-1 .hero-content h1 img {
	border-radius: 100px;
}

@media (max-width: 575px) {
	.hero-1 .hero-content h1 img {
		width: 110px;
	}
}

.hero-1 .hero-content .hero-item {
	display: flex;
	align-items: center;
	gap: 48px;
	margin-top: 30px;
}

@media (max-width: 1600px) {
	.hero-1 .hero-content .hero-item {
		flex-wrap: wrap;
		gap: 30px;
	}
}

.hero-1 .hero-content .hero-item .hero-image img {
	width: 100%;
	height: 100%;
	border-radius: 20px;
}

.hero-1 .hero-content .hero-item .content p {
	max-width: 593px;
	margin-bottom: 30px;
}

@media (max-width: 1600px) {
	.hero-1 .hero-content .hero-item .content p {
		max-width: 485px;
		font-size: 15px;
	}
}

@media (max-width: 1399px) {
	.hero-1 .hero-content .hero-item .content p {
		max-width: 593px;
		margin-bottom: 30px;
		font-size: 16px;
	}
}

@media (max-width: 1199px) {
	.hero-1 .hero-content .hero-item .content p {
		max-width: 510px;
	}
}

@media (max-width: 991px) {
	.hero-1 .hero-content .hero-item .content p {
		max-width: 593px;
	}
}

.hero-1 .tomato-image {
	position: absolute;
	top: 0;
	bottom: 0;
	right: 50px;
}

@media (max-width: 1600px) {
	.hero-1 .tomato-image {
		right: 20px;
	}
}

@media (max-width: 991px) {
	.hero-1 .tomato-image {
		display: none;
	}
}

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

.hero-1 .bg-2 {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	display: none;
}

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

@media (max-width: 575px) {
	.hero-1 .bg-2 {
		display: block;
	}
}

.hero-1 .hero-main-box {
	position: relative;
	z-index: 9;
	display: none;
}

@media (max-width: 575px) {
	.hero-1 .hero-main-box {
		display: block;
	}
}

.hero-1 .hero-main-box .hero-box {
	padding: 28px 20px;
	position: relative;
	border-radius: 20px;
}

.hero-1 .hero-main-box .hero-box .tomato {
	position: absolute;
	top: 0;
	bottom: 0;
	right: 5px;
}

@media (min-width: 320px) and (max-width: 400px) {
	.hero-1 .hero-main-box .hero-box .tomato {
		max-width: 100px;
	}
}

.hero-1 .hero-main-box .hero-box .tomato img {
	width: 100%;
	height: 100%;
}

.hero-1 .hero-main-box .hero-box span {
	color: var(--theme);
	font-weight: 600;
	margin-bottom: 15px;
	display: inline-block;
	font-family: "Instrument Sans", sans-serif;
}

@media (max-width: 1399px) {
	.hero-1 .hero-main-box .hero-box span {
		margin-bottom: 15px;
	}
}

.hero-1 .hero-main-box .hero-box h1 {
	font-size: 30px;
	font-weight: 700;
	text-transform: capitalize;
}

.hero-1 .hero-main-box .hero-image {
	margin-top: 20px;
}

.hero-1 .hero-main-box .hero-image img {
	width: 100%;
	height: 100%;
	border-radius: 20px;
}

.hero-1 .hero-main-box p {
	color: rgb(80, 98, 74);
	font-weight: 500;
	font-size: 16px;
	line-height: 175%;
	margin-top: 30px;
}

.hero-1 .hero-main-box .hero-btn {
	display: flex;
	align-items: center;
	gap: 20px;
	margin-top: 40px;
}

.hero-1 .hero-main-box .hero-btn .theme-btn.style-border {
	background-color: transparent;
	border: 1px solid var(--theme);
	color: var(--theme3);
}

.hero-1 .hero-main-box .hero-btn .theme-btn.style-border::before {
	background-color: var(--theme);
}

.hero-1 .hero-main-box .hero-btn .theme-btn.style-border::after {
	background-color: rgba(200, 67, 58, 0.3);
}

.hero-1 .hero-main-box .hero-btn .theme-btn.style-border:hover {
	color: var(--white);
}

@media (max-width: 575px) {
	.hero-1.bg-cover {
		background-image: none !important;
	}
}

.hero-2 {
	position: relative;
}

@media (max-width: 1899px) {
	.hero-2 {
		/* height: 950px; */
	}
}

@media (max-width: 1600px) {
	.hero-2 {
		/* height: 900px; */
	}
}

@media (max-width: 1399px) {
	.hero-2 {
		/* height: 670px; */
	}
}

@media (max-width: 991px) {
	.hero-2 {
		height: 610px;
	}
}

@media (max-width: 767px) {
	.hero-2 {
		height: 590px;
	}
}

@media (min-width: 400px) and (max-width: 575px) {
	.hero-2 {
		height: 685px;
	}
}

@media (min-width: 320px) and (max-width: 400px) {
	.hero-2 {
		height: 685px;
	}
}

.hero-2 .hero-border-item {
	display: flex;
	align-items: center;
	justify-content: space-between;
	position: absolute;
	left: 0px;
	right: 0;
	bottom: 25px;
	padding-left: 120px;
	padding-right: 120px;
	padding-top: 25px;
	z-index: 999;
	border-top: 1px solid rgba(255, 255, 255, 0.2);
}

@media (max-width: 1399px) {
	.hero-2 .hero-border-item {
		display: none;
	}
}

.hero-2 .hero-border-item .hero-bottom-item {
	display: flex;
	align-items: center;
	gap: 60px;
}

.hero-2 .hero-border-item .hero-bottom-item h2 {
	color: var(--white);
	font-size: 20px;
	font-weight: 700;
	line-height: 150%;
}

.hero-2 .hero-border-item .hero-bottom-item .hero-list {
	display: flex;
	align-items: center;
	gap: 40px;
}

.hero-2 .hero-border-item .hero-bottom-item .hero-list span {
	color: var(--white);
	position: relative;
}

.hero-2 .hero-border-item .hero-bottom-item .hero-list span::before {
	position: absolute;
	content: "";
	width: 1px;
	height: 15px;
	background-color: rgba(255, 255, 255, 0.3);
	top: 8px;
	left: -20px;
}

.hero-2 .hero-border-item .hero-bottom-item .hero-list span i {
	margin-right: 10px;
}

@media (max-width: 1399px) {
	.hero-2 .hero-border-item .pagi-item {
		display: none;
	}
}

.hero-2 .hero-border-item .pagi-item .dot-number {
	display: flex;
	gap: 20px;
}

.hero-2 .hero-border-item .pagi-item .dot-number .swiper-pagination-bullet {
	background: none !important;
	width: auto !important;
	height: auto !important;
	margin: 0 !important;
	transition: all 0.4s ease-in-out;
	color: var(--white);
}

.hero-2 .hero-border-item .pagi-item .dot-number .swiper-pagination-bullet-active .dot-num span {
	color: rgba(255, 255, 255, 0.5) !important;
	font-size: 16px;
	font-weight: 600;
	transition: all 0.4s ease-in-out;
	display: inline-block;
}

.hero-2 .hero-border-item .pagi-item .dot-number .dot-num {
	transition: all 0.4s ease-in-out;
}

.hero-2 .hero-border-item .pagi-item .dot-number .dot-num span {
	font-size: 16px;
	font-weight: 600;
	color: var(--white) !important;
	transition: all 0.4s ease-in-out;
	opacity: 9 !important;
	display: inline-block;
}

.hero-2 .hero-border-item .pagi-item .dot-number .dot-num span.style-2 {
	position: relative;
}

.hero-2 .hero-border-item .pagi-item .dot-number .dot-num span.style-2::before {
	position: absolute;
	content: "";
	top: 14px;
	left: -18px;
	background: rgba(255, 255, 255, 0.5);
	width: 16px;
	height: 1px;
	transform: rotate(-126deg);
}

.hero-2 .hero-portfolio-revealing-slider {
	position: relative;
	height: 100vh;
}

.hero-2 .hero-portfolio-revealing-slider::before {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	content: "";
	background-color: rgba(255, 255, 255, 0.2);
	left: 100px;
	width: 1px;
	z-index: 999;
}

@media (max-width: 1600px) {
	.hero-2 .hero-portfolio-revealing-slider::before {
		left: 75px;
	}
}

@media (max-width: 1399px) {
	.hero-2 .hero-portfolio-revealing-slider::before {
		display: none;
	}
}

.hero-2 .hero-portfolio-revealing-slider::after {
	position: absolute;
	height: 100%;
	top: 0;
	bottom: 0;
	content: "";
	background-color: rgba(255, 255, 255, 0.2);
	right: 100px;
	width: 1px;
	z-index: 999;
}

@media (max-width: 1600px) {
	.hero-2 .hero-portfolio-revealing-slider::after {
		right: 82px;
	}
}

@media (max-width: 1399px) {
	.hero-2 .hero-portfolio-revealing-slider::after {
		display: none;
	}
}

.hero-2 .hero-portfolio-revealing-slider-control {
	z-index: 2;
	position: absolute;
	top: 50%;
	left: 4%;
	border: 1px solid rgba(255, 255, 255, 0.2);
	width: 60px;
	height: 60px;
	margin-left: calc(var(--controlSize) / -2);
	margin-top: calc(var(--controlSize) / -2);
	border-radius: 50%;
	transition: background-color 0.3s;
	cursor: pointer;
	transition: all 0.4s ease-in-out;
}

@media (max-width: 1600px) {
	.hero-2 .hero-portfolio-revealing-slider-control {
		left: 4.5%;
	}
}

@media (max-width: 1399px) {
	.hero-2 .hero-portfolio-revealing-slider-control {
		display: none;
	}
}

@media (min-width: 400px) and (max-width: 575px) {
	.hero-2 .hero-portfolio-revealing-slider-control {
		left: 48%;
		display: block;
		top: 84%;
	}
}

@media (min-width: 320px) and (max-width: 400px) {
	.hero-2 .hero-portfolio-revealing-slider-control {
		left: 47%;
		display: block;
		top: 84%;
	}
}

.hero-2 .hero-portfolio-revealing-slider-control:hover {
	background-color: var(--theme2);
	border: 1px solid var(--theme2);
}

.hero-2 .hero-portfolio-revealing-slider-control:hover img {
	/* filter: invert(1) brightness(0); */
}

.hero-2 .hero-portfolio-revealing-slider-control-right {
	left: 99%;
	transform: rotate(180deg);
}

@media (min-width: 400px) and (max-width: 575px) {
	.hero-2 .hero-portfolio-revealing-slider-control-right {
		left: 66%;
	}
}

@media (min-width: 320px) and (max-width: 400px) {
	.hero-2 .hero-portfolio-revealing-slider-control-right {
		left: 73%;
	}
}

.hero-2 .hero-portfolio-revealing-slider-control-right .hero-portfolio-revealing-slider-control-line {
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
}

.hero-2 .hero-portfolio-revealing-slider-control-line {
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	transition: all 0.4s ease-in-out;
}

.hero-2 .hero-portfolio-revealing-slide {
	overflow: hidden;
	position: absolute;
	left: 50%;
	top: 50%;
	width: 150vmax;
	height: 150vmax;
	transform: translate(-50%, -50%);
	border-radius: 50%;
	transition: clip-path 0s calc(var(--slidingAT) * 0.7);
	clip-path: circle(calc(var(--controlSize) / 2) at 120vw 50%);
}

.hero-2 .hero-portfolio-revealing-slide-inner {
	position: absolute;
	left: 50%;
	top: 50%;
	height: 100vh;
	width: 100vw;
	margin-left: -50vw;
	margin-top: -50vh;
	background-size: cover;
	background-position: center center;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 260px 0 260px;
}

.hero-2 .hero-portfolio-revealing-slide-inner::before {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 9%;
	content: "";
	background: linear-gradient(180deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0) 100%);
	z-index: 999;
}

@media (max-width: 1600px) {
	.hero-2 .hero-portfolio-revealing-slide-inner {
		padding: 280px 0 330px;
	}
}

@media (max-width: 1399px) {
	.hero-2 .hero-portfolio-revealing-slide-inner {
		padding: 180px 0 130px;
	}
}

@media (max-width: 991px) {
	.hero-2 .hero-portfolio-revealing-slide-inner {
		padding: 150px 0 100px;
	}
}

.hero-2 .hero-portfolio-revealing-slide-content {
	text-align: center;
	margin: 0 auto;
	position: relative;
	z-index: 999;
}

.hero-2 .hero-portfolio-revealing-slide span {
	color: var(--white);
	margin-bottom: 20px;
	margin-top: 10px;
	font-size: 16px;
	text-transform: capitalize;
	font-weight: 600;
	font-family: "Instrument Sans", sans-serif;
}

.hero-2 .hero-portfolio-revealing-slide-heading {
	color: var(--white);
	line-height: 148%;
	text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-2 .hero-portfolio-revealing-slide p {
	color: var(--white);
	font-size: 18px;
	font-weight: 500;
	text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
	margin-top: 15px;
	text-transform: capitalize;
}

.hero-2 .hero-portfolio-revealing-slide .hero-button {
	display: flex;
	align-items: center;
	margin-top: 40px;
	gap: 40px;
	justify-content: center;
}

@media (max-width: 1199px) {
	.hero-2 .hero-portfolio-revealing-slide .hero-button {
		margin-top: 30px;
		gap: 20px;
	}
}

@media (max-width: 767px) {
	.hero-2 .hero-portfolio-revealing-slide .hero-button {
		justify-content: center;
		margin-bottom: 112px;
	}
}

@media (min-width: 320px) and (max-width: 400px) {
	.hero-2 .hero-portfolio-revealing-slide .hero-button {
		margin-bottom: 75px;
	}
}

@media (max-width: 575px) {
	.hero-2 .hero-portfolio-revealing-slide .hero-button .theme-btn-2 {
		padding: 13px 24px 13px;
	}
}

.hero-2 .hero-portfolio-revealing-slide .hero-button .theme-btn-2.border-btn {
	background-color: rgba(17, 162, 27, 0.12);
	border: 1px solid 1px solid rgba(17, 162, 27, 0.2);
	color: var(--theme3);

}

.hero-2 .hero-portfolio-revealing-slide .hero-button .theme-btn-2.border-btn::before {
	background-color: var(--theme2);
}

.hero-2 .hero-portfolio-revealing-slide .hero-button .theme-btn-2.border-btn::after {
	background-color: rgba(245, 216, 62, 0.12);
}

.hero-2 .hero-portfolio-revealing-slide .hero-button .theme-btn-2.border-btn:hover {
	color: #fff;
}

.hero-2 .hero-portfolio-revealing-slide.s-prev {
	clip-path: circle(calc(var(--controlSize) / 2) at 30vw 50%);
}

.hero-2 .hero-portfolio-revealing-slide.s-active {
	z-index: 1;
	transition: clip-path var(--slidingAT);
	clip-path: circle(120vmax at 120vw 50%);
}

.hero-2 .hero-portfolio-revealing-slide.s-active.s-active-prev {
	clip-path: circle(120vmax at 30vw 50%);
}

.hero-3 {
	padding: 430px 0 160px;
	position: relative;
	overflow: hidden;
}

@media (max-width: 575px) {
	.hero-3 {
		height: 945px;
	}
}

.hero-3 .drone-video {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: -1;
}

.hero-3 .drone-video video {
	width: 100%;
	height: 1000px;
	object-fit: cover;
}

@media (max-width: 575px) {
	.hero-3 .drone-video {
		display: none;
	}
}

.hero-3 .hero-image {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	display: none;
	z-index: -1;
	padding: 0 30px;
}

.hero-3 .hero-image::before {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	content: "";
	background: linear-gradient(180deg, #2F2F2F 0%, rgba(47, 47, 47, 0) 100%);
}

@media (max-width: 1399px) {
	.hero-3 .hero-image {
		display: none;
	}
}

@media (max-width: 575px) {
	.hero-3 .hero-image {
		display: block;
	}
}

.hero-3 .hero-image .leafs {
	text-align: center;
	position: relative;
	margin-top: 125px;
}

.hero-3 .hero-image p {
	font-weight: 600;
	color: var(--white);
	font-family: "Instrument Sans", sans-serif;
	position: relative;
	margin-top: 7px;
	text-align: center;
}

.hero-3 .hero-image p b {
	font-weight: 600;
	color: var(--theme3);
}

.hero-3 .hero-image .hero-boxs {
	background: rgba(255, 255, 255, 0.1);
	border: 1px solid rgba(255, 255, 255, 0.2);
	border-radius: 10px;
	padding: 30px 0;
	position: relative;
	margin-bottom: 50px;
	margin-top: 160px;
}

.hero-3 .hero-image .hero-boxs p {
	font-weight: 500;
	color: var(--white);
	border-bottom: 1px solid rgba(255, 255, 255, 0.2);
	padding-left: 20px;
	padding-bottom: 20px;
	margin-bottom: 30px;
	font-size: 15px;
}

.hero-3 .hero-image .hero-boxs .icon-item {
	display: flex;
	align-items: center;
	gap: 15px;
	padding-left: 30px;
}

.hero-3 .hero-image .hero-boxs .icon-item .icon {
	width: 44px;
	height: 44px;
	line-height: 44px;
	text-align: center;
	background-color: var(--white);
	border-radius: 100px;
}

.hero-3 .hero-image .hero-boxs .icon-item .cont span {
	font-size: 16px;
	font-weight: 500;
	margin-bottom: 5px;
	color: var(--white);
	text-transform: capitalize;
}

.hero-3 .hero-image .hero-boxs .icon-item .cont h2 {
	font-size: 20px;
	font-weight: 700;
	line-height: 150%;
}

.hero-3 .hero-image .hero-boxs .icon-item .cont h2 a {
	color: var(--white);
}

.hero-3 .hero-image h1 {
	color: var(--white);
	font-size: 30px;
	font-weight: 700;
	text-transform: uppercase;
	position: relative;
	text-align: center;
}

@media (max-width: 1399px) {
	.hero-3 {
		padding: 180px 0 100px;
	}
}

@media (max-width: 991px) {
	.hero-3 {
		padding: 120px 0 80px;
	}
}

.hero-3 .container-fluid {
	padding: 0 120px;
}

@media (max-width: 1600px) {
	.hero-3 .container-fluid {
		padding: 0 50px;
	}
}

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

@media (max-width: 575px) {
	.hero-3 .container-fluid {
		padding: 0 15px;
	}
}

@media (max-width: 575px) {
	.hero-3 .hero-content {
		display: none;
	}
}

.hero-3 .hero-content p {
	font-weight: 600;
	color: var(--white);
	font-family: "Instrument Sans", sans-serif;
}

.hero-3 .hero-content p b {
	font-weight: 600;
	color: var(--theme3);
}

.hero-3 .hero-content h1 {
	font-size: 100px;
	color: var(--white);
	text-transform: uppercase;
	margin-bottom: 35px;
}

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

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

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

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

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

.hero-3 .hero-content h1.text {
	margin-left: 650px;
	margin-top: 5px;
	margin-bottom: 0;
}

@media (max-width: 1399px) {
	.hero-3 .hero-content h1.text {
		margin-left: 0;
	}
}

.hero-3 .hero-content span {
	font-size: 200px;
	font-weight: 700;
	font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	-webkit-text-stroke: 2px #fff;
	color: transparent;
	color: transparent;
	display: inline-block;
	margin-left: 370px;
	text-transform: uppercase;
}

@media (max-width: 1899px) {
	.hero-3 .hero-content span {
		font-size: 115px;
		margin-left: 250px;
	}
}

@media (max-width: 991px) {
	.hero-3 .hero-content span {
		font-size: 90px;
		margin-left: 0;
	}
}

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

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

.hero-3 .hero-content span img {
	border-radius: 100%;
	border: 2.5px solid var(--white);
	margin-top: -30px;
	margin-left: -30px;
	margin-right: -30px;
}

@media (max-width: 1899px) {
	.hero-3 .hero-content span img {
		width: 105px;
	}
}

@media (max-width: 1399px) {
	.hero-3 .hero-content span img {
		margin-top: -15px;
		margin-left: -30px;
		margin-right: -30px;
		width: 90px;
	}
}

@media (max-width: 991px) {
	.hero-3 .hero-content span img {
		margin-top: -15px;
		margin-left: -15px;
		margin-right: -15px;
		width: 80px;
	}
}

@media (max-width: 575px) {
	.hero-3 .hero-content span img {
		margin-top: -15px;
		margin-left: -5px;
		margin-right: -5px;
		width: 40px;
	}
}

.hero-3 .hero-box {
	background: rgba(255, 255, 255, 0.1);
	border: 1px solid rgba(255, 255, 255, 0.2);
	border-radius: 10px;
	padding: 30px 0;
	position: absolute;
	right: 120px;
	top: 288px;
	max-width: 341px;
	width: 100%;
}

@media (max-width: 1399px) {
	.hero-3 .hero-box {
		display: none;
	}
}

.hero-3 .hero-box p {
	font-weight: 500;
	color: var(--white);
	border-bottom: 1px solid rgba(255, 255, 255, 0.2);
	padding-left: 30px;
	padding-bottom: 20px;
	margin-bottom: 30px;
}

.hero-3 .hero-box .icon-item {
	display: flex;
	align-items: center;
	gap: 15px;
	padding-left: 30px;
}

.hero-3 .hero-box .icon-item .icon {
	width: 44px;
	height: 44px;
	line-height: 44px;
	text-align: center;
	background-color: var(--white);
	border-radius: 100px;
}

.hero-3 .hero-box .icon-item .cont span {
	font-size: 16px;
	font-weight: 500;
	margin-bottom: 5px;
	color: var(--white);
	text-transform: capitalize;
}

.hero-3 .hero-box .icon-item .cont h2 {
	font-size: 20px;
	font-weight: 700;
	line-height: 150%;
}

.hero-3 .hero-box .icon-item .cont h2 a {
	color: var(--white);
}

.hero-4 {
	padding: 120px 0 0px;
	position: relative;
}

.hero-4::before {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	content: "";
	background: rgba(2, 2, 2, 0.8);
}

@media (max-width: 1399px) {
	.hero-4 {
		padding-top: 150px;
		padding-bottom: 70px;
	}
}

@media (max-width: 991px) {
	.hero-4 {
		padding-top: 150px;
		padding-bottom: 0;
	}
}

.hero-4 .container-fluid {
	padding: 0 120px;
}

@media (max-width: 1600px) {
	.hero-4 .container-fluid {
		padding: 0 50px;
	}
}

@media (max-width: 1399px) {
	.hero-4 .container-fluid {
		padding: 0 30px;
	}
}

@media (max-width: 575px) {
	.hero-4 .container-fluid {
		padding: 0 15px;
	}
}

.hero-4 .hero-shape {
	position: absolute;
	right: 0;
	bottom: 0;
}

@media (max-width: 1600px) {
	.hero-4 .hero-shape {
		right: -166px;
		bottom: -153px;
	}
}

@media (max-width: 1399px) {
	.hero-4 .hero-shape {
		display: none;
	}
}

.hero-4 .hero-content {
	position: relative;
}

@media (max-width: 767px) {
	.hero-4 .hero-content {
		text-align: center;
	}
}

.hero-4 .hero-content span {
	font-size: 16px;
	font-weight: 700;
	letter-spacing: 0.25em;
	color: var(--white);
	display: inline-block;
	border-radius: 6px;
	line-height: 1;
	margin-bottom: 20px;
	font-family: "Instrument Sans", sans-serif;
	text-transform: uppercase;
}

@media (max-width: 1399px) {
	.hero-4 .hero-content span {
		letter-spacing: initial;
	}
}

.hero-4 .hero-content h1 {
	font-size: 75px;
	margin-bottom: 20px;
	text-transform: initial;
	color: var(--white);
	font-weight: 700;
}

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

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

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

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

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

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

@media (min-width: 320px) and (max-width: 400px) {
	.hero-4 .hero-content h1 {
		font-size: 27px;
	}
}

.hero-4 .hero-content p {
	max-width: 660px;
	font-size: 18px;
	line-height: 30px;
	color: var(--white);
	margin-bottom: 40px;
}

.hero-4 .hero-content .hero-button {
	display: flex;
	align-items: center;
	gap: 30px;
}

@media (max-width: 1399px) {
	.hero-4 .hero-content .hero-button {
		gap: 10px;
	}
}

@media (max-width: 767px) {
	.hero-4 .hero-content .hero-button {
		justify-content: center;
	}
}

.hero-4 .hero-content .hero-button .theme-btn.style-2 {
	background: rgba(245, 216, 62, 0.12);
	border: 1px solid #11A21B;
	color: rgb(17, 162, 27);
}

.hero-4 .hero-content .hero-button .theme-btn.style-2::before {
	background-color: var(--theme3);
}

.hero-4 .hero-content .hero-button .theme-btn.style-2::after {
	background-color: rgba(200, 67, 58, 0.3);
}

.hero-4 .hero-content .hero-button .theme-btn.style-2:hover {
	color: var(--white);
	border: 1px solid var(--theme3);
}

.hero-4 .hero-image {
	position: relative;
	margin-top: 30px;
}

@media (max-width: 1399px) {
	.hero-4 .hero-image {
		margin-top: 0;
	}
}

@media (max-width: 575px) {
	.hero-4 .hero-image {
		margin-top: 0;
		max-width: 320px;
		text-align: center;
		margin: 0 auto;
	}
}

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

.hero-4 .cabage-shape {
	position: absolute;
	left: -40px;
	bottom: -70px;
}

@media (max-width: 1600px) {
	.hero-4 .cabage-shape {
		left: -53px;
		bottom: -115px;
	}
}

@media (max-width: 1399px) {
	.hero-4 .cabage-shape {
		display: none;
	}
}

.hero-4 .chili-shape {
	position: absolute;
	right: 50px;
	top: 330px;
}

.hero-4 .chili-shape img {
	width: 150px;
}

@media (max-width: 1600px) {
	.hero-4 .chili-shape {
		right: 40px;
		top: 220px;
	}
}

@media (max-width: 1399px) {
	.hero-4 .chili-shape {
		display: none;
	}
}

.hero-4 .hero-shape-2 {
	position: absolute;
	left: 0;
	top: 227px;
}

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

.hero-4 .hero-shape-3 {
	position: absolute;
	left: 50%;
	top: 345px;
	z-index: 999;
}

@media (max-width: 1600px) {
	.hero-4 .hero-shape-3 {
		display: none;
	}
}

.hero-4 .radius {
	position: absolute;
	right: 0;
	bottom: 0;
	display: none;
}

@media (max-width: 575px) {
	.hero-4 .radius {
		display: block;
	}
}

@media (min-width: 320px) and (max-width: 400px) {
	.hero-4 .radius {
		right: -60px;
	}
}

.hero-4 .shape-5 {
	position: absolute;
	bottom: -30px;
	right: 20px;
}

@media (max-width: 1600px) {
	.hero-4 .shape-5 img {
		width: 100px;
	}
}

@media (max-width: 1399px) {
	.hero-4 .shape-5 {
		display: none;
	}
}

@media (max-width: 991px) {
	.hero-4 .shape-5 {
		width: initial;
		display: block;
		right: 0;
		bottom: 0;
	}

	.hero-4 .shape-5 img {
		width: 75px;
	}
}

@media (min-width: 320px) and (max-width: 400px) {
	.hero-4 .shape-5 {
		display: block;
	}

	.hero-4 .shape-5 img {
		width: 58px;
	}
}

.news-card-item {
	margin-top: 30px;
	background-color: #fff;
	border-radius: 20px;
	padding: 30px;
	position: relative;
	overflow: hidden;
}

.news-card-item::before,
.news-card-item::after {
	content: "";
	position: absolute;
	left: 0;
	width: 100%;
	height: 50%;
	background: var(--theme3);
	transition: transform 0.6s ease;
	z-index: -1;
}

.news-card-item::before {
	top: 0;
	transform: translateY(-106%);
}

.news-card-item::after {
	bottom: 0;
	transform: translateY(106%);
}

.news-card-item .news-image {
	position: relative;
	overflow: hidden;
}

.news-card-item .news-image img {
	width: 100%;
	height: 100%;
	border-radius: 20px;
	display: inline-block;
	transition: all 500ms ease;
}

.news-card-item .news-image img:first-child {
	position: relative;
	left: 0;
	top: 0;
	right: 0;
	bottom: 0;
	z-index: 1;
	/* transform: translateX(50%) scaleX(2); */
	opacity: 1;
	/* filter: blur(10px); */
}

.news-card-item .news-content {
	margin-top: 30px;
}

.news-card-item .news-content .tag {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 25px;
}

.news-card-item .news-content .tag span {
	border: 1px solid rgba(17, 162, 27, 0.2);
	color: rgb(47, 47, 47);
	padding: 2px 10px;
	border-radius: 6px;
}

.news-card-item .news-content .tag span i {
	margin-right: 10px;
	color: var(--theme3);
}

.news-card-item .news-content h3 a {
	background-position: 0 95%;
	background-repeat: no-repeat;
	background-size: 0% 2px;
	display: inline;
}

.news-card-item .news-content h3 a:hover {
	color: var(--white);
	background-size: 100% 2px;
	background-image: linear-gradient(180deg, var(--white) 0%, var(--white) 100%);
}

.news-card-item .news-content p {
	max-width: 629px;
	color: rgb(80, 98, 74);
	margin-bottom: 30px;
	margin-top: 20px;
}

.news-card-item .news-content .theme-btn {
	border: 1px solid rgba(17, 162, 27, 0.2);
	background-color: transparent;
	color: var(--theme3);
	padding: 12px 40px;
}

.news-card-item .news-content .theme-btn::before {
	background-color: var(--theme);
}

.news-card-item .news-content .theme-btn::after {
	background-color: rgba(17, 162, 27, 0.2);
}

.news-card-item .news-content .theme-btn:hover {
	color: var(--white);
}

.news-card-item:hover .news-image {
	position: relative;
	z-index: 9999;
}

.news-card-item:hover .news-image img:first-child {
	transform: translateX(0) scaleX(1);
	opacity: 1;
	filter: blur(0);
}

.news-card-item:hover .news-image img:nth-child(2) {
	transform: translateX(-50%) scaleX(2);
	opacity: 0;
	filter: blur(10px);
}

.news-card-item:hover .news-content {
	position: relative;
	z-index: 9999;
}

.news-card-item:hover .news-content .tag span {
	color: var(--white);
	border: 1px solid rgba(255, 255, 255, 0.3);
}

.news-card-item:hover .news-content .tag span i {
	color: var(--white);
}

.news-card-item:hover .news-content h3 a {
	color: var(--white);
}

.news-card-item:hover .news-content p {
	color: var(--white);
}

.news-card-item:hover .news-content .theme-btn {
	color: var(--white);
	border: 1px solid rgba(255, 255, 255, 0.3);
}

.news-card-item:hover .news-content .theme-btn::before {
	background-color: var(--white);
}

.news-card-item:hover .news-content .theme-btn::after {
	background-color: rgba(255, 255, 255, 0.3);
}

.news-card-item:hover .news-content .theme-btn:hover {
	border: 1px solid var(--white);
	color: rgba(17, 162, 27);
}

.news-card-item:hover::before {
	transform: translateY(0);
	z-index: 999;
}

.news-card-item:hover::after {
	transform: translateY(0);
	z-index: 999;
}

.news-section .news-slider {
	margin-left: -450px;
	margin-right: -450px;
}

@media (max-width: 1399px) {
	.news-section .news-slider {
		margin-left: 10px;
		margin-right: 10px;
	}
}

.news-section .swiper-dot {
	text-align: center;
}

@media (max-width: 575px) {
	.news-section .swiper-dot {
		opacity: 1;
		visibility: visible;
	}
}

.news-card-items-2 {
	margin-top: 30px;
}

.news-card-items-2 .news-image {
	position: relative;
	overflow: hidden;
}

.news-card-items-2 .news-image::before {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	content: "";
	background: linear-gradient(180deg, rgba(47, 47, 47, 0) 0%, #2F2F2F 100%);
	border-radius: 10px;
	z-index: 999;
}

.news-card-items-2 .news-image .theme-btn-2 {
	position: absolute;
	top: 45px;
	left: -45px;
	z-index: 999;
	padding: 10px 20px;
	opacity: 0;
	visibility: hidden;
	transition: all 0.4s ease-in-out;
}

@media (max-width: 1399px) {
	.news-card-items-2 .news-image .theme-btn-2 {
		left: -20px;
		top: 20px;
	}
}

.news-card-items-2 .news-image .news-content {
	position: absolute;
	left: 30px;
	bottom: 30px;
	z-index: 9999;
}

@media (max-width: 1399px) {
	.news-card-items-2 .news-image .news-content {
		left: 20px;
		bottom: 20px;
	}
}

@media (max-width: 991px) {
	.news-card-items-2 .news-image .news-content h3 {
		font-size: 20px;
	}
}

.news-card-items-2 .news-image .news-content h3 a {
	background-position: 0 95%;
	background-repeat: no-repeat;
	background-size: 0% 2px;
	display: inline;
	color: var(--white);
}

.news-card-items-2 .news-image .news-content h3 a:hover {
	color: var(--theme2);
	background-size: 100% 2px;
	background-image: linear-gradient(180deg, var(--theme2) 0%, var(--theme2) 100%);
}

.news-card-items-2 .news-image .news-content p {
	font-weight: 500;
	color: rgb(255, 255, 255);
	margin-top: 0;
	max-width: 390px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.2);
	padding-bottom: 0;
	opacity: 0;
	visibility: hidden;
	transition: all 0.4s ease-in-out;
	height: 0;
}

@media (max-width: 991px) {
	.news-card-items-2 .news-image .news-content p {
		max-width: 305px;
	}
}

@media (max-width: 767px) {
	.news-card-items-2 .news-image .news-content p {
		max-width: 300px;
	}
}

.news-card-items-2 .news-image .news-content .tag {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-top: 25px;
}

@media (max-width: 1399px) {
	.news-card-items-2 .news-image .news-content .tag {
		flex-wrap: wrap;
	}
}

.news-card-items-2 .news-image .news-content .tag span {
	border: 1px solid rgba(245, 216, 62, 0.2);
	color: var(--white);
	padding: 2px 10px;
	border-radius: 6px;
}

.news-card-items-2 .news-image .news-content .tag span i {
	margin-right: 10px;
	color: var(--theme2);
}

.news-card-items-2 .news-image img {
	width: 100%;
	height: 100%;
	border-radius: 20px;
}

.news-card-items-2:hover .news-image .theme-btn-2 {
	opacity: 1;
	visibility: visible;
	left: 45px;
}

@media (max-width: 1399px) {
	.news-card-items-2:hover .news-image .theme-btn-2 {
		left: 20px;
		top: 20px;
	}
}

.news-card-items-2:hover .news-image .news-content p {
	display: block;
	opacity: 1;
	visibility: visible;
	margin-top: 10px;
	padding-bottom: 20px;
	height: 110px;
}

.news-card-items-2.style-inner {
	margin-top: 0 !important;
}

.news-card-items-2.style-inner .news-image .news-content h3 a {
	color: var(--white);
}

.news-card-items-2.style-inner .news-image .news-content h3 a:hover {
	color: var(--theme3);
	background-size: 100% 2px;
	background-image: linear-gradient(180deg, var(--theme3) 0%, var(--theme3) 100%);
}

.news-card-items-2.style-inner .news-image .news-content .tag span {
	border: 1px solid rgba(245, 216, 62, 0.2);
	color: var(--white);
}

.news-card-items-2.style-inner .news-image .news-content .tag span i {
	margin-right: 10px;
	color: var(--theme3);
}

.cards-wrapper {
	overflow: hidden;
	margin-top: 48px;
}

.cards-wrapper .blog-card {
	background: rgb(245, 246, 244);
	border-radius: 10px;
	padding: 25px;
}

.cards-wrapper .blog-card .card-image {
	width: 100%;
	overflow: hidden;
	height: 170px;
	transition: height 0.5s cubic-bezier(0.77, 0, 0.175, 1);
	border-radius: 10px;
}

.cards-wrapper .blog-card .card-image img {
	width: 100%;
	height: 100%;
	border-radius: 10px;
	object-fit: cover;
	transition: transform 0.5s cubic-bezier(0.77, 0, 0.175, 1);
}

.cards-wrapper .card-content {
	margin-top: 30px;
}

.cards-wrapper .card-content .card-meta {
	margin-bottom: 20px;
}

.cards-wrapper .card-content .card-meta span {
	border: 1px solid rgba(17, 162, 27, 0.2);
	color: var(--theme3);
	padding: 0px 10px;
	border-radius: 6px;
	display: inline-block;
}

.cards-wrapper .card-content .card-meta i {
	margin-right: 5px;
}

.cards-wrapper .card-content .card-meta.style-2 {
	display: flex;
	align-items: center;
	gap: 8px;
}

.cards-wrapper .card-content .card-meta.style-2 h3 {
	border: 1px solid rgba(17, 162, 27, 0.2);
	color: var(--theme3);
	padding: 5px 10px;
	border-radius: 6px;
	font-family: "Inter", sans-serif;
	font-weight: 400;
	font-size: 14px;
}

.cards-wrapper .card-content h3 {
	margin-top: 10px;
}

.cards-wrapper .card-content h3 a {
	background-position: 0 95%;
	background-repeat: no-repeat;
	background-size: 0% 2px;
	display: inline;
}

.cards-wrapper .card-content h3 a:hover {
	color: var(--theme3);
	background-size: 100% 2px;
	background-image: linear-gradient(180deg, var(--theme3) 0%, var(--theme3) 100%);
}

.cards-wrapper .card-content p {
	color: rgb(80, 98, 74);
	margin-top: 10px;
	margin-bottom: 30px;
}

.cards-wrapper .card-content .theme-btns {
	position: relative;
	margin-left: 15px;
}

.cards-wrapper .card-content .theme-btns span {
	opacity: 0;
	visibility: hidden;
	display: inline-block;
	margin-left: 5px;
	color: rgb(245, 246, 244);
}

.cards-wrapper .card-content .theme-btns::before {
	position: absolute;
	content: "";
	top: 54%;
	left: 10%;
	transform: translate(-50%, -50%);
	width: 52px;
	height: 52px;
	background-color: rgba(17, 162, 27, 0.1);
	border-radius: 100px;
	transition: all 0.4s ease-in-out;
}

.cards-wrapper .card-content .theme-btns:hover {
	color: var(--white);
}

.cards-wrapper .card-content .theme-btns:hover img {
	filter: brightness(0) invert(1);
}

.cards-wrapper .card-content .theme-btns:hover span {
	opacity: 1;
	visibility: visible;
	color: var(--white);
	position: relative;
	z-index: 999;
}

.cards-wrapper .card-content .theme-btns:hover::before {
	width: 150px;
	left: 54%;
	background-color: var(--theme3);
}

.news-section-3 .section-title-area .theme-btn {
	border: 1px solid rgb(17, 162, 27);
	color: var(--theme3);
	background-color: transparent;
}

.news-section-3 .section-title-area .theme-btn::before {
	background-color: var(--theme3);
}

.news-section-3 .section-title-area .theme-btn::after {
	background-color: rgba(17, 162, 27, 0.3);
}

.news-section-3 .section-title-area .theme-btn:hover {
	color: var(--white);
}

.news-standard-wrapper .news-standard-items .news-card-items-4 {
	margin-bottom: 30px;
}

.news-standard-wrapper .news-standard-items .news-card-items-4 .news-image {
	overflow: hidden;
	border-radius: 12px;
}

.news-standard-wrapper .news-standard-items .news-card-items-4 .news-image img {
	width: 100%;
	height: 100%;
	transform: scale(1.02);
	transition: all 1.5s ease-out;
	border-radius: 12px;
}

.news-standard-wrapper .news-standard-items .news-card-items-4 .news-content .date-list {
	display: flex;
	align-items: center;
	gap: 20px;
	margin-top: 24px;
	margin-bottom: 15px;
}

@media (max-width: 1199px) {
	.news-standard-wrapper .news-standard-items .news-card-items-4 .news-content .date-list {
		flex-wrap: wrap;
		gap: 10px;
	}
}

.news-standard-wrapper .news-standard-items .news-card-items-4 .news-content .date-list li i {
	margin-right: 10px;
}

.news-standard-wrapper .news-standard-items .news-card-items-4 .news-content h2 {
	margin-bottom: 10px;
	font-size: 32px;
	font-weight: 600;
}

@media (max-width: 1199px) {
	.news-standard-wrapper .news-standard-items .news-card-items-4 .news-content h2 {
		font-size: 30px;
	}
}

@media (max-width: 575px) {
	.news-standard-wrapper .news-standard-items .news-card-items-4 .news-content h2 {
		font-size: 25px;
	}
}

.news-standard-wrapper .news-standard-items .news-card-items-4 .news-content h2 a {
	background-position: 0 95%;
	background-repeat: no-repeat;
	background-size: 0% 2px;
	display: inline;
}

.news-standard-wrapper .news-standard-items .news-card-items-4 .news-content h2 a:hover {
	color: var(--theme3);
	background-size: 100% 2px;
	background-image: linear-gradient(180deg, var(--theme3) 0%, var(--theme3) 100%);
}

.news-standard-wrapper .news-standard-items .news-card-items-4 .news-content .theme-btn {
	margin-top: 24px;
	background-color: transparent;
	color: var(--theme3);
	border: 1px solid var(--theme3);
}

.news-standard-wrapper .news-standard-items .news-card-items-4 .news-content .theme-btn::before {
	background-color: var(--theme3);
}

.news-standard-wrapper .news-standard-items .news-card-items-4 .news-content .theme-btn::after {
	background-color: rgba(17, 162, 27, 0.3);
}

.news-standard-wrapper .news-standard-items .news-card-items-4 .news-content .theme-btn:hover {
	color: var(--white);
}

.news-standard-wrapper .news-standard-items .news-card-items-4:hover .news-image img {
	-webkit-transform: scale3d(1.1, 1.1, 1);
	transform: scale3d(1.1, 1.1, 1);
}

.main-sideber .single-sideber-widget {
	margin-bottom: 30px;
	background-color: var(--bg3);
	padding: 30px;
	border-radius: 8px;
}

@media (max-width: 1399px) {
	.main-sideber .single-sideber-widget {
		padding: 21px;
	}
}

.main-sideber .single-sideber-widget .search-widget form {
	width: 100%;
	position: relative;
}

.main-sideber .single-sideber-widget .search-widget form input {
	background-color: var(--white);
	font-size: 18px;
	font-weight: 400;
	padding: 16px 20px;
	width: 100%;
	border: none;
	color: var(--text);
	border-radius: 6px;
}

.main-sideber .single-sideber-widget .search-widget form button {
	position: absolute;
	right: -2px;
	top: 0;
	width: 58px;
	border-radius: 6px;
	font-size: 18px;
	height: 100%;
	background-color: var(--theme3);
	color: var(--white);
	text-align: center;
	transition: all 0.3s ease-in-out;
	border-top-left-radius: 0;
	border-bottom-left-radius: 0;
}

.main-sideber .single-sideber-widget .search-widget form button:hover {
	background-color: var(--header);
}

.main-sideber .single-sideber-widget .widget-title {
	margin-bottom: 20px;
}

.main-sideber .single-sideber-widget .widget-title h3 {
	font-weight: 600;
	font-size: 22px;
}

.main-sideber .single-sideber-widget .amenities-list li {
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: 16px;
	font-weight: 500;
}

.main-sideber .single-sideber-widget .amenities-list li:not(:last-child) {
	margin-bottom: 20px;
}

.main-sideber .single-sideber-widget .category-list li {
	display: flex;
	align-items: center;
	justify-content: space-between;
	font-size: 16px;
	font-weight: 600;
	color: var(--header);
	transition: all 0.4s ease-in-out;
	background-color: var(--white);
	padding: 22px 25px;
	font-family: "Instrument Sans", sans-serif;
	line-height: 1;
	text-transform: capitalize;
	border-radius: 8px;
}

.main-sideber .single-sideber-widget .category-list li a {
	color: var(--header);
}

.main-sideber .single-sideber-widget .category-list li i {
	transition: all 0.4s ease-in-out;
	color: var(--header);
}

.main-sideber .single-sideber-widget .category-list li:not(:last-child) {
	margin-bottom: 20px;
}

.main-sideber .single-sideber-widget .category-list li span b {
	font-weight: 400;
	color: var(--theme);
}

.main-sideber .single-sideber-widget .category-list li:hover {
	background-color: var(--theme3);
}

.main-sideber .single-sideber-widget .category-list li:hover a {
	color: var(--white);
}

.main-sideber .single-sideber-widget .category-list li:hover i,
.main-sideber .single-sideber-widget .category-list li:hover span {
	color: var(--white);
}

.main-sideber .single-sideber-widget .recent-post-area .recent-items {
	display: flex;
	align-items: center;
	gap: 20px;
}

.main-sideber .single-sideber-widget .recent-post-area .recent-items .recent-thumb img {
	border-radius: 8px;
}

.main-sideber .single-sideber-widget .recent-post-area .recent-items:not(:last-child) {
	margin-bottom: 20px;
}

.main-sideber .single-sideber-widget .recent-post-area .recent-items .recent-content h4 {
	margin-bottom: 5px;
	font-weight: 600;
	font-size: 18px;
	line-height: 150%;
	font-family: "Inter", sans-serif;
}

@media (max-width: 1399px) {
	.main-sideber .single-sideber-widget .recent-post-area .recent-items .recent-content h4 {
		font-size: 16px;
	}
}

.main-sideber .single-sideber-widget .recent-post-area .recent-items .recent-content h4 a:hover {
	color: var(--theme3);
}

.main-sideber .single-sideber-widget .recent-post-area .recent-items .recent-content ul li {
	color: var(--text);
	font-weight: 500;
}

.main-sideber .single-sideber-widget .tagcloud a {
	display: inline-block;
	padding: 12px 18px;
	line-height: 1;
	font-weight: 600;
	background: var(--white);
	font-family: "Instrument Sans", sans-serif;
	margin-right: 10px;
	margin-bottom: 10px;
	text-transform: capitalize;
	border-radius: 4px;
}

.main-sideber .single-sideber-widget .tagcloud a:last-child {
	margin-right: 0;
}

.main-sideber .single-sideber-widget .tagcloud a:hover {
	background-color: var(--theme3);
	color: var(--white);
}

.news-details-area .blog-post-details .single-blog-post .post-featured-thumb {
	border-radius: 10px;
}

.news-details-area .blog-post-details .single-blog-post .post-featured-thumb img {
	width: 100%;
	height: 100%;
	border-radius: 10px;
}

.news-details-area .blog-post-details .single-blog-post .post-content {
	margin-top: 30px;
}

.news-details-area .blog-post-details .single-blog-post .post-content .post-list {
	gap: 30px;
	margin-bottom: 10px;
}

.news-details-area .blog-post-details .single-blog-post .post-content .post-list li {
	font-size: 14px;
	font-weight: 500;
}

.news-details-area .blog-post-details .single-blog-post .post-content .post-list li i {
	color: var(--theme3);
	margin-right: 5px;
}

.news-details-area .blog-post-details .single-blog-post .post-content h2 {
	margin-bottom: 20px;
	font-size: 42px;
}

@media (max-width: 1399px) {
	.news-details-area .blog-post-details .single-blog-post .post-content h2 {
		font-size: 30px;
	}
}

@media (max-width: 991px) {
	.news-details-area .blog-post-details .single-blog-post .post-content h2 {
		font-size: 30px;
	}
}

@media (max-width: 575px) {
	.news-details-area .blog-post-details .single-blog-post .post-content h2 {
		font-size: 21px;
	}
}

.news-details-area .blog-post-details .single-blog-post .post-content h2 a:hover {
	color: var(--theme);
}

.news-details-area .blog-post-details .single-blog-post .post-content .hilight-text {
	border-left: 4px solid var(--theme3);
	padding: 40px;
	background-color: var(--bg3);
	border-radius: 8px;
}

@media (max-width: 1399px) {
	.news-details-area .blog-post-details .single-blog-post .post-content .hilight-text {
		padding: 30px;
	}
}

.news-details-area .blog-post-details .single-blog-post .post-content .hilight-text p {
	max-width: 700px;
	font-weight: 500;
	text-transform: capitalize;
	font-style: italic;
	line-height: 26px;
}

.news-details-area .blog-post-details .single-blog-post .post-content .hilight-text .icon {
	float: right;
	margin-top: -30px;
	color: var(--theme3);
	font-size: 40px;
}

.news-details-area .blog-post-details .single-blog-post .post-content .details-image img {
	width: 100%;
	height: 100%;
	border-radius: 8px;
}

.news-details-area .blog-post-details .tag-share-wrap {
	border-top: 1px solid rgba(2, 6, 10, 0.08);
	border-bottom: 1px solid rgba(2, 6, 10, 0.08);
	padding: 30px 0;
}

.news-details-area .blog-post-details .tag-share-wrap .tagcloud a {
	display: inline-block;
	padding: 12px 26px;
	line-height: 1;
	background: var(--bg3);
	margin-right: 8px;
	text-transform: capitalize;
	font-weight: 500;
	-webkit-transition: all 0.4s ease-in-out;
	transition: all 0.4s ease-in-out;
	border-radius: 4px;
}

@media (max-width: 1399px) {
	.news-details-area .blog-post-details .tag-share-wrap .tagcloud a {
		padding: 12px 20px;
	}
}

@media (max-width: 575px) {
	.news-details-area .blog-post-details .tag-share-wrap .tagcloud a {
		margin-bottom: 5px;
	}
}

.news-details-area .blog-post-details .tag-share-wrap .tagcloud a:hover {
	background-color: var(--theme3);
	color: var(--white);
}

.news-details-area .blog-post-details .tag-share-wrap .social-share span {
	font-size: 18px;
	color: var(--header);
	font-weight: 600;
}

.news-details-area .blog-post-details .tag-share-wrap .social-share a {
	font-size: 18px;
	color: var(--header);
}

.news-details-area .blog-post-details .tag-share-wrap .social-share a:not(:last-child) {
	margin-right: 10px;
}

.news-details-area .blog-post-details .tag-share-wrap .social-share a:hover {
	color: var(--theme3);
}

.news-details-area .blog-post-details .comments-area {
	margin-top: 40px;
	padding: 50px 40px;
	background-color: var(--bg3);
	border-radius: 8px;
}

@media (max-width: 1399px) {
	.news-details-area .blog-post-details .comments-area {
		padding: 50px 30px;
	}
}

.news-details-area .blog-post-details .comments-area .comments-heading {
	margin-bottom: 30px;
}

@media (max-width: 575px) {
	.news-details-area .blog-post-details .comments-area .comments-heading {
		margin-bottom: 20px;
	}
}

.news-details-area .blog-post-details .comments-area .comments-heading h3 {
	font-size: 32px;
	font-weight: 600;
}

@media (max-width: 575px) {
	.news-details-area .blog-post-details .comments-area .comments-heading h3 {
		font-size: 28px;
	}
}

.news-details-area .blog-post-details .comments-area .blog-single-comment {
	border-bottom: 1px solid #e5e5e5;
}

.news-details-area .blog-post-details .comments-area .blog-single-comment.bb-none {
	border: none;
}

@media (max-width: 575px) {
	.news-details-area .blog-post-details .comments-area .blog-single-comment {
		flex-wrap: wrap;
		gap: 20px;
	}
}

.news-details-area .blog-post-details .comments-area .blog-single-comment .content .head .con h4 {
	margin-bottom: 5px;
	font-weight: 600;
	font-size: 20px;
}

.news-details-area .blog-post-details .comments-area .blog-single-comment .content .head .star i {
	color: var(--theme3);
	font-size: 14px;
}

.news-details-area .blog-post-details .comments-area .blog-single-comment .content .reply {
	border-radius: 30px;
	padding: 5px 15px;
	font-weight: 400;
	background-color: var(--white);
	color: var(--theme3);
}

.news-details-area .blog-post-details .comment-form-wrap {
	background-color: var(--bg3);
	border-radius: 8px;
	padding: 50px 40px;
	margin-top: 40px;
}

.news-details-area .blog-post-details .comment-form-wrap h3 {
	font-size: 32px;
	margin-bottom: 30px;
	font-weight: 600;
}

@media (max-width: 575px) {
	.news-details-area .blog-post-details .comment-form-wrap h3 {
		font-size: 28px;
		margin-bottom: 20px;
	}
}

.news-details-area .blog-post-details .comment-form-wrap .form-clt input,
.news-details-area .blog-post-details .comment-form-wrap .form-clt textarea {
	width: 100%;
	outline: none;
	border: none;
	background-color: var(--white);
	border: none;
	padding: 16px 20px;
	font-weight: 500;
	border-radius: 5px;
}

.news-details-area .blog-post-details .comment-form-wrap .form-clt input::placeholder,
.news-details-area .blog-post-details .comment-form-wrap .form-clt textarea::placeholder {
	color: var(--text);
}

.news-details-area .blog-post-details .comment-form-wrap .form-clt textarea {
	padding-bottom: 100px;
}

.news-card-wrapper {
	margin-top: 18px;
}

.news-card-wrapper .news-card-items-5 {
	display: flex;
	align-items: center;
	justify-content: space-between;
	border-top: 1px solid rgba(47, 47, 47, 0.2);
	border-bottom: 1px solid rgba(47, 47, 47, 0.2);
	padding: 30px 0;
	margin-top: 30px;
	overflow: hidden;
}

@media (max-width: 1399px) {
	.news-card-wrapper .news-card-items-5 {
		flex-wrap: wrap;
		gap: 30px;
	}
}

@media (max-width: 1399px) {
	.news-card-wrapper .news-card-items-5 .news-image {
		flex-basis: 100%;
	}
}

.news-card-wrapper .news-card-items-5 .news-image img {
	width: 100%;
	height: 100%;
	border-radius: 10px;
}

.news-card-wrapper .news-card-items-5 .post-date {
	width: 180px;
	height: 150px;
	background-color: var(--theme3);
	border-radius: 20px;
	display: flex;
	align-items: center;
	flex-direction: column;
	justify-content: center;
}

.news-card-wrapper .news-card-items-5 .post-date h3 {
	font-size: 50px;
	font-weight: 600;
	color: var(--white);
}

.news-card-wrapper .news-card-items-5 .post-date p {
	color: var(--white);
}

.news-card-wrapper .news-card-items-5 .content span {
	color: var(--theme3);
}

.news-card-wrapper .news-card-items-5 .content h4 {
	font-size: 30px;
}

@media (max-width: 991px) {
	.news-card-wrapper .news-card-items-5 .content h4 {
		font-size: 20px;
	}

	.news-card-wrapper .news-card-items-5 .content h4 br {
		display: none;
	}
}

.news-card-wrapper .news-card-items-5 .content h4 a {
	background-position: 0 95%;
	background-repeat: no-repeat;
	background-size: 0% 2px;
	display: inline;
}

.news-card-wrapper .news-card-items-5 .content h4 a:hover {
	color: var(--theme3);
	background-size: 100% 2px;
	background-image: linear-gradient(180deg, var(--theme3) 0%, var(--theme3) 100%);
}

.news-card-wrapper .news-card-items-5 .arrow-icon {
	width: 80px;
	height: 80px;
	line-height: 80px;
	text-align: center;
	border-radius: 100px;
	background-color: var(--header);
	color: var(--white);
	font-size: 25px;
	transition: all 0.4s ease-in-out;
}

.news-card-wrapper .news-card-items-5 .arrow-icon:hover {
	background-color: var(--theme3);
}

.pricing-box-items {
	margin-top: 30px;
	border-radius: 8px;
	background-color: var(--bg3);
	padding: 50px 30px;
	position: relative;
	z-index: 9;
}

.pricing-box-items .nexella-hover-bx {
	background: var(--theme3);
	height: 100%;
	top: 0;
	opacity: 0;
	position: absolute;
	-webkit-transform: scaleX(0);
	transform: scaleX(0);
	-webkit-transition: all 0.5s ease 0s;
	transition: all 0.5s ease 0s;
	width: 25%;
	z-index: -1;
}

.pricing-box-items .hover-bx {
	left: 0;
	-webkit-transition-delay: 0.105s;
	transition-delay: 0.105s;
	border-top-left-radius: 8px;
	border-bottom-left-radius: 8px;
}

.pricing-box-items .hover-bx2 {
	left: 25%;
	-webkit-transition-delay: 0.105s;
	transition-delay: 0.105s;
}

.pricing-box-items .hover-bx3 {
	left: 50%;
	-webkit-transition-delay: 0.105s;
	transition-delay: 0.105s;
}

.pricing-box-items .hover-bx4 {
	left: 75%;
	-webkit-transition-delay: 0s;
	transition-delay: 0s;
	border-top-right-radius: 8px;
	border-bottom-right-radius: 8px;
}

.pricing-box-items .pricing-header {
	margin-bottom: 30px;
}

.pricing-box-items .pricing-header span {
	font-size: 20px;
	font-weight: 500;
	text-transform: capitalize;
	display: inline-block;
	margin-bottom: 20px;
	color: var(--white);
}

.pricing-box-items .pricing-header h3 {
	font-size: 48px;
	font-weight: 600;
	line-height: 1;
	color: var(--white);
	margin-bottom: 25px;
}

@media (max-width: 1399px) {
	.pricing-box-items .pricing-header h3 {
		font-size: 55px;
	}
}

.pricing-box-items .pricing-header h3 sub {
	font-size: 16px;
	font-weight: 500;
	color: var(--white);
	letter-spacing: initial;
	margin-left: -12px;
}

.pricing-box-items .pricing-header p {
	color: var(--white);
}

.pricing-box-items .theme-btn {
	background-color: var(--theme3);
	width: 100%;
	color: var(--white);
	display: inline-block;
	border-radius: 8px;
}

@media (max-width: 1399px) {
	.pricing-box-items .theme-btn {
		margin-top: 30px;
	}
}

.pricing-box-items .theme-btn::before {
	background-color: var(--white);
	border-radius: 8px;
}

.pricing-box-items .theme-btn:after {
	background-color: rgba(255, 255, 255, 0.3);
	border-radius: 8px;
}

.pricing-box-items .theme-btn:hover {
	color: var(--theme3);
}

.pricing-box-items .pricing-list {
	margin-top: 30px;
}

.pricing-box-items .pricing-list span {
	font-size: 14px;
	font-weight: 500;
	color: var(--white);
}

@media (max-width: 1199px) {
	.pricing-box-items .pricing-list span {
		letter-spacing: inherit;
	}
}

.pricing-box-items .pricing-list ul {
	margin-top: 20px;
}

.pricing-box-items .pricing-list ul li {
	color: var(--white);
	font-size: 16px;
	font-weight: 500;
	line-height: 162.5%;
	letter-spacing: -1px;
	display: flex;
	align-items: center;
	gap: 8px;
}

.pricing-box-items .pricing-list ul li i {
	font-size: 18px;
	color: var(--theme3);
}

.pricing-box-items .pricing-list ul li:not(:last-child) {
	margin-bottom: 15px;
}

.pricing-box-items:hover .nexella-hover-bx {
	opacity: 1;
	-webkit-transform: scale(1);
	transform: scale(1);
}

.pricing-box-items:hover .pricing-header span {
	color: var(--white);
}

.pricing-box-items:hover .pricing-header h3 {
	color: var(--white);
}

.pricing-box-items:hover .pricing-header h3 sub {
	color: var(--white);
}

.pricing-box-items:hover .pricing-header p {
	color: var(--white);
}

.pricing-box-items:hover .theme-btn {
	background-color: var(--header);
}

.pricing-box-items:hover .pricing-list span {
	color: var(--white);
}

.pricing-box-items:hover .pricing-list ul li {
	color: var(--white);
}

.pricing-box-items:hover .pricing-list ul li i {
	color: var(--white);
}

.marquee {
	position: relative;
	--duration: 30s;
	--gap: 0px;
	display: flex;
	overflow: visible;
	user-select: none;
	gap: 0;
	margin-bottom: 120px;
}

.marquee .image-trail-images {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	z-index: 0;
}

.marquee .image-trail-images img {
	position: absolute;
	top: 0;
	left: 0;
	width: 230px;
	aspect-ratio: 1;
	opacity: 0;
	pointer-events: none;
	border-radius: 10px;
	will-change: transform, opacity;
}

@media (max-width: 1399px) {
	.marquee {
		margin-bottom: 100px;
		margin-top: -20px;
	}
}

@media (max-width: 991px) {
	.marquee {
		margin-bottom: 80px;
		margin-top: 0;
	}
}

.marquee .marquee-group {
	flex-shrink: 0;
	display: flex;
	align-items: center;
	justify-content: space-around;
	gap: 30px;
	min-width: 100%;
	animation: scroll var(--duration) linear infinite;
}

.marquee .text {
	color: rgb(80, 98, 74);
	font-size: 200px;
	font-weight: 700;
	text-transform: capitalize;
	display: flex;
	align-items: center;
	gap: 50px;
	line-height: 75%;
}

@media (max-width: 1399px) {
	.marquee .text {
		gap: 30px;
		font-size: 150px;
		line-height: 115%;
	}
}

@media (max-width: 575px) {
	.marquee .text {
		gap: 20px;
		font-size: 100px;
	}
}

.marquee.style-2 {
	margin-top: 120px;
}

@media (max-width: 1399px) {
	.marquee.style-2 {
		margin-top: 100px;
	}
}

@media (max-width: 991px) {
	.marquee.style-2 {
		margin-top: 80px;
	}
}

.marquee.style-2 .text {
	font-size: 100px;
	font-weight: 700;
	color: rgb(218, 218, 218);
	text-transform: uppercase;
}

.marquee-section {
	position: relative;
}

.marquee-section .image-trail-images {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	z-index: 0;
}

.marquee-section .image-trail-images img {
	position: absolute;
	top: 0;
	left: 0;
	width: 230px;
	aspect-ratio: 1;
	opacity: 0;
	pointer-events: none;
	border-radius: 10px;
	will-change: transform, opacity;
}

.project-section {
	margin: 0 30px;
}

@media (max-width: 1399px) {
	.project-section {
		margin: 0 15px;
	}
}

.project-wrapper {
	margin-top: 48px;
}

.project-wrapper .main-box {
	padding: 0;
	gap: 30px;
	display: flex;
	align-items: center;
}

@media (max-width: 1399px) {
	.project-wrapper .main-box {
		/* flex-wrap: wrap; */
		justify-content: center;
		gap: 30px;
	}
}

.project-wrapper .main-box .box-2 {
	background-image: url(../../assets/img/home-1/project/04.jpg);
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
	z-index: 1;
	width: 24% !important;
	height: 477px;
	position: relative;
	overflow: hidden;
	list-style: none;
	transition: all 0.4s ease-in-out;
	overflow: hidden;
	border-radius: 10px;
}

@media (max-width: 1399px) {
	.project-wrapper .main-box .box-2 {
		width: 570px !important;
	}
}

@media (max-width: 575px) {
	.project-wrapper .main-box .box-2 {
		height: 350px;
		object-fit: cover;
	}

	.project-wrapper .main-box .box-2 .project-content {
		opacity: 1;
		visibility: visible;
		bottom: 30px;
	}
}

.project-wrapper .main-box .box-2 .project-content {
	position: absolute;
	bottom: -100px;
	left: 30px;
	opacity: 0;
	visibility: hidden;
	transition: all 0.4s ease-in-out;
	background-color: var(--white);
	padding: 20px 25px;
	background-color: rgba(255, 255, 255);
	backdrop-filter: blur(5px);
	right: 30px;
	border-radius: 10px;
}

@media (max-width: 1600px) {
	.project-wrapper .main-box .box-2 .project-content {
		left: 20px;
		right: 20px;
		padding: 20px 20px;
	}
}

@media (max-width: 1600px) {
	.project-wrapper .main-box .box-2 .project-content h3 {
		font-size: 20px;
	}
}

.project-wrapper .main-box .box-2 .project-content h3 a {
	background-position: 0 95%;
	background-repeat: no-repeat;
	background-size: 0% 2px;
	display: inline;
}

.project-wrapper .main-box .box-2 .project-content h3 a:hover {
	color: var(--theme);
	background-size: 100% 2px;
	background-image: linear-gradient(180deg, var(--theme) 0%, var(--theme) 100%);
}

.project-wrapper .main-box .box-2 .project-content .tag-list {
	display: flex;
	align-items: center;
	gap: 25px;
	margin-top: 20px;
}

@media (max-width: 1600px) {
	.project-wrapper .main-box .box-2 .project-content .tag-list {
		font-size: 15px;
		gap: 10px;
	}
}

@media (max-width: 1399px) {
	.project-wrapper .main-box .box-2 .project-content .tag-list {
		font-size: 15px;
	}
}

@media (max-width: 1399px) {
	.project-wrapper .main-box .box-2 .project-content .tag-list {
		flex-wrap: wrap;
		gap: 12px;
	}
}

.project-wrapper .main-box .box-2 .project-content .tag-list span {
	border: 1px solid rgba(17, 162, 27, 0.2);
	color: var(--theme3);
	padding: 2px 10px;
	border-radius: 6px;
}

.project-wrapper .main-box .box-2.bg-1 {
	background-image: url(../../assets/img/home-1/project/01.jpg);
}

.project-wrapper .main-box .box-2.bg-2 {
	background-image: url(../../assets/img/home-1/project/02.jpg);
}

.project-wrapper .main-box .box-2.bg-3 {
	background-image: url(../../assets/img/home-1/project/03.jpg);
}

.project-wrapper .main-box .box-2.bg-4 {
	background-image: url(../../assets/img/home-1/project/05.jpg);
}

.project-wrapper .main-box .box-2.bg-5 {
	background-image: url(../../assets/img/home-1/project/06.jpg);
}

.project-wrapper .main-box .box-2.active {
	width: 52% !important;
}

.project-wrapper .main-box .box-2.active .project-content {
	opacity: 1;
	visibility: visible;
	bottom: 30px;
}

.project-wrapper-2 {
	margin-top: 48px;
}

@media (max-width: 575px) {
	.project-wrapper-2 {
		margin-top: 30px;
	}
}

.project-wrapper-2 .project-left-item {
	position: relative;
}

.project-wrapper-2 .project-left-item .project-image {
	position: relative;
	border-radius: 10px;
	margin-bottom: 20px;
}

.project-wrapper-2 .project-left-item .project-image::before {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	content: "";
	background-color: rgba(47, 47, 47, 0.7);
	border-radius: 10px;
}

.project-wrapper-2 .project-left-item .project-image img {
	width: 100%;
	height: 100%;
	border-radius: 10px;
}

.project-wrapper-2 .project-left-item .project-image .project-content {
	position: absolute;
	left: 30px;
	bottom: 30px;
}

@media (max-width: 1399px) {
	.project-wrapper-2 .project-left-item .project-image .project-content {
		left: 20px;
		bottom: 20px;
	}
}

.project-wrapper-2 .project-left-item .project-image .project-content span {
	display: inline-block;
	background-color: var(--white);
	border-radius: 100px;
	width: 10px;
	height: 10px;
}

.project-wrapper-2 .project-left-item .project-image .project-content h3 {
	font-size: 22px;
	font-weight: 700;
	margin-top: 10px;
}

@media (max-width: 1399px) {
	.project-wrapper-2 .project-left-item .project-image .project-content h3 {
		font-size: 20px;
	}
}

.project-wrapper-2 .project-left-item .project-image .project-content h3 a {
	background-position: 0 95%;
	background-repeat: no-repeat;
	background-size: 0% 2px;
	display: inline;
	color: var(--white);
}

.project-wrapper-2 .project-left-item .project-image .project-content h3 a:hover {
	color: var(--theme2);
	background-size: 100% 2px;
	background-image: linear-gradient(180deg, var(--theme2) 0%, var(--theme2) 100%);
}

.project-wrapper-2 .project-left-item .project-image .project-content .tag {
	display: flex;
	align-items: center;
	gap: 20px;
	margin-top: 20px;
}

.project-wrapper-2 .project-left-item .project-image .project-content .tag h4 {
	color: var(--white);
	border: 1px solid rgba(255, 255, 255, 0.3);
	padding: 4px 10px;
	border-radius: 100px;
	font-size: 16px;
	font-weight: 600;
}

.project-wrapper-2 .project-thumb-item {
	position: relative;
}

.project-wrapper-2 .project-thumb-item .project-thumb {
	position: relative;
	max-width: 930px;
	height: 735px;
	overflow: visible;
	border-radius: 10px;
	width: 100%;
}

@media (max-width: 1399px) {
	.project-wrapper-2 .project-thumb-item .project-thumb {
		height: 608px;
	}
}

@media (max-width: 1199px) {
	.project-wrapper-2 .project-thumb-item .project-thumb {
		height: 635px;
	}
}

@media (max-width: 991px) {
	.project-wrapper-2 .project-thumb-item .project-thumb {
		height: 450px;
	}
}

@media (max-width: 767px) {
	.project-wrapper-2 .project-thumb-item .project-thumb {
		height: 400px;
	}
}

.project-wrapper-2 .project-thumb-item .project-thumb h2 {
	font-size: 50px;
	font-weight: 700;
	color: transparent;
	-webkit-text-stroke: 1px rgb(79, 127, 58);
	position: absolute;
	right: 40px;
	top: 40px;
}

@media (max-width: 1399px) {
	.project-wrapper-2 .project-thumb-item .project-thumb h2 {
		display: none;
	}
}

.project-wrapper-2 .project-thumb-item .project-thumb .thumb-img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	opacity: 0;
	transition: opacity 0.35s ease;
	border-radius: 10px;
}

.project-wrapper-2 .project-thumb-item .project-thumb .thumb-img.active {
	opacity: 1;
}

.project-card-items-4 .project-image {
	height: 500px;
	position: relative;
	overflow: hidden;
}

.project-card-items-4 .project-image img {
	width: 100%;
	height: 100%;
	border-radius: 12px;
	object-fit: cover;
}

.project-card-items-4 .project-image .content {
	border-radius: 4px;
	background: var(--theme3);
	padding: 20px 24px;
	display: inline-block;
	position: absolute;
	bottom: -100px;
	left: 20px;
	line-height: 1;
	opacity: 0;
	visibility: hidden;
	transition: all 0.4s ease-in-out;
}

@media (max-width: 575px) {
	.project-card-items-4 .project-image .content {
		text-align: center;
		right: 0;
		width: calc(100% - 40px);
	}
}

.project-card-items-4 .project-image .content p {
	font-size: 15px;
	font-weight: 600;
	color: var(--white);
}

.project-card-items-4 .project-image .content h2 {
	font-weight: 700;
	font-size: 24px;
	margin-top: 5px;
}

.project-card-items-4 .project-image .content h2 a {
	color: var(--white);
}

.project-card-items-4:hover .project-image .content {
	opacity: 1;
	visibility: visible;
	bottom: 20px;
}

.project-details-wrapper .project-details-image {
	margin-bottom: 30px;
	border-radius: 20px;
	overflow: hidden;
}

.project-details-wrapper .project-details-image img {
	width: 100%;
	height: 100%;
	border-radius: 20px;
}

.project-details-wrapper .project-details-content h2 {
	font-size: 32px;
	margin-bottom: 20px;
}

@media (max-width: 1199px) {
	.project-details-wrapper .project-details-content h2 {
		font-size: 28px;
	}
}

.project-details-wrapper .project-details-content .thumb {
	border-radius: 10px;
	overflow: hidden;
}

.project-details-wrapper .project-details-content .thumb img {
	width: 100%;
	height: 100%;
	border-radius: 10px;
}

.project-details-wrapper .project-information {
	background-color: var(--bg3);
	padding: 30px;
	border-radius: 10px;
}

@media (max-width: 1399px) {
	.project-details-wrapper .project-information {
		padding: 22px;
	}
}

.project-details-wrapper .project-information .information-list {
	margin-top: 20px;
}

.project-details-wrapper .project-information .information-list li {
	color: var(--text);
	display: flex;
	align-items: center;
	gap: 16px;
	font-size: 16px;
}

@media (max-width: 1199px) {
	.project-details-wrapper .project-information .information-list li {
		gap: 14px;
	}
}

.project-details-wrapper .project-information .information-list li:not(:last-child) {
	margin-bottom: 15px;
	border-bottom: 1px solid rgba(47, 47, 47, 0.2);
	padding-bottom: 15px;
}

.project-details-wrapper .project-information .information-list li span {
	color: var(--header);
	font-size: 18px;
}

@media (max-width: 1199px) {
	.project-details-wrapper .project-information .information-list li span {
		font-size: 16px;
	}
}

.our-project-wrapper .project-thumb {
	overflow: hidden;
	position: relative;
}

.our-project-wrapper .project-thumb::before {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	content: "";
	background: linear-gradient(180deg, rgba(17, 162, 27, 0) 50%, #000000ab 90%);
	border-radius: 10px;
	opacity: 1;
	/* visibility: hidden; */
	transition: all 0.4s ease-in-out;
}

.our-project-wrapper .project-thumb img {
	width: 100%;
	height: 100%;
	border-radius: 12px;
}

.our-project-wrapper .project-thumb .content {
	position: absolute;
	left: 25px;
	bottom: -39px;
	opacity: 1;
	/* visibility: hidden; */
	transition: all 0.4s ease-in-out;
}

.our-project-wrapper .project-thumb .content p {
	opacity: 0;
	visibility: hidden;
}

.our-project-wrapper .project-thumb:hover p {
	opacity: 1;
	visibility: visible;
}

.our-project-wrapper .project-thumb .content h3 a {
	background-position: 0 95%;
	background-repeat: no-repeat;
	background-size: 0% 2px;
	display: inline;
	color: var(--white);
}

.our-project-wrapper .project-thumb .content h3 a:hover {
	color: var(--white);
	background-size: 100% 2px;
	background-image: linear-gradient(180deg, var(--white) 0%, var(--white) 100%);
}

.our-project-wrapper .project-thumb .content p {
	color: var(--white);
	max-width: 400px;
	margin-top: 10px;
}

.our-project-wrapper .project-thumb:hover::before {
	opacity: 1;
	visibility: visible;
	background: linear-gradient(180deg, rgba(17, 162, 27, 0) 50%, #000000ab 90%);

}

.our-project-wrapper .project-thumb:hover .content {
	opacity: 1;
	visibility: visible;
	bottom: 25px;
}

.our-project-wrapper .drone-thumb img {
	width: 100%;
	height: 100%;
}

.service-top-item {
	border-bottom: 1px solid rgba(255, 255, 255, 0.2);
	padding-bottom: 60px;
	margin-bottom: 60px;
}

@media (max-width: 1399px) {
	.service-top-item {
		padding-bottom: 30px;
		margin-bottom: 30px;
	}
}

.service-top-item .count-item h2 {
	font-weight: 600;
	font-size: 200px;
	color: rgba(255, 255, 255, 0.2);
	line-height: 94%;
}

@media (max-width: 1399px) {
	.service-top-item .count-item h2 {
		font-size: 90px;
	}
}

.service-top-item .count-item p {
	font-size: 24px;
	font-weight: 400;
	color: rgba(255, 255, 255, 0.2);
	max-width: 318px;
}

@media (max-width: 1399px) {
	.service-top-item .count-item p {
		font-size: 18px;
	}
}

.service-top-item .count-item.style-2 {
	margin-top: 90px;
}

@media (max-width: 1399px) {
	.service-top-item .count-item.style-2 {
		margin-top: 0;
	}
}

.service-top-item .count-item.active h2 {
	color: var(--white);
}

.service-top-item .count-item.active p {
	color: var(--white);
}

.service-top-item .tomato-image {
	margin-top: -120px;
}

@media (max-width: 1399px) {
	.service-top-item .tomato-image {
		display: none;
	}
}

.service-top-item .tomato-image img {
	width: 100%;
	height: 100%;
}

.service-main-box {
	background-color: var(--white);
	border-radius: 20px;
}

.service-main-box .service-item {
	border-bottom: 1px solid rgba(47, 47, 47, 0.2);
	padding: 40px 0;
	position: relative;
}

.service-main-box .service-item .text {
	display: flex;
	gap: 40px;
	align-items: start;
	margin-left: 40px;
}

@media (max-width: 1399px) {
	.service-main-box .service-item .text {
		gap: 20px;
		margin-left: 20px;
	}
}

.service-main-box .service-item .text span {
	font-weight: 600;
	color: var(--theme);
	font-size: 20px;
	font-family: "Instrument Sans", sans-serif;
	display: inline-block;
}

.service-main-box .service-item .text h3 {
	font-size: 100px;
}

@media (max-width: 1399px) {
	.service-main-box .service-item .text h3 {
		font-size: 60px;
	}
}

@media (max-width: 991px) {
	.service-main-box .service-item .text h3 {
		font-size: 45px;
	}
}

@media (max-width: 767px) {
	.service-main-box .service-item .text h3 {
		font-size: 30px;
	}
}

.service-main-box .service-item .hover-image {
	width: 287px;
	height: 228px;
	position: absolute;
	top: 50%;
	left: 0;
	background-size: cover;
	background-repeat: no-repeat;
	background-position-x: 75%;
	border-radius: 30px;
	opacity: 0;
	transition: transform 0.3s ease-out, opacity 0.3s ease-out;
	margin: -200px 0 0 -50px;
	overflow: hidden;
	pointer-events: none;
	z-index: 99;
	visibility: hidden;
	will-change: transform;
	filter: drop-shadow(0px 4px 150px #C8433A);
}

@media (max-width: 991px) {
	.service-main-box .service-item .hover-image {
		display: none !important;
	}
}

.service-main-box .service-item:hover .text h3 a {
	color: var(--theme);
}

.service-section {
	position: relative;
	z-index: 9;
}

.service-section .section-title-area {
	border-bottom: 1px solid rgba(255, 255, 255, 0.2);
	padding-bottom: 60px;
	margin-bottom: 60px !important;
}

@media (max-width: 1399px) {
	.service-section .section-title-area {
		padding-bottom: 30px;
		margin-bottom: 30px !important;
	}
}

@media (max-width: 1399px) {
	.service-section .section-title-area p {
		max-width: 600px;
	}
}

@media (max-width: 1199px) {
	.service-section .section-title-area p {
		max-width: 415px;
	}
}

@media (max-width: 991px) {
	.service-section .section-title-area p {
		max-width: initial;
	}
}

.service-section .tree-image {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	z-index: -1;
}

.service-section .tree-image img {
	width: 100%;
	height: 100%;
}

.service-bg-item {
	position: relative;
	border-radius: 10px;
	height: 487px;
}

@media (max-width: 767px) {
	.service-bg-item {
		height: 430px;
	}
}

@media (max-width: 991px) {
	.service-bg-item {
		height: 506px;
	}
}

.service-bg-item::before {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	content: "";
	background: linear-gradient(180deg, rgba(47, 47, 47, 0) 0%, #2F2F2F 100%);
	border-radius: 10px;
}

.service-bg-item .service-cont {
	position: absolute;
	left: 40px;
	bottom: 40px;
}

@media (max-width: 1399px) {
	.service-bg-item .service-cont {
		left: 30px;
		bottom: 30px;
	}
}

.service-bg-item .service-cont .theme-btn-2 {
	margin-top: 30px;
	border: 1px solid var(--theme2);
}

.service-bg-item .service-cont .theme-btn-2:hover {
	color: var(--theme2);
}

.service-card-items-2 {
	border-radius: 10px;
	background-color: rgb(250, 247, 240);
	padding: 30px;
	position: relative;
}

@media (max-width: 1399px) {
	.service-card-items-2 {
		padding: 24px;
	}
}

.service-card-items-2.style-2 {
	background-color: #F3FAF3;
}

.service-card-items-2.style-2::before {
	background-color: var(--theme3);
}

.service-card-items-2.style-2 h2 {
	font-size: 24px;
	font-weight: 700;
	line-height: 120%;
	text-transform: capitalize;
}

@media (max-width: 1399px) {
	.service-card-items-2.style-2 h2 {
		font-size: 20px;
	}
}

@media (max-width: 1199px) {
	.service-card-items-2.style-2 h2 {
		font-size: 24px;
	}
}

@media (max-width: 767px) {
	.service-card-items-2.style-2 h2 {
		font-size: 20px;
	}
}

.service-card-items-2.style-2:hover .top-content .tag-list span {
	color: var(--white);
	border: 1px solid rgba(255, 255, 255, 0.3);
}

.service-card-items-2.style-2:hover .top-content p {
	color: var(--white);
}

.service-card-items-2.style-2:hover h2 {
	position: relative;
}

.service-card-items-2.style-2:hover h2 a {
	color: var(--white);
}

.service-card-items-2::before {
	position: absolute;
	content: "";
	width: 8px;
	height: 31px;
	background-color: var(--theme2);
	border-radius: 0px 100px 100px 0px;
	bottom: 30px;
	left: 0;
	transition: all 0.4s ease-in-out;
}

.service-card-items-2 .top-content .tag-list {
	display: flex;
	align-items: center;
	gap: 20px;
	margin-bottom: 30px;
}

@media (max-width: 1399px) {
	.service-card-items-2 .top-content .tag-list {
		flex-wrap: wrap;
	}
}

.service-card-items-2 .top-content .tag-list span {
	border: 1px solid rgba(47, 47, 47, 0.2);
	font-weight: 500;
	color: rgb(47, 47, 47);
	border-radius: 100px;
	padding: 3px 10px;
}

.service-card-items-2 .top-content p {
	max-width: 376px;
}

.service-card-items-2 .service-image {
	margin-top: 30px;
	margin-bottom: 30px;
	overflow: hidden;
}

.service-card-items-2 .service-image img {
	border-radius: 10px;
	width: 100%;
	height: 100%;
}

.service-card-items-2 .service-image::after {
	content: "";
	position: absolute;
	width: 200%;
	height: 0%;
	left: 50%;
	top: 50%;
	background-color: rgba(255, 255, 255, 0.3);
	transform: translate(-50%, -50%) rotate(-45deg);
	z-index: 1;
}

@media (max-width: 1399px) {
	.service-card-items-2 h3 {
		font-size: 20px;
	}
}

@media (max-width: 1199px) {
	.service-card-items-2 h3 {
		font-size: 24px;
	}
}

@media (max-width: 767px) {
	.service-card-items-2 h3 {
		font-size: 20px;
	}
}

.service-card-items-2 h3 a {
	background-position: 0 95%;
	background-repeat: no-repeat;
	background-size: 0% 2px;
	display: inline;
}

.service-card-items-2 h3 a:hover {
	color: var(--header);
	background-size: 100% 2px;
	background-image: linear-gradient(180deg, var(--header) 0%, var(--header) 100%);
}

.service-card-items-2:hover::before {
	width: 100%;
	height: 100%;
	bottom: 0;
	top: 0;
	right: 0;
	left: 0;
	border-radius: 10px;
}

.service-card-items-2:hover .service-image {
	position: relative;
	z-index: 999;
}

.service-card-items-2:hover .service-image::after {
	height: 250%;
	transition: all 600ms linear;
	background-color: transparent;
}

.service-card-items-2:hover .top-content {
	position: relative;
	z-index: 999;
}

.service-card-items-2:hover h3 {
	position: relative;
	z-index: 999;
}

.service-image-item {
	position: relative;
}

.service-image-item .slider-thumb img {
	width: 100%;
	height: 100%;
	border-radius: 10px;
}

.service-image-item .swiper-dot4 {
	position: absolute;
	bottom: 40px;
	left: 50%;
	transform: translateX(-50%);
	z-index: 999;
}

.service-section-2 {
	position: relative;
	padding-top: 460px;
}

@media (max-width: 1600px) {
	.service-section-2 {
		padding-top: 400px;
	}
}

@media (max-width: 1399px) {
	.service-section-2 {
		padding-top: 100px;
	}
}

@media (max-width: 991px) {
	.service-section-2 {
		padding-top: 80px;
	}
}

.service-section-2 .mask-image {
	position: absolute;
	left: 60px;
	right: 60px;
	top: 110px;
}

@media (max-width: 1399px) {
	.service-section-2 .mask-image {
		display: none;
	}
}

.service-section-2 .mask-image img {
	width: 100%;
	height: 100%;
}

.service-box-itemss-3 {
	padding: 30px;
	border-radius: 10px;
	background-color: var(--white);
	border: none;
}

@media (max-width: 1399px) {
	.service-box-itemss-3 {
		padding: 25px;
	}
}

.service-box-itemss-3 .service-image {
	position: relative;
	overflow: hidden;
}

.service-box-itemss-3 .service-image img {
	width: 100%;
	height: 100%;
	border-radius: 10px;
	display: inline-block;
	transition: all 500ms ease;
}

.service-box-itemss-3 .service-image img:first-child {
	position: absolute;
	left: 0;
	top: 0;
	right: 0;
	bottom: 0;
	z-index: 1;
	transform: translateX(50%) scaleX(2);
	opacity: 0;
	filter: blur(10px);
}

.service-box-itemss-3 .content {
	margin-top: 30px;
}

.service-box-itemss-3 .content h3 {
	margin-bottom: 15px;
}

@media (max-width: 1399px) {
	.service-box-itemss-3 .content h3 {
		font-size: 20px;
	}
}

.service-box-itemss-3 .content h3 a {
	background-position: 0 95%;
	background-repeat: no-repeat;
	background-size: 0% 2px;
	display: inline;
}

.service-box-itemss-3 .content h3 a:hover {
	color: var(--theme3);
	background-size: 100% 2px;
	background-image: linear-gradient(180deg, var(--theme3) 0%, var(--theme3) 100%);
}

.service-box-itemss-3 .content p {
	margin-bottom: 30px;
}

.service-box-itemss-3 .content .theme-btns {
	position: relative;
	margin-left: 15px;
}

.service-box-itemss-3 .content .theme-btns span {
	opacity: 0;
	visibility: hidden;
	display: inline-block;
	margin-left: 5px;
}

.service-box-itemss-3 .content .theme-btns::before {
	position: absolute;
	content: "";
	top: 50%;
	left: 8%;
	transform: translate(-50%, -50%);
	width: 52px;
	height: 52px;
	background-color: rgba(17, 162, 27, 0.1);
	border-radius: 100px;
	transition: all 0.4s ease-in-out;
}

.service-box-itemss-3 .content .theme-btns:hover {
	color: var(--white);
}

.service-box-itemss-3 .content .theme-btns:hover img {
	filter: brightness(0) invert(1);
}

.service-box-itemss-3 .content .theme-btns:hover span {
	opacity: 1;
	visibility: visible;
	color: var(--white);
	position: relative;
	z-index: 999;
}

.service-box-itemss-3 .content .theme-btns:hover::before {
	width: 189px;
	left: 51%;
	background-color: var(--theme3);
}

.service-box-itemss-3 .content .tag-list {
	display: flex;
	align-items: center;
	gap: 8px;
	margin-top: 35px;
}

@media (max-width: 1399px) {
	.service-box-itemss-3 .content .tag-list {
		flex-wrap: wrap;
	}
}

.service-box-itemss-3 .content .tag-list span {
	border: 1px solid rgba(47, 47, 47, 0.2);
	font-weight: 500;
	color: rgb(142, 142, 142);
	border-radius: 100px;
	padding: 3px 15px;
	font-size: 15px;
	line-height: 1.6;
	white-space: nowrap;
}

.service-box-itemss-3:hover {
	border: none;
}

.service-box-itemss-3:hover .service-image img:first-child {
	transform: translateX(0) scaleX(1);
	opacity: 1;
	filter: blur(0);
}

.service-box-itemss-3:hover .service-image img:nth-child(2) {
	transform: translateX(-50%) scaleX(2);
	opacity: 0;
	filter: blur(10px);
}

.service-content-3 {
	margin-left: 15px;
}

@media (max-width: 1399px) {
	.service-content-3 {
		margin-left: 0;
	}
}

.service-content-3 .text {
	max-width: 450px;
	margin-top: 15px;
}

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

.service-content-3 .arrow-button .array-prev,
.service-content-3 .arrow-button .array-next {
	width: 48px;
	height: 48px;
	line-height: 35px;
	text-align: center;
	border-radius: 100px;
	background-color: var(--white);
	transition: all 0.4s ease-in-out;
}

.service-content-3 .arrow-button .array-prev img,
.service-content-3 .arrow-button .array-next img {
	transition: all 0.4s ease-in-out;
}

.service-content-3 .arrow-button .array-prev:hover,
.service-content-3 .arrow-button .array-next:hover {
	background-color: var(--theme3);
}

.service-content-3 .arrow-button .array-prev:hover img,
.service-content-3 .arrow-button .array-next:hover img {
	filter: brightness(0) invert(1);
}

.service-section-3 {
	position: relative;
}

.service-section-3 .service-slider {
	margin-left: -520px;
}

@media (max-width: 1399px) {
	.service-section-3 .service-slider {
		margin-left: 0;
	}
}

.service-section-3 .drone {
	position: absolute;
	bottom: 240px;
	right: 45px;
}

@media (max-width: 1600px) {
	.service-section-3 .drone {
		width: 280px;
	}
}

@media (max-width: 1399px) {
	.service-section-3 .drone {
		display: none;
	}
}

.service-box-items-3 {
	border-radius: 10px;
	border: 1px solid #D9D9D9;
	border-radius: 10px;
	transition: all 0.4s ease-in-out;
	position: relative;
	padding: 30px;
}

.service-box-items-3 h2 {
	position: absolute;
	right: 20px;
	top: 20px;
	font-size: 60px;
	font-weight: 700;
	color: transparent;
	line-height: 94%;
	-webkit-text-stroke: 1px rgb(217, 217, 217);
	transition: all 0.4s ease-in-out;
	font-family: "Inter", sans-serif;
}

.service-box-items-3 .icon {
	width: 90px;
	height: 90px;
	line-height: 90px;
	text-align: center;
	border-radius: 100px;
	background-color: var(--theme3);
	margin-bottom: 20px;
}

.service-box-items-3 h3 {
	font-size: 24px;
	font-weight: 700;
}

.service-box-items-3 h3 a {
	background-position: 0 95%;
	background-repeat: no-repeat;
	background-size: 0% 2px;
	display: inline;
}

.service-box-items-3 h3 a:hover {
	color: var(--theme3);
	background-size: 100% 2px;
	background-image: linear-gradient(180deg, var(--theme3) 0%, var(--theme3) 100%);
}

.service-box-items-3 p {
	max-width: 270px;
	margin-top: 10px;
	margin-bottom: 30px;
}

.service-box-items-3 .plus-icon {
	position: relative;
	margin-left: 15px;
	color: var(--theme);
}

.service-box-items-3 .plus-icon i {
	position: relative;
	z-index: 999;
}

.service-box-items-3 .plus-icon span {
	opacity: 0;
	visibility: hidden;
	display: inline-block;
	margin-left: 5px;
}

.service-box-items-3 .plus-icon::before {
	position: absolute;
	content: "";
	top: 50%;
	left: 8%;
	transform: translate(-50%, -50%);
	width: 52px;
	height: 52px;
	line-height: 52px;
	text-align: center;
	border-radius: 50%;
	background-color: rgb(255, 246, 245);
	color: var(--theme3);
	border-radius: 100px;
	transition: all 0.4s ease-in-out;
}

.service-box-items-3 .plus-icon:hover {
	color: var(--white);
}

.service-box-items-3 .plus-icon:hover span {
	opacity: 1;
	visibility: visible;
	color: var(--white);
	position: relative;
	z-index: 999;
}

.service-box-items-3 .plus-icon:hover::before {
	width: 150px;
	left: 51%;
	background-color: var(--theme3);
}

.service-box-items-3:hover {
	box-shadow: 0px 4px 55px rgba(75, 175, 71, 0.15);
	border: 1px solid var(--white);
}

.service-box-items-3:hover .icon img {
	animation: jello 1s;
}

.service-box-items-3:hover h2 {
	-webkit-text-stroke: 1px var(--theme3);
	color: var(--theme3);
}

.service-details-wrapper .service-top-img {
	border-radius: 12px;
}

.service-details-wrapper .service-top-img img {
	width: 100%;
	height: 100%;
	border-radius: 12px;
}

.service-details-wrapper .service-details-content {
	margin-top: 30px;
}

.service-details-wrapper .service-details-content h3 {
	font-size: 32px;
	font-weight: 600;
	margin-top: 30px;
}

.service-details-wrapper .service-details-content .service-list-items {
	display: flex;
	gap: 60px;
	margin-top: 30px;
}

@media (max-width: 1199px) {
	.service-details-wrapper .service-details-content .service-list-items {
		flex-wrap: wrap;
		gap: 15px;
	}
}

.service-details-wrapper .service-details-content .service-list-items ul li {
	font-weight: 500;
}

.service-details-wrapper .service-details-content .service-list-items ul li i {
	color: var(--theme3);
	margin-right: 10px;
}

.service-details-wrapper .service-details-content .service-list-items ul li:not(:last-child) {
	margin-bottom: 15px;
}

.service-details-wrapper .service-details-content .service-box-area {
	margin-top: 40px;
}

.service-details-wrapper .service-details-content .service-box-area .service-box-items {
	background-color: var(--bg3);
	border-radius: 10px;
	padding: 30px 20px;
}

.service-details-wrapper .service-details-content .service-box-area .service-box-items .number {
	width: 38px;
	height: 38px;
	line-height: 38px;
	border-radius: 50%;
	background-color: var(--theme3);
	color: var(--white);
	font-size: 16px;
	display: block;
	text-align: center;
	font-weight: 700;
}

.service-details-wrapper .service-details-content .service-box-area .service-box-items h4 {
	font-size: 18px;
	font-weight: 500;
	max-width: 190px;
	margin-top: 20px;
}

.service-details-wrapper .service-details-content .service-box-area .service-box-items p {
	margin-top: 10px;
}

.service-details-wrapper .service-details-sidebar {
	margin-top: 30px;
}

.service-details-wrapper .service-details-sidebar .sidebar-widget {
	padding: 40px 35px;
	border-radius: 10px;
	background-color: var(--bg3);
	margin-bottom: 30px;
}

@media (max-width: 1399px) {
	.service-details-wrapper .service-details-sidebar .sidebar-widget {
		padding: 30px;
	}
}

.service-details-wrapper .service-details-sidebar .sidebar-widget .sideber-title {
	margin-bottom: 25px;
}

.service-details-wrapper .service-details-sidebar .sidebar-widget .sideber-title h3 {
	font-size: 24px;
	font-weight: 500;
	display: inline-block;
}

.service-details-wrapper .service-details-sidebar .sidebar-widget .sideber-title h3 i {
	color: var(--theme3);
	font-size: 16px;
	margin-right: 7px;
}

.service-details-wrapper .service-details-sidebar .sidebar-widget-image {
	position: relative;
}

.service-details-wrapper .service-details-sidebar .sidebar-widget-image::before {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	content: "";
	background: rgba(2, 2, 2, 0.4);
	border-radius: 8px;
}

.service-details-wrapper .service-details-sidebar .sidebar-widget-image img {
	width: 100%;
	height: 100%;
	border-radius: 8px;
}

.service-details-wrapper .service-details-sidebar .sidebar-widget-image .content {
	position: absolute;
	padding: 25px;
	bottom: 25px;
	left: 25px;
	right: 25px;
}

@media (max-width: 1399px) {
	.service-details-wrapper .service-details-sidebar .sidebar-widget-image .content {
		bottom: 20px;
		left: 20px;
		right: 20px;
		padding: 20px;
	}
}

.service-details-wrapper .service-details-sidebar .sidebar-widget-image .content .icon {
	font-size: 70px;
	color: var(--white);
	margin-bottom: 35px;
}

.service-details-wrapper .service-details-sidebar .sidebar-widget-image .content h4 {
	margin-top: 15px;
	color: var(--white);
	font-size: 32px;
	font-weight: 600;
	line-height: 120%;
}

@media (max-width: 1399px) {
	.service-details-wrapper .service-details-sidebar .sidebar-widget-image .content h4 {
		font-size: 24px;
	}
}

.service-details-wrapper .service-details-sidebar .sidebar-widget-image .content .theme-btn {
	margin-top: 30px;
}

.service-details-wrapper .service-details-sidebar .sidebar-widget-image .content .theme-btn::before {
	background-color: var(--white);
}

.service-details-wrapper .service-details-sidebar .sidebar-widget-image .content .theme-btn::after {
	background: rgba(255, 255, 255, 0.3);
}

.service-details-wrapper .service-details-sidebar .sidebar-widget-image .content .theme-btn:hover {
	color: var(--theme3);
}

.service-details-wrapper .service-details-sidebar .sidebar-widget-image .white-logo {
	position: absolute;
	top: 50px;
	left: 50px;
}

.service-details-wrapper .service-details-sidebar .service-list-item li {
	font-size: 16px;
	font-weight: 600;
	font-family: "Instrument Sans", sans-serif;
}

.service-details-wrapper .service-details-sidebar .service-list-item li:not(:last-child) {
	margin-bottom: 10px;
}

.service-details-wrapper .service-details-sidebar .service-list-item li a {
	color: var(--header);
	display: flex;
	align-items: center;
	justify-content: space-between;
	background-color: var(--white);
	padding: 20px 24px;
	line-height: 1;
	border-radius: 8px;
}

.service-details-wrapper .service-details-sidebar .service-list-item li a:hover {
	background-color: var(--theme3);
	color: var(--white);
}

.services-card-items-4 {
	background-color: var(--white);
	margin-top: 30px;
	border-radius: 12px;
	border-top: 6px solid var(--theme3);
}

.services-card-items-4 .service-content {
	padding: 40px 40px 60px;
}

.services-card-items-4 .service-content h3 {
	margin-bottom: 15px;
}

@media (max-width: 1399px) {
	.services-card-items-4 .service-content h3 {
		font-size: 20px;
	}
}

.services-card-items-4 .service-content h3 a {
	background-position: 0 95%;
	background-repeat: no-repeat;
	background-size: 0% 2px;
	display: inline;
}

.services-card-items-4 .service-content h3 a:hover {
	color: var(--theme3);
	background-size: 100% 2px;
	background-image: linear-gradient(180deg, var(--theme3) 0%, var(--theme3) 100%);
}

.services-card-items-4 .service-content p {
	margin-bottom: 30px;
}

.services-card-items-4 .service-content .plus-icon {
	position: relative;
	margin-left: 15px;
	color: var(--white);
}

.services-card-items-4 .service-content .plus-icon i {
	position: relative;
	z-index: 999;
}

.services-card-items-4 .service-content .plus-icon span {
	opacity: 0;
	visibility: hidden;
	display: inline-block;
	margin-left: 5px;
}

.services-card-items-4 .service-content .plus-icon::before {
	position: absolute;
	content: "";
	top: 50%;
	left: 8%;
	transform: translate(-50%, -50%);
	width: 52px;
	height: 52px;
	line-height: 52px;
	text-align: center;
	border-radius: 50%;
	background-color: var(--theme3);
	color: var(--white);
	border-radius: 100px;
	transition: all 0.4s ease-in-out;
}

.services-card-items-4 .service-content .plus-icon:hover {
	color: var(--white);
}

.services-card-items-4 .service-content .plus-icon:hover span {
	opacity: 1;
	visibility: visible;
	color: var(--white);
	position: relative;
	z-index: 999;
}

.services-card-items-4 .service-content .plus-icon:hover::before {
	width: 150px;
	left: 51%;
	background-color: var(--theme3);
}

.services-card-items-4 .service-image {
	position: relative;
	overflow: hidden;
}

.services-card-items-4 .service-image::after {
	content: "";
	position: absolute;
	width: 200%;
	height: 0%;
	left: 50%;
	top: 50%;
	background-color: rgba(255, 255, 255, 0.3);
	transform: translate(-50%, -50%) rotate(-45deg);
	z-index: 1;
}

.services-card-items-4 .service-image img {
	width: 100%;
	height: 100%;
	border-bottom-left-radius: 12px;
	border-bottom-right-radius: 12px;
}

.services-card-items-4:hover .service-image::after {
	height: 250%;
	transition: all 600ms linear;
	background-color: transparent;
}

.shop-card-items {
	margin-top: 30px;
	background-color: #fff;
	border-radius: 10px;
}

.shop-card-items .shop-image {
	position: relative;
	overflow: hidden;
	border: 1px solid #00000012;
	border-top-left-radius: 10px;
	border-top-right-radius: 10px;
	border-radius: 10px;
}

.shop-card-items .shop-image img {
	width: 100%;
	height: 100%;
	transform: scale(1.02);
	/* border: 1px solid #000; */
	transition: all 1.5s ease-out;
	border-top-left-radius: 10px;
	border-radius: 10px;
	border-top-right-radius: 10px;
}

.shop-card-items .shop-image .shop-icon {
	gap: 10px;
	position: absolute;
	top: -50%;
	left: 50%;
	transform: translateX(-50%);
	opacity: 1;
	visibility: hidden;
	display: flex;
	align-items: center;
	gap: 10px;
	transition: all 0.4s ease-in-out;
}

.shop-card-items .shop-image .shop-icon li a,
.shop-card-items .shop-image .shop-icon li button {
	background-color: var(--white);
	width: 40px;
	height: 40px;
	line-height: 40px;
	border-radius: 100px;
	display: inline-block;
	color: var(--theme3);
	text-align: center;
	transition: all 0.4s ease-in-out;
}

.shop-card-items .shop-image .shop-icon li a:hover,
.shop-card-items .shop-image .shop-icon li button:hover {
	background-color: var(--theme3);
	color: var(--white);
}

.shop-card-items .shop-image .discount {
	display: inline-block;
	padding: 6px 8px;
	line-height: 1;
	background-color: var(--theme3);
	color: var(--white);
	font-size: 14px;
	font-weight: 600;
	font-family: "Instrument Sans", sans-serif;
	position: absolute;
	top: 16px;
	left: 16px;
	border-radius: 4px;
}

.shop-card-items .shop-content {
	padding: 30px 24px;
	padding-top: 24px;
	text-align: center;
}

.shop-card-items .shop-content h3 a {
	background-position: 0 95%;
	background-repeat: no-repeat;
	background-size: 0% 2px;
	/* display: inline; */
	display: -webkit-box;
	overflow: hidden;
	text-overflow: ellipsis;
	/* word-wrap: break-word; */
	/* word-break: break-all; */
	white-space: normal !important;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
}

.shop-card-items .shop-content h3 a:hover {
	color: var(--theme3);
	background-size: 100% 2px;
	/* background-image: linear-gradient(180deg, var(--theme3) 0%, var(--theme3) 100%); */
}

.shop-card-items .shop-content .price {
	font-weight: 500;
	color: var(--theme3);
}

.shop-card-items .shop-content .price .prev-price {
	color: var(--header);
	text-decoration: line-through;
	margin-right: 5px;
}

.shop-card-items:hover .shop-image .shop-icon {
	top: 50%;
	visibility: visible;
	opacity: 1;
	-webkit-transition: all 0.35s;
	transition: all 0.35s;
}

.shop-card-items:hover .shop-image img {
	-webkit-transform: scale3d(1.1, 1.1, 1);
	transform: scale3d(1.1, 1.1, 1);
}

.shop-section .shop-notices-wrapper {
	display: flex;
	align-items: center;
	justify-content: space-between;
	border-bottom: 1px solid rgba(47, 47, 47, 0.2);
	padding-bottom: 30px;
	margin-bottom: 30px;
}

@media (max-width: 1199px) {
	.shop-section .shop-notices-wrapper {
		flex-wrap: wrap;
		gap: 30px;
	}
}

.shop-section .shop-notices-wrapper .shop-showing p {
	color: var(--header);
	text-transform: uppercase;
}

.shop-section .shop-notices-wrapper .form .single-select {
	padding: 16px 20px;
	border: none;
	font-size: 16px;
	font-weight: 500;
	text-transform: uppercase;
	outline: none;
	line-height: 1;
	height: initial;
	border: 1px solid rgba(47, 47, 47, 0.2);
	background: var(--bg);
	color: var(--header);
	border-radius: 6px;
}

.shop-section .shop-notices-wrapper .form .single-select::after {
	right: 20px;
	border-bottom: 2px solid var(--border);
	border-right: 2px solid var(--border);
	margin-top: -5px;
	width: 8px;
	height: 8px;
}

.shop-section .shop-notices-wrapper .form .single-select .option {
	color: var(--text);
}

.shop-section .shop-notices-wrapper .form .list {
	width: 100%;
}

.shop-section .shop-notices-wrapper .form-clt {
	max-width: 300px;
	width: 100%;
}

.shop-details-wrapper .shop-details-image {
	position: relative;
}

.shop-details-wrapper .shop-details-image .nav {
	display: flex;
	align-items: center;
	gap: 33px;
	margin-top: 20px;
}

.shop-details-wrapper .shop-details-image .nav img {
	width: 100%;
	height: 100%;
	border-radius: 10px;
}

.shop-details-wrapper .shop-details-image .nav .nav-link {
	padding: 0;
	max-width: 109px;
}

.shop-details-wrapper .shop-details-image .shop-thumb img {
	width: 100%;
	height: 100%;
	border-radius: 10px;
}

.shop-details-wrapper .product-details-content {
	margin-left: 60px;
	margin-right: 60px;
}

@media (max-width: 1399px) {
	.shop-details-wrapper .product-details-content {
		margin-left: 30px;
	}
}

@media (max-width: 991px) {
	.shop-details-wrapper .product-details-content {
		margin-left: 0;
	}
}

.shop-details-wrapper .product-details-content h2 {
	font-size: 30px;
	font-weight: 500;
	margin-bottom: 12px;
	padding-bottom: 20px;
	border-bottom: 1px solid #d8d8d880;
}

.shop-details-wrapper .product-details-content .star a {
	color: var(--theme3);
	font-size: 16px;
	font-weight: 600;
}

.shop-details-wrapper .product-details-content .star span {
	margin-left: 10px;
}

.shop-details-wrapper .product-details-content .price-list {
	gap: 20px;
	border-bottom: 1px solid rgba(47, 47, 47, 0.2);
	padding-bottom: 30px;
}

.shop-details-wrapper .product-details-content .price-list h3 {
	font-size: 22px;
	font-weight: 500;
}

.shop-details-wrapper .product-details-content .cart-wrp {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 10px;
	margin-top: 30px;
	margin-bottom: 30px;
}

.shop-details-wrapper .product-details-content .cart-wrp .cart-quantity {
	padding-right: 15px;
	margin-right: 15px;
}

.shop-details-wrapper .product-details-content .cart-wrp .cart-quantity input {
	width: 50px;
	height: 38px;
	text-align: center;
	background-color: transparent;
	border: 1px solid rgba(47, 47, 47, 0.2);
	color: var(--header);
	transition: all 0.4s ease-in-out;
	margin-top: 2px;
	border-radius: 4px;
}

.shop-details-wrapper .product-details-content .cart-wrp .cart-quantity input:hover {
	background: var(--theme3);
	color: var(--white);
	border-color: var(--theme3);
}

.shop-details-wrapper .product-details-content .cart-wrp .cart-quantity .minus {
	color: var(--header);
	font-weight: 700;
}

.shop-details-wrapper .product-details-content .cart-wrp .cart-quantity .plus {
	color: var(--header);
}

.shop-details-wrapper .product-details-content .cart-wrp .cart-quantity .qty {
	color: var(--header);
}

.shop-details-wrapper .product-details-content .cart-wrp .icon {
	width: 50px;
	height: 40px;
	text-align: center;
	background-color: transparent;
	border: 1px solid rgba(47, 47, 47, 0.2);
	color: var(--header);
	line-height: 40px;
	border-radius: 4px;
}

.shop-details-wrapper .product-details-content .cart-wrp .icon:hover {
	background: var(--theme3);
	color: var(--white);
	border-color: var(--theme3);
}

.shop-details-wrapper .product-details-content .cart-wrp .social-profile {
	z-index: 2;
	display: flex;
	overflow: hidden;
	align-items: center;
}

.shop-details-wrapper .product-details-content .cart-wrp .social-profile ul {
	transform: translateX(-100px);
	transition: all 0.6s ease-in-out;
	opacity: 0;
	visibility: hidden;
	display: flex;
}

.shop-details-wrapper .product-details-content .cart-wrp .social-profile ul li a {
	width: 50px;
	height: 40px;
	line-height: 40px;
	text-align: center;
	display: block;
	background: transparent;
	border: 1px solid rgba(47, 47, 47, 0.2);
	border-left: 0 px solid var(--border);
	color: var(--header);
	transition: all 0.4s ease-in-out;
	text-align: center;
	margin: 0 auto;
	font-size: 12px;
	border-radius: 4px;
}

.shop-details-wrapper .product-details-content .cart-wrp .social-profile ul li a:hover {
	color: var(--white);
	background-color: var(--theme3);
}

.shop-details-wrapper .product-details-content .cart-wrp .social-profile .plus-btn {
	width: 50px;
	height: 40px;
	text-align: center;
	background-color: transparent;
	border: 1px solid rgba(47, 47, 47, 0.2);
	color: var(--header);
	line-height: 40px;
	cursor: pointer;
	border-radius: 4px;
}

.shop-details-wrapper .product-details-content .cart-wrp .social-profile:hover ul {
	transform: translateY(0);
	opacity: 1;
	visibility: visible;
}

.shop-details-wrapper .product-details-content .cart-wrp .theme-btn {
	padding: 20px 35px;
}

@media (max-width: 575px) {
	.shop-details-wrapper .product-details-content .cart-wrp .theme-btn {
		padding: 15px 40px;
	}
}

.shop-details-wrapper .product-details-content .shop-btn {
	display: flex;
	align-items: center;
	margin-top: 4rem !important;
	gap: 10px;
	margin-bottom: 30px;
}

.shop-details-wrapper .product-details-content .shop-btn .theme-btn {
	padding: 14px 35px;
}

.shop-details-wrapper .product-details-content .shop-btn .theme-btn:nth-child(2) {
	background-color: transparent;
	background-color: transparent;
	color: var(--theme3);
	border: 1px solid var(--theme3);
}

.shop-details-wrapper .product-details-content .shop-btn .theme-btn:nth-child(2)::before,
.shop-details-wrapper .product-details-content .shop-btn .theme-btn:nth-child(2)::after {
	background-color: var(--theme3);
}

.shop-details-wrapper .product-details-content .shop-btn .theme-btn:nth-child(2):hover {
	color: var(--white);
}

.shop-details-wrapper .product-details-content .details-info {
	position: relative;
	margin-top: 2px;
	padding-top: 19px;
	font-size: 16px;
	/* border-top: 1px solid #d8d8d880; */
	font-weight: 600;
}

.shop-details-wrapper .product-details-content .details-info span {
	font-size: 16px;
	font-weight: 600;
	text-transform: capitalize;
	margin-right: 5px;
	font-family: "Inter", sans-serif;
}

.shop-details-wrapper .product-details-content .details-info a {
	font-size: 16px;
	font-weight: 400;
	color: var(--text);
	text-transform: capitalize;
}

.shop-details-wrapper .product-details-content .details-info.style-2 a b {
	border: 1px solid #e6e6e6;
	padding: 4px 12px 6px;
	font-weight: 400;
	font-size: 14px;
	border-radius: 5px;
	transition: all 0.4s ease-in-out;
	text-transform: uppercase;
}

.shop-details-wrapper .product-details-content .details-info.style-2 a b:hover {
	background-color: var(--theme3);
	color: var(--white);
}

.single-tab {
	padding-top: 80px;
}

@media (max-width: 575px) {
	.single-tab {
		padding-top: 50px;
	}
}

.single-tab .nav {
	justify-content: center;
	border-bottom: 1px solid rgba(47, 47, 47, 0.2);
	padding-bottom: 20px;
}

.single-tab .nav .nav-link h3 {
	font-size: 16px;
	font-weight: 600;
}

.single-tab .nav .nav-link.active {
	position: relative;
	padding-right: 0;
}

.single-tab .nav .nav-link.active h3 {
	color: var(--theme3);
	font-size: 20px;
	font-weight: 600;
}

.single-tab .nav .nav-link.active::before {
	position: absolute;
	bottom: -21px;
	left: 0;
	height: 2px;
	width: 100%;
	content: "";
	background: var(--theme3);
	transition: 0.3s;
}

@media (max-width: 575px) {
	.single-tab .nav .nav-link.active::before {
		display: none;
	}
}

.single-tab .description-items .description-content {
	margin-right: 50px;
}

@media (max-width: 1399px) {
	.single-tab .description-items .description-content {
		margin-right: 30px;
	}
}

@media (max-width: 991px) {
	.single-tab .description-items .description-content {
		margin-right: 0;
	}
}

.single-tab .description-items .description-content h3 {
	margin-bottom: 15px;
}

.single-tab .description-items .description-content .description-list-items {
	margin-top: 30px;
}

@media (max-width: 575px) {
	.single-tab .description-items .description-content .description-list-items {
		flex-wrap: wrap;
		gap: 30px;
	}
}

.single-tab .description-items .description-content .description-list-items .description-list li {
	font-size: 16px;
	font-weight: 400;
	text-transform: capitalize;
	color: var(--theme3);
	font-weight: 500;
}

.single-tab .description-items .description-content .description-list-items .description-list li span {
	color: var(--text);
	font-weight: 400;
}

.single-tab .description-items .description-image img {
	width: 100%;
	height: 100%;
	border-radius: 10px;
}

@media (max-width: 767px) {
	.single-tab .review-items .admin-items {
		justify-content: center;
		gap: 30px;
	}
}

.single-tab .review-items .admin-items .admin-img {
	width: 100px;
	height: 100px;
}

.single-tab .review-items .admin-items .admin-img img {
	border-radius: 50%;
}

.single-tab .review-items .admin-items .content {
	position: relative;
	border: 1px solid rgba(47, 47, 47, 0.2);
}

.single-tab .review-items .admin-items .content::before {
	position: absolute;
	content: "";
	width: 30px;
	height: 30px;
	background-color: var(--white);
	border-left: 1px solid rgba(47, 47, 47, 0.2);
	border-bottom: 1px solid rgba(47, 47, 47, 0.2);
	transform: rotate(45deg);
	top: 40%;
	left: -16px;
}

@media (max-width: 575px) {
	.single-tab .review-items .admin-items .content::before {
		display: none;
	}
}

.single-tab .review-items .admin-items .content .head-content {
	display: flex;
	align-items: center;
	justify-content: space-between;
	align-items: start;
}

@media (max-width: 1399px) {
	.single-tab .review-items .admin-items .content .head-content {
		flex-wrap: wrap;
		gap: 15px;
	}
}

.single-tab .review-items .admin-items .content .head-content .content1 {
	margin-bottom: 10px;
}

.single-tab .review-items .admin-items .content .head-content .content1 h4 {
	font-size: 18px;
	font-weight: 700;
}

.single-tab .review-items .admin-items .content .head-content .content1 .star {
	margin-top: 5px;
}

.single-tab .review-items .admin-items .content .head-content .content1 .star i {
	font-size: 16px;
	color: var(--theme3);
}

.single-tab .review-items .admin-items .content .head-content span {
	font-size: 14px;
	margin-left: 30px;
}

.single-tab .review-title .rate-now {
	margin-top: 15px;
	gap: 15px;
}

.single-tab .review-title .rate-now p {
	font-size: 16px;
	text-transform: uppercase;
}

.single-tab .review-title .rate-now i {
	font-size: 16px;
	color: #ff9200;
}

.single-tab .review-form {
	margin-top: 40px;
}

.single-tab .review-form .form-clt input {
	width: 100%;
	outline: none;
	border: none;
	padding: 18px 35px;
	color: var(--text);
	background-color: rgb(245, 245, 245);
	font-size: 14px;
	text-transform: uppercase;
}

@media (max-width: 575px) {
	.single-tab .review-form .form-clt input {
		padding: 15px 20px;
	}
}

.single-tab .review-form .form-clt-big textarea {
	padding: 18px 35px 170px;
	width: 100%;
	outline: none;
	color: var(--text);
	background-color: rgb(245, 245, 245);
	font-size: 14px;
	border: none;
	text-transform: uppercase;
}

@media (max-width: 575px) {
	.single-tab .review-form .form-clt-big textarea {
		padding: 15px 20px;
	}
}

.cart-list-area .coupon-items input {
	background: #F5F6FA;
	border: none;
	padding: 18px 30px;
	color: var(--text);
	line-height: 1;
	border-radius: 6px;
}

.cart-list-area .top-content {
	margin-bottom: 60px;
}

.cart-list-area .top-content .list {
	display: flex;
	align-items: center;
	gap: 24px;
	margin-top: 20px;
}

.cart-list-area .top-content .list li {
	position: relative;
}

.cart-list-area .top-content .list li:not(:last-child)::before {
	position: absolute;
	content: "";
	width: 5px;
	height: 5px;
	left: 50px;
	top: 13px;
	border-radius: 30px;
	background-color: #A8ACB0;
}

.cart-list-area .common-table {
	min-width: -moz-max-content;
	min-width: max-content;
	width: 100%;
	overflow: hidden;
	box-sizing: border-box;
}

.cart-list-area .common-table .cart-item-thumb {
	width: 86px;
}

@media (max-width: 1399px) {
	.cart-list-area .common-table .cart-item-thumb {
		flex-wrap: wrap;
	}
}

.cart-list-area .common-table .cart-item-thumb .head {
	color: var(--header);
	font-size: 20px;
	text-transform: capitalize;
	font-family: "Instrument Sans", sans-serif;
	font-weight: 600;
}

.cart-list-area .common-table .price-usd {
	font-size: 16px;
	font-weight: 500;
	color: #666C78;
}

.cart-list-area .common-table tr {
	border-bottom: 1px solid #E4E4E5;
}

.cart-list-area .common-table thead,
.cart-list-area .common-table tbody {
	width: 100%;
}

.cart-list-area .common-table thead tr,
.cart-list-area .common-table tbody tr {
	width: 100%;
	display: flex;
	box-sizing: border-box;
}

.cart-list-area .common-table thead tr th,
.cart-list-area .common-table thead tr td,
.cart-list-area .common-table tbody tr th,
.cart-list-area .common-table tbody tr td {
	width: 100%;
	box-sizing: border-box;
}

.cart-list-area .common-table thead tr {
	color: #1B1F2A;
	border-bottom: unset;
	border-radius: 16px 16px 0 0;
	border-bottom: 1px solid #E4E4E5;
}

.cart-list-area .common-table thead tr th {
	background: unset;
	color: unset;
	border: unset;
	font-size: 16px;
	padding-bottom: 16px;
	text-transform: capitalize;
}

.cart-list-area .common-table tbody tr td {
	background: transparent;
	color: unset;
	box-sizing: border-box;
	border-bottom: unset;
}

.cart-list-area .quantity button i {
	font-size: 16px;
}

.cart-list-area .quantity .quantityValue {
	width: 40px;
	text-align: center;
	padding: 0;
	color: #000;
	border: unset;
}

.checkout-single-wrapper .checkout-single h2 {
	color: var(--header);
	margin-bottom: 2rem;
	font-weight: 600;
	font-size: 20px;
}

.checkout-single-wrapper .checkout-single h3 {
	font-size: 20px;
	font-weight: 700;
}

.checkout-single-wrapper .checkout-single .checkout-single-form .input-single textarea,
.checkout-single-wrapper .checkout-single .checkout-single-form .input-single .country-select,
.checkout-single-wrapper .checkout-single .checkout-single-form .input-single input {
	width: 100%;
	outline: none;
	box-shadow: none;
	border: 1px solid rgba(47, 47, 47, 0.2);
	padding: 12px 24px;
	color: var(--header);
	text-transform: capitalize;
	font-weight: 400;
	background-color: transparent;
	border-radius: 6px;
}

.checkout-single-wrapper .checkout-single .checkout-single-form .input-single label {
	color: var(--text);
	font-size: 18px;
	text-transform: capitalize;
	margin-bottom: 10px;
	font-weight: 500;
}

.checkout-single-wrapper .checkout-single .checkout-single-form .input-single ::placeholder {
	color: var(--text);
}

.checkout-single-wrapper .checkout-single .checkout-single-form .input-single .single-select {
	border: 1px solid rgba(47, 47, 47, 0.2);
	border-radius: 6px;
	color: var(--text);
	background-color: transparent;
	padding: 4px 15px;
	height: 50px;
	font-weight: 400;
}

.checkout-single-wrapper .checkout-single .checkout-single-form .input-single .single-select .list {
	width: 100%;
}

.checkout-single-wrapper .checkout-single .checkout-single-form .payment {
	color: var(--header);
	margin-bottom: 12px;
	text-transform: capitalize;
}

.checkout-single-wrapper .boxshado-single {
	margin-bottom: 24px;
}

.checkout-single-wrapper .checkout-single-bg .theme-btn {
	border-radius: 8px;
}

.checkout-single-wrapper .checkout-single-bg .checkout-single-form .input-single textarea,
.checkout-single-wrapper .checkout-single-bg .checkout-single-form .input-single .country-select,
.checkout-single-wrapper .checkout-single-bg .checkout-single-form .input-single input {
	border: 1px solid rgba(47, 47, 47, 0.2);
	background: transparent;
	text-transform: capitalize;
}

.checkout-single-wrapper .checkout-single-bg .payment-save {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-top: 20px;
}

.checkout-single-wrapper .checkout-single-bg .payment-save .form-check-input {
	width: 24px;
	height: 24px;
	appearance: none;
	-webkit-appearance: none;
	border: none;
	background-color: transparent;
	cursor: pointer;
	border: 1px solid rgba(47, 47, 47, 0.2);
}

.checkout-single-wrapper .checkout-single-bg .payment-save .form-check-input:checked {
	background-color: var(--theme3);
}

.checkout-single-wrapper .checkout-single-bg .payment-save .form-check-input {
	transition: background-color 0.3s ease;
}

.checkout-single-wrapper .checkout-single-bg .payment-save label {
	font-size: 16px;
	font-weight: 500;
	text-transform: capitalize;
}

.checkout-radio .primary-text {
	font-size: 24px;
	font-weight: 500;
	line-height: 150%;
	margin-bottom: 16px;
	color: var(--header);
	text-transform: capitalize;
}

.checkout-radio h4 {
	color: var(--header);
	margin-bottom: 16px;
	font-weight: 600;
}

.checkout-radio .checkout-radio-wrapper .checkout-radio-single .form-check-input {
	background-color: transparent;
	border: 1px solid rgba(47, 47, 47, 0.2);
	border-radius: 100px;
}

.checkout-radio .checkout-radio-wrapper .checkout-radio-single .form-check-input:checked {
	background-color: var(--theme3);
	border-color: var(--theme3);
}

.checkout-radio .checkout-radio-wrapper .checkout-radio-single .form-check-input:focus {
	border-color: none;
	outline: 0;
	box-shadow: none;
}

.checkout-radio .checkout-radio-wrapper .checkout-radio-single label {
	color: var(--text);
	text-transform: capitalize;
}

.checkout-radio .checkout-radio-wrapper .checkout-radio-single:not(:last-child) {
	margin-bottom: 12px;
}

.shop-grid-section .shop-notices-wrapper {
	display: flex;
	align-items: center;
	justify-content: space-between;
	border-bottom: 1px solid var(--border);
	padding-bottom: 30px;
	margin-bottom: 30px;
}

@media (max-width: 1199px) {
	.shop-grid-section .shop-notices-wrapper {
		flex-wrap: wrap;
		gap: 30px;
	}
}

.shop-grid-section .shop-notices-wrapper .shop-showing p {
	color: var(--header);
	text-transform: uppercase;
}

.shop-grid-section .shop-notices-wrapper .form .single-select {
	padding: 16px 20px;
	border: none;
	font-size: 16px;
	font-weight: 500;
	text-transform: uppercase;
	outline: none;
	line-height: 1;
	height: initial;
	border: 1px solid var(--theme);
	background: var(--bg);
	color: var(--header);
	border-radius: 0;
}

.shop-grid-section .shop-notices-wrapper .form .single-select::after {
	right: 20px;
	border-bottom: 2px solid var(--border);
	border-right: 2px solid var(--border);
	margin-top: -5px;
	width: 8px;
	height: 8px;
}

.shop-grid-section .shop-notices-wrapper .form .single-select .option {
	color: var(--text);
}

.shop-grid-section .shop-notices-wrapper .form .list {
	width: 100%;
}

.shop-grid-section .shop-notices-wrapper .form-clt {
	max-width: 300px;
	width: 100%;
}

.team-section {
	position: relative;
}

.team-section::before {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	content: "";
	background: rgba(47, 47, 47, 0.9);
}

.team-section .section-title-area {
	border-bottom: 1px solid rgba(255, 255, 255, 0.2);
	padding-bottom: 48px;
	margin-bottom: 48px !important;
}

@media (max-width: 1399px) {
	.team-section .section-title-area {
		padding-bottom: 30px;
		padding-bottom: 30px !important;
	}
}

.team-section .section-title-area .arrow-button {
	display: flex;
	align-items: center;
	gap: 12px;
}

.team-section .section-title-area .arrow-button .array-prev,
.team-section .section-title-area .arrow-button .array-next {
	width: 48px;
	height: 48px;
	line-height: 48px;
	text-align: center;
	border-radius: 100px;
	background-color: var(--white);
	transition: all 0.4s ease-in-out;
}

.team-section .section-title-area .arrow-button .array-prev img,
.team-section .section-title-area .arrow-button .array-next img {
	transition: all 0.4s ease-in-out;
}

.team-section .section-title-area .arrow-button .array-prev:hover,
.team-section .section-title-area .arrow-button .array-next:hover {
	background-color: var(--theme3);
}

.team-section .section-title-area .arrow-button .array-prev:hover img,
.team-section .section-title-area .arrow-button .array-next:hover img {
	filter: brightness(0) invert(1);
}

.team-section .team-slider {
	margin-right: -450px;
}

@media (max-width: 1600px) {
	.team-section .team-slider {
		margin-right: -200px;
	}
}

@media (max-width: 1399px) {
	.team-section .team-slider {
		margin-right: 0;
	}
}

.team-card-item .team-image {
	position: relative;
	overflow: hidden;
}

.team-card-item .team-image::before {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	content: "";
	background: linear-gradient(180deg, rgba(17, 162, 27, 0) 50%, #11A21B 90%);
	border-radius: 10px;
	opacity: 0;
	visibility: hidden;
	transition: all 0.4s ease-in-out;
}

.team-card-item .team-image img {
	width: 100%;
	height: 100%;
	border-radius: 10px;
}

.team-card-item .team-image .social-icon {
	display: flex;
	align-items: center;
	gap: 20px;
	left: 50%;
	transform: translateX(-50%);
	position: absolute;
	bottom: -150px;
	opacity: 0;
	visibility: hidden;
	transition: all 0.4s ease-in-out;
}

.team-card-item .team-image .social-icon a {
	display: inline-block;
	width: 44px;
	height: 44px;
	line-height: 44px;
	border-radius: 100px;
	color: var(--white);
	border: 1px solid rgba(255, 255, 255, 0.2);
	text-align: center;
}

.team-card-item .team-image .social-icon a:hover {
	background-color: var(--theme3);
	border: 1px solid var(--theme3);
}

.team-card-item .team-image .team-content {
	left: 50%;
	transform: translateX(-50%);
	position: absolute;
	bottom: -30px;
	text-align: center;
	opacity: 0;
	visibility: hidden;
	transition: all 0.4s ease-in-out;
}

.team-card-item .team-image .team-content h3 {
	margin-bottom: 5px;
}

@media (max-width: 1399px) {
	.team-card-item .team-image .team-content h3 {
		font-size: 22px;
	}
}

@media (max-width: 575px) {
	.team-card-item .team-image .team-content h3 {
		font-size: 20px;
	}
}

.team-card-item .team-image .team-content h3 a {
	background-position: 0 95%;
	background-repeat: no-repeat;
	background-size: 0% 2px;
	display: inline;
	color: var(--white);
}

.team-card-item .team-image .team-content h3 a:hover {
	color: var(--white);
	background-size: 100% 2px;
	background-image: linear-gradient(180deg, var(--white) 0%, var(--white) 100%);
}

.team-card-item .team-image .team-content p {
	color: rgb(255, 255, 255);
	font-weight: 500;
}

.team-card-item:hover .team-image::before {
	opacity: 1;
	visibility: visible;
}

.team-card-item:hover .team-image .social-icon {
	bottom: 150px;
	opacity: 1;
	visibility: visible;
}

.team-card-item:hover .team-image .team-content {
	bottom: 30px;
	opacity: 1;
	visibility: visible;
}

.team-card-items-2 {
	border: 1px solid #D9D9D9;
	text-align: center;
	padding: 30px;
	margin-top: 30px;
	overflow: hidden;
	border-radius: 10px;
}

.team-card-items-2 .team-image {
	position: relative;
	overflow: hidden;
}

.team-card-items-2 .team-image::before {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	content: "";
	background: linear-gradient(180deg, rgba(17, 162, 27, 0) 50%, #11A21B 90%);
	border-radius: 1000px;
	opacity: 0;
	visibility: hidden;
	transition: all 0.4s ease-in-out;
}

.team-card-items-2 .team-image img {
	width: 100%;
	height: 100%;
	border-radius: 10px;
}

.team-card-items-2 .team-image .social-icon {
	display: flex;
	align-items: center;
	gap: 20px;
	left: 50%;
	transform: translateX(-50%);
	position: absolute;
	bottom: -100px;
	opacity: 0;
	visibility: hidden;
	transition: all 0.4s ease-in-out;
}

.team-card-items-2 .team-image .social-icon a {
	display: inline-block;
	width: 44px;
	height: 44px;
	line-height: 44px;
	border-radius: 100px;
	color: var(--white);
	border: 1px solid rgba(255, 255, 255, 0.2);
	text-align: center;
}

.team-card-items-2 .team-image .social-icon a:hover {
	background-color: var(--theme3);
	border: 1px solid var(--theme3);
}

.team-card-items-2 .team-content {
	margin-top: 30px;
	text-align: center;
}

.team-card-items-2 .team-content h3 {
	margin-bottom: 5px;
}

@media (max-width: 1399px) {
	.team-card-items-2 .team-content h3 {
		font-size: 22px;
	}
}

@media (max-width: 575px) {
	.team-card-items-2 .team-content h3 {
		font-size: 20px;
	}
}

.team-card-items-2 .team-content h3 a {
	background-position: 0 95%;
	background-repeat: no-repeat;
	background-size: 0% 2px;
	display: inline;
}

.team-card-items-2 .team-content h3 a:hover {
	color: var(--white);
	background-size: 100% 2px;
	background-image: linear-gradient(180deg, var(--white) 0%, var(--white) 100%);
}

.team-card-items-2 .team-content p {
	font-weight: 500;
}

.team-card-items-2:hover .team-image::before {
	opacity: 1;
	visibility: visible;
}

.team-card-items-2:hover .team-image .social-icon {
	bottom: 100px;
	opacity: 1;
	visibility: visible;
}

.team-details-wrapper .team-details-image {
	overflow: hidden;
	border-radius: 12px;
}

.team-details-wrapper .team-details-image img {
	width: 100%;
	height: 100%;
	border-radius: 12px;
}

.team-details-wrapper .team-details-content {
	margin-left: 30px;
	background-color: var(--bg3);
	border-radius: 10px;
	padding: 45px 40px;
}

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

.team-details-wrapper .team-details-content .offer {
	background-color: var(--theme3);
	color: var(--white);
	padding: 8px 10px;
	border-radius: 6px;
}

.team-details-wrapper .team-details-content h2 {
	margin-top: 30px;
}

.team-details-wrapper .team-details-content .team-infrom {
	margin-top: 30px;
}

.team-details-wrapper .team-details-content .team-infrom li {
	display: flex;
	gap: 100px;
	align-items: center;
	color: var(--header);
	font-size: 16px;
	font-weight: 500;
}

@media (max-width: 1199px) {
	.team-details-wrapper .team-details-content .team-infrom li {
		display: grid;
		gap: 20px;
	}
}

.team-details-wrapper .team-details-content .team-infrom li span {
	color: var(--header);
	font-size: 16px;
	font-weight: 500;
	flex-basis: 28%;
}

.team-details-wrapper .team-details-content .team-infrom li:not(:last-child) {
	margin-bottom: 12px;
}

.team-details-wrapper .team-details-content h3 {
	font-size: 16px;
	font-weight: 500;
	margin-top: 60px;
}

.team-details-wrapper .team-details-content .social-icon {
	display: flex;
	margin-top: 30px;
	gap: 15px;
}

.team-details-wrapper .team-details-content .social-icon a {
	color: var(--theme);
	background: var(--white);
	width: 48px;
	height: 48px;
	line-height: 48px;
	display: inline-block;
	text-align: center;
	border-radius: 50%;
}

.team-details-wrapper .team-details-content .social-icon a:hover {
	background-color: var(--theme3);
	color: var(--white);
}

.team-details-wrapper .team-middle-items .team-skill-area {
	margin-top: 60px;
}

.team-details-wrapper .team-middle-items .team-skill-area .skill-content {
	margin-right: 60px;
}

@media (max-width: 1199px) {
	.team-details-wrapper .team-middle-items .team-skill-area .skill-content {
		margin-right: 0;
	}
}

.team-details-wrapper .team-middle-items .team-skill-area .skill-content h3 {
	font-size: 32px;
	font-weight: 600;
	margin-bottom: 20px;
}

.team-details-wrapper .team-middle-items .team-skill-area .skill-content .progress-wrap .pro-items {
	width: 100%;
}

.team-details-wrapper .team-middle-items .team-skill-area .skill-content .progress-wrap .pro-items:not(:last-child) {
	margin-bottom: 30px;
}

.team-details-wrapper .team-middle-items .team-skill-area .skill-content .progress-wrap .pro-items .pro-head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 10px;
}

.team-details-wrapper .team-middle-items .team-skill-area .skill-content .progress-wrap .pro-items .pro-head .title {
	color: var(--header);
}

.team-details-wrapper .team-middle-items .team-skill-area .skill-content .progress-wrap .pro-items .pro-head .point {
	font-size: 16px;
	color: var(--header);
}

.team-details-wrapper .team-middle-items .team-skill-area .skill-content .progress-wrap .pro-items .progress {
	background-color: rgba(17, 162, 27, 0.5);
	justify-content: flex-start;
	align-items: center;
	position: relative;
	display: flex;
	height: 6px;
	width: 100%;
}

.team-details-wrapper .team-middle-items .team-skill-area .skill-content .progress-wrap .pro-items .progress-value {
	animation: load 3s normal forwards;
	border-radius: 0;
	background: var(--theme3);
	height: 6px;
	width: 0;
}

.team-details-wrapper .team-middle-items .team-skill-area .skill-content .progress-wrap .pro-items .style-two {
	animation: load2 3s normal forwards;
}

.team-details-wrapper .team-middle-items .team-skill-area .skill-content .progress-wrap .pro-items .style-three {
	animation: load3 3s normal forwards;
}

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

	100% {
		width: 69%;
	}
}

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

	100% {
		width: 80%;
	}
}

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

	100% {
		width: 98%;
	}
}

.team-details-wrapper .team-middle-items .team-skill-area .career-content h3 {
	font-size: 32px;
	font-weight: 600;
	margin-bottom: 20px;
}

.team-details-wrapper .team-middle-items .team-skill-area .career-content ul li {
	display: flex;
	gap: 20px;
}

.team-details-wrapper .team-middle-items .team-skill-area .career-content ul li:not(:last-child) {
	margin-bottom: 20px;
}

.team-details-wrapper .team-bottom-items {
	margin-top: 120px;
	border-radius: 10px;
	background: var(--bg3);
	padding: 80px 60px;
}

@media (max-width: 1199px) {
	.team-details-wrapper .team-bottom-items {
		margin-top: 100px;
		padding: 50px;
	}
}

@media (max-width: 991px) {
	.team-details-wrapper .team-bottom-items {
		margin-top: 80px;
	}
}

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

@media (max-width: 575px) {
	.team-details-wrapper .team-bottom-items {
		padding: 30px;
	}
}

.team-details-wrapper .team-bottom-items .team-left-items p {
	margin-top: 20px;
}

.team-details-wrapper .team-bottom-items .team-left-items .phone-icon {
	display: flex;
	gap: 10px;
	border-radius: 70px;
	border: 1px solid #3D4857;
	display: inline-flex;
	padding: 20px;
	font-weight: 600;
	line-height: 1;
	margin-top: 30px;
}

.team-details-wrapper .team-bottom-items .team-left-items .phone-icon .icon {
	color: var(--header);
}

.team-details-wrapper .team-bottom-items .team-right-items {
	margin-left: 80px;
}

@media (max-width: 1199px) {
	.team-details-wrapper .team-bottom-items .team-right-items {
		margin-left: 0;
	}
}

.team-details-wrapper .team-bottom-items .team-right-items .contact-form-box {
	margin-top: 30px;
}

.team-details-wrapper .team-bottom-items .team-right-items .contact-form-box .form-clt input,
.team-details-wrapper .team-bottom-items .team-right-items .contact-form-box .form-clt textarea {
	outline: none;
	width: 100%;
	color: var(--header);
	padding-bottom: 20px;
	border: none;
	background: transparent;
	border-bottom: 1px solid rgba(15, 23, 42, 0.2);
	text-transform: capitalize;
}

.team-details-wrapper .team-bottom-items .team-right-items .contact-form-box .form-clt input::placeholder,
.team-details-wrapper .team-bottom-items .team-right-items .contact-form-box .form-clt textarea::placeholder {
	color: var(--header);
}

.team-details-wrapper .team-bottom-items .team-right-items .contact-form-box .form-clt textarea {
	padding-bottom: 120px;
}

.team-details-wrapper .team-bottom-items .team-right-items .contact-form-box .form-clt .form .single-select {
	border: none;
	border-bottom: 1px solid rgba(15, 23, 42, 0.2);
	background-color: transparent;
	width: 100%;
	height: initial;
	line-height: initial;
	text-transform: capitalize;
	color: var(--header);
	padding-bottom: 20px;
	border-radius: 0;
}

.team-details-wrapper .team-bottom-items .team-right-items .contact-form-box .form-clt .form .single-select .current {
	color: var(--header);
}

.team-details-wrapper .team-bottom-items .team-right-items .contact-form-box .form-clt .form .single-select::after {
	border-bottom: 2px solid var(--header);
	border-right: 2px solid var(--header);
	width: 8px;
	height: 8px;
	right: 12px;
}

.team-details-wrapper .team-bottom-items .team-right-items .contact-form-box .form-clt .form .single-select .list {
	width: 100%;
}

.team-card-items-4 {
	margin-top: 30px;
	position: relative;
	z-index: 9;
	transition: all 0.4s ease-in-out;
	padding-bottom: 50px;
}

.team-card-items-4::before {
	position: absolute;
	content: "";
	border: 1px solid var(--theme3);
	border-radius: 10px;
	top: -15px;
	left: -12px;
	width: 100%;
	height: 80%;
	z-index: -1;
	opacity: 0;
	visibility: hidden;
	transition: all 0.4s ease-in-out;
}

@media (max-width: 1399px) {
	.team-card-items-4::before {
		display: none;
	}
}

.team-card-items-4 .team-image {
	position: relative;
	overflow: hidden;
}

.team-card-items-4 .team-image img {
	width: 100%;
	height: 100%;
	border-radius: 10px;
}

.team-card-items-4 .team-image .social-icon {
	display: flex;
	align-items: center;
	gap: 20px;
	left: 50%;
	transform: translateX(-50%);
	position: absolute;
	bottom: -50px;
	opacity: 0;
	visibility: hidden;
	transition: all 0.4s ease-in-out;
}

.team-card-items-4 .team-image .social-icon a {
	display: inline-block;
	width: 44px;
	height: 44px;
	line-height: 44px;
	border-radius: 100px;
	color: var(--white);
	background-color: var(--header);
	text-align: center;
}

.our-statistics-section .our-statistics-content p {
	font-size: 15px;
	text-align: justify;
}

.team-card-items-4 .team-image .social-icon a:hover {
	background-color: var(--theme3);
}

.our-history-section-3 .our-history-content {
	width: 39%;
	padding: 3% 0;
}

.team-card-items-4 .team-content {
	margin-top: 30px;
	text-align: center;
}

.team-card-items-4 .team-content h3 {
	margin-bottom: 5px;
}

@media (max-width: 1399px) {
	.team-card-items-4 .team-content h3 {
		font-size: 22px;
	}
}

@media (max-width: 575px) {
	.team-card-items-4 .team-content h3 {
		font-size: 20px;
	}
}

.team-card-items-4 .team-content h3 a {
	background-position: 0 95%;
	background-repeat: no-repeat;
	background-size: 0% 2px;
	display: inline;
}

.team-card-items-4 .team-content h3 a:hover {
	color: var(--theme3);
	background-size: 100% 2px;
	background-image: linear-gradient(180deg, var(--theme3) 0%, var(--theme3) 100%);
}

.team-section-4 {
	border-radius: 20px;
	margin: 0 80px;
	position: relative;
}

@media (max-width: 1600px) {
	.team-section-4 {
		margin: 0 50px;
	}
}

@media (max-width: 1399px) {
	.team-section-4 {
		margin: 0 30px;
	}
}

@media (max-width: 575px) {
	.team-section-4 {
		margin: 0 15px;
	}
}

.team-section-4 .arrow-button {
	display: flex;
	align-items: center;
	gap: 15px;
	z-index: 999;
	justify-content: space-between;
	position: absolute;
	top: 50%;
	left: 100px;
	right: 100px;
	transform: translateY(-50%);
	z-index: 99;
}

@media (max-width: 1399px) {
	.team-section-4 .arrow-button {
		display: none;
	}
}

.team-section-4 .arrow-button .array-prev,
.team-section-4 .arrow-button .array-next {
	width: 48px;
	height: 48px;
	line-height: 48px;
	text-align: center;
	border-radius: 100px;
	border: 1px solid var(--theme3);
	transition: all 0.4s ease-in-out;
	position: relative;
	z-index: 999;
	display: inline-block;
}

.team-section-4 .arrow-button .array-prev img,
.team-section-4 .arrow-button .array-next img {
	transition: all 0.4s ease-in-out;
}

.team-section-4 .arrow-button .array-prev:hover,
.team-section-4 .arrow-button .array-next:hover {
	background-color: var(--theme3);
}

.team-section-4 .arrow-button .array-prev:hover img,
.team-section-4 .arrow-button .array-next:hover img {
	filter: brightness(0) invert(1);
}

.team-section-4 .swiper-slide.swiper-slide-active .team-card-items-4 {
	transform: translateY(50px);
}

.team-section-4 .swiper-slide.swiper-slide-active .team-card-items-4::before {
	opacity: 1;
	visibility: visible;
}

.team-section-4 .swiper-slide.swiper-slide-active .team-card-items-4 .team-image .social-icon {
	opacity: 1;
	visibility: visible;
	bottom: 50px;
}

.testimonial-box-item {
	background-color: var(--bg);
	position: relative;
	text-align: center;
	padding: 30px;
	border-radius: 24px;
}

@media (max-width: 1600px) {
	.testimonial-box-item {
		padding: 20px;
	}
}

@media (max-width: 1399px) {
	.testimonial-box-item {
		padding: 30px;
	}
}

.testimonial-box-item::before {
	position: absolute;
	content: "";
	left: 0px;
	top: 0px;
	right: 0px;
	bottom: 0px;
	opacity: 0;
	transform: scale(0.1, 1);
	transition: all 500ms ease;
	-moz-transition: all 500ms ease;
	-webkit-transition: all 500ms ease;
	-ms-transition: all 500ms ease;
	-o-transition: all 500ms ease;
	background-color: var(--theme);
	border-radius: 12px;
}

.testimonial-box-item .content {
	border-bottom: 1px solid rgba(47, 47, 47, 0.2);
	padding-bottom: 24px;
	margin-bottom: 24px;
}

.testimonial-box-item .content .client-image {
	transition: all 0.4s ease-in-out;
}

.testimonial-box-item .content h4 {
	margin-top: 10px;
}

.testimonial-box-item .content span {
	font-weight: 500;
	color: rgb(80, 98, 74);
}

.testimonial-box-item p {
	margin: 0 auto;
	font-style: italic;
	font-size: 18px;
	font-weight: 600;
	color: var(--header);
}

@media (max-width: 1600px) {
	.testimonial-box-item p {
		font-size: 16px;
	}
}

@media (max-width: 1399px) {
	.testimonial-box-item p {
		font-size: 14px;
	}
}

@media (max-width: 1199px) {
	.testimonial-box-item p {
		font-size: 16px;
	}
}

.testimonial-box-item .star {
	color: rgb(255, 127, 34);
	margin-top: 10px;
	font-size: 20px;
}

.testimonial-box-item .star i {
	clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
}

.testimonial-box-item:hover:before {
	opacity: 1;
	transform: scale(1, 1);
}

.testimonial-box-item:hover .content {
	border-bottom: 1px solid rgba(255, 255, 255, 0.3);
	position: relative;
}

.testimonial-box-item:hover .content .client-image {
	transform: rotateY(180deg);
	display: inline-block;
}

.testimonial-box-item:hover .content h4 {
	color: var(--white);
}

.testimonial-box-item:hover .content span {
	color: var(--white);
}

.testimonial-box-item:hover p {
	color: var(--white);
	position: relative;
}

.testimonial-box-item:hover .star {
	color: var(--white);
	position: relative;
}

.testimonial-box-item-bg {
	background-color: rgb(79, 127, 58);
	padding: 25px;
	border-radius: 24px;
}

@media (max-width: 1600px) {
	.testimonial-box-item-bg .section-title h2 {
		font-size: 40px;
	}
}

@media (max-width: 1399px) {
	.testimonial-box-item-bg .section-title h2 {
		font-size: 35px !important;
	}
}

@media (max-width: 991px) {
	.testimonial-box-item-bg .section-title h2 {
		font-size: 36px;
	}
}

@media (max-width: 767px) {
	.testimonial-box-item-bg .section-title h2 {
		font-size: 40px;
	}
}

@media (max-width: 575px) {
	.testimonial-box-item-bg .section-title h2 {
		font-size: 30px;
	}
}

@media (max-width: 470px) {
	.testimonial-box-item-bg .section-title h2 {
		font-size: 30px;
	}
}

.testimonial-box-item-bg .text {
	max-width: 340px;
	margin-top: 10px;
}

.testimonial-box-item-bg .test-button {
	display: flex;
	align-items: center;
	gap: 16px;
	margin-top: 20px;
}

@media (max-width: 1600px) {
	.testimonial-box-item-bg .test-button {
		gap: 9px;
	}
}

@media (max-width: 1199px) {
	.testimonial-box-item-bg .test-button {
		flex-wrap: wrap;
	}
}

.testimonial-box-item-bg .test-button .theme-btn {
	background-color: var(--theme3);
}

@media (max-width: 1600px) {
	.testimonial-box-item-bg .test-button .theme-btn {
		padding: 15px 20px 15px;
	}
}

@media (max-width: 1399px) {
	.testimonial-box-item-bg .test-button .theme-btn {
		padding: 15px 10px 15px;
	}
}

@media (max-width: 1199px) {
	.testimonial-box-item-bg .test-button .theme-btn {
		padding: 15px 20px 15px;
	}
}

.testimonial-box-item-bg .test-button .theme-btn::before {
	background-color: var(--white);
}

.testimonial-box-item-bg .test-button .theme-btn::after {
	background: rgba(255, 255, 255, 0.3);
}

.testimonial-box-item-bg .test-button .theme-btn:hover {
	color: var(--theme);
}

.testimonial-box-item-bg .test-button .theme-btn.style-2 {
	background-color: var(--white);
	color: var(--theme);
}

.testimonial-box-item-bg .test-button .theme-btn.style-2::before {
	background-color: var(--theme);
}

.testimonial-box-item-bg .test-button .theme-btn.style-2::after {
	background-color: var(--theme);
}

.testimonial-box-item-bg .test-button .theme-btn.style-2:hover {
	color: var(--white);
}

.testimonial-section {
	position: relative;
}

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

@media (max-width: 1600px) {
	.testimonial-section .right-shape {
		right: -115px;
	}
}

@media (max-width: 1399px) {
	.testimonial-section .right-shape {
		display: none;
	}
}

.testimonial-wrapper-2 {
	background-color: rgba(255, 255, 255, 0.95);
	border-radius: 20px;
	padding: 30px;
	margin-top: 48px;
}

@media (max-width: 575px) {
	.testimonial-wrapper-2 {
		margin-top: 30px;
	}
}

.testimonial-wrapper-2 .testimonial-card-item-2 {
	position: relative;
	text-align: center;
	padding: 30px;
	border-radius: 24px;
	border: 1px solid rgb(245, 216, 62);
}

@media (max-width: 1600px) {
	.testimonial-wrapper-2 .testimonial-card-item-2 {
		padding: 20px;
	}
}

@media (max-width: 1399px) {
	.testimonial-wrapper-2 .testimonial-card-item-2 {
		padding: 30px;
	}
}

.testimonial-wrapper-2 .testimonial-card-item-2::before {
	position: absolute;
	content: "";
	left: 0px;
	top: 0px;
	right: 0px;
	bottom: 0px;
	opacity: 0;
	transform: scale(0.1, 1);
	transition: all 500ms ease;
	-moz-transition: all 500ms ease;
	-webkit-transition: all 500ms ease;
	-ms-transition: all 500ms ease;
	-o-transition: all 500ms ease;
	background-color: var(--theme2);
	border-radius: 20px;
}

.testimonial-wrapper-2 .testimonial-card-item-2 .content {
	border-bottom: 1px solid rgba(47, 47, 47, 0.2);
	padding-bottom: 24px;
	margin-bottom: 24px;
}

.testimonial-wrapper-2 .testimonial-card-item-2 .content .client-image {
	transition: all 0.4s ease-in-out;
}

.testimonial-wrapper-2 .testimonial-card-item-2 .content h3 {
	margin-top: 10px;
	font-size: 20px;
	font-weight: 700;
	line-height: 150%;
	text-transform: capitalize;
}

.testimonial-wrapper-2 .testimonial-card-item-2 .content span {
	font-weight: 500;
	color: rgb(80, 98, 74);
}

.testimonial-wrapper-2 .testimonial-card-item-2 p {
	margin: 0 auto;
	font-style: italic;
	font-size: 18px;
	font-weight: 600;
	color: var(--header);
}

@media (max-width: 1600px) {
	.testimonial-wrapper-2 .testimonial-card-item-2 p {
		font-size: 18px;
	}
}

@media (max-width: 1399px) {
	.testimonial-wrapper-2 .testimonial-card-item-2 p {
		font-size: 14px;
	}
}

@media (max-width: 1199px) {
	.testimonial-wrapper-2 .testimonial-card-item-2 p {
		font-size: 16px;
	}
}

.testimonial-wrapper-2 .testimonial-card-item-2 .star {
	color: rgb(255, 127, 34);
	margin-top: 10px;
	font-size: 20px;
}

.testimonial-wrapper-2 .testimonial-card-item-2 .star i {
	clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
}

.testimonial-wrapper-2 .testimonial-card-item-2:hover:before {
	opacity: 1;
	transform: scale(1, 1);
}

.testimonial-wrapper-2 .testimonial-card-item-2:hover .content {
	position: relative;
}

.testimonial-wrapper-2 .testimonial-card-item-2:hover .content .client-image {
	transform: rotateY(180deg);
	display: inline-block;
}

.testimonial-wrapper-2 .testimonial-card-item-2:hover p {
	position: relative;
}

.testimonial-wrapper-2 .testimonial-card-item-2:hover .star {
	position: relative;
	color: var(--header);
}

.testimonial-section-2 {
	position: relative;
	z-index: 9;
	padding-top: 240px !important;
}

@media (max-width: 1399px) {
	.testimonial-section-2 {
		padding-top: 100px !important;
	}
}

@media (max-width: 991px) {
	.testimonial-section-2 {
		padding-top: 80px !important;
	}
}

.testimonial-section-2 .client-man {
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	bottom: 0;
	z-index: -1;
}

@media (max-width: 1600px) {
	.testimonial-section-2 .client-man {
		height: 885px;
	}

	.testimonial-section-2 .client-man img {
		object-fit: cover;
	}
}

@media (max-width: 1399px) {
	.testimonial-section-2 .client-man {
		display: none;
		height: 885px;
	}
}

.testimonial-section-2 .client-man img {
	width: 100%;
	height: 100%;
}

.testimonial-section-2 .testimonial-top-item {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

@media (max-width: 1199px) {
	.testimonial-section-2 .testimonial-top-item {
		flex-wrap: wrap;
		gap: 30px;
	}
}

.testimonial-section-2 .testimonial-top-item .right-item {
	display: flex;
	align-items: center;
	gap: 60px;
}

@media (max-width: 1199px) {
	.testimonial-section-2 .testimonial-top-item .right-item {
		flex-wrap: wrap;
		gap: 20px;
	}
}

.testimonial-section-2 .testimonial-top-item .right-item .arrow-button {
	display: flex;
	align-items: center;
	gap: 20px;
	border-left: 1px solid rgba(47, 47, 47, 0.2);
	padding-left: 50px;
}

@media (max-width: 1199px) {
	.testimonial-section-2 .testimonial-top-item .right-item .arrow-button {
		padding-left: 0;
		border-left: none;
	}
}

.testimonial-section-2 .testimonial-top-item .right-item .arrow-button .array-prev {
	background-color: var(--header);
	width: 60px;
	height: 60px;
	border-radius: 100px;
	line-height: 60px;
	color: var(--theme);
	font-size: 18px;
	z-index: 9;
	transition: all 0.4s ease-in-out;
}

.testimonial-section-2 .testimonial-top-item .right-item .arrow-button .array-prev img {
	transition: all 0.4s ease-in-out;
}

.testimonial-section-2 .testimonial-top-item .right-item .arrow-button .array-prev:hover {
	color: var(--header);
	background-color: var(--theme2);
}

.testimonial-section-2 .testimonial-top-item .right-item .arrow-button .array-prev:hover img {
	filter: grayscale(100%) brightness(0.3) contrast(1.2);
}

.testimonial-section-2 .testimonial-top-item .right-item .arrow-button .array-next {
	z-index: 999;
	transition: all 0.4s ease-in-out;
	background-color: var(--header);
	width: 60px;
	height: 60px;
	border-radius: 100px;
	line-height: 60px;
}

.testimonial-section-2 .testimonial-top-item .right-item .arrow-button .array-next img {
	filter: brightness(0) invert(1);
	transition: all 0.4s ease-in-out;
}

.testimonial-section-2 .testimonial-top-item .right-item .arrow-button .array-next:hover {
	background-color: var(--theme2);
}

.testimonial-section-2 .testimonial-top-item .right-item .arrow-button .array-next:hover img {
	filter: grayscale(100%) brightness(0.3) contrast(1.2);
}

.testimonial-wrapper-3 {
	margin-top: 48px;
}

@media (max-width: 575px) {
	.testimonial-wrapper-3 {
		margin-top: 30px;
	}
}

.testimonial-wrapper-3 .testimonial-bg-box {
	padding: 30px 70px 0;
	border-radius: 10px;
	position: relative;
	z-index: 9;
	overflow: hidden;
}

@media (max-width: 1399px) {
	.testimonial-wrapper-3 .testimonial-bg-box {
		padding: 30px 30px 0;
	}
}

.testimonial-wrapper-3 .testimonial-bg-box .testimonial-man img {
	width: 100%;
	height: 100%;
}

.testimonial-wrapper-3 .testimonial-bg-box .shape {
	position: absolute;
	right: 0;
	bottom: 0;
	z-index: -1;
}

@media (max-width: 1399px) {
	.testimonial-wrapper-3 .testimonial-bg-box .shape {
		display: none;
	}
}

.testimonial-wrapper-3 .testimonial-box {
	border-radius: 10px;
	background-color: var(--white);
	padding: 30px;
	position: relative;
}

.testimonial-wrapper-3 .testimonial-box .arrow-button {
	display: flex;
	align-items: center;
	gap: 12px;
	position: absolute;
	right: 30px;
	bottom: 25px;
	z-index: 9999;
	background-color: var(--white);
}

.testimonial-wrapper-3 .testimonial-box .arrow-button .array-prev,
.testimonial-wrapper-3 .testimonial-box .arrow-button .array-next {
	width: 48px;
	height: 48px;
	line-height: 48px;
	text-align: center;
	border-radius: 100px;
	background-color: rgba(17, 162, 27, 0.1);
	transition: all 0.4s ease-in-out;
	position: relative;
	z-index: 999;
}

.testimonial-wrapper-3 .testimonial-box .arrow-button .array-prev img,
.testimonial-wrapper-3 .testimonial-box .arrow-button .array-next img {
	transition: all 0.4s ease-in-out;
}

.testimonial-wrapper-3 .testimonial-box .arrow-button .array-prev:hover,
.testimonial-wrapper-3 .testimonial-box .arrow-button .array-next:hover {
	background-color: var(--theme3);
}

.testimonial-wrapper-3 .testimonial-box .arrow-button .array-prev:hover img,
.testimonial-wrapper-3 .testimonial-box .arrow-button .array-next:hover img {
	filter: brightness(0) invert(1);
}

.testimonial-wrapper-3 .testimonial-box .content .info-item {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.testimonial-wrapper-3 .testimonial-box .content .info-item .info-text .client-image {
	max-width: 100%;
	margin-bottom: 10px;
}

.testimonial-wrapper-3 .testimonial-box .content .info-item .info-text h3 {
	font-size: 20px;
	font-weight: 700;
	line-height: 150%;
	text-transform: capitalize;
}

.testimonial-wrapper-3 .testimonial-box .content p {
	border-top: 1px solid rgba(47, 47, 47, 0.2);
	border-bottom: 1px solid rgba(47, 47, 47, 0.2);
	margin-bottom: 35px;
	padding-bottom: 28px;
	padding-top: 25px;
	margin-top: 25px;
	font-size: 18px;
	font-weight: 600;
	font-style: italic;
	color: var(--header);
	max-width: 630px;
	line-height: 190%;
}

@media (max-width: 1399px) {
	.testimonial-wrapper-3 .testimonial-box .content p {
		font-size: 16px;
	}
}

.testimonial-wrapper-3 .testimonial-box .content .star {
	color: rgb(255, 127, 34);
}

.testimonial-section-3 {
	background-color: rgba(17, 162, 27, 0.05);
	position: relative;
}

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

@media (max-width: 1399px) {
	.testimonial-section-3 .cabage-shape {
		display: none;
	}
}

.testimonial-wrapper-4 {
	margin-top: 48px;
}

.testimonial-wrapper-4 .testimonial-image {
	position: relative;
	z-index: 9;
}

.testimonial-wrapper-4 .testimonial-image::before {
	position: absolute;
	content: "";
	border: 1px solid var(--theme3);
	border-radius: 10px;
	top: -8px;
	right: -12px;
	width: 100%;
	height: 100%;
	z-index: -1;
}

@media (max-width: 1399px) {
	.testimonial-wrapper-4 .testimonial-image::before {
		display: none;
	}
}

.testimonial-wrapper-4 .testimonial-image img {
	width: 100%;
	height: 100%;
	border-radius: 10px;
}

.testimonial-wrapper-4 .testimonial-box-items-4 {
	background-color: var(--bg3);
	padding: 70px 60px;
	border-radius: 10px;
	margin-left: 30px;
	position: relative;
}

@media (max-width: 1399px) {
	.testimonial-wrapper-4 .testimonial-box-items-4 {
		margin-left: 0;
		padding: 30px;
	}
}

.testimonial-wrapper-4 .testimonial-box-items-4 .arrow-button {
	display: flex;
	align-items: center;
	gap: 15px;
	z-index: 999;
	justify-content: space-between;
	position: absolute;
	top: 50%;
	left: -20px;
	right: -20px;
	transform: translateY(-50%);
	z-index: 99;
}

@media (max-width: 1399px) {
	.testimonial-wrapper-4 .testimonial-box-items-4 .arrow-button {
		display: none;
	}
}

.testimonial-wrapper-4 .testimonial-box-items-4 .arrow-button .array-prev,
.testimonial-wrapper-4 .testimonial-box-items-4 .arrow-button .array-next {
	width: 48px;
	height: 48px;
	line-height: 48px;
	text-align: center;
	border-radius: 100px;
	background-color: var(--bg);
	border: 1px solid var(--theme3);
	transition: all 0.4s ease-in-out;
	position: relative;
	z-index: 999;
	display: inline-block;
}

.testimonial-wrapper-4 .testimonial-box-items-4 .arrow-button .array-prev img,
.testimonial-wrapper-4 .testimonial-box-items-4 .arrow-button .array-next img {
	transition: all 0.4s ease-in-out;
}

.testimonial-wrapper-4 .testimonial-box-items-4 .arrow-button .array-prev:hover,
.testimonial-wrapper-4 .testimonial-box-items-4 .arrow-button .array-next:hover {
	background-color: var(--theme3);
}

.testimonial-wrapper-4 .testimonial-box-items-4 .arrow-button .array-prev:hover img,
.testimonial-wrapper-4 .testimonial-box-items-4 .arrow-button .array-next:hover img {
	filter: brightness(0) invert(1);
}

.testimonial-wrapper-4 .testimonial-box-items-4 .content h3 {
	font-size: 32px;
	margin-bottom: 15px;
}

@media (max-width: 1399px) {
	.testimonial-wrapper-4 .testimonial-box-items-4 .content h3 {
		font-size: 25px;
	}
}

.testimonial-wrapper-4 .testimonial-box-items-4 .content p {
	margin: 0;
	font-size: 20px;
	line-height: 2;
}

@media (max-width: 1399px) {
	.testimonial-wrapper-4 .testimonial-box-items-4 .content p {
		font-size: 16px;
	}
}

.testimonial-wrapper-4 .testimonial-box-items-4 .content .testi-bottom {
	display: flex;
	justify-content: space-between;
	margin-top: 30px;
	align-items: center;
}

@media (max-width: 1399px) {
	.testimonial-wrapper-4 .testimonial-box-items-4 .content .testi-bottom {
		flex-wrap: wrap;
		gap: 25px;
	}
}

.testimonial-wrapper-4 .testimonial-box-items-4 .content .testi-bottom .cont h4 {
	font-size: 28px;
	margin-bottom: 5px;
}

@media (max-width: 1399px) {
	.testimonial-wrapper-4 .testimonial-box-items-4 .content .testi-bottom .cont h4 {
		font-size: 22px;
	}
}

.array-button {
	display: flex;
	align-items: center;
	gap: 15px;
	z-index: 999;
}

.array-button .array-prev {
	border-radius: 100px;
	border: 1px solid #E6E8EB;
	width: 54px;
	height: 54px;
	line-height: 54px;
	text-align: center;
	border-radius: 50%;
	color: var(--header);
	transition: all 0.4s ease-in-out;
	cursor: pointer;
}

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

.array-button .array-next {
	border-radius: 100px;
	background-color: var(--theme);
	width: 54px;
	height: 54px;
	line-height: 54px;
	text-align: center;
	border-radius: 50%;
	color: var(--white);
	transition: all 0.4s ease-in-out;
	cursor: pointer;
}

.array-button .array-next:hover {
	background-color: var(--header);
}

.swiper-dot {
	position: relative;
	text-align: center;
	margin-top: 45px;
	padding-bottom: 2px;
}

@media (max-width: 1399px) {
	.swiper-dot {
		margin-top: 30px;
	}
}

.swiper-dot .swiper-pagination-bullet {
	width: 10px;
	height: 10px;
	transition: 0.6s;
	background-color: var(--header);
	opacity: 1;
	border-radius: 10px;
}

.swiper-dot .swiper-pagination-bullet:not(:last-child) {
	margin-right: 10px;
}

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

.swiper-dot .swiper-pagination-bullet.swiper-pagination-bullet-active::before {
	position: absolute;
	content: "";
	width: 28px;
	height: 28px;
	border-radius: 100px;
	border: 1px solid var(--theme);
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

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

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

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

.bg-cover {
	background-repeat: no-repeat;
	background-size: cover;
	position: relative;
	z-index: 1;
	background-position: center;
}

.fix {
	overflow: hidden;
}

.ralt {
	position: relative;
}

.sticky-style {
	position: sticky !important;
	top: 100px;
}

.slide-transtion {
	-webkit-transition-timing-function: linear;
	transition-timing-function: linear;
}

.brand-slide-element {
	width: auto;
	display: inline-block;
}

.p-relative {
	position: relative;
}

.ripple {
	position: relative;
}

.ripple::before,
.ripple::after {
	position: absolute;
	left: 50%;
	top: 50%;
	width: 70px;
	height: 70px;
	-webkit-transform: translateX(-50%) translateY(-50%);
	transform: translateX(-50%) translateY(-50%);
	border-radius: 50%;
	box-shadow: 0 0 0 0 rgba(236, 72, 153, 0.5);
	-webkit-animation: rippleOne 3s infinite;
	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;
}

.ripple-2 {
	position: relative;
}

.ripple-2::before {
	position: absolute;
	content: "";
	left: 50%;
	top: 50%;
	width: 60%;
	height: 60%;
	background-color: rgba(255, 255, 255, 0.1);
	-webkit-animation: borderanimate2 2s linear infinite;
	animation: borderanimate2 2s linear infinite;
	z-index: -1;
	border-radius: 50%;
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	z-index: -1;
}

.ripple-2::after {
	position: absolute;
	content: "";
	left: 50%;
	top: 50%;
	width: 60%;
	height: 60%;
	-webkit-transform: scale(1.5);
	transform: scale(1.5);
	border: 1px solid rgba(255, 255, 255, 0.1);
	-webkit-animation: borderanimate2 2s linear infinite;
	animation: borderanimate2 2s linear infinite;
	border-radius: 50%;
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	z-index: -1;
}

.page-nav-wrap {
	margin-top: 60px;
}

.page-nav-wrap ul li {
	display: inline-block;
}

.page-nav-wrap ul li.active .page-numbers {
	background-color: var(--theme3);
	color: var(--white);
}

.page-nav-wrap ul li .page-numbers {
	display: inline-block;
	width: 48px;
	height: 48px;
	text-align: center;
	line-height: 48px;
	border-radius: 0;
	background: var(--header);
	color: var(--white);
	font-weight: 500;
	transition: all 0.3s ease-in-out;
	margin: 0 2px;
	border-radius: 50%;
	font-family: "Instrument Sans", sans-serif;
}

.page-nav-wrap ul li .page-numbers.current {
	background-color: var(--theme3);
	color: var(--white);
}

@media (max-width: 767px) {
	.page-nav-wrap ul li .page-numbers {
		margin-top: 10px;
		width: 40px;
		height: 40px;
		line-height: 40px;
		font-size: 14px;
	}
}

.page-nav-wrap ul li .page-numbers i {
	margin-top: 2px;
	color: var(--white);
	transition: all 0.4s ease-in-out;
}

.page-nav-wrap ul li .page-numbers:hover {
	background-color: var(--theme3);
	color: var(--white);
}

.page-nav-wrap ul li .page-numbers:hover i {
	color: var(--white);
}

.actually-area .bg-area {
	position: absolute;
	top: 40%;
	left: 51%;
	transform: translate(-50%, -50%) scale(0);
	background-color: var(--header);
	width: 250px;
	height: 250px;
	border-radius: 50%;
}

.tilt_scale {
	transition: transform 0.2s ease;
	display: inline-block;
}

.no-break {
	white-space: nowrap;
	/* Keeps "My Background and Expertise" together */
}

/* Optional: styling for words split animation */
.split-word {
	display: inline-block;
	/* Required for animation */
	opacity: 0;
}

.reveal-img {
	opacity: 0;
	/* start invisible */
	transform: translateX(-600px);
	/* start left */
}

.arrow-path {
	width: 220px;
	height: 130px;
	color: black;
	stroke-dasharray: 1000;
	animation: draw 10s linear infinite;
}

@keyframes draw {
	0% {
		stroke-dashoffset: 1000;
	}

	100% {
		stroke-dashoffset: 0;
	}
}

.image-wrapper {
	position: relative;
	transition: all 0.8s cubic-bezier(0.55, 0.085, 0, 0.99);
}

.animated-image {
	display: block;
	transform: translateY(100%);
	opacity: 0;
}

/* preloader শেষ হলে active class যোগ হবে */
.image-wrapper.active .animated-image {
	transform: translateY(0);
	opacity: 1;
}

/* Ensure the link inherits styles from its parent */
.wt-about-title2 a {
	display: inline-block;
	/* Needed for transform animations */
	color: inherit;
	text-decoration: inherit;
}

.project-section-3 .line-ani {
	margin-top: -25px;
}

@media (max-width: 1399px) {
	.project-section-3 .line-ani {
		display: none;
	}
}

.brand-container {
	max-width: 1660px;
	margin: 0 auto;
}

.gt-text-scale-anim {
	white-space: pre-wrap;
	transform-origin: top left;
}

.gt-letter-span {
	display: inline-block;
}

.gt-word-span {
	display: inline-block;
}

.p-relative {
	position: relative;
	z-index: 99;
}

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

.mb-30 {
	margin-bottom: 30px;
}

.custom-container {
	max-width: 1800px;
	margin: 0 auto;
}

.custom-container-2 {
	max-width: 1752px;
	margin: 0 auto;
}

.custom-container-3 {
	max-width: 1635px;
	margin: 0 auto;
}

.p-relative {
	position: relative;
}

.tp-clip-anim {
	position: relative;
	overflow: hidden;
}

.tp-clip-anim .mask {
	position: absolute;
	inset: 0;
	background-size: cover;
	background-position: center;
	transform: scale(1.1);
	opacity: 0;
	animation: reveal 1s forwards;
}

.tp-clip-anim .mask-1 {
	clip-path: inset(0 88.8% 0 0%);
	animation-delay: 0.1s;
}

.tp-clip-anim .mask-2 {
	clip-path: inset(0 77.7% 0 11.1%);
	animation-delay: 0.2s;
}

.tp-clip-anim .mask-3 {
	clip-path: inset(0 66.6% 0 22.2%);
	animation-delay: 0.3s;
}

.tp-clip-anim .mask-4 {
	clip-path: inset(0 55.5% 0 33.3%);
	animation-delay: 0.4s;
}

.tp-clip-anim .mask-5 {
	clip-path: inset(0 44.4% 0 44.4%);
	animation-delay: 0.5s;
}

.tp-clip-anim .mask-6 {
	clip-path: inset(0 33.3% 0 55.5%);
	animation-delay: 0.6s;
}

.tp-clip-anim .mask-7 {
	clip-path: inset(0 22.2% 0 66.6%);
	animation-delay: 0.7s;
}

.tp-clip-anim .mask-8 {
	clip-path: inset(0 11.1% 0 77.7%);
	animation-delay: 0.8s;
}

.tp-clip-anim .mask-9 {
	clip-path: inset(0 0% 0 88.8%);
	animation-delay: 0.9s;
}

@keyframes reveal {
	from {
		opacity: 0;
		transform: scale(1.2);
	}

	to {
		opacity: 1;
		transform: scale(1);
	}
}

.swiper-dot4 {
	text-align: center;
}

.swiper-dot4 .swiper-pagination-bullet {
	width: 22px;
	height: 10px;
	transition: 0.6s;
	background-color: var(--theme2);
	border-radius: 100px !important;
	position: relative;
	opacity: 1;
}

.swiper-dot4 .swiper-pagination-bullet.swiper-pagination-bullet-active {
	background-color: var(--theme2);
	transition: 0.6s;
	position: relative;
	width: 47px;
	border-radius: 100px !important;
}

.drone-water {
	position: absolute;
	top: 150px;
	left: 50%;
	transform: translateX(-50%);
	width: 650px;
	height: 650px;
	pointer-events: none;
	z-index: 1;
}

.drone-water .spray {
	position: absolute;
	top: 90px;
	width: 6px;
	height: 480px;
	background: linear-gradient(to bottom, rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0.35), rgba(255, 255, 255, 0));
	filter: blur(1px);
	animation: waterFall 1.5s linear infinite;
	opacity: 0.85;
}

.drone-water .spray::after {
	content: "";
	position: absolute;
	bottom: -5px;
	left: -14px;
	width: 35px;
	height: 35px;
	background: radial-gradient(circle, rgba(255, 255, 255, 0.45), transparent 70%);
	filter: blur(6px);
}

.drone-water .spray.left {
	left: 150px;
}

.drone-water .spray.left-2 {
	left: 190px;
	animation-delay: 0.3s;
}

.drone-water .spray.right {
	right: 150px;
}

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

.drone-water .spray.right-2 {
	right: 190px;
	animation-delay: 0.5s;
}

.header-siuu {
	position: relative;
}

.de_list {
	display: none;
	position: absolute;
	top: 100%;
	left: 52%;
	width: 8rem;
	z-index: 999;
	transform: translateX(-50%);
}

.de_list>div {
	border-radius: 10px;
	overflow: hidden;
	text-align: center;
	display: grid;
	gap: 0.16rem 0;
	padding: 0.2rem 0;
	background: #fff;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}

.de_list>div a {
	transition: 0.4s;
	color: #000;
}

.de_list>div a:hover {
	color: var(--theme2);
}

.header-siuu:hover .de_list {
	display: block;
}

.de_list::after {
	content: '';
	position: absolute;
	top: -16px;
	left: 50%;
	transform: translateX(-50%);
	border: 8px solid #fff;
	border-left-color: transparent;
	border-right-color: transparent;
	border-top-color: transparent;
	filter: drop-shadow(0px 0px 10px rgba(0, 0, 0, .3));
	z-index: 99999999;
}

.about-section-2 .section-title-area .content {
	max-width: 50%;
	font-size: 15px;
}

.why-choose-us-wrapper-4 .col-lg-6 h3 {
	height: 56px;
}

.why-choose-us-wrapper-4 .why-choose-us-box p {
	height: 112px;
}

.hero-portfolio-revealing-slider {
	--controlSize: 120px;
	--slidingAT: 1.3s;
}

.mean__menu-wrapper {
	position: relative;
}

.image-trail-animation {
	width: 100%;
	position: relative;
}

.bg-2-color {
	color: var(--bg2);
}

.radius {
	border-radius: 4px;
}

.header-main .main-menu ul li .submenu li>a img {
	border-radius: 15px;
	width: 100%;
}

.history-image p {
	display: none;

}

#technical .content {
	display: none;
}

#technical .content:first-child {
	display: block;
}

.history-image p:first-child {
	display: block;
	height: 100%;
}

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

.contact-map {
	border-radius: 15px;
	height: 100%;
	overflow: hidden;
}

.contact-map img {
	width: 100%;
	object-fit: cover;
	height: 100%;
}

.ps-lg-8 {
	padding-left: 8rem !important;
}

#technical {
	height: 260px;
}

.about-us-content .list li i {
	margin-right: 8px;
	color: var(--theme3);
}

.contact-info-wrapper .contact-info-left-content .info-icon-item .icon-item:last-child {
	width: 35%;
}

.contact-info-wrapper .contact-info-left-content .info-icon-item .icon-item .cont {
	max-width: 80%;

}

.shop-details-section .col-lg-6:last-child {
	border-radius: 15px;
	padding: 3% 0% 0;
	background: #fff;
}

.news-card-item h3 {
	display: -webkit-box;
	overflow: hidden;
	text-overflow: ellipsis;
	/* word-wrap: break-word; */
	/* word-break: break-all; */
	white-space: normal !important;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
}

.news-card-item .news-content p {
	display: -webkit-box;
	overflow: hidden;
	text-overflow: ellipsis;
	/* word-wrap: break-word; */
	/* word-break: break-all; */
	white-space: normal !important;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
}

.News.shop-section .row .col-xl-3 {
	width: 20%;
}

.News.shop-section .news-card-item {
	margin-top: 0;
}

.News.shop-section .news-card-item {
	padding: 20px;
}

.news-card-item .news-content .theme-btn {

	padding: 4px 17px;
}

.rowiu {
	width: 100%;
	border: 1px solid #c2dbc2;
	border-radius: 20px;
	margin-top: 21px;
	padding: 27px;
	padding-bottom: 30px;
	margin-left: 0;
}

.rowiu .col-xl-6 {
	margin-top: 0;
}

.rowiu .news-card-item {
	padding: 14px 33px;
	margin-top: 0;
	border-radius: 0;
	background: transparent !important;
	border-bottom: 1px solid #2222221f;
}

.rowiu .news-card-item:hover::before {
	display: none;
}

.rowiu .news-card-item span {
	display: inline-block;
	margin-right: 8px;
	font-weight: 700;
}

.rowiu .news-card-item:hover::after {
	display: none;
}

.rowiu .news-card-item .news-content h3 a:hover {
	color: var(--theme3);
}

.rowiu .news-card-item:hover .news-content h3 a {
	color: var(--theme3);
}

.rowiu .news-card-item:last-child{
	border-bottom: 0px solid #2222221f;
}
.rowiu .news-card-item:nth-child(9) {
	border-bottom: 0px solid #2222221f;
}
.rowiu .news-card-item .news-content h3 a {
	font-size: 18px;
	font-weight: 500;
}

.rowiu .news-card-item h3 {
	display: -webkit-box;
	overflow: hidden;
	text-overflow: ellipsis;
	/* word-wrap: break-word; */
	/* word-break: break-all; */
	white-space: normal !important;
	-webkit-line-clamp: 1;
	-webkit-box-orient: vertical;
}

@media (max-width: 1600px) {
	.why-choose-us-wrapper-4 .col-lg-6 h3 {
		height: 56px;
	}

	.project-section .section-title-area p {
		max-width: 50%;
	}

	.ps-lg-8 {
		padding-left: 3rem !important;
	}

	.our-history-wrapper .our-history-content .nav li .nav-link {
		padding: 18px 28px;
	}

	.news-card-item .news-content .tag span {
		font-size: 13px;
	}

	.about-wrapper-2 .count-wrap .count-item-2 h2 {
		font-size: 100px;
	}
}

@media (max-width: 1500px) {
	.our-history-wrapper .our-history-content .nav li .nav-link {
		padding: 18px 19px;
	}

	.rowiu .news-card-item {
		padding: 14px 26px;
	}

	.rowiu .news-card-item .news-content h3 a {
		font-size: 16px;
	}

	.shop-details-wrapper .product-details-content .shop-btn {

		margin-top: 2rem !important;
	}

	.shop-details-wrapper .product-details-content .details-info {

		margin-top: 2px;
		padding-top: 15px;
		font-size: 15px;
	}

	.shop-details-wrapper .shop-details-image .nav {

		flex-wrap: nowrap;
		gap: 9px;
		margin-top: 20px;
	}

	.shop-details-wrapper .product-details-content .shop-btn .theme-btn {
		padding: 8px 24px;
	}

	h2 {
		font-size: 40px;
	}

	body {
		font-size: 15px;
	}

	.section-padding {
		padding: 100px 0;
	}

	.footer-section-2 .footer-top-item {
		padding: 60px 0 60px;
	}
}

@media (max-width: 1400px) {
	.section-title .sub-title {
		font-size: 14px;
	}

	.our-history-section-3 .our-history-content {
		width: 39%;
		padding: 0;
	}

	.our-history-wrapper .our-history-content .tab-content .content p {

		line-height: 169%;
		font-weight: 400;
		margin-bottom: 10px;
		font-size: 13px;
		max-width: 100%;
	}

	.section-title .sub-title-3 {
		font-size: 12px;
		padding: 1px 9px;
	}

	.our-history-wrapper .our-history-content .nav li .nav-link {
		padding: 12px 15px;
		font-size: 13px;
	}

	.footer-section-2 .footer-top-item .footer-right-item .icon-item .cont span {
		font-size: 14px;
	}

	h4 {
		font-size: 18px;
	}

	.project-wrapper .main-box .box-2.active {
		width: 103% !important;
	}

	.section-padding {
		padding: 90px 0;
	}

	.shop-card-items .shop-content {
		padding: 20px 16px;
		padding-top: 24px;
	}

	h3 {
		font-size: 20px;
	}

	.why-choose-us-wrapper-4 .why-choose-us-box .top-content {
		margin-bottom: 7px;
	}

	.our-project-wrapper .project-thumb .content {
		bottom: -66px;
	}

	.news-card-item .news-content .theme-btn {
		padding: 6px 24px;
	}

	.footer-widget-wrapper.footer-widget-wrapper-2 .single-footer-widget .footer-contact-image .footer-contact-content .form-clt input {
		padding: 15px 40px;
	}

	.footer-widget-wrapper.footer-widget-wrapper-2 .single-footer-widget .footer-contact-image .footer-contact-content .form-clt i {
		left: 19px;
		top: 19px;
	}

	.page-nav-wrap ul li .page-numbers {
		width: 40px;
		height: 40px;
		line-height: 40px;
	}

	.our-statistics-section .our-statistics-content p {
		font-size: 14px;
		line-height: 25px;
	}

	.footer-widget-wrapper.footer-widget-wrapper-2 {
		padding: 40px 0 40px;
	}
}

@media (max-width: 1300px) {
	h1 {
		font-size: 36px;
	}

	.our-statistics-section .row .col-xl-6 {
		width: 100%;
	}

	.main-sideber .single-sideber-widget .search-widget form input {
		font-size: 16px;
		padding: 10px 20px;
	}

	.main-sideber .single-sideber-widget .category-list li {
		padding: 15px 20px;
	}

	.contact-wrapper .contact-content .contact-form .form-clt input {
		padding: 7px 20px;
	}

	.contact-info-wrapper .contact-info-left-content .info-icon-item .icon-item .cont h3 {
		font-size: 15px;
	}

	.process-card .card-title {
		font-size: 16px;
		margin-bottom: 8px;
		margin-top: 21px;
	}

	.about-wrapper-2 .count-wrap .count-item-2 h2 {
		font-size: 64px;
		padding-top: 12px;
	}

	.footer-widget-wrapper .single-footer-widget .list-area li {
		font-size: 14px;
	}

	.section-padding {
		padding: 80px 0;
	}

	h2 {
		font-size: 34px;
	}
}

@media (max-width: 1200px) {
	.header-main .header-right .header-btn .sidebar__toggle {
		display: block;
	}

	.contact-wrapper .contact-content .contact-form .form-clt input {
		padding: 12px 20px;
	}

	.our-history-section-3 .our-history-content {
		width: 100%;
		padding: 0;
	}

	.our-history-wrapper .history-image {
		flex-basis: 100%;
	}

	.theme-btn {
		font-size: 14px;
	}

	.section-padding {
		padding: 40px 0;
	}

	.why-choose-us-section-4 .col-xl-8.col-lg-7 {
		width: 100%;
	}

	.news-card-item .news-content .tag span {
		font-size: 11px;
	}

	.news-card-item {
		padding: 20px;
	}

	.mt-5 {
		margin-top: 2rem !important;
	}

	.main-sideber .single-sideber-widget .widget-title h3 {
		font-size: 20px;
	}

	.theme-btn {
		padding: 10px 18px 10px;
	}
}

@media (max-width: 1000px) {
	.theme-btn-2 {
		font-size: 12px;
		padding: 5px 6px 5px;
	}
.rowiu .col-xl-12 .news-card-item {
    width: 100%;
}
	.rowiu {
		margin-top: 18px;
		padding: 5px;
		padding-bottom: 12px;
	}

	.rowiu .news-card-item span {
		margin-right: 5px;
	}

	.rowiu .news-card-item {
		padding: 13px 13px;
	}

	.our-history-wrapper .our-history-content .tab-content .content p {

		font-size: 12px;
	}

	.our-history-wrapper .our-history-content .nav li .nav-link {
		padding: 10px 11px;
		font-size: 12px;
	}

	.our-history-wrapper .our-history-content .nav {
		margin-bottom: 20px;
		padding-bottom: 20px
	}

	.our-history-wrapper {
		flex-wrap: wrap;
		gap: 30px;
		padding: 16px;
	}

	.news-slider {
		margin-top: 30px;
	}

	.header-left img {
		height: 31px;
	}

	.header-main .header-right .header-btn .sidebar__toggle {
		padding: 2px 8px;
	}

	.hero-2 .hero-portfolio-revealing-slider-control {
		width: 46px;
		height: 46px;
	}

	h1 {
		font-size: 27px;
	}

	.hero-2 .hero-portfolio-revealing-slide p {
		font-size: 16px;
	}

	.section-padding {
		padding: 30px 0;
	}

	.project-wrapper .main-box {
		flex-flow: wrap;
	}

	.section-title .sub-title {
		font-size: 12px;
		margin-bottom: 10px;
	}

	.project-wrapper .main-box .box-2 .project-content .tag-list span {

		padding: 2px 9px;
		font-size: 12px;
		border-radius: 6px;
	}

	.project-wrapper .main-box .box-2 .project-content .tag-list {
		gap: 6px;
	}

	.project-wrapper {
		margin-top: 28px;
	}

	.project-wrapper .main-box .box-2.active {
		width: 100% !important;
		margin-bottom: 0px;
	}

	.project-wrapper .main-box {
		gap: 10px;
	}

	.project-wrapper .main-box .box-2 {
		height: 257px;
	}

	.project-wrapper .main-box .box-2 .project-content {
		position: absolute;
		bottom: 15px;
		left: 10px;
		opacity: 1;
		visibility: initial;
		padding: 20px 20px;
		right: 10px;
		border-radius: 10px;
	}

	.project-section .section-title-area {
		justify-content: center;
		text-align: center;
	}

	h3 {
		font-size: 18px;
	}

	.shop-card-items .shop-content {
		padding: 20px 20px;
		padding-top: 20px;
		text-align: center;
	}

	.section-title .sub-title-3 {
		margin-bottom: 10px;
		font-size: 12px;
	}

	.about-section-2 .section-title-area .content {
		font-size: 13px;
		max-width: 100%;
	}

	.about-wrapper-2 .count-wrap .count-item-2 p {
		font-size: 14px;
		max-width: 100%;
	}

	.our-project-wrapper .project-thumb .content {
		bottom: -30px;
	}

	.theme-btn {
		padding: 8px 19px 8px;
		margin-top: 1rem !important;
		font-size: 13px;
	}

	.our-project-wrapper .project-thumb .content p {
		color: var(--white);
		max-width: 97%;
		margin-top: 10px;
		font-size: 12px;
		line-height: 20px;
		/* width: 81%; */
	}

	.why-choose-us-wrapper-4 .why-choose-us-box p {
		height: auto;
	}

	.why-choose-us-wrapper-4 .col-lg-6 h3 {
		height: auto;
	}

	.why-choose-us-wrapper-4 .why-choose-us-box {
		padding: 20px;
	}

	.why-choose-us-wrapper-4 .col-lg-6:first-child h3 {
		height: auto;
	}

	.footer-logo {
		display: none;
	}

	.footer-widget-wrapper.footer-widget-wrapper-2 .single-footer-widget .footer-contact-image .footer-contact-content {
		padding: 20px 20px;
	}

	.footer-section-2 .footer-top-item .footer-right-item .icon-item h4 {
		font-size: 18px;
	}

	.footer-bottom .footer-wrapper {
		padding: 14px 0;
	}

	.footer-widget-wrapper.footer-widget-wrapper-2 {
		padding: 0px 0 30px;
	}

	.footer-widget-wrapper.footer-widget-wrapper-2 .single-footer-widget .footer-contact-image .footer-contact-content .form-clt i {top: 15px;left: 9px;/* font-size: 12px !important; */}

	.footer-widget-wrapper.footer-widget-wrapper-2 .single-footer-widget .footer-contact-image .footer-contact-content .form-clt input {
		padding: 14px 30px;
		font-size: 12px;
	}

	.news-card-item .news-content .theme-btn {

		margin-top: 0 !important;
		padding: 5px 18px;
	}

	.footer-section-2 .footer-top-item {
		padding-top: 30px;
		padding-bottom: 30px;
	}

	.footer-widget-wrapper.footer-widget-wrapper-2 .col-xl-3 {
		display: none;

	}

	.news-card-item .news-content .tag {
		font-size: 12px;
	}

	.news-card-item .news-content p {
		margin-bottom: 18px;
		margin-top: 14px;
	}

	.about-wrapper-2 .count-wrap .count-item-2 {
		width: 100%;
	}

	.news-card-item {
		padding: 16px;
	}

	.about-wrapper-2 .count-wrap .count-item-2 h2 {
		font-size: 50px;
	}

	.hero-2 .hero-portfolio-revealing-slide .hero-button .theme-btn-2 {
		padding: 7px 22px 7px;
	}

	.section-title-area {
		flex-wrap: wrap;
		gap: 19px;
	}

	.project-wrapper .main-box .box-2.active .project-content {
		opacity: 1;
		visibility: visible;
		bottom: 15px;
		/* width: 94%; */
		left: 10px;
	}

	.breadcrumb-wrapper .page-heading h1 {
		font-size: 32px;
	}

	.breadcrumb-wrapper .page-heading .breadcrumb-items li {
		font-size: 12px;
	}

	.page-nav-wrap {
		margin-top: 26px;
	}

	.shop-section .section-title {
		margin-bottom: 20px;
	}

	.shop-card-items {
		margin-top: 15px;
	}

	.shop-details-wrapper .shop-details-image .nav {
		gap: 6px;
		margin-top: 8px;
	}

	.shop-details-wrapper .product-details-content {
		margin-left: 0px;
		padding: 20px;
		margin-right: 0;
	}

	.shop-details-wrapper .product-details-content .details-info {
		margin-top: 11px;
		padding-top: 2px;
		font-size: 14px;
	}

	.shop-details-wrapper .product-details-content .shop-btn .theme-btn {
		padding: 5px 17px;
		margin-top: 0rem !important;
	}

	.shop-details-wrapper .product-details-content .shop-btn {

		margin-top: 1rem !important;
		gap: 10px;
		margin-bottom: 30px;
	}

	.shop-details-wrapper .product-details-content .details-info a {
		font-size: 14px;
	}

	.shop-details-wrapper .product-details-content .details-info span {
		font-size: 14px;
	}

	.shop-details-wrapper .product-details-content h2 {
		font-size: 22px;
	}

	.news-details-area .blog-post-details .single-blog-post .post-content {
		margin-top: 10px;
	}

	.news-details-area .col-lg-4 {
		display: none;
	}

	.news-card-item {
		margin-top: 0px;
	}

	.news-details-area .blog-post-details .tag-share-wrap {
		margin-bottom: 1rem !important;
	}

	.contact-info-wrapper .contact-info-left-content .info-icon-item {
		margin-top: 27px;
		flex-wrap: wrap;
		justify-content: left;
		gap: 16px;
	}

	.contact-wrapper .contact-content .contact-form .form-clt input {
		padding: 10px 14px;
		font-size: 12px;
	}

	.contact-wrapper .contact-content {
		padding: 22px;
	}

	.contact-info-wrapper .contact-info-left-content .info-icon-item .icon-item .cont h3 {
		font-size: 15px;
	}

	.contact-info-wrapper .contact-info-left-content .info-icon-item .icon-item .cont span {
		font-size: 14px;
	}

	.contact-info-wrapper .contact-info-left-content .info-icon-item .icon-item:last-child {
		width: 100%;
	}

	.our-statistics-section .our-statistics-content p {
		font-size: 14px;
		text-align: left;
		margin-top: 10px;
	}

	.our-statistics-wrapper .our-statistics-content .our-statistics-card .statistics-card {
		padding: 17px;
	}

	h2 {
		font-size: 26px;
	}
	.cookies {
	    right: 0;
	    width: 93% !important;
	    padding: 25px;
	}
	.cookies p {
	    margin-bottom: 22px;
	    line-height: 18px !important;
	    font-size: 12px !important;
	}
	.cookiesa a{
		    font-size: 12px !important;
	}
	.footer-bottom .footer-wrapper p{
		font-size: 12px ;
	}
	.contact-wrapper .contact-content .contact-form .form-clt textarea{
		  font-size: 12px !important;
	}
	.about-wrapper-2 .trac-wrap .tractor-image img {
	    width: 100%;
	    height: 100%;
	    filter: initial;
	}
	.mean-container .mean-nav ul li .submenu li a img{
		width: 100%;
	}
	.contact-wrapper .contact-content .contact-form .form-clt input, .contact-wrapper .contact-content .contact-form .form-clt textarea{
		padding: 14px 16px;
	}
	.news-card-item .news-content .tag span i {
	    margin-right: 3px;
	}
	.contact-wrapper .contact-content .contact-form .form-clt span {
	    padding-left: 13px;
	}
		.contact-wrapper .contact-content .contact-form .col-lg-12{
			    margin-top: 10px;
		}
}

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