/************************************/
/*** 	 01. Global Variables	  ***/
/************************************/

:root {
	--primary-color: #1b3947;
	--secondary-color: #fff;
	--text-color: #0f0f0f;
	--accent-color: #097b93;
	--dark-color: #e87722;
	--accent-color: #e87722;
	--dark-color: #e87722;
	--white-color: #FFFFFF;
	--divider-color: #DFE1DE;
	--dark-divider-color: #ffffff87;
	--error-color: rgb(230, 87, 87);
	--default-font: 'Hind Madurai', sans-serif;
}

/************************************/
/*** 	   02. General css		  ***/
/************************************/

body {
	font-size: 16px;
	font-weight: 400;
	line-height: 1.6em;
	background: var(--secondary-color);
	color: var(--text-color);
}


p{
	line-height: 1.7em;
	margin-bottom: 1.6em;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	margin: 0;
	font-weight: 700;
	line-height: 1.4em;
	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;
}

.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;
	display: inline-block;
	background-image: linear-gradient(to right, var(--dark-color) 0%, var(--accent-color) 50%, var(--dark-color) 100%);
	background-size: 200% auto;
	border-radius: 100px;
	color: var(--white-color);
	font-size: 24px;
	font-weight: 500;
	line-height: 1em;
	text-transform: capitalize;
	border: none;
	padding: 17px 54px 17px 20px;
	transition: all 0.4s ease-in-out;
	overflow: hidden;
	z-index: 0;
}

a.btn-default.play-audio {
	position: unset;
	padding: 17px 17px 17px 20px;
	background: #faebd7;
	color: #042a2d;
}

.btn-default:hover {
	background-position: right center;
	color: #fff
}

.btn-default::before {
	content: '';
	position: absolute;
	top: -1px;
	bottom: 0;
	right: 0;
	width: 24px;
	height: 24px;
	background: url('../images/arrow-white.svg');
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
	transform: translate(-20px, 50%);
	transition: all 0.4s ease-in-out;
}

.btn-default:hover::before {
	transform: translate(-20px, 50%) rotate(45deg);
}

.btn-default.btn-highlighted {
	background: var(--white-color);
	color: var(--primary-color);
	transition: all 0.5s ease-in-out;
}

.btn-default.btn-highlighted:hover {
	background: transparent;
	color: var(--white-color);
}

.btn-default.btn-highlighted::before {
	background: url('../images/dark-arrow.svg');
}

.btn-default.btn-highlighted::after {
	content: '';
	display: block;
	position: absolute;
	top: 0;
	left: auto;
	right: 0;
	bottom: 0;
	width: 0;
	height: 106%;
	background: linear-gradient(263deg, var(--dark-color) 0.16%, var(--accent-color) 99.84%);
	border-radius: 100px;
	transition: 0.4s ease-in-out;
	z-index: -1;
}

.btn-default.btn-highlighted:hover:after {
	width: 100%;
	left: 0;
	right: auto;
}

.cb-cursor:before {
	background: linear-gradient(263deg, var(--accent-color) 0.16%, var(--dark-color) 99.84%);
}

.preloader {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 1000;
	background: linear-gradient(263deg, var(--accent-color) 0.16%, var(--dark-color) 99.84%);
	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(--white-color) transparent var(--white-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: 1800px;
	margin: 0 auto;
	border-radius: 0px;
}

.section-row {
	margin-bottom: 80px;
}

.section-row .section-title {
	margin-bottom: 0;
}

.section-btn {
	text-align: end;
}

.section-title-content p {
	margin: 0;
}

.section-title {
	margin-bottom: 40px;
}

.section-title h3 {
	display: inline-block;
	font-size: 14px;
	font-weight: 600;
	line-height: 1.4em;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--primary-color);
	background: url('../images/icon-sub-heading.svg') no-repeat;
	background-position: left center;
	background-size: auto;
	padding-left: 24px;
	margin-bottom: 20px;
}

.section-title h1 {
	font-size: 70px;
	font-weight: 300;
	line-height: 1.1em;
	color: var(--primary-color);
	margin-bottom: 0;
}

.section-title h2 {
	font-size: 52px;
	font-weight: 700;
	line-height: 1.2em;
	color: var(--primary-color);
	margin-bottom: 0;

}

.section-title h1 span,
.section-title h2 span {
	font-weight: 700;
	background-image: linear-gradient(267.43deg, var(--accent-color) 4.95%, var(--dark-color) 97.92%);
	background-clip: text;
	-webkit-text-fill-color: transparent;
}

.section-title p {
	margin-top: 30px;
	margin-bottom: 0;
}

.help-block.with-errors ul {
	margin: 0;
	text-align: left;
}

.help-block.with-errors ul li {
	color: var(--error-color);
	font-size: 14px;
	font-weight: 500;
}

/************************************/
/**** 	   03. Header css		 ****/
/************************************/

header.main-header {
	position: relative;
	z-index: 100;
	margin-top: 50px;
	padding: 0 30px;
}

.main-header .container-fluid {
	position: relative;
	padding-bottom: 20px;
}

.main-header .container-fluid::before {
	content: '';
	display: block;
	position: absolute;
	bottom: 0;
	left: 15px;
	right: 0;
	border-bottom: 1px solid var(--dark-divider-color);
	width: calc(100% - 30px);
}

header.main-header .header-sticky {
	position: relative;
	top: 0;
	z-index: 100;
}

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(--primary-color);
	border-bottom: 1px solid var(--dark-divider-color);
}

header.main-header .header-sticky.active .container-fluid {
	padding-bottom: 0;
}

header.main-header .header-sticky.active .container-fluid::before {
	display: none;
}

.navbar {
	width: 100%;
	max-width: 1560px;
	margin: 0 auto;
	padding: 20px 0;
	align-items: center;
}

.navbar-brand {
	padding: 0;
	margin: 0;
}

.main-menu .nav-menu-wrapper {
	flex: 1;
	text-align: left;
	margin-left: 40px;
}

.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-size: 16px;
	font-weight: 700;
	padding: 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: 230px;
	border-radius: 20px;
	position: absolute;
	left: 0;
	top: 100%;
	background: linear-gradient(263deg, var(--accent-color) 0.16%, var(--dark-color) 99.84%);
	text-align: left;
	transition: all 0.3s ease-in-out;
}

.main-menu ul li.submenu:first-child ul {
	width: 230px;
}

.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(--white-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(--primary-color);
	background-color: transparent;
	padding: 8px 20px 8px 23px !important;
}

.header-btn {
	align-items: center;
}

.btn-phone {
	font-size: 16px;
	font-weight: 700;
	line-height: normal;
	color: var(--white-color);
	margin-right: 25px;
	display: inline-flex;
	align-items: center;
	transition: all 0.4s ease-in-out;
}

.btn-phone:hover {
	color: var(--accent-color);
}

.btn-phone i {
	color: var(--white-color);
	font-size: 20px;
	margin-right: 15px;
	transition: all 0.4s ease-in-out;
}

.btn-phone:hover i {
	color: var(--accent-color);
}

.responsive-menu,
.navbar-toggle {
	display: none;
}

.responsive-menu {
	top: 0;
	position: relative;
}

.slicknav_btn {
	background: linear-gradient(263deg, var(--accent-color) 0.16%, var(--dark-color) 99.84%);
	padding: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 38px;
	height: 38px;
	margin: 0;
	border-radius: 6px;
}

.slicknav_icon .slicknav_icon-bar {
	display: block;
	width: 100%;
	height: 3px;
	width: 22px;
	background-color: var(--white-color);
	border-radius: 6px;
	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);
}

.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);
}

.slicknav_menu {
	position: absolute;
	width: 100%;
	padding: 0;
	background: linear-gradient(263deg, var(--accent-color) 0.16%, var(--dark-color) 99.84%);
}

.slicknav_menu ul {
	margin: 5px 0;
}

.slicknav_menu ul ul {
	margin: 0;
}

