/* CSS Index
-----------------------------------
1. Theme default css
2. Header Area
3. Off Canvas Menu
4. Mobile Menu Area
5. Hero Area
*/

/* Theme Default CSS
==================================================*/
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap");
@font-face {
	font-family: "SharpGrotesk";
	font-weight: 500;
	src: url("../fonts/SharpGrotesk-Medium25.otf");
}
@font-face {
	font-family: "SharpGrotesk";
	font-weight: 600;
	src: url("../fonts/SharpGrotesk-SemiBold25.otf");
}
@font-face {
	font-family: "SharpGrotesk";
	font-weight: 700;
	src: url("../fonts/SharpGrotesk-Bold25.otf");
}
@font-face {
	font-family: "SharpGrotesk20";
	font-weight: 600;
	src: url("../fonts/SharpGrotesk-SemiBold20.otf");
}

:root {
	--color-black: #000000;
	--color-white: #ffffff;
	--color-gray: #555555;
	--color-gray-2: #999999;
	--color-line: #444444;
	--color-border: #dedede;
	--color-bg: #f4f4f7;

	--font-Sg: "SharpGrotesk";
	--font-Pop: "Poppins", sans-serif;
}

.neon-green {
	background: -o-linear-gradient(68.49deg, #e6fb36 0%, #26ba2a 100%);
	background: linear-gradient(21.51deg, #e6fb36 0%, #26ba2a 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	text-fill-color: transparent;
}

.neon-text {
	background: -o-linear-gradient(76.69deg, #26ba2a 39.58%, #e6fb36 131.77%);
	background: linear-gradient(13.31deg, #26ba2a 39.58%, #e6fb36 131.77%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	text-fill-color: transparent;
}

body {
	font-family: var(--font-Pop);
	font-weight: 400;
	font-style: normal;
	font-size: 16px;
	color: var(--color-gray);
	line-height: 140%;
}
body.scrollHide {
	overflow-y: hidden;
}
* {
	margin: 0px;
	padding: 0px;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}
img {
	max-width: 100%;
	-webkit-transition: all 0.3s ease-out 0s;
	-o-transition: all 0.3s ease-out 0s;
	transition: all 0.3s ease-out 0s;
}
a,
.button {
	-webkit-transition: all 0.3s ease-out 0s;
	-o-transition: all 0.3s ease-out 0s;
	transition: all 0.3s ease-out 0s;
	text-decoration: none;
}

a:hover,
.main-menu li a:hover,
.footer-menu li a:hover {
	color: #26ba2a;
	text-decoration: none;
}
a,
button {
	color: #26ba2a;
	outline: medium none;
	cursor: pointer;
}
h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: var(--font-Sg);
	font-weight: 600;
	font-style: normal;
	color: var(--color-black);
	margin: 0 0 15px;
	text-transform: normal;
}
h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a {
	color: inherit;
}
h1 {
	font-size: 32px;
	line-height: 160%;
}
h2 {
	font-size: 28px;
}
h3 {
	font-size: 24px;
	line-height: 160%;
}
h4 {
	font-size: 22px;
}
h5 {
	font-size: 18px;
	line-height: 150%;
}
h6 {
	font-size: 14px;
}

ul {
	margin: 0px;
	padding: 0px;
}
li {
	list-style: none;
}
p {
	margin-bottom: 15px;
}

hr {
	border-bottom: 1px solid var(--color-border);
	border-top: 0 none;
	margin: 30px 0;
	padding: 0;
}

label {
	color: var(--color-black);
	cursor: pointer;
	font-size: 14px;
	font-weight: 400;
}

*::-moz-selection {
	background: var(--color-black);
	color: var(--color-white);
	text-shadow: none;
}
::-moz-selection {
	background: var(--color-black);
	color: var(--color-white);
	text-shadow: none;
}
::selection {
	background: var(--color-black);
	color: var(--color-white);
	text-shadow: none;
}
*::-moz-placeholder {
	color: var(--color-border);
	font-size: 14px;
	opacity: 1;
}
*::-webkit-input-placeholder {
	color: var(--color-border);
	font-size: 14px;
	opacity: 1;
}
*:-ms-input-placeholder {
	color: var(--color-border);
	font-size: 14px;
	opacity: 1;
}
*::-ms-input-placeholder {
	color: var(--color-border);
	font-size: 14px;
	opacity: 1;
}
*::placeholder {
	color: var(--color-border);
	font-size: 14px;
	opacity: 1;
}

/* button style */
.btn {
	background-image: -webkit-gradient(
		linear,
		left top,
		right top,
		color-stop(-14.21%, #333333),
		color-stop(207.89%, #333333)
	);
	background-image: -o-linear-gradient(left, #333333 -14.21%, #333333 207.89%);
	background-image: linear-gradient(90deg, #333333 -14.21%, #333333 207.89%);
	background: -o-linear-gradient(90deg, #333333 -14.21%, #333333 207.89%);
	border: none;
	border-radius: 8px;
	color: var(--color-white);
	display: inline-block;
	font-size: 20px;
	font-weight: 700;
	font-family: var(--font-Pop);
	letter-spacing: 0px;
	line-height: 140%;
	margin-bottom: 0;
	padding: 10px 28px;
	text-align: center;
	position: relative;
	z-index: 1;
	overflow: hidden;
	-webkit-transition: all 0.5s ease-in-out 0s;
	-o-transition: all 0.5s ease-in-out 0s;
	transition: all 0.5s ease-in-out 0s;
}
.btn:after {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	content: "";
	background-image: -webkit-gradient(
		linear,
		left top,
		right top,
		color-stop(-14.21%, #21a124),
		color-stop(207.89%, #b6c72b)
	);
	background-image: -o-linear-gradient(left, #21a124 -14.21%, #b6c72b 207.89%);
	background-image: linear-gradient(90deg, #21a124 -14.21%, #b6c72b 207.89%);
	background: -o-linear-gradient(90deg, #21a124 -14.21%, #b6c72b 207.89%);
	z-index: -1;
	opacity: 0;
	transition: opacity 0.5s ease-out;
	-webkit-transition: opacity 0.5s ease-out;
	-moz-transition: opacity 0.5s ease-out;
	-o-transition: opacity 0.5s ease-out;
}
.btn:hover {
	color: var(--color-white);
}
.btn:hover:after {
	opacity: 1;
}
.btn.btn-small {
	font-size: 14px;
	line-height: 140%;
	padding: 8px 20px;
}

input:focus[type="url"],
input:focus[type="text"],
input:focus[type="email"],
input:focus[type="tel"],
input:focus[type="button"],
input:focus[type="submit"],
input:focus[type="search"],
button:focus[type="button"],
button:focus[role="button"],
button:focus,
input:focus,
textarea:focus {
	outline: none;
	text-decoration: none;
}
.btn:focus {
	-webkit-box-shadow: 0 0 0 0;
	box-shadow: 0 0 0 0;
}

/* start owl-carousel */
.owl-carousel .owl-item img {
	width: auto;
}
.owl-carousel .owl-stage {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	padding-top: 20px;
	padding-bottom: 20px;
}
/* End Owl-Carousel */

/*
* ====================================
* Meanmenu
* ====================================
*/
.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;
	margin-top: 0px;
	margin-bottom: 0px;
}

.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 {
	width: 100%;
	display: block;
	padding: 0;
	color: var(--color-white);
	border-top: none;
	font-size: 18px;
	line-height: 190%;
	font-weight: 500;
	text-transform: capitalize;
	margin-bottom: 12px;
}
.mean-container .mean-nav ul li a:hover {
	color: var(--color-white);
}

.mean-container .mean-nav ul li a.mean-expand {
	margin-top: 5px;
	padding: 0 !important;
	line-height: 14px;
	border: 1px solid var(--color-white) !important;
	height: 30px;
	width: 30px;
	line-height: 30px;
	color: var(--primary-color);
	line-height: 30px;
	top: 0;
	font-weight: 400;
}
.mean-container .mean-nav ul li a.mean-expand:hover {
	background: var(--olive-color);
	color: var(--white-color);
	border-color: var(--color-white);
}

.mean-container .mean-nav ul li > a > i {
	display: none;
}

.mean-container .mean-nav ul li > a.mean-expand i {
	display: inline-block;
}

.mean-container .mean-nav > ul > li:first-child > a {
	border-top: 0;
}

.mean-container .mean-nav ul li a.mean-expand.mean-clicked {
	color: var(--white-color);
	background: #333;
}

.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);
	color: #f5f4f4;
}

/* end: Meanmenu */

@-webkit-keyframes bounceInDown {
	0% {
		opacity: 0;
		-webkit-transform: translateY(-2000px);
	}
	60% {
		opacity: 1;
		-webkit-transform: translateY(0px);
	}
	80% {
		-webkit-transform: translateY(-10px);
	}
	100% {
		-webkit-transform: translateY(0);
	}
}

@keyframes bounceInDown {
	0% {
		opacity: 0;
		-webkit-transform: translateY(-2000px);
		transform: translateY(-2000px);
	}
	60% {
		opacity: 1;
		-webkit-transform: translateY(0px);
		transform: translateY(0px);
	}
	80% {
		-webkit-transform: translateY(-10px);
		transform: translateY(-10px);
	}
	100% {
		-webkit-transform: translateY(0);
		transform: translateY(0);
	}
}
@-webkit-keyframes bounceInUp {
	0%,
	10%,
	35%,
	50%,
	to {
		-webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
		animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
	}
	10% {
		-webkit-transform: translate3d(0, 0px, 0);
		transform: translate3d(0, 0px, 0);
	}
	35% {
		-webkit-transform: translate3d(0, -10px, 0);
		transform: translate3d(0, -10px, 0);
	}
	50% {
		-webkit-transform: translate3d(0, 2px, 0);
		transform: translate3d(0, 2px, 0);
	}
	80% {
		-webkit-transform: translate3d(0, -90px, 0);
		transform: translate3d(0, -90px, 0);
	}
	to {
		-webkit-transform: translate3d(0, -3000px, 0);
		transform: translate3d(0, -3000px, 0);
	}
}
@keyframes bounceInUp {
	0%,
	10%,
	35%,
	50%,
	to {
		-webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
		animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
	}
	10% {
		-webkit-transform: translate3d(0, 0px, 0);
		transform: translate3d(0, 0px, 0);
	}
	35% {
		-webkit-transform: translate3d(0, -10px, 0);
		transform: translate3d(0, -10px, 0);
	}
	50% {
		-webkit-transform: translate3d(0, 2px, 0);
		transform: translate3d(0, 2px, 0);
	}
	80% {
		-webkit-transform: translate3d(0, -90px, 0);
		transform: translate3d(0, -90px, 0);
	}
	to {
		-webkit-transform: translate3d(0, -3000px, 0);
		transform: translate3d(0, -3000px, 0);
	}
}

/* start: Header Area
==================================================*/
.header-area {
	padding: 26px 0;
	background-color: transparent;
}
.header-area.header-absolute {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	background-color: transparent;
	z-index: 99;
}
.header-area.header-2 {
	width: 100%;
	position: fixed;
	top: -88px;
	left: 0;
	z-index: 998;
	opacity: 0;
	-webkit-transition: 0.3s;
	-o-transition: 0.3s;
	transition: 0.3s;
	background-color: var(--color-black);
}
.header-area.header-2.sticky {
	top: 0;
	opacity: 1;
	-webkit-animation: bounceInDown 1s;
	animation: bounceInDown 1s;
	-webkit-animation-duration: 1s;
	animation-duration: 1s;
	-webkit-animation-fill-mode: both;
	animation-fill-mode: both;
}
.header-area.header-2.sticky-out {
	top: 0;
	opacity: 1;
	-webkit-animation: bounceInUp 1s;
	animation: bounceInUp 1s;
	-webkit-animation-duration: 1s;
	animation-duration: 1s;
	-webkit-animation-fill-mode: forwards;
	animation-fill-mode: forwards;
}
.site_header .site_logo {
	max-width: 147px;
}

.site_header .main_menu ul > li {
	display: inline-block;
	margin: 0 24px;
}

.site_header .main_menu ul > li > a {
	display: block;
	font-size: 14px;
	color: var(--color-white);
}
.site_header .main_menu {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	margin-left: 24px;
}
.site_header .header_right {
	margin-left: auto;
}

.site_header .header_right a:not(:last-child) {
	margin-right: 24px;
}

.site_header .header_right .btn-inline {
	font-size: 14px;
	color: var(--color-white);
}
.header-area .site_header {
	padding: 0 6%;
}
.site_header .menu_bar {
	margin-left: 50px;
}
.mobile_menu {
	max-width: 100%;
	width: calc(100% - 60px);
	margin-left: 60px;
	height: 100%;
	overflow-y: scroll;
	position: fixed;
	top: 0;
	left: 100%;
	z-index: 999;
	background-color: var(--color-black);
	padding: 0 35px;
	transition: 0.3s;
}
.mobile_menu.open {
	left: 0;
}

.mobile_menu .top_area {
	padding-top: 35px;
	padding-bottom: 17px;
}

.mobile_menu_heading > span {
	display: inline-block;
	font-size: 14px;
	font-weight: 600;
	line-height: 190%;
	color: #cccccc;
	text-transform: uppercase;
}

.mobile_menu .top_area .close_icon > a {
	display: inline-block;
}
.mobile_menu .mobile_social,
.mobile_menu .mobile_support {
	border-top: 2px solid #666;
	margin-top: 30px;
	padding-top: 25px;
}

.mobile_menu .mobile-menu {
	overflow: hidden;
	clear: both;
}

.mobile_menu .mobile_social .mobile_menu_heading,
.mobile_menu .mobile_support .mobile_menu_heading {
	margin-bottom: 12px;
}

.mobile_social .socials li > a,
.mobile_support .supports li > a {
	display: block;
	font-size: 18px;
	line-height: 190%;
	color: var(--color-white);
}

.mobile_social .socials li:not(:last-child) > a,
.mobile_support .supports li:not(:last-child) > a {
	margin-bottom: 12px;
}

.mobile_menu .bottom_area {
	margin-top: 50px;
	text-align: center;
}

.mobile_menu .bottom_area .btn {
	background: -o-linear-gradient(68.49deg, #e6fb36 0%, #26ba2a 100%);
	background: linear-gradient(21.51deg, #e6fb36 0%, #26ba2a 100%);
}

.mobile_menu .bottom_area .copyright_text {
	display: block;
	font-size: 14px;
	line-height: 21px;
	font-weight: 400;
	color: var(--color-white);
	padding: 40px 0;
}
/* end: Header Area */

/* start: Hero Section
==================================================*/
.hero-section {
	background-color: var(--color-black);
	/* height: 90vh; */
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
	position: relative;
	z-index: 1;
	padding-top: 175px;
	overflow: hidden;
}
.hero-section::before {
	position: absolute;
	content: "";
	background: url(../img/hero/shape.png);
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-repeat: no-repeat;
	background-size: contain;
	z-index: -1;
}

.hero-section .container {
	padding: 0 8%;
}
.hero_heading .hero_title > h1 {
	color: var(--color-white);
	margin-bottom: 4px;
}

.hero_heading .hero_desc > p {
	margin-bottom: 0;
	font-size: 18px;
	line-height: 160%;
	font-family: var(--font-Sg);
	color: var(--color-gray-2);
}
.hero_content {
	margin-top: -75px;
	padding-top: 190px;
	padding-bottom: 200px;
	margin-right: -200px;
	position: relative;
	background-size: contain;
	background-position: right bottom;
	background-repeat: no-repeat;
}
.hero_img {
	margin-top: -110px;
	margin-left: -65px;
	margin-right: -150px;
	text-align: center;
}
.hero_content .content_list > li {
	display: block;
	font-size: 18px;
	line-height: 100%;
	color: var(--color-white);
	margin-bottom: 20px;
}
.hero_content .content_list > li > img {
	margin-right: 15px;
}
.hero_content .content_list {
	padding-bottom: 10px;
}
/* end: Hero Section */

/* start: Partners Section
==================================================*/
.partners-section {
	background-color: var(--color-black);
	padding-bottom: 86px;
}
.partners-section .partners_section_content {
	padding: 0 6%;
	margin-left: -30px;
	margin-right: -30px;
}
.partners_section_content .section_title > h3 {
	color: var(--color-white);
	margin-bottom: 30px;
}
.partners_section_content .partners_logo {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}
.partners_section_content .partners_logo > li {
	display: inline-block;
	margin: 0 30px 40px 30px;
}
.partners_section_content .partners_logo > li img {
	-webkit-filter: brightness(0.5);
	filter: brightness(0.5);
	-webkit-transition: all 0.3s ease-in-out 0s;
	-o-transition: all 0.3s ease-in-out 0s;
	transition: all 0.3s ease-in-out 0s;
}

.partners_section_content .partners_logo > li:hover img {
	-webkit-filter: brightness(1);
	filter: brightness(1);
}
/* end: Partners Section */

/* start: Feature Section
==================================================*/
.feature-section {
	background-color: var(--color-bg);
	padding-top: 88px;
	padding-bottom: 50px;
}
.feature_section_content .section_title > h3 {
	margin-bottom: 70px;
}
.feature_steps .step_item {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}
.feature_steps .step_item:not(:last-child) {
	margin-bottom: 25px;
}
.feature_steps .step_item .step_count {
	font-size: 60px;
	line-height: 100%;
	font-weight: 600;
	font-family: "SharpGrotesk20";
	margin-right: 23px;
}
.feature_steps .step_item .step_content > h5 {
	margin-bottom: 0;
}

.feature_steps .step_item .step_content > p {
	line-height: 160%;
	color: var(--color-black);
	margin-bottom: 0px;
}
/* end: Feature Section */

/* start: Card Section
==================================================*/
.card-section {
	padding-top: 125px;
	background-color: var(--color-bg);
	padding-bottom: 200px;
}
.card_section_content .section_title > h3 {
	margin-bottom: 76px;
}
.single_card_section .card_thumb {
	height: 260px;
	display: block;
	background: var(--color-white);
	border-radius: 24px;
	border: 1px solid var(--color-border);
	text-align: center;
	line-height: 260px;
	overflow: hidden;
	margin-bottom: 16px;
	/* transition: all 0.5s ease-in-out 0s; */
	position: relative;
}
.single_card_section .card_thumb:hover {
	border: 4px solid;
}
.single_card_section .card_content > h3 {
	text-align: center;
	line-height: 140%;
	margin-bottom: 8px;
	font-family: var(--font-Pop);
	font-weight: 500;
}

.single_card_section .card_content > p {
	margin-bottom: 16px;
}

.single_card_section .card_content .card_content_bottom > span.price {
	display: block;
	text-align: center;
	font-size: 32px;
	line-height: 140%;
	font-weight: 700;
	font-family: var(--font-Sg);
}

.single_card_section {
	margin-bottom: 30px;
}

.single_card_section.standard .card_thumb img {
	width: 200px;
	position: absolute;
	left: 50%;
	top: 50%;
	border-radius: 10px;
	-webkit-box-shadow: 2px 2px 14px rgba(0, 0, 0, 0.2);
	box-shadow: 2px 2px 14px rgba(0, 0, 0, 0.2);
	-webkit-transform: translate(-46%, -48%) rotate(2.57deg);
	-ms-transform: translate(-46%, -48%) rotate(2.57deg);
	transform: translate(-46%, -48%) rotate(2.57deg);
	-webkit-transition: all 0.3s ease-in-out 0s;
	-o-transition: all 0.3s ease-in-out 0s;
	transition: all 0.3s ease-in-out 0s;
	opacity: 0;
}

.single_card_section.standard .card_thumb img:nth-child(2) {
	z-index: 2;
	-webkit-transform: translate(-53%, -60%) rotate(-8.24deg);
	-ms-transform: translate(-53%, -60%) rotate(-8.24deg);
	transform: translate(-53%, -60%) rotate(-8.24deg);
	visibility: visible;
	opacity: 1;
}

.single_card_section.standard .card_thumb img:nth-child(1) {
	z-index: 1;
	opacity: 1;
}
.single_card_section.standard .card_thumb:hover img {
	-webkit-transform: translate(-46%, -48%) rotate(0deg);
	-ms-transform: translate(-46%, -48%) rotate(0deg);
	transform: translate(-46%, -48%) rotate(0deg);
	top: 28%;
	width: 150px;
	opacity: 1;
}
.single_card_section.standard .card_thumb:hover img:nth-child(1) {
	left: 8%;
}
.single_card_section.standard .card_thumb:hover img:nth-child(2) {
	left: 50%;
}
.single_card_section.standard .card_thumb:hover img:nth-child(3) {
	left: 91%;
}
.single_card_section.standard .card_thumb:hover img:nth-child(4) {
	top: 72%;
	left: 8%;
}
.single_card_section.standard .card_thumb:hover img:nth-child(5) {
	top: 72%;
	left: 50%;
}
.single_card_section.standard .card_thumb:hover img:nth-child(6) {
	top: 72%;
	left: 91%;
}
.single_card_section.customize .card_thumb img {
	width: 100%;
	height: 100%;
	position: absolute;
	left: 50%;
	top: 50%;
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	-webkit-transition: all 0.3s ease-in-out 0s;
	-o-transition: all 0.3s ease-in-out 0s;
	transition: all 0.3s ease-in-out 0s;
}

.single_card_section.customize .card_thumb img.show {
	z-index: 1;
}

.single_card_section.customize .card_thumb:hover img.show {
	-webkit-transform: translate(-150%, -50%);
	-ms-transform: translate(-150%, -50%);
	transform: translate(-150%, -50%);
}

.single_card_section.customize .card_thumb img.hover {
	-webkit-transform: translate(100%, -50%);
	-ms-transform: translate(100%, -50%);
	transform: translate(100%, -50%);
}

.single_card_section.customize .card_thumb:hover img.hover {
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
}
.single_card_section.premium .card_thumb img {
	position: absolute;
	left: 50%;
	top: 50%;
	-webkit-transform: translate(-46%, -48%) rotate(2.57deg);
	-ms-transform: translate(-46%, -48%) rotate(2.57deg);
	transform: translate(-46%, -48%) rotate(2.57deg);
	-webkit-transition: all 0.3s ease-in-out 0s;
	-o-transition: all 0.3s ease-in-out 0s;
	transition: all 0.3s ease-in-out 0s;
}

.single_card_section.premium .card_thumb img.front {
	-webkit-transform: translate(-53%, -60%) rotate(-8.24deg);
	-ms-transform: translate(-53%, -60%) rotate(-8.24deg);
	transform: translate(-53%, -60%) rotate(-8.24deg);
	z-index: 1;
}

.single_card_section.premium .card_thumb:hover img.front {
	-webkit-transform: translate(-50%, -50%) rotate(0deg);
	-ms-transform: translate(-50%, -50%) rotate(0deg);
	transform: translate(-50%, -50%) rotate(0deg);
	left: 26%;
}

.single_card_section.premium .card_thumb:hover img {
	-webkit-transform: translate(-50%, -50%) rotate(0deg);
	-ms-transform: translate(-50%, -50%) rotate(0deg);
	transform: translate(-50%, -50%) rotate(0deg);
	left: 74%;
}
.single_card_section.premium .card_thumb .hover_text span.front,
.single_card_section.premium .card_thumb .hover_text span.back {
	display: inline-block;
	font-size: 14px;
	line-height: 140%;
	font-weight: 600;
	color: var(--color-gray);
	text-transform: uppercase;
	font-family: var(--font-Pop);
}

.single_card_section.premium .card_thumb .hover_text span.front {
	position: absolute;
	bottom: 20%;
	left: 20%;
	-webkit-transition: all 0.5s ease-in-out 0s;
	-o-transition: all 0.5s ease-in-out 0s;
	transition: all 0.5s ease-in-out 0s;
	visibility: hidden;
	opacity: 0;
}

.single_card_section.premium .card_thumb:hover .hover_text span.front {
	visibility: visible;
	opacity: 1;
}

.single_card_section.premium .card_thumb .hover_text span.back {
	position: absolute;
	right: 20%;
	bottom: 20%;
	-webkit-transition: all 0.5s ease-in-out 0s;
	-o-transition: all 0.5s ease-in-out 0s;
	transition: all 0.5s ease-in-out 0s;
	visibility: hidden;
	opacity: 0;
}

.single_card_section.premium .card_thumb:hover .hover_text span.back {
	visibility: visible;
	opacity: 1;
}

.single_card_section.premium .card_thumb .hover_text span.sample {
	position: absolute;
	bottom: 12px;
	left: 50%;
	-webkit-transform: TRANSLATEX(-50%);
	-ms-transform: TRANSLATEX(-50%);
	transform: TRANSLATEX(-50%);
	font-size: 14px;
	line-height: 140%;
	font-weight: 400;
	text-transform: uppercase;
	color: #aaaaaa;
	visibility: hidden;
	opacity: 0;
	-webkit-transition: all 0.5s ease-in-out 0s;
	-o-transition: all 0.5s ease-in-out 0s;
	transition: all 0.5s ease-in-out 0s;
}

.single_card_section.premium .card_thumb:hover .hover_text span.sample {
	visibility: visible;
	opacity: 1;
}
/* end: Card Section */

/* start: Testimonial Section
==================================================*/
.testimonial-section {
	background-color: var(--color-black);
	padding-top: 140px;
	padding-bottom: 125px;
}
.testimonial_section_content .section_title > h3 {
	margin-bottom: 67px;
	color: var(--color-white);
}
.single_testimonial {
	width: 500px;
	position: relative;
}
.single_testimonial_inner {
	background: -o-linear-gradient(
		198.66deg,
		rgba(255, 255, 255, 0.15) -3.3%,
		rgba(255, 255, 255, 0.06) 102.57%
	);
	background: linear-gradient(
		251.34deg,
		rgba(255, 255, 255, 0.15) -3.3%,
		rgba(255, 255, 255, 0.06) 102.57%
	);
	-webkit-backdrop-filter: blur(94px);
	backdrop-filter: blur(94px);
	border: 1px solid rgba(255, 255, 255, 0.18);
	-webkit-box-shadow: 0px 20px 44px rgba(0, 0, 0, 0.2);
	box-shadow: 0px 20px 44px rgba(0, 0, 0, 0.2);
	border-radius: 24px;
	padding: 15px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	position: relative;
	min-height: 300px;
	height: 100%;
	-webkit-transform: scale(0.9);
	-ms-transform: scale(0.9);
	transform: scale(0.9);
	-webkit-transition: all 0.7s ease-in-out 0s;
	-o-transition: all 0.7s ease-in-out 0s;
	transition: all 0.7s ease-in-out 0s;
	opacity: 0.5;
}
.owl-item.center .single_testimonial .single_testimonial_inner {
	-webkit-transform: scale(1.1);
	-ms-transform: scale(1.1);
	transform: scale(1.1);
	opacity: 1;
}
.single_testimonial_inner::after {
	content: "";
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0;
	bottom: 0;
	background: -o-radial-gradient(
		-15% 175%,
		circle,
		rgba(38, 186, 42, 1) 0%,
		rgba(38, 186, 42, 0) 64%
	);
	background: radial-gradient(
		circle at -15% 175%,
		rgba(38, 186, 42, 1) 0%,
		rgba(38, 186, 42, 0) 64%
	);
	border-radius: 24px;
	z-index: -1;
}
.orange .single_testimonial_inner::after {
	background: -o-radial-gradient(
		-15% 175%,
		circle,
		rgba(245, 132, 31, 1) 0%,
		rgba(245, 132, 31, 0) 64%
	);
	background: radial-gradient(
		circle at -15% 175%,
		rgba(245, 132, 31, 1) 0%,
		rgba(245, 132, 31, 0) 64%
	);
}
.purple .single_testimonial_inner::after {
	background: -o-radial-gradient(
		-15% 175%,
		circle,
		rgba(125, 81, 203, 1) 0%,
		rgba(125, 81, 203, 0) 64%
	);
	background: radial-gradient(
		circle at -15% 175%,
		rgba(125, 81, 203, 1) 0%,
		rgba(125, 81, 203, 0) 64%
	);
}
.blue .single_testimonial_inner::after {
	background: -o-radial-gradient(
		-15% 175%,
		circle,
		rgba(21, 220, 255, 1) 0%,
		rgba(21, 220, 255, 0) 64%
	);
	background: radial-gradient(
		circle at -15% 175%,
		rgba(21, 220, 255, 1) 0%,
		rgba(21, 220, 255, 0) 64%
	);
}
.testimonial_logo_img .image {
	position: relative;
	width: 92px;
	height: 92px;
	border-radius: 50%;
}
.testimonial_logo_img .image:after,
.testimonial_logo_img .image:before {
	position: absolute;
	content: "";
	left: 50%;
	top: 50%;
	width: 105px;
	height: 105px;
	background: rgba(255, 255, 255, 0.06);
	border-radius: 50%;
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
}
.testimonial_logo_img .image:before {
	width: 124px;
	height: 124px;
	background: rgba(255, 255, 255, 0.04);
}
.testimonial_logo_img .image > img {
	width: 100%;
}
.testimonial_logo_img .logo {
	max-width: 120px;
}
.single_testimonial_inner .testimonial_content {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	max-width: 235px;
	width: 100%;
	margin-right: 15px;
	margin-top: 20px;
	margin-bottom: 20px;
}

.testimonial_content .content_text {
	font-size: 14px;
	line-height: 150%;
	color: var(--color-white);
}


.testimonial_content .content_text > p {
	margin-bottom: 0px;
}

.testimonial_content .content_text > p:not(:last-child) {
	margin-bottom: 20px;
}
.testimonial_content .content_name > h6 {
	line-height: 140%;
	color: var(--color-white);
	margin-bottom: 0;
}
.testimonial_content .content_name > h6 .username {
	display: block;
	font-weight: 400;
	font-family: var(--font-Pop);
	color: #1d9bf0;
}
.testimonial_content .content_text > p .username {
	color: #1d9bf0;
}
.single_testimonial_inner .testimonial_logo_img {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	margin-top: 40px;
	margin-left: 40px;
	margin-bottom: 15px;
}
.single_testimonial_inner .testimonial_content .content_name {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
}
.single_testimonial_inner .testimonial_content .content_name .social {
	margin-right: 25px;
	visibility: hidden;
	opacity: 0;
	-webkit-transition: all 0.3s ease-in-out 0s;
	-o-transition: all 0.3s ease-in-out 0s;
	transition: all 0.3s ease-in-out 0s;
}
/* .single_testimonial:after {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	content: "";
	background-color: var(--color-black);
	opacity: 0.5;
} */

/* .owl-item.center .single_testimonial:after {
	opacity: 0;
} */
/* .owl-item.center .single_testimonial {
	width: 600px;
} */
/* .owl-item.center
	.single_testimonial_inner
	.testimonial_content
	.content_name
	.social {
	visibility: visible;
	opacity: 1;
} */
/* .owl-item.center .single_testimonial_inner {
	min-height: 370px;
} */

/* .owl-item.center .single_testimonial_inner .testimonial_content .content_text {
	font-size: 16px;
} */

/* .owl-item.center .single_testimonial_inner .testimonial_content {
	max-width: 286px;
} */

/* .owl-item.center
	.single_testimonial_inner
	.testimonial_content
	.content_name
	> h6 {
	font-size: 16px;
} */

/* .owl-item.center .single_testimonial_inner .testimonial_logo_img {
	margin-top: 30px;
	margin-bottom: 25px;
} */
/* .owl-item.center .testimonial_logo_img .image {
	width: 125px;
	height: 125px;
} */
/* .owl-item.center .testimonial_logo_img .image::after {
	width: 152px;
	height: 152px;
}

.owl-item.center .testimonial_logo_img .image::before {
	width: 180px;
	height: 180px;
} */
.testimonial_carousel.owl-carousel .owl-nav {
	text-align: center;
	margin-top: 40px;
}
.testimonial_carousel.owl-carousel .owl-nav button {
	background-color: #1c1d1e;
	width: 64px;
	height: 64px;
	border-radius: 50%;
	color: var(--color-white);
	font-size: 25px;
	margin: 0 14px;
}
.testimonial_carousel.owl-carousel .owl-nav button.disabled {
	color: #cccccc;
	opacity: 0.8;
}
/* end: Header Area */

/* start: Footer Area
==================================================*/
.footer-area {
	background-color: var(--color-black);
	padding-bottom: 63px;
}

.footer_content {
	border-top: 2px solid #444444;
	padding-top: 73px;
	margin-left: 6%;
	margin-right: 6%;
}

.footer_widget .footer_logo {
	max-width: 143px;
	margin-bottom: 12px;
}

.footer_widget .footer_logo > a {
	display: block;
}

.footer_widget .footer_desc {
	max-width: 216px;
	width: 100%;
	font-size: 14px;
	line-height: 170%;
	color: var(--color-white);
	margin-bottom: 90px;
}

.footer_widget .copyright_text > p {
	font-size: 14px;
	line-height: 21px;
	margin-bottom: 0;
	color: #999999;
}
.footer_widget .footer_title > h5 {
	font-size: 16px;
	color: var(--color-white);
	line-height: 20px;
	font-weight: 500;
	margin-bottom: 17px;
}

.footer_widget .footer_menu ul li {
	display: block;
}

.footer_widget .footer_menu ul li > a {
	font-size: 14px;
	line-height: 21px;
	color: var(--color-white);
	margin-bottom: 20px;
	display: block;
	font-weight: 400;
}
/* end: Footer Area */

/* start: Team Page
==================================================*/
.hero-section.team-page {
	overflow: unset;
	padding-bottom: 392px;
}
.hero-section.team-page .container {
	padding: 0;
}
.team-page .hero_heading .hero_btn {
	margin-top: 45px;
}
.team-hero-img-section {
	text-align: center;
	margin-top: -350px;
	margin-bottom: -230px;
	position: relative;
	z-index: 9;
}
.team-hero-img-section img {
	max-width: 1150px;
}

@media only screen and (min-width:320px)  {.team-hero-img-section img {max-width: 415px; /* smartphones, portrait iPhone, portrait 480x320 phones (Android) */ }}
@media only screen and (min-width:480px)  {.team-hero-img-section img {max-width: 550px; /* smartphones, Android phones, landscape iPhone */ }}
@media only screen and (min-width:600px)  {.team-hero-img-section img {max-width: 700px; /* portrait tablets, portrait iPad, e-readers (Nook/Kindle), landscape 800x480 phones (Android) */ }}
@media only screen and (min-width:801px)  {.team-hero-img-section img {max-width: 900px; /* tablet, landscape iPad, lo-res laptops ands desktops */ }}
@media only screen and (min-width:1025px) {.team-hero-img-section img {max-width: 1100px; /* big landscape tablets, laptops, and desktops */ }}
@media only screen and (min-width:1281px) {.team-hero-img-section img {max-width: 1150px; /* hi-res laptops and desktops */ }}


.team-page .hero_heading .hero_btn .btn {
	background: -o-linear-gradient(68.49deg, #e6fb36 0%, #26ba2a 100%);
	background: linear-gradient(21.51deg, #e6fb36 0%, #26ba2a 100%);
}
.team-page .hero_heading .hero_btn .btn::after {
	display: none;
}
.organization-section {
	background-color: var(--color-bg);
	padding-top: 335px;
	padding-bottom: 78px;
}
.organization-section .organization_section_content {
	max-width: 900px;
	width: 100%;
	margin: auto;
}
.organization_section_content .section_title {
	margin-bottom: 60px;
}
.organization_section_content .section_title > p {
	text-align: left;
	font-size: 20px;
	line-height: 180%;
	color: var(--color-black);
	margin-bottom: 0;
}
.organization_section_content .organization_steps {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}
.organization_steps .organization_step_tabs {
	max-width: 330px;
	width: 100%;
}
.organization_steps .organization_step_tabs .step_tab {
	display: block;
	border: none;
	background: transparent;
	font-size: 22px;
	line-height: 160%;
	font-weight: 700;
	color: var(--color-black);
	font-family: var(--font-Pop);
	width: 100%;
	text-align: left;
	position: relative;
	margin: 9px 0;
	padding: 12px 0;
}

.organization_steps .organization_step_tabs .step_tab:after {
	position: absolute;
	content: "";
	right: 0;
	top: 0;
	width: 4px;
	height: 100%;
	background: #d9d9d9;
}
.organization_steps .organization_step_tabs .step_tab.active:after {
	background: -o-linear-gradient(56.9deg, #26ba2a -50.56%, #e6fb36 202.47%);
	background: linear-gradient(33.1deg, #26ba2a -50.56%, #e6fb36 202.47%);
}
.organization_steps .organization_step_tabs_content {
	max-width: calc(100% - 330px);
	width: 100%;
	margin-left: 94px;
}
.organization_step_tabs_content .content_text > img {
	width: 100%;
	height: 160px;
	background-color: #e9e9e9;
	border-radius: 10px;
	margin-bottom: 23px;
}

.organization_step_tabs_content .content_text > p {
	font-size: 20px;
	line-height: 180%;
	color: var(--color-black);
	margin-bottom: 0px;
}

.benefit-section {
	padding-top: 335px;
	background-color: var(--color-bg);
	padding-bottom: 56px;
}
.benefit-section .benefit_section_content {
	padding-left: 6%;
	padding-right: 6%;
}
.benefit_section_content .section_title {
	margin-bottom: 78px;
}

.single_benefit_box .benefit_img {
	/* width: 135px; */
	/* height: 135px; */
	/* background-color: #e9e9e9; */
	border-radius: 10px;
	margin-bottom: 22px;
}

.single_benefit_box .benefit_title > h4 {
	font-size: 18px;
	line-height: 180%;
	font-weight: 700;
	font-family: var(--font-Pop);
	color: var(--color-black);
	margin-bottom: 0;
}

.single_benefit_box .benefit_desc > p {
	font-size: 17px;
	line-height: 180%;
	color: var(--color-black);
	margin-bottom: 0;
}

.single_benefit_box {
	margin-bottom: 30px;
}
.team-testimonial-section {
	padding-top: 100px;
	background-color: var(--color-bg);
	padding-bottom: 178px;
}
.team_testimonial_section_content .section_title {
	margin-bottom: 67px;
}
.single_team_testimonial {
	width: 500px;
}
.team_testimonial_inner {
	border: 1px solid var(--color-border);
	border-radius: 24px;
	background-color: var(--color-white);
	padding: 40px 50px;
	min-height: 315px;
	height: 100%;
	-webkit-transform: scale(0.9);
	-ms-transform: scale(0.9);
	transform: scale(0.9);
	-webkit-transition: all 0.7s ease-in-out 0s;
	-o-transition: all 0.7s ease-in-out 0s;
	transition: all 0.7s ease-in-out 0s;
}
.owl-item.center .single_team_testimonial .team_testimonial_inner {
	-webkit-transform: scale(1.1);
	-ms-transform: scale(1.1);
	transform: scale(1.1);
}
.single_team_testimonial .team_testi_img {
	margin-bottom: 20px;
}

.single_team_testimonial .team_testi_text > p {
	margin-bottom: 0;
	font-size: 16px;
	line-height: 180%;
	color: var(--color-black);
}

/* .owl-item.center .single_team_testimonial {
	width: 620px;
	padding: 45px 56px;
} */
/* .owl-item.center .single_team_testimonial .team_testi_img {
	margin-bottom: 25px;
} */
/* .owl-item.center .single_team_testimonial .team_testi_text > p {
	font-size: 20px;
} */
.team_testimonial_carousel.owl-carousel .owl-nav button {
	width: 64px;
	height: 64px;
	background: var(--color-black);
	display: inline-block;
	border-radius: 50%;
	font-size: 27px;
	line-height: 64px;
	color: var(--color-white);
	margin: 0 14px;
}
.team_testimonial_carousel.owl-carousel .owl-nav {
	margin-top: 40px;
	text-align: center;
}

.team_testimonial_carousel.owl-carousel .owl-nav button.disabled {
	background: #1c1d1e;
	color: #cccccc;
}
.cta-section {
	padding-top: 87px;
	background-color: var(--color-black);
	padding-bottom: 87px;
}
.cta-section .cta_section_content {
	max-width: 900px;
	margin: auto;
}

.cta_section_content .section_title h3 {
	color: var(--color-white);
}

.cta_section_content .section_title p {
	text-align: left;
	font-size: 20px;
	line-height: 180%;
	color: var(--color-white);
}

.cta_section_content .section_title .cta_btn .btn {
	background: -o-linear-gradient(68.49deg, #e6fb36 0%, #26ba2a 100%);
	background: linear-gradient(21.51deg, #e6fb36 0%, #26ba2a 100%);
}
.cta_section_content .section_title .cta_btn .btn:after {
	display: none;
}
/* end: Team Page */
/* 
.testimonial_carousel_test .owl-item.center .single_testimonial {
	width: 500px;
}

.testimonial_carousel_test .owl-item.center .single_testimonial_inner {
	min-height: 300px;
}

.testimonial_carousel_test .owl-item .single_testimonial_inner {
	transform: scale(0.9);
	transition: all 1s ease-in-out 0s;
}

.testimonial_carousel_test .owl-item.center .single_testimonial_inner {
	transform: scale(1.1); 
}
.testimonial_carousel_test.owl-carousel .owl-stage {
	padding-top: 40px;
	padding-bottom: 40px;
}
.testimonial_carousel_test .owl-nav {
	text-align: center;
}
.testimonial_carousel_test .owl-nav button {
	font-size: 25px !important;
	color: VAR(--color-white) !important;
	margin: 0 10px;
}
.owl-item.center .testimonial_logo_img .image {
	height: 92px;
	width: 92px;
}
.owl-item.center .testimonial_logo_img .image::after {
	height: 105px;
	width: 105px;
}
.owl-item.center .testimonial_logo_img .image::before {
	height: 124px;
	width: 124px;
}
.owl-item.center .single_testimonial_inner .testimonial_content .content_text {
	font-size: 14px;
}
.owl-item.center
	.single_testimonial_inner
	.testimonial_content
	.content_name
	> h6 {
	font-size: 14px;
}
.owl-item.center .single_testimonial_inner .testimonial_content {
	max-width: 214px;
} */
