:root {
	--primary-color: #1E1E1E;
	--secondary-color: #EAEEF1;
	--text-color: #828283;
	--accent-color: #F9D67B;
	--accent-secondary-color: #014E4E;
	--white-color: #FFFFFF;
	--divider-color: #F1F1F1;
	--dark-divider-color: #FFFFFF1A;
	--error-color: rgb(230, 87, 87);
	--default-font: "DM Sans", sans-serif;
	--accent-font: "Epilogue", sans-serif;
}


body {
	position: relative;
	font-family: var(--default-font);
	font-size: 16px;
	font-weight: 400;
	line-height: 1em;
	color: var(--text-color);
	background: var(--white-color);
}

.text_gray {
	color: var(--text-color);
}

::-webkit-scrollbar-track {
	background-color: var(--secondary-color);
	border-left: 1px solid var(--secondary-color);
}

::-webkit-scrollbar {
	width: 7px;
	background-color: var(--secondary-color);
}

::-webkit-scrollbar-thumb {
	background: var(--accent-color);
}

::selection {
	color: var(--primary-color);
	background-color: var(--accent-secondary-color);
	filter: invert(1);
}

html {
	-ms-overflow-style: scrollbar;
	scroll-behavior: smooth
}

@media (prefers-reduced-motion: no-preference) {
	:root {
		scroll-behavior: smooth;
	}
}


p {
	line-height: 1.6em;
	margin-bottom: 1.5em;
	font-weight: 500 !important;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	margin: 0;
	font-family: var(--accent-font);
	font-weight: 600;
	line-height: 1.2em;
	color: var(--primary-color);
}

figure {
	margin: 0;
}

img {
	max-width: 100%;
}

a {
	text-decoration: none;
}

a:hover {
	text-decoration: none;
	outline: 0;
}

a:focus {
	text-decoration: none;
	outline: 0;
}

html,
body {
	width: 100%;
	overflow-x: clip;
}

ul {
	list-style-type: none;
	padding-left: 0px;
}

.container {
	/* max-width: 1300px; */
}

.container,
.container-fluid,
.container-lg,
.container-md,
.container-sm,
.container-xl,
.container-xxl {
	padding-right: 15px;
	padding-left: 15px;
}

.image-anime {
	position: relative;
	overflow: hidden;
}

.image-anime:after {
	content: "";
	position: absolute;
	width: 200%;
	height: 0%;
	left: 50%;
	top: 50%;
	background-color: rgba(255, 255, 255, .3);
	transform: translate(-50%, -50%) rotate(-45deg);
	z-index: 1;
}

.image-anime:hover:after {
	height: 250%;
	transition: all 600ms linear;
	background-color: transparent;
}

.reveal {
	position: relative;
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	visibility: hidden;
	overflow: hidden;
}

.reveal img {
	height: 100%;
	width: 100%;
	-o-object-fit: cover;
	object-fit: cover;
	-webkit-transform-origin: left;
	transform-origin: left;
}

.row {
	margin-right: -15px;
	margin-left: -15px;
}

.row>* {
	padding-right: 15px;
	padding-left: 15px;
}

.row.no-gutters {
	margin-right: 0px;
	margin-left: 0px;
}

.row.no-gutters>* {
	padding-right: 0px;
	padding-left: 0px;
}

.btn-default {
	position: relative;
	font-family: var(--accent-font);
	display: inline-block;
	font-size: 16px;
	font-weight: 700;
	line-height: 1em;
	text-transform: capitalize;
	background: var(--accent-color);
	color: var(--primary-color);
	border-radius: 50px;
	padding: 18px 30px;
	border: none;
	overflow: hidden;
	transition: all 0.4s ease-in-out;
	z-index: 1;
	/* background: linear-gradient(108.17deg, #3FBEBE 1.94%, #99DEDE 50%, #3FBEBE 98.06%); */
	box-shadow: 0px 0px 6px #ffffff3b;
}

.card-body1 .buy_now_btn {
	width: 85%;
}

.btn-default:hover,
.btn-default.active {
	color: var(--white-color);
}

.btn-default::after,
.btn-default::before {
	content: '';
	display: block;
	position: absolute;
	top: 0;
	bottom: 0;
	width: 0;
	height: 100%;
	background: var(--accent-secondary-color);
	transform: skew(15deg);
	transition: all 0.4s ease-in-out;
	z-index: -1;
}

.btn-default::before {
	left: -10px;
}

.btn-default::after {
	right: -10px;
}

.btn-default:hover::after,
.btn-default:hover::before,
.btn-default.active::after,
.btn-default.active::before {
	width: 60%;
}

.btn-default.btn-highlighted:hover {
	color: var(--primary-color);
}

.btn-default.btn-highlighted::after,
.btn-default.btn-highlighted::before {
	background: var(--white-color);
}

.readmore-btn {
	position: relative;
	font-family: var(--accent-font);
	font-weight: 700;
	line-height: normal;
	text-transform: capitalize;
	color: var(--accent-secondary-color);
	padding-right: 30px;
	transition: all 0.3s ease-in-out;
}

.readmore-btn:after {
	content: '';
	position: absolute;
	right: 0;
	top: 50%;
	transform: translate(-2px, -50%);
	background: url('../images/arrow-accent.svg');
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
	width: 18px;
	height: 14px;
	transition: all 0.3s ease-in-out;
}

.readmore-btn:hover:after {
	transform: translate(0, -50%);
}

.cb-cursor:before {
	background: var(--accent-color);
}

.preloader {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 1000;
	background: var(--accent-secondary-color);
	display: flex;
	align-items: center;
	justify-content: center;
}

.loading-container,
.loading {
	height: 100px;
	position: relative;
	width: 100px;
	border-radius: 100%;
}

.loading-container {
	margin: 40px auto;
}

.loading {
	border: 1px solid transparent;
	border-color: transparent var(--accent-color) transparent var(--accent-color);
	animation: rotate-loading 1.5s linear 0s infinite normal;
	transform-origin: 50% 50%;
}

.loading-container:hover .loading,
.loading-container .loading {
	transition: all 0.5s ease-in-out;
}

#loading-icon {
	position: absolute;
	top: 50%;
	left: 50%;
	max-width: 66px;
	transform: translate(-50%, -50%);
}

@keyframes rotate-loading {
	0% {
		transform: rotate(0deg);
	}

	100% {
		transform: rotate(360deg);
	}
}

.bg-section {
	width: 100%;
	max-width: 1820px;
	margin: 0 auto;
	/* background-color: var(--secondary-color); */
	background-color: #EAEEF1;
	border-radius: 20px;
}

.bg-section.dark-section {
	position: relative;
	background: url('../images/hero-bg-gradiant-shape.png'), var(--accent-secondary-color);
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
}

.dark-section2 {
	background: #dbe2ed;
}

.bg-section.dark-section::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	background: radial-gradient(38.51% 48.25% at 50.45% 50.9%, rgba(1, 78, 78, 0) 0.01%, #014E4E 100%);
	border-radius: 20px;
	height: 100%;
	width: 100%;
	z-index: 0;
}

.bg-section.dark-section .container {
	position: relative;
	z-index: 3;
}

.section-row {
	margin-bottom: 80px;
}

.section-row .section-title {
	margin-bottom: 0;
}

.section-btn {
	text-align: right;
}

.section-content-btn .section-btn {
	margin-top: 30px;
	text-align: left;
}

.section-title-content p {
	margin-bottom: 20px;
}

.section-title-content p:last-child {
	margin-bottom: 0;
}

.section-title {
	margin-bottom: 40px;
}

.section-title h3 {
	position: relative;
	font-size: 16px;
	font-weight: 600;
	line-height: 1.4em;
	text-transform: capitalize;
	color: var(--accent-secondary-color);
	background: url('../images/icon-sub-heading.svg') no-repeat;
	background-position: left top;
	background-size: 22px auto;
	display: inline-block;
	padding-left: 30px;
	margin-bottom: 10px;
}

.section-title h1 {
	font-size: 60px;
	font-weight: 700;
	margin-bottom: 0;
	cursor: none;
}

.section-title h2 {
	font-size: 32px;
	font-weight: 700;
	margin-bottom: 0;
	cursor: none;
	position: relative;
}

.section-title p {
	margin-top: 20px;
	margin-bottom: 0;
}

.bg-section.dark-section .section-title-content p,
.bg-section.dark-section .section-title p,
.bg-section.dark-section .section-title h3,
.bg-section.dark-section .section-title h2,
.bg-section.dark-section .section-title h1 {
	color: #d2d2d2;
	font-weight: 600 !important;
}

.help-block.with-errors ul {
	margin: 0;
	text-align: left;
}

.help-block.with-errors ul li {
	color: var(--error-color);
	font-weight: 500;
	font-size: 14px;
}

/************************************/
/**** 	   03. Header css		 ****/
/************************************/

header.main-header {
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	border-bottom: 1px solid var(--dark-divider-color);
	background: transparent;
	z-index: 100;
}

header.main-header .header-sticky {
	position: relative;
	top: 0;
	z-index: 100;
}

.main-header.bg-section {
	border-radius: 0;
}

header.main-header .header-sticky.hide {
	transform: translateY(-100%);
	transition: transform 0.3s ease-in-out;
	border-radius: 0;
}

header.main-header .header-sticky.active {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	border-radius: 0;
	transform: translateY(0);
	background: var(--accent-secondary-color);
	border-bottom: 1px solid var(--dark-divider-color);
}

.navbar {
	padding: 25px 0;
	align-items: center;
}

.navbar-brand {
	padding: 0;
	margin: 0;
}

.main-menu .nav-menu-wrapper {
	flex: 1;
	text-align: center;
	margin: 0 20px;
}

.main-menu .nav-menu-wrapper>ul {
	align-items: center;
	display: inline-flex;
}

.main-menu ul li {
	margin: 0;
	position: relative;
}

.main-menu ul li a {
	font-family: var(--accent-font);
	font-size: 16px;
	font-weight: 600;
	line-height: 1.2em;
	padding: 15px 15px !important;
	color: var(--white-color);
	text-transform: capitalize;
	transition: all 0.3s ease-in-out;
}

.main-menu ul li.submenu>a:after {
	content: '\f107';
	font-family: 'FontAwesome';
	font-weight: 900;
	font-size: 14px;
	margin-left: 8px;
}

.main-menu ul li a:hover,
.main-menu ul li a:focus {
	color: var(--accent-color);
}

.main-menu ul ul {
	visibility: hidden;
	opacity: 0;
	transform: scaleY(0.8);
	transform-origin: top;
	padding: 0;
	margin: 0;
	list-style: none;
	width: 235px;
	border-radius: 20px;
	position: absolute;
	left: 0;
	top: 130%;
	background: var(--accent-color);
	transition: all 0.3s ease-in-out;
	text-align: left;
}

.main-menu ul li.submenu:first-child ul {
	width: 235px;
}

.main-menu ul ul ul {
	left: 100%;
	top: 0;
	text-align: left;
}

.main-menu ul li:hover>ul {
	visibility: visible;
	opacity: 1;
	transform: scaleY(1);
	padding: 5px 0;
}

.main-menu ul li.submenu ul li.submenu>a:after {
	content: '\f105';
	float: right;
}

.main-menu ul ul li {
	margin: 0;
	padding: 0;
}

.main-menu ul ul li a {
	color: var(--primary-color);
	padding: 8px 20px !important;
	transition: all 0.3s ease-in-out;
}

.main-menu ul li:hover>ul {
	visibility: visible;
	opacity: 1;
	transform: scaleY(1);
	padding: 5px 0;
}

.main-menu ul ul li a:hover,
.main-menu ul ul li a:focus {
	color: var(--accent-secondary-color);
	background-color: transparent;
	padding: 8px 20px 8px 23px !important;
}

.header-contact-btn {
	display: flex;
	align-items: center;
	gap: 25px;
}

.main-menu ul li.highlighted-menu {
	display: none;
}

.responsive-menu,
.navbar-toggle {
	display: none;
}

.navbar-toggle {
	padding: 0px;
	border: none;
}

.mobile-menu {
	background: var(--accent-secondary-color);
	padding: 20px;
}

.mobile-menu ul li {
	padding: 15px;
	transition: all 0.4s linear;
}

.mobile-menu ul li:hover {
	color: var(--accent-color);
}

.mobile-menu ul li a {
	padding: 0px;
	font-weight: 600;
	font-size: 18px;
	color: white;
}

.responsive-menu {
	top: 0;
	position: relative;
}

.slicknav_btn {
	background: var(--accent-secondary-color);
	padding: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 38px;
	height: 34px;
	margin: 0;
	border-radius: 2px;
}

.slicknav_icon .slicknav_icon-bar {
	display: block;
	width: 100%;
	height: 3px;
	width: 22px;
	/* background-color: #f9d67b; */
	background-color: #fff;
	/* background-color: #014e4e; */
	border-radius: 8px;
	margin: 4px auto !important;
	transition: all 0.1s ease-in-out;
}

.slicknav_icon .slicknav_icon-bar:first-child {
	margin-top: 0 !important;
}

.slicknav_icon .slicknav_icon-bar:last-child {
	margin-bottom: 0 !important;
}

.navbar-toggle a.slicknav_btn.slicknav_open .slicknav_icon span.slicknav_icon-bar:nth-child(1) {
	transform: rotate(-45deg) translate(-5px, 5px);
	background-color: var(--accent-secondary-color);
}

.navbar-toggle a.slicknav_btn.slicknav_open .slicknav_icon span.slicknav_icon-bar:nth-child(2) {
	opacity: 0;
}

.navbar-toggle a.slicknav_btn.slicknav_open .slicknav_icon span.slicknav_icon-bar:nth-child(3) {
	transform: rotate(45deg) translate(-5px, -5px);
	background-color: var(--accent-secondary-color);
}

.slicknav_menu {
	position: absolute;
	width: 100%;
	padding: 0;
	background: var(--accent-color);
	top: 0%;
}

.slicknav_menu ul {
	margin: 5px 0;
}

.slicknav_menu ul ul {
	margin: 0;
}

.slicknav_nav .slicknav_row,
.slicknav_nav li a {
	position: relative;
	font-family: var(--accent-font);
	font-size: 16px;
	font-weight: 600;
	text-transform: capitalize;
	padding: 10px 20px;
	color: var(--primary-color);
	line-height: normal;
	margin: 0;
	border-radius: 0 !important;
	transition: all 0.3s ease-in-out;
}

.slicknav_nav a:hover,
.slicknav_nav a:focus,
.slicknav_nav .slicknav_row:hover {
	background-color: transparent;
	color: var(--accent-secondary-color);
}

.slicknav_menu ul ul li a {
	padding: 10px 20px 10px 30px;
}

.slicknav_arrow {
	font-size: 0 !important;
}

.slicknav_arrow:after {
	content: '\f107';
	font-family: 'FontAwesome';
	font-weight: 900;
	font-size: 12px;
	margin-left: 8px;
	color: var(--primary-color);
	position: absolute;
	right: 15px;
	top: 50%;
	transform: translateY(-50%);
	transition: all 0.3s ease-out;
}

.slicknav_open>a .slicknav_arrow:after {
	transform: translateY(-50%) rotate(-180deg);
	color: var(--accent-secondary-color);
}

.slicknav_btn {
	/* background: transparent; */
	border: none;
	cursor: pointer;
	padding: 10px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	top: 0;
	left: 0;
}

.slicknav_icon {
	position: relative;
	width: 24px;
	height: 18px;
	display: block;
}

.slicknav_icon-bar {
	position: absolute;
	width: 100%;
	height: 2px;
	background: #000;
	transition: all 0.3s ease;
}

/* Initial hamburger position */
.slicknav_icon-bar.bar1 {
	top: 0;
}

.slicknav_icon-bar.bar2 {
	top: 50%;
	transform: translateY(-50%);
}

.slicknav_icon-bar.bar3 {
	bottom: 0;
}

/* X animation when active */
.slicknav_btn.active .slicknav_icon-bar.bar1 {
	transform: translateY(8px) rotate(45deg);
}

.slicknav_btn.active .slicknav_icon-bar.bar2 {
	opacity: 0;
}

.slicknav_btn.active .slicknav_icon-bar.bar3 {
	transform: translateY(-8px) rotate(-45deg);
}


/************************************/
/***        04. Hero css	      ***/
/************************************/

.hero {
	position: relative;
	padding: 155px 0 0;
	margin-top: 50px;
}

.hero::after {
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	background: url('../images/hero-bg-leaf.png') no-repeat;
	background-position: center center;
	background-size: 100% auto;
	width: 100%;
	height: 100%;
}

.hero.hero-bg-image {
	background: url('../images/hero-bg.jpg') no-repeat;
	background-position: center center;
	background-size: cover;
	/* padding: 285px 0 180px; */
	display: flex;
	justify-content: end;
	align-items: end;
	overflow: hidden;
	height: 100vh;
	padding-bottom: 60px;
	border-radius: 0px;
	max-width: 100%;
	margin: 0px;
	width: 100%;
}

.hero.hero-bg-image.bg-section.dark-section::before {
	background: #1e1e1ea8;
	border-radius: 0;
	z-index: 1;
	opacity: 80%;
}

.hero.hero-bg-image::after {
	display: none;
}

.hero.hero-video .hero-bg-video {
	position: absolute;
	top: 0;
	right: 0;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
}

.hero.hero-video .hero-bg-video video {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.hero.hero-bg-image.hero-slider-layout {
	background: none;
	padding: 0;
}

.hero.hero-bg-image.hero-slider-layout .hero-slide {
	position: relative;
	background: url('../images/hero-bg.jpg');
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
	padding: 285px 0 180px;
}

.hero.hero-bg-image.hero-slider-layout .hero-slide.slide-2 {
	background: url('../images/hero-bg-2.jpg');
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
}

.hero.hero-bg-image.hero-slider-layout .hero-slide::before {
	content: '';
	display: block;
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	background: var(--primary-color);
	opacity: 60%;
	width: 100%;
	height: 100%;
	z-index: 1;
}

.hero.hero-bg-image.hero-slider-layout .hero-slide .hero-slider-image {
	position: absolute;
	top: 0;
	right: 0;
	left: 0;
	bottom: 0;
}

.hero.hero-bg-image.hero-slider-layout .hero-slide .hero-slider-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.hero.hero-bg-image.hero-slider-layout .hero-pagination {
	position: absolute;
	bottom: 50px;
	text-align: center;
	z-index: 2;
}

.hero.hero-bg-image.hero-slider-layout .hero-pagination .swiper-pagination-bullet {
	width: 12px;
	height: 12px;
	background: var(--dark-divider-color);
	opacity: 1;
	transition: all 0.3s ease-in-out;
	margin: 0 5px;
}

.hero.hero-bg-image.hero-slider-layout .hero-pagination .swiper-pagination-bullet-active {
	background: var(--accent-color);
}

.hero.hero-bg-image .hero-content {
	width: 100%;
	max-width: 1000px;
	margin: 0 auto;
	text-align: center;
}

.hero.hero-bg-image .hero-content .section-title p {
	width: 100%;
	max-width: 700px;
	margin: 0 auto;
	margin-top: 10px;
}

.hero-content-body {
	display: flex;
	align-items: center;
	gap: 20px 30px;
}

.hero.hero-bg-image .hero-content .hero-content-body {
	justify-content: center;
}

.contact-now-box {
	display: inline-flex;
	align-items: center;
	text-align: left;
}

.contact-now-box .icon-box {
	position: relative;
	background: var(--dark-divider-color);
	border-radius: 50%;
	width: 50px;
	height: 50px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-right: 10px;
	transition: all 0.3s ease-in-out;
}

.contact-now-box:hover .icon-box {
	background-color: var(--accent-color);
}

.contact-now-box .icon-box img {
	max-width: 24px;
	transition: all 0.3s ease-in-out;
}

.contact-now-box:hover .icon-box img {
	filter: brightness(0) invert(0);
}

.contact-now-box-content p {
	color: var(--white-color);
	margin-bottom: 5px;
}

.contact-now-box-content h3 {
	font-size: 20px;
	color: var(--white-color);
}

.contact-now-box-content h3 a {
	color: inherit;
	transition: all 0.3s ease-in-out;
}

.contact-now-box-content h3 a:hover {
	color: var(--accent-color);
}

.hero-content-footer {
	display: flex;
	align-items: center;
	gap: 20px;
	margin-top: 40px;
}

.trusted-client-images {
	position: relative;
	display: inline-flex;
	align-items: center;
}

.client-image {
	position: relative;
	border: 1px solid var(--accent-secondary-color);
	border-radius: 50%;
	margin-left: -10px;
	width: 40px;
	height: 40px;
	overflow: hidden;
	z-index: 1;
}

.client-image:first-child {
	margin: 0;
}

.client-image figure {
	display: block;
}

.client-image img {
	width: 100%;
	border-radius: 50%;
}

.client-image.add-more {
	width: 40px;
	height: 40px;
	background-color: var(--accent-color);
	text-align: center;
	display: inline-flex;
	align-items: center;
	justify-content: center;
}

.client-image.add-more h3 {
	font-size: 14px;
	font-weight: 700;
	color: var(--primary-color);
}

.trusted-client-review p {
	color: var(--white-color);
	margin-bottom: 0;
}

.trusted-client-review p i {
	color: var(--accent-color);
	margin: 0 6px;
}

.hero-image {
	position: relative;
}

.hero-image figure {
	display: block;
}

.hero-image img {
	width: 100%;
	aspect-ratio: 1 / 1.375;
	object-fit: cover;
}

.hero-experience-box {
	position: absolute;
	top: 50%;
	right: 0;
	width: 100%;
	max-width: 200px;
	background-color: var(--accent-color);
	box-shadow: 0px 0px 11.8px 0px #0000001F;
	border-radius: 16px;
	display: flex;
	gap: 20px;
	justify-content: center;
	text-align: center;
	align-items: center;
	padding: 15px;
	animation: experienceobject 3s infinite linear alternate;
	overflow: hidden;
}

@keyframes experienceobject {
	50% {
		right: 40px;
	}
}

.hero-experience-box:before {
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 0;
	background: var(--white-color);
	z-index: 0;
	transition: all 0.4s ease-in-out;
}

.hero-experience-box:hover::before {
	top: auto;
	height: 100%;
}

.hero-experience-box h2,
.hero-experience-box p {
	position: relative;
	transition: all 0.4s ease-in-out;
	z-index: 1;
}

.hero-experience-box h2 {
	font-size: 40px;
	font-weight: 700;
	width: calc(35% - 10px);
}

.hero-experience-box p {
	/* width: calc(65% - 10px); */
	color: var(--primary-color);
	margin-bottom: 0;
	font-weight: 700;
	font-size: 18px;
}

.hero-experience-box:hover h2,
.hero-experience-box:hover p {
	color: var(--accent-secondary-color);
}

/************************************/
/***       05. About Us css	      ***/
/************************************/

.about-us {
	padding: 100px 0;
	scroll-margin-top: 100px;
}

.about-us-images {
	position: relative;
	padding: 15px 245px 15px 25px;
}

.about-us-img-1 {
	transform: rotate(-6.46deg);
}

.about-us-img-1,
.about-us-img-2 {
	border-radius: 30px;
}

.about-us-img-1 figure {
	display: block;
	border-radius: 30px;
}

.about-us-img-1 img {
	width: 100%;
	/* aspect-ratio: 1 / 1.48; */
	object-fit: cover;
	border-radius: 30px;
}

.about-us-img-2 {
	position: absolute;
	top: 15px;
	right: 25px;
	transform: rotate(10.67deg);
	width: 100%;
	max-width: 250px;
	border: 5px solid var(--white-color);
}

.about-us-img-2::before {
	content: '';
	position: absolute;
	bottom: 10px;
	right: 20px;
	background: url('../images/about-us-arrow.svg') no-repeat;
	background-position: center center;
	background-size: contain;
	height: 110px;
	width: 83px;
	transform: translateY(100%) rotate(-10.67deg);
}

.about-us-img-2 figure {
	display: block;
	border-radius: 24px;
}

.about-us-img-2 img {
	width: 100%;
	aspect-ratio: 1 / 1.405;
	object-fit: cover;
	border-radius: 24px;
}

.about-us-images .hero-experience-box {
	top: auto;
	bottom: 0;
	right: 100px;
}

.about-us-images .hero-experience-box:before {
	background: var(--accent-secondary-color);
}

.about-us-images .hero-experience-box:hover h2,
.about-us-images .hero-experience-box:hover p {
	color: var(--white-color);
}

.about-us-body {
	position: relative;
	background: var(--secondary-color);
	border-left: 3px solid var(--accent-secondary-color);
	border-radius: 10px;
	padding: 45px 30px;
	overflow: hidden;
}

.about-us-body::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: var(--accent-secondary-color);
	height: 100%;
	width: 0;
	transition: all 0.4s ease-in-out;
	z-index: 0;
}

.about-us-body:hover::after {
	width: 100%;
	right: 100%;
}

.about-us-body ul {
	position: relative;
	display: flex;
	gap: 14px;
	flex-wrap: wrap;
	list-style: none;
	margin: 0;
	padding: 0;
	z-index: 1;
}

.about-us-body ul li {
	position: relative;
	width: calc(50% - 15px);
	line-height: 1.5em;
	text-transform: capitalize;
	padding-left: 30px;
	transition: all 0.4s ease-in-out;
}

.about-us-body:hover ul li {
	color: var(--white-color);
}

.about-us-body ul li::before {
	content: '\f058';
	position: absolute;
	font-family: 'FontAwesome';
	font-weight: 900;
	left: 0;
	top: 0;
	font-size: 20px;
	color: var(--accent-secondary-color);
	transition: all 0.4s ease-in-out;
}

.about-us-body:hover ul li::before {
	color: var(--accent-color);
}

.about-us-footer {
	display: flex;
	gap: 20px 40px;
	flex-wrap: wrap;
	margin-top: 40px;
}

.about-author-box {
	display: flex;
	align-items: center;
	gap: 15px;
}

.about-author-box .author-image {
	border: 1px solid var(--accent-color);
	border-radius: 50%;
	padding: 6px;
}

.about-author-box .author-image figure {
	display: block;
	border-radius: 50%;
}

.about-author-box .author-image img {
	width: 100%;
	max-width: 40px;
	border-radius: 50%;
}

.about-author-box .author-info h3 {
	font-size: 20px;
	margin-bottom: 5px;
}

.about-author-box .author-info p {
	margin-bottom: 0;
}

/************************************/
/***     06. Our Services css     ***/
/************************************/

.our-services {
	padding: 100px 0;
}

.our-service-content {
	height: calc(100% - 30px);
	margin-bottom: 30px;
}

.service-item {
	position: relative;
	background-color: var(--white-color);
	border: 1px solid var(--divider-color);
	border-radius: 20px;
	height: calc(100% - 30px);
	margin-bottom: 30px;
	padding: 40px;
	overflow: hidden;
}

.service-item::after {
	content: '';
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	background: var(--accent-color);
	height: 0;
	width: 100%;
	transition: all 0.4s ease-in-out;
	z-index: 0;
}

.service-item.active::after,
.service-item:hover::after {
	height: 100%;
}

.service-item .icon-box {
	position: relative;
	height: 60px;
	width: 60px;
	display: flex;
	align-items: center;
	justify-content: center;
	border: 1px solid var(--accent-secondary-color);
	border-radius: 50%;
	margin-bottom: 40px;
	z-index: 1;
}

.service-item .icon-box img {
	width: 100%;
	max-width: 30px;
}

.service-item-content {
	position: relative;
	margin-bottom: 30px;
	z-index: 1;
}

.service-item-content h3 {
	font-size: 20px;
	margin-bottom: 15px;
}

.service-item-content h3 a {
	color: inherit;
}

.service-item-content p {
	margin-bottom: 0;
	transition: all 0.3s ease-in-out;
}

.service-item.active .service-item-content p,
.service-item:hover .service-item-content p {
	color: var(--primary-color);
}

.service-readmore-btn {
	position: relative;
	z-index: 1;
}

.page-cta-box {
	position: relative;
	background: url('../images/page-cta-box-bg.jpg') no-repeat;
	background-position: center center;
	background-size: cover;
	border-radius: 20px;
	align-content: center;
	height: calc(100% - 30px);
	margin-bottom: 30px;
	padding: 40px;
	overflow: hidden;
}