.slicknav_nav .slicknav_row,
.slicknav_nav li a {
	position: relative;
	font-size: 16px;
	font-weight: 700;
	text-transform: capitalize;
	padding: 10px 20px;
	color: var(--white-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(--primary-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(--white-color);
	position: absolute;
	right: 15px;
	top: 15px;
	transition: all 0.3s ease-out;
}

.slicknav_open>a .slicknav_arrow:after {
	transform: rotate(-180deg);
	color: var(--primary-color);
}

/************************************/
/***        04. Hero css	      ***/
/************************************/

.hero {
	position: relative;
	background: url(../images/hero-bg.jpg);
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
	padding: 350px 30px 100px;
	margin-top: -120px;
	overflow: hidden;
}

.hero::before {
	content: '';
	display: block;
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	background: linear-gradient(180deg, rgba(4, 42, 45, 0) 65.37%, var(--primary-color) 100.18%), linear-gradient(270deg, rgba(4, 42, 45, 0) 59.75%, var(--primary-color) 100%);
	width: 100%;
	height: 100%;
	z-index: 1;
}

.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-slider-layout {
	background: none;
	padding: 0;
}

.hero.hero-slider-layout .hero-slide {
	position: relative;
	padding: 320px 30px 200px;
}

.hero.hero-slider-layout .hero-slide::before {
	content: '';
	display: block;
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	background: linear-gradient(180deg, rgba(4, 42, 45, 0) 65.37%, var(--primary-color) 100.18%), linear-gradient(180deg, rgba(4, 42, 45, 0) 59.75%, var(--primary-color) 100%);
	width: 100%;
	height: 100%;
	z-index: 1;
}

.hero.hero-slider-layout .hero-slide .hero-slider-image {
	position: absolute;
	top: 0;
	right: 0;
	left: 0;
	bottom: 0;
}

.hero.hero-slider-layout .hero-slide .hero-slider-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.hero.hero-slider-layout .hero-pagination {
	position: absolute;
	bottom: 50px;
	text-align: left;
	padding-left: calc(((100vw - 1560px) / 2) - 45px);
	z-index: 2;
}

.hero.hero-slider-layout .hero-pagination .swiper-pagination-bullet {
	width: 12px;
	height: 12px;
	background: var(--white-color);
	opacity: 1;
	transition: all 0.3s ease-in-out;
	margin: 0 5px;
}

.hero.hero-slider-layout .hero-pagination .swiper-pagination-bullet-active {
	background-color: var(--accent-color);
}

.hero-slide .hero-section {
	text-align: left;
}

.hero-section {
	position: relative;
	width: 100%;
	max-width: 1560px;
	margin: 0 auto;
	z-index: 2;
}

.hero-slide .hero-section .hero-content {
	width: 100%;
	max-width: 750px;
}

.hero-slide .hero-section .hero-content .section-title p {
	font-size: 18px;
	font-weight: 500;
	color: var(--white-color);
}

.hero-content .section-title h3,
.hero-content .section-title h1 {
	color: var(--white-color);
}

.hero-btn .btn-default.btn-highlighted {
	margin-left: 40px;
}

.export-coaching-box {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	margin-top: 60px;
}

.export-coaching-step {
	position: relative;
	width: 20%;
	border-top: 2px solid var(--dark-divider-color);
	padding-top: 30px;
	padding-right: 100px;
	transition: all 0.5s ease-in-out;
}

.export-coaching-step::before {
	content: '';
	display: block;
	position: absolute;
	top: -2px;
	left: auto;
	right: 0;
	background: linear-gradient(to left, var(--accent-color) 0.16%, var(--dark-color) 99.84%);
	width: 0;
	height: 2px;
	transition: all 0.4s ease-in-out;
}

.export-coaching-step:hover:before {
	width: 100%;
	right: auto;
	left: 0;
}

.export-coaching-step .icon-box {
	margin-bottom: 20px;
}

.export-coaching-step .icon-box img {
	max-width: 30px;
}

.export-coaching-step-content p {
	color: var(--white-color);
	margin: 0;
}

/************************************/
/***       05. About Us css	      ***/
/************************************/

.about-us {
	padding: 90px 0;
}

.about-us-images {
	position: relative;
	padding: 0 70px 70px 80px;
}

.about-us-img-1 figure {
	display: block;
	mask-image: url(../images/about-image-bg-shape.svg);
	background-image: url(../images/about-image-bg-shape.svg);
	mask-size: cover;
	mask-position: center center;
	mask-repeat: no-repeat;
	border-radius: 30px;
	width: 100%;
	height: 100%;
}

.about-us-img-1 img {
	width: 100%;
	aspect-ratio: 1 / 1.26;
	object-fit: cover;
}

.about-us-img-2 {
	position: absolute;
	bottom: 0;
	right: 35px;
	border-radius: 14px;
	overflow: hidden;
}

.about-us-img-2 figure {
	display: block;
}

.about-us-img-2 img {
	width: 100%;
	aspect-ratio: 1 / 1.04;
	object-fit: cover;
}

.about-experience-box {
	position: absolute;
	top: 0;
	left: 0;
	transform: translateY(70%);
	background: linear-gradient(263deg, var(--accent-color) 0.16%, var(--dark-color) 99.84%);
	border-radius: 10px;
	padding: 20px;
	max-width: 178px;
	animation: experiencemoveobject 2s infinite linear alternate;
}

@keyframes experiencemoveobject {
	50% {
		left: 30px;
	}
}

.about-experience-box .icon-box {
	margin-bottom: 10px;
}

.about-experience-box .icon-box img {
	max-width: 45px;
}

.about-experience-box .about-experience-content h3 {
	font-size: 20px;
	font-weight: 600;
	color: var(--white-color);
}

.company-review {
	position: absolute;
	left: 0;
	bottom: 0;
	transform: rotate(-180deg) translate(-100%, 50%);
	writing-mode: vertical-rl;
}

.company-review h3 {
	font-size: 16px;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	color: var(--primary-color);
}

.about-us-list {
	margin-bottom: 40px;
}

.about-us-list ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

.about-us-list ul li {
	position: relative;
	font-size: 20px;
	font-weight: 600;
	text-transform: capitalize;
	color: var(--primary-color);
	padding-left: 30px;
	margin-bottom: 20px;
}

.about-us-list ul li:last-child {
	margin-bottom: 0;
}

.about-us-list ul li::before {
	content: '\f00c';
	font-family: 'FontAwesome';
	position: absolute;
	top: 0;
	left: 0;
	font-size: 20px;
	background-image: linear-gradient(267.43deg, var(--accent-color) 4.95%, var(--dark-color) 97.92%);
	background-clip: text;
	-webkit-text-fill-color: transparent;
}

.about-us-body {
	border-bottom: 1px solid var(--divider-color);
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 30px;
	margin-bottom: 40px;
	padding-bottom: 40px;
}

.about-comapny-client {
	width: calc(50% - 15px);
}

.company-client-images {
	margin-bottom: 10px;
}

.company-client-images .client-image {
	display: inline-block;
	margin-left: -18px;
	border: 1px solid var(--secondary-color);
	border-radius: 50%;
	overflow: hidden;
}

.company-client-images .client-image:first-child {
	margin: 0;
}

.company-client-images .client-image figure {
	display: block;
}

.company-client-images .client-image img {
	max-width: 50px;
}

.company-client-counter p {
	font-weight: 500;
	margin: 0;
}

.company-client-counter p span {
	color: var(--primary-color);
}

.about-company-result {
	width: calc(50% - 15px);
	display: flex;
	align-items: center;
}

.about-company-result .icon-box {
	width: 50px;
	height: 50px;
	background: linear-gradient(267.43deg, var(--accent-color) 4.95%, var(--dark-color) 97.92%);
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	margin-right: 20px;
}

.about-company-result .icon-box img {
	max-width: 30px;
}

.company-result-content {
	width: calc(100% - 70px);
}

.company-result-content h3 {
	font-size: 20px;
	font-weight: 600;
	text-transform: capitalize;
	margin-bottom: 5px;
}

.company-result-content p {
	text-transform: capitalize;
	margin: 0;
}

/************************************/
/***      06. Our Services Css     ***/
/************************************/

.our-service {
	padding: 90px 0;
	background: var(--primary-color) url(../images/service-bg-circle.svg);
	background-repeat: no-repeat;
	background-position: left bottom;
	background-size: auto;
}

.service-content {
	position: sticky;
	top: 100px;
	margin-right: 30px;
}

.service-content .section-title h3,
.service-content .section-title h2,
.service-content .section-title p {
	color: var(--white-color);
}

.service-item-list {
	border-bottom: 1px solid var(--dark-divider-color);
	margin-bottom: 40px;
	padding-bottom: 40px;
	/* display: flex; */
	flex-wrap: wrap;
	gap: 60px 30px;
}

.service-item {
	width: 76%;
	margin: 0 auto;
}

.service-item .icon-box {
	background-image: linear-gradient(to right, var(--dark-color) 0%, var(--accent-color) 50%, var(--dark-color) 100%);
	background-size: 200% auto;
	border-radius: 50%;
	height: 70px;
	width: 70px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 30px;
	transition: all 0.4s ease-in-out;
}

.service-item:hover .icon-box {
	background-position: right center;
}

.service-item .icon-box img {
	max-width: 35px;
}

.service-item-content h3 {
	font-size: 22px;
	text-transform: capitalize;
	color: var(--white-color);
	margin-bottom: 10px;
}

.service-item-content p {
	color: var(--white-color);
	margin-bottom: 0;
}

.service-footer p {
	color: var(--white-color);
	margin-bottom: 0;
}

.service-footer p span {
	font-weight: 700;
	text-transform: capitalize;
	color: var(--white-color);
	background-image: linear-gradient(to right, var(--dark-color) 0%, var(--accent-color) 50%, var(--dark-color) 100%);
	border-radius: 100px;
	background-size: 200% auto;
	margin-right: 20px;
	padding: 2px 15px;
	transition: all 0.4s ease-in-out;
}

.service-footer p:hover span {
	background-position: right center;
}

.service-footer a {
	font-weight: 700;
	text-transform: capitalize;
	text-decoration: underline;
	color: var(--accent-color);
	transition: all 0.3s ease-in-out;
}

.service-footer a:hover {
	color: var(--dark-color);
}

/************************************/
/***     07. Our Potential Css    ***/
/************************************/

.our-potential {
	padding: 90px 0;
}

.our-potential-content {
	height: 100%;
}

.our-potential-counter {
	border-bottom: 1px solid var(--divider-color);
	padding-bottom: 40px;
	margin-bottom: 40px;
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
}

.potential-counter-item {
	width: calc(50% - 15px);
	display: flex;
	align-items: center;
}

.potential-counter-item .counter-circle {
	border: 2px solid transparent;
	background: linear-gradient(263deg, var(--accent-color) 0.16%, var(--dark-color) 99.84%) border-box;
	border-radius: 50%;
	margin-right: 30px;
}

.potential-counter-item .counter-circle h2 {
	font-size: 26px;
	background-color: #f2f1ed;
	border: 10px solid var(--secondary-color);
	border-radius: 50%;
	width: 110px;
	height: 110px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.potential-counter-content {
	width: calc(100% - 154px);
}

.potential-counter-content h3 {
	font-size: 20px;
	font-weight: 600;
	text-transform: capitalize;
}

.potential-body-content {
	margin-bottom: 20px;
}

.potential-body-content h3 {
	font-size: 26px;
	text-transform: capitalize;
	font-weight: 700;
	margin-bottom: 20px;
}

.potential-body-content p:last-child {
	margin-bottom: 0;
}

.potential-body-list ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

.potential-body-list ul li {
	position: relative;
	text-transform: capitalize;
	padding-left: 30px;
	margin-bottom: 10px;
}

.potential-body-list ul li:last-child {
	margin-bottom: 0;
}

.potential-body-list ul li::before {
	content: '\f00c';
	font-family: 'FontAwesome';
	position: absolute;
	top: 0;
	left: 0;
	font-size: 20px;
	background-image: linear-gradient(267.43deg, var(--accent-color) 4.95%, var(--dark-color) 97.92%);
	background-clip: text;
	-webkit-text-fill-color: transparent;
}

.our-potential-img {
	border-radius: 20px;
	margin-left: 30px;
	height: 100%;
}

.our-potential-img figure {
	display: block;
	height: 100%;
}

.our-potential-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	aspect-ratio: 1 / 1.22;
	border-radius: 20px;
}

/************************************/
/***      08. Our Pricing Css     ***/
/************************************/

.our-pricing {
	background: var(--white-color);
	padding: 90px 0;
}

.pricing-content {
	position: sticky;
	top: 100px;
	margin-right: 100px;
}

.pricing-box-list {
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
}

.pricing-box {
	width: 100%;
	border: 1px solid var(--divider-color);
	border-radius: 20px;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	padding: 30px 20px;
}

.pricing-box.coaching-service {
	border: unset;
	padding: 30px 30px;
	background: white;
	box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

.pricing-box.highlighted-box.coaching-service {
	box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

.pricing-box.highlighted-box {
	background: linear-gradient(263deg, var(--accent-color) 0.16%, var(--dark-color) 99.84%);
}

.pricing-box-content {
	width: calc(36% - 15px);
	text-align: center;
	border-right: 1px solid var(--divider-color);
	padding-right: 30px;
	margin-right: 30px;
}

.pricing-box.highlighted-box .pricing-box-content {
	border-color: var(--dark-divider-color);
}

.pricing-title p {
	text-transform: capitalize;
	color: var(--primary-color);
	margin-bottom: 10px;
}

.pricing-box.highlighted-box .pricing-title p {
	color: var(--white-color);
}

.pricing-title h2 {
	font-size: 50px;
}

.pricing-box.highlighted-box .pricing-title h2 {
	color: var(--white-color);
}

.pricing-title h2 sup {
	font-size: 30px;
}

.pricing-title h2 sub {
	font-size: 16px;
	font-weight: 400;
	color: var(--text-color);
	bottom: 0;
}

.pricing-box.highlighted-box .pricing-title h2 sub {
	color: var(--white-color);
}

.pricing-btn {
	margin-top: 20px;
}

.pricing-list {
	width: calc(64% - 15px);
}

.pricing-list ul {
	margin: 0;
	padding: 0;
	list-style: none;
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
}

.pricing-list ul li {
	position: relative;
	width: calc(50% - 10px);
	text-transform: capitalize;
	padding-left: 25px;
}

.pricing-box.highlighted-box .pricing-list ul li {
	color: var(--white-color);
}

.pricing-list ul li::before {
	content: '\f00c';
	font-family: 'FontAwesome';
	position: absolute;
	top: 0;
	left: 0;
	font-size: 18px;
	background: linear-gradient(267.43deg, var(--accent-color) 4.95%, var(--dark-color) 97.92%);
	background-clip: text;
	-webkit-text-fill-color: transparent;
}

.pricing-box.highlighted-box .pricing-list ul li::before {
	background-image: none;
	background-color: var(--white-color);
}

.pricing-benefit-list {
	margin-top: 30px;
}

.pricing-benefit-list ul {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-evenly;
	align-items: center;
	gap: 15px 30px;
}

.pricing-benefit-list ul li {
	color: var(--primary-color);
	font-weight: 500;
}

.pricing-benefit-list ul li img {
	max-width: 20px;
	margin-right: 15px;
}

/************************************/
/***     09. Our Expertise Css    ***/
/************************************/

.our-expertise {
	padding: 90px 0;
	background: #f2f1ed;
}

.expertise-list {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: 30px;
	text-align: center;
}

.expertise-item {
	width: auto;
	display: inline-flex;
	align-items: center;
	background: var(--white-color);
	border-radius: 100px;
}

.expertise-item:first-child {
	margin: 0 15px;
}

.expertise-image figure {
	border-radius: 50%;
	overflow: hidden;
}

.expertise-image img {
	max-width: 70px;
	border-radius: 50%;
}

.expertise-content {
	padding: 0 30px 0 15px;
}

.expertise-content p {
	font-weight: 500;
	text-transform: capitalize;
	color: var(--primary-color);
	margin: 0;
}

/************************************/
/***     10. Intro Video Css      ***/
/************************************/

.intro-video {
	position: relative;
	padding: 500px 0 100px;
	background: url('../images/aboutt.png');

	background-position: center center;
	background-size: cover;
	overflow: hidden;
}

.intro-video::before {
	content: '';
	display: block;
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	background: linear-gradient(180deg, rgba(4, 42, 45, 0) 27.11%, var(--primary-color) 100%);
	width: 100%;
	height: 100%;
}

.intro-video .container {
	position: relative;
	z-index: 1;
}

.intro-video .section-title {
	margin-bottom: 0;
}

.intro-video .section-title h2 {
	color: var(--white-color);
}

.video-play-button {
	display: flex;
	align-items: center;
	justify-content: center;
}

.video-play-button a {
	background-image: linear-gradient(to right, var(--dark-color) 0%, var(--accent-color) 50%, var(--dark-color) 100%);
	background-size: 200% auto;
	border-radius: 50%;
	height: 60px;
	width: 60px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-right: 20px;
	transition: all 0.3s ease-in-out;
}

.video-play-button:hover a {
	background-position: right center;
}

.video-play-button a i {
	font-size: 20px;
	color: var(--white-color);
}

.video-play-button p {
	color: var(--white-color);
	font-size: 20px;
	font-weight: 600;
	line-height: 1em;
	text-transform: capitalize;
	margin: 0;
}

.intro-video-list {
	border-top: 1px solid var(--dark-divider-color);
	margin-top: 40px;
	padding-top: 40px;
}

.intro-video-list ul {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	gap: 20px 30px;
}

.intro-video-list ul li {
	position: relative;
	width: calc(25% - 22.5px);
	color: var(--white-color);
	padding-left: 30px;
}

.intro-video-list ul li:after {
	content: '\f00c';
	font-family: 'Font Awesome 6 Free';
	display: inline-block;
	position: absolute;
	top: 1px;
	left: 0;
	font-size: 20px;
	font-weight: 900;
	line-height: normal;
	color: var(--white-color);
}

/************************************/
/***     11. How We Work Css      ***/
/************************************/

.how-we-work {
	padding: 90px 0;
}

.how-work-item {
	height: calc(100% - 30px);
	margin-bottom: 30px;
}

.how-work-item .icon-box {
	background-image: linear-gradient(to right, var(--dark-color) 0%, var(--accent-color) 50%, var(--dark-color) 100%);
	background-size: 200% auto;
	border-radius: 50%;
	height: 70px;
	width: 70px;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.4s ease-in-out;
}

.how-work-item:hover .icon-box {
	background-position: right center;
}

.how-work-item .icon-box img {
	max-width: 36px;
}

.how-work-content {
	border-top: 1px solid var(--divider-color);
	padding-top: 30px;
	margin-top: 30px;
}

.how-work-content h3 {
	font-size: 22px;
	text-transform: capitalize;
	margin-bottom: 10px;
}

.how-work-content p {
	margin: 0;
}

.scrolling-ticker.work-ticker {
	margin-top: 70px;
}

.scrolling-ticker .container-fluid {
	padding: 0;
}

.scrolling-ticker-box {
	--gap: 40px;
	position: relative;
	display: flex;
	overflow: hidden;
	user-select: none;
	gap: var(--gap);
}

.scrolling-content {
	flex-shrink: 0;
	display: flex;
	gap: var(--gap);
	min-width: 100%;
	animation: scroll 20s linear infinite;
}

.scrolling-content span {
	display: inline-flex;
	align-items: center;
	text-transform: capitalize;
	font-size: 90px;
	line-height: 1.1em;
	font-weight: 600;
	background: linear-gradient(to left, var(--accent-color) 0.16%, var(--dark-color) 99.84%);
	-webkit-background-clip: text;
	-webkit-text-stroke: 4px transparent;
	color: var(--secondary-color);
}

@keyframes scroll {
	from {
		transform: translateX(0);
	}

	to {
		transform: translateX(calc(-100% - var(--gap)));
	}
}

.scrolling-content span img {
	max-width: 50px;
	margin-right: 40px;
}

/************************************/
/***    12. Company Growth Css    ***/
/************************************/

.company-growth {
	background: var(--white-color);
	padding: 90px 0;
}

.company-growth-image figure {
	display: block;
	border-radius: 20px;
	overflow: hidden;
}

.company-growth-image img {
	width: 100%;
	/* aspect-ratio: 1 / 0.97; */
	object-fit: cover;
	border-radius: 20px;
}

.company-growth-content {
	margin-left: 30px;
}

.company-growth-content .section-title h2 {
	width: 100%;
	max-width: 550px;
	font-size: 42px;
}

.company-growth-content .section-title span {
	font-size: 26px;
}

.company-growth-content p {
	font-size: 22px;
	line-height: 30px;
}

.company-growth-box {
	display: flex;
	flex-wrap: nowrap;
	align-items: baseline;
	gap: 22px;
	margin-top: 80px;
}

.company-growth-item {
	width: 100%;
	text-align: left;
	margin-bottom: 12px;
}

.company-growth-item h2 {
	font-size: 40px;
	color: var(--accent-color);
	margin-bottom: 10px;
}

.company-growth-item h3 {
	font-size: 15px;
	font-weight: 700;
	text-transform: capitalize;
	margin-bottom: 10px;
}

.company-growth-item p {
	margin: 0;
}

/************************************/
/***       13. Our FAQs Css       ***/
/************************************/

.our-faqs {
	padding: 100px 0;
}

.faqs-cta-box {
	display: inline-block;
	background-color: var(--white-color);
	border-radius: 20px;
	padding: 30px;
}

.faqs-cta-content h3 {
	font-size: 22px;
	margin-bottom: 10px;
}

.faqs-cta-content p {
	margin-bottom: 20px;
}

.faqs-cta-box .btn-phone {
	margin: 0;
}

.faqs-cta-box .btn-phone i,
.faqs-cta-box .btn-phone {
	color: var(--accent-color);
}

.faqs-cta-box .btn-phone:hover i,
.faqs-cta-box .btn-phone:hover {
	color: var(--primary-color);
}

.our-faq-section .accordion-item {
	padding: 0;
	border: 1px solid var(--divider-color);
	border-radius: 10px;
	overflow: hidden;
	margin-bottom: 25px;
	transition: all 0.3s ease-in-out;
}

.our-faq-section .accordion-item:last-child {
	margin-bottom: 0;
}

.our-faq-section .accordion-header .accordion-button {
	font-size: 22px;
	font-weight: 600;
	line-height: 1.2em;
	background-color: transparent;
	color: var(--white-color);
	padding: 20px 50px 20px 20px;
	transition: all 0.3s ease-in-out;
}

.our-faq-section .accordion-button:not(.collapsed) {
	background: linear-gradient(263deg, var(--accent-color) 0.16%, var(--dark-color) 99.84%);
	color: var(--white-color);
	border-bottom: 1px solid var(--dark-divider-color);
}

.our-faq-section .accordion-header .accordion-button.collapsed {
	background-color: #1b3947;
	color: white;
}

.our-faq-section .accordion-item .accordion-button::after,
.our-faq-section .accordion-item .accordion-button.collapsed::after {
	content: '';
	font-family: "Font Awesome 6 Free";
	position: absolute;
	right: 20px;
	top: 50%;
	bottom: auto;
	transform: translate(0px, -50%) rotate(45deg);
	display: flex;
	align-items: center;
	justify-content: center;
	background: url('../images/icon-plus.svg') no-repeat;
	background-position: center center;
	background-size: cover;
	width: 20px;
	height: 20px;
	transition: all 0.3s ease-in-out;
	filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(6%) hue-rotate(131deg) brightness(102%) contrast(103%);
}

.our-faq-section .accordion-item .accordion-button.collapsed::after {
	transform: translate(0px, -50%);
}

.our-faq-section .accordion-item .accordion-body {
	/* background: linear-gradient(263deg, var(--accent-color) 0.16%, var(--dark-color) 99.84%); */
	padding: 40px 40px 40px 40px;
}

.our-faq-section .accordion-item .accordion-body p {
	/* color: var(--white-color); */
	margin: 0;
}

/************************************/
/***    14. Our Testimonial Css   ***/
/************************************/

.our-testimonial {
	background: url('../images/testimonial-bg.png'), var(--primary-color);
	background-repeat: no-repeat;
	background-position: top left;
	background-size: auto;
	padding: 100px 0;
}

.our-testimonial-content {
	position: sticky;
	top: 100px;
}

.our-testimonial-content .section-title {
	margin-bottom: 0;
}

.our-testimonial-content .section-title h2,
.our-testimonial-content .section-title h3 {
	color: var(--white-color);
}

.testimonial-item {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 30px;
}


.testimonial-slider-image {
	width: calc(30% - 15px);
}
.testimonial-slider-content{
	width: calc(70% - 15px);
}

.testimonial-slider-image figure {
	display: block;
	border-radius: 20px;
	overflow: hidden;
}

.testimonial-slider-image img {
	width: 200px;
	border-radius: 20px;
	aspect-ratio: 1 / 1.19;
	object-fit: cover;

}

.testimonial-slider .swiper-wrapper {
	cursor: none;
}

.testimonial-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 40px;
}

.testimonial-rating-company {
	margin-right: 20px;
}

.testimonial-rating-company img {
	max-width: 150px;
	max-height: 60px;
}

.testimonial-quote img {
	max-width: 58px;
}

.testimonial-rating {
	margin-bottom: 20px;
}

.testimonial-rating i {
	font-size: 16px;
	color: var(--accent-color);
	margin-right: 2px;
}

.testimonial-rating i:last-child {
	margin-right: 0;
}

.testimonial-content {
	margin-bottom: 40px;
}

.testimonial-content p {
	font-size: 18px;
	font-weight: 600;
	color: var(--white-color);
	margin-bottom: 0;
}

.author-content h3 {
	font-size: 22px;
	text-transform: capitalize;
	color: var(--white-color);
	margin-bottom: 5px;
}

.author-content p {
	color: var(--white-color);
	text-transform: capitalize;
	margin: 0;
}

.testimonial-btn {
	position: absolute;
	bottom: 0;
	right: 0;
	display: flex;
	align-items: center;
	justify-content: right;
	margin-top: 30px;
	z-index: 1;
}

.testimonial-slider .testimonial-button-next,
.testimonial-slider .testimonial-button-prev {
	position: relative;
	width: 45px;
	height: 45px;
	background-image: linear-gradient(to right, var(--dark-color) 0%, var(--accent-color) 50%, var(--dark-color) 100%);
	background-size: 200% auto;
	border-radius: 50%;
	transition: all 0.4s ease-in-out;
}

.testimonial-slider .testimonial-button-next {
	margin-left: 30px;
}


.testimonial-slider .testimonial-button-next:hover,
.testimonial-slider .testimonial-button-prev:hover {
	background-position: right center;
}

.testimonial-slider .testimonial-button-next::before,
.testimonial-slider .testimonial-button-prev::before {
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	background: url("../images/arrow-white.svg") no-repeat center center;
	background-size: 24px auto;
	display: flex;
	align-items: center;
	justify-content: center;
	transform: rotate(45deg);
	transition: all 0.4s ease-in-out;
}

.testimonial-slider .testimonial-button-prev::before {
	transform: rotate(225deg);
}

.testimonial-rating-box {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 30px;
	margin-top: 100px;
}

.testimonial-rating-item {
	position: relative;
	width: calc(25% - 22.5px);
	border-radius: 20px;
	text-align: center;
	overflow: hidden;
	padding: 25px 30px;
}

.testimonial-rating-item::before {
	content: '';
	display: block;
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	background: var(--white-color);
	opacity: 6%;
	width: 100%;
	height: 100%;
}

.testimonial-rating-item .icon-box {
	border-bottom: 1px solid var(--dark-divider-color);
	padding-bottom: 20px;
	margin-bottom: 20px;
}

.testimonial-rating-item .icon-box img {
	max-width: 162px;
	max-height: 40px;
}

.testimonial-rating-content p {
	color: var(--white-color);
	margin: 0;
}

.testimonial-rating-content p span {
	color: var(--accent-color);
}

/************************************/
/***       15. Our Blog Css       ***/
/************************************/

.our-blog {
	padding: 100px 0;
}

.our-blog-content {
	position: sticky;
	top: 100px;
}

.blog-box {
	margin-left: 100px;
}

.blog-item {
	display: flex;
	align-items: center;
	border-bottom: 1px solid var(--divider-color);
	padding-bottom: 40px;
	margin-bottom: 40px;
}

.blog-item:last-child {
	border-bottom: none;
	padding-bottom: 0;
	margin-bottom: 0;
}

.blog-item .blog-featured-image {
	width: 47%;
}

.blog-item .blog-featured-image a {
	cursor: none;
	display: block;
	border-radius: 20px;
	overflow: hidden;
}

.blog-item .blog-featured-image img {
	width: 100%;
	/* aspect-ratio: 1 / 0.75; */
	object-fit: cover;
	border-radius: 20px;
	transition: all 0.5s ease-in-out;
}

.blog-item:hover .blog-featured-image img {
	transform: scale(1.1);
}

.blog-item-body {
	width: calc(100% - 47%);
	margin-left: 30px;
}

/* .blog-item-content {
    margin-bottom: 20px;
    overflow-y: auto;
    max-height: 250px;
} */
.blog-item-content::-webkit-scrollbar {
	width: 6px;
	height: 0;
	border-radius: 10px;
}

.blog-item-content::-webkit-scrollbar-thumb {
	background-color: rgb(1 50 34);
	border-radius: 10px;
}

.blog-item-content h2 {
	font-size: 22px;
	margin-bottom: 10px;
}

.blog-item-content h2 a {
	color: inherit;
}

.blog-item-content p {
	margin: 0;
}

/************************************/
/***        16. Footer Css        ***/
/************************************/

.main-footer {
	position: relative;
	background: url(../images/footer-bg-1.png), var(--primary-color);
	background-repeat: no-repeat;
	background-position: top right;
	background-size: auto;
	padding: 0px 0 0;
	margin-bottom: 0px;
}

.main-footer::before {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	background: url(../images/footer-bg-2.png);
	background-repeat: no-repeat;
	background-position: bottom left;
	background-size: auto;
	width: 100%;
	height: 100%;
	z-index: 0;
}

.main-footer .container {
	position: relative;
	z-index: 1;
}

.about-footer {
	width: 100%;
	max-width: 600px;
}

.about-footer .section-title h2 {
	color: var(--white-color);
}

.footer-contact-info h3 {
	font-size: 22px;
	text-transform: capitalize;
	color: var(--white-color);
	margin-bottom: 20px;
}

.footer-contact-info p {
	color: var(--white-color);
	margin: 0;
}

.footer-contact-info p span {
	font-size: 20px;
	font-weight: 600;
}

.footer-social-links {
	margin-top: 30px;
}

.footer-social-links ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

.footer-social-links ul li {
	display: inline-block;
	border-radius: 50%;
	margin-right: 15px;
}

.footer-social-links ul li:last-child {
	margin-right: 0;
}

.footer-social-links ul li a {
	border: 1px solid 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;
}

.footer-social-links ul li:hover a {
	border-color: var(--accent-color);
}

.footer-social-links ul li a i {
	color: var(--white-color);
	font-size: 18px;
	transition: all 0.3s ease-in-out;
}

.footer-social-links ul li:hover a i {
	background-image: linear-gradient(267.43deg, var(--accent-color) 4.95%, var(--dark-color) 97.92%);
	background-clip: text;
	-webkit-text-fill-color: transparent;
}

.footer-copyright {
	border-top: 1px solid var(--dark-divider-color);
	padding: 40px 0;
	margin-top: 80px;
}

.footer-menu ul {
	list-style: none;
	margin: 0;
	padding: 0;
	text-align: left;
}

.footer-menu ul li {
	display: inline-block;
	margin-right: 30px;
}

.footer-menu ul li:last-child {
	margin-right: 0;
}

.footer-menu ul li a {
	color: var(--white-color);
	text-transform: capitalize;
	transition: all 0.3s ease-in-out;
}

.footer-menu ul li:hover a {
	color: var(--accent-color);
}

.footer-copyright-text {
	text-align: end;
}

.footer-copyright-text p {
	color: var(--white-color);
	margin: 0;
}

/************************************/
/***     17. About Us Page css    ***/
/************************************/

.page-header {
	position: relative;
	background: url('../images/page-header-bg.jpg') no-repeat;
	background-position: center center;
	background-size: cover;
	overflow: hidden;
	padding: 120px 0 120px;
	margin-top: 0px;
}

.page-header:before {
	content: '';
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(270deg, rgba(4, 42, 45, 0) 22.28%, var(--primary-color) 100%);
	z-index: 0;
}

.page-header-box {
	position: relative;
	width: 100%;
	max-width: 1560px;
	margin: 0 auto;
	padding: 0 30px;
	z-index: 1;
}

.page-header-box h1 {
	color: var(--white-color);
	font-size: 70px;
	font-weight: 500;
	line-height: 1.1em;
	margin-bottom: 10px;
}

.page-header-box h1 span {
	font-weight: 500;
	background-image: linear-gradient(267.43deg, #ffffff 4.95%, #ffffff 97.92%);
	background-clip: text;
	-webkit-text-fill-color: transparent
}

li.breadcrumb-item.active:before {
	all: unset;
}

span.icon {
	color: white;
	padding: 0 5px;
}

.page-header-box ol {
	margin: 0;
	padding: 0;
	padding-left: 3px;
}

.page-header-box ol li.breadcrumb-item {
	font-size: 14px;
	font-weight: 600;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--white-color);
}

.page-header-box ol li.breadcrumb-item a {
	color: inherit;
}

.page-header-box ol li.breadcrumb-item.active {
	color: var(--accent-color);
}

.page-header-box ol .breadcrumb-item+.breadcrumb-item::before {
	color: var(--white-color);
}

.our-approach {
	background: var(--white-color);
	padding: 100px 0;
}

.mission-vision-item {
	position: relative;
	margin-bottom: 40px;
}

.mission-vision-list .col-md-6:nth-child(odd) .mission-vision-item:after {
	content: '';
	position: absolute;
	background: var(--divider-color);
	width: 1px;
	height: 90%;
	top: 50%;
	right: -15px;
	transform: translateY(-50%);
}

.mission-vision-list .col-md-6:nth-child(odd) .mission-vision-item {
	padding-right: 45px;
}

.mission-vision-list .col-md-6:nth-child(even) .mission-vision-item {
	padding-left: 45px;
}

.mission-vision-item .icon-box {
	background-image: linear-gradient(to right, var(--dark-color) 0%, var(--accent-color) 50%, var(--dark-color) 100%);
	background-size: 200% auto;
	border-radius: 999px;
	width: 50px;
	height: 50px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 20px;
	transition: all 0.4s ease-in-out;
}

.mission-vision-item:hover .icon-box {
	background-position: right center;
}

.mission-vision-item .icon-box img {
	max-width: 24px;
}

.mission-vision-content h3 {
	font-size: 22px;
	text-transform: capitalize;
	margin-bottom: 15px;
}

.mission-vision-content p {
	margin: 0;
}

.mission-vision-item.our-value-item {
	display: flex;
	border-top: 1px solid var(--divider-color);
	padding-top: 40px;
}

.mission-vision-item.our-value-item .icon-box {
	margin-right: 20px;
}

.mission-vision-item.our-value-item .mission-vision-content {
	width: calc(100% - 70px);
}

.our-approach-content-footer a {
	font-weight: 400;
	line-height: 1.4em;
	text-align: center;
	width: 100%;
	padding: 16px 20px;
	border-radius: 10px;
}

.our-approach-content-footer a:before {
	display: none;
}

.our-approach-content-footer a u {
	transition: all 0.3s ease-in-out;
}

.our-approach-content-footer a:hover u {
	color: var(--primary-color);
}

.our-approach-image {
	padding-left: 30px;
}

.our-approach-image figure {
	display: block;
	border-radius: 20px;
}

.our-approach-image img {
	aspect-ratio: 1 / 0.99;
	object-fit: cover;
	border-radius: 20px;
}

.our-partners {
	padding: 100px 0 70px;
}

.our-partners .contact-circle {
	text-align: right;
}

.our-partners .contact-circle img {
	max-width: 122px;
	animation: infiniterotate 30s infinite linear;
}

@keyframes infiniterotate {
	from {
		transform: rotate(0deg);
	}

	to {
		transform: rotate(360deg);
	}
}

.our-partners .company-logo {
	background-color: var(--white-color);
	border-radius: 20px;
	text-align: center;
	height: calc(100% - 30px);
	margin-bottom: 30px;
	padding: 55px 35px;
}

.company-logo img {
	width: 100%;
	/* height: 40px; */
}

.company-experience {
	background-color: var(--primary-color);
	background-image: url('../images/company-experience-bg.png');
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
	padding: 100px 0;
}

.company-experience-content {
	margin-right: 10px;
}

.company-experience-content .section-title h3,
.company-experience-content .section-title h2 {
	color: var(--white-color);
}

.company-experience-content .section-title p {
	color: var(--secondary-color);
}

.company-experience-content .section-btn {
	text-align: start;
}

.company-experience-list {
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
	margin-left: 20px;
}

.company-experience-item {
	width: calc(50% - 15px);
}

.company-experience-item h2 {
	color: #fff;
	font-size: 40px;
	margin-bottom: 10px;
}

.company-experience-item h3 {
	color: var(--white-color);
	font-size: 22px;
	text-transform: capitalize;
	margin-bottom: 10px;
}

.company-experience-item p {
	color: var(--secondary-color);
	margin: 0;
}

.why-choose-us {
	padding: 100px 0;
}

.why-choose-us-content {
	margin-right: 20px;
}

.why-choose-skillbar .skills-progress-bar {
	margin-bottom: 40px;
}

.why-choose-skillbar .skills-progress-bar:last-child {
	margin-bottom: 0;
}

.skillbar .skill-data {
	display: flex;
	justify-content: space-between;
	margin-bottom: 10px;
}

.skillbar .skill-data .skill-title {
	font-size: 16px;
	text-transform: capitalize;
	color: var(--primary-color);
}

.skillbar .skill-data .skill-no {
	font-size: 16px;
	color: var(--primary-color);
	margin-left: 20px;
}

.skillbar .skill-progress {
	width: 100%;
	height: 14px;
	background: var(--white-color);
	border-radius: 99px;
	position: relative;
}

.skillbar .skill-progress .count-bar {
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	background-color: var(--accent-color);
	border-radius: 99px;
}

.why-choose-us-image {
	position: relative;
	display: flex;
	align-items: end;
	justify-content: end;
	padding-bottom: 45px;
	margin-left: 50px;
}

.why-choose-us-img-1 {
	width: 413px;
	text-align: right;
}

.why-choose-us-img-2 {
	position: absolute;
	bottom: 0;
	left: 0;
}

.why-choose-us-img-1 figure,
.why-choose-us-img-2 figure {
	display: block;
	overflow: hidden;
}

.why-choose-us-img-1 figure,
.why-choose-us-img-2 figure,
.why-choose-us-img-1 img,
.why-choose-us-img-2 img {
	border-radius: 20px;
}

.why-choose-us-img-1 img {
	aspect-ratio: 1 / 1.095;
	object-fit: cover;
}

.why-choose-us-img-1 img {
	aspect-ratio: 1 / 1.097;
	object-fit: cover;
}

.why-choose-contact-circle {
	position: absolute;
	top: 50px;
	left: -50px;
}

.why-choose-contact-circle img {
	max-width: 175px;
	animation: infiniterotate 30s infinite linear;
}

.our-team {
	padding: 100px 0 70px;
}

.team-member-item {
	height: calc(100% - 30px);
	margin-bottom: 30px;
}

.team-image {
	position: relative;
	overflow: hidden;
	border-radius: 20px;
	margin-bottom: 20px;
}

.team-image a {
	display: block;
	cursor: none;
}

.team-image img {
	width: 100%;
	aspect-ratio: 1 / 1.2;
	object-fit: cover;
	border-radius: 20px;
	transition: all 0.5s ease-in-out;
}

.team-member-item:hover .team-image img {
	transform: scale(1.1);
}

.team-social-icon {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	margin: 0 auto;
	transform: translateY(100%);
	text-align: center;
	z-index: 1;
	transition: all 0.5s ease-in-out;
	backdrop-filter: blur(60px);
	width: 96%;
	margin: 0 auto;
	border-radius: 30px;
	padding: 10px 10px;
}

.team-member-item:hover .team-social-icon {
	bottom: 15px;
	transform: translateY(0);
}

.team-social-icon ul {
	position: relative;
	display: inline-block;
	list-style: none;
	line-height: normal;
	margin: 0;
	padding: 12px 25px;
	padding-bottom: 0;
	backdrop-filter: blur(60px);
	-webkit-backdrop-filter: blur(60px);
	border-radius: 10px;
	overflow: hidden;

}

.team-social-icon::before {
	content: '';
	display: block;
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	/* background-color: var(--primary-color); */
	opacity: 10%;
	width: 100%;
	height: 100%;
	z-index: 0;
	border-radius: 30px;
}

.team-social-icon ul li {
	position: relative;
	display: inline-block;
	text-align: center;
	margin-right: 8px;
	z-index: 1;
}

.team-social-icon ul li:last-child {
	margin-right: 0;
}

.team-social-icon ul li a {
	background-color: transparent;
	color: var(--white-color);
	border: 1px solid var(--secondary-color);
	height: 28px;
	width: 28px;
	border-radius: 100%;
	text-align: center;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: all 0.3s ease-in-out;
}

.team-social-icon ul li a i {
	color: inherit;
	font-size: 12px;
}

.team-social-icon ul li a:hover {
	border-color: var(--dark-color);
	color: var(--accent-color);
}

.team-content {
	text-align: center;
	color: white;
}

.team-content h3 {
	font-size: 16px;
	text-transform: capitalize;
	margin-bottom: 5px;
	color: white;
}

.team-content p {
	text-transform: capitalize;
	margin: 0;
	font-size: 14px;
}

/************************************/
/*** 	 18. Services page Css	  ***/
/************************************/

.page-services {
	padding: 100px 0 70px;
}

.page-services .service-item {
	background-color: var(--white-color);
	border-radius: 20px;
	width: 100%;
	height: calc(100% - 30px);
	margin-bottom: 30px;
	padding: 40px;
}

.page-services .service-item .service-item-content {
	margin-bottom: 20px;
}

.page-services .service-item .service-item-content h3 {
	color: var(--primary-color);
}

.page-services .service-item .service-item-content p {
	color: var(--text-color);
}

.readmore-btn {
	position: relative;
	font-size: 18px;
	font-weight: 700;
	text-transform: capitalize;
	color: var(--accent-color);
	padding-right: 30px;
	transition: all 0.3s ease-in-out;
}

.readmore-btn:hover {
	color: var(--primary-color);
}

.readmore-btn::before {
	content: '';
	position: absolute;
	top: 50%;
	right: 0;
	bottom: 0;
	background: url(../images/accent-arrow.svg);
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
	width: 24px;
	height: 24px;
	transform: translateY(-50%);
	transition: 0.4s ease-in-out;
}

.readmore-btn:hover::before {
	filter: brightness(0) invert(0);
	transform: translateY(-50%) rotate(45deg);
}

/************************************/
/*** 	19. Service Single Css	  ***/
/************************************/

.page-service-single {
	padding: 100px 0;
}

.service-sidebar {
	position: sticky;
	top: 100px;
	margin-right: 30px;
}

.service-catagery-list {
	background: var(--white-color);
	border-radius: 20px;
	padding: 30px;
	margin-bottom: 50px;
}

.service-catagery-list h3 {
	font-size: 22px;
	text-transform: capitalize;
	margin-bottom: 30px;
}

.service-catagery-list ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

.service-catagery-list ul li {
	border-bottom: 1px solid var(--divider-color);
	padding-bottom: 20px;
	margin-bottom: 20px;
	transition: all 0.3s ease-in-out;
}

.service-catagery-list ul li:last-child {
	margin: 0;
	padding: 0;
	border-bottom: none;
}

.service-catagery-list ul li a {
	position: relative;
	display: block;
	text-transform: capitalize;
	color: inherit;
	transition: all 0.3s ease-in-out;
}

.service-catagery-list ul li a::before {
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	background: url(../images/accent-arrow.svg) no-repeat;
	background-position: right center;
	background-size: auto;
	width: 24px;
	height: 24px;
	transition: all 0.3s ease-in-out;
	filter: brightness(0) saturate(100%) invert(50%) sepia(82%) saturate(1207%) hue-rotate(348deg) brightness(95%) contrast(91%);
}

.service-catagery-list ul li a:hover:before {
	transform: rotate(45deg);
}

.service-catagery-list ul li:hover a {
	color: var(--accent-color);
}

.sidebar-cta-box {
	border-radius: 20px;
	overflow: hidden;
}

.sidebar-img img {
	width: 100%;
	object-fit: cover;
	aspect-ratio: 1 / 0.63;
	transition: all 0.4s ease-in-out;
}

.sidebar-cta-box:hover .sidebar-img img {
	transform: scale(1.1)
}

.sidebar-cta-Body {
	background: var(--white-color);
	padding: 30px;
}

.sidebar-cta-content {
	margin-bottom: 30px;
}

.sidebar-cta-content h3 {
	font-size: 22px;
	text-transform: capitalize;
	margin-bottom: 10px;
}

.sidebar-cta-content p {
	margin-bottom: 0;
}

.sidebar-cta-contact ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

.sidebar-cta-contact ul li {
	color: var(--primary-color);
	margin-bottom: 20px;
	display: flex;
	align-items: center;
}

.sidebar-cta-contact ul li:last-child {
	margin: 0;
}

.sidebar-cta-contact ul li i {
	font-size: 18px;
	color: var(--accent-color);
	margin-right: 15px;
}

.service-featured-image {
	margin-bottom: 30px;
}

.service-featured-image figure {
	display: block;
	border-radius: 20px;
	overflow: hidden;
}

.service-featured-image img {
	border-radius: 20px;
	width: 100%;
	aspect-ratio: 1 / 0.66;
	/* object-fit: cover; */
}

.service-entry {
	margin-bottom: 50px;
}

.service-entry p {
	margin-bottom: 20px;
}

.service-entry p:last-child {
	margin-bottom: 0;
}

.service-entry h2 {
	font-size: 50px;
	font-weight: 300;
	line-height: 1.1em;
	color: var(--primary-color);
	margin-bottom: 20px;
}

.service-entry h2 span {
	font-weight: 700;
	background-image: linear-gradient(267.43deg, var(--accent-color) 4.95%, var(--dark-color) 97.92%);
	background-clip: text;
	-webkit-text-fill-color: transparent;
}

.service-entry ul {
	margin-bottom: 20px;
	padding: 0;
	list-style: none;
}

.service-entry ul li {
	position: relative;
	color: var(--primary-color);
	text-transform: capitalize;
	padding-left: 30px;
	margin-bottom: 20px;
}

.service-entry ul li:last-child {
	margin-bottom: 0;
}

.service-entry ul li::before {
	content: '\f00c';
	font-family: 'FontAwesome';
	position: absolute;
	top: 0;
	left: 0;
	font-size: 20px;
	background-image: linear-gradient(267.43deg, var(--accent-color) 4.95%, var(--dark-color) 97.92%);
	background-clip: text;
	-webkit-text-fill-color: transparent;
}

.service-entry-img {
	margin-bottom: 50px;
}

.service-entry-img figure {
	display: block;
	border-radius: 20px;
	overflow: hidden;
}

.service-entry-img img {
	border-radius: 20px;
	width: 100%;
	aspect-ratio: 1 / 0.5;
	object-fit: cover;
}

.business-process-steps {
	margin: 30px 0 20px;
}

.business-planing-images {
	display: flex;
	flex-wrap: wrap;
	gap: 20px 30px;
}

.business-planing-img {
	width: calc(50% - 15px);
}

.business-planing-img figure {
	display: block;
	border-radius: 20px;
	overflow: hidden;
}

.business-planing-img img {
	border-radius: 20px;
	width: 100%;
	object-fit: cover;
	aspect-ratio: 1 / 0.93;
}

/************************************/
/*** 	 20. Blog Archive Css	  ***/
/************************************/

.page-blog {
	padding: 100px 0;
}

.post-item {
	height: calc(100% - 40px);
	margin-bottom: 40px;
}

.post-featured-image {
	position: relative;
	border-radius: 20px;
	margin-bottom: 30px;
	overflow: hidden;
}

.post-featured-image figure a {
	display: block;
	cursor: none;
}

.post-featured-image figure img {
	width: 100%;
	aspect-ratio: 1 / 0.74;
	object-fit: cover;
	height: 200px;
	border-radius: 20px;
	transition: all 0.4s ease-in-out;
}

.post-item:hover .post-featured-image figure img {
	transform: scale(1.1);
}

.post-btn {
	position: absolute;
	top: 30px;
	right: 30px;
	z-index: 1;
}

.post-btn a {
	background-image: linear-gradient(to right, var(--dark-color) 0%, var(--accent-color) 50%, var(--dark-color) 100%);
	background-size: 200% auto;
	height: 50px;
	width: 50px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.4s ease-in-out;
}

.post-btn a:hover {
	background-position: right center;
}

.post-btn a img {
	max-width: 24px;
	transition: all 0.4s ease-in-out;
}

.post-btn a:hover img {
	filter: brightness(0) invert(0);
}

.post-item:hover .post-btn a img {
	transform: rotate(45deg);
}

.post-item-content h2 {
	font-size: 22px;
	margin-bottom: 15px;
}

.post-item-content h2 a {
	color: inherit;
}

.post-item-content p {
	margin: 0;
}

.page-pagination {
	margin-top: 20px;
	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(--white-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-color);
}

/************************************/
/***      21. Blog Single css	  ***/
/************************************/

.page-single-post {
	padding: 100px 0;
}

.post-image {
	position: relative;
	margin-bottom: 30px;
}

.post-image figure {
	display: block;
}

.post-image figure,
.post-image img {
	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 {
	line-height: 1.2em;
	margin: 0 0 0.6em;
}

.post-entry h1 span,
.post-entry h2 span {
	font-weight: 400;
}

.post-entry h1 {
	font-size: 70px;
}

.post-entry h2 {
	font-size: 50px;
}

.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: 20px;
}

.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 ol li {
	margin-bottom: 20px;
	font-size: 18px;
	font-weight: 600;
	color: var(--text-color);
}

.post-entry ul {
	padding: 0;
	margin: 20px 0 20px;
	padding-left: 20px;
}

.post-entry ul li {
	font-size: 18px;
	font-weight: 500;
	color: var(--primary-color);
	position: relative;
	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: var(--white-color) url(../images/icon-blockquote.svg) no-repeat;
	background-position: 35px 30px;
	background-size: 58px;
	border-radius: 20px;
	padding: 30px 30px 30px 100px;
	margin-bottom: 30px;
}

.post-entry blockquote p {
	font-size: 20px;
	font-weight: 600;
	line-height: 1.4em;
	color: var(--primary-color);
}

.post-entry blockquote p:last-child {
	margin-bottom: 0;
}

.tag-links {
	font-size: 24px;
	font-weight: 600;
	color: var(--primary-color);
	display: inline-flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 10px;
}

.post-tags .tag-links a {
	display: inline-block;
	font-size: 16px;
	font-weight: 600;
	text-transform: capitalize;
	background-image: linear-gradient(to right, var(--dark-color) 0%, var(--accent-color) 50%, var(--dark-color) 100%);
	background-size: 200% auto;
	color: var(--white-color);
	border-radius: 100px;
	padding: 8px 20px;
	transition: all 0.3s ease-in-out;
}

.post-tags .tag-links a:hover {
	background-position: right center;
	color: var(--primary-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-image: linear-gradient(to right, var(--dark-color) 0%, var(--accent-color) 50%, var(--dark-color) 100%);
	background-size: 200% auto;
	color: var(--white-color);
	border-radius: 50%;
	width: 36px;
	height: 36px;
	transition: all 0.3s ease-in-out;
}

.post-social-sharing ul li:hover a {
	background-position: right center;
	color: var(--primary-color);
}

.post-social-sharing ul li a i {
	font-size: 18px;
	color: inherit;
}

/************************************/
/*** 	  22. Team Page Css	      ***/
/************************************/

.page-team {
	padding: 100px 0 70px;
}

/************************************/
/*** 	 23. Team Single Css	  ***/
/************************************/

.page-team-single {
	padding: 90px 0;
}

.team-single-image {
	position: sticky;
	top: 100px;
	margin-right: 30px;
}

.team-single-image figure {
	display: block;
	border-radius: 20px;
	overflow: hidden;
}

.team-single-image img {
	width: 100%;
	object-fit: cover;
	aspect-ratio: 1 / 1.2;
	border-radius: 20px;
	overflow: hidden;
}

.team-member-info {
	margin-bottom: 60px;
}

.team-info-header {
	margin-bottom: 30px;
}

.team-info-header h3 {
	display: inline-block;
	font-size: 16px;
	font-weight: 400;
	text-transform: capitalize;
	color: var(--white-color);
	background: linear-gradient(267.43deg, var(--accent-color) 4.95%, var(--dark-color) 97.92%);
	border-radius: 100px;
	padding: 10px 20px;
	margin-bottom: 15px;
}

.team-info-header h2 {
	font-size: 50px;
	text-transform: capitalize;
}

.team-info-body {
	margin-bottom: 40px;
}

.team-info-body p:last-child {
	margin: 0;
}

.team-info-list ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

.team-info-list ul li {
	display: block;
	margin-bottom: 20px;
}

.team-info-list ul li:last-child {
	margin-bottom: 0;
}

.team-info-list ul li span {
	font-size: 22px;
	font-weight: 700;
	text-transform: capitalize;
	color: var(--primary-color);
	display: inline-block;
	width: 25%;
}

.team-member-experience {
	margin-bottom: 60px;
}

.member-experience-list ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

.member-experience-list ul li {
	position: relative;
	text-transform: capitalize;
	padding-left: 30px;
	margin-bottom: 20px;
}

.member-experience-list ul li:last-child {
	margin-bottom: 0;
}

.member-experience-list ul li::before {
	content: '\f00c';
	font-family: 'FontAwesome';
	position: absolute;
	top: 0;
	left: 0;
	font-size: 20px;
	background-image: linear-gradient(267.43deg, var(--accent-color) 4.95%, var(--dark-color) 97.92%);
	background-clip: text;
	-webkit-text-fill-color: transparent
}

.member-contect-form form .form-control {
	font-size: 16px;
	font-weight: 500;
	line-height: 1.6em;
	color: var(--primary-color);
	background: transparent;
	border-width: 0 0 1px 0;
	border-color: var(--divider-color);
	border-radius: 0;
	padding: 12px 0;
	outline: none;
	box-shadow: none;
}

.member-contect-form form .form-control::placeholder {
	font-weight: 500;
	color: var(--primary-color);
}

/************************************/
/*** 	 24. Pricing Page css	  ***/
/************************************/

.page-pricing {
	padding: 100px 0;
}

.page-pricing .pricing-box {
	display: block;
	background-color: var(--white-color);
	border-radius: 20px;
	border: none;
	height: calc(100% - 30px);
	margin-bottom: 30px;
	padding: 40px;
}

.page-pricing .pricing-box .pricing-box-content {
	width: 100%;
	border-right: none;
	border-bottom: 1px solid var(--divider-color);
	padding: 0 0 30px 0;
	margin: 0 0 30px 0;
}

.page-pricing .pricing-box.highlighted-box .pricing-box-content {
	border-color: var(--dark-divider-color);
}

.page-pricing .pricing-box .pricing-btn .btn-default {
	width: 100%;
	text-align: center;
	padding: 17px;
}

.page-pricing .pricing-box .pricing-btn .btn-default::before {
	display: none;
}

.page-pricing .pricing-box .pricing-list {
	width: 100%;
}

.page-pricing .pricing-box .pricing-list ul li {
	width: 100%;
}

.page-pricing .pricing-benefit-list {
	margin-top: 20px;
}

.page-pricing .pricing-benefit-list ul {
	justify-content: center;
	gap: 20px 50px;
}

/************************************/
/***   25. Testimonial Page Css	  ***/
/************************************/

.page-testimonial {
	padding: 100px 0;
}

.client-testimonial-item {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 80px;
	border-bottom: 1px solid var(--divider-color);
	padding-bottom: 50px;
	margin-bottom: 50px;
}

.client-testimonial-item:last-child {
	border-bottom: none;
	margin: 0;
	padding: 0;
}

.client-testimonial-author {
	width: calc(40% - 40px);
	display: flex;
	align-items: center;
}

.client-author-image {
	margin-right: 40px;
}

.client-author-image figure {
	display: block;
	border-radius: 50%;
	overflow: hidden;
}

.client-author-image img {
	max-width: 100px;
	border-radius: 50%;
}

.client-author-content {
	width: calc(100% - 140px);
}

.client-author-content h3 {
	font-size: 22px;
	text-transform: capitalize;
	margin-bottom: 5px;
}

.client-author-content p {
	text-transform: capitalize;
	margin-bottom: 0;
}

.client-testimonial-content {
	width: calc(60% - 40px);
	background: url(../images/blockquote.svg) no-repeat;
	background-position: top left;
	background-size: 56px auto;
	padding: 10px 0 0 70px;
}

.client-testimonial-content p {
	margin-bottom: 0;
}

/************************************/
/***     26. 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 {
	border-radius: 20px;
}

.page-gallery-box .photo-gallery img {
	aspect-ratio: 1 / 0.75;
	object-fit: cover;
	border-radius: 20px;
}

/************************************/
/***     27. Video Gallery css    ***/
/************************************/

.page-video-gallery {
	padding: 100px 0 70px;
}

.video-gallery-image {
	border-radius: 20px;
	overflow: hidden;
	height: calc(100% - 30px);
	margin-bottom: 30px;
}

.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: 50%;
	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: linear-gradient(263deg, var(--accent-color) 0.16%, var(--dark-color) 99.84%);
	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.75;
	object-fit: cover;
	border-radius: 20px;
}

/************************************/
/***       28. FAQs Page css      ***/
/************************************/

.page-faq {
	padding: 90px 0;
}

.faqs-sidebar {
	position: sticky;
	top: 100px;
	margin-right: 30px;
}

.faqs-catagery-list {
	background: var(--white-color);
	border-radius: 20px;
	padding: 30px;
	margin-bottom: 50px;
}

.faqs-catagery-list ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

.faqs-catagery-list ul li {
	border-bottom: 1px solid var(--divider-color);
	padding-bottom: 20px;
	margin-bottom: 20px;
	transition: all 0.3s ease-in-out;
}

.faqs-catagery-list ul li:last-child {
	border-bottom: none;
	margin: 0;
	padding: 0;
}

.faqs-catagery-list ul li a {
	position: relative;
	text-transform: capitalize;
	display: block;
	color: inherit;
	transition: all 0.3s ease-in-out;
}

.faqs-catagery-list ul li a::before {
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	background: url(../images/accent-arrow.svg) no-repeat;
	background-position: right center;
	background-size: auto;
	width: 24px;
	height: 24px;
	transition: all 0.3s ease-in-out;
}

.faqs-catagery-list ul li a:hover:before {
	transform: rotate(45deg);
}

.faqs-catagery-list ul li:hover a {
	color: var(--accent-color);
}

.page-faq-accordion {
	margin-bottom: 25px;
}

.page-faq-accordion:last-child {
	margin-bottom: 0;
}

/************************************/
/***    29. Contact Us Page css   ***/
/************************************/



.page-contact-us .section-row .section-title {
	margin-right: 20px;
}

.contact-us-form {
	background-color: var(--white-color);
	border-radius: 20px;
	padding: 40px;
}

.contact-us-title {
	margin-bottom: 40px;
}

.contact-us-title h3 {
	font-size: 22px;
	text-transform: capitalize;
	margin-bottom: 10px;
}

.contact-us-title p {
	margin-bottom: 0;
}

.contact-us-form form .form-control {
	font-size: 16px;
	font-weight: 500;
	line-height: 1.6em;
	color: var(--primary-color);
	background: transparent;
	border-width: 0 0 1px 0;
	border-color: var(--divider-color);
	border-radius: 0;
	padding: 12px 0;
	outline: none;
	box-shadow: none;
}

.contact-us-form form .form-control::placeholder {
	color: var(--primary-color);
}

.contact-information {
	margin-left: 20px;
}

.contact-info-item {
	border-bottom: 1px solid var(--divider-color);
	margin-bottom: 30px;
	padding-bottom: 30px;
}

.contact-info-item:last-child {
	border-bottom: none;
	margin-bottom: 0;
	padding-bottom: 0;
}

.contact-info-contant {
	margin-bottom: 20px;
}

.contact-info-contant h3 {
	font-size: 22px;
	text-transform: capitalize;
	margin-bottom: 10px;
}

.contact-info-contant p {
	margin-bottom: 0;
}

.contact-info-body {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
}

.contact-info-body .icon-box {
	background-image: linear-gradient(to right, var(--dark-color) 0%, var(--accent-color) 50%, var(--dark-color) 100%);
	background-size: 200% auto;
	border-radius: 50%;
	width: 40px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-right: 20px;
	transition: all 0.4s ease-in-out;
}

.contact-info-body:hover .icon-box {
	background-position: right center;
}

.contact-info-body .icon-box img {
	max-width: 20px;
}

.contact-info-title {
	width: calc(100% - 60px);
}

.contact-info-title h3 {
	font-size: 22px;
	line-height: normal;
	color: var(--accent-color);
}

.google-map {
	overflow: hidden;
}

.google-map .container-fluid {
	padding: 0;
}

.google-map-iframe,
.google-map-iframe iframe {
	width: 100%;
	height: 600px;
}

.google-map-iframe iframe {
	filter: grayscale(1);
	transition: all 0.4s ease-in-out;
}

.google-map-iframe:hover iframe {
	filter: grayscale(0);
}

/*************************************/
/*** 30. Book Appointment Page css ***/
/*************************************/

.page-book-appointment {
	padding: 100px 0;
}

.booking-timing-title {
	margin-bottom: 20px;
}

.booking-timing-title h3 {
	font-size: 22px;
}

.booking-timing-list ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

.booking-timing-list ul li {
	color: var(--primary-color);
	margin-bottom: 15px;
}

.booking-timing-list ul li:last-child {
	margin-bottom: 0;
}

.booking-timing-list ul li span {
	font-weight: 600;
}

.appointment-form {
	background-color: var(--white-color);
	border-radius: 30px;
	padding: 60px;
}

.appointment-form p {
	margin-bottom: 50px;
}

.appointment-form form .form-control {
	font-size: 16px;
	font-weight: 500;
	line-height: 1.6em;
	color: var(--primary-color);
	background-color: transparent;
	border-width: 0 0 1px 0;
	border-color: var(--divider-color);
	border-radius: 0;
	text-align: left;
	padding: 12px 0;
	outline: none;
	box-shadow: none;
}

.appointment-form form .form-control::placeholder {
	color: var(--primary-color);
}

.appointment-form form .btn-default {
	width: 100%;
	text-align: center;
	padding: 17px;
	margin-top: 20px;
}

.appointment-form form .btn-default::before {
	display: none;
}

/************************************/
/*** 	   31. 404 Page css       ***/
/************************************/

.error-page {
	padding: 100px 0;
}

.error-page-image {
	text-align: center;
	margin-bottom: 30px;
}

.error-page .error-page-content {
	text-align: center;
}

.error-page-content-heading {
	margin-bottom: 30px;
}

.error-page-content-body p {
	margin-bottom: 30px;
}



.potential-body-list li {
	position: relative;
}

.potential-body-list.arrowchange ul li:before {
	content: '\f00c';
	font-family: 'FontAwesome';
	position: absolute;
	top: 0;
	left: 0;
	font-size: 20px;
	background-image: linear-gradient(267.43deg, var(--accent-color) 4.95%, var(--dark-color) 97.92%);
	background-clip: text;
	-webkit-text-fill-color: transparent;

}

/************************************/
/***       32. Responsive Css     ***/
/************************************/

@media only screen and (max-width: 1800px) {

	.bg-section {
		width: 100%;
		margin-left: 0px;
		margin-right: 0px;
	}
}

@media only screen and (max-width: 1560px) {

	.bg-section {
		width: 100%;
		margin-left: 0px;
		margin-right: 0px;
	}

	header.main-header {
		width: calc(100% - 30px);
		margin-left: 15px;
		margin-right: 15px;
		margin-top: 15px;
	}

	.navbar {
		max-width: 100%;
	}

	.hero.hero-slider-layout .hero-pagination {
		padding-left: 0;
		margin: 0 0 0 45px;
	}

	.export-coaching-step {
		padding-right: 80px;
	}

	.page-header-box {
		max-width: 100%;
	}

	.main-footer {
		margin-bottom: 0px;
	}
}

@media only screen and (max-width: 1366px) {

	.export-coaching-step {
		padding-right: 50px;
	}
}

@media only screen and (max-width: 1024px) {

	header.main-header {
		padding: 0px;
	}

	.main-menu .nav-menu-wrapper {
		margin-left: 20px;
	}

	.main-menu ul li a {
		padding: 10px !important;
	}

	.hero {
		padding: 350px 0px 100px;
	}

	.export-coaching-step {
		padding-right: 20px;
	}

	.page-header-box {
		padding: 0;
	}
}

@media only screen and (max-width: 991px) {

	.col-lg-5 .our-potential-img {
		margin-top: 20px;
	}

	header.main-header {
		padding: 0;
	}

	.navbar {
		padding: 20px 0 0;
	}

	header.main-header .header-sticky.active .navbar {
		padding: 20px 0;
	}

	.slicknav_nav li,
	.slicknav_nav ul {
		display: block;
	}

	.responsive-menu,
	.navbar-toggle {
		display: block;
	}

	.header-btn {
		display: none;
	}

	.bg-section {
		width: 100%;
		margin-left: 0px;
		margin-right: 0px;
		border-radius: 0;
	}

	header.main-header {
		width: 100%;
		margin: 0px;
	}

	.section-row {
		margin-bottom: 40px;
	}

	.section-btn {
		text-align: left;
		margin-top: 20px;
	}

	.section-title {
		margin-bottom: 30px;
	}

	.section-title h3 {
		margin-bottom: 10px;
	}

	.section-title h1 {
		font-size: 55px;
	}

	.section-title h2 {
		font-size: 40px;
	}

	.section-title p {
		margin-top: 15px;
	}

	.hero {
		padding: 280px 0 80px;
		margin-top: -95px;
	}

	.hero.hero-slider-layout .hero-slide {
		padding: 245px 0px 150px;
	}

	.hero-slide .hero-section .hero-content {
		max-width: 550px;
	}

	.hero.hero-slider-layout .hero-pagination {
		margin: 0 0 0 15px;
	}

	.hero-slide .hero-section .hero-content .section-title p {
		font-size: 16px;
	}

	.export-coaching-box {
		margin-top: 40px;
	}

	.export-coaching-step-content p {
		font-size: 15px;
	}

	.about-us {
		padding: 50px 0;
	}

	.about-us-images {
		max-width: 80%;
		margin: 0 auto;
		padding: 0 15px 40px 50px;
		margin-bottom: 30px;
	}

	.about-us-img-2 {
		right: 0;
	}

	.about-us-img-2 img {
		aspect-ratio: 1 / 0.99;
	}

	.about-experience-box {
		padding: 15px;
		max-width: 150px;
	}

	.about-experience-box .icon-box img {
		max-width: 35px;
	}

	.about-experience-box .about-experience-content h3 {
		font-size: 18px;
	}

	.company-review {
		transform: rotate(-180deg) translate(-50%, 50%);
	}

	.about-us-list ul li {
		margin-bottom: 15px;
	}

	.about-us-list {
		margin-bottom: 30px;
	}

	.about-us-body {
		margin-bottom: 30px;
		padding-bottom: 30px;
	}

	.company-client-images {
		margin-bottom: 5px;
	}

	.our-service {
		background-size: 50% auto;
		padding: 50px 0;
	}

	.service-content {
		margin-right: 0;
		margin-bottom: 30px;
	}

	.service-item-list {
		margin-bottom: 30px;
		padding-bottom: 30px;
		gap: 30px;
	}

	.service-item .icon-box {
		margin-bottom: 20px;
	}

	.service-item-content h3 {
		font-size: 20px;
	}

	.our-potential {
		padding: 50px 0;
	}

	.our-potential-content {
		height: auto;
		margin-bottom: 30px;
	}

	.our-potential-counter {
		padding-bottom: 30px;
		margin-bottom: 30px;
	}

	.potential-counter-item .counter-circle {
		margin-right: 20px;
	}

	.potential-counter-item .counter-circle h2 {
		font-size: 26px;
		width: 100px;
		height: 100px;
	}

	.potential-counter-content {
		width: calc(100% - 124px);
	}

	.potential-body-content h3 {
		margin-bottom: 15px;
	}

	.our-potential-img {
		margin-left: 0px;
		height: auto;
	}

	.our-potential-img img {
		height: auto;
		aspect-ratio: 1 / 0.9;
	}

	.our-pricing {
		padding: 50px 0;
	}

	.pricing-content {
		margin-right: 0px;
		margin-bottom: 30px;
	}

	.pricing-box {
		padding: 30px;
	}

	.pricing-title h2 {
		font-size: 40px;
	}

	.pricing-title h2 sup {
		font-size: 26px;
	}

	.our-expertise {
		padding: 50px 0;
	}

	.our-expertise-content {
		margin-bottom: 30px;
	}

	.expertise-list {
		max-width: 590px;
		margin: 0 auto;
	}

	.expertise-image img {
		max-width: 60px;
	}

	.intro-video {
		padding: 250px 0 50px;
	}

	.intro-video-list {
		margin-top: 30px;
		padding-top: 30px;
	}

	.intro-video-list ul li {
		width: calc(50% - 15px);
	}

	.how-we-work {
		padding: 50px 0;
	}

	.how-work-content {
		padding-top: 20px;
		margin-top: 20px;
	}

	.how-work-content h3 {
		font-size: 20px;
	}

	.scrolling-ticker.work-ticker {
		margin-top: 20px;
	}

	.scrolling-ticker-box {
		--gap: 30px;
	}

	.scrolling-content span {
		font-size: 70px;
	}

	.scrolling-content span img {
		margin-right: 30px;
	}

	.company-growth {
		padding: 50px 0;
	}

	.company-growth-image {
		margin-bottom: 30px;
	}

	.company-growth-image img {
		aspect-ratio: 0;
	}

	.company-growth-content {
		margin-left: 0px;
	}

	.company-growth-content .section-title h2 {
		max-width: 100%;
	}

	.company-growth-box {
		gap: 30px;
		margin-top: 40px;
	}

	.company-growth-item {
		width: calc(50% - 15px);
	}

	.company-growth-item h2 {
		font-size: 34px;
	}

	.company-growth-item h3 {
		font-size: 20px;
	}

	.our-faqs {
		padding: 50px 0;
	}

	.our-faqs-content {
		margin-bottom: 30px;
	}

	.faqs-cta-content h3 {
		font-size: 20px;
	}

	.our-faq-section .accordion-header .accordion-button {
		font-size: 20px;
		padding: 15px 40px 15px 15px;
	}

	.our-faq-section .accordion-item .accordion-body {
		padding: 15px 40px 15px 15px;
	}

	.our-faq-section .accordion-item .accordion-button::after,
	.our-faq-section .accordion-item .accordion-button.collapsed::after {
		right: 15px;
		width: 20px;
		height: 20px;
	}

	.our-testimonial {
		background-size: 30% auto;
		padding: 50px 0;
	}

	.our-testimonial-content {
		position: initial;
		margin-bottom: 30px;
	}

	.testimonial-header {
		margin-bottom: 20px;
	}

	.testimonial-rating-company img {
		max-height: 40px;
	}

	.testimonial-quote img {
		max-width: 44px;
	}

	.testimonial-rating {
		margin-bottom: 15px;
	}

	.testimonial-content {
		margin-bottom: 20px;
	}

	.author-content h3 {
		font-size: 20px;
	}

	.testimonial-slider .testimonial-button-next,
	.testimonial-slider .testimonial-button-prev {
		width: 40px;
		height: 40px;
	}

	.testimonial-rating-box {
		margin-top: 50px;
	}

	.testimonial-rating-item {
		width: calc(50% - 15px);
		padding: 15px 20px;
	}

	.testimonial-rating-item .icon-box {
		margin-bottom: 15px;
		padding-bottom: 15px;
	}

	.our-blog {
		padding: 50px 0;
	}

	.our-blog-content {
		position: initial;
		margin-bottom: 30px;
	}

	.blog-box {
		margin-left: 0px;
	}

	.blog-item {
		padding-bottom: 30px;
		margin-bottom: 30px;
	}

	.blog-item-content h2 {
		font-size: 20px;
	}

	.main-footer {
		background-size: 30% auto;
		padding: 50px 0 0;
		margin-bottom: 0;
	}

	.main-footer::before {
		background-size: 30% auto;
	}

	.footer-social-links ul li {
		margin-right: 10px;
	}

	.footer-social-links ul li a {
		width: 30px;
		height: 30px;
	}

	.footer-social-links ul li a i {
		font-size: 16px;
	}

	.footer-copyright {
		padding: 20px 0;
		margin-top: 40px;
	}

	.footer-menu ul li {
		margin-right: 20px;
	}

	.page-header {
		padding: 170px 0 70px;
		margin-top: 0px;
	}

	.page-header-box h1 {
		font-size: 55px;
	}

	.our-approach {
		padding: 50px 0;
	}

	.our-approach-content {
		margin-bottom: 30px;
	}

	.mission-vision-list .mission-vision-item {
		margin-bottom: 30px;
	}

	.our-value-item {
		padding-top: 30px;
	}

	.our-approach-image {
		padding-left: 0px;
		text-align: center;
	}

	.mission-vision-list .col-md-6:nth-child(odd) .mission-vision-item {
		padding-right: 30px;
	}

	.mission-vision-list .col-md-6:nth-child(even) .mission-vision-item {
		padding-left: 30px;
	}

	.mission-vision-content h3 {
		font-size: 20px;
		margin-bottom: 10px;
	}

	.our-approach-image img {
		aspect-ratio: 1 / 0.7;
	}

	.our-partners {
		padding: 50px 0 20px;
	}

	.our-partners .contact-circle {
		text-align: left;
		margin-top: 20px;
	}

	.our-partners .company-logo {
		padding: 35px 25px;
	}

	.company-experience {
		padding: 50px 0;
	}

	.company-experience-content {
		margin-right: 0px;
	}

	.company-experience-list {
		margin-top: 30px;
		margin-left: 0;
	}

	.company-experience-item h2 {
		font-size: 34px;
	}

	.company-experience-item h3 {
		font-size: 20px;
	}

	.why-choose-us {
		padding: 50px 0;
	}

	.why-choose-us-content {
		margin-right: 0;
		margin-bottom: 30px;
	}

	.why-choose-skillbar .skills-progress-bar {
		margin-bottom: 30px;
	}

	.why-choose-us-image {
		max-width: 580px;
		margin: 0 auto;
	}

	.our-team {
		padding: 50px 0 20px;
	}

	.team-content h3 {
		font-size: 17px;
	}

	.team-social-icon ul {
		padding: 10px 20px;
	}

	.page-services {
		padding: 50px 0 20px;
	}

	.page-services .service-item {
		padding: 30px;
	}

	.page-service-single {
		padding: 50px 0;
	}

	.service-sidebar {
		position: inherit;
		margin: 0 0 30px 0;
	}

	.service-catagery-list {
		padding: 20px;
		margin-bottom: 30px;
	}

	.service-catagery-list h3 {
		font-size: 20px;
		margin-bottom: 20px;
	}

	.service-catagery-list ul li {
		padding-bottom: 15px;
		margin-bottom: 15px;
	}

	.sidebar-cta-Body {
		padding: 20px;
	}

	.sidebar-cta-content {
		margin-bottom: 20px;
	}

	.sidebar-cta-content h3 {
		font-size: 20px;
	}

	.sidebar-cta-contact ul li {
		margin-bottom: 15px;
	}

	.service-featured-image {
		margin-bottom: 20px;
	}

	.service-entry {
		margin-bottom: 30px;
	}

	.service-entry h2 {
		font-size: 40px;
	}

	.service-entry ul li {
		margin-bottom: 15px;
	}

	.service-entry-img {
		margin-bottom: 30px;
	}

	.business-process-steps {
		margin-bottom: 0px;
	}

	.page-blog {
		padding: 50px 0;
	}

	.post-item {
		height: calc(100% - 30px);
		margin-bottom: 30px;
	}

	.post-featured-image {
		margin-bottom: 20px;
	}

	.post-btn {
		top: 20px;
		right: 20px;
	}

	.post-btn a {
		height: 40px;
		width: 40px;
	}

	.post-btn a img {
		max-width: 22px;
	}

	.post-item-content h2 {
		font-size: 20px;
		margin-bottom: 10px;
	}

	.page-pagination {
		margin-top: 10px;
	}

	.page-single-post {
		padding: 50px 0;
	}

	.post-image {
		margin-bottom: 20px;
	}

	.post-entry blockquote {
		background-position: 25px 25px;
		background-size: 50px;
		padding: 25px 25px 25px 90px;
		margin-bottom: 20px;
	}

	.post-entry blockquote p {
		font-size: 18px;
	}

	.post-entry h2 {
		font-size: 40px;
	}

	.post-entry ul li {
		font-size: 16px;
	}

	.post-tags {
		margin-bottom: 20px;
	}

	.post-social-sharing ul {
		text-align: left;
	}

	.tag-links {
		font-size: 22px;
	}

	.post-tags .tag-links a {
		font-size: 16px;
		padding: 6px 15px;
	}

	.page-team {
		padding: 50px 0 20px;
	}

	.page-team-single {
		padding: 50px 0;
	}

	.team-single-image {
		position: initial;
		margin-right: 0;
		margin-bottom: 30px;
	}

	.team-single-image img {
		aspect-ratio: 1 / 0.79;
		object-position: top center;
	}

	.team-member-info {
		margin-bottom: 40px;
	}

	.team-info-header {
		margin-bottom: 20px;
	}

	.team-info-header h2 {
		font-size: 40px;
	}

	.team-info-body {
		margin-bottom: 30px;
	}

	.team-info-list ul li {
		margin-bottom: 15px;
	}

	.team-info-list ul li span {
		font-size: 20px;
	}

	.team-member-experience {
		margin-bottom: 40px;
	}

	.member-experience-list ul li {
		margin-bottom: 15px;
	}

	.page-pricing {
		padding: 50px 0;
	}

	.page-pricing .pricing-box {
		padding: 30px;
	}

	.page-pricing .pricing-benefit-list {
		margin-top: 10px;
	}

	.page-testimonial {
		padding: 50px 0;
	}

	.client-testimonial-item {
		padding-bottom: 30px;
		margin-bottom: 30px;
		gap: 0;
	}

	.client-testimonial-author {
		width: 35%;
	}

	.client-author-image {
		margin-right: 20px;
	}

	.client-author-image img {
		max-width: 80px;
	}

	.client-author-content {
		width: calc(100% - 100px);
	}

	.client-author-content h3 {
		font-size: 20px;
	}

	.client-testimonial-content {
		background-size: 45px auto;
		width: 65%;
		padding-left: 50px;
	}

	.client-testimonial-content p {
		font-size: 14px;
	}

	.page-gallery {
		padding: 50px 0 20px;
	}

	.page-gallery-box .photo-gallery img {
		aspect-ratio: 1 / 0.8;
	}

	.page-video-gallery {
		padding: 50px 0 20px;
	}

	.video-gallery-image img {
		aspect-ratio: 1 / 0.8;
	}

	.page-faq {
		padding: 50px 0;
	}

	.faqs-sidebar {
		position: initial;
		margin-right: 0px;
		margin-bottom: 30px;
	}

	.faqs-catagery-list {
		padding: 20px;
		margin-bottom: 30px;
	}

	.faqs-catagery-list ul li {
		padding-bottom: 15px;
		margin-bottom: 15px;
	}

	.page-faq-accordion {
		margin-bottom: 40px;
	}

	.page-contact-us {
		padding: 50px 0;
	}

	.page-contact-us .section-row .section-title {
		margin-right: 0;
	}

	.contact-us-form {
		padding: 30px;
		margin-bottom: 30px;
	}

	.contact-us-title {
		margin-bottom: 30px;
	}

	.contact-us-title h3 {
		font-size: 20px;
	}

	.contact-information {
		margin-left: 0;
	}

	.contact-info-item {
		margin-bottom: 20px;
		padding-bottom: 20px;
	}

	.contact-info-contant {
		margin-bottom: 10px;
	}

	.contact-info-contant h3 {
		font-size: 20px;
		margin-bottom: 5px;
	}

	.contact-info-title h3 {
		font-size: 20px;
	}

	.google-map-iframe,
	.google-map-iframe iframe {
		height: 450px;
	}

	.page-book-appointment {
		padding: 50px 0;
	}

	.book-appointment-content {
		margin-bottom: 30px;
	}

	.booking-timing-title {
		margin-bottom: 15px;
	}

	.booking-timing-title h3 {
		font-size: 20px;
	}

	.booking-timing-list ul li {
		margin-bottom: 10px;
	}

	.appointment-form {
		padding: 30px;
	}

	.appointment-form p {
		margin-bottom: 30px;
	}

	.error-page {
		padding: 50px 0;
	}

	.error-page-image {
		margin-bottom: 20px;
	}

	.error-page-content-heading {
		margin-bottom: 15px;
	}

	.error-page-content-body p {
		margin-bottom: 20px;
	}
}

@media only screen and (max-width: 767px) {
	.tabs-name {
		display: block !important;
	}

	.tabs-name-section .auto-container a.tabs-1 {
		display: block;
		text-align: center;
		width: 90%;
		margin: 0 auto;
	}

	.learning-structure {
		display: block;
		padding: 40px 0;
	}

	.learning-lab {
		margin-bottom: 40px;
	}

	.learning-lab:last-child {
		margin-bottom: 0px;
	}

	.section-title h3 {
		font-size: 13px;
	}

	.btn-default {
		padding: 15px 49px 15px 15px;
	}

	.btn-default::before {
		top: -2px;
		transform: translate(-15px, 50%);
	}

	.btn-default:hover::before {
		transform: translate(-15px, 50%) rotate(45deg);
	}

	.section-row {
		margin-bottom: 30px;
	}

	.section-title h1 {
		font-size: 40px;
	}

	.section-title h2 {
		font-size: 24px;
	}

	.section-title p {
		margin-top: 15px;
	}

	.hero {
		padding: 200px 0 100px;
		margin-top: -95px;
	}

	.hero.hero-slider-layout .hero-slide {
		padding: 195px 0px 100px;
	}

	.hero.hero-slider-layout .hero-pagination {
		bottom: 30px;
	}

	.hero-btn .btn-default {
		margin: 0 50px 10px 0;
	}

	.hero-btn .btn-default.btn-highlighted {
		margin: 0px;
	}

	.export-coaching-box {
		display: none;
	}

	.export-coaching-step {
		width: 100%;
		padding: 0;
		border: none;
		display: flex;
		align-items: center;
		margin-bottom: 20px
	}

	.export-coaching-step:last-child {
		margin-bottom: 0;
	}

	.export-coaching-step .icon-box {
		margin-right: 20px;
		margin-bottom: 0;
	}

	.export-coaching-step-content {
		width: calc(100% - 50px);
	}

	.about-us-images {
		max-width: 100%;
		padding: 0 20px 34px 30px;
	}

	.about-us-img-2 {
		max-width: 145px;
	}

	.about-experience-box {
		padding: 10px;
		max-width: 110px;
		transform: translateY(30%);
	}

	@keyframes experiencemoveobject {
		50% {
			left: 20px;
		}
	}

	.about-experience-box .about-experience-content h3 {
		font-size: 16px;
	}

	.company-review {
		transform: rotate(-180deg) translate(0, 20%);
	}

	.company-review h3 {
		font-size: 14px;
	}

	.about-us-list ul li {
		font-size: 18px;
		padding-left: 25px;
	}

	.about-us-list ul li::before {
		font-size: 18px;
	}

	.about-us-body {
		gap: 25px;
	}

	.about-comapny-client,
	.about-company-result {
		width: 100%;
	}

	.company-result-content h3 {
		font-size: 18px;
	}

	.service-item {
		width: 100%;
	}

	.service-item .icon-box {
		height: 60px;
		width: 60px;
	}

	.service-item .icon-box img {
		max-width: 25px;
	}

	.service-item-content h3 {
		font-size: 18px;
	}

	.service-footer p span {
		margin-right: 10px;
		padding: 0px 10px;
	}

	.potential-counter-item {
		width: 100%;
	}

	.potential-counter-item .counter-circle h2 {
		font-size: 20px;
		width: 115px;
		height: 115px;
	}

	.potential-counter-content {
		width: calc(100% - 104px);
	}

	.potential-counter-content h3 {
		font-size: 18px;
	}

	.potential-body-content h3 {
		font-size: 18px;
	}

	.pricing-box {
		padding: 20px;
	}

	.pricing-box-content {
		width: 100%;
		border-right: none;
		padding-right: 0px;
		margin-right: 00px;
		margin-bottom: 20px;
	}

	.pricing-title h2 {
		font-size: 30px;
	}

	.pricing-title h2 sup {
		font-size: 20px;
		top: -0.3em;
	}

	.pricing-btn {
		margin-top: 10px;
	}

	.pricing-list {
		width: 100%;
	}

	.pricing-list ul {
		gap: 10px;
	}

	.pricing-list ul li {
		width: calc(50% - 5px);
		padding-left: 20px;
		font-size: 14px;
	}

	.pricing-list ul li::before {
		font-size: 16px;
	}

	.pricing-benefit-list {
		margin-top: 20px;
	}

	.pricing-benefit-list ul {
		gap: 15px;
	}

	.pricing-benefit-list ul li {
		width: calc(50% - 7.5px);
		font-size: 12px;
	}

	.pricing-benefit-list ul li img {
		max-width: 16px;
		margin-right: 5px;
	}

	.expertise-list {
		max-width: 100%;
		gap: 20px 10px;
	}

	.expertise-item:first-child {
		margin: 0;
	}

	.expertise-image img {
		max-width: 40px;
	}

	.expertise-content {
		padding: 0 20px 0 10px;
	}

	.intro-video .section-title {
		margin-bottom: 30px;
	}

	.video-play-button {
		justify-content: left;
	}

	.intro-video-list ul li {
		width: 100%;
	}

	.intro-video-list ul li:after {
		top: 3px;
		font-size: 18px;
	}

	.how-work-item .icon-box {
		height: 60px;
		width: 60px;
	}

	.how-work-item .icon-box img {
		max-width: 30px;
	}

	.how-work-content h3 {
		font-size: 18px;
		margin-bottom: 5px;
	}

	.scrolling-ticker-box {
		--gap: 20px;
	}

	.scrolling-content span {
		font-size: 50px;
		-webkit-text-stroke: 3px transparent;
	}

	.scrolling-content span img {
		max-width: 40px;
		margin-right: 20px;
	}

	.company-growth-image img {
		aspect-ratio: 0;
	}

	.company-growth-item {
		width: 100%;
	}

	.company-growth-item h2 {
		font-size: 28px;
	}

	.company-growth-item h3 {
		font-size: 18px;
	}

	.faqs-cta-box {
		padding: 20px;
	}

	.faqs-cta-content h3 {
		font-size: 18px;
	}

	.our-faq-section .accordion-header .accordion-button {
		font-size: 16px;
	}

	.our-faq-section .accordion-item .accordion-body {
		padding: 15px;
	}

	.our-faq-section .accordion-item .accordion-body p {
		font-size: 14px;
		line-height: 22px;
	}

	.our-faq-section .accordion-item .accordion-button::after,
	.our-faq-section .accordion-item .accordion-button.collapsed::after {
		width: 18px;
		height: 18px;
	}

	.testimonial-slider-content,
	.testimonial-slider-image {
		width: 100%;
	}

	.our-testimonial-content .section-title {
		padding-bottom: 20px;
	}

	.testimonial-slider-image img {
		aspect-ratio: 1 / 1.12;
	}

	.testimonial-content p {
		font-size: 16px;
	}

	.author-content h3 {
		font-size: 18px;
	}

	.testimonial-rating-item {
		width: 100%;
	}

	.testimonial-rating-item .icon-box img {
		max-width: 150px;
		max-height: 30px;
	}

	.blog-item {
		display: block;
	}

	.blog-item .blog-featured-image {
		width: 100%;
		margin-bottom: 15px;
	}

	.blog-item-body {
		width: 100%;
		margin-left: 0px;
	}

	.blog-item-content h2 {
		font-size: 18px;
	}

	.footer-contact-info h3 {
		font-size: 20px;
		margin-bottom: 10px;
	}

	.footer-contact-info p span {
		font-size: 18px;
	}

	.footer-social-links {
		margin: 30px 0;
	}

	.footer-copyright {
		padding: 15px 0;
		margin-top: 30px;
	}

	.footer-menu {
		margin-bottom: 10px;
	}

	.footer-menu ul,
	.footer-copyright-text {
		text-align: center;
	}

	.page-header-box h1 {
		font-size: 40px;
	}

	.mission-vision-item {
		border-bottom: 1px solid var(--divider-color);
	}

	.mission-vision-list .col-12:last-child .mission-vision-item {
		border-bottom: none;
	}

	.mission-vision-list .col-md-6:last-child .mission-vision-item {
		border-bottom: none;
	}

	.mission-vision-list .col-md-6:nth-child(odd) .mission-vision-item {
		padding: 0 0 30px 0;
		margin-bottom: 30px;
	}

	.mission-vision-list .col-md-6:nth-child(even) .mission-vision-item {
		padding-left: 0;
		padding: 0 0 30px 0;
		margin-bottom: 30px;
	}

	.mission-vision-item:after {
		display: none;
	}

	.mission-vision-item .icon-box {
		margin-bottom: 15px;
	}

	.mission-vision-content h3 {
		font-size: 18px;
		margin-bottom: 10px;
	}

	.mission-vision-item.our-value-item .icon-box {
		margin-right: 0px;
	}

	.mission-vision-item.our-value-item {
		display: block;
		border-top: none;
		padding-top: 0px;
	}

	.our-partners .contact-circle img {
		max-width: 100px;
	}

	.our-partners .company-logo {
		padding: 15px 20px;
	}

	.company-experience-item {
		width: 100%;
	}

	.company-experience-item h2 {
		font-size: 28px;
	}

	.company-experience-item h3 {
		font-size: 18px;
	}

	.why-choose-us-img-1 {
		width: 250px;
	}

	.why-choose-us-img-2 {
		width: 220px;
	}

	.why-choose-contact-circle img {
		max-width: 100px;
	}

	.why-choose-contact-circle {
		top: 20px;
		left: 0;
	}

	.team-image {
		margin-bottom: 15px;
	}

	.team-member-item .team-social-icon {
		bottom: 4%;
	}

	.team-social-icon {
		transform: unset;
	}

	.page-services .service-item {
		padding: 20px;
	}

	.service-catagery-list h3 {
		font-size: 18px;
	}

	.sidebar-cta-content h3 {
		font-size: 18px;
		margin-bottom: 5px;
	}

	.service-entry h2 {
		font-size: 28px;
	}

	.service-entry ul li {
		margin-bottom: 15px;
	}

	.business-planing-img {
		width: 100%;
	}

	.business-planing-img img {
		aspect-ratio: 1 / 0.72;
	}

	.post-image figure,
	.post-image img {
		aspect-ratio: 1 / 0.70;
	}

	.post-entry blockquote {
		background-position: 20px 20px;
		padding: 70px 20px 20px 20px;
	}

	.post-entry h2 {
		font-size: 28px;
	}

	.tag-links {
		font-size: 20px;
	}

	.team-single-image img {
		aspect-ratio: 1 / 1.2;
	}

	.team-member-info {
		margin-bottom: 30px;
	}

	.team-info-header {
		margin-bottom: 15px;
	}

	.team-info-header h2 {
		font-size: 28px;
	}

	.team-info-body {
		margin-bottom: 20px;
	}

	.team-info-list ul li span {
		font-size: 18px;
		width: 32%;
	}

	.team-member-experience {
		margin-bottom: 30px;
	}

	.page-pricing .pricing-box .pricing-box-content {
		padding: 0 0 20px 0;
		margin: 0 0 20px 0;
	}

	.page-pricing .pricing-box {
		padding: 20px;
	}

	.page-pricing .pricing-benefit-list ul {
		gap: 10px 15px;
	}

	.client-testimonial-item {
		display: block;
	}

	.client-testimonial-author {
		width: 100%;
		margin-bottom: 20px;
	}

	.client-author-content h3 {
		font-size: 18px;
	}

	.client-testimonial-content {
		width: 100%;
		background-size: 40px auto;
		padding: 0 0 0 45px;
	}

	.page-faq-accordion {
		margin-bottom: 30px;
	}

	.contact-us-form {
		padding: 25px 20px;
		margin-bottom: 30px;
	}

	.contact-us-title {
		margin-bottom: 20px;
	}

	.contact-info-contant h3 {
		font-size: 18px;
	}

	.contact-info-title h3 {
		font-size: 18px;
	}

	.google-map-iframe,
	.google-map-iframe iframe {
		height: 350px;
	}

	.booking-timing-title h3 {
		font-size: 18px;
	}

	.appointment-form {
		padding: 20px;
	}

	.appointment-form p {
		margin-bottom: 20px;
	}

	.appointment-form form .btn-default {
		padding: 15px;
		margin-top: 10px;
	}
}

.about-feature-card {
	position: relative;
	padding-top: 60px;
	margin-top: 90px;
}

.service-item {
	margin-top: 90px;
}

.service-item:first-child {
	margin-top: -60px;
}

.about-feature-card .icon {
	background-color: #fff;
	height: 180px;
	width: 180px;
	display: flex;
	align-items: center;
	justify-content: center;
	position: absolute;
	top: -38px;
	left: 50%;
	transform: translateX(-50%);
	border: 1px solid #E1E9F0;
	box-shadow: 0px 18px 38px rgba(47, 74, 101, 0.11);
	border-radius: 50%;
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-ms-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}

.about-feature-card .icon img {
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-ms-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}

.about-feature-card .icon img {
	border-radius: 50%;
	width: 170px;
	height: 170px;
	object-fit: cover;
}

.about-feature-card .content {
	/* background-color: #FFF; */
	padding: 0 20px 30px 20px;
	padding-top: 100px;
	text-align: center;
	border: 1px solid #E1E9F0;
	border-radius: 15px;
}

.about-feature-card .content .title {
	font-size: 22px;
	font-weight: 600;
	color: white;
}

.about-feature-card .content p {
	margin-bottom: 0;
	color: white;
}

.grid .our-potential-counter {
	border-bottom: 1px solid var(--divider-color);
	padding-bottom: 40px;
	margin-bottom: 0px;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	flex-wrap: wrap;
	gap: 30px;
}

.grid .potential-counter-item {
	width: 100%;
	display: block;
	align-items: center;
}

.counetr1 h3 {
	font-size: 18px;
	margin-bottom: 25px;
}

.grid .potential-counter-item .counter-circle {
	/* border: 2px solid transparent; */
	background: linear-gradient(263deg, var(--accent-color) 0.16%, var(--dark-color) 99.84%) border-box;
	border-radius: 50%;
	margin-right: 7px;
	/* display: block; */
	width: 114px;
	height: 114px;
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
}

.grid .potential-counter-content {
	width: 100%;
	margin-top: 15px;
}

.grid .potential-counter-content h3 {
	font-size: 14px;
	font-weight: 600;
}

.our-service {
	width: 98%;
	margin: 0 auto;
	border-radius: 30px;
}

.team-info-header h2 {
	font-size: 40px;
	text-transform: capitalize;
}

.ttm-social-links-wrapper {
	margin-top: 30px;
}

.team-info-body h2 {
	margin-top: -10px;
	margin-bottom: 8px;
}

.our-testimonial.bg-section {
	width: 98%;
	margin: 50px auto;
	border-radius: 30px;
	padding: 90px 0;
	margin-bottom: 0px;
}

.founder .company-growth-image img {
	width: 100%;
	aspect-ratio: unset;
	object-fit: cover;
	border-radius: 20px;
}

.company-growth.bg-section.founder {
	padding: 0;
}

.h2-35 {
	font-size: 35px !important;
}

.bg-unic {
	padding: 50px 0;
	background: var(--primary-color) url(../images/service-bg-circle.svg);
	background-repeat: no-repeat;
	background-position: left bottom;
	background-size: auto;
	background-attachment: fixed;
}

.bg-unic2 {
	background: #fff;
	padding: 30px;
	border-radius: 30px;
}

.icf-logos.getting {
	padding-top: 10px;
	padding-bottom: 40px;
}

.our-potential-body.getting {
	border-top: 1px solid #dedede;
	padding-top: 30px;
	padding-top: 30px;
	margin-top: 30px;
}

.our-potential-img.height-auto img {
	height: auto;
	aspect-ratio: 5 / 3;
}

.section-title.big-text p {
	font-size: 24px;
	line-height: 34px;
	/* font-weight: 600; */
}




.pricing-box-list.service-item-list .side-line h3 b {
	color: #ffffff;
}

.pricing-box-list.service-item-list .side-line h4 {
	color: #ffffff;
}

.pricing-box-list.service-item-list .side-line p {
	color: #ffffff;
}

.pricing-box-list.service-item-list .side-line:before {
	background: #ffffffbf;
}

.faqs-box {
	margin-bottom: 60px;
}

.levels-d-img {
	/* box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px; */
	padding: 30px;
	border-radius: 20px;
	border: 1px solid #cdcdcd;
	height: 160px;
	display: flex;
	justify-content: center;
	align-items: center;
}

.section-btn.text-align-start {
	text-align: start;
	margin-top: 40px;
}

.potential-body-list.number li {
	position: unset;
	padding-left: 0;
	margin-left: 20px;
	list-style-type: disclosure-closed;
}

.post-card {
	position: relative;
	z-index: 1;
	border-radius: 10px;
	overflow: hidden;
}

.post-card .post-thumb {
	position: relative;
	z-index: 1;
	height: 300px;
}

.post-card .post-thumb:before {
	background: linear-gradient(180deg, rgba(0, 0, 0, 0.06) 0%, #020F21 100%);
	border-radius: 10px;
	content: "";
	width: 100%;
	height: 100%;
	position: absolute;
	bottom: 0;
	left: 0;
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-ms-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
	z-index: 1;
}

.post-card .post-thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transform: scale(1);
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-ms-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}

.post-card .post-content-wrap {
	position: absolute;
	bottom: 50px;
	left: 50px;
	z-index: 2;
	padding-right: 32px;
}

.post-content .category {
	background-color: #e87722;
	;
	display: inline-block;
	color: white;
	font-size: 14px;
	font-weight: 700;
	text-transform: uppercase;
	line-height: 1;
	padding: 8px 20px;
	border-radius: 100px;
	margin-bottom: 20px;
}

.post-content .title {
	color: white;
	font-weight: 500;
	line-height: 1.5;
	margin-bottom: 0px;
	font-size: 20px;
}

.potential-body-list.number li:before {
	all: unset;
}

.post-content.potential-body-list.number ul span {
	color: white;
	text-align: center;
	display: block;
	font-weight: 600;
}

.post-content .title a {
	background: linear-gradient(var(--ed-color-common-white) 0%, var(--ed-color-common-white) 98%);
	background-size: 0 2px;
	background-repeat: no-repeat;
	background-position: left 100%;
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-ms-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
	color: white;
}

.post-meta {
	display: flex;
	align-items: center;
	list-style: none;
	flex-wrap: wrap;
	row-gap: 10px;
}

.post-card.post-card-1 .post-meta li {
	color: var(--ed-color-common-white);
}

.post-meta li:not(:last-of-type) {
	margin-right: 20px;
}

.post-meta li {
	font-family: var(--ed-ff-body);
	color: var(--ed-color-heading-primary);
	font-size: 16px;
	font-weight: 400;
	display: flex;
	align-items: center;
	column-gap: 10px;
}

.post-meta li i {
	font-size: 14px;
	margin-top: 1px;
}

.intro-video.bg-section.program {
	background: url(../images/post-11.jpg);
	padding: 100px;
	background-position: center;
	background-size: cover;
	justify-content: center;
}

.our-potential-img.aspect-unset {
	margin: 60px 0;
	height: auto;
}

.our-potential-img.aspect-unset img {
	aspect-ratio: unset;
	/* margin: 40px 0; */
	margin-left: 0;
	padding-right: 10px;
	margin-top: 10px;
}

.d-block .our-potential-counter {
	display: block;
	text-align: center;
	padding-top: 20px;
}

.d-block .potential-counter-item {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	position: relative;
}

.potential-counter-item:before {
	content: '';
	position: absolute;
	background: #e87722;
	width: 2px;
	height: 100%;
	top: -16px;
	right: 0px;
}

.potential-counter-item:last-child:before {
	all: unset;
}

.section-btn.text-align-center {
	text-align: center;
	margin-top: 40px;
}


.bg-body {
	background-color: #f3f3f3 !important;
}

.page-team.program-detail .row>* {
	padding-right: 0px;
	padding-left: 0px;
}

.page-team.program-detail .team-image img {
	border-radius: 0px;
}

.page-team.program-detail .team-image {
	border-radius: 0px;
}

.our-potential-img.height-auto.unique img {
	aspect-ratio: unset;
}

.our-potential-img.advance {
	margin-left: 0;
}

.our-potential-img.advance img {
	aspect-ratio: unset;
}

table.table.table-bordered {
	--bs-table-bg: unset;
}

table.table.table-bordered th {
	color: white;
	padding: 14px;
}

table.table.table-bordered td {
	padding: 14px;
	border: 1px solid #ffffff;
}

.tabs-name {
	margin-bottom: 0 !important;
}

.d-block .potential-counter-item {
	text-align: center;
}

.icon-box span {
	font-size: 35px;
	color: white;
	font-weight: 700;
}

ul.ul-points li {
	position: unset;
	padding-left: 0px;
	margin-left: 18px;
	padding-top: 1px;
	list-style-type: disc;
}

.img-thumbnail {
	padding: 20px;
}

.form-box.default-form {
	padding: 30px 30px;
	border-radius: 20px;
	background: white;
}


.frm-reg-it input,
.default-form textarea {
	border: 1px solid #cecece !important;
	border-top: none !important;
	border-right: none !important;
	border-left: none !important;
}

.authority.bettor-ranking .form-box.default-form {
	padding: 0px 0px;
}

.section-title.main-head {
	text-align: center;
}

.section-title.main-head h2 {
	font-size: 52px;
	text-shadow: 2px 3px #d3d3d3;
	color: #013222;
	font-weight: 600;
}

.section-title.main-head h4 {
	font-size: 48px;
	text-transform: none;
	color: black;
	font-weight: 600;
}

.section-title.main-head h5 {
	font-size: 30px;
	color: black;
	font-weight: 600;
}

.section-title.main-head h6 {
	font-size: 25px;
	color: black;
	font-weight: 500;
}

.section-title.main-head p {
	font-size: 28px;
	line-height: 40px;
}

.section-title.main-head.second h4 {
	font-size: 24px;
	color: white;
}

.section-title.main-head.third h2 {
	font-size: 40px;
	text-shadow: unset;
	color: #165204;
	font-weight: 600;
}

.section-title.main-head.third h4 {
	font-size: 30px;
	text-shadow: unset;
	color: #000;
	font-weight: 600;
}


.section-title.main-head h6 {
	font-size: 28px;
	color: #000;
	font-weight: 500;
}

.section-title.main-head h6 span {
	color: #ef7631;
}

.how-we-work.bg-landing.bg-color {
	background-image: linear-gradient(to right, #ef7631 10%, #ef7631d1 40%, #ffe325ab 80%);
	position: relative;
}

.arrow-shape {
	position: absolute;
	width: 20%;
	top: -10%;
	left: 8%;
}

.section-title.main-head.fifth h4 {
	font-size: 26px;
}

.section-title.main-head.fifth h2 {
	font-size: 50px;
	text-shadow: unset;
}

.section-title.main-head.fifth p {
	font-size: 20px;
	color: #535353;
	width: 70%;
	margin: 0 auto;
	margin-top: 32px;
}

.section-title.main-head.six h2 {
	font-size: 36px;
	text-shadow: unset;
}

.section-title.main-head.six h2 span {
	font-size: 34px;
	display: block;
}

.section-title.main-head.six h4 {
	font-size: 25px;
	font-weight: 500;
}

.section-title.main-head.six {
	text-align: left;
}

.section-title.main-head.six p {
	font-size: 20px;
	line-height: 35px;
	color: #535353;
}

.pr-5 {
	padding-right: 3rem;
}

.pl-5 {
	padding-left: 3rem;
}

.section-title.main-head.six1 p {
	font-size: 24px;
	line-height: 30px;
	width: 80%;
	margin: 0 auto;
	margin-top: 30px;
	color: black;
}


}

.section-title.main-head.eight.ab img {}

.section-title.main-head.fourth h2 {
	color: black;
	font-size: 65px;
	text-shadow: 0px 0px 1px #000000;
	font-weight: 600;
	line-height: 65px;
}

.section-title.main-head.fourth h4 {
	font-size: 85px;
	color: #e87722;
	font-weight: 600;
	line-height: 90px;
}

.section-title.main-head.fourth h6 {
	font-size: 36px;
	text-transform: uppercase;
	padding: 20px 0;
	font-weight: 600;
}

.section-title.main-head.seven span {
	/* text-transform: uppercase;
    display: block; */
	color: black;
}

.section-title.main-head.seven h6 {
	font-size: 25px;
	width: 80%;
	margin: 0 auto;
	color: #535353;
}

.section-title.main-head.seven span.green-color {
	color: green;
	display: inline-block;
}

.section-title.main-head.seven p {
	padding: 0px 60px;
	font-size: 22px;
	line-height: 34px;
}

.section-title.main-head.eight {
	text-align: left;
}

.section-title.main-head.eight h2 {
	font-size: 32px;
	text-shadow: unset;
	color: black;
	line-height: 44px;
}

.section-title.main-head.eight h6 {
	font-size: 24px;
	color: #535353;
	line-height: 36px;
}

.potential-body-list.arrowchange li:before {
	content: unset;
}

.potential-body-list.arrowchange li {
	font-size: 20px;
	padding-left: 0;
	line-height: 32px;
}

.potential-body-list.arrowchange li img {
	width: 22px;
	margin-right: 10px;
	margin-bottom: 4px;
}

.section-title.main-head.nine p {
	font-size: 24px;
	width: 78%;
	margin: 0 auto;
	line-height: 34px;
}

.section-title.main-head.nine p span {
	display: block;
	margin-top: 8px;
	font-size: 20px;
}

.section-title.main-head.nine {
	position: relative;
}

img.quote {
	position: absolute;
	top: -1%;
	left: 12%;
	width: 32px;
}

img.quote.mark {
	bottom: 32%;
	right: 12%;
	width: 32px;
	top: unset;
	left: unset;
	background: unset;
}

.form-group.landing {
	position: relative;
	margin-bottom: 32px;
	padding-left: 0;
}

.section-title.eleven p {
	font-size: 19px;
	line-height: 30px;
}

.eleven .potential-counter-item:before {
	height: 114%;
	background: #0d3e4c;
	right: -30px;
}

.d-flex.counetr.eleven.gap-5 {
	padding: 0 40px;
}


#download {
	padding: 90px 100px 90px;

	background-image: url(https://www.coachmastersacademy.com/assets/seo_landing_10jan2022/img/banner/banner-6.jpg);
	background-size: cover;
}

.download-left {
	display: flex;
	align-items: inherit;
	text-align: center;
	justify-content: center;
}

.download-left h3 {
	color: #000;
	text-align: left !important;
	font-size: 50px;
	line-height: 58px;
}

.download-left h3 span {
	margin-bottom: -24px;
}

.download-left h3 span {
	color: #013222;
	text-align: left;
}

.download-left p {
	color: #000;
	font-weight: 400 !important;
}

.download-left p {
	font-size: 22px;
	line-height: 30px;
	text-align: center;
}

.download-right-list {
	padding: 30px 40px;
	background: white;
	border-radius: 20px;
}

.section-title.accel {
	text-align: center;
}

.section-title.accel h2 {
	font-size: 44px;
}

.section-title.accel h4 {
	font-size: 33px;
}

.section-title.accel p {
	font-size: 20px;
	color: #000000;
	width: 68%;
	margin: 0 auto;
	margin-top: 20px;
}



.form-group {
	margin-bottom: 15px;
}

form .form-control {
	box-shadow: none;
	padding-left: 0;

}

form .form-control {
	background-color: transparent;
	border: none;
	border-bottom: 1px solid #cecece;
	border-radius: 0px;
	font-size: 15px;
	line-height: 38px;
	appearance: auto;
	padding: 0;
}

.download-right-list p {
	color: #013222;
	font-size: 22px;
	font-weight: 500 !important;
	line-height: 30px;
}

.section-btn.text-align-left {
	text-align: left;
}

.section-title.main-head.eight.ab {
	position: absolute;
	top: -50px;
	left: 0px;
	transform: translate(0%, -40%);
	width: 100%;
	padding-left: 0px;
	padding-top: 0px;
}

.section-title.main-head.eight {
	padding-left: 60px;

}

.team-image1 {
	background: #ffffff;
	padding: 20px;
	padding-bottom: 0px;
}

img.bg-image {
	position: absolute;
	top: -62%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 100%;
}

.default-form input[type="text"],
.default-form input[type="email"],
.default-form input[type="password"],
.default-form input[type="number"],
.default-form input[type="date"],
.default-form select,
.default-form textarea {
    height: 30px;
    font-size: 15px;
    font-weight: 500;
    padding: 0px 10px;
}

.frm-reg-it.under label {
	font-weight: 500;
}

form .form-control {
	border: none !important;
	border-bottom: 1px solid #cecece !important;
	border-radius: 0px !important;
	font-size: 15px !important;
	line-height: 38px !important;
	appearance: auto !important;
	outline: none !important;
}

label.checkbox-inline.radiobox {
	padding-left: 0;
	display: flex;
	align-items: center;
	gap: 10px;
}

label.checkbox-inline.radiobox input {
	margin-top: 0;
}

.form-flex.interest {
	align-items: baseline;
	gap: 50px;
}

.form-flex.interest span {
	font-size: 14px;
}

.frm-reg-it {
	margin-bottom: 28px !important;
}

.frm-reg-it.mb-low {
	margin-bottom: 20px !important;
}

.contact-form.default-form .form-name-grid.lasting .form-group.landing {
	margin-bottom: 20px !important;
}

.form-name-grid.lasting {
	margin-bottom: 30px;
}

.form-name-grid.mb-28 {
	margin-bottom: 28px !important;
}

.section-title.accel.form {
	text-align: left;
}


















/*******kanchan********/



.coach-training-bg {
	background-color: #ffbd59;
}

.coach-training-bg h2 {
	font-size: 27px;
	font-weight: 500;
	color: #000;
	margin-bottom: 15px;
}

.coach-training-bg p {
	font-size: 22px;
	width: 60%;
	margin: auto;
	padding-top: 20px;
	line-height: 40px;
}

.testimonial-icon img {
	width: 150px;
	filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(0%) hue-rotate(306deg) brightness(108%) contrast(103%);
}

.testimonial-icon.testimonial-icon-left {
	display: flex;
	justify-content: start;
	margin-bottom: -20px;
}

.testimonial-icon.testimonial-icon-right {
	display: flex;
	justify-content: end;
	margin-top: -20px;
}

.index-test p {
	width: 90%;
	margin: auto;
	font-size: 28px;
	line-height: 36px;
	font-weight: 400;
}

.index-test {

	text-align: center;
}

.number-speaks-bg {
	background-image: url(../images/n-bg.png);
	background-repeat: no-repeat;
	background-position: center;
}

.number-speaks-left h2 {
	font-size: 50px;
	font-weight: 500;
	color: #e87722;
}

.number-speaks-left h3 {
	font-size: 40px;
	font-weight: 500;
	color: #000;
	margin-bottom: 35px;
}

.number-speaks-left p {
	margin-bottom: 5px;
	font-size: 22px;
}

.number-speaks-left p span {
	font-size: 20px;
	color: #535353;
}

.text-clip {
	text-align: center;
}

.text-clip h1 {
	background: url(../images/n1.png);
	background-position: center;
	background-size: contain;
	-webkit-text-fill-color: transparent;
	background-repeat: no-repeat;
	-webkit-background-clip: text;
	width: fit-content;
	margin: auto;
	-webkit-text-stroke-width: 2px;
	-webkit-text-stroke-color: #165204;
	font-size: 200px;
	letter-spacing: 18px;
	margin-top: -61px !important;

}

.text-clip h2 {
	background: url(../images/n2.png);
	background-position: center;
	background-size: contain;
	-webkit-text-fill-color: transparent;
	-webkit-background-clip: text;
	width: fit-content;
	margin: auto;
	-webkit-text-stroke-width: 2px;
	-webkit-text-stroke-color: #165204;
	font-size: 180px;
	margin-top: -65px !important;
	background-repeat: no-repeat;

}

.text-clip p {
	font-size: 17px;
	margin-top: -52px;
}

p.p-text-position {
	/* position: absolute; */
	/* left: 0%; */
	/* top: 40%; */
	/* transform: rotate(-90deg); */
	font-size: 18px;
	margin-bottom: 15px;

}

.text-clip .p-text-position1 {
	font-size: 18px;
	margin-bottom: 25px;
	margin-top: -59px;
}

.exceptional-learning h2 {
	font-size: 40px;
	font-weight: 500;
}

.exceptional-learning h2 span {
	font-size: 35px;
	color: #e87722;
	display: block;
	line-height: 40px;
	margin-bottom: 20px;
}

.exceptional-learning p {
	font-size: 20px;
	width: 75%;
	margin: auto;
	line-height: 30px;
}

.exceptional-learning h5 {
	font-size: 22px;
	font-weight: 500;
	color: #000;
	width: 50%;
	margin: auto;
}

.exceptional-learning img {
	width: 100%;
	margin: 40px 0 0;
}

.potential-eligibility p {
	font-size: 20px;
	width: 100%;
	margin: auto;
	padding-top: 20px;
	line-height: 25px;
	color: #fff;
}

.potential-eligibility p span {
	font-size: 28px;
	color: #fff;
	font-weight: 500;
}

.potential-eligibility h5 {
	font-size: 22px;
	font-weight: 400;
	color: #ffffff;
	margin-bottom: 12px;
}

.potential-eligibility h4 {
	font-size: 25px;
	font-weight: 500;
	color: #ffffff;
	margin-bottom: 22px;
}

.position-relative.investment-p h4 {
	font-size: 24px;
	color: #535353;
	margin-top: 12px;
	font-weight: 500;
}

img.side-icon {
	width: 157px;
	position: absolute;
	right: 24%;
	top: 129%;
	transform: translate(-50%, -50%);
}

.investment p {
	font-size: 19px;
	line-height: 32px;
}

.p-first {
	font-size: 22px;
}

.p-first span {
	font-size: 25px;
	line-height: 32px;

}

.potential-eligibility {
	position: relative;
	padding: 100px 0 100px;
	background: url(../images/aboutt.png);
	background-position: center center;
	background-size: cover;
	overflow: hidden;
}

.potential-eligibility {
	background-image: url('../images/page-header-bg.jpg');
	background-size: cover;
	background-repeat: no-repeat;
	background-attachment: fixed;
	background-position: 100% !important;
}

.potential-eligibility::before {
	content: '';
	display: block;
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	background: linear-gradient(180deg, rgb(4 52 37 / 78%) 10.11%, #013222 100%);
	width: 100%;
	height: 100%;
}

.h2-font {
	font-size: 40px;
	color: #000;
	font-weight: 500;
}

.h2-font span {
	color: #e87722;
}

span.span-2 {
	color: #535353;
	font-size: 35px;
	display: block;
}

.team-content1 {
	padding: 15px;
	background: #ffffff;
	/* height: 130px; */
}

section.Well-Structured.our-potential {
	background: #eeeeee80;
}

.team-content1 h2 {
	font-size: 22px;
}

.team-content1.text-center p {
	margin: 0;
	color: #0d3e4c;
}

.team-member-item1 {
	border-radius: 20px;
	overflow: hidden;
}

h4.h4-font-title {
	color: #fff;
	font-size: 24px;
	margin-top: 25px;
}

.company-growth2 {
	padding: 0;
}



.company-growth2 {
	padding: 0;
}

.company-growth-pr {}

.company-growth2 .company-growth-image img {
	border-radius: 0;
	/* / aspect-ratio: unset; / */
}

.company-growth2 .company-growth-image figure {
	border-radius: 0;
}

.certification-p {
	font-size: 24px;
	line-height: 35px;
}

ul.ul-ml-1 {}

img.certification-img {}

.bg-body-c {
	position: relative;
	background-image: url(../images/bgg.png);

}

.section-title.eleven.under h2 {
	font-size: 40px;
	letter-spacing: 1px;
}

.section-title.eleven.under {
	padding-left: 50px;
}

.section-title.eleven.under h4 {
	font-size: 27px;
	font-weight: 500;
	letter-spacing: 1px;
}

.col-lg-9.pr-0.pl-0 {
	padding-left: 0;
	padding-right: 0;
}

.section-title.eleven.under p {
	font-size: 22px;
	text-align: center;
}

.section-title.investment h2 {
	max-width: 100%;
}

.investment-center-text h2 {
	font-size: 48px;
	font-weight: 700;
	margin: 8px 0;
}

.investment-center-text {
	position: relative;
	margin-top: 40px;
}

img.gif-arrow {
	position: absolute;
	width: 12%;
	top: 39%;
	left: 19%;
	transform: translate(-50%, -50%);
}

img.gif-arrow.right {
	position: absolute;
	width: 12%;
	top: 39%;
	right: 8%;
	left: unset;
	transform: translate(-50%, -50%);
}

.schedule-content {
	align-items: flex-start;
	margin-top: 40px;
	text-align: center;
	justify-content: center;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 0px;
}

.learning-right {
	display: flex;
	align-items: center;
	gap: 8px;
}

.learning-right span {
	font-size: 18px;
	line-height: 26px;
	text-align: left;
}

.tet {
	display: flex;
	flex-direction: column;
	align-items: inherit;

}



span.gradient-box {
	padding: 12px 40px;
	background: #ffffff;
	border-radius: 82px;
	text-align: center;
	background: linear-gradient(white, white) padding-box, linear-gradient(to right, #976bf1, #09bb7f) border-box;
	border-radius: 82em;
	border: 2px solid transparent;
	box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
	width: fit-content;
	margin: 0 auto;
	font-size: 18px;
}

span.gradient-box.box-1 {
	background: linear-gradient(white, white) padding-box, linear-gradient(to right, #0e9cb3, #09bb7f) border-box;
}

span.gradient-box.box-2 {
	background: linear-gradient(white, white) padding-box, linear-gradient(to right, #976bf1, #68e4ea) border-box;
}

span.gradient-box.box-3 {
	background: linear-gradient(white, white) padding-box, linear-gradient(to right, #976bf1, #ffa074) border-box;
}

.learning-left img {
	width: 54px;
	display: block;
}

.learning-left span {
	font-size: 20px;
	line-height: 26px;
	text-align: right;
	margin-bottom: 5px;
}

.learning-left {
	text-align: center;
	display: flex;
	justify-content: center;
	align-items: flex-end;
	flex-direction: column;
	gap: 12px;
}

.learning-right h2 {
	font-size: 57px;
	font-weight: 400;
}

.investment-center-text h6 {
	font-size: 30px;
	margin: 5px 0;
	font-weight: 600;
}

.investment-center-text p.para-g {
	width: 60%;
	margin: 0 auto;
}

.investment-center-text p.para-g a {
	color: black;
	text-decoration: underline;
}

.investment-center-text p.para-g a {
	color: black;
	text-decoration: underline !important;
	text-underline-position: under;
}

.potential-body-list h5 {
	margin-bottom: 22px;
	font-size: 18px;
}

.section-title.text-center.coaching-shop h2 {
	font-size: 38px;
	line-height: 50px;
	margin-bottom: 30px;
}


.download-left.wow.fadeInUp.text-center.animated h3 {
	text-align: center !important;
}

.download-left.wow.fadeInUp.text-center.animated p {
	width: 100%;
	margin: 10px auto;
	margin-bottom: 50px;
}

.form-group.landing.coaching textarea {
	height: 60px;
}

.form-grid-gett.coaching {
	gap: 20px;
}

.section-title.b-development h2 {
	font-size: 46px;
}

.our-potential-img.b-development {
	margin-left: 0;
	margin-right: 30px;
}

.our-expertise.b-development {
	background: white;
}

.our-expertise.b-development .expertise-item {
	background: #f3f3f3;
}

.section-title.main-head.seven.coaching-service h6 {
	font-size: 35px;
	width: 90%;
	font-weight: 700;
	color: #013222;
}

.section-title.main-head.seven.coaching-service h6 span {
	color: #013222;
}

.our-blog-content.coaching-service h4 {
	color: white;
}

.our-blog-content.coaching-service h2 {
	color: white;

}

.blog-item-body.coaching-service h2 {
	color: white;
	font-size: 28px;
}

.blog-item-body.coaching-service p {
	color: white;
}

.blog-item-content.coaching-service h2 {
	color: white;
	font-size: 28px;
}

.blog-item-content.coaching-service p {
	color: white;
}

.our-blog.our-service.bg-section p {
	color: white;
}

.our-blog.our-service.bg-section h4 {
	color: white;
}

.blog-box.coaching-service {
	margin-left: 0;
}

.how-we-work.coaching-service .potential-body-list.coaching-service h4 {
	font-size: 30px;
}

.our-potential-body.getting.coaching-service {
	border-top: unset;
	padding-top: 0;
	margin-top: 0;
}

.pricing-box.highlighted-box h2 {
	color: white;
}

.pricing-box.highlighted-box p {
	color: white;
}

.expertise-item.b-development.wow.fadeInUp.animated {
	background: white;
}

.our-potential-img.ml-0 {
	margin-left: 0;
	margin-right: 30px;
}

input.form-control:focus {
	box-shadow: none;
}

.form-group.landing label {
	margin-bottom: 0;
}






.section-btn.text-align-left {
	margin-bottom: 18px;
}

.section-title.main-head h2 span.breakline {
	color: #000;
	background: none;
	-webkit-text-fill-color: #000;
}

.image-ben {
	margin-top: 50px;
	text-align: center;
}

.image-ben img {
	width: 40%;
	border-radius: 72px;
}

.section-title h4 {
	font-size: 22px;
	color: #e87722;
	margin-top: 10px;
	font-weight: 500;
}







::-webkit-scrollbar {
	width: 6px;
	height: 0;
	border-radius: 10px;
}

::-webkit-scrollbar-thumb {
	background-color: rgb(1 50 34);
	border-radius: 10px;
}

.quote-wrapper {
	display: flex;
	/* height: 100vh; */
	padding: 0 20px;
}

.blockquote {
	position: relative;

	max-width: 100%;
	margin: 80px auto;
	align-self: center;
}

.blockquote h1 {

	position: relative;
	color: #013222;
	font-size: 24px;
	font-weight: 600;
	line-height: 40px;
	margin: 0;
	border: 4px solid #fff;
	border: solid 4px;
	border-radius: 20px;
	padding: 25px;
}

.blockquote h1 span {
	color: #e87722;
	;
}

.blockquote h1:after {
	content: "";
	position: absolute;
	border: 4px solid #013222;
	border-radius: 0 50px 0 0;
	width: 60px;
	height: 60px;
	bottom: -60px;
	left: 50px;
	border-bottom: none;
	border-left: none;
	z-index: 3;
}

.blockquote h1:before {
	content: "";
	position: absolute;
	width: 80px;
	border: 6px solid #ffffff;
	bottom: -4px;
	left: 50px;
	z-index: 2;
}

.company-growth-content.new-content p {
	font-size: 20px;
	line-height: 30px;
}

@media all and (min-width: 600px) {
	.blockquote h1 {
		font-size: 30px;
		line-height: 42px;
	}
}

.cerificate-img {
	width: 400px;
	margin: 0 auto;
	display: block;
	margin-bottom: 30px;
}

.icf-level-1-img {
	width: 550px;
}

/* .form-grid-gett.new-1{    grid-template-columns: repeat(1, 1fr);} */
.modal.popupmodal.show .modal-dialog {
	max-width: 800px;
}

.how-we-work.bg-landing p {
	font-size: 20px;
	line-height: 30px;
}

.how-we-work.bg-landing.bg-colorrr::before {
	content: '';
	display: block;
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	background: linear-gradient(180deg, rgb(255 255 255 / 69%) 10.11%, #ffffffa3 100%);
	width: 100%;
	height: 100%;
}

.cerfi-para p {
	font-size: 22px;
	line-height: 30px;
}

.section-container {
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
	padding: 40px 20px;
	text-align: center;
}

.section-header {
	color: #e87722;
	font-size: 36px;
	font-weight: bold;
	margin-bottom: 10px;
}

.section-subheader {
	color: #333;
	font-size: 24px;
	margin-bottom: 20px;
}

.section-description {
	font-size: 16px;
	color: #555;
	line-height: 1.8;
	max-width: 800px;
	margin: 0 auto 40px;
}

.stats-container {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 20px;
}

.stat-card {
	background-color: #fff;
	border: 1px solid #ddd;
	border-radius: 10px;
	padding: 35px;
	width: 300px;
	box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
	text-align: center;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stat-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.stat-number {
	font-size: 64px;
	font-weight: bold;
	color: #e87722;
	margin: 15px 0;
}

.stat-label {
	font-size: 18px;
	color: #555;
}


.tabs-wrapper.training {

	width: 100%;
}

.tabs.training {
	list-style: none;
	padding: 0;
	display: flex;
	gap: 40px;
	justify-content: center;
	padding-bottom: 30px;
	border-bottom: 1px solid #c2c2c2;
}

.tabs.training li {
	cursor: pointer;
	/*padding: 12px 20px;*/

	/* border: 1px solid #DDD; */
	transition: 0.25s;
	/* box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px; */
	position: relative;
}

.tabs.training li:after {
	position: absolute;
	content: "";
	width: 2px;
	height: 80%;
	background: #e87722;
	;
	top: 5px;
	right: -25px;
}

.tabs.training li:last-child:after {
	all: unset;
}

.tabs.training li:hover {
	border-color: #e87722;
	color: #FFF;
	background-color: #e87722;
}

.tabs.training li.active {
	border-color: #e87722;
	color: #FFF;
	background-color: #e87722;
}

.tabs-wrapper.training .tab-content {
	display: none;
	/* padding: 15px 20px; */
	margin-top: 10px;
	border-radius: 5px;
}

.tabs-wrapper.training .tab-content p {
	font-size: 16px;
	line-height: 1.6;
}

form .form-control:focus {
	box-shadow: none;
}

.frm-reg-it.width-chng {}

.sorting-div select {
	background: transparent;
}

.sorting-div select option {
	/* background: black; */
	color: black;
}

.our-blog-btn.mt-5 p {
	margin-bottom: 0;
}

.blockquote span a {
	text-decoration: underline !important;
	text-underline-position: under;
}

.blockquote span a:hover {
	color: #e87722;
	;
}

form.select-country {
	margin-top: 50px;
}

.mfp-bg {
	z-index: 99999;
}

.mfp-wrap {
	z-index: 99999;
}










.li-download-btn {
	display: flex;
	align-items: center;
	gap: 10px;
}

.our-potential-img.aspect-ratio img {
	aspect-ratio: unset;
}

.learning-structure {
	padding: 50px 0;
	display: flex;
	justify-content: space-between;
	gap: 30px;
	align-items: baseline;
}

.learning-lab {
	width: 100%;
	text-align: center;
}

.learning-lab h2 {
	font-size: 22px;
}

.team-social-icon.service-three {
    border-radius: 0px;
    bottom: 40px;
    width: 100%;
    background: #153e4dcc;
    backdrop-filter: blur(0px);
}
.team-member-item.service-three .team-image img {
    aspect-ratio: auto;
}
.team-member-item.service-three:hover .team-social-icon.service-three {
    bottom: 0px;
    padding: 16px 10px;
}
a.btn-default1 {
    color: #ffffff;
    text-decoration: underline !important;
    text-underline-position: under;
}
.our-blog.our-service.bg-section.paddingfromside {
    padding: 100px 70px;
}

.section-title .new-font {
    font-size: 30px;
    font-weight: 700;
}
.our-blog.our-service.bg-section h4 {
    color: white;
}
.section-title .new-font span {
    color: #e87722;
    display: block;
}
.blog-box.margin-low {
    margin-left: 40px;
}

.section-title h2 {
    font-size: 47px;
}

.our-partners {
    padding: 90px 0 70px;
    background: #f2f1ed;
}


.page-contact-us {
	padding: 90px 0;
}

.contact-info-contant p {
    margin-bottom: 16px;
}


.contact-us-form form .form-control {
    padding:0;
}































@media only screen and (max-width: 991px) {
	.li-download-btn a {

		margin-bottom: 10px;
	}

	.li-download-btn {
		display: block !important;

	}

	#nav-bottom #main-nav li {
		text-align: left;
		margin-bottom: 15px;
		border-bottom: 1px solid #dddddd;
		padding-bottom: 8px;
	}

	.section-title.eleven.under h2 {
		font-size: 30px;
		margin-top: 30px;
	}

	.section-title.eleven.under h4 {
		font-size: 20px;
	}

	img.gif-arrow.right {
		width: 20%;
		right: -8%;
	}

	img.gif-arrow {
		width: 20%;
		left: 12%;
	}

	.growth-image {
		text-align: center;
	}

	.section-title.main-head.second h4 {
		font-size: 20px;
	}

	.arrow-shape {
		left: 2%;
	}

	.grid .our-potential-counter {
		grid-template-columns: repeat(1, 1fr);
	}

	.our-potential {
		padding: 30px 0;
	}

	.our-potential-img.height-auto.unique.img-mg {
		margin-top: 0;
		margin-bottom: 32px;
	}


	.section-title.main-head h2 {
		font-size: 48px;
	}

	.section-title.main-head h4 {
		font-size: 34px;
	}

	.section-title.main-head h5 {
		font-size: 28px;
	}

	.section-title.main-head h6 {
		font-size: 24px;
	}

	.section-title.main-head p {
		font-size: 22px;
		margin-bottom: 15px;
	}

	.section-title.main-head.third h2 {
		font-size: 32px;
	}

	.section-title.main-head.third h4 {
		font-size: 24px;
	}

	.section-title.main-head p {
		font-size: 19px;
	}

	.section-title.main-head.fourth h2 {
		font-size: 40px;
		line-height: 48px;
		margin-top: 30px;
	}

	.section-title.main-head.fourth h4 {
		font-size: 54px;
		line-height: 58px;
	}

	.section-title.main-head.fourth h6 {
		font-size: 28px;
	}

	.section-title.main-head.fifth h2 {
		font-size: 38px;
	}

	.section-title.main-head.fifth h4 {
		font-size: 24px;
	}

	.section-title.main-head.fifth p {
		font-size: 18px;
		width: 100%;
		margin-top: 20px;
	}

	.section-title.main-head.six h2 {
		font-size: 34px;
	}

	.section-title.main-head.six h2 span {
		font-size: 31px;
		margin: 4px 0;
	}

	.section-title.main-head.six h4 {
		font-size: 23px;
	}

	.section-title.main-head.six.pl-5 {
		padding-left: 0;
	}

	.section-title.main-head.six.pr-5 {
		padding-right: 0;
	}

	.section-title.main-head.six p {
		font-size: 18px;
		line-height: 28px;
	}

	.col-lg-6.mb-5.center {
		margin-bottom: 16px !important;
	}

	.section-title.main-head.six1 p {
		font-size: 18px;
		line-height: 27px;
		width: 100%;
		margin-top: 12px;
	}

	.section-title.main-head.seven h6 {
		font-size: 19px;
		width: 100%;
	}

	.col-lg-7.mt-5 {
		margin-top: 20px !important;
	}

	h4.h4-font-title {
		font-size: 17px;
	}

	.index-test p {
		width: 95%;
		font-size: 18px;
		line-height: 27px;
	}

	.testimonial-slider .testimonial-button-next {
		margin-left: 10px;
	}

	.testimonial-slider .testimonial-button-next,
	.testimonial-slider .testimonial-button-prev {
		width: 35px;
		height: 35px;
	}

	.testimonial-slider .testimonial-button-next::before,
	.testimonial-slider .testimonial-button-prev::before {
		background-size: 20px auto;
	}

	.our-potential {
		padding: 50px 0;
	}

	.our-testimonial.bg-section {
		width: 98%;
		padding: 50px 0;
		margin-bottom: 0px;
	}


	.section-title.main-head.seven p {
		padding: 0px 0px;
		font-size: 17px;
		line-height: 27px;
		margin-bottom: 0px;
	}

	.section-title.main-head.eight {
		margin-top: 490px;
		padding-left: 0px;
		padding-top: 40px;
	}

	.section-title.main-head.eight.ab {
		transform: translate(0%, -10%);
	}

	.section-title.main-head.eight.ab {
		margin-top: 0px;
	}

	.section-title.main-head.eight h2 {
		font-size: 28px;
	}

	.section-title.main-head.eight h6 {
		font-size: 20px;
	}

	.potential-body-list.arrowchange li {
		font-size: 20px;
		padding-left: 0;
		margin-bottom: 12px !important;
	}

	.investment-center-text h6 {
		font-size: 25px;
	}

	.potential-body-list.arrowchange li img {
		width: 22px;
		margin-right: 8px;
		margin-bottom: 6px;
	}

	.potential-body-list.arrowchange.mb-5.mt-5.wow.fadeInUp {
		margin: 20px 0 !important;
	}

	.section-title.main-head.nine p {
		font-size: 20px;
		width: 96%;
		margin: 0 auto;
		line-height: 28px;
	}

	img.quote {
		position: absolute;
		top: -4%;
		left: -2%;
		width: 24px;
	}

	img.quote.mark {
		bottom: 22%;
		right: 0%;
		width: 24px;
	}

	.section-title.main-head.nine p span {
		margin-top: 6px;
		font-size: 18px;
	}

	.our-testimonial-content .section-title h2 {
		font-size: 34px;
	}

	.index-test p {
		width: 90%;
		margin: auto;
		font-size: 18px;
		line-height: 24px;
		font-weight: 400;
	}

	.testimonial-icon img {
		width: 100px;
	}

	.section-title.eleven h2 {
		font-size: 35px;
	}

	.section-title.eleven p {
		font-size: 18px;
		line-height: 27px;
	}

	.our-potential-counter1 {
		margin-top: 30px;
	}

	.our-potential-content.grid.d-block.eleven {
		margin-bottom: 0;
	}

	.section-title.accel h2 {
		font-size: 34px;
	}

	.section-title.accel h4 {
		font-size: 24px;
	}

	.section-title.accel p {
		font-size: 18px;
		width: 100%;
	}

	.grid .potential-counter-item .counter-circle {
		width: 104px;
		height: 104px;
	}

	.grid .potential-counter-content h3 {
		font-size: 15px;
	}

	.potential-counter-item:before {
		width: 2px;
	}

	.potential-counter-item .counter-circle h2 {
		font-size: 22px;
	}

	.our-potential-content {
		margin-bottom: 0px;
	}

	.our-potential-img.aspect-unset.mt-0.mb-0 {
		text-align: center;
		margin-top: 30px !important;
	}

	.our-potential-img.aspect-unset.mt-0.mb-0 img {
		width: 88%;
	}

	.our-potential-img.aspect-unset {
		margin: 14px 0;
		margin-bottom: 30px;
	}


	.our-potential.bg-body-c .section-title.main-head.eight {
		margin-top: 0;
		padding-left: 0px;
		padding-top: 0px;
	}

	.our-potential.bg-body-c {
		padding-top: 0;
	}

	.h2-font {
		font-size: 32px;
	}

	span.span-2 {
		font-size: 24px;
	}

	.team-content1.text-center p {
		font-size: 17px;
	}

	.team-content1 {

		height: auto;
	}

	.growth-image {
		text-align: center;
	}

	.growth-image img {
		width: 88%;
	}

	.growth-image .reveal {
		display: block;
	}

	.team-member-item1 {
		margin-bottom: 20px;
	}

	.growth-image {
		text-align: center;
	}

	#main-nav .lms-btn a.upperbtn {
		border-radius: 30px !important;
		padding-top: 6px !important;
		height: 40px !important;
	}

	.lms-btn {
		margin-bottom: 20px !important;
	}

	.our-potential-img.aspect-unset {
		text-align: center;
	}

	.our-potential-img img {
		width: 80%;
	}

	.company-growth-pr {
		margin-top: 30px;
	}

	.position-relative.investment-p h4 {
		font-size: 22px;
		margin-bottom: 30px;
	}

	img.side-icon {
		width: 140px;
		right: 0;
		top: 140%;
		transform: translate(-170%, -50%);
	}

	.p-first span {
		font-size: 22px;
	}

	.potential-eligibility h5 {
		font-size: 17px;
	}

	.potential-eligibility h4 {
		font-size: 19px;
		margin-bottom: 0px;
	}

	.potential-eligibility p {
		font-size: 17px;
		width: 100%;
		padding-top: 20px;
		line-height: 26px;
	}

	.potential-eligibility p span {
		font-size: 17px;
	}

	.potential-eligibility {
		padding: 50px 0 50px;
	}

	.potential-eligibility {
		background-image: url(../images/page-header-bg.jpg);
		background-size: cover;
		background-repeat: no-repeat;

	}

	.form-box.default-form {
		padding: 24px 22px;
	}

	.form-grid-gett {
		gap: 12px !important;
	}

	.our-potential .our-potential-img.aspect-unset img {
		width: 100%;
	}




	.form-flex.interest>div {
		display: flex;
		align-items: center;
		gap: 12px;
	}

	.form-flex.interest {
		display: block;
	}

	.form-flex.interest span {
		padding-top: 2px;
	}

	.form-name-grid.lasting {
		margin-bottom: 20px;
	}

	section.about-section.pb-80.bg-body {
		padding-bottom: 50px !important;
	}

	.exceptional-learning h2 {
		font-size: 33px;
	}

	.exceptional-learning h2 span {
		font-size: 27px;
		line-height: 30px;
		margin-bottom: 12px;
	}

	.exceptional-learning p {
		font-size: 18px;
		width: 100%;
		line-height: 27px;
	}

	.exceptional-learning h5 {
		font-size: 18px;
		width: 100%;
	}

	.number-speaks-left h2 {
		font-size: 35px;
	}

	.number-speaks-left h3 {
		font-size: 30px;
		margin-bottom: 15px;
	}

	.number-speaks-left p span {
		font-size: 18px;
	}

	.number-speaks-left p {
		font-size: 19px;
	}

	.number-speaks-right {
		margin-top: 40px;
	}

	.text-clip h2 {
		font-size: 114px;
		margin-top: 0px !important;
	}

	.text-clip h1 {
		font-size: 128px;
		margin-top: -20px !important;
	}

	p.p-text-position {
		left: 0%;
		top: 48%;
	}

	.text-clip.position-relative p {
		padding-top: 12px;
		margin-bottom: 0;
		margin-top: 0;
	}

	.coach-training-bg h2 {
		font-size: 23px;
	}

	.coach-training-bg p {
		font-size: 18px;
		width: 100%;
		padding-top: 2px;
		line-height: 27px;
	}

	#download {
		padding: 50px 0px;
	}

	.download-left h3 {
		font-size: 30px;
		line-height: 41px;
		text-align: center !important;
	}

	.download-left p {
		font-size: 18px;
		line-height: 28px;
	}

	.section-title.section-title.b-development.mb-4 {
		margin-top: 40px;
	}

	.blockquote h1 {
		font-size: 28px;
		line-height: 38px;
	}

	.page-faqs-catagery .section-title h2 {
		font-size: 34px;
	}

	.section-title.b-development h2 {
		font-size: 40px;
	}

	.expertise-item.b-development {
		background: white !important;
	}

	.section-title.main-head.seven.coaching-service h6 {
		font-size: 32px;
		width: 100%;
	}

	.blog-item-content.coaching-service h2 {
		font-size: 22px;
	}

	.section-title.main-head.eight.ab {
		top: 5px;
	}



	.page-faqs-catagery .section-title p {
		font-size: 17px;
	}

	.download-right-list {
		padding: 24px 20px;
	}

	.download-right-list p {
		font-size: 14px;
		line-height: 21px;
	}

	.main-footer .footer-upper {
		padding: 0px 0px 0px;
	}

	.section-title.main-head.second h4 {
		font-size: 18px;
	}

	.section-title.main-head.second {
		padding: 22px 70px !important;
	}

	.lms-btn.mobile {
		display: flex;
		gap: 12px;
		justify-content: left;
		margin-left: 9px;
	}


	#subnav.lock-move {
		top: 85px !important;
	}

	#main-nav .lms-btn a.upperbtn {
		border-radius: 30px !important;
		padding: 6px 30px !important;
		padding-top: 6px !important;
		height: auto !important;
	}

	.learning-left img {
		width: 54px !important;
	}

	span.gradient-box {
		padding: 8px 30px;
	}




}


@media only screen and (max-width: 850px) {

	img.side-icon {
		transform: translate(-132%, -50%);
	}

}


@media only screen and (max-width: 767px) {

	.our-potential-img.ml-0 {
		margin-right: 0px;
		margin-top: 0;
	}

	.quote-wrapper {
		padding: 0 0px;
	}

	.our-potential-body.getting {
		padding-top: 20px;
		margin-top: 30px;
	}

	.section-title.b-development h2 {
		font-size: 24px;
	}

	.blockquote {
		margin: 50px auto;
	}

	.section-title.text-center.coaching-shop h2 {
		font-size: 24px;
		line-height: 32px;
		margin-bottom: 24px;
	}

	.section-title h4 {
		font-size: 20px;
	}

	.how-we-work.bg-landing p {
		font-size: 16px;
		line-height: 25px;
	}

	.section-title.b-development {
		margin-top: 30px;
	}

	.frm-reg-it.width-chng {
		width: 100%;
	}

	.table-section {
		box-shadow: 0px 4px 25px rgba(0, 0, 0, 0.1);
		padding: 10px !important;
	}

	.intro-video.bg-section.program {
		margin-top: 30px !important;
	}

	a.btn-default.play-audio {
		padding: 12px 12px 12px 12px;
		font-size: 18px;
	}

	.about-us-footer.mt-5 {
		margin-top: 25px !important;
	}

	.tabs.training {
		width: 100%;
		overflow-x: scroll;
		gap: 30px;
		padding-bottom: 25px;
		display: block;
		text-align: center;
	}

	ul.tabs.training li a {
		padding: 8px 12px;
		font-size: 14px;
	}

	.authority.bettor-ranking.blog-posts {
		padding: 50px 0;
	}

	.table-responsive {
		border: unset;
	}

	.post-card .post-content-wrap {
		left: 20px;
	}

	.post-content .title {
		font-size: 16px;
	}

	.potential-body-list ul li::before {
		font-size: 16px;
	}

	figure.image-anime.reveal.mt-5.mb-5.img-thumbnail {
		margin: 0 !important;
		margin-top: -32px !important;
	}

	figure.image-anime.reveal.mt-5.img-thumbnail {
		margin-top: 20px !important;
	}


	.d-flex.gap-4 {
		display: block !important;
	}

	.section-btn.text-align-start {
		margin-top: 20px;
	}


	.section-title.big-text p {
		font-size: 18px;
		line-height: 27px;
		text-align: center;
	}

	.levels-d {
		grid-template-columns: repeat(1, 1fr) !important;
	}

	.col-lg-7.mt-5.mobile-padding {
		padding: 0;
		margin-top: 0px !important;
	}

	.investment p {
		font-size: 17px;
		line-height: 27px;
	}

	.investment-center-text h6 {
		font-size: 21px;
	}

	.investment-center-text p.para-g {
		width: 92%;
		margin: 0 auto;
		font-size: 16px;
	}

	.investment-center-text h2 {
		font-size: 36px;
	}

	img.gif-arrow.right {
		width: 25%;
		top: 39%;
		right: -27%;
		left: unset;
		transform: translate(-50%, -50%);
	}

	img.gif-arrow {
		position: absolute;
		width: 25%;
		top: 39%;
		left: -2%;
		transform: translate(-50%, -50%);
	}

	.learning-left img {
		width: 45px !important;
	}

	.learning-left span {
		font-size: 13px;
	}

	span.gradient-box {
		padding: 6px 10px;
		width: 120px;
		margin: 0 auto;
		font-size: 13px;
	}

	.learning-right span {
		font-size: 13px;
	}

	.section-title.eleven.under {
		padding-left: 15px;
		margin-top: 30px;
	}

	.learning-right h2 {
		font-size: 32px;
	}

	.schedule-content {
		gap: 15px;
	}

	.learning-right {
		gap: 4px;
	}

	.section-title.eleven.under h2 {
		font-size: 26px;
	}

	.section-title.eleven.under h4 {
		font-size: 18px;
	}

	.section-title.eleven.under p {
		font-size: 17px;
		margin-top: 0;
	}

	.grid .potential-counter-item .counter-circle {
		width: 124px;
		height: 124px;
	}

	.d-flex.counetr {
		display: grid !important;
		gap: 25px;
	}

	.potential-counter-item:before {
		width: 0px;
	}

	.grid .our-potential-counter {
		grid-template-columns: repeat(1, 1fr);
	}

	.our-potential {
		padding: 30px 0;
	}

	.our-potential-img.height-auto.unique.img-mg {
		margin-top: 0;
		margin-bottom: 32px;
	}


	.section-title.main-head h2 {
		font-size: 38px;
	}

	.section-title.main-head h4 {
		font-size: 28px;
	}

	.section-title.main-head h5 {
		font-size: 22px;
	}

	.section-title.main-head h6 {
		font-size: 18px;
	}

	.section-title.main-head p {
		font-size: 16px;
		margin-bottom: 15px;
	}

	.section-title.main-head.third h2 {
		font-size: 24px;
	}

	.section-title.main-head.third h4 {
		font-size: 19px;
	}

	.section-title.main-head p {
		font-size: 15px;
	}

	.section-title.main-head.fourth h2 {
		font-size: 34px;
		line-height: 40px;
		margin-top: 30px;
	}

	.section-title.main-head.fourth h4 {
		font-size: 40px;
		line-height: 48px;
	}

	.section-title.main-head.fourth h6 {
		font-size: 24px;
	}

	.section-title.main-head.fifth h2 {
		font-size: 32px;
	}

	.section-title.main-head.fifth h4 {
		font-size: 20px;
	}

	.section-title.main-head.fifth p {
		font-size: 16px;
		width: 100%;
		margin-top: 20px;
	}

	.section-title.main-head.six h2 {
		font-size: 26px;
	}

	.section-title.main-head.six h2 span {
		font-size: 27px;
		margin: 4px 0;
	}

	.section-title.main-head.six h4 {
		font-size: 18px;
	}

	.section-title.main-head.six.pl-5 {
		padding-left: 0;
	}

	.section-title.main-head.six.pr-5 {
		padding-right: 0;
	}

	.section-title.main-head.six p {
		font-size: 16px;
		line-height: 28px;
	}

	.col-lg-6.mb-5.center {
		margin-bottom: 16px !important;
	}

	.section-title.main-head.six1 p {
		font-size: 17px;
		line-height: 26px;
		width: 100%;
		margin-top: 12px;
	}

	.section-title.main-head.seven h6 {
		font-size: 17px;
		width: 100%;
	}

	h4.h4-font-title {
		font-size: 17px;
	}

	.index-test p {
		width: 95%;
		font-size: 17px;
		line-height: 27px;
	}

	.testimonial-slider .testimonial-button-next {
		margin-left: 6px;
	}

	.testimonial-slider .testimonial-button-next,
	.testimonial-slider .testimonial-button-prev {
		width: 35px;
		height: 35px;
	}

	.testimonial-slider .testimonial-button-next::before,
	.testimonial-slider .testimonial-button-prev::before {
		background-size: 20px auto;
	}

	.our-potential {
		padding: 50px 0;
	}

	.our-testimonial.bg-section {
		width: 98%;
		padding: 50px 0;
		margin-bottom: 0px;
	}


	.section-title.main-head.seven p {
		padding: 0px 0px;
		font-size: 17px;
		line-height: 27px;
		margin-bottom: 90px;
	}

	.section-title.main-head.eight {
		margin-top: 265px;
		padding-left: 0px;
		padding-top: 40px;
	}

	.section-title.main-head.eight.ab {
		margin-top: 0px;
	}

	.section-title.main-head.eight h2 {
		font-size: 22px;
	}

	.section-title.main-head.eight h6 {
		font-size: 18px;
	}

	.potential-body-list.arrowchange li {
		font-size: 17px;
		padding-left: 0;
		margin-bottom: 12px !important;
	}

	.potential-body-list.arrowchange li img {
		width: 18px;
		margin-right: 6px;
		margin-bottom: 4px;
	}

	.potential-body-list.arrowchange.mb-5.mt-5.wow.fadeInUp {
		margin: 20px 0 !important;
	}

	.section-title.main-head.nine p {
		font-size: 18px;
		width: 90%;
		margin: 0 auto;
		line-height: 28px;
	}

	img.quote {
		position: absolute;
		top: -4%;
		left: -2%;

		width: 24px;
	}

	img.quote.mark {
		bottom: 22%;
		right: 4%;
		width: 24px;
	}

	.section-title.main-head.nine p span {
		margin-top: 4px;
		font-size: 16px;
	}

	.index-test p {
		width: 90%;
		margin: auto;
		font-size: 16px;
		line-height: 24px;
		font-weight: 400;
	}

	.testimonial-icon img {
		width: 100px;
	}

	.section-title.eleven p {
		font-size: 17px;
		line-height: 27px;
	}

	.our-potential-content.grid.d-block.eleven {
		margin-bottom: 0;
	}

	.section-title.accel h2 {
		font-size: 27px;
	}

	.section-title.accel h4 {
		font-size: 20px;
	}

	.section-title.accel p {
		font-size: 17px;
		width: 100%;
	}

	.our-potential-img.aspect-unset {
		margin: 14px 0;
		margin-bottom: 30px;
	}


	.our-potential.bg-body-c .section-title.main-head.eight {
		margin-top: 0;
		padding-left: 0px;
		padding-top: 0px;
	}

	.our-potential.bg-body-c {
		padding-top: 0;
	}

	.h2-font {
		font-size: 24px;
	}

	span.span-2 {
		font-size: 18px;
	}

	.team-member-item1 {
		margin-bottom: 20px;
	}

	.growth-image {
		text-align: center;
	}

	#main-nav .lms-btn a.upperbtn {
		border-radius: 30px !important;
		padding: 3px 30px !important;
		padding-top: 3px !important;
		height: auto !important;
	}

	.lms-btn {
		margin-bottom: 20px !important;
	}

	.our-potential-img.aspect-unset {
		text-align: center;
	}

	.our-potential-img img {
		width: 100%;
	}

	.company-growth-pr {
		margin-top: 30px;
	}

	.position-relative.investment-p h4 {
		font-size: 20px;
		margin-bottom: 30px;
	}

	img.side-icon {
		width: 140px;
		right: 0;
		top: 140%;
		transform: translate(-100%, -50%);
	}

	.p-first span {
		font-size: 22px;
	}

	.potential-eligibility h5 {
		font-size: 17px;
	}

	.potential-eligibility h4 {
		font-size: 19px;
		margin-bottom: 0px;
	}

	.potential-eligibility p {
		font-size: 17px;
		width: 100%;
		padding-top: 20px;
		line-height: 26px;
	}

	.potential-eligibility p span {
		font-size: 17px;
	}

	.potential-eligibility {
		padding: 50px 0 50px;
	}

	.potential-eligibility {
		background-image: url(../images/page-header-bg.jpg);
		background-size: cover;
		background-repeat: no-repeat;
		background-attachment: unset;
		background-position: center;
	}

	.form-box.default-form {
		padding: 24px 22px;
	}

	.form-grid-gett {
		gap: 12px !important;
	}

	.our-potential .our-potential-img.aspect-unset img {
		width: 100%;
	}




	.form-flex.interest>div {
		display: flex;
		align-items: center;
		gap: 12px;
	}

	.form-flex.interest {
		display: block;
	}

	.form-flex.interest span {
		padding-top: 2px;
	}

	.form-name-grid.lasting {
		margin-bottom: 20px;
	}

	section.about-section.pb-80.bg-body {
		padding-bottom: 50px !important;
	}

	.exceptional-learning h2 {
		font-size: 23px;
	}

	.exceptional-learning h2 span {
		font-size: 20px;
		line-height: 30px;
		margin-bottom: 12px;
	}

	.exceptional-learning p {
		font-size: 16px;
		width: 100%;
		line-height: 24px;
	}

	.exceptional-learning h5 {
		font-size: 16px;
		width: 100%;
	}

	.number-speaks-left h2 {
		font-size: 25px;
	}

	.number-speaks-left h3 {
		font-size: 20px;
		margin-bottom: 15px;
	}

	.number-speaks-left p span {
		font-size: 16px;
	}

	.number-speaks-left p {
		font-size: 17px;
	}

	.number-speaks-right {
		margin-top: 40px;
	}

	.text-clip h2 {
		font-size: 114px;
		margin-top: -20px !important;
	}

	.text-clip h1 {
		font-size: 128px;
		margin-top: -20px !important;
	}

	p.p-text-position {
		left: 0%;
		top: 48%;
	}

	.text-clip.position-relative p {
		padding-top: 30px;
		margin-bottom: 0;
	}

	.coach-training-bg h2 {
		font-size: 19px;
	}

	.coach-training-bg p {
		font-size: 16px;
		width: 100%;
		padding-top: 2px;
		line-height: 27px;
	}

	#download {
		padding: 50px 0px;
	}

	.download-left h3 {
		font-size: 26px;
		line-height: 36px;
		text-align: center !important;
		color: white;
	}

	.download-left p {
		font-size: 16px;
		line-height: 27px;
		color: white;
	}

	.cerfi-para p {
		font-size: 16px;
		line-height: 25px;
	}

	.download-right-list {
		padding: 24px 20px;
	}

	.download-right-list p {
		font-size: 14px;
		line-height: 21px;
	}

	.main-footer .footer-upper {
		padding: 0px 0px 0px;
	}

	.section-title.main-head.second h4 {
		font-size: 17px;
	}

	.section-title.main-head.second {
		padding: 22px 22px !important;
		padding-top: 30px !important;
		background-size: auto !important;
		border-radius: 120px;
	}

	.how-we-work.coaching-service .potential-body-list.coaching-service h4 {
		font-size: 20px;
	}

	.section-title.main-head.seven.coaching-service h6 {
		font-size: 24px;
		width: 100%;
	}

	.section-title.main-head.seven p {
		font-size: 16px;
		margin-bottom: 25px;
	}

	.blog-item-body.coaching-service h2 {
		font-size: 20px;
	}

	.blog-item-content.coaching-service h2 {
		font-size: 20px;
	}

	.our-blog-btn.wow.fadeInUp.mt-5 {
		margin-top: 0px !important;
	}

	.blockquote h1 {
		font-size: 18px;
		line-height: 26px;
		padding: 18px;
	}

	.section-title.main-head.eight.ab {
		top: 0px;
	}

	.section-title.main-head.eight h2 {
		line-height: 30px;
	}

	.potential-body-list.arrowchange li:last-child {
		margin-bottom: 0px !important;
	}













}



@media only screen and (max-width: 700px) {

	img.side-icon {
		transform: translate(-85%, -50%);
	}

}


@media only screen and (max-width: 650px) {

	img.side-icon {
		transform: translate(-58%, -50%);
	}

}



@media only screen and (max-width: 600px) {

	img.side-icon {
		transform: translate(-46%, -50%);
	}

}


@media only screen and (max-width: 550px) {

	img.side-icon {
		transform: translate(-32%, -50%);
	}

}

@media only screen and (max-width: 500px) {

	img.side-icon {
		transform: translate(-20%, -50%);
	}

}

@media only screen and (max-width: 450px) {

	img.side-icon {
		transform: translate(-10%, -50%);
	}

}

@media only screen and (max-width: 400px) {

	img.side-icon {
		width: 140px;
		right: 0;
		top: 140%;
		transform: translate(9%, -50%);
	}

}

.page-service-single.page-service-single-bg {
    background: #f2f1ed;
}