.page-cta-box::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	background: var(--primary-color);
	opacity: 50%;
	width: 100%;
	height: 100%;
	z-index: 0;
}

.page-cta-box-info,
.page-cta-box .contact-now-box {
	position: relative;
	z-index: 1;
}

.page-cta-box-info {
	margin-bottom: 30px;
}

.page-cta-box-info h3 {
	font-size: 20px;
	color: var(--white-color);
	margin-bottom: 10px;
}

.page-cta-box-info h2 {
	font-size: 30px;
	color: var(--white-color);
}

.section-footer-text {
	margin-top: 30px;
	text-align: center;
}

.section-footer-text p {
	margin-bottom: 0;
}

.section-footer-text span {
	font-family: var(--accent-font);
	font-weight: 500;
	text-transform: capitalize;
	color: var(--primary-color);
	background: var(--accent-color);
	padding: 4px 10px;
	border-radius: 100px;
	margin-right: 10px;
}

.section-footer-text p a {
	font-weight: 700;
	text-transform: capitalize;
	text-decoration: underline;
	text-underline-offset: 3px;
	color: var(--accent-secondary-color);
	transition: all 0.3s ease-in-out;
}

.section-footer-text p a:hover {
	color: var(--accent-color);
}

/************************************/
/***      07. What We Do css      ***/
/************************************/

.what-we-do {
	padding: 100px 0;
}

.what-we-do-image-1 figure,
.what-we-do-image-2 figure {
	display: block;
	border-radius: 20px;
	/* box-shadow: 0px 0px 10px #625f5f91; */
	/* overflow: visible; */
}

.what-we-do-image-1 img,
.what-we-do-image-2 img {
	width: 100%;
	object-fit: cover;
	border-radius: 20px;
	box-shadow: 0px 0px 10px #625f5f91;
}

.what-we-do-image-1 img {
	aspect-ratio: 1 / 1.455;
}

.what-we-do-content .section-row {
	margin-bottom: 40px;
}

.what-we-list-item {
	display: flex;
	flex-wrap: wrap;
	margin-bottom: 30px;
	align-items: center;
	justify-content: center;
}

.what-we-list-item:last-child {
	margin-bottom: 0;
}

.what-we-list-item .icon-box {
	position: relative;
	height: 60px;
	width: 60px;
	display: flex;
	align-items: center;
	justify-content: center;
	border: 1px solid var(--accent-secondary-color);
	border-radius: 50%;
	margin-right: 20px;
}

.what-we-list-item .icon-box:before {
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	background-color: var(--accent-secondary-color);
	border-radius: 50%;
	height: 100%;
	width: 100%;
	transform: scale(0);
	transition: all 0.4s ease-in-out;
	z-index: 0;
}

.what-we-list-item:hover .icon-box::before {
	transform: scale(1);
}

.what-we-list-item .icon-box img {
	width: 100%;
	max-width: 30px;
	transition: all 0.3s ease-in-out;
}

.what-we-list-item:hover .icon-box img {
	filter: brightness(0) invert(1);
}

.what-we-do-list-content {
	width: calc(100% - 80px);
}

.what-we-do-list-content h3 {
	font-size: 18px;
	/* margin-bottom: 10px; */
	line-height: 1.5;
}

.what-we-do-list-content p {
	margin-bottom: 0;
}

.what-we-do-image-2 img {
	aspect-ratio: 1 / 0.975;
}

.wrp-share {
	border-radius: 50%;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	width: 46.2em;
	height: 46.2em;
	display: flex;
	position: relative;
}

.img-bg-share {
	width: 100%;
}

.share-6 {
	opacity: 0;
	width: 46em;
	max-width: none;
	display: block;
	position: absolute;
	inset: auto auto 0% 0%;
}

.share-30 {
	opacity: 0;
	width: 49.2em;
	max-width: none;
	position: absolute;
	inset: auto auto 0% 0%;
}

.share-20 {
	opacity: 0;
	width: 48.1em;
	max-width: none;
	position: absolute;
	inset: 0% auto auto 0%;
}

.share-15 {
	opacity: 0;
	width: 46em;
	max-width: none;
	position: absolute;
	inset: 0% auto auto 0%;
}

.share-15-2 {
	opacity: 0;
	width: 49.2em;
	max-width: none;
	position: absolute;
	inset: auto 0% 0% auto;
}

.share-14 {
	opacity: 0;
	width: 48.1em;
	max-width: none;
	position: absolute;
	inset: auto 0% 0% auto;
}

.chart-container {
	position: relative;
	width: 300px;
	height: 300px;
}

.center-text {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	font-size: 24px;
	font-weight: bold;
	color: #222;
}

.label {
	position: absolute;
	background: #111;
	color: #aefc79;
	padding: 8px 12px;
	border-radius: 10px;
	font-size: 14px;
	max-width: 150px;
}

.label-top-right {
	top: 30px;
	right: -180px;
}

.label-bottom-right {
	bottom: 30px;
	right: -180px;
}

.label-left {
	top: 50%;
	left: -180px;
	transform: translateY(-50%);
}

.svg-chart {
	transform: rotate(-90deg);
	/* Start at the top */
}

/************************************/
/***     08. Why Choose Us css    ***/
/************************************/

.why-choose-us {
	padding: 100px 0 0;
}

.why-choose-item {
	border-bottom: 1px solid var(--dark-divider-color);
	margin-bottom: 50px;
	padding-bottom: 50px;
}

.why-choose-item:last-child {
	border-bottom: none;
	margin-bottom: 0;
	padding-bottom: 0;
}

.why-choose-item .icon-box {
	position: relative;
	height: 60px;
	width: 60px;
	display: flex;
	align-items: center;
	justify-content: center;
	border: 1px solid var(--white-color);
	border-radius: 50%;
	margin-bottom: 30px;
	transition: all 0.5s ease-in-out;
}

.why-choose-item:hover .icon-box {
	border-color: transparent;
}

.why-choose-item .icon-box:before {
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	background-color: var(--accent-color);
	border-radius: 50%;
	height: 100%;
	width: 100%;
	transform: scale(0);
	transition: all 0.4s ease-in-out;
	z-index: -1;
}

.why-choose-item:hover .icon-box::before {
	transform: scale(1);
}

.why-choose-item .icon-box img {
	width: 100%;
	max-width: 30px;
	transition: all 0.4s ease-in-out;
}

.why-choose-item:hover .icon-box img {
	filter: brightness(0) invert(0);
}

.why-choose-item-content h3 {
	font-size: 20px;
	color: var(--white-color);
	margin-bottom: 10px;
}

.why-choose-item-content p {
	color: var(--white-color);
	margin-bottom: 0;
}

.why-choose-image {
	margin: 0 70px;
}

.why-choose-image figure {
	display: block;
}

.why-choose-image img {
	width: 100%;
	aspect-ratio: 1 / 1.47;
	object-fit: cover;
}

/************************************/
/***     09. Our Expertise css    ***/
/************************************/

.our-expertise {
	padding: 50px 0;
	scroll-margin-top: 50px;
}

.expertise-image {
	margin-right: -130px;
}

/* .expertise-image-1
{
	margin-left: -130px;
	margin-right:0px;

}  */

.expertise-image figure {
	display: block;
	border-radius: 20px;
}

.expertise-image img {
	width: 100%;
	aspect-ratio: 1 / 0.88;
	object-fit: cover;
	border-radius: 20px;
}

/* .expertise-img img
{
	aspect-ratio: 1 / 0.7
} */
.check_icon {
	color: var(--accent-secondary-color);
	object-fit: contain;
	flex: none;
	width: 20px;
	height: 20px;
	margin-right: 10px;
}

.expertise-box-list {
	position: relative;
	z-index: 1;
}

.expertise-box {
	position: relative;
	background: #fff;
	box-shadow: 0px 0px 30px 0px #0000000D;
	border-radius: 20px;
	margin-bottom: 30px;
	padding: 40px;
	overflow: hidden;
}

/* .expert-us-body{
	position: relative;
    background: var(--secondary-color);
    border-left: 3px solid var(--accent-secondary-color);
    border-radius: 10px;
    padding: 45px 30px;
    overflow: hidden;
	visibility: visible;
    animation-delay: 0.4s;
    animation-name: fadeInUp;
} */
/* .expert-us-body::after{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--accent-secondary-color);
    height: 100%;
    width: 0;
    transition: all 0.4s ease-in-out;
    z-index: 0;
} */

.expert-us-body:hover::after {
	width: 100%;
	right: 100%;
}

.expertise-box::after {
	content: '';
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	background: var(--accent-color);
	height: 0;
	width: 100%;
	transition: all 0.4s ease-in-out;
	z-index: 0;
}

.expertise-box:hover::after {
	height: 100%;
}

.expert-us-body h2,
.expert-us-body ul {
	position: relative;
	z-index: 9999;
}

/* .expert-us-body:hover h2
{
	color:white !important;
} */

.expert-us-body ul {
	position: relative;
	display: flex;
	gap: 10px;
	flex-wrap: wrap;
	list-style: none;
	margin: 0;
	padding: 0;
	z-index: 1;
	flex-direction: column;
}

.expert-us-body ul li {
	position: relative;
	line-height: 1.5em;
	text-transform: capitalize;
	padding-left: 30px;
	transition: all 0.4s ease-in-out;
	padding-bottom: 10px !important;
}

.expert-us-body ul li::before {
	content: '\f058';
	position: absolute;
	font-family: 'FontAwesome';
	font-weight: 900;
	left: 0;
	top: 4px;
	font-size: 20px;
	color: var(--accent-secondary-color);
	transition: all 0.4s ease-in-out;
}

/* .expert-us-body:hover ul li::before {
	color: white;
} */

.expertise-box:last-child {
	margin-bottom: 0;
}

.expertise-box-content {
	position: relative;
	margin-bottom: 30px;
	z-index: 1;
}

.expertise-box-content h3 {
	font-size: 20px;
	text-transform: capitalize;
	margin-bottom: 10px;
}

.expertise-box-content p {
	margin-bottom: 0;
	transition: all 0.4s ease-in-out;
}

.expertise-box:hover .expertise-box-content p {
	color: var(--primary-color);
}

.expertise-box-btn {
	position: relative;
	z-index: 1;
}

/************************************/
/***      10. Intro Video css     ***/
/************************************/

.intro-video.bg-section.dark-section {
	background: url('../images/intro-bg-image.jpg') no-repeat;
	background-position: center center;
	background-size: cover;
	padding: 180px 0 50px;
}

.intro-video.bg-section.dark-section::before {
	background: var(--primary-color);
	opacity: 50%;
}

.intro-video-circle {
	position: relative;
	text-align: center;
}

.intro-video-circle a {
	display: inline-block;
	border-radius: 50%;
	overflow: hidden;
	cursor: none;
}

.intro-video-circle a figure {
	display: block;
}

.intro-video-circle a figure img {
	width: 100%;
	border-radius: 50%;
	max-width: 160px;
	animation: infiniterotate 20s infinite linear;
}

@keyframes infiniterotate {
	from {
		transform: rotate(0deg);
	}

	to {
		transform: rotate(360deg);
	}
}

.into-video-play-icon {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 68px;
	height: 68px;
	background-color: var(--accent-color);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	transform: translate(-50%, -50%);
	transition: all 0.3s ease-in-out;
}

.into-video-play-icon i {
	font-size: 30px;
	color: var(--primary-color);
	margin-left: 2px;
	transition: all 0.3s ease-in-out;
}

.intro-video-circle a:hover .into-video-play-icon {
	background-color: var(--accent-secondary-color);
}

.intro-video-circle a:hover .into-video-play-icon i {
	color: var(--accent-color);
}

.intro-video-counter-list {
	display: flex;
	gap: 30px;
	flex-wrap: wrap;
	border-top: 1px solid var(--dark-divider-color);
	margin-top: 190px;
	padding-top: 50px;
}

.intro-video-counter-item {
	width: calc(20% - 24px);
}

.intro-video-counter-item h2 {
	font-size: 46px;
	color: var(--white-color);
	margin-bottom: 5px;
}

.intro-video-counter-item p {
	color: var(--white-color);
	margin-bottom: 0;
}

/************************************/
/***     11. Our Programs css     ***/
/************************************/

.our-programs {
	padding: 70px 0 70px;
}

.program-item {
	position: relative;
	height: calc(100% - 30px);
	margin-bottom: 30px;
}

.program-image {
	position: relative;
	border-radius: 20px;
	overflow: hidden;
	background-color: var(--accent-secondary-color);
}

.program-image::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	background: var(--primary-color);
	opacity: 0;
	width: 100%;
	height: 100%;
	border-radius: 20px;
	transition: all 0.3s ease-in-out;
	z-index: 1;
}

.program-item:hover .program-image::before {
	opacity: 40%;
}

.program-image a,
.program-image figure {
	display: block;
	cursor: none;
}

.program-image figure::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	background: linear-gradient(180deg, rgba(30, 30, 30, 0) 42.53%, rgba(30, 30, 30, 0.8) 100%);
	width: 100%;
	height: 100%;
	transition: all 0.3s ease-in-out;
	z-index: 1;
}

.program-image img {
	width: 100%;
	aspect-ratio: 1 / 1.24;
	object-fit: cover;
	transition: all 0.4s ease-in-out;
}

.program-item:hover .program-image img {
	transform: scale(1.1);
}

.program-item:hover .program-body {
	transform: translate(-50%, 0px);
}

.program-content h3 {
	font-size: 20px;
	color: var(--white-color);
}

.program-content h3 a {
	color: inherit;
}

.program-readmore-btn {
	opacity: 0;
	visibility: hidden;
	transition: all 0.3s ease-in-out;
}

.program-item:hover .program-readmore-btn {
	margin-top: 20px;
	opacity: 1;
	visibility: visible;
}

/************************************/
/***      12. How It Work css     ***/
/************************************/

.how-it-work {
	padding: 100px 0 260px;
	/* margin-top: 50px;
	margin-bottom: 50px; */
}

.how-it-work-steps {
	display: flex;
	gap: 30px;
	flex-wrap: wrap;
}

.how-work-step-item {
	width: calc(25% - 22.5px);
}

.how-work-step-item .icon-box {
	position: relative;
	height: 100px;
	width: 100px;
	display: flex;
	align-items: center;
	justify-content: center;
	border: 1px solid var(--white-color);
	border-radius: 50%;
	margin-right: 15px;
	margin-bottom: 30px;
}

.how-work-step-item .icon-box:before {
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	background-color: var(--white-color);
	border-radius: 50%;
	height: 100%;
	width: 100%;
	transform: scale(0);
	transition: all 0.4s ease-in-out;
	z-index: -1;
}

.how-work-step-item:hover .icon-box::before {
	transform: scale(1);
}

.how-work-step-item .icon-box img {
	width: 100%;
	max-width: 50px;
	filter: brightness(0) invert(1);
	transition: all 0.3s ease-in-out;
}

.how-work-step-item:hover .icon-box img {
	filter: brightness(0) invert(0);
}

.how-work-no {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	right: -15px;
	height: 30px;
	width: 30px;
	background-color: var(--accent-color);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
}

.how-work-no h3 {
	font-size: 18px;
}

.how-work-content h3 {
	font-size: 20px;
	text-transform: capitalize;
	color: var(--white-color);
	margin-bottom: 5px;
}

.how-work-content p {
	color: var(--white-color);
	margin: 0;
}

/************************************/
/***   13. Book Appointment css   ***/
/************************************/

.book-appointment {
	position: relative;
	margin-top: -150px;
	z-index: 3;
	padding-bottom: 80px;
}

.book-appointment-box {
	border: 1px solid var(--divider-color);
	box-shadow: 0px 0px 30px 0px #0000000D;
	background: var(--white-color);
	border-radius: 20px;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 30px 60px;
	padding: 60px;
	margin-top: 30px;
}

.book-appointment-content {
	width: calc(48% - 30px);
}

.book-appointment-image figure {
	display: block;
	border-radius: 20px;
}

.book-appointment-image img {
	width: 100%;
	object-fit: cover;
	border-radius: 20px;
}

.book-appointment-form {
	width: calc(52% - 30px);
}

.book-appointment-form .form-control {
	font-size: 16px;
	font-weight: 400;
	line-height: normal;
	color: var(--text-color);
	background-color: transparent;
	border: 1px solid var(--divider-color);
	border-radius: 12px;
	padding: 17px 20px;
	box-shadow: none;
	outline: none;
}

.book-appointment-form .form-control::placeholder {
	color: var(--text-color);
}

.book-appointment-form .form-control.form-select {
	padding: 17px 35px 17px 20px;
}

.book-appointment-form .form-control.form-select option {
	font-weight: 500;
	color: var(--accent-secondary-color);
}

/************************************/
/***       14. Our FAQs css	      ***/
/************************************/

.our-faqs {
	padding: 100px 0;
	scroll-margin-top: 100px;
}

.faq-images {
	position: relative;
	/* background: url('../images/faq-image-star.svg') no-repeat; */
	background-size: 55px auto;
	/* background-position: bottom 205px left 100px; */
	margin-right: 20px;
}

.faq-image-1 {
	position: relative;
}

/* .faq-image-1::before{
	content: '';
	position: absolute;
	top: 110px;
	right: -130px;
	background: url('../images/faq-image-circle.svg') no-repeat;
	background-size: cover;
	height: 85px;
	width: 85px;
	animation: infiniterotate 20s infinite linear;
} */

.faq-image-1 figure {
	display: block;
	border-radius: 30px;
}

.faq-image-1 img,
.faq-image-2 img {
	width: 100%;
	object-fit: cover;
}

.faq-image-1 img {
	/* aspect-ratio: 1 / 0.912; */
	border-radius: 30px;
}

.faq-image-2 {
	position: absolute;
	bottom: 0;
	right: 0;
	width: 100%;
	max-width: 428px;
	border: 7px solid var(--white-color);
	border-radius: 30px;
}

.faq-image-2 figure {
	display: block;
	border-radius: 22px;
}

.faq-image-2 img {
	aspect-ratio: 1 / 0.916;
	border-radius: 22px;
}

.faq-accordion .accordion-item {
	margin-bottom: 30px;
	padding: 0;
}

.faq-accordion .accordion-item:last-child {
	margin-bottom: 0;
}

.faq-accordion .accordion-header .accordion-button {
	font-size: 20px;
	font-weight: 600;
	line-height: 1.2em;
	background: var(--accent-color);
	color: var(--primary-color);
	padding: 17px 60px 17px 20px;
	border: 1px solid var(--divider-color);
	border-radius: 10px;
	margin-bottom: 15px;
	transition: all 0.3s ease-in-out;
	text-transform: capitalize;
	letter-spacing: 0px;
}

.faq-accordion .accordion-header .accordion-button.collapsed {
	background: transparent;
	margin-bottom: 0;
}

.accordion-item:first-of-type>.accordion-header .accordion-button,
.accordion-item:last-of-type>.accordion-header .accordion-button.collapsed {
	border-radius: 10px;
}

.faq-accordion .accordion-item .accordion-button::after,
.faq-accordion .accordion-item .accordion-button.collapsed::after {
	content: '\f068';
	font-family: "FontAwesome";
	position: absolute;
	right: 15px;
	top: 50%;
	bottom: auto;
	transform: translateY(-50%);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 18px;
	font-weight: 600;
	line-height: normal;
	width: 30px;
	height: 30px;
	color: var(--primary-color);
	background-color: var(--white-color);
	border-radius: 5px;
	transition: all 0.3s ease-in-out;
}

.faq-accordion .accordion-item .accordion-button.collapsed::after {
	content: '\2b';
	background-color: var(--accent-color);
}

.faq-accordion .accordion-item .accordion-body {
	background-color: var(--secondary-color);
	padding: 20px;
	border-radius: 10px;
}

.faq-accordion .accordion-item .accordion-body p {
	margin: 0;
}

/************************************/
/***   15. Our Testimonial css    ***/
/************************************/

.our-testimonial {
	/* background-image: url("../images/landing-page/testimonial-bg.png"); */
	background-repeat: repeat-x;
	background-size: cover;
	padding: 100px 0;
	animation: testimonialbgmove 60s infinite linear;
	/* background: linear-gradient(#e1fffc, #bce8e3); */
	/* background: linear-gradient(#26d0e44f, #0276ab66) !important; */
}

/* .roadmap_progress {
	background: linear-gradient(#26d0e44f, #0276ab66);
} */

@keyframes testimonialbgmove {
	from {
		background-position: left center;
	}

	to {
		background-position: left 200vw center;
	}
}

.testimonial-user {
	position: relative;
	/* width: calc(50% - 15px); */
	background: var(--white-color);
	border: 1px solid var(--divider-color);
	border-radius: 20px;
	padding: 30px 25px;
	/* overflow: hidden; */
	height: 100%;
	z-index: 3;
}

.testimonial-user::after {
	content: '';
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	background: var(--accent-color);
	height: 0;
	width: 100%;
	transition: all 0.4s ease-in-out;
	z-index: -1;
	border-radius: 15px;
}

.testimonial-user.active::after,
.testimonial-user:hover::after {
	height: 100%;
}

.testimonial-user:hover .testimonial-rating i,
.testimonial-user.active .testimonial-rating i {
	color: #000;
}

.testimonial-boxes {
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
}

.testimonial-item {
	position: relative;
	/* width: calc(50% - 15px); */
	background: var(--white-color);
	border: 1px solid var(--divider-color);
	border-radius: 20px;
	padding: 30px 25px;
	/* overflow: hidden; */
	height: 100%;
}

.testimonial-item::after {
	content: '';
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	background: var(--accent-color);
	height: 0;
	width: 100%;
	transition: all 0.4s ease-in-out;
	z-index: -1;
	border-radius: 15px;
}

.testimonial-item.active::after,
.testimonial-item:hover::after {
	height: 100%;
}

.testimonial-item-content,
.testimonial-author-box {
	position: relative;
	z-index: 1;
}

/* .testimonial-item-content{
	margin-bottom: 30px;
} */

.testimonial-rating {
	margin-bottom: 15px;
}

.testimonial-rating i {
	font-size: 14px;
	color: var(--accent-color);
	transition: all 0.4s ease-in-out;
}

.testimonial-item.active .testimonial-rating i,
.testimonial-item:hover .testimonial-rating i {
	color: var(--accent-secondary-color);
}

.testimonial-info p {
	margin-bottom: 0;
	transition: all 0.4s ease-in-out;
}

.testimonial-item.active .testimonial-info p,
.testimonial-item:hover .testimonial-info p {
	color: var(--primary-color);
}

.testimonial-author-box {
	display: flex;
}

.testimonial-author-iamge {
	margin-right: 15px;
}

.testimonial-author-iamge figure {
	display: block;
	border-radius: 50%;
}

.testimonial-author-iamge img {
	width: 100%;
	max-width: 40px;
	border-radius: 50%;
}

.testimonial-author-content {
	width: calc(100% - 55px);
}

.testimonial-author-content h3 {
	font-size: 20px;
	text-transform: capitalize;
	margin-bottom: 2px;
}

.testimonial-author-content p {
	margin-bottom: 0;
	transition: all 0.4s ease-in-out;
}

.testimonial-item.active .testimonial-author-content p,
.testimonial-item:hover .testimonial-author-content p {
	color: var(--primary-color);
}

.testimonial-images {
	position: relative;
	padding: 15px 245px 160px 25px;
}

.testimonial-img-1 {
	transform: rotate(-6.46deg);
	border-radius: 30px;
	overflow: hidden;
}

.testimonial-img-2 {
	position: absolute;
	top: 15px;
	right: 25px;
	transform: rotate(10.67deg);
	width: 100%;
	max-width: 250px;
}

.testimonial-img-2::before {
	content: '';
	position: absolute;
	bottom: -15px;
	right: 10px;
	background: url(../images/about-us-arrow.svg) no-repeat;
	background-position: center center;
	background-size: contain;
	height: 125px;
	width: 95px;
	transform: translateY(100%) rotate(-25deg);
}

.testimonial-img-2,
.testimonial-img-3 {
	border: 5px solid var(--white-color);
	border-radius: 30px;
}

.testimonial-img-3 {
	position: absolute;
	bottom: 20px;
	left: 10px;
	transform: rotate(-7.87deg);
	width: 100%;
	max-width: 360px;
}

.testimonial-img-1 figure {
	display: block;
}

.testimonial-img-2 figure,
.testimonial-img-3 figure {
	display: block;
	border-radius: 24px;
}

.testimonial-img-1 img,
.testimonial-img-2 img,
.testimonial-img-3 img {
	width: 100%;
	object-fit: cover;
}

.testimonial-img-1 img {
	aspect-ratio: 1 / 1.48;
}

.testimonial-img-2 img {
	aspect-ratio: 1 / 1.405;
}

.testimonial-img-3 img {
	aspect-ratio: 1 / 0.644;
}

.hero-content-footer.client-review-box {
	position: absolute;
	bottom: 40px;
	right: 0;
	width: 100%;
	max-width: 205px;
	background: var(--accent-secondary-color);
	box-shadow: 0px 0px 11.8px 0px #0000001F;
	align-items: flex-start;
	gap: 20px;
	flex-direction: column;
	border-radius: 16px;
	padding: 20px;
	margin: 0;
	animation: experienceobject 3s infinite linear alternate;
}

/************************************/
/***       16. Our Blog css	      ***/
/************************************/

.our-blog {
	padding: 70px 0 70px;
	scroll-margin-top: 100px;
}

.post-item {
	height: calc(100% - 30px);
	margin-bottom: 30px;
}

.post-featured-image {
	margin-bottom: 20px;
}

.post-featured-image a {
	cursor: none;
	display: block;
	border-radius: 20px;
	overflow: hidden;
}

.post-featured-image figure {
	display: block;
}

.post-featured-image img {
	aspect-ratio: 1 / 0.744;
	object-fit: cover;
	border-radius: 20px;
	transition: all 0.5s ease-in-out;
}

.post-item:hover .post-featured-image img {
	transform: scale(1.1);
}

.post-item-content {
	margin-bottom: 25px;
}

.post-item-content h3 {
	font-size: 20px;
	line-height: 1.4em;
}

.post-item-content h3 a {
	display: inline-block;
	color: inherit;
}

/************************************/
/***        17. Footer css	      ***/
/************************************/

.main-footer {
	padding: 80px 0 0 0;
	margin-bottom: 50px;
}

.main-footer-box {
	display: flex;
	gap: 50px 65px;
	flex-wrap: wrap;
	align-items: flex-start;
}

.footer-about {
	position: relative;
	width: calc(48% - 75px);
}

/* .footer-about::before {
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	right: 0;
	background-color: var(--dark-divider-color);
	height: 100%;
	width: 1px;
} */

.logo {
	width: 170px;
}

.footer-logo,
.about-footer-content {
	margin-bottom: 30px;
}

/* .footer-logo img {
	width: 100%;
	max-width: 175px;
	margin-left: -20px;
} */

.about-footer-content p {
	color: var(--white-color);
	margin-bottom: 0;
}

.footer-contact-list {
	margin-bottom: 40px;
}

.download_store {
	width: 150px;
}

.footer-contact-list ul {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	gap: 20px;
	flex-wrap: wrap;
}

.footer-contact-list ul li {
	font-family: var(--accent-font);
	font-size: 20px;
	color: var(--white-color);
	border: 1px solid var(--dark-divider-color);
	border-radius: 10px;
	padding: 9px 20px;
	line-height: 1.1em;
	transition: all 0.3s ease-in-out;
}

.footer-contact-list ul li:hover {
	border-color: var(--accent-color);
}

.footer-contact-list ul li:hover a svg path {
	fill: var(--accent-color);
}

.footer-contact-list ul li a svg {
	margin-right: 10px;
}

.footer-contact-list a {
	display: block;
	color: inherit;
	transition: all 0.3s ease-in-out;
	font-size: 15px;
}

.footer-contact-list ul li:hover a {
	color: var(--accent-color);
}

.footer-menu ul {
	margin: 0;
	padding: 0;
	list-style: none;
	display: flex;
	flex-wrap: wrap;
	gap: 20px 50px;
}

.footer-menu ul li {
	font-family: var(--accent-font);
	font-size: 20px;
	font-weight: 500;
	line-height: 1.2em;
	color: var(--white-color);
	text-transform: capitalize;
	transition: all 0.3s ease-in-out;
}

.footer-menu ul li:hover {
	color: var(--accent-color);
}

.footer-menu ul li a {
	color: inherit;
}

.footer-links-box {
	width: calc(52% - 75px);
	display: flex;
	/* flex-wrap: wrap; */
	gap: 80px;
}

.footer-links {
	width: calc(50% - 30px);
}

.footer-links h3 {
	font-size: 20px;
	color: var(--white-color);
	text-transform: capitalize;
	margin-bottom: 30px;
}

.footer-links ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

.footer-links ul li {
	color: var(--white-color);
	text-transform: capitalize;
	line-height: 1.7em;
	margin-bottom: 15px;
}

.footer-links ul li:last-child {
	margin-bottom: 0;
}

.footer-links ul li a {
	color: inherit;
	transition: all 0.3s ease-in-out;
}

.footer-links ul li a:hover {
	color: var(--accent-color);
}

.footer-social-links {
	width: 100%;
	display: flex;
	align-items: center;
	gap: 20px;
}

.footer-social-links span {
	font-family: var(--accent-font);
	font-size: 20px;
	font-weight: 600;
	color: var(--white-color);
}

.footer-social-links ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

.footer-social-links ul li {
	display: inline-block;
	margin-right: 15px;
}

.footer-social-links ul li:last-child {
	margin: 0;
}

.footer-social-links ul li a {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 38px;
	height: 38px;
	border: 1px solid var(--dark-divider-color);
	border-radius: 50%;
	transition: all 0.3s ease-in-out;
}

.footer-social-links ul li:hover a {
	border-color: var(--accent-color);
}

.footer-social-links ul li i {
	font-size: 18px;
	color: var(--white-color);
	transition: all 0.3s ease-in-out;
}

.footer-social-links ul li:hover a i {
	color: var(--accent-color);
}

.footer-copyright {
	position: relative;
	border-top: 1px solid var(--dark-divider-color);
	padding: 20px 0;
	/* margin-top: 50px; */
	z-index: 1;
}

.footer-copyright-text p {
	color: var(--white-color);
	margin: 0;
}

.footer-privacy-policy {
	text-align: end;
}

.footer-privacy-policy ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

.footer-privacy-policy ul li {
	position: relative;
	color: var(--white-color);
	text-transform: capitalize;
	display: inline-block;
	margin-right: 10px;
	padding-right: 22px;
	transition: all 0.3s ease-in-out;
}

.footer-privacy-policy ul li:hover {
	color: var(--accent-color);
}

.footer-privacy-policy ul li a {
	color: inherit;
}

.footer-privacy-policy ul li::before {
	content: '-';
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	font-size: 18px;
	color: var(--white-color);
}

.footer-privacy-policy ul li:last-child {
	padding: 0;
	margin: 0;
}

.footer-privacy-policy ul li:last-child:before {
	display: none;
}

/************************************/
/***     18. About Us Page css    ***/
/************************************/

.page-header {
	position: relative;
	padding: 260px 0 200px;
	margin-top: 50px;
	max-width: 100% !important;
	margin: 0px !important;
	border-radius: 0px !important;
}

.page-header:after {
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	background: url('../images/snapshot-fitness.png') no-repeat;
	background-position: top;
	background-size: cover;
	width: 100%;
	height: 100%;
	border-radius: 50px;
	background-attachment: fixed;
}

.page-header.bg-image::before {
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	background: rgb(0 0 0 / 60%) !important;
	background-position: top center;
	background-size: cover;
	width: 100%;
	height: 100%;
	z-index: 3;
	border-radius: 0px !important;
}

.page-header.bg-section {

	width: 100%;
}

.page-header.bg-image::after {
	border-radius: 0px !important;
}

.page-header-box {
	text-align: center;
}

.page-header-box h1 {
	display: inline-block;
	font-size: 70px;
	font-weight: 700;
	color: var(--white-color);
	margin-bottom: 10px;
	cursor: none;
}

.page-header-box ol {
	margin: 0;
	padding: 0;
	justify-content: center;
}

.page-header-box ol li.breadcrumb-item {
	font-size: 16px;
	font-weight: 400;
	line-height: 1.5em;
	text-transform: capitalize;
	color: var(--white-color);
}

.page-header-box ol li.breadcrumb-item a {
	color: inherit;
}

.page-header-box ol .breadcrumb-item+.breadcrumb-item::before {
	color: var(--white-color);
}

.our-approach {
	padding: 100px 0;
}

.our-approach-image {
	margin-right: 20px;
}

.our-approach-image figure {
	display: block;
	border-radius: 30px;
}

.our-approach-image img {
	width: 100%;
	aspect-ratio: 1 / 1.22;
	object-fit: cover;
	border-radius: 30px;
}

.our-approach-body {
	margin-bottom: 60px;
}

.our-approach-body ul {
	display: flex;
	flex-wrap: wrap;
	gap: 15px 20px;
	list-style: none;
	margin: 0;
	padding: 0;
}

.our-approach-body ul li {
	position: relative;
	width: calc(50% - 10px);
	line-height: 1.5em;
	padding-left: 30px;
}

.our-approach-body ul li::before {
	content: '\f058';
	font-family: 'Font Awesome 6 Free';
	font-weight: 900;
	font-size: 20px;
	color: var(--accent-secondary-color);
	display: inline-block;
	position: absolute;
	top: 0;
	left: 0;
}

.our-approach-footer {
	position: relative;
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
	/* margin-left: -135px; */
	z-index: 2;
}

.mission-vision-item,
.mission-vision-image {
	width: calc(50% - 20px);
}

.mission-vision-item {
	position: relative;
	background-color: var(--white-color);
	border-radius: 16px;
	padding: 24px;
	overflow: hidden;
}

.mission-vision-item:before {
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 0;
	background: var(--accent-color);
	z-index: 0;
	transition: all 0.4s ease-in-out;
}

.mission-vision-item:hover:before {
	top: auto;
	height: 100%;
}

.mission-vision-item .icon-box {
	position: relative;
	height: 40px;
	width: 40px;
	border: 1px solid var(--accent-secondary-color);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 20px;
	z-index: 1;
}

.mission-vision-item .icon-box img {
	position: relative;
	width: 100%;
	max-width: 20px;
	z-index: 1;
	transition: all 0.4s ease-in-out;
}

.mission-vision-item:hover .icon-box img {
	transform: rotateY(180deg);
}

.mission-vision-content {
	position: relative;
	z-index: 1;
}

.mission-vision-content h3 {
	font-size: 20px;
	text-transform: capitalize;
	margin-bottom: 10px;
}

.mission-vision-content p {
	margin: 0;
	transition: all 0.4s ease-in-out;
}

.mission-vision-item:hover .mission-vision-content p {
	color: var(--primary-color);
}

.mission-vision-image figure {
	height: 100%;
	display: block;
	border-radius: 16px;
}

.mission-vision-image img {
	height: 100%;
	width: 100%;
	aspect-ratio: 1 / 0.93;
	object-fit: cover;
}

.how-it-work.about-how-it-work {
	padding: 100px 0;
}

.about-how-it-work .how-work-step-item .icon-box {
	border-color: var(--accent-secondary-color);
	transition: all 0.4s ease-in-out;
}

.about-how-it-work .how-work-step-item:hover .icon-box {
	border-color: var(--accent-color);
}

.about-how-it-work .how-work-step-item .icon-box:before {
	background-color: var(--accent-color);
}

.about-how-it-work .how-work-step-item .icon-box img {
	filter: none;
}

.about-how-it-work .how-work-step-item .how-work-no {
	background: var(--accent-secondary-color);
}

.about-how-it-work .how-work-step-item .how-work-no h3 {
	color: var(--white-color);
}

.about-how-it-work .how-work-content h3 {
	color: var(--primary-color);
}

.about-how-it-work .how-work-content p {
	color: var(--text-color);
}

.how-work-counter-list {
	display: flex;
	gap: 30px 60px;
	flex-wrap: wrap;
	border-top: 1px solid var(--divider-color);
	margin-top: 80px;
	padding-top: 80px;
}

.how-work-counter-item {
	position: relative;
	width: calc(20% - 48px);
}

.how-work-counter-item::before {
	content: '';
	position: absolute;
	top: 0;
	right: -30px;
	bottom: 0;
	background: var(--divider-color);
	height: 100%;
	width: 1px;
}

.how-work-counter-item:nth-child(5n + 5)::before {
	display: none;
}

.how-work-counter-item h2 {
	font-size: 46px;
	margin-bottom: 5px;
}

.how-work-counter-item p {
	margin-bottom: 0;
}

.expert-coaching {
	padding: 60px 0;
}

.expert-coaching-image {
	position: relative;
	padding: 110px 250px 280px 25px;
	margin-right: 20px;
}

.expert-coaching-image:before {
	content: '';
	position: absolute;
	border: 20px solid var(--accent-color);
	border-radius: 50%;
	width: 160px;
	height: 160px;
	top: 50%;
	transform: translateY(-20%);
	right: 60px;
}

.expert-coaching-img-1,
.expert-coaching-img-2,
.expert-coaching-img-3 {
	border: 9px solid var(--white-color);
	border-radius: 30px;
	box-shadow: 0px 13px 50px 0px #00000029;
	overflow: hidden;
}

.expert-coaching-img-1 figure,
.expert-coaching-img-2 figure,
.expert-coaching-img-3 figure {
	display: block;
}

.expert-coaching-img-1 img,
.expert-coaching-img-2 img,
.expert-coaching-img-3 img {
	width: 100%;
	object-fit: cover;
}

.expert-coaching-img-1 {
	position: relative;
	transform: rotate(-11.61deg);
	z-index: 1;
}

.expert-coaching-img-1 img {
	aspect-ratio: 1 / 1.03;
}

.expert-coaching-img-2 {
	position: absolute;
	top: 25px;
	right: 25px;
	max-width: 295px;
	transform: rotate(12.91deg);
	z-index: 2;
}

.expert-coaching-img-2 img {
	aspect-ratio: 1 / 1.17;
}

.expert-coaching-img-3 {
	position: absolute;
	left: 170px;
	bottom: 10px;
	max-width: 290px;
	transform: rotate(3.68deg);
}

.expert-coaching-img-3 img {
	aspect-ratio: 1 / 0.99;
}

.expert-coaching-body {
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
	/* border-bottom: 1px solid var(--divider-color); */
	margin-bottom: 40px;
	padding-bottom: 40px;
}

.expert-coaching-body.embrace_list {
	display: block;
}

/* .expert-coaching-body-item {
	width: calc(50% - 15px);
} */

.expert-coaching-body-item h3 {
	position: relative;
	font-size: 18px;
	text-transform: capitalize;
	padding-left: 35px;
	margin-bottom: 10px;
}

.expert-coaching-body-item h3:before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 22px;
	height: 22px;
	background: url('../images/icon-sub-heading.svg') no-repeat;
	background-position: left center;
	background-size: cover;
}

.expert-coaching-body-item p {
	margin: 0;
}

.expert-coaching-list {
	margin-bottom: 40px;
}

.expert-coaching-list ul {
	display: flex;
	flex-wrap: wrap;
	gap: 20px 30px;
	list-style: none;
	padding: 0;
	margin: 0;
}

.expert-coaching-list ul li {
	position: relative;
	width: calc(50% - 15px);
	line-height: 1.5em;
	padding-left: 30px;
}

.expert-coaching-list ul li::before {
	content: '\f058';
	font-family: 'Font Awesome 6 Free';
	font-weight: 900;
	font-size: 20px;
	color: var(--accent-secondary-color);
	display: inline-block;
	position: absolute;
	top: 0;
	left: 0;
}

.our-health {
	padding: 100px 0;
}

.our-health-image {
	position: relative;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 20px;
	padding-left: 68px;
}

.our-health-img-box {
	width: calc(50% - 10px);
}

.our-health-img-1 figure,
.our-health-img-2 figure,
.our-health-img-3 figure {
	display: block;
	border-radius: 30px;
}

.our-health-img-1 img,
.our-health-img-2 img,
.our-health-img-3 img {
	width: 100%;
	object-fit: cover;
	border-radius: 30px;
}

.our-health-img-1 {
	margin-bottom: 20px;
}

.our-health-img-1 img,
.our-health-img-2 img {
	aspect-ratio: 1 / 1.065;
}

.our-health-img-3 img {
	aspect-ratio: 1 / 2.2;
}

.contact-us-circle {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	left: 0;
	z-index: 1;
}

.contact-us-circle a {
	display: block;
	border-radius: 50%;
}

.contact-us-circle img {
	width: 100%;
	max-width: 164px;
	border: 8px solid var(--secondary-color);
	border-radius: 50%;
	animation: infiniterotate 25s infinite linear;
}

.our-journey {
	padding: 100px 0 70px;
}

.our-journey-item {
	position: relative;
	background: var(--white-color);
	box-shadow: 0px 0px 30px 0px #0000000D;
	border: 1px solid var(--divider-color);
	border-radius: 30px;
	height: calc(100% - 30px);
	margin-bottom: 30px;
	padding: 30px 25px;
	overflow: hidden;
}

.our-journey-item:before {
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 0;
	background: var(--accent-color);
	z-index: 0;
	transition: all 0.4s ease-in-out;
}

.our-journey-item:hover:before {
	top: auto;
	height: 100%;
}

.our-journey-item .icon-box {
	position: relative;
	width: 60px;
	height: 60px;
	border: 1px solid var(--accent-secondary-color);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 1;
	margin-bottom: 30px;
}

.our-journey-item .icon-box img {
	width: 100%;
	max-width: 36px;
}

.our-journey-content {
	position: relative;
	z-index: 1;
}

.our-journey-content h3 {
	font-size: 20px;
	text-transform: capitalize;
	margin-bottom: 10px;
}

.our-journey-content p {
	margin: 0;
	transition: all 0.4s ease-in-out;
}

.our-journey-item:hover .our-journey-content p {
	color: var(--primary-color);
}

.our-team {
	padding: 100px 0 70px;
}

.team-item {
	position: relative;
	height: calc(100% - 30px);
	margin-bottom: 30px;
}

.team-image a {
	display: block;
	cursor: none;
	border-radius: 20px;
	overflow: hidden;
}

.team-image figure:before {
	content: '';
	position: absolute;
	width: 100%;
	height: 100%;
	top: auto;
	right: 0;
	bottom: 0;
	left: 0;
	background: linear-gradient(180deg, transparent 65.69%, rgba(0, 0, 0, 0.8) 98.29%);
	z-index: 1;
}

.team-image img {
	width: 100%;
	aspect-ratio: 1 / 1.19;
	object-fit: cover;
	transition: all 0.4s ease-in-out;
}

.team-item:hover .team-image img {
	transform: scale(1.1);
}

.team-social-icon {
	position: absolute;
	top: 40px;
	right: 20px;
	opacity: 0;
	visibility: hidden;
	z-index: 1;
	transition: all 0.4s ease-in-out;
}

.team-item:hover .team-social-icon {
	top: 20px;
	opacity: 1;
	visibility: visible;
}

.team-social-icon ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

.team-social-icon ul li {
	margin-bottom: 10px;
}

.team-social-icon ul li:last-child {
	margin-bottom: 0;
}

.team-social-icon ul li a {
	width: 34px;
	height: 34px;
	color: var(--white-color);
	background: var(--accent-secondary-color);
	border-radius: 50%;
	border: none;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: all 0.4s ease-in-out;
}

.team-social-icon ul li a i {
	color: inherit;
	font-size: 16px;
}

.team-social-icon ul li a:hover {
	color: var(--primary-color);
	background: var(--white-color);
}

.team-content {
	position: absolute;
	right: 30px;
	bottom: 30px;
	left: 30px;
	z-index: 2;
}

.team-content h3 {
	color: var(--white-color);
	font-size: 20px;
	text-transform: capitalize;
	margin-bottom: 5px;
}

.team-content h3 a {
	color: inherit;
}

.team-content p {
	color: var(--white-color);
	text-transform: capitalize;
	margin: 0;
}

/************************************/
/*** 	 19. Services Page css	  ***/
/************************************/

.page-services {
	padding: 100px 0 70px;
}

.our-testimonial.service-testimonial {
	background: transparent;
	animation: none;
}

/************************************/
/*** 	20. Service Single css	  ***/
/************************************/

.page-service-single {
	padding: 100px 0;
}

.page-single-sidebar {
	position: sticky;
	top: 140px;
	margin-right: 20px;
}

.page-catagery-list {
	background-color: var(--secondary-color);
	border-radius: 30px;
	margin-bottom: 60px;
	padding: 30px;
	overflow: hidden;
}

.page-catagery-list h3 {
	font-size: 20px;
	text-transform: capitalize;
	margin-bottom: 30px;
}

.page-catagery-list ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

.page-catagery-list ul li {
	margin-bottom: 20px;
}

.page-catagery-list ul li:last-child {
	margin: 0;
}

.page-catagery-list ul li a {
	position: relative;
	display: block;
	line-height: normal;
	text-transform: capitalize;
	color: var(--accent-secondary-color);
	background-color: var(--white-color);
	border-radius: 15px;
	padding: 13px 40px 13px 20px;
	overflow: hidden;
	transition: all 0.4s ease-in-out;
	z-index: 1;
	font-weight: 700;
	font-size: 18px;
}

.page-catagery-list ul li:hover a {
	color: var(--primary-color);
}

.page-catagery-list ul li a::before {
	content: '';
	position: absolute;
	right: 20px;
	top: 50%;
	transform: translate(0px, -50%);
	background: url('../images/arrow-text.svg');
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
	width: 18px;
	height: 13px;
	transition: all 0.3s ease-in-out;
}

.page-catagery-list ul li a:hover::before {
	filter: brightness(0) invert(0);
}

/* .page-catagery-list ul li a::after {
	content: '';
	position: absolute;
	right: 0;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 0;
	background: var(--accent-color);
	transition: all 0.4s ease-in-out;
	z-index: -1;
} */

.page-catagery-list ul li:hover a::after {
	top: 0;
	height: 100%;
}

.page-cta-box.sidebar-cta-box {
	padding: 80px 30px;
}

.service-featured-image {
	margin-bottom: 40px;
}

.service-featured-image figure {
	display: block;
	border-radius: 30px;
}

.service-featured-image img {
	width: 100%;
	aspect-ratio: 1 / 0.542;
	object-fit: cover;
	border-radius: 30px;
}

.service-entry {
	margin-bottom: 60px;
}

.service-entry p {
	margin-bottom: 20px;
}

.service-entry p:last-child {
	margin-bottom: 0;
}

.service-entry h2 {
	font-size: 46px;
	font-weight: 700;
	margin-bottom: 20px;
}

.service-entry ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

.service-entry ul li {
	position: relative;
	line-height: 1.5em;
	padding-left: 30px;
	margin-bottom: 20px;
}

.service-entry ul li:last-child {
	margin-bottom: 0;
}

.service-entry ul li::before {
	content: '\f058';
	font-family: 'Font Awesome 6 Free';
	font-weight: 900;
	font-size: 20px;
	color: var(--accent-secondary-color);
	display: inline-block;
	position: absolute;
	top: 0;
	left: 0;
}

.service-solutions-box,
.service-personalized-box,
.service-entry-image-content {
	margin-top: 60px;
}

.what-we-do-list.service-solutions-list {
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
	margin-top: 40px;
}

.what-we-do-list.service-solutions-list .what-we-list-item {
	width: calc(50% - 15px);
	margin-bottom: 0;
}

.service-personalized-image-conetnt {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 30px;
	margin-top: 40px;
}

.service-personalized-conetnt {
	width: calc(62% - 15px);
}

.service-personalized-conetnt ul {
	border-bottom: 1px solid var(--divider-color);
	margin-bottom: 30px;
	padding-bottom: 30px;
}

.service-personalized-image {
	width: calc(38% - 15px);
}

.service-personalized-image figure {
	display: block;
	border-radius: 30px;
}

.service-personalized-image img {
	width: 100%;
	aspect-ratio: 1 / 1.1;
	object-fit: cover;
	border-radius: 30px;
}

.service-entry-image-content {
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
}

.service-entry-image {
	width: calc(38% - 15px);
}

.service-entry-image figure {
	display: block;
	border-radius: 30px;
}

.service-entry-image img {
	width: 100%;
	aspect-ratio: 1 / 1.235;
	object-fit: cover;
	border-radius: 30px;
}

.service-entry-content {
	width: calc(62% - 15px);
}

.service-entry-content-item {
	border-bottom: 1px solid var(--divider-color);
	margin-bottom: 30px;
	padding-bottom: 30px;
}

.service-entry-content-item:last-child {
	margin-bottom: 0;
	padding-bottom: 0;
	border-bottom: none;
}

.service-entry-content-item h3 {
	font-family: var(--default-font);
	font-size: 20px;
	margin-bottom: 15px;
}

.service-entry-content-item p {
	margin-bottom: 0;
}

/************************************/
/*** 	 21. Blog Archive css	  ***/
/************************************/

.page-blog {
	padding: 100px 0;
}

.page-blog .post-item {
	height: calc(100% - 40px);
	margin-bottom: 40px;
}

.page-pagination {
	margin-top: 30px;
	text-align: center;
}

.page-pagination ul {
	justify-content: center;
	padding: 0;
	margin: 0;
}

.page-pagination ul li a,
.page-pagination ul li span {
	display: flex;
	text-decoration: none;
	justify-content: center;
	align-items: center;
	background: var(--secondary-color);
	color: var(--primary-color);
	border-radius: 10px;
	width: 40px;
	height: 40px;
	margin: 0 5px;
	font-weight: 700;
	line-height: 1em;
	transition: all 0.3s ease-in-out;
}

.page-pagination ul li.active a,
.page-pagination ul li a:hover {
	background: var(--accent-secondary-color);
	color: var(--white-color);
}

/************************************/
/*** 	 22. Blog Single css 	  ***/
/************************************/

.page-single-post {
	padding: 100px 0;
}

.post-single-meta ol li {
	font-size: 18px;
	color: var(--white-color);
	margin-right: 15px;
}

.post-single-meta ol li:last-child {
	margin-right: 0;
}

.post-single-meta ol li i {
	font-size: 18px;
	color: var(--white-color);
	margin-right: 5px;
}

.post-image {
	position: relative;
	margin-bottom: 30px;
}

.post-image figure {
	display: block;
	border-radius: 30px;
	overflow: hidden;
}

.post-image img {
	width: 100%;
	aspect-ratio: 1 / 0.50;
	object-fit: cover;
	border-radius: 30px;
}

.post-content {
	width: 100%;
	max-width: 1100px;
	margin: 0 auto;
}

.post-entry {
	border-bottom: 1px solid var(--divider-color);
	padding-bottom: 30px;
	margin-bottom: 30px;
}

.post-entry:after {
	content: '';
	display: block;
	clear: both;
}

.post-entry a {
	color: var(--accent-color);
}

.post-entry h1,
.post-entry h2,
.post-entry h3,
.post-entry h4,
.post-entry h5,
.post-entry h6 {
	font-weight: 700;
	line-height: 1.2em;
	margin: 0 0 0.44em;
}

.post-entry h1 {
	font-size: 74px;
}

.post-entry h2 {
	font-size: 46px;
}

.post-entry h3 {
	font-size: 40px;
}

.post-entry h4 {
	font-size: 30px;
}

.post-entry h5 {
	font-size: 24px;
}

.post-entry h6 {
	font-size: 18px;
}

.post-entry p {
	margin-bottom: 30px;
}

.post-entry p:last-child {
	margin-bottom: 0;
}

.post-entry p strong {
	color: var(--primary-color);
	font-size: 18px;
	font-weight: 600;
}

.post-entry ol {
	margin: 0 0 30px;
}

.post-entry ul {
	padding: 0;
	margin: 20px 0 20px;
	padding-left: 20px;
}

.post-entry ol li,
.post-entry ul li {
	position: relative;
	font-size: 18px;
	font-weight: 500;
	line-height: 1.5em;
	color: var(--text-color);
	margin-bottom: 15px;
}

.post-entry ul li:last-child {
	margin-bottom: 0;
}

.post-entry ul ul,
.post-entry ul ol,
.post-entry ol ol,
.post-entry ol ul {
	margin-top: 20px;
	margin-bottom: 0;
}

.post-entry ul ul li:last-child,
.post-entry ul ol li:last-child,
.post-entry ol ol li:last-child,
.post-entry ol ul li:last-child {
	margin-bottom: 0;
}

.post-entry blockquote {
	background: url('../images/icon-blockquote.svg'), var(--accent-secondary-color);
	background-repeat: no-repeat;
	background-position: 30px 30px;
	background-size: 50px;
	border-radius: 20px;
	padding: 30px 30px 30px 90px;
	margin-bottom: 30px;
}

.post-entry blockquote p {
	font-family: var(--accent-font);
	font-size: 20px;
	font-weight: 500;
	line-height: 1.5em;
	color: var(--white-color);
}

.post-entry blockquote p:last-child {
	margin-bottom: 0;
}

.tag-links {
	font-family: var(--accent-font);
	font-size: 20px;
	font-weight: 700;
	text-transform: capitalize;
	color: var(--primary-color);
	display: inline-flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 15px;
}

.post-tags .tag-links a {
	display: inline-block;
	font-family: var(--default-font);
	font-size: 16px;
	font-weight: 600;
	text-transform: capitalize;
	line-height: 1em;
	background: var(--accent-color);
	color: var(--primary-color);
	border-radius: 100px;
	padding: 12px 20px;
	transition: all 0.3s ease-in-out;
}

.post-tags .tag-links a:hover {
	background: var(--accent-secondary-color);
	color: var(--white-color);
}

.post-social-sharing {
	text-align: right;
}

.post-social-sharing ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

.post-social-sharing ul li {
	display: inline-block;
	margin-right: 10px;
}

.post-social-sharing ul li:last-child {
	margin-right: 0;
}

.post-social-sharing ul li a {
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	background: var(--accent-color);
	color: var(--primary-color);
	border-radius: 10px;
	width: 40px;
	height: 40px;
	transition: all 0.3s ease-in-out;
}

.post-social-sharing ul li:hover a {
	background: var(--accent-secondary-color);
	color: var(--white-color);
}

.post-social-sharing ul li a i {
	font-size: 18px;
	color: inherit;
}

/************************************/
/*** 	 23. Programs Page css	  ***/
/************************************/

.page-programs {
	padding: 100px 0 70px;
}

/************************************/
/*** 	24. Program Single Css	  ***/
/************************************/

.page-program-single {
	padding: 100px 0;
}

.program-detail-box {
	background-color: var(--secondary-color);
	padding: 30px;
	border-radius: 30px;
	margin-bottom: 60px;
}

.program-detail-item {
	background: var(--white-color);
	border-radius: 15px;
	margin-bottom: 20px;
	padding: 20px;
}

.program-detail-item:last-child {
	margin-bottom: 0;
}

.program-detail-item h3 {
	font-size: 20px;
	text-transform: capitalize;
	margin-bottom: 5px;
}

.program-detail-item p {
	margin-bottom: 0;
}

.program-featured-image {
	margin-bottom: 40px;
}

.program-featured-image figure {
	display: block;
	border-radius: 30px;
}

.program-featured-image img {
	width: 100%;
	aspect-ratio: 1 / 0.575;
	object-fit: cover;
	border-radius: 30px;
}

.program-entry {
	margin-bottom: 60px;
}

.program-entry p {
	margin-bottom: 20px;
}

.program-entry p:last-child {
	margin-bottom: 0;
}

.program-entry h2 {
	font-size: 46px;
	font-weight: 700;
	margin-bottom: 20px;
}

.program-entry ul {
	display: flex;
	flex-wrap: wrap;
	gap: 20px 30px;
	margin-bottom: 20px;
	padding: 0;
	list-style: none;
}

.program-entry ul li {
	position: relative;
	width: calc(50% - 15px);
	line-height: 1.5em;
	padding-left: 30px;
}

.program-entry ul li::before {
	content: '\f058';
	font-family: 'Font Awesome 6 Free';
	font-weight: 900;
	font-size: 20px;
	color: var(--accent-secondary-color);
	display: inline-block;
	position: absolute;
	top: 0;
	left: 0;
}

.program-entry-image-video {
	position: relative;
	margin-top: 40px;
}

.program-entry-image figure {
	display: block;
	border-radius: 30px;
}

.program-entry-image img {
	width: 100%;
	aspect-ratio: 1 / 0.431;
	object-fit: cover;
	filter: brightness(80%);
	border-radius: 30px;
}

.video-play-button {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

.video-play-button a {
	position: relative;
	border: 1px solid var(--white-color);
	border-radius: 50%;
	width: 80px;
	height: 80px;
	margin: 0 auto;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: none;
}

.video-play-button a i {
	font-size: 26px;
	color: var(--white-color);
	margin-left: 3px;
}

.program-entry-practices {
	margin-top: 60px;
}

.program-image-content-box {
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
	margin-top: 40px;
}

.what-we-do-list.program-content-list {
	width: calc(52% - 15px);
}

.what-we-do-list.program-content-list .what-we-list-item {
	border-bottom: 1px solid var(--divider-color);
	margin-bottom: 30px;
	padding-bottom: 30px;
}

.what-we-do-list.program-content-list .what-we-list-item:last-child {
	margin-bottom: 0;
	padding-bottom: 0;
	border-bottom: none;
}

.program-practice-image {
	width: calc(48% - 15px);
}

.program-practice-image figure {
	display: block;
	border-radius: 20px;
}

.program-practice-image img {
	width: 100%;
	aspect-ratio: 1 / 0.98;
	object-fit: cover;
	border-radius: 20px;
}

/************************************/
/*** 	  25. Team Page css 	  ***/
/************************************/

.page-team {
	padding: 100px 0 70px;
}

/************************************/
/*** 	 26. Team Single css	  ***/
/************************************/

.page-team-single {
	padding: 100px 0;
}

.team-single-sidebar {
	position: sticky;
	top: 20px;
	margin-right: 20px;
}

.team-sidebar-box {
	background-color: var(--accent-secondary-color);
	border-radius: 20px;
	margin-bottom: 30px;
	padding: 30px;
}

.team-sidebar-image {
	margin-bottom: 30px;
}

.team-sidebar-image figure {
	display: block;
	border-radius: 20px;
}

.team-sidebar-image img {
	width: 100%;
	aspect-ratio: 1 / 1.027;
	object-fit: cover;
	border-radius: 20px;
}

.team-sidebar-body-content {
	margin-bottom: 30px;
}

.team-sidebar-body-content h3 {
	color: var(--white-color);
	font-size: 20px;
	text-transform: capitalize;
	border-bottom: 1px solid var(--dark-divider-color);
	margin-bottom: 30px;
	padding-bottom: 30px;
}

.team-sidebar-body-content p {
	color: var(--white-color);
	margin: 0;
}

.team-sidebar-body ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

.team-sidebar-body ul li {
	width: 100%;
	color: var(--white-color);
	display: inline-flex;
	border-bottom: 1px solid var(--dark-divider-color);
	margin-bottom: 20px;
	padding-bottom: 20px;
}

.team-sidebar-body ul li span {
	font-size: 20px;
	font-weight: 600;
	text-transform: capitalize;
	width: 32%;
}

.team-sidebar-footer {
	display: flex;
	align-items: center;
	gap: 20px;
}

.team-sidebar-footer span {
	font-size: 20px;
	font-weight: 600;
	text-transform: capitalize;
	color: var(--white-color);
}

.team-sidebar-footer ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

.team-sidebar-footer ul li {
	display: inline-block;
	border-radius: 50%;
	margin-right: 10px;
}

.team-sidebar-footer ul li:last-child {
	margin-right: 0;
}

.team-sidebar-footer ul li a {
	background-color: var(--white-color);
	border-radius: 50%;
	width: 36px;
	height: 36px;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.3s ease-in-out;
}

.team-sidebar-footer ul li:hover a {
	background-color: var(--accent-color);
}

.team-sidebar-footer ul li a i {
	color: var(--accent-secondary-color);
	font-size: 18px;
}

.team-member-info,
.team-skills-box,
.team-awards-box {
	margin-bottom: 60px;
}

.team-member-info ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

.team-member-info ul li {
	position: relative;
	line-height: 1.5em;
	text-transform: capitalize;
	padding-left: 30px;
	margin-bottom: 15px;
}

.team-member-info ul li:last-child {
	margin-bottom: 0;
}

.team-member-info ul li::before {
	content: '\f058';
	position: absolute;
	font-family: 'FontAwesome';
	font-weight: 900;
	left: 0;
	top: 0;
	font-size: 20px;
	color: var(--accent-secondary-color);
}

.team-skills-list {
	margin-top: 40px;
	display: flex;
	gap: 30px 50px;
	flex-wrap: wrap;
}

.team-skills-item {
	width: calc(25% - 37.5px);
	text-align: center;
}

.team-skills-item .circle {
	position: relative;
	display: inline-block;
	border-color: var(--text-color);
	color: var(--accent-secondary-color);
	text-align: center;
	margin-bottom: 20px;
}

.circle .progress_value {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -52%);
	font-family: var(--accent-font);
	font-size: 40px;
	color: var(--primary-color);
	font-weight: 700;
	width: 120px;
	height: 120px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--secondary-color);
	border-radius: 50%;
}

.team-skills-item p {
	text-transform: capitalize;
	margin-bottom: 0;
}

.team-awards-list ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

.team-awards-list ul li {
	font-weight: 600;
	line-height: 1.7em;
	background-color: var(--secondary-color);
	border-radius: 20px;
	padding: 20px;
	margin-bottom: 30px;
}

.team-awards-list ul li:last-child {
	margin-bottom: 0;
}

.team-awards-list ul li span {
	color: var(--primary-color);
}

/************************************/
/***  27.  Testimonial Page css	  ***/
/************************************/

.page-testimonials {
	padding: 100px 0;
}

/* .page-testimonials .testimonial-boxes .testimonial-item{
	width: calc(25% - 22.5px);
} */

/************************************/
/*** 	28.  Image Gallery css 	  ***/
/************************************/

.page-gallery {
	padding: 100px 0 70px;
}

.page-gallery-box .photo-gallery {
	height: calc(100% - 30px);
	margin-bottom: 30px;
}

.page-gallery-box .photo-gallery a {
	cursor: none;
}

.page-gallery-box .photo-gallery figure {
	display: block;
	border-radius: 20px;
}

.page-gallery-box .photo-gallery img {
	width: 100%;
	aspect-ratio: 1 / 0.8;
	object-fit: cover;
	border-radius: 20px;
}

/************************************/
/*** 	 29.  Video Gallery css	  ***/
/************************************/

.page-video-gallery {
	padding: 100px 0 70px;
}

.video-gallery-image {
	height: calc(100% - 30px);
	margin-bottom: 30px;
	overflow: hidden;
}

.video-gallery-image a {
	position: relative;
	display: block;
	cursor: none;
}

.video-gallery-image a::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: var(--primary-color);
	border-radius: 20px;
	opacity: 0%;
	visibility: hidden;
	width: 100%;
	height: 100%;
	z-index: 1;
	transform: scale(0);
	transition: all 0.4s ease-in-out;
}

.video-gallery-image:hover a::before {
	opacity: 40%;
	visibility: visible;
	transform: scale(1);
}

.video-gallery-image a::after {
	content: '\f04b';
	font-family: 'FontAwesome';
	position: absolute;
	top: 50%;
	left: 50%;
	right: 0;
	transform: translate(-50%, -50%);
	font-size: 20px;
	background: var(--accent-secondary-color);
	color: var(--white-color);
	border-radius: 50%;
	height: 60px;
	width: 60px;
	cursor: none;
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	visibility: hidden;
	transition: all 0.5s ease-in-out;
	z-index: 1;
}

.video-gallery-image:hover a::after {
	opacity: 1;
	visibility: visible;
}

.video-gallery-image img {
	aspect-ratio: 1 / 0.8;
	object-fit: cover;
	border-radius: 20px;
}

/************************************/
/*** 	  30.  FAQs Page css	  ***/
/************************************/

.page-faqs {
	padding: 100px 0;
}

.page-faqs-catagery {
	position: sticky;
	top: 140px;
}

.page-faqs-catagery .page-faq-accordion {
	margin-bottom: 60px;
}

.page-faqs-catagery .page-faq-accordion:last-child {
	margin-bottom: 0px;
}

#testimonial {
	scroll-margin-top: 100px;
}

/************************************/
/***  31.  Contact Us Page css 	  ***/
/************************************/

.page-contact-us {
	padding: 100px 0 50px;
}

.contact-now-circle {
	text-align: right;
}

.contact-now-circle img {
	width: 100%;
	max-width: 144px;
	animation: infiniterotate 25s infinite linear;
}

.contact-form {
	margin-right: 30px;
}

.contact-form .form-control {
	font-size: 16px;
	font-weight: 400;
	line-height: 1.5em;
	color: var(--text-color);
	background-color: var(--white-color);
	border: 1px solid var(--divider-color);
	border-radius: 10px;
	padding: 17px 20px;
	box-shadow: none;
	outline: none;
}

.contact-form .form-control::placeholder {
	color: var(--text-color);
}

.contact-us-content {
	border-radius: 30px;
	overflow: hidden;
}

.contact-info-list {
	display: flex;
	flex-wrap: wrap;
	background-color: var(--accent-secondary-color);
	padding: 40px;
}

.contact-info-item {
	width: 50%;
}

.contact-info-item {
	padding: 30px 30px 30px 0;
	border-bottom: 1px solid var(--dark-divider-color);
	border-right: 1px solid var(--dark-divider-color);
}

.contact-info-item:nth-of-type(2n + 2) {
	padding: 30px 0 30px 30px;
	border-bottom: 1px solid var(--dark-divider-color);
	border-right: none;
}

.contact-info-item:nth-last-child(-n + 2) {
	padding-bottom: 0;
	border-bottom: none;
}

.contact-info-item:nth-child(-n + 2) {
	padding-top: 0;
}

.contact-info-item .icon-box {
	position: relative;
	border: 1px solid var(--white-color);
	border-radius: 50%;
	width: 40px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	margin-bottom: 20px;
	transition: all 0.4s ease-in-out;
}

.contact-info-item:hover .icon-box {
	border-color: transparent;
}

.contact-info-item .icon-box::before {
	content: '';
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	background: var(--accent-color);
	border-radius: 50%;
	width: 100%;
	height: 100%;
	transform: scale(0);
	transition: all 0.4s ease-in-out;
	z-index: 0;
}

.contact-info-item:hover .icon-box::before {
	transform: scale(1);
}

.contact-info-item .icon-box img {
	width: 100%;
	max-width: 20px;
	transition: all 0.4s ease-in-out;
	z-index: 1;
}

.contact-info-item:hover .icon-box img {
	filter: brightness(0) invert(0);
}

.contact-info-content h3 {
	font-size: 20px;
	text-transform: capitalize;
	color: var(--white-color);
	margin-bottom: 10px;
}

.contact-info-content p {
	color: var(--white-color);
	margin: 0;
}

.contact-info-content p a {
	color: inherit;
	transition: all 0.4s ease-in-out;
}

.contact-info-content p a:hover {
	color: var(--accent-color);
}

.contact-social-list {
	background: var(--accent-color);
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 10px 20px;
	padding: 30px 40px;
}

.contact-social-list h3 {
	color: var(--primary-color);
	font-size: 20px;
	text-transform: capitalize;
}

.contact-social-list ul {
	display: flex;
	flex-wrap: wrap;
	gap: 10px 15px;
	list-style: none;
	padding: 0;
	margin: 0;
}

.contact-social-list ul li a {
	border: 1px solid var(--primary-color);
	color: var(--primary-color);
	border-radius: 50%;
	width: 36px;
	height: 36px;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.3s ease-in-out;
}

.contact-social-list ul li a:hover {
	border-color: var(--white-color);
	color: var(--white-color);
}

.contact-social-list ul li a i {
	font-size: 18px;
	color: inherit
}

.google-map {
	padding: 50px 0 100px;
}

.google-map-iframe,
.google-map-iframe iframe {
	width: 100%;
	height: 460px;
	border-radius: 30px;
}

#token {

	scroll-margin-top: 100px;
}

/************************************/
/***   32. Book Appointment css	  ***/
/************************************/

.page-book-appointment {
	padding: 100px 0;
}

/************************************/
/***   33. 404 Error Page css	  ***/
/************************************/

.error-page {
	padding: 100px 0;
}

.error-page-image {
	text-align: center;
	margin-bottom: 30px;
}

.error-page-image img {
	width: 100%;
	max-width: 45%;
}

.error-page-content {
	text-align: center;
}

.error-page-content-body p,
.error-page-content .section-title {
	margin-bottom: 20px;
}

.app_store ul li {
	font-family: var(--accent-font);
	font-size: 20px;
	color: var(--white-color);
	border: 2px solid #014E4E;
	border-radius: 10px;
	padding: 9px 20px;
	line-height: 1.1em;
	transition: all 0.3s ease-in-out;
}

.app_store ul {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	gap: 20px 50px;
	flex-wrap: wrap;
}

.app_store ul li a {
	color: #014E4E;
	font-weight: 600;

}

.app_store ul li a svg path {
	fill: #014E4E !important;
}

.step_section {
	margin-top: 100px;
	padding: 100px 0px;
}

.step_des {
	font-size: 30px;
	color: var(--white-color);
	line-height: 55px;
	text-align: center;
	text-transform: capitalize;
}

.describe__text {
	margin-inline: auto;
}

.sub_ima {
	width: 200px;
	height: auto;
}

.step-section {
	background: #014E4E;
	border-radius: 30px;
	padding: 30px 50px;
}

/* .section-blog-box
{
	background-image: url(../images/testimonial-bg.png);
    background-repeat: repeat-x;
    background-size: cover;
    padding: 100px 0;
    animation: testimonialbgmove 60s infinite linear;
} */

.press_list_item {
	grid-column-gap: var(--_spacing---space--3);
	grid-row-gap: 1.5rem;
	border-radius: 15px;
	background-color: white;
	text-align: center;
	flex-flow: column;
	align-items: center;
	width: 100%;
	max-width: 25.75rem;
	min-height: 18.75rem;
	padding: 1.5rem;
	display: flex;
	justify-content: center;
	box-shadow: 0 0 2.5rem #00000014;
}

.press_list_text {
	margin-bottom: 0px;
}

.press_list_icon {
	object-fit: contain;
	max-width: 2.09188rem;
}

.press_list_logo {
	max-width: 5.25481rem;
}

.expert-us-body h2 strong {
	color: #014E4E;
	font-weight: 600;
}

.header-sticky.sticky {
	position: fixed !important;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 1000;
	background: #014E4E;
	transition: all 0.3s ease-in-out;
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.stat_card {
	border-radius: 20px;
	background-color: var(--accent-secondary-color);
	flex-flow: column;
	justify-content: flex-end;
	align-items: stretch;
	min-height: 22.5rem;
	padding: .5rem;
	display: flex;
	position: relative;
	overflow: hidden;
	box-shadow: 0 .25rem 1rem #dbdbdbb3;
}

.stat_card_text {
	z-index: 10;
	border-radius: 20px;
	background-color: white;
	text-align: center;
	flex-flow: column;
	justify-content: flex-start;
	align-items: center;
	padding: 15px;
	padding-inline: 10px;
	display: flex;
	position: relative;
}

.stat_card_title {
	color: var(--accent-secondary-color);
	font-size: 24px;
	margin-block: 20px;
	font-weight: 800;

}

.stat_card_icon {
	max-width: 4.24563rem;
	padding: .63rem;
	position: absolute;
	inset: -2.4rem auto auto;
}

.stat_card_img {
	z-index: 5;
	pointer-events: none;
	position: absolute;
	inset: 0%;
}

.stat_card_subtext {
	color: black;
	font-size: 20px;
	margin-bottom: 10px;
	line-height: 25px;
}

.blog_title {
	/* text-overflow: ellipsis; */
	width: 90%;
	font-size: 50px !important;
	/* text-wrap: nowrap; */
	/* overflow: hidden; */
}

.breadcrumb-item+.breadcrumb-item::before {
	float: left;
	padding-right: var(--bs-breadcrumb-item-padding-x);
	color: var(--bs-breadcrumb-divider-color);
	content: "" !important;
}

.sub_image {
	width: 50px;
	height: 50px;
}

.program-body {
	position: absolute;
	left: 50%;
	bottom: 40px;
	transform: translate(-50%, 20px);
	transition: all 0.4s ease-in-out;
	z-index: 1;
	width: 90%;
}

.country_img_wrapper {
	width: 100%;
	max-width: 51rem;
	height: 8.87938rem;
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 30px;
}

.country_img_wrapper .country_img {
	width: auto;
	max-width: none;
	height: 100%;
}

.country_section {
	padding: 100px 0;
}

.country_pill {
	display: flex;
	align-items: center;
	padding: 8px 14px;
	background-color: var(--dark-divider-color);
	box-shadow: 2px 4px 11px #00000027;
	color: var(--primary-color);
	font-size: 18px;
	font-weight: 600;
}

.country_pill img {
	width: 36px;
	height: 36px;
}

.country_list1 .country_pill:nth-child(1) {
	transform: rotate(346deg) translate(5px, 29px);
}

.country_list1 .country_pill:nth-child(2) {
	transform: rotate(-355deg);
}

.country_list1 .country_pill:nth-child(3) {
	transform: rotate(355deg);
	margin-top: 10px;
}

.country_list1 .country_pill:nth-child(4) {
	transform: rotate(7deg);
}

.country_list1 .country_pill:nth-child(5) {
	transform: rotate(346deg);
}

.country_list2 .country_pill:first-child,
.country_list2 .country_pill:nth-child(3),
.country_list2 .country_pill:nth-child(2) {
	transform: rotate(355deg);
}

.country_list2 .country_pill:nth-child(4) {
	transform: rotate(-355deg);
}

.country_list2 .country_pill:nth-child(5) {
	transform: rotate(355deg);
}

.about-us-body.about-content-box {
	padding: 20px;
}

.about-us-body.about-content-box ul {
	display: block;
}

.about-us-body.about-content-box ul li {
	width: 100%;
	margin-bottom: 20px;
}

.about-us-body.about-content-box ul li:last-child {
	margin-bottom: 0px;
}

.our_token {
	padding: 100px 0 70px;
	background-image: url(../images/landing-page/testimonial-bg.webp);
	background-repeat: repeat-x;
	background-size: cover;
	padding: 60px 0;
	animation: testimonialbgmove 60s infinite linear;
	margin-block: 60px;
}

.token-box {
	/* opacity: .3; */
	background-color: white;
	/* border: 1px solid var(--accent-secondary-color); */
	border-radius: 20px;
	padding: 20px;
	/* margin-bottom: 25px; */
	box-shadow: 0px 0px 10px rgb(216, 216, 216);
	position: relative;
	z-index: 3;
	overflow: hidden;
	height: 100%;
}

.token-box::after {
	content: '';
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	background: var(--accent-color);
	height: 0;
	width: 100%;
	transition: all 0.4s ease-in-out;
	z-index: 0;
}

.token_content {
	position: relative;
	z-index: 1;
	flex-direction: column;
	justify-content: space-between;
	display: flex;
	min-height: 100%;
}

.token-box:hover::after {
	height: 100%;
}

.token-title {
	font-size: 16px;
	line-height: 1.2;
	font-weight: 600;
	color: var(--primary-color);
	margin-bottom: 0px;
}

.token-allocated,
.token-values {
	font-size: 50px;
	margin-bottom: 10px;
	font-weight: 700;
	/* margin-bottom: 15px; */
	color: var(--accent-secondary-color);
}

.timeline {
	display: flex;
	justify-content: space-between;
	align-items: center;
	position: relative;
	margin-top: 180px;
	padding: 0 208px;
	width: 100%;
	min-width: 100%;
	height: 220px;
}

.timeline::before {
	content: '';
	position: absolute;
	top: 0%;
	left: 0;
	right: 0;
	height: 6px;
	background-color: #ff8b66;
	z-index: 0;
}

.timeline-item {
	position: relative;
	text-align: center;
}

.timeline-item .timeline-circle {
	width: 24px;
	height: 24px;
	background-color: #080e26;
	background-color: white;
	/* border: 2px solid var(--accent-color); */

	border-radius: 50%;
	margin: 0 auto;
	position: relative;
	z-index: 1;
	top: -110px;
}

.circle_active {
	border: 2px solid #53a0f2;
	box-shadow: 0 0 10px 2px #53a0f2;
}

.active-timeline .t1 {
	border: 3px dashed var(--accent-secondary-color);
	/* background: rgb(36 36 36) !important; */
	background: #ffffff !important;
	color: #000 !important;
}

.active-timeline .t1 p {
	color: #000000 !important;
}


.timeline-item .timeline-circle::before {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 12px;
	height: 12px;
	/* background-color: var(--accent-color); */
	background-color: #99aac5;
	border-radius: 50%;
	z-index: 2;
}

.timeline-item .timeline-circle::after {
	content: '';
	position: absolute;
	bottom: -20px;
	left: 50%;
	transform: translateX(-50%);
	width: 2px;
	height: 20px;
	background-color: #99aac5;
	/* background-color: var(--accent-color); */
}

.timeline-item:first-child .timeline-circle::before {
	background-color: #53a0f2;
	/* or any color you want */
}

.timeline-item:first-child .timeline-circle::after {
	background-color: #53a0f2;
	/* optional if you use after */
}

.timeline-item .timeline-content {
	position: absolute;
	width: 230px;
	margin-top: 10px;
	left: 50%;
	transform: translateX(-50%);
	/* background-color: #99aac52b; */
	/* background-color: #000; */
	border-radius: 15px;
	padding: 15px;
	/* box-shadow: 4px 3px 5px 0px rgba(0, 0, 0, 0.09); */
	color: rgb(0, 0, 0);
	opacity: 0.6;
}

.timeling_content1 {
	background-color: #ffffff !important;
	opacity: 1 !important;
}

.timeline-item .timeline-content.bottom {
	top: -60px;
}

.timeline-item h5 {
	font-size: 18px;
	margin-bottom: 20px;
	font-weight: 600;
	line-height: 118.5%;
	font-weight: bold;
	/* color: var(--accent-color);/ */
	color: black;
}

.timeline-item p {
	color: rgb(0, 0, 0);
	text-align: center;
	font-size: 16px;
	font-style: normal;
	font-weight: 500;
	line-height: normal;
}

.timeline-item .timeline-content.top {
	top: -220px;
}

.timeline-content.top h5 {
	margin-bottom: 0px;
}

.timeline-item.top .timeline-circle::after {
	transform: translateX(-50%) rotate(180deg);
	top: -20px;
	bottom: unset;
}

.roadmap-sec {
	padding: 70px 0 70px;
}

.roadmap_star {
	position: relative;
	z-index: 2;
}

.test {
	height: 260px !important;
}

.heading_section h3 {
	background: none;
	padding-left: 0px;
}

/* ------- pricing css ----- */

.pricing-table .ptable-item {
	padding: 0 15px;
	margin-bottom: 30px;
}

.pricing-table .ptable-single {
	position: relative;
	width: 100%;
	overflow: hidden;
	border-radius: 15px;
	transition: all 0.3s linear;
	/* border-top: 3px solid var(--accent-secondary-color); */
	border-top: 3px solid #b6bfc3;
}

.pricing-table .ptable-header,
.pricing-table .ptable-body,
.pricing-table .ptable-footer {
	position: relative;
	width: 100%;
	text-align: center;
	overflow: hidden;
}

.pricing-table .ptable-status,
.pricing-table .ptable-title,
.pricing-table .ptable-price,
.pricing-table .ptable-description,
.pricing-table .ptable-action {
	position: relative;
	width: 100%;
	text-align: center;
}

.pricing-table .ptable-single {
	/* background: #f6f8fa; */
	background: #607d8b3b;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
	/* background: linear-gradient(135deg, #a8edea 0%, #fed6e3 100%); */
}

.pricing-table .ptable-single:hover {
	box-shadow: 0 0 10px #999999;
	transform: scale(1.1);
}

.pricing-table .ptable-header {
	/* margin: 0 30px; */
	padding: 30px 0 45px 0;
	width: auto;
	/* background: var(--accent-color); */
	background: #ffffff;
}

/* .package_card1 {
	background: linear-gradient(135deg, #f5f5f5 0%, #e6e6e6 30%, #ffffff 50%, #dcdcdc 70%, #f0f0f0 100%) !important;
}

.package_card2 {
	background: linear-gradient(135deg, #1f1f1f 0%, #2a2a2a 20%, #3b3b3bb3 50%, #2d2d2d 80%, #1a1a1a 100%) !important;
}

.package_card3 {
	background: linear-gradient(135deg, #c8a758 0%, #e0c27b 30%, #f5e09b 50%, #f3c15a 70%, #dcae45 100%) !important;
}

.package_card4 {
	background: linear-gradient(135deg, #00c78c 0%, #28e0a9a8 40%, #00b56e6b 70%, #007f4e 100%) !important;
} */

.pricing-table .ptable-header::before,
.pricing-table .ptable-header::after {
	content: "";
	position: absolute;
	bottom: 0;
	width: 0;
	height: 0;
	border-bottom: 100px solid #f6f8fa;
}

.pricing-table .ptable-header::before {
	right: 50%;
	border-right: 250px solid transparent;
}

.pricing-table .ptable-header::after {
	left: 50%;
	border-left: 250px solid transparent;
}

.pricing-table .ptable-item.featured-item .ptable-header {
	background: #FF6F61;
}

.pricing-table .ptable-status {
	margin-top: -30px;
}

.pricing-table .ptable-status span {
	position: relative;
	display: inline-block;
	width: 50px;
	height: 30px;
	padding: 5px 0;
	text-align: center;
	color: #FF6F61;
	font-size: 14px;
	font-weight: 300;
	letter-spacing: 1px;
	background: #2A293E;
}

.pricing-table .ptable-status span::before,
.pricing-table .ptable-status span::after {
	content: "";
	position: absolute;
	bottom: 0;
	width: 0;
	height: 0;
	border-bottom: 10px solid #FF6F61;
}

.pricing-table .ptable-status span::before {
	right: 50%;
	border-right: 25px solid transparent;
}

.pricing-table .ptable-status span::after {
	left: 50%;
	border-left: 25px solid transparent;
}

.pricing-table .ptable-title h2 {
	color: #000000;
	font-size: 18px;
	font-weight: 400;
}

.pricing-table .ptable-price h2 {
	margin: 0;
	color: var(--accent-secondary-color);
	font-size: 40px;
	font-weight: 700;
	margin-top: 10px;
}

.pricing-table .ptable-price h2 small {
	position: absolute;
	font-size: 18px;
	font-weight: 300;
	margin-top: 16px;
	margin-left: -15px;
}

.pricing-table .ptable-price h2 span {
	margin-left: 3px;
	font-size: 16px;
	font-weight: 300;
}

.pricing-table .ptable-body {
	padding: 20px 0;
}

.pricing-table .ptable-description ul {
	margin: 0;
	padding: 0;
	list-style-type: disc;
}

.pricing-table .ptable-description ul li {
	color: black;
	font-size: 16px;
	font-weight: 500;
	letter-spacing: 1px;
	padding: 12px;
	/* border-bottom: 1px solid #dedede; */
}

.pricing-table .ptable-description ul li:last-child {
	border: none;
}

.pricing-table .ptable-footer {
	padding-bottom: 30px;
}

.pricing-table .ptable-action a {
	display: inline-block;
	padding: 10px 20px;
	color: #FF6F61;
	font-size: 14px;
	font-weight: 500;
	letter-spacing: 2px;
	text-decoration: none;
	background: #2A293E;
}

.pricing-table .ptable-action a:hover {
	color: #2A293E;
	background: #FF6F61;
}

.pricing-table .ptable-item.featured-item .ptable-action a {
	color: #2A293E;
	background: #FF6F61;
}

.pricing-table .ptable-item.featured-item .ptable-action a:hover {
	color: #FF6F61;
	background: #2A293E;
}

.buy_now_btn {

	padding: 10px 22px;
	font-size: 14px;
	text-align: center;
	margin-top: 20px;
	margin-bottom: 20px;
}

/* ------------- feature css --------- */

.feature_sec {
	padding: 100px 0px;
	position: relative;
}

.feature_box::before {
	z-index: -1 !important;
}

.feature_sec:before {
	content: '';
	position: absolute;
	width: 100%;
	height: 60%;
	left: 50%;
	transform: translatex(-50%);
	bottom: 0;
	background: url("../images/landing-page/testimonial-bg.webp") center;
	background-size: cover;
	z-index: 0;
	max-width: 100%;
	margin: 0 auto;
	background-color: var(--secondary-color);
	animation: testimonialbgmove 60s infinite linear;
}

.feature_list {
	display: flex;
	align-items: start;
	padding: 15px;
	margin: 10px 0;
	border-radius: 8px;
	background: transparent;
	cursor: pointer;
	transition: 0.3s ease;
}

.icon-font-box {
	width: 80px;
	height: 80px;
	border: 1px solid var(--accent-secondary-color);
	border-radius: 50%;
	background-color: rgba(255, 255, 255, 0.1);
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 20px;
	margin-right: 15px;
	padding: 10px;
	transition: all 0.4s ease-in-out;
	position: relative;
	z-index: 999;
}

.icon-font-box::before {
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	background-color: var(--accent-color);
	border-radius: 50%;
	height: 100%;
	width: 100%;
	transform: scale(0);
	transition: all 0.4s ease-in-out;
	z-index: -1;
}

.feature_list:hover .icon-font-box::before,
.feature_list.active .icon-font-box::before {
	transform: scale(1);
}

.feature_list:hover .icon-font-box,
.feature_list.active .icon-font-box {
	color: var(--accent-secondary-color);
}

.feature_content {
	width: 75%;
	position: relative;
}

.feature_content h3 {
	color: var(--secondary-color);
	margin-bottom: 8px;
	position: relative;
	z-index: 3;
	font-size: 20px;
}

.feature_content p {
	color: rgba(255, 255, 255, 0.5);
	font-size: 14px;
	margin-bottom: 0px;
}

.expertise_padding {
	padding: 0px 0px 50px !important;
}

.reward_main {
	padding: 30px;
	/* background: linear-gradient(90deg,rgba(1, 78, 78, 1) 0%, rgba(11, 156, 156, 1) 50%, rgba(1, 78, 78, 1) 100%); */
	/* background-color: var(--accent-secondary-color); */
	border-radius: 30px;
}

.pool {
	display: flex;
	flex-direction: column;
	/* border-left: 5px solid var(--accent-secondary-color); */
	justify-content: center;
	position: relative;
	z-index: 3;
	border-top: none;
}

/* .pool2 {
	border-left: 5px solid hsl(180, 40%, 55%) !important;
}

.pool2 h4 {
	color: hsl(180, 40%, 55%) !important;
}

.pool3 {
	border-left: 5px solid hsl(0, 78%, 62%) !important;
}

.pool3 h4 {
	color: hsl(0, 78%, 62%) !important;
}

.pool4 {
	border-left: 5px solid hsl(34, 97%, 64%) !important;
}

.pool4 h4 {
	color: hsl(34, 97%, 64%) !important;
}

.pool5 {
	border-left: 5px solid hsl(212, 86%, 64%) !important;
}

.pool5 h4 {
	color: hsl(212, 86%, 64%) !important;
} */

.rp {
	font-size: 20px;
	color: var(--accent-secondary-color);
	padding-bottom: 5px;
	text-align: center;
	line-height: 1.5;
}

.reward-p {
	text-align: center;
	color: black;
}

.content3 {
	position: relative;
	padding: 40px;
	border-radius: 20px;
	height: 100%;
	display: flex;
	flex-direction: row;
	align-items: start;
	justify-content: center;
	/* background-color: #fff; */
	/* background: linear-gradient(108.17deg,
			#c0a753 1.94%,
			#e0c278 50%,
			#a88c3d 98.06%); */
	/* background: linear-gradient(108.17deg, #607D8B 1.94%, #9e9e9e9c 50%, #607D8B 98.06%); */
	/* background: linear-gradient(150.17deg, #607d8bb5 1.94%, #9e9e9e00 50%, #607d8bb5 98.06%); */
	/* border: 1px solid #4a555b; */
	/* box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); */
	background: #ffffff;
	color: var(--accent-secondary-color);
	gap: 25px;

}

/* .content3::before {
	content: "";
	position: absolute;
	width: 5px;
	height: 100%;
	top: 0;
	left: 0;
	background: linear-gradient(90deg, #014E4E 30%, #014E4E 30%, #014e4e1c 90%);
	border-radius: 8px;
	z-index: 0;
	-webkit-transition: all 0.3s linear;
	-moz-transition: all 0.3s linear;
	-o-transition: all 0.3s linear;
	transition: all 0.3s linear;
} */

/* .content3:hover:before {
	width: 100%;
	background: linear-gradient(90deg, #014E4E 30%, #014E4E 30%, #014e4e1c 90%);
	border-radius: 8px;
	-webkit-transition: all 0.3s linear;
	-moz-transition: all 0.3s linear;
	-o-transition: all 0.3s linear;
	transition: all 0.3s linear;
}

.content3:hover h6,
.content3:hover p,
.content3:hover p b {
	color: white !important;
	opacity: 1 !important;
} */

.content3 h6 {
	font-size: 18px;
	font-style: normal;
	font-weight: 600;
	/* color: #000000; */
	margin-bottom: 10px;
	position: relative;
	color: var(--accent-secondary-color);
	/* color: transparent;
	background-clip: text !important;
	background: linear-gradient(108.17deg, rgb(1 78 78) 1.94%, rgb(1 78 78 / 55%) 50%, rgb(1 78 78 / 18%) 98.06%); */

}

.content3 p {
	font-size: 16px;
	font-style: normal;
	font-weight: 600;
	/* color: #969696; */
	margin-bottom: 10px;
	position: relative;
	color: #4b4747;
}

/* .content3 p:nth-of-type(2) {
	font-size: 20px;
} */

.content3 p b {
	font-size: 23px;
	font-style: normal;
	font-weight: 900;
	color: var(--accent-secondary-color);
	opacity: 1;
	margin-bottom: 15px;
	position: relative;
}

.pool {
	background-color: rgb(255 255 255);
	padding: 15px;
	border-radius: 15px;
	margin-bottom: 30px;
	min-height: 190px;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
	/* height: 250px; */
}

.ova-progress {
	margin-top: 30px;
}

.ova-progress .ova-percent-view {
	background-color: #ffffff;
	height: 16px;
	width: 100%;
	float: left;
	border-radius: 8px;
	overflow: visible;
	position: relative;
	margin: 0 auto;
	box-shadow: 0px 0px 5px rgb(148 148 148 / 49%);
}

.ova-progress .ctyl-progress-title {
	color: var(--accent-secondary-color);
	font-size: 18px;
	font-weight: 700;
	line-height: 24px;
	margin: 0px 0px 12px 0px;
	text-transform: capitalize;
}

.ova-progress .ova-percent-view .ova-percent {
	background: #3D88FB;
}

.ova-progress .ova-percent-view .ova-percent {
	height: 100%;
	float: left;
	border-radius: 5px;
}

.token_box {
	background-color: var(--accent-secondary-color);
	padding: 20px;
	border-radius: 20px;
}

.recharts-text.recharts-pie-label-text tspan {
	font-weight: 700;
}

.recharts-wrapper {
	margin-inline: auto;
	width: 100% !important;
	height: 100% !important;
	position: absolute;
	/* top: 80px; */
	left: 0px;
}

.faq_tab {
	justify-content: center;
	column-gap: 30px;
}

.scroll-to-top {
	position: fixed;
	bottom: 30px;
	right: 30px;
	background-color: var(--accent-secondary-color);
	color: white;
	border-radius: 50%;
	padding: 15px;
	cursor: pointer;
	z-index: 1000;
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
	transition: opacity 0.3s ease-in-out;
}

.scroll-to-top:hover {
	background-color: var(--accent-color);
}


.timeline-container {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 30px;
	max-width: 1100px;
	margin: 0 auto;
}

.circle {
	width: 16px;
	height: 16px;
	background-color: var(--accent-color);
	/* Blue */
	border-radius: 50%;
	z-index: 2;
}

.line {
	flex: 1;
	height: 2px;
	border-top: 2px dashed var(--accent-color);
	margin: 0 10px;
	z-index: 1;
}

.market_step {
	z-index: 2;
	width: 41px;
	height: 41px;
	border-radius: 50%;
	color: #fff;
}

.step1 {
	background-color: #f9d67b;
}

.step2 {
	background: #000;
}

.market_step::after {
	content: '';
	position: absolute;
	width: calc(100% - 20px);
	left: 40px;
	top: 20px;
	border-bottom: 5px dashed #E8E9ED;
	z-index: 1;
	width: 292px;
}

.our-testimonial .swiper-pagination {
	display: none;
}

.faq_section .faq-accordion .accordion-header .accordion-button {
	border: 1px solid #cfcfcf !important;
}

.faq_section.bg-section {
	background-color: #eaeef173 !important;
	margin-bottom: 60px;
	max-width: 100%;
	border-radius: 0px;
}

.reward_sec {
	scroll-margin-top: 100px;
}

.support .swiper {
	height: 230px !important;
}

.welcome_wokaa_heading {
	font-size: 20px !important;
}

.highlight_heading {
	/* color: transparent;
	background-clip: text !important;
	background: linear-gradient(108.17deg, rgb(0, 132, 247) 1.94%, rgb(138, 187, 251) 50%, rgb(43, 137, 244) 98.06%); */
	color: #ff9a00;
	text-shadow: 0px 2px 0px #c97900;

}

.highlight_heading2 {
	/* color: transparent;
	background-clip: text !important;
	background: linear-gradient(270deg, #a6d719 0%, #eeffbd 100%); */
	color: #ff9a00;
	text-shadow: 0px 2px 0px #c97900;
}

.high_head {
	color: #4CAF50 !important;
	font-size: 22px !important;
	font-weight: 900 !important;
}


.hero_heading {
	font-size: 50px !important;
	color: #fff !important;
	/* background: linear-gradient(108.17deg, #EAC258 1.94%, #FFECBC 50%, #EAC258 98.06%); */
	/* background-clip: text; */
}

.btn-default.btn-highlighted {
	padding-inline: 50px;

}

.ecosysystem {
	padding: 100px 0px;
	/* background: #dfcca01c; */
	/* margin-top: 100px; */
	background-image: url("../images/landing-page/testimonial-bg.webp");
	background-repeat: repeat-x;
	background-size: cover;
	padding: 100px 0;
	animation: testimonialbgmove 60s infinite linear;
	margin-bottom: 100px;
}

.chart-content .nav-tabs {
	border-bottom: none;
	margin: 0 -20px;
	margin-bottom: 50px;

}

.chart-content .nav-tabs .nav-item {
	padding: 0 20px;
}

.chart-content .nav-tabs .nav-link {
	margin-bottom: 0;
	background: 0 0;
	border: none;
	border-radius: 0;
	text-transform: uppercase;
	font-size: 15px;
	color: black;
	font-weight: 700;
	padding: 0;
	position: relative;
	padding: 10px;
}

.chart__bg {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0px;
	left: 0px;
}

.chart-wrap {
	/* background: var(--accent-secondary-color); */
	/* background-image: url('../images/token/dot_design.svg'); */
	/* background-size: 80%; */
	/* background-repeat: no-repeat; */
	border-radius: 20px;
	/* padding: 60px 45px 60px; */
	text-align: center;
	height: 460px;
	position: relative;
}

.chart-content .nav-tabs .nav-link:hover {
	box-shadow: none;
}

.btn_year {
	padding: 10px 20px;
	background-color: var(--accent-color);
	width: max-content;
	border-radius: 10px;
}

.chart-content .nav-tabs .nav-link:before {
	content: "";
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 3px;
	background: var(--accent-secondary-color);
	transition: .3s linear;
	opacity: 0;

}

.chart-content .nav-tabs .nav-link.active:before {
	opacity: 1;
}

.chart-content .nav-tabs .nav-link.active {
	color: var(--accent-secondary-color);
}

.chart-content-inner {
	padding-top: 20px;
}

.chart-content-inner .title {
	font-size: 45px;
	margin-bottom: 35px;
	letter-spacing: -.01em;
	line-height: 1.2;
	color: black;
}

.chart-content-inner p {
	color: var(--accent-secondary-color);
	margin-bottom: 45px;
	font-size: 20px;
}

.chart-content-inner .btn {
	background: var(--accent-secondary-color);
	min-width: 200px;
	padding: 21px 50px;
}

.allocation_sec {
	padding: 80px 0px;
}

@keyframes testimonialbgmove {
	from {
		background-position: left center;
	}

	to {
		background-position: left 200vw center;
	}
}

.creator-item__shape {
	/* width:100%; */
	/* height: 200px; */
	/* background: linear-gradient(to top, #c7a440, #ffffff); */
	/* clip-path: polygon(0 8%, 100% 8%, 91% 100%, 7% 100%); */
	/* margin: 50px auto;  */
	/* border-radius: 20px; */
}

.creator-item {
	--icon-rotate: 43.92deg;
	--icon-rotate-minus: -43.92deg;
	text-align: center;
	padding: 20px 50px 30px 50px;
	position: relative;
	z-index: 1;
	margin: 0 0 30px 0;
	height: 250px;
	/* background-color: #afb8ca4a; */
	border-radius: 20px;
	margin-bottom: 120px;
	transition: all 0.3s ease-in-out;
	/* Extra large devices */
	/* background: linear-gradient(108.17deg, rgb(0, 132, 247) 1.94%, rgb(138, 187, 251) 50%, rgb(43, 137, 244) 98.06%); */
	background: linear-gradient(#26d0e44f, #0276ab66);
}

.create_item1 {
	background: linear-gradient(108.17deg, rgb(0, 132, 247) 1.94%, rgb(138, 187, 251) 50%, rgb(43, 137, 244) 98.06%);
}

.create_icon1 {
	background: linear-gradient(108.17deg, rgb(0, 132, 247) 1.94%, rgb(138, 187, 251) 50%, rgb(43, 137, 244) 98.06%) !important;
}

.create_item2 {
	background: linear-gradient(108.17deg, rgb(255, 140, 0) 1.94%, rgb(255, 191, 105) 50%, rgb(255, 112, 0) 98.06%);
}

.create_icon2 {
	background: linear-gradient(108.17deg, rgb(255, 140, 0) 1.94%, rgb(255, 191, 105) 50%, rgb(255, 112, 0) 98.06%) !important;
}

.create_item3 {
	background: linear-gradient(108.17deg, rgb(139, 195, 74) 1.94%, rgb(205, 220, 57) 50%, rgb(124, 179, 66) 98.06%);
}

.create_icon3 {
	background: linear-gradient(108.17deg, rgb(139, 195, 74) 1.94%, rgb(205, 220, 57) 50%, rgb(124, 179, 66) 98.06%) !important;
}

.create_item4 {
	background: linear-gradient(108.17deg, rgb(255, 182, 193) 1.94%, rgb(255 192 203 / 59%), rgb(255, 160, 176) 98.06%);
}

.create_icon4 {
	background: linear-gradient(108.17deg, rgb(255, 182, 193) 1.94%, rgb(255 235 238) 50%, rgb(255, 160, 176) 98.06%) !important;
}

.create_item5 {
	background: linear-gradient(108.17deg, rgb(255, 69, 58) 1.94%, rgb(255, 138, 130) 50%, rgb(220, 38, 38) 98.06%);
}

.create_icon5 {
	background: linear-gradient(108.17deg, rgb(255, 69, 58) 1.94%, rgb(255, 138, 130) 50%, rgb(220, 38, 38) 98.06%) !important;
}

.create_item6 {
	background: linear-gradient(108.17deg, rgb(160, 160, 160) 1.94%, rgb(200, 200, 200) 50%, rgb(120, 120, 120) 98.06%);
}

.create_icon6 {
	background: linear-gradient(108.17deg, rgb(160, 160, 160) 1.94%, rgb(200, 200, 200) 50%, rgb(120, 120, 120) 98.06%) !important;
}

/* .creator-item:hover {
	background-color: #afb8ca;
} */

.m-b {
	margin-bottom: 100px;
}

.creator-content {

	margin-top: 85px;
}

@media (max-width: 1500px) {
	.creator-item {
		padding: 20px 35px 30px 35px;
	}
}

/* .creator-item__shape {
	position: absolute;
	bottom: 0;
	left: 0;
	z-index: -1;
	transition: all 0.3s ease-in-out;
  } */
@media (max-width: 767px) {
	/* .creator-item__shape {
	  left: 50%;
	  transform: translateX(-50%);
	  width: 100%;
	  height: 251px;
	} */
}

.creator-item__shape>svg {
	/* Extra large devices */
}

@media (max-width: 1500px) {
	.creator-item__shape>svg {
		width: 100%;
		height: 100%;
	}
}

.creator-item__shape--second {
	opacity: 1;
	visibility: visible;
	transform: scaleY(1);
	transform-origin: top;
}

.creator-item__shape--second>svg {
	/* Extra large devices */
}

@media (max-width: 1500px) {
	.creator-item__shape--second>svg {
		width: 100%;
	}
}

.creator-item__icon {
	--icon-size: 131.82px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: var(--icon-size);
	height: var(--icon-size);
	/* background-color: #939db1; */
	border-radius: 21px;
	transform: rotate(var(--icon-rotate)) translateX(-50%);
	box-shadow: 4px 4px 4px #767c88;
	position: absolute;
	top: -24px;
	left: 46%;
	margin: 0 0 50px 0;
	/* background: linear-gradient(108.17deg, rgb(0, 132, 247) 1.94%, rgb(138, 187, 251) 50%, rgb(43, 137, 244) 98.06%); */
	background: linear-gradient(#26d0e44f, #0276ab66);
}

.creator-item__icon::before {
	--icon-size-two: 102.53px;
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 102.53px;
	height: 102.53px;
	;
	background-color: white;
	border-radius: 21px;
}

.creator-item__icon--img {
	transform: rotate(var(--icon-rotate-minus));
}

.creator-item__icon--img path {
	fill: #ab8a1b !important;

}

.creator-item__title {
	font-size: 20px;
	margin-bottom: 15px;

}

.creator-item__title--link {
	color: #000 !important;
	font-size: 22px;
}

.creator-item__text {
	color: rgb(0, 0, 0);
	/* Extra large devices */
	/* Small devices */
	/* Extra small devices */
}

@media (max-width: 1500px) {
	.creator-item__text {
		margin-bottom: 0;
	}
}

@media (max-width: 767px) {
	.creator-item__text {
		max-width: 65%;
		margin: 0 auto;
	}
}

@media (max-width: 470px) {
	.creator-item__text {
		max-width: 100%;
		margin: 0 auto 20px auto;
	}
}

.creator-item:hover .creator-item__shape--second {
	opacity: 1;
	visibility: visible;
	transform: scaleY(1);
}

.creator-item--style2 {
	--icon-rotate: 0deg;
	--icon-rotate-minus: -0deg;
	padding: 0px 70px 30px 70px;
	position: relative;
	/* Large devices */
}

@media (max-width: 1199px) {
	.creator-item--style2 {
		padding: 0px 15px 30px 15px;
	}

	.market_step::after {
		width: 185px;
	}
}

.creator-item--style2 .creator-item__bg {
	position: absolute;
	bottom: 0;
	width: 100%;
	min-height: 219px;
	border-radius: 23px;
	left: 0;
	bottom: 0;
	overflow: hidden;
}

.creator-item--style2 .creator-item__icon {
	--icon-size: 110px;
	box-shadow: none;
	border-radius: 50%;
	background: var(--bg-color9);
	border: 6px solid rgba(247, 245, 232, 0.04);
	margin: 0 0 37px 0;
	transition: all 0.3s ease-in-out;
	/* Medium devices */
}

@media (max-width: 991px) {
	.creator-item--style2 .creator-item__icon {
		margin: 0 0 25px 0;
	}
}

.creator-item--style2 .creator-item__icon svg path {
	transition: all 0.3s ease-in-out;
}

.creator-item--style2 .creator-item__icon::before {
	display: none;
}

.creator-item--style2 .creator-item__title {
	text-transform: uppercase;
	letter-spacing: 0.6px;
	margin: -0.23em 0 17px 0;
}

.creator-item--style2 .creator-item__text {
	margin-bottom: 0;
}

.creator-item--style2 .creator-item__content {
	position: relative;
	z-index: 1;
}

.creator-item--style2 .creator-item__number {
	position: absolute;
	bottom: -60px;
	left: 50%;
	transform: translateX(-50%);
	font-size: 40px;
	color: #232530;
	font-weight: 600;
	font-family: var(--title-font);
	/* Medium devices */
}

@media (max-width: 991px) {
	.creator-item--style2 .creator-item__number {
		position: static;
		bottom: 0px;
		left: 0%;
		padding-top: 17px;
		display: block;
		width: 100%;
		transform: translateX(0);
	}
}

.create_item {
	margin-bottom: 0px !important;
}

.creator-item--style2:hover .creator-item__icon {
	background: #a6d719;
	border: 6px solid #88a927;
}

.creator-item--style2:hover .creator-item__icon svg path {
	fill: #10131d;
}

.creator-item--style2:hover .creator-item__icon svg {
	animation: vsBreadcrumbShake 0.82s cubic-bezier(0.36, 0.07, 0.19, 0.97) both;
	transform: translate3d(0, 0, 0);
	backface-visibility: hidden;
	perspective: 1000px;
}

.program-image-2 {
	background-color: #DDE26A !important;
}

.program-image-1 {
	background-color: #fca5a5 !important;
}

.program-image-3 {
	background-color: #E5D1A2 !important;
}

.program-image-4 {
	background-color: #AFB8CA !important;
}


.card-custom1 {
	background-color: #ffffff40;
	/* border-radius: 15px; */
	text-align: center;
	max-width: 350px;
	margin: auto;
	/* box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5); */
	border: 1px solid #99a4a9;
	transition: transform 0.5s ease, background-color 0.5s ease;
	border-radius: 24px !important;
	border-top: none;
	height: 100%;
}

.card-custom1:hover {
	/* background-color: #2c223b; */
	transform: scale(1.07);
	/* Scale by 10% */
}

.card-custom1:hover .btn-custom1 {
	background: linear-gradient(90deg, #FFFFB7 0%, #F9DF80 22%, #FAB001 57%, #ECDAA0 78%, #FCD063 98%);
	border: 2px solid transparent;
	transition: background 0.3s ease, color 0.3s ease;
	/* Add smooth transitions */
	color: black;
}

.package_card2 {
	background-color: beige;
}

.package_card1 {
	background-color: aliceblue;
}

.card-header1 {
	position: relative;
	/* height: 78px; */
	overflow: visible;
	height: 100px;
}

.card-header1 img {
	position: absolute;
	top: -50%;
	/* Move half of the image above the card */
	left: 50%;
	transform: translate(-50%, 0) scale(1.01);
	width: 100%;
	/* Adjust size as needed */
	z-index: 2;
	/* Ensure it stays above the card */
}

.card-header1 .overlay-text {
	position: absolute;
	top: 50%;
	/* Place text in the middle of the image */
	left: 50%;
	transform: translate(-50%, -50%);
	color: black;
	font-weight: 600;
	font-size: 18px;
	z-index: 3;
	width: 100%;
	/* Ensure text appears above the image */
}

.card-body1 {
	padding: 13px;
	padding-top: 5px;
}

.badge1 {
	background-color: #fff;
	color: #000;
	padding: 5px 20px;
	font-size: 14px;
	font-weight: bold;
	border-radius: 30px;
	position: absolute;
	top: -20px;
	left: 50%;
	transform: translateX(-50%);
}

.price1 {
	font-size: 40px !important;
	font-weight: bold;
	margin: 30px 0;
	font-weight: 700 !important;
	/* color: #014e4e !important; */
}

.subtext1 {
	font-size: 14px;
	/* margin-bottom: 20px; */
	color: rgba(255, 255, 255, 0.7);
	text-align: left;
}

.features2 {
	text-align: left;
	/* margin: 20px 0; */
}

.features2 li {
	display: flex;
	align-items: center;
	font-size: 20px;
	margin-bottom: 10px;
}

.features2 li i {
	margin-right: 10px;
	font-size: 14px;
}

.mini {
	font-size: 11px;
	margin: 0;
	margin-bottom: 3px;
	text-align: left;
	color: #777777;
}

.super-mini {
	font-weight: 400;
	font-size: 8px;
}

.grey {
	color: grey;
}

.btn-custom1 {
	background-color: transparent;
	/* Keeps the background white */
	color: #1a73e8;
	/* Sets the text color to #1a73e8 */
	padding: 10px 50px;
	border: 2px solid #1a73e8;
	/* Sets the border color to #1a73e8 */
	border-radius: 30px;
	font-size: 14px;
	font-weight: bold;
	transition: background-color 0.3s ease;
}

.bi-check-circle-fill::before {
	color: #53BFFD;
}

.bi-x-circle-fill::before {
	color: #EC7171;
}



/* how it work  */


.process-1 {
	position: relative;
}

.process-1 .process-items {
	-ms-grid-columns: auto auto auto;
	grid-template-columns: auto auto auto;
	margin-top: 100px;
}

.process-1 .process-items .single-process-item {
	position: relative;
	z-index: 1;
	width: 372px;
}

.process-1 .process-items .single-process-item .icon {
	width: 56px;
	height: 56px;
	border-radius: 50%;
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	cursor: pointer;
	background: #C0A753;
	font-size: 20px;
	font-weight: 700;
	color: white;
	position: absolute;
	top: 25px;
	left: 17px;
	z-index: 1;
}

.process-1 .process-items .single-process-item:nth-child(2) .icon {
	top: 5px;
	left: 15px;
}

.support {
	padding-block: 70px;
}

.support_heading {
	margin-bottom: 70px !important;
}

.support_slider {
	text-align: center;
}

@media (max-width: 991px) {
	.process-1 .process-items .single-process-item {
		width: 100%;
	}
}

/* .process-1 .process-items .single-process-item .image {
	-webkit-mask: url('data:image/svg+xml;utf8,<svg viewBox="0 0 372 333" xmlns="http://www.w3.org/2000/svg"><path d="M0 75.1761C0 68.9789 2.87287 63.1318 7.77841 59.3447L79.2515 4.16861C82.7523 1.46598 87.0503 0 91.473 0H352C363.046 0 372 8.95431 372 20V312.34C372 323.385 363.046 332.34 352 332.34H20C8.95431 332.34 0 323.385 0 312.34V75.1761Z" /></svg>');
	mask: url('data:image/svg+xml;utf8,<svg viewBox="0 0 372 333" xmlns="http://www.w3.org/2000/svg"><path d="M0 75.1761C0 68.9789 2.87287 63.1318 7.77841 59.3447L79.2515 4.16861C82.7523 1.46598 87.0503 0 91.473 0H352C363.046 0 372 8.95431 372 20V312.34C372 323.385 363.046 332.34 352 332.34H20C8.95431 332.34 0 323.385 0 312.34V75.1761Z" /></svg>');
	mask-repeat: no-repeat;
	-webkit-mask-repeat: no-repeat;
	height: 330px;
	-webkit-mask-size: cover;
	mask-size: cover;
} */

.process-1 .process-items .single-process-item .image img {
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
	object-fit: cover;
}

.process-1 .process-items .single-process-item h4 {
	color: var(--accent-secondary-color);
	padding-top: 20px;
}

.process-1 .process-items .single-process-item p {
	color: black;
	font-weight: 500;
	line-height: 26px;
	padding: 10px 30px 0 30px;
}

.process-1 .shape-1 {
	position: absolute;
	top: 0;
	right: 0;
	opacity: 5%;
	-webkit-animation: zoomBig 10s infinite linear;
	animation: zoomBig 10s infinite linear;
}

.process-1 .shape-2 {
	position: absolute;
	bottom: 0;
	right: 0;
	opacity: 40%;
	-webkit-animation: topToBottom 5s infinite linear;
	animation: topToBottom 5s infinite linear;
}

.process-1 .shape-3 {
	position: absolute;
	top: 0;
	left: 0;
	opacity: 40%;
	-webkit-animation: leftToRight 5s infinite linear;
	animation: leftToRight 5s infinite linear;
}

.process-1 .shape-4 {
	position: absolute;
	top: 28.5%;
	left: 25.5%;
	-webkit-animation: leftToRight 3s infinite linear;
	animation: leftToRight 3s infinite linear;
}

.process-1 .shape-5 {
	position: absolute;
	bottom: 14.5%;
	left: 49.5%;
	-webkit-animation: leftToRight 3s infinite linear;
	animation: leftToRight 3s infinite linear;
}

@keyframes leftToRight {
	0% {
		-webkit-transform: translateX(0px);
		transform: translateX(0px);
	}

	50% {
		-webkit-transform: translateX(-20px);
		transform: translateX(-20px);
	}

	100% {
		-webkit-transform: translateX(0px);
		transform: translateX(0px);
	}
}

.process-2 {
	position: relative;
}

.process-2 .signle-process-item {
	position: relative;
	text-align: center;
	margin-top: 30px;
}

.process-2 .signle-process-item .shape-1 {
	position: absolute;
	right: -130px;
	-webkit-animation: rotateleft2 5s linear infinite;
	animation: rotateleft2 5s linear infinite;
}


.process-2 .signle-process-item .shape-2 {
	position: absolute;
	right: -120px;
	top: 25px;
	-webkit-animation: rotateleft 5s linear infinite;
	animation: rotateleft 5s linear infinite;
}

.process-2 .signle-process-item .icons {
	display: inline-block;
	position: relative;
	padding-bottom: 35px;
}

.process-2 .signle-process-item .icons .icon-1 {
	width: 111px;
	height: 111px;
	border-radius: 50%;
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	cursor: pointer;
	-webkit-box-shadow: 7px 11px 50px 50px rgba(2, 8, 66, 0.03);
	box-shadow: 7px 11px 50px 50px rgba(2, 8, 66, 0.03);
	font-size: 37px;
	background: var(--white);
	color: var(--theme);
	-webkit-transition: all 0.4s ease-in-out;
	transition: all 0.4s ease-in-out;
}

.process-2 .signle-process-item .icons .icon-2 {
	width: 41px;
	height: 41px;
	border-radius: 50%;
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	cursor: pointer;
	color: var(--white);
	font-size: 16px;
	font-weight: 700;
	background-color: var(--theme-2);
	position: absolute;
	right: -10px;
}

.process-2 .signle-process-item:hover .icon-1 {
	background-color: var(--theme-2);
	color: var(--white);
	-webkit-transform: scale(1.05);
	transform: scale(1.05);
}

.abc {
	width: 228px !important;
	padding: 0;
	padding-right: 15px;
	padding-top: 15px;
}

.token_chart {
	height: 600px;
	border-radius: 20px;
}

.tokenomics-box {
	background-color: #1a1a2e;
	padding: 1rem;
	border-radius: 10px;
	/* margin-bottom: 1rem; */
	border-top-right-radius: 0;
	border-bottom-left-radius: 0;
	color: #fff;
}

.token_text {
	color: #828283;
}

.token_presale {
	border-bottom: 1px solid #83828254;
	/* padding: 10px 0; */
}

.tokenomics-box span {
	font-weight: bold;
	display: inline-block;
	margin-bottom: 0.5rem;
}

.pink {
	background-color: #f72585;
}

.orange {
	background-color: #f77f00;
}

.green {
	background-color: #43aa8b;
}

.blue {
	background-color: #4cc9f0;
}

.yellow {
	background-color: #fcbf49;
}

.red {
	background-color: #ef476f;
}

/* .token-icon {
	width: 100px;
	margin: 2rem auto;
	display: block;
} */

.btn-purchase {
	background-color: #f72585;
	color: white;
	border: none;
}

.btn-purchase:hover {
	background-color: #c2185b;
}

.info-card {
	background-color: #014e4e;
	border-radius: 10px;
	padding: 20px;
	margin-bottom: 15px;
	color: #fff;
}

/* -------  rewards page  ---------------- */

.token_information {

	padding-block: 70px 0;
}

.tokenomics_sec {
	padding-top: 100px;
}

.token_update_box {
	display: flex;
	align-items: center;
	border-radius: 5px;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	-ms-border-radius: 5px;
	-o-border-radius: 5px;
	border: 1px solid black;
	height: 60px;
	color: rgb(0, 0, 0);
	font-size: 18px;
	width: 100%;
	margin-bottom: 20px;
	overflow: hidden;
}

.token_update_box p {
	width: 55%;
	height: 60px;
	display: flex;
	align-items: center;
	padding-left: 20px;
	font-size: 17px;
	font-weight: 500;
	color: #000000;
	/* background-color: var(--accent-secondary-color); */
	margin: 0;
	clip-path: polygon(0 0, 95% 0, 100% 50%, 95% 100%, 0 100%);
}

.allocation_bg {
	padding: 20px 35px;
	background: #c7cdda24;
	border-radius: 20px;
}


/* .token_update_box p {
	width: 50%;
	display: flex;
	align-items: center;
	height: 60px;
	padding-left: 20px;
	font-size: 16px;
	font-weight: 400;
	color: #ffffff;
	background-color: #2a4141;
	margin: 0;
	position: relative;

}

.token_update_box p::after {
	content: "";
	position: absolute;
	right: 0;
	top: 0;
	width: 0;
	height: 0;
	border-top: 30px solid transparent;
	border-bottom: 30px solid transparent;
	border-left: 20px solid #014E4E;
}   */

.token_update_box strong {
	padding-left: 50px;
	font-weight: 600;


}

.pink {
	background-color: #dc8bb0a6;
}

.orange {
	background-color: #b86309ba;
}

.green {
	background-color: #60e0bad4;
}

.blue {
	background-color: #7988dc75;
}

.yellow {
	background-color: #ebb03f87;
}


path {
	stroke: none;
	/* stroke-width: 5px; */
	cursor: pointer;
	transition: fill 250ms;

}

.tokenism_heading {
	color: var(--accent-secondary-color);
}

.token_detail_box .tokenism_heading {
	font-size: 24px !important;
}

.chart-wrapper svg text {
	text-transform: capitalize;
	font-weight: 500;
	line-height: 20px;
	/* letter-spacing: .5px; */
}

polyline {
	fill: none;
	stroke: var(--accent-secondary-color);
	stroke-width: 2px;
	stroke-dasharray: 5px;
}

button {
	/* position: absolute; */
	/* top: 20px; */
	/* left: 20px; */
	text-transform: uppercase;
	cursor: pointer;
	padding: 5px 10px;
	outline: none;
	font-size: .6em;
	background-color: transparent;
	color: #fff;
	border: 1px solid #fff;
	letter-spacing: 1px;
	transition: all 250ms;
}

button:hover {
	background-color: #fff;
	color: #0d0d0d;
	box-shadow: 0 0 2px #fff;
}

button:active {
	opacity: 0.5;
}

.chart-wrapper {
	width: 100%;
	height: auto;
	padding: 100px;
	border-radius: 20px;
	margin: 0 auto;
	text-align: center;
	background-color: rgb(234, 238, 241);
}

.token_heading {
	color: var(--accent-secondary-color);
}

.navbar .offcanvas-body {
	overflow-x: hidden;
}


.swiper-button-next,
.swiper-button-prev {
	color: #014e4e;
	font-size: 10px;
	z-index: 10;
	background: #f9d67b;
	border-radius: 10px;
	padding: 22px;
}

.swiper-button-next:after,
.swiper-button-prev:after {
	font-size: 20px;
	font-weight: 900;
	box-shadow: 0 6px 20px rgba(249, 214, 123, 0.5);
}

.swiper-button-next {
	right: 10px;
}

.swiper-button-prev {
	left: 10px;
}

.process-wrapper .swiper {
	position: static;
}

.our-programs .swiper {
	position: relative;
	/* overflow: visible !important; */
	padding-block: 70px 30px;
	padding: 76px 15px;
}

.our-programs .swiper-button-next {
	right: 10px;
}

.our-programs .swiper-button-prev {
	left: 10px;
}

.our-programs {
	position: relative;
}

/* --------- join download css ------ */

.download_bg {
	text-align: center;
	position: relative;
	border-radius: 20px;
	color: rgb(0, 0, 0);
	background: linear-gradient(180deg, #EAEEF1 10%, #a2b9c9c4 100%);
	/* background-color: #EAEEF1; */
	padding: 20px;
	height: 440px;
	padding-left: 45px;
	z-index: 1;
	overflow: hidden;
}

.download_img {
	padding-top: 10px;
}

.download_img img {
	height: auto;
}

.download-content .section-title {
	margin-bottom: 10px;
}

.vertical-line-sm {
	position: relative;
}

.vertical-line-sm-wrapper {
	/* Set your desired height */
	display: flex;
	padding: 20px;
	/* position: relative;
	border-left: 2px dashed #f9d67b; */
	margin: 0 auto;

	/* Internet Explorer 10+ */
	justify-content: center;
}

/* Each block in the vertical timeline */
.timeline-block {
	position: relative;
	padding-left: 20px;
	margin-bottom: 40px;
}

/* Yellow dot on each block */
.timeline-dot {
	position: absolute;
	left: -7px;
	top: 0;
	width: 12px;
	height: 12px;
	background-color: #f9d67b;
	border-radius: 50%;
}

.pool {
	/* width: 300px; */
	margin-right: 30px;
	flex: 0 0 270px;
}

.work_arrow1 {
	position: absolute;
	left: 29%;
	top: 110px;
}

.work_arrow2 {
	position: absolute;
	left: 63%;
	top: 110px;
}

/* --------- token details ------------- */

.token_details {
	text-align: center;
	position: relative;
	border-radius: 20px;
	color: rgb(255, 255, 255);
	/* background: linear-gradient(180deg, #EAEEF1 10%, #EAEEF1 100%); */
	background: var(--accent-secondary-color);
	padding: 100px 0px;
	height: auto;
	z-index: 1;
	overflow: hidden;
	/* padding-bottom: 200px !important; */
	margin-top: 60px;
}

.token_table {
	border-radius: 15px !important;
	border: 1px solid rgb(255, 255, 255);
	border-collapse: collapse;
}

.token_table tr {
	border-radius: 10px;
}

.token_table td {
	background: transparent !important;
	padding: 20px;
	font-weight: 500;
	color: rgb(255, 255, 255);

}

.token_table .table_heading {
	font-weight: 700;
	font-size: 18px;
	/* color: #014E4E; */
	color: rgb(255, 255, 255);

	/* background: var(--accent-color) !important; */
}

.tokenomics {
	/* box-shadow: 0px 0px 30px 0px #0000000D; */
	border-radius: 20px;
	padding: 50px 100px 50px 100px;
}

.token-appointment {
	position: relative;
	/* margin-top: -100px; */
	z-index: 2;
	background-color: #f1f8ff;
}

.token_list li {
	font-size: 20px;
	padding: 18px 20px;
	border-radius: 10px;
	margin-bottom: 14px;
	background-color: #EAEEF1;
	color: black;
}

.dot {
	width: 25px;
	height: 25px;
	border-radius: 50%;
	margin-right: 14px;
	background: var(--primaryColor);
}

.token_list li span {
	color: var(--accent-secondary-color);
	margin-left: 10px;
}

.token_detail_box {
	padding: 25px 15px;
	background-color: #ffffff;
	border-radius: 15px;
	/* box-shadow: 0px 0px 5px rgb(177 177 177 / 41%); */
	margin-bottom: 20px;
}

#chartdiv {
	margin-bottom: 30px;
}

.token_distribution {
	/* background-size: cover; */
	/* background-repeat: no-repeat; */
	/* min-height: 500px; */
	/* background-position: center center; */
	/* background: url(../images/hero-bg-gradiant-shape.png), var(--accent-secondary-color); */
	/* margin-top: 100px; */
	padding: 100px 0px;
	margin-bottom: 60px;
}

.buy-sell-bottom {
	position: relative;
	margin-top: -220px;
	z-index: 99;
}

.buy-sell-bottom .bg {
	/* box-shadow: rgba(0, 0, 0, 0.06) 0px 4px 40px 0px; */
	/* margin-right: -100px;
	margin-left: -100px; */
	padding-left: 50px;
	padding-right: 50px;
	padding-bottom: 50px;
	padding-top: 40px;
	/* background: rgb(255, 255, 255); */
	border-radius: 10px;
}

.buy-sell-bottom .bg .box-area-all .icon {
	background-color: var(--vtc-bg-common-bg1);
	height: 60px;
	width: 60px;
	text-align: center;
	line-height: 60px;
	position: absolute;
	right: 20px;
	top: -80px;
	border-radius: 50%;
	transition: 0.4s;
}

.buy-sell-bottom .bg .box-area-all .icon img {
	transition: 0.4s;
}

.buy-sell-bottom .bg .box-area-all:hover .icon img {
	filter: brightness(0) invert(1);
	transform: rotateY(180deg);
	transition: 0.4s;
}

.buy-sell-bottom .bg .box-area-all .single-box {
	background-color: #f3f3f3db;
	margin-top: 70px;
	text-align: center;
	padding: 14px 16px;
	border-radius: 10px;
	box-shadow: 0px 0px 5px rgba(218, 218, 218, 0.76);
	position: relative;
	z-index: 3;
	min-height: 100%;
}

.buy-sell-bottom .service1-main-images {
	position: relative;
	margin: 60px 50px 0px;
}

.buy-sell-bottom .service1-main-images .shape1 {
	position: absolute;
	top: 62px;
	left: -128px;
}

.buy-sell-bottom .service1-main-images .shape2 {
	position: absolute;
	top: 64px;
	right: -128px;
}

.buy-sell-bottom .service1-main-images .shape3 {
	position: absolute;
	bottom: 52px;
	left: -128px;
}

.buy-sell-bottom .service1-main-images .shape4 {
	position: absolute;
	bottom: 40%;
	right: -154px;
}

.single-box .stacking_heading {
	text-align: left;
	margin-bottom: 15px;
	color: var(--accent-secondary-color);
}

.daily_dist_sec {
	padding: 100px 0px;
	padding-bottom: 0px;
}

.single-feature-box {
	/* padding: 50px; */
	padding: 35px;
	border-radius: 20px;
	background-color: #e6f7fb;
	height: 100%;
}

.box3 {
	background-color: #dde6f7;
}

.box2 {
	background-color: #bbdcf8;

}

.single-feature-box h3 {
	font-size: 24px;
	margin-bottom: 10px;
	color: black;
}


.box3 h3,
.box2 h3 {
	font-size: 24px;
	max-width: 260px;
	line-height: 1.4;
}

.section_space {
	padding: 80px 0;
	/* margin-top: 100px; */
	margin-bottom: 0;
}

.participants_space {
	padding-top: 100px;
}

.feature {
	display: block;
	/* padding: 20px; */
	height: 100%;
}

.chain_heading {
	font-size: 36px !important;
}

/* .reward_part1 {
	background: #ffffff;
	border: 2px solid rgba(110, 25, 194, 0.2);
}

.reward_part2 {
	background: #ffffff;
	border: 2px solid rgba(43, 201, 180, 0.2);
}

.reward_part3 {
	background: #ffffff;
	border: 2px solid rgba(134, 107, 254, 0.2);
}

.reward_part4 {
	background: #ffffff;
	border: 2px solid rgba(160, 48, 31, 0.2);
} */

.reward_wka {
	padding-bottom: 50px;
	text-align: center;
	color: #000;
}

.main_rewards_card {
	background: #014E4E;
	box-shadow: 0px 20px 40px rgba(18, 24, 58, 0.1);
	padding: 35px;
	height: 100%;
	border-radius: 15px;
	position: relative;
}


.pool_steps_bg {
	background-color: #f9d67b;
	padding: 10px 15px;
	position: absolute;
	top: -15%;
	left: 50%;
	border-radius: 15px;
	transform: translateX(-50%);
	width: max-content;
}

.pool_steps_bg1 {
	background-color: #f9d67b;
	padding: 10px 15px;
	position: absolute;
	top: -15%;
	left: 50%;
	border-radius: 15px;
	transform: translateX(-50%);
	width: max-content;
}

.main_rewards_card .package_icon {
	width: 110px;
	height: 110px;
	margin-bottom: 30px;
}

.pool_steps {
	font-size: 20px;
	font-weight: 700 !important;
}

.reward_block {
	font-size: 18px;
	font-weight: 500 !important;
	color: #fff;
}

.total_steps {
	font-size: 22px;
	font-weight: 600;
}

.steps_para {
	font-size: 16px;
}

/* .sale_token {
	padding-left: 105px;
} */

.wka_point {
	font-size: 24px;
	/* font-weight: 600 !important; */
}

.token_day {
	font-size: 21px;
}

.blockchain_section {
	padding: 70px 0;
	margin-bottom: 0;
}

.slide-bg-1 {
	background: #bbdcf8;
	/* blue */
}

.slide-bg-2 {
	background: #dde6f7;
	/* purple-pink */
}

.slide-bg-3 {
	background: #e6f7fb;
	/* dark blue/gray */
}

.slide-contents h3 {
	font-size: 28px;
}

.slide-contents p {
	font-size: 18px;
	line-height: 1.6;
}

.pool_package {
	border: none !important;
	justify-content: center;
	gap: 30px;
	padding-bottom: 50px;
	overflow-x: scroll;
	flex-wrap: nowrap;
	scrollbar-width: none;
	padding-top: 10px;
}

.free_btn {
	/* position: relative; */
	font-family: var(--accent-font);
	display: inline-block;
	font-size: 16px;
	font-weight: 700;
	line-height: 1em;
	text-transform: capitalize;
	background: var(--accent-color) !important;
	color: var(--primary-color);
	border-radius: 10px !important;
	padding: 15px 30px;
	border: none !important;
	/* overflow: hidden; */
	transition: all 0.4s ease-in-out;
	z-index: 1;
	/* background: linear-gradient(108.17deg, #3FBEBE 1.94%, #99DEDE 50%, #3FBEBE 98.06%); */
	box-shadow: 0px 0px 6px #ffffff3b;
	white-space: nowrap;
	width: 170px;
}

.free_btn img {
	filter: brightness(0) saturate(100%) invert(0%) sepia(0%) saturate(0%) hue-rotate(0deg);
	transition: filter 0.3s ease;
}

.free_btn.active img {
	filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(0%) hue-rotate(0deg);
}

.disc-list {
	list-style-type: disc;
	padding-left: 1.5rem;
	color: #000;
	/* ensure bullets are visible */
}

.promoter_team {
	background: #E9F2E8;
}

.free_btn:hover {
	color: #000;
}

.pool_package .nav-link.active {
	background-color: #014e4e !important;
	color: #fff;
}

.faq_active {
	background-color: #f9d67b !important;
	color: #000 !important;
}

.main_rewards_card::after {
	content: '';
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	background: var(--accent-color);
	height: 0;
	width: 100%;
	transition: all 0.4s ease-in-out;
	z-index: -1;
	border-radius: 15px;
}

/* .mark_shape1 {
	position: absolute;
	bottom: -55px;
	right: -74px;
}

.mark_shape2 {
	position: absolute;
	bottom: -25px;
	left: -25px;
	z-index: -1;
} */



/* --------------- airdrop ----------------- */

#airdrop-popup {
	isolation: isolate;
	z-index: 999999 !important;
	background: rgb(0 112 101 / 72%);
	border-radius: 15px;
	padding: 40px 12px 16px;
	border: 2px solid var(--accent-secondary-color);
	position: fixed !important;
	bottom: 20px !important;
	left: 2.5% !important;
	/* transform: translateX(-50%); */
	backdrop-filter: blur(35px);
	width: 100%;
	max-width: 165px;
	box-shadow: 0 0 15px rgba(0, 112, 101, 0.651);
	display: block;
}

.close_btn {
	position: absolute;
	top: 0px;
	right: 5px;
	background: transparent;
	border: none;
	color: white;
	font-size: 30px;
	cursor: pointer;
	z-index: 1000000 !important;
	padding: 5px;
	width: max-content;
	font-weight: 600;
	margin-left: auto;
	margin-bottom: 20px;
}

.qr_image {
	border-radius: 5px;
	border: 1px solid var(--accent-color);
	outline: 2px solid var(--accent-color);
	outline-offset: 10px;
	margin-bottom: 15px;
}

.close_btn:hover {
	background: transparent;
	box-shadow: none;
	color: white;
}

.highlight {
	color: #a3ff12;
	font-weight: bold;
}

.tokenomics-title {
	font-size: 2.5rem;
	font-weight: bold;
	letter-spacing: 1px;
}

.bar {
	height: 60px;
	display: flex;
	margin-top: 10px;
}

.bar div {
	height: 100%;
}

.stats {
	margin-top: 40px;
}

.stats .token_number {
	font-size: 2rem;
	/* color: #845ef7; */
	font-weight: bold;
}

.token_bar1 {
	width: 7.5%;
	height: 40px;
	background-color: #014e4e;
	/* Base color */
}

.token_bar2 {
	width: 9.5%;
	height: 40px;
	background-color: #026161;
}

.token_bar3 {
	width: 10%;
	height: 40px;
	background-color: #037373;
}

.token_bar4 {
	width: 12%;
	height: 40px;
	background-color: #048686;
}

.token_bar5 {
	width: 16.33%;
	height: 40px;
	background-color: #059999;
}

.token_bar6 {
	width: 18%;
	height: 40px;
	background-color: #06acac;
}

.token_bar7 {
	width: 30%;
	height: 40px;
	background-color: #07bfbf;
}

.token_bar8 {
	width: 40%;
	height: 40px;
	background-color: #07bfbf;
}


.stats .label {
	font-size: 1rem;
	font-weight: bold;
	color: #eaeaea;
}

.stat_token1 {
	display: block;
}

.stat_token2 {
	display: none;
}

.distribution_card {
	background-color: #fff;
	border: none;
	box-shadow: 0px 5px 46px rgba(25, 64, 176, 0.14);
	padding: 55px 30px 110px;
	height: calc(100% - 30px);
	position: relative;
	overflow: hidden;
}

.distribution_icon {
	/* margin: 0; */
	position: absolute;
	/* right: -15px; */
	bottom: -15px;
	width: 121px;
	height: 121px;
	margin: 0;
	background: rgba(22, 163, 254, 0.15);
	border-radius: 50%;
	box-shadow: 0px 0px 0px 10px rgba(22, 163, 254, 0.06);
	text-align: center;
	line-height: 104px;
}

.contact_submit {
	position: static;
}

.distribution_icon img {
	max-width: 60px;
}

@media (min-width: 576px) {
	.distribution_icon {
		margin-bottom: 20px;
		margin-right: 20px;
	}
}

@media (min-width: 576px) {
	.distribution_icon_bg {
		right: -40px;
		bottom: -40px;
	}
}


.my-list li {
	list-style-type: disc;
	margin-left: 1rem;
	/* Adjust as needed */
}

.white_paper {
	margin-bottom: 40px;
}

.shadow_glow {
	position: relative;
	display: inline-block;
}

.white_img {
	border-radius: 16px;
	z-index: 99;
}

/* .shadow_glow::after {
	content: "";
	position: absolute;
	bottom: -70px;
	left: 50%;
	transform: translateX(-50%);
	width: 100%;
	height: 150px;
	background: radial-gradient(ellipse at center,
			rgba(88, 23, 170, 87%) 0%,
			rgba(179, 19, 180, 52%) 40%,
			transparent 100%);
	filter: blur(10px);
	z-index: 1;
	border-radius: 50%;
} */

.mark_icon {
	background-color: #014e4e;
	border-radius: 10px;
	padding: 10px;
}

.airdrop_item {
	color: #828283;
	font-weight: 500;
	margin-bottom: 20px;
}

/* .rewards_mark {
	border-radius: 16px;
} */

.pro_list {
	background-color: #fff;
	padding: 15px;
	border-radius: 15px;
	color: #014e4e;
	font-weight: 600 !important;
}

.white_paper {
	padding-bottom: 150px;
}

.marketing {
	height: 500px;
}

.prebg {
	background-image: url("../images/rewards/perbg2.webp");
	background-position: center center;
	background-repeat: no-repeat;
	background-size: 100% 100%;
}

.line_token {
	border-top: 1px solid #aaaaaa6b;
	margin: 10px 0;
}

.pool_token_icon {
	background: #f9d67b;
	border-radius: 50%;
	padding: 15px;
}

.text-color {
	color: #ffffffbf;
}

.share_token {
	line-height: 40px;
}

.page-header.blog1::after {
	background: url("../images/blog/blog1.webp") no-repeat;
	background-size: cover;
	background-position: 40% 20%;
}

.page-header.blog2::after {
	background: url("../images/blog/blog2.webp") no-repeat;
	background-size: cover;
	background-position: 40% 0%;
}

.page-header.blog3::after {
	background: url("../images/blog/blog3.webp") no-repeat;
	background-size: cover;
	background-position: 0% 100%;
}

.page-header.blog4::after {
	background: url("../images/blog/blog4.webp") no-repeat;
	background-size: cover;
	background-position: 40% 20%;
}

.page-header.blog5::after {
	background: url("../images/blog/blog5.webp") no-repeat;
	background-size: cover;
	background-position: 40% 20%;
}

.page-header.blog6::after {
	background: url("../images/blog/blog6.webp") no-repeat;
	background-size: cover;
	background-position: 40% 20%;
}


.marketing_icon {
	position: relative;
	height: 50px;
	width: 50px;
	display: flex;
	align-items: center;
	justify-content: center;
	border: 1px solid var(--accent-secondary-color);
	background-color: var(--accent-secondary-color);
	border-radius: 50%;
	margin-right: 10px;
}

.contract_table {
	border: 2px solid #dedee2;
	border-radius: 10px;
	overflow: hidden;
}

.contract_p {
	margin-bottom: 0px;
	color: rgb(255, 255, 255) !important;
}


.allowcation_card {
	/* background-color: #262626; */
	padding: 40px 50px 40px;
	color: var(--dark-divider-color);
	margin-bottom: 30px;
	border: 2px solid #fff;
	outline: 1px solid #262626;
	border-radius: 20px;
}

.allow_box_1 {
	background-color: #DAE2F8;
}

.allow_box_2 {
	background-color: #e6f7fb;
}

.allow_box_3 {
	background-color: #bbdcf8;
}

.allow_box_4 {
	background-color: #ffe6ff;
}


.contract_table .step-bb {
	border-bottom: 2px solid #dedee2;
}

.contract_table .step-bb:last-child {
	border-bottom: none;
}

.contract_bg {
	background-color: #014E4E;
}



.mics-color {
	width: 15px;
	height: 15px;
	margin-right: 10px;
}

.to-two {
	width: 60%;
}

.to-one {
	width: 20%;
}

.contract_a {
	font-weight: 700;
}

.contract_section {
	background: linear-gradient(360deg, rgba(255, 255, 255, 1) 0%, rgba(241, 248, 255, 1) 100%);
}

.social_btn .btn-default {
	width: 60%;
}

.Linktree_wrapper {
	padding: 40px;
	margin-block: 50px;
}

.logo_shape {
	width: 100px;
	height: 100px;
	background-color: var(--accent-secondary-color);
	border-radius: 50%;
	padding: 15px;
	margin-bottom: 20px;
	box-shadow: 4px 4px 4px rgba(0, 0, 0, 0.205);
}

.logo_shape img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.Linktree_wrapper {
	background-image: url("../images/landing-page/linkbg.svg");
	background-repeat: repeat-x;
	background-size: cover;
	padding: 130px 0;
	margin: 0px;
	background-attachment: fixed;
	background-position: 0%;
	/* background: #ffffff; */
}

.social_btn .btn-default {
	background-color: var(--accent-secondary-color) !important;
	color: white;
}

.social_btn .btn-default:hover {
	color: black;
}

.btn-default::after,
.btn-default::before {
	background-color: var(--accent-color) !important;
}

.header_bg {
	background: var(--accent-secondary-color) !important;
	margin-inline: 0px !important;
	max-width: 100% !important;
	width: 100% !important;
}

.step-bb p {
	color: #4d4c4c;
}

/****************** *****************/
/***      34. Responsive css      ***/
/************************************/

@media only screen and (max-width: 1820px) {

	.bg-section {
		width: calc(100% - 100px);
		margin-left: 50px;
		margin-right: 50px;
		max-width: 100%;
	}
}

@media only screen and (max-width: 1560px) {

	.bg-section {
		width: calc(100% - 30px);
		margin-left: 15px;
		margin-right: 15px;
		border-radius: 10px;
	}

	.intro-video.bg-section.dark-section::before {
		border-radius: 30px;
	}
}

@media only screen and (max-width:1440px) {

	.page-header-box h1 {
		font-size: 60px;
	}

	.vertical-line-sm-wrapper {
		overflow-x: auto;
		scroll-behavior: smooth;
		/* scrollbar-width: none; */
		/* Firefox */
		-ms-overflow-style: none;
		justify-content: start;
		padding-top: 40px;
	}


}

@media (max-width: 1399px) {
	.process-1 .process-items {
		-ms-grid-columns: auto auto auto;
		grid-template-columns: auto auto auto;
		gap: 15px;
		-webkit-box-pack: center !important;
		-ms-flex-pack: center !important;
		justify-content: center !important;
	}

	.process-1 .shape-4 {
		top: 24.5%;
	}

	.token_update_box p {
		width: 60%;
	}

	.token_update_box strong {
		padding-left: 30px;
	}

	.card-header1 .overlay-text {
		top: 32%;
	}

	.how_it_work_arrow img {
		width: 65px;
		height: 65px;
	}

	.how_it_work_arrow .work_arrow1 {
		left: 29.9%;
	}

	.how_it_work_arrow .work_arrow2 {
		left: 64%;
	}

	.rewards_mark {
		aspect-ratio: 1/ 1;
		object-fit: cover;
	}
}

@media (max-width:1250px) {
	.timeline {
		padding: 0px 100px;
	}

	.token_update_box p {
		width: 60%;
	}

	.token_update_box strong {
		padding-left: 20px;
	}


}

@media only screen and (max-width:1200px) {
	.main-menu ul li a {
		padding: 10px !important;
	}

	.header-btn .btn-highlighted {
		padding: 18px 60px;
		font-size: 15px;
	}

	.step_des {
		font-size: 25px;
	}

	.country_list1 .country_pill:nth-child(1) {
		transform: rotate(346deg) translate(0, 9px);
	}

	.book-appointment-box {
		padding: 30px;
	}

	.book-appointment {
		margin-top: 0px;
	}


	.page-header-box h1 {
		font-size: 40px;
	}

	.main-footer-box {
		gap: 50px 40px
	}

	.footer-links-box {
		width: 54%;
		gap: 15px;
	}

	.download_store {
		width: 130px;
	}

	.timeline {
		width: 1000px;
	}

	.timeline_box {
		overflow-x: auto;
		position: relative;
		height: 350px;
		padding-top: 20px;
		padding-inline: 20px;
	}

	.timeline {
		margin-top: 0px;
		/* height: 100%; */
	}

	.timeline {
		padding: 0px 100px;
	}

	.process-1 .process-items .single-process-item {
		width: 350px;
	}

	.content3 {
		padding: 25px;
	}

	/* .section-title h2.token_heading {
		font-size: 25px;
	} */

	.token_update_box p {
		width: 60%;
	}

	.share_token {
		font-size: 28px;
	}

	.section_space {
		padding: 60px 0px;
	}

}

@media only screen and (max-width:1199px) {
	.process-2 .signle-process-item .shape-2 {
		display: none;
	}

	.chart-wrapper svg {
		width: 100% !important;
		height: auto !important;
	}

	.card-header1 .overlay-text {
		top: 50%;
	}

	.card-custom1:hover {
		transform: none;
	}

	.our-programs .swiper {
		padding-bottom: 0;
	}

	.stat_card_title {
		font-size: 20px;
	}

	.stat_card_subtext {
		font-size: 16px;
	}

	.how_it_work_arrow img {
		width: 45px;
		height: 45px;
	}

	.how_it_work_arrow .work_arrow1 {
		left: 30.5%;
	}

	.how_it_work_arrow .work_arrow2 {
		left: 64.9%;
	}


	.buy-sell-bottom .bg {
		margin-right: 0px;
		margin-left: 0px;
	}

	.recharts-wrapper {
		left: -72px;
		width: 550px !important;
	}

	.buy-sell-bottom .service1-main-images .shape1,
	.buy-sell-bottom .service1-main-images .shape3,
	.buy-sell-bottom .service1-main-images .shape4 {
		display: none;
	}

	.token_dis_mar {
		margin-top: -140px;
	}

	.blog_title {
		font-size: 48px !important;
	}

	.rewards_mark {
		aspect-ratio: 1/1.1;
		object-fit: cover;
	}

	.faq-image-1 img {
		aspect-ratio: 1/1.5;
		object-fit: cover;
	}

	.allowcation_card {
		padding: 35px;
	}
}

@media only screen and (max-width:1024px) {
	.step_des {
		font-size: 24px;
		line-height: 35px;
	}

	.section-title h1 {
		font-size: 52px;
	}

	.hero_heading {
		font-size: 45px !important;
	}

	.about-us-body ul li::before {
		top: 2px;
	}

	.page-header-box h1 {
		font-size: 35px;
	}

	.why-choose-item {
		margin-bottom: 40px;
		padding-bottom: 40px;
	}

	.why-choose-image {
		margin: 0px 40px;
	}

	.book-appointment-box {
		padding: 30px;
	}

	.book-appointment {
		margin-top: 0px;
	}

	.expertise-box {
		padding: 30px;
	}

	.timeline {
		padding: 0px 100px;
	}

	.section-title h2 {
		font-size: 28px;
	}

	.about-us-footer {
		margin-top: 0;
	}

	.feature_box {
		padding: 20px !important;
	}

	.chart-content-inner .title {
		font-size: 35px;
	}

	.feature_box,
	.feature_box::before {
		border-radius: 20px !important;
	}

	.content3 h6,
	.content3 p b {
		font-size: 18px;
	}

	.content3 p {
		font-size: 14px;
	}

	/* .pool {
		min-height: auto;
	} */

	.process-1 .process-items .single-process-item {
		width: 350px;
	}

	.chart-wrapper {
		padding: 30px;
	}

	.token_update_box p {
		font-size: 14px;
	}

	.token_heading {
		color: var(--accent-secondary-color);
	}

	.support_wallet_img {
		width: 130px;
		height: 130px;
	}

	.about_crypto {
		padding: 70px 0;
	}

	.stat_card_title {
		margin-block: 10px;
	}

	.token_details {
		padding-bottom: 100px !important;
	}

	.buy-sell-bottom .service1-main-images .shape3,
	.buy-sell-bottom .service1-main-images .shape1,
	.buy-sell-bottom .service1-main-images .shape4 {
		display: none;
	}

	.buy-sell-bottom .service1-main-images {
		margin: 0PX;
	}

	.buy-sell-bottom .bg {
		margin-right: -50px;
		margin-left: -50px;
	}

	.support .swiper {
		height: 150px !important;
	}

	.recharts-wrapper {
		left: -72px;
		width: 550px !important;
	}

	.allocation_sec {
		padding: 70px 0;
	}

	.timeline-container {
		display: none;
	}

	.token_distribution {
		padding: 70px 0;
	}

	.shadow_glow::after {
		left: 50%;
	}

	.daily_dist_sec {
		padding: 80px 0;
	}

	.pool_steps {
		font-size: 20px;
	}

	/* .free {
		aspect-ratio: 1/1.6;
	} */
	.line_token {
		margin: 15px 0;
	}
}


@media only screen and (max-width: 991px) {

	.btn-default {
		padding: 15px 20px;
	}

	.stat_card_img {
		width: 100%;
	}

	.readmore-btn {
		padding-right: 26px;
	}

	.readmore-btn:after {
		width: 16px;
		height: 12px;
	}

	header.main-header {
		margin: 0;
	}

	.navbar {
		padding: 15px 0;
	}

	.slicknav_nav li,
	.slicknav_nav ul {
		display: block;
	}

	.recharts-wrapper {
		left: 0px;
		width: 550px !important;
	}

	.responsive-menu,
	.navbar-toggle {
		display: block;
	}

	/* .header-btn{
		display: none;
	} */

	.bg-section {
		width: 100%;
		margin-left: 0px;
		margin-right: 0px;
	}

	.bg-section.dark-section::before {
		border-radius: 0;
	}

	.section-row {
		margin-bottom: 40px;
	}

	.section-content-btn .section-btn {
		margin-top: 20px;
	}

	.section-title {
		margin-bottom: 30px;
	}

	.section-title h3 {
		background-size: 18px auto;
		padding-left: 25px;
	}

	.section-title h1 {
		font-size: 52px;
	}

	.hero_heading {
		font-size: 40px;
	}

	.section-title h2 {
		font-size: 28px;
	}

	.section-title h2.token_heading {
		font-size: 25px;
	}

	.section-title p {
		margin-top: 10px;
	}

	.section-title-content {
		margin-top: 10px;
	}

	.section-btn {
		text-align: left;
		margin-top: 10px;
	}

	.hero {
		padding: 130px 0 0;
		margin: 0;
	}

	.hero.hero-bg-image {
		padding: 180px 0 60px;
		border-radius: 0px;
	}

	.hero.hero-bg-image.hero-slider-layout .hero-slide {
		padding: 200px 0 120px;
	}

	.hero.hero-bg-image.hero-slider-layout .hero-pagination {
		bottom: 30px;
	}

	.hero-content {
		margin-bottom: 30px;
	}

	.hero-content-footer {
		margin-top: 30px;
	}

	.hero-image {
		width: 100%;
		margin: 0 auto;
		max-width: 55%;
	}

	.hero-experience-box {
		max-width: 170px;
		border-radius: 10px;
		gap: 10px;
		padding: 10px;
	}

	.hero-experience-box h2 {
		font-size: 32px;
		width: calc(32% - 5px);
	}

	/* .hero-experience-box p{
		width: calc(68% - 5px);
	} */

	.about-us,
	.ecosysystem {
		padding: 50px 0;
		margin-top: 50px;
	}

	.about-us-images {
		width: 100%;
		max-width: 80%;
		margin: 0 auto 30px;
	}

	.about-us-img-1,
	.about-us-img-2,
	.about-us-img-1 figure,
	.about-us-img-1 img {
		border-radius: 20px;
	}

	.download_bg {
		height: auto;
		padding: 35px !important;
		padding-bottom: 0px !important;
	}

	.app_btn {
		height: 60px;
	}

	.about-us-img-2 figure {
		border-radius: 16px;
	}

	.about-us-img-2 img {
		aspect-ratio: 1 / 1.25;
		border-radius: 16px;
	}

	.about-us-body {
		padding: 30px 20px;
	}

	.about-us-body ul {
		gap: 20px 30px;
	}

	.about-us-body ul li {
		padding-left: 25px;
	}

	.about-us-body ul li::before {
		font-size: 18px;
	}

	.about-us-footer {
		margin-top: 30px;
	}

	.our-services {
		padding: 50px 0;
	}

	.service-item,
	.page-cta-box {
		padding: 30px;
	}

	.service-item .icon-box {
		height: 50px;
		width: 50px;
		margin-bottom: 30px;
	}

	.service-item .icon-box img {
		max-width: 26px;
	}

	.service-item-content {
		margin-bottom: 20px;
	}

	.service-item-content h3 {
		margin-bottom: 10px;
	}

	.page-cta-box-info {
		margin-bottom: 20px;
	}

	.page-cta-box-info h2 {
		font-size: 26px;
	}

	.section-footer-text {
		margin-top: 10px;
	}

	.what-we-do {
		padding: 50px 0;
	}

	.what-we-do-image-1 {
		margin-bottom: 30px;
	}

	.what-we-do-image-1 img {
		aspect-ratio: 1 / 0.8;
		object-fit: contain;
	}

	.what-we-do-content .section-row {
		margin-bottom: 30px;
	}

	.what-we-list-item .icon-box {
		height: 50px;
		width: 50px;
		margin-right: 10px;
	}

	.what-we-list-item .icon-box img {
		max-width: 26px;
	}

	.what-we-do-list-content {
		width: calc(100% - 60px);
	}

	/* .what-we-do-list-content h3 {
		margin-bottom: 5px;
	} */

	.why-choose-us {
		padding: 50px 0 0;
	}

	.why-choose-item {
		margin-bottom: 30px;
		padding-bottom: 30px;
	}

	.why-choose-item .icon-box {
		height: 50px;
		width: 50px;
		margin-bottom: 20px;
	}

	/* .process-1 .process-items {
		-ms-grid-columns: auto;
			grid-template-columns: auto;
	} */

	.why-choose-item .icon-box img {
		max-width: 26px;
	}

	.why-choose-image {
		width: 100%;
		max-width: 55%;
		margin: 30px auto 0;
	}

	.our-expertise {
		padding: 50px 0;
	}

	.blog_title {
		font-size: 42px !important;
	}

	.expertise-image {
		margin: 0 0 30px 0;
	}

	.timeline {
		padding: 0px 100px;
	}

	/* .expertise-image img{
		aspect-ratio: 1 / 0.62;
	} */

	.expertise-box {
		padding: 30px;
	}

	.expertise-box-content {
		margin-bottom: 20px;
	}

	.intro-video.bg-section.dark-section::before {
		border-radius: 0;
	}

	.intro-video.bg-section.dark-section {
		padding: 100px 0 50px;
	}

	.intro-video-circle a figure img {
		max-width: 140px;
	}

	.into-video-play-icon {
		width: 60px;
		height: 60px;
	}

	.into-video-play-icon i {
		font-size: 24px;
	}

	.intro-video-counter-list {
		gap: 25px 20px;
		margin-top: 100px;
		padding-top: 30px;
	}

	.process-1 .process-items .single-process-item {
		width: 300px;
	}

	.intro-video-counter-item {
		width: calc(20% - 16px);
	}

	.intro-video-counter-item h2 {
		font-size: 36px;
	}

	.our-programs {
		padding: 50px 0 20px;
	}

	.program-image img {
		aspect-ratio: 1 / 1.10;
	}

	/* .program-body {
		bottom: 30px;
	} */

	.how-it-work {
		padding: 50px 0 150px;
	}

	.how-work-step-item {
		width: calc(50% - 15px);
	}

	.how-work-step-item .icon-box {
		height: 80px;
		width: 80px;
		margin-bottom: 20px;
	}

	.how-work-step-item .icon-box img {
		max-width: 36px;
	}

	.how-work-no {
		height: 25px;
		width: 25px;
	}

	.how-work-no h3 {
		font-size: 14px;
	}

	.book-appointment {
		margin-top: 0px;
		padding-bottom: 30px;
	}

	.book-appointment-box {
		padding: 30px;
	}

	.book-appointment-content,
	.book-appointment-form {
		width: 100%;
	}

	.book-appointment-image img {
		aspect-ratio: 1 / 0.48;
	}

	.book-appointment-form .form-control {
		padding: 14px 15px;
	}

	.book-appointment-form .form-control.form-select {
		padding: 14px 35px 14px 15px;
	}

	.our-faqs {
		padding: 50px 0;
	}

	.faq-images {
		width: 100%;
		max-width: 90%;
		background-size: 45px auto;
		background-position: bottom 108px left 118px;
		/* padding: 0 180px 160px 0; */
		margin: 0 auto 30px;
	}

	.faq-image-1::before {
		top: 50px;
		right: -105px;
		height: 70px;
		width: 70px;
	}

	.faq-image-1 figure,
	.faq-image-1 img {
		border-radius: 20px;
	}

	.faq-image-1 img,
	.faq-image-2 img {
		aspect-ratio: 1 / 0.81;
	}

	.faq-image-2 {
		max-width: 385px;
		border: 4px solid var(--white-color);
		border-radius: 20px;
	}

	.faq-image-2 figure,
	.faq-image-2 img {
		border-radius: 14px;
	}

	.faq-accordion .accordion-header .accordion-button {
		padding: 13px 50px 13px 15px;
		margin-bottom: 10px;
	}

	.faq-accordion .accordion-item .accordion-button::after,
	.faq-accordion .accordion-item .accordion-button.collapsed::after {
		font-size: 14px;
		width: 24px;
		height: 24px;
	}

	.faq-accordion .accordion-item .accordion-body {
		padding: 15px;
	}

	.our-testimonial {
		padding: 50px 0;
	}

	.testimonial-content {
		margin-bottom: 30px;
	}

	.testimonial-item {
		padding: 20px;
	}

	.testimonial-item-content {
		margin-bottom: 20px;
	}

	.testimonial-author-content h3 {
		font-size: 18px;
	}

	.testimonial-images {
		width: 100%;
		max-width: 80%;
		margin: 0 auto;
	}

	.testimonial-img-1 img {
		aspect-ratio: 1 / 1.3;
	}

	.testimonial-img-1,
	.testimonial-img-2,
	.testimonial-img-3 {
		border-radius: 20px;
	}

	.testimonial-img-2 figure,
	.testimonial-img-3 figure {
		border-radius: 14px;
	}

	.testimonial-img-2 {
		max-width: 220px;
	}

	.testimonial-img-3 {
		max-width: 330px;
	}

	.testimonial-img-2::before {
		height: 95px;
		width: 70px;
	}

	.hero-content-footer.client-review-box {
		bottom: 30px;
		max-width: 180px;
		padding: 15px;
	}

	.hero-content-footer.client-review-box .trusted-client-review p i {
		margin: 0 2px;
	}

	.our-blog {
		padding: 50px 0 20px;
	}

	.post-featured-image {
		margin-bottom: 15px;
	}

	.post-item-content {
		margin-bottom: 15px;
	}

	.main-footer {
		padding: 40px 0 0 0;
		margin-bottom: 0;
	}

	.footer-logo,
	.about-footer-content {
		margin-bottom: 20px;
	}

	.footer-contact-list {
		margin-bottom: 30px;
	}

	.footer-contact-list ul {
		gap: 20px;
	}

	.footer-contact-list ul li {
		font-size: 18px;
		padding: 9px 15px;
	}

	.footer-menu ul {
		gap: 20px 30px;
	}

	.footer-menu ul li {
		font-size: 18px;
	}

	.footer-links-box {
		gap: 30px 60px;
	}

	.footer-links h3 {
		margin-bottom: 25px;
	}

	.footer-links ul li {
		margin-bottom: 10px;
	}

	.footer-copyright {
		padding: 30px 0;
		margin-top: 30px;
	}

	.page-header {
		padding: 160px 0 100px;
		margin-top: 0px;
	}

	.page-header-box h1 {
		font-size: 30px;
		margin-bottom: 5px;
	}

	.our-approach {
		padding: 50px 0 25px 0;

	}

	.our-approach-image {
		margin-right: 0;
		margin-bottom: 30px;
	}

	.our-approach-image figure,
	.our-approach-image img {
		border-radius: 20px;
	}

	.our-approach-image img {
		aspect-ratio: 1 / 0.8;
		object-fit: contain;
	}

	.our-approach-body {
		margin-bottom: 30px;
	}

	.our-approach-body ul li {
		padding-left: 25px;
	}

	.our-approach-body ul li::before {
		font-size: 18px;
	}

	.our-approach-footer {
		margin-left: 0;
	}

	.mission-vision-item {
		padding: 20px;
	}

	.mission-vision-image figure,
	.mission-vision-image img {
		height: auto;
	}

	.how-it-work.about-how-it-work {
		padding: 50px 0;
	}

	.how-work-counter-list {
		margin-top: 50px;
		padding-top: 50px;
		gap: 20px;
	}

	.how-work-counter-item {
		width: calc(20% - 16px);
	}

	.how-work-counter-item::before {
		right: -10px;
	}

	.how-work-counter-item h2 {
		font-size: 36px;
	}

	.expert-coaching {
		padding: 50px 0;
	}

	.expert-coaching-image {
		max-width: 80%;
		margin: 0 auto;
		margin-bottom: 30px;
	}

	.expert-coaching-body {
		margin-bottom: 30px;
		padding-bottom: 30px;
	}

	.expert-coaching-body-item h3 {
		padding-left: 30px;
	}

	.expert-coaching-body-item h3:before {
		width: 20px;
		height: 20px;
	}

	.expert-coaching-list {
		margin-bottom: 30px;
	}

	.expert-coaching-list ul li {
		padding-left: 25px;
	}

	.expert-coaching-list ul li::before {
		font-size: 18px;
	}

	.our-health {
		padding: 50px 0;
	}

	.our-health-content {
		margin-bottom: 30px;
	}

	.our-health-image {
		max-width: 75%;
		margin: 0 auto;
	}

	.our-health-img-1 figure,
	.our-health-img-2 figure,
	.our-health-img-3 figure,
	.our-health-img-1 img,
	.our-health-img-2 img,
	.our-health-img-3 img {
		border-radius: 20px;
	}

	.contact-us-circle img {
		max-width: 134px;
	}

	.our-journey {
		padding: 50px 0 20px;
	}

	.our-journey-item {
		padding: 20px;
		border-radius: 20px;
	}

	.our-journey-item .icon-box {
		margin-bottom: 20px;
	}

	.our-team {
		padding: 50px 0 20px;
	}

	.team-image img {
		aspect-ratio: 1 / 1.03;
	}

	.team-content {
		right: 20px;
		bottom: 20px;
		left: 20px;
	}

	.page-services {
		padding: 50px 0 20px;
	}

	.page-service-single {
		padding: 50px 0;
	}

	.page-single-sidebar {
		position: initial;
		margin-right: 0;
		margin-bottom: 30px;
	}

	.page-catagery-list {
		padding: 20px;
		border-radius: 20px;
		margin-bottom: 30px;
	}

	.page-catagery-list h3 {
		margin-bottom: 20px;
	}

	.page-catagery-list ul li a {
		border-radius: 10px;
		padding: 12px 40px 12px 15px;
	}

	.page-catagery-list ul li a::before {
		right: 15px;
	}

	.page-cta-box.sidebar-cta-box {
		padding: 60px 20px;
	}

	.service-featured-image {
		margin-bottom: 30px;
	}

	.service-featured-image figure {
		border-radius: 20px;
	}

	.service-featured-image img {
		aspect-ratio: 1 / 0.48;
		border-radius: 20px;
	}

	.service-entry {
		margin-bottom: 40px;
	}

	.service-entry p {
		margin-bottom: 15px;
	}

	.service-entry h2 {
		font-size: 36px;
		margin-bottom: 15px;
	}

	.service-entry ul li {
		padding-left: 25px;
		margin-bottom: 10px;
	}

	.service-entry ul li::before {
		font-size: 18px;
	}

	.service-solutions-box,
	.service-personalized-box,
	.service-entry-image-content {
		margin-top: 40px;
	}

	.what-we-do-list.service-solutions-list {
		gap: 30px 20px;
		margin-top: 30px;
	}

	.what-we-do-list.service-solutions-list .what-we-list-item {
		width: calc(50% - 10px);
	}

	.service-personalized-image-conetnt {
		gap: 20px;
		margin-top: 30px;
	}

	.service-personalized-conetnt {
		width: calc(62% - 10px);
	}

	.service-personalized-conetnt ul {
		margin-bottom: 20px;
		padding-bottom: 20px;
	}

	.service-personalized-image {
		width: calc(38% - 10px);
	}

	.service-personalized-image figure,
	.service-personalized-image img {
		border-radius: 20px;
	}

	.service-entry-image figure,
	.service-entry-image img {
		border-radius: 20px;
	}

	.service-entry-content-item {
		margin-bottom: 20px;
		padding-bottom: 20px;
	}

	.service-entry-content-item h3 {
		margin-bottom: 10px;
	}

	.page-blog {
		padding: 50px 0;
	}

	.page-blog .post-item {
		height: calc(100% - 30px);
		margin-bottom: 30px;
	}

	.page-pagination {
		margin-top: 10px;
	}

	.page-single-post {
		padding: 50px 0;
	}

	.post-image {
		margin-bottom: 20px;
	}

	.post-image figure,
	.post-image img {
		border-radius: 20px;
	}

	.post-entry h1,
	.post-entry h2,
	.post-entry h3,
	.post-entry h4,
	.post-entry h5,
	.post-entry h6 {
		margin: 0 0 0.417em;
	}

	.post-entry h2 {
		font-size: 36px;
	}

	.post-entry p {
		margin-bottom: 15px;
	}

	.post-entry ol li,
	.post-entry ul li {
		font-size: 16px;
		margin-bottom: 10px;
	}

	.post-entry blockquote {
		background-position: 20px 20px;
		background-size: 40px;
		padding: 20px 20px 20px 70px;
		margin-bottom: 20px;
	}

	.post-entry blockquote p {
		font-size: 18px;
	}

	.post-tags {
		margin-bottom: 20px;
	}

	.post-tags .tag-links a {
		padding: 12px 15px;
	}

	.post-social-sharing ul {
		text-align: left;
	}

	.page-programs {
		padding: 50px 0 20px;
	}

	.page-program-single {
		padding: 50px 0;
	}

	.program-detail-box {
		padding: 20px;
		border-radius: 20px;
		margin-bottom: 30px;
	}

	.program-detail-item {
		padding: 15px;
		margin-bottom: 15px;
		border-radius: 10px;
	}

	.program-featured-image {
		margin-bottom: 30px;
	}

	.program-featured-image figure {
		border-radius: 20px;
	}

	.program-featured-image img {
		aspect-ratio: 1 / 0.47;
		border-radius: 20px;
	}

	.program-entry {
		margin-bottom: 30px;
	}

	.program-entry p {
		margin-bottom: 15px;
	}

	.program-entry h2 {
		font-size: 36px;
		margin-bottom: 15px;
	}

	.program-entry ul {
		gap: 15px 30px;
		margin-bottom: 15px;
	}

	.program-entry ul li {
		padding-left: 25px;
	}

	.program-entry ul li::before {
		font-size: 18px;
	}

	.program-entry-image-video {
		margin-top: 30px;
	}

	.program-entry-image figure {
		border-radius: 20px;
	}

	.program-entry-image img {
		aspect-ratio: 1 / 0.4;
		border-radius: 20px;
	}

	.video-play-button a {
		width: 65px;
		height: 65px;
	}

	.video-play-button a i {
		font-size: 24px;
		margin-left: 2px;
	}

	.program-entry-practices {
		margin-top: 40px;
	}

	.program-image-content-box {
		margin-top: 30px;
	}

	.what-we-do-list.program-content-list .what-we-list-item {
		margin-bottom: 20px;
		padding-bottom: 20px;
	}

	.page-team {
		padding: 50px 0 20px;
	}

	.page-team-single {
		padding: 50px 0;
	}

	.team-sidebar-box {
		padding: 20px;
	}

	.team-single-sidebar {
		position: static;
		margin-right: 0;
		margin-bottom: 30px;
	}

	.team-sidebar-image img {
		aspect-ratio: 1 / 0.8;
	}

	.team-sidebar-body-content {
		margin-bottom: 25px;
	}

	.team-sidebar-body-content h3 {
		margin-bottom: 15px;
		padding-bottom: 15px;
	}

	.team-sidebar-body ul li {
		margin-bottom: 15px;
		padding-bottom: 15px;
	}

	.team-member-info,
	.team-skills-box,
	.team-awards-box {
		margin-bottom: 30px;
	}

	.team-member-info ul li {
		padding-left: 25px;
		margin-bottom: 10px;
	}

	.team-member-info ul li::before {
		font-size: 18px;
	}

	.team-skills-item .circle {
		margin-bottom: 10px;
	}

	.team-skills-item .circle canvas {
		aspect-ratio: auto 120 / 120 !important;
		height: 120px !important;
		width: 120px !important;
	}

	.circle .progress_value {
		font-size: 32px;
		width: 80px;
		height: 80px;
	}

	.team-awards-list ul li {
		padding: 15px;
		margin-bottom: 20px;
	}

	.member-contact-form.contact-form {
		margin-bottom: 0;
	}

	.page-testimonials {
		padding: 50px 0;
	}

	/* .page-testimonials .testimonial-boxes .testimonial-item{
		width: calc(50% - 15px);
	} */

	.page-gallery {
		padding: 50px 0 20px;
	}

	.page-video-gallery {
		padding: 50px 0 20px;
	}

	.page-faqs {
		padding: 50px 0;
	}

	.page-faqs-catagery .page-faq-accordion {
		margin-bottom: 50px;
	}

	.page-contact-us {
		padding: 50px 0 25px;
	}

	.contact-now-circle img {
		max-width: 114px;
	}

	.contact-form {
		margin-right: 0;
		margin-bottom: 30px;
	}

	.contact-form .form-control {
		padding: 12px 15px;
	}

	.contact-us-content {
		border-radius: 20px;
	}

	.contact-info-list {
		padding: 30px;
	}

	.contact-info-item {
		padding: 20px 20px 20px 0;
	}

	.contact-info-item:nth-of-type(2n + 2) {
		padding: 20px 0 20px 20px;
	}

	.contact-info-item:nth-last-child(-n + 2) {
		padding-bottom: 0;
	}

	.contact-info-item:nth-child(-n + 2) {
		padding-top: 0;
	}

	.contact-social-list {
		padding: 20px 30px;
	}

	.google-map {
		padding: 25px 0 50px;
	}

	.google-map-iframe,
	.google-map-iframe iframe {
		height: 400px;
		border-radius: 20px;
	}

	.page-book-appointment {
		padding: 50px 0;
	}

	.error-page {
		padding: 50px 0;
	}

	.error-page-image {
		margin-bottom: 20px;
	}

	.error-page-image img {
		max-width: 60%;
	}

	.error-page-content-body p,
	.error-page-content .section-title {
		margin-bottom: 15px;
	}

	.step_des {
		font-size: 20px;
	}

	.step_des {
		font-size: 18px;
		line-height: 35px;
	}

	.reward_main {
		padding: 0px;
	}

	.stat_card_title {
		margin-block: 20px;
	}

	.support_heading {
		margin-bottom: 30px !important;
	}

	/* .timeline-container {

		display: none;
	} */

	.how_it_work_arrow img {
		width: 35px;
		height: 35px;
	}

	.how_it_work_arrow .work_arrow1 {
		left: 30.9%;
	}

	.how_it_work_arrow .work_arrow2 {
		left: 65.5%;
	}

	.buy-sell-bottom .bg .box-area-all .single-box {
		margin-top: 35px;
	}

	.participants_space {
		padding-top: 80px;
	}

	.sale_token {
		padding-left: 90px;
	}

	.shadow_glow::after {
		left: 50%;
	}

	/* .free {
		aspect-ratio: 0;
	} */
	.token_dis_mar {
		margin-top: -100px;
	}

	.buy-sell-bottom .bg .box-area-all .single-box {
		min-height: 285px;
	}

	.prebg {
		background-image: none;
		background: #014e4e;
	}
}

@media only screen and (max-width: 850px) {
	.process-1 .process-items {
		grid-template-columns: auto auto;
	}

	.app_btn {
		height: 60px;
		margin-top: 15px;
	}

	.how_it_work_arrow .work_arrow1 {
		left: 30.4%;
	}

	.how_it_work_arrow .work_arrow2 {
		left: 65%;
	}

	.daily_dist_sec {
		padding: 70px 0;
	}

	.pool_package {
		scrollbar-width: auto;
		padding-bottom: 20px;
		margin-bottom: 20px;
	}

	.pool_package::-webkit-scrollbar {
		height: 10px;
	}

	.heading-right-image {
		width: 40% !important;
	}

	.allowcation_card span {
		line-height: 24px;
	}

	.allowcation_card {
		padding: 30px;
	}
}

@media screen and (max-width: 768px) {
	.country_pill {
		padding: 6px 10px;
		font-size: 14px;
	}

	.country_pill img {
		width: 32px;
		height: 32px;
		margin-right: 8px !important;
	}

	.footer-links-box {
		gap: 30px 30px;
	}

	.token_update_box p {
		font-size: 16px;
	}

	.footer-about {
		width: 70%;
	}

	.footer-links-box {
		width: 100%;
	}

	.support_wallet_img {
		width: 120px;
		height: 120px;
	}

	/* .pool {
		height: 240px;
	} */

	.support_heading {
		margin-bottom: 10px !important;
	}

	.support .swiper {
		height: 170px !important;
	}

	.tokenomics {
		padding: 40px 0;
	}

	.buy-sell-bottom .bg {
		margin-left: 0px;
		margin-right: 0px;
	}

	.single-feature-box {
		padding: 25px;
	}

	.buy-sell-bottom .service1-main-images .shape3,
	.buy-sell-bottom .service1-main-images .shape1,
	.buy-sell-bottom .service1-main-images .shape4 {
		display: none;
	}

	.rewards_mark {
		aspect-ratio: none;
	}

	/* .buy-sell-bottom .bg .box-area-all .single-box {
		max-height: 255px;
	} */

	.buy-sell-bottom .bg {
		padding: 50px 0;
	}

	.header_logo {
		width: 150px !important;
	}

	.chain_heading {
		font-size: 32px !important;
	}

	.participants_space {
		padding-top: 60px;
	}

	.stat_token1 {
		display: none;
	}

	.stat_token2 {
		display: block;
	}

	.allocation_sec {
		padding: 50px 0;
	}

	.logo {
		width: 160px;
	}

	.contact_faq {
		margin-top: 25px;
		margin-bottom: 0;
	}

	.expert-coaching-body {
		margin-bottom: 15px;
		padding-bottom: 15px;
	}

	.main-footer-box {
		gap: 20px 40px;
	}

	.token_distribution {
		padding-top: 50px;
	}

	.dailystaking {
		height: 375px !important;
	}

	.buy-sell-bottom .service1-main-images {
		height: 315px;
	}

	.piechart {
		height: 375px !important;
	}

	.our-testimonial {
		margin-bottom: 20px !important;
	}

	.token_piechart {
		height: 350px !important;
	}

	.section_space {
		padding: 60px 0;
	}

	.shadow_glow::after {
		width: 110%;
		left: 50%;
	}

	.support {
		padding-block: 50px;
	}

	.white_paper {
		margin-top: 0 !important;
	}

	.pool_package {
		padding-bottom: 20;
	}

	.mark_shape1 {
		right: -55px;
	}

	.white_paper {
		padding-bottom: 100px;
	}

	.token_dis_mar {
		margin-top: 20px;
	}
}

@media only screen and (max-width: 767px) {
	.shadow_glow::after {
		width: 100%;
		left: 50%;
	}

	.section-row {
		margin-bottom: 30px;
	}

	.footer-about,
	.footer-links-box {
		width: 100%;
	}

	.section-title h1 {
		font-size: 28px;
	}

	.hero_heading {
		font-size: 40px !important;
	}

	.section-title h2 {
		font-size: 26px;
	}

	.hero-content-body {
		gap: 20px;
	}

	.contact-now-box-content h3 {
		font-size: 18px;
	}

	.hero-image {
		max-width: 100%;
	}

	.hero-experience-box {
		max-width: 155px;
	}

	.hero-experience-box h2 {
		font-size: 24px;
	}

	.process-1 .process-items {
		-ms-grid-columns: auto;
		grid-template-columns: auto;
	}

	.process-1 .process-items .single-process-item p br {
		display: none;
	}

	.about-us-images {
		max-width: 100%;
		padding: 10px 135px 50px 15px;
	}

	.about-us-img-2 {
		top: 10px;
		right: 15px;
		max-width: 160px;
	}

	.about-us-img-2::before {
		right: 10px;
		height: 70px;
		width: 55px;
	}

	.about-us-body {
		padding: 15px;
	}

	.allowcation_card {
		margin-bottom: 22px;
	}

	/* .service1-main-images {
		display: none;
	} */

	.buy-sell-bottom {
		margin-top: -160px;
	}

	.buy-sell-bottom .bg .box-area-all .single-box {
		margin-top: 20px;
	}

	.about-us-body ul {
		gap: 10px;
	}

	.about-us-body ul li {
		width: 100%;
	}

	.about-us-body ul li::before {
		font-size: 16px;
	}

	.about-author-box .author-info h3 {
		font-size: 18px;
	}

	.service-item {
		padding: 20px;
	}

	.service-item .icon-box {
		margin-bottom: 20px;
	}

	.app_btn {
		height: 50px;
	}

	.service-item-content h3 {
		font-size: 18px;
	}

	.page-cta-box {
		padding: 40px 20px;
	}

	.page-cta-box-info h3 {
		font-size: 18px;
	}

	.page-cta-box-info h2 {
		font-size: 24px;
	}

	.what-we-do-image-1 img {
		/* aspect-ratio: 1 / 0.95; */
		width: 100%;
		height: 100%;
		aspect-ratio: auto;
	}

	.buy-sell-bottom .bg {
		margin-left: 0px;
		margin-right: 0px;
	}

	.what-we-do-list {
		margin-bottom: 30px;
	}

	.what-we-do-list-content h3 {
		font-size: 16px;
	}

	.why-choose-item,
	.why-choose-item:last-child {
		border-bottom: 1px solid var(--dark-divider-color);
		margin-bottom: 20px;
		padding-bottom: 20px;
	}

	.why-choose-us .col-lg-3.col-md-6:last-child .why-choose-item:last-child {
		border-bottom: none;
		margin-bottom: 0;
		padding-bottom: 0;
	}

	.why-choose-image {
		max-width: 100%;
	}

	.expertise-image img {
		aspect-ratio: auto;
	}

	.expertise-box {
		padding: 20px;
	}

	.expertise-box-content h3 {
		font-size: 18px;
	}

	.intro-video.bg-section.dark-section {
		padding: 50px 0;
	}

	.intro-video-content {
		margin-bottom: 30px;
	}

	.intro-video-circle a figure img {
		max-width: 120px;
	}

	.into-video-play-icon {
		width: 50px;
		height: 50px;
	}

	.into-video-play-icon i {
		font-size: 22px;
	}

	.intro-video-counter-list {
		margin-top: 50px;
	}

	.intro-video-counter-item {
		width: calc(50% - 10px);
	}

	.intro-video-counter-item h2 {
		font-size: 26px;
	}

	.program-image img {
		aspect-ratio: 1 / 0.98;
	}

	/* .program-body {
		bottom: 20px;
	} */

	.program-content h3 {
		font-size: 18px;
	}

	.how-work-step-item {
		width: 100%;
		display: flex;
	}

	.how-work-step-item .icon-box {
		height: 65px;
		width: 65px;
		margin: 0 25px 0 0;
	}

	.how-work-step-item .icon-box img {
		max-width: 28px;
	}

	.how-work-content {
		width: calc(100% - 90px);
	}

	.process-2 .signle-process-item .shape-1 {
		display: none;
	}

	.how-work-content h3 {
		font-size: 18px;
	}

	.book-appointment-box {
		padding: 25px;
	}

	.book-appointment-image img {
		aspect-ratio: 1 / 0.7;
	}

	.faq-images {
		width: 100%;
		max-width: 100%;
		background-size: 38px auto;
		background-position: bottom 75px left 60px;
		/* padding: 0 90px 120px 0; */
	}

	.faq-image-1::before {
		top: 35px;
		right: -80px;
		height: 55px;
		width: 55px;
	}

	.faq-image-2 {
		max-width: 240px;
	}

	.faq_tab {
		column-gap: 15px;
		row-gap: 15px;
	}

	.faq-accordion .accordion-header .accordion-button {
		font-size: 18px;
	}

	.testimonial-boxes {
		gap: 20px;
	}

	.testimonial-rating {
		margin-bottom: 10px;
	}

	.testimonial-author-content h3 {
		font-size: 18px;
	}

	.testimonial-images {
		min-width: 100%;
		padding: 10px 140px 95px 10px;
	}

	.testimonial-img-1 img {
		aspect-ratio: 1 / 1.54;
	}

	.testimonial-img-2 {
		right: 15px;
		max-width: 150px;
	}

	.testimonial-img-2::before {
		height: 70px;
		width: 60px;
	}

	.testimonial-img-3 {
		bottom: 10px;
		max-width: 195px;
	}

	.hero-content-footer.client-review-box {
		max-width: 160px;
		gap: 10px;
		bottom: 0;
		padding: 10px;
	}

	.hero-content-footer.client-review-box .trusted-client-review p {
		font-size: 14px;
	}

	.post-item-content h3 {
		font-size: 18px;
	}

	.main-footer-box {
		gap: 40px;
	}

	.footer-contact-list {
		margin-bottom: 20px;
	}

	.footer-contact-list ul {
		gap: 15px;
	}

	.footer-contact-list ul li {
		font-size: 16px;
	}

	.footer-menu ul li {
		font-size: 16px;
	}

	.footer-links {
		width: 100%;
	}

	.footer-links h3 {
		font-size: 18px;
		margin-bottom: 20px;
	}

	.footer-social-links span {
		font-size: 18px;
	}

	.footer-copyright {
		text-align: center;
		padding: 15px 0;
	}

	.footer-privacy-policy {
		text-align: center;
		margin-top: 10px;
	}

	.footer-privacy-policy ul li {
		margin-right: 3px;
		padding-right: 15px;
	}

	.footer-privacy-policy ul li::before {
		font-size: 16px;
	}

	.page-header-box h1 {
		font-size: 28px;
	}

	.our-approach-image img {
		aspect-ratio: auto;
		width: 100%;
		height: 100%;
	}

	.our-approach-body ul li {
		width: 100%;
	}

	.creator-item.last_item {
		margin-bottom: 0px !important;
	}

	.mission-vision-item,
	.mission-vision-image {
		width: 100%;
	}

	.mission-vision-item .icon-box {
		margin-bottom: 15px;
	}

	.mission-vision-content h3 {
		font-size: 18px;
		margin-bottom: 5px;
	}

	.how-work-counter-list {
		margin-top: 30px;
		padding-top: 30px;
	}

	.how-work-counter-item:nth-child(5n + 5):before {
		display: block;
	}

	.how-work-counter-item:last-child:before,
	.how-work-counter-item:nth-child(2n + 2):before {
		display: none;
	}

	.create_item {
		margin-bottom: 120px !important;
	}

	.how-work-counter-item {
		width: calc(50% - 10px);
	}

	.single-feature-box {
		padding: 25px;
	}

	.how-work-counter-item h2 {
		font-size: 26px;
	}

	.expert-coaching-image {
		max-width: 100%;
		padding: 25px 140px 175px 18px;
	}

	.expert-coaching-image:before {
		border-width: 10px;
		width: 120px;
		height: 120px;
		right: 30px;
		transform: translateY(-50%);
	}

	.expert-coaching-img-1,
	.expert-coaching-img-2,
	.expert-coaching-img-3 {
		border-width: 5px;
	}

	.expert-coaching-img-2 {
		max-width: 140px;
		top: 10px;
		right: 10px;
	}

	.expert-coaching-img-3 {
		left: 100px;
		max-width: 180px;
	}

	.expert-coaching-body-item {
		width: 100%;
	}

	.expert-coaching-body-item h3 {
		font-size: 15px;
		line-height: 1.5;
	}

	.expert-coaching-list ul {
		gap: 15px;
	}

	.expert-coaching-list ul li {
		width: 100%;
	}

	.our-health-image {
		max-width: 100%;
		padding-left: 40px;
	}

	.contact-us-circle img {
		max-width: 100px;
		border-width: 4px;
	}

	.our-journey-content h3 {
		font-size: 18px;
		margin-bottom: 5px;
	}

	.team-content h3 {
		font-size: 18px;
	}

	.page-catagery-list h3 {
		font-size: 18px;
	}

	.service-featured-image {
		margin-bottom: 20px;
	}

	.service-featured-image img {
		aspect-ratio: 1 / 0.7;
	}

	.service-entry h2 {
		font-size: 26px;
	}

	.service-solutions-box,
	.service-personalized-box,
	.service-entry-image-content {
		margin-top: 30px;
	}

	.what-we-do-list.service-solutions-list .what-we-list-item {
		width: 100%;
	}

	.service-personalized-conetnt,
	.service-personalized-image {
		width: 100%;
	}

	.service-personalized-conetnt .what-we-do-list {
		margin-bottom: 0;
	}

	.service-personalized-image img {
		aspect-ratio: 1 / 0.78;
	}

	.service-entry-image-content {
		gap: 20px;
	}

	.service-entry-image,
	.service-entry-content {
		width: 100%;
	}

	.service-entry-image img {
		aspect-ratio: 1 / 0.9;
	}

	.service-entry-content-item {
		margin-bottom: 15px;
		padding-bottom: 15px;
	}

	.service-entry-content-item h3 {
		font-size: 18px;
		margin-bottom: 5px;
	}

	.post-single-meta ol li {
		font-size: 16px;
	}

	.post-single-meta ol li i {
		font-size: 16px;
	}

	.post-image img {
		aspect-ratio: 1 / 0.7;
	}

	.post-entry blockquote {
		background-position: 15px 15px;
		padding: 60px 15px 15px 15px;
	}

	.post-entry blockquote p {
		font-size: 16px;
	}

	.post-entry h2 {
		font-size: 26px;
	}

	.tag-links {
		font-size: 18px;
	}

	.program-detail-item h3 {
		font-size: 18px;
	}

	.program-featured-image {
		margin-bottom: 20px;
	}

	.program-featured-image img {
		aspect-ratio: 1 / 0.7;
	}

	.program-entry h2 {
		font-size: 26px;
	}

	.program-entry ul li {
		width: 100%;
	}

	.program-entry-image img {
		aspect-ratio: 1 / 0.56;
	}

	.what-we-do-list.program-content-list,
	.program-practice-image {
		width: 100%;
	}

	.what-we-do-list.program-content-list {
		margin-bottom: 0;
	}

	.what-we-do-list.program-content-list .what-we-list-item {
		margin-bottom: 15px;
		padding-bottom: 15px;
	}

	.program-practice-image img {
		aspect-ratio: 1 / 0.82;
	}

	.team-sidebar-image img {
		aspect-ratio: 1 / 1.027;
	}

	.team-sidebar-body-content h3 {
		font-size: 18px;
	}

	.team-sidebar-body ul li span {
		font-size: 18px;
	}

	.team-sidebar-footer span {
		font-size: 18px;
	}

	.team-skills-list {
		gap: 30px;
	}

	.team-skills-item {
		width: calc(50% - 15px);
	}

	.circle .progress_value {
		font-size: 24px;
	}

	.page-testimonials .testimonial-boxes .testimonial-item {
		width: 100%;
	}

	.contact-now-circle {
		margin-top: 20px;
		text-align: left;
		display: none;
	}

	.contact-now-circle img {
		max-width: 84px;
	}

	.contact-info-list {
		padding: 20px;
	}

	.contact-info-item {
		width: 100%;
		border-bottom: 1px solid var(--dark-divider-color);
		border-right: none;
		margin-bottom: 20px;
		padding: 0 0 20px 0;
	}

	.recharts-wrapper {
		left: -50px;
		width: 550px !important;
	}

	.contact-info-item:nth-of-type(2n + 2) {
		padding: 0 0 20px 0;
	}

	.press_list_item {
		margin-inline: auto;
	}

	.contact-info-item:nth-last-child(-n + 2) {
		border-bottom: 1px solid var(--dark-divider-color);
		padding-bottom: 20px;
	}

	.contact-info-item:last-child {
		border-bottom: none;
		padding-bottom: 0;
		margin-bottom: 0;
	}

	.contact-info-item .icon-box {
		margin-bottom: 10px;
	}

	.contact-info-content h3 {
		font-size: 18px;
		margin-bottom: 5px;
	}

	.footer-links,
	.footer-about,
	.footer-links-box {
		text-align: left;
	}

	.footer-contact-list ul {
		justify-content: start;
	}

	.contact-social-list {
		padding: 20px;
	}

	.contact-social-list h3 {
		font-size: 18px;
	}

	.google-map-iframe,
	.google-map-iframe iframe {
		height: 350px;
	}

	.error-page-image img {
		max-width: 80%;
	}

	.step_des {
		font-size: 18px;
		line-height: 35px;
	}

	.footer-links {
		margin-bottom: 20px;
	}

	.timeline {
		width: 1000px;
	}

	.timeline_box {
		overflow-x: auto;
		position: relative;
		height: 350px;
		padding-top: 20px;
		padding-inline: 20px;
	}

	.timeline {
		margin-top: 0px;
		/* height: 100%; */
	}

	.footer-about::before {
		display: none;
	}

	.country_img_wrapper .country_img {
		width: 100%;
		/* max-width: none; */
		height: 100%;
	}

	.how_it_work_arrow img {
		display: none;
	}

	.explore_main {
		margin-top: 60px;
	}

	.daily_dist_sec {
		padding: 50px 0;
	}

	.white_paper {
		padding-bottom: 60px;
	}
}

@media(max-width:580px) {
	.step_des {
		font-size: 18px;
		line-height: 35px;
	}

	.stat_card {
		flex: none;
		width: 100%;
		max-width: 100%;
		margin-inline: auto;
	}

	.app_btn img {
		width: 120px;
	}

	.footer-links,
	.footer-about,
	.footer-links-box {
		text-align: left;
	}

	.footer-contact-list ul {
		justify-content: start;
	}

	.expert-us-body ul li::before {
		font-size: 15px;
		top: 5px;
	}

	.mobile-menu {
		max-width: 280px;
	}

	.faq-accordion .accordion-header .accordion-button {
		font-size: 16px;
		line-height: 22px;
	}

	.pool_token_icon {
		padding: 12px;
	}

	.faq-accordion .accordion-item .accordion-body ul li {
		line-height: 25px;
	}

	.blog_title {
		width: 90%;
		font-size: 30px !important;
		line-height: 40px;
	}

	.pool_token_icon {
		padding: 10px;
	}

	.token_list li {
		font-size: 18px;
	}

	.dot {
		width: 20px;
		height: 20px;
	}

	.section-title h2 {
		font-size: 24px;
		line-height: 34px;
	}

	.process-1 .process-items {
		-ms-grid-columns: auto;
		grid-template-columns: auto;
	}

	/* .footer-logo img,
	.navbar-brand img {
		width: 100%;
		max-width: 175px;
		margin-left: -20px;
	} */

	.country_list1,
	.country_list2 {
		flex-wrap: wrap;
	}

	.country_section {
		padding: 70px 0 40px;
	}

	/* .program-body {
		bottom: 18px;
	} */

	.hero_heading {
		font-size: 35px !important;
	}

	.hero.hero-bg-image .hero-content .section-title p {
		font-size: 15px;
	}

	.country_img_wrapper {
		height: auto;
		margin-bottom: 20px;
	}

	.country_img_wrapper .country_img {
		width: 100%;
		/* max-width: none; */
		height: 100%;
	}

	.what-we-do-list-content h3 {
		font-size: 15px;
	}

	.feature_box {
		padding: 20px !important;
	}

	.feature_box,
	.feature_box::before {
		border-radius: 20px !important;
	}

	.footer-links-box {
		flex-wrap: wrap;
	}

	.download_store {
		width: 120px;
	}

	.footer-links {
		width: 40%;
	}

	.market_step::after {
		width: 450px;
	}

	.stat_card_title {
		margin-block: 10px;
	}

	.stat_card_title {
		font-size: 22px;
	}

	.stat_card_subtext {
		font-size: 18px;
	}

	.header_logo {
		width: 130px !important;
	}

	#chartdiv {
		height: auto;
		width: 100%;
	}

	.section_space {
		padding: 50px 0;
		/* margin-top: 100px; */
	}

	.buy-sell-bottom .bg {
		padding: 10px;
	}

	.total_steps {
		font-size: 18px;
	}

	.page-faqs-catagery button {
		left: 0px;
	}

	.chain_heading {
		font-size: 28px !important;
	}

	#airdrop-popup {
		max-width: 160px;
		left: 50%;
		padding-inline: 10px;
	}

	.allocation_sec {
		padding: 30px 0;
	}

	.logo {
		width: 145px;
	}

	.dailystaking {
		height: 350px !important;
	}

	.piechart {
		height: 300px;
	}

	.token_piechart {
		height: 360px;
	}

	.support {
		padding-block: 40px;
	}

	.step-bb p {
		margin-bottom: 3px !important;
	}

	.token_details {
		padding-bottom: 60px !important;
		padding-top: 60px !important;
	}

	.allowcation_card {
		padding: 25px;
	}
}

/* Mobile vertical timeline */
@media (max-width: 575.98px) {
	/* .vertical-line-sm {
		padding-left: 60px;
	} */

	/* .pool {
		height: 170px;
	} */

	/* .timeline-container {
		position: relative;
		padding-left: 30px;
		border-left: 2px dashed #f9d67b;
		margin-top: 20px;
	} */

	/* .timeline-block {
		position: relative;
		margin-bottom: 20px;
	} */

	/* .timeline-dot {
		position: absolute;
		left: -50px;
		top: -25px;
		width: 22px;
		height: 22px;
		background-color: #f9d67b;
		border-radius: 50%;
		z-index: 1;
	} */

	/* .vertical-line-sm::before {
		content: '';
		position: absolute;
		top: 0;
		left: 35px;
		height: 100%;
		width: 1px;
		border-left: 2px dashed #f9d67b;
		z-index: 0;
	} */
}

@media(max-width:540px) {
	.market_step::after {
		width: 400px;
	}

	.app_btn {
		height: 48px;
		margin-top: 15px;
	}

	.chart-content-inner .title {
		font-size: 30px;
	}

	.chart-wrap {
		height: auto;
	}

	.chart__bg {
		display: none;
	}

	.qr_image {
		width: 68px;
		border-radius: 5px;
	}

	.pool_steps {
		font-size: 20px;
	}

	.hero.hero-bg-image {
		padding: 60px 0px;
		border-radius: 0px;
		height: 100%;
		flex-direction: column;
		padding-bottom: 0px;
	}

	.hero.hero-video .hero-bg-video {
		position: relative;
	}

	.hero.hero-bg-image .hero-content {
		padding-top: 30px;
	}

	/* .hero.hero-bg-image.bg-section.dark-section::before {
		background: none !important;
	} */


	.Linktree_wrapper {
		padding-bottom: 60px;
	}

	.hero_heading {
		color: black !important;
	}

	.welcome_wokaa_heading {
		color: var(--accent-secondary-color) !important;
	}

	.hero.hero-bg-image .hero-content .section-title p {
		color: black !important;
	}

	.hero_header {
		background-color: var(--accent-secondary-color) !important;
	}

	.hero.hero-bg-image.hero-video .container {
		background-color: #E9F2E8;
	}
}

@media(max-width:480px) {
	.market_step::after {
		width: 350px;
	}

	.download_bg {
		padding: 20px !important;
	}

	.recharts-wrapper {
		left: -85px;
		width: 550px !important;
	}

	.dailystaking {
		height: 220px !important;
	}

	.buy-sell-bottom .service1-main-images {
		height: 200px;
	}

	.support {
		padding-bottom: 20px;
	}

	.blog_title {
		font-size: 26px !important;
		line-height: 38px;
	}

	.pool_token_icon {
		width: 75px;
		height: 75px;
	}

	.post-entry h4 {
		font-size: 24px;
	}

	.single-feature-box h3 {
		font-size: 20px;
	}

	.share_token {
		font-size: 22px !important;
	}

	.allowcation_card {
		padding: 20px;
	}

	.allowcation_card h3 {
		font-size: 20px !important;
	}

	.social_btn .btn-default {
		width: 90%;
	}

	.pool_steps {
		font-size: 18px;
	}

	.stats .token_number {
		font-size: 28px;
	}
}

@media(max-width:425px) {
	.market_step::after {
		width: 300px;
	}

	.total_steps {
		font-size: 18px;
	}

	.recharts-wrapper {
		left: -120px;
		width: 550px !important;
	}

	.contract_a {
		word-break: break-all;
		line-height: 28px;
	}

	.heading-right-image {
		width: 40% !important;
	}
}



@media(max-width:380px) {
	.footer-social-links {
		gap: 10px;
	}

	.footer-social-links ul li {
		margin-right: 7px;
	}

	.download_store {
		margin-bottom: 12px;
		margin-left: 0px !important;
	}

	.app_btn {
		height: 45px;
		margin-top: 15px;
	}

	.recharts-wrapper {
		left: -155px;
		width: 550px !important;
	}

}

@media(max-width:375px) {
	.market_step::after {
		width: 250px;
	}

	.logo {
		width: 130px;
	}

	.expert-coaching-body {
		margin-bottom: 0px;
		padding-bottom: 0px;
	}

	.token_piechart {
		height: 290px !important;
	}

	.piechart {
		height: 300px !important;
	}

	.buy-sell-bottom .bg {
		padding: 0px;
	}
}

@media(max-width:320px) {
	.market_step::after {
		width: 200px;
	}

	.timeline-block {
		margin-bottom: 0px !important;
	}

	.pool {
		margin-bottom: 0px;
	}

	.recharts-wrapper {
		left: 0px;
		width: 100% !important;
	}

}



.detail_cards img {
	position: absolute;
	width: 84%;
}

.detail_cards h6 {
	color: #014E4E;
	background: linear-gradient(108.17deg, #be723f 1.94%, #007c0a 50%, #014E4E 98.06%);
	font-weight: bold;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

.detail_cards .w60 {
	width: 70%;
}

.detail_cards .w63 {
	width: 63%;
}