/* ----------------------------------------------------------------------------------------
* Author        : Awaiken
* Template Name : Rithma - Dance Studio & School HTML Template
* File          : CSS File
* Version       : 1.0
* ---------------------------------------------------------------------------------------- */
/* INDEX
----------------------------------------------------------------------------------------
01. Global Variables
02. General css 
03. Header css
04. Hero css
05. About Us css
06. Our Programs css
07. Our Expertise css
08. Intro Video css
09. Our Pricing css
10. Why Choose Us css
11. Our Activities css
12. Our Testimonials css
13. Our Blog css
14. Footer css
15. About Us Page css
16. Programs Page css
17. Program Single css
18. Blog Archive css
19. Blog Single css
20. Events Page css
21. Event Single css
22. Team Page css
23. Team Single css
24. Pricing Page css
25. Testimonials Page css
26. Image Gallery css
27. Video Gallery css
28. FAQs Page css
29. Contact Us Page css
30. 404 Error Page css
31. Responsive css
32.	Home - Version 2 css
33. Home - Version 3 css
-------------------------------------------------------------------------------------- */

/************************************/
/*** 	 01. Global Variables	  ***/
/************************************/

:root {
	--primary-color: #090D2D;
	--secondary-color: #F1F3FF;
	--bg-color: #FFFFFF;
	--text-color: #585968;
	--accent-color: #896431;
	--white-color: #FFFFFF;
	--black-color: #000000;
	--divider-color: #090D2D1A;
	--dark-divider-color: #FFFFFF1A;
	--error-color: rgb(230, 87, 87);
	--default-font: "Stack Sans Headline", sans-serif;
}

/************************************/
/*** 	   02. General css		  ***/
/************************************/

html,
body {
	width: 100%;
	overflow-x: clip;
}

body {
	font-family: var(--default-font);
	font-size: 16px;
	font-weight: 400;
	line-height: 1em;
	color: var(--text-color);
	background: var(--bg-color);
	box-sizing: border-box;
}

::-webkit-scrollbar-track {
	background-color: var(--primary-color);
	border-left: 1px solid var(--primary-color);
}

::-webkit-scrollbar {
	width: 7px;
	background-color: var(--primary-color);
}

::-webkit-scrollbar-thumb {
	background: var(--accent-color);
}

::selection {
	color: var(--primary-color);
	background-color: var(--accent-color);
	filter: invert(1);
}

p {
	line-height: 1.7em;
	margin-bottom: 1.5em;
	font-size: 18px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-weight: 600;
	line-height: 1.2em;
	color: var(--primary-color);
	margin: 0;
}

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

.container {
	max-width: 1500px;
}

.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;
	font-size: 16px;
	font-weight: 700;
	line-height: 1em;
	text-transform: capitalize;
	color: var(--white-color);
	background: var(--accent-color);
	border-radius: 100px;
	padding: 17px 46px 17px 24px;
	border: none;
	overflow: hidden;
	transition: all 0.4s ease-in-out;
	z-index: 1;
}

.btn-default:hover {
	color: var(--white-color);
	/* border:1px solid #896431; */
}

.btn-default::before {
	content: '';
	position: absolute;
	top: 50%;
	right: 24px;
	width: 12px;
	height: 12px;
	background-image: url('../images/arrow-white.svg');
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
	transform: translateY(-50%);
	transition: all 0.4s ease-in-out;
}

.btn-default:hover::before {
	transform: translateY(-50%) rotate(45deg);
}

.btn-default::after {
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	width: 0;
	height: 100%;
	background: var(--primary-color);
	transition: all 0.4s ease-in-out;
	z-index: -1;
}

.btn-default:hover::after {
	right: auto;
	left: 0;
	width: 100%;
}

.btn-default.btn-light {
	background: rgba(255, 255, 255, 0.678);
	backdrop-filter: blur(20px);
	color: #896431;
	-webkit-backdrop-filter: blur(20px);
}

.btn-default.btn-light:hover,
.btn-default.btn-highlighted:hover {
	color: var(--primary-color);
}

.btn-default.btn-light:hover::before,
.btn-default.btn-highlighted:hover:before {
	filter: brightness(0) invert(0);
}

.btn-default.btn-light::after,
.btn-default.btn-highlighted::after {
	background-color: var(--white-color);
}

.readmore-btn {
	position: relative;
	display: inline-block;
	font-weight: 600;
	line-height: normal;
	text-transform: capitalize;
	color: var(--primary-color);
	padding-right: 22px;
	transition: all 0.4s ease-in-out;
}

.readmore-btn::before {
	content: '';
	position: absolute;
	top: 50%;
	right: 0;
	transform: translateY(-50%);
	background-image: url('../images/arrow-primary.svg');
	background-repeat: no-repeat;
	background-position: right center;
	background-size: cover;
	width: 12px;
	height: 12px;
	transition: all 0.4s ease-in-out;
}

.readmore-btn:hover::before {
	transform: translateY(-50%) rotate(45deg);
}

.cb-cursor:before {
	background: var(--accent-color);
}

.preloader {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 1000;
	background: var(--primary-color);
	display: flex;
	align-items: center;
	justify-content: center;
}

.loading-container,
.loading {
	height: 150px;
	position: relative;
	width: 150px;
	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 img {
	width: 150px !important;

}

#loading-icon {
	position: absolute;
	top: 50%;
	left: 50%;
	max-width: 150px;
	transform: translate(-50%, -50%);
}

@keyframes rotate-loading {
	0% {
		transform: rotate(0deg);
	}

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

video {
	width: 100%;
	/* Video will take the full width of its container */
	height: auto;
	/* Height adjusts automatically to maintain aspect ratio */
	max-width: 100%;
	/* Ensures video doesn't exceed its natural size or container size */
	display: block;
	/* Helps prevent extra white space below the video */
}

.bg-section {
	width: 100%;
	max-width: 1880px;
	border-radius: 10px;
	margin: 0 auto;
}

.bg-section .container-fluid {
	padding: 0;
}

.dark-section {
	background-color: var(--primary-color);
	background-image: url('../images/dark-section-bg-shape.png');
	background-repeat: no-repeat;
	background-position: top center;
	background-size: cover;
}

.section-row {
	margin-bottom: 50px;
}

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

.section-row .section-title.section-title-center {
	width: 100%;
	max-width: 800px;
	margin: 0 auto;
	text-align: center;
}

/* .section-btn {
	text-align: right;
}

.section-content-btn .section-btn {
	margin-top: 30px;
	text-align: left;
} */

/* .section-title-content p {
	margin-bottom: 20px;
}

.section-title-content p:last-child {
	margin-bottom: 0;
} */

.section-title {
	margin-bottom: 40px;
}

.section-title h3 {
	position: relative;
	display: inline-block;
	font-size: 14px;
	text-transform: uppercase;
	line-height: 1em;
	background: var(--secondary-color);
	border-radius: 100px;
	padding: 8px 16px 8px 34px;
	margin-bottom: 15px;
}

.section-title h3::before {
	content: '';
	position: absolute;
	top: 50%;
	left: 16px;
	transform: translateY(-50%);
	background: var(--accent-color);
	border-radius: 100px;
	width: 8px;
	height: 8px;
}

.section-title h1 {
	font-size: 58px;
	font-weight: 700;
	line-height: 1em;
	text-transform: uppercase;
	margin-bottom: 0;
	cursor: none;
	display: inline-block;
}

.section-title h2 {
	font-size: 48px;
	font-weight: 700;
	margin-bottom: 0;
	cursor: none;
}

.section-title p {
	margin-top: 20px;
	margin-bottom: 0;
}

.dark-section .section-title h3 {
	background: var(--dark-divider-color);
	backdrop-filter: blur(30px);
	-webkit-backdrop-filter: blur(30px);
}

.dark-section .section-title h3,
.dark-section .section-title h1,
.dark-section .section-title h2,
.dark-section .section-title p {
	color: var(--white-color);
}

.help-block.with-errors ul {
	margin: 0;
	text-align: left;
}

.help-block.with-errors ul li {
	color: var(--error-color);
	font-weight: 500;
	font-size: 14px;
}

/************************************/
/**** 	   03. Header css		 ****/
/************************************/

header.main-header {
	margin: 0 auto;
	background: transparent;
}

/* .header-btn span{
	position: relative;
	top: -17px;
	margin: 0 10px;
	font-size: 18px;
} */

header.main-header .header-sticky {
	position: relative;
	top: 0;
	background-color: #090d2d;
	color: #896431;
	border-radius: 0;
	width: 100%;
	transition: all 0.35s ease;
	z-index: 9999;
	border-bottom: 1px solid var(--dark-divider-color);

}

header.main-header .header-sticky.hide {
	transform: translateY(-100%);
	transition: transform 0.3s ease-in-out;
}

header.main-header .header-sticky.active {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	transform: translateY(0);
	background-color: rgba(13, 13, 13, 0.404);
	border: 1px solid var(--dark-divider-color);
	border-top: none;
	border-radius: 0 0 20px 20px;
}

.main-menu .nav-menu-wrapper {
	flex: 1;
	text-align: center;
}

.main-menu .nav-menu-wrapper>ul {
	align-items: center;
	display: inline-flex;
}

.main-menu ul li {
	margin: 0 30px;
	position: relative;
}

.main-menu ul li a {
	font-size: 22px;
	font-weight: 500;
	line-height: 1.2em;
	padding: 12px 10px !important;
	color: white;
	background: transparent;
	border-radius: 0px;
	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: scale(1, 0.8);
	transform-origin: top;
	padding: 0;
	margin: 0;
	list-style: none;
	width: 235px;
	border-radius: 20px;
	position: absolute;
	left: 0;
	top: 100%;
	background: var(--accent-color);
	transition: all 0.3s ease-in-out;
	text-align: left;
}

.main-menu ul li.submenu:first-child ul {
	width: 235px;
}

.main-menu ul ul ul {
	left: 100%;
	top: 0;
	text-align: left;
}

.main-menu ul li:hover>ul {
	visibility: visible;
	opacity: 1;
	transform: scale(1, 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: 6px 20px !important;
	transition: all 0.3s ease-in-out;
}

.main-menu ul ul li a:hover,
.main-menu ul ul li a:focus {
	color: var(--primary-color);
	background-color: transparent;
	padding: 6px 20px 6px 23px !important;
}

.main-menu ul li.highlighted-menu {
	display: none;
}

/* Top Bar */
.top-bar {
	background: var(--primary-color);
	border-bottom: 1px solid var(--dark-divider-color);
}

.top-bar-inner {
	display: flex;
	justify-content: space-between;
	align-items: center;
	min-height: 44px;
}

.top-bar-left a {
	color: var(--white-color);
	font-size: 14px;
	font-weight: 500;
	margin-right: 22px;
}

.top-bar-left i {
	color: var(--accent-color);
	margin-right: 6px;
}

.top-bar-right a {
	color: var(--white-color);
	font-size: 14px;
	margin-left: 16px;
	transition: all 0.3s ease;
}

.top-bar-right a:hover {
	color: var(--accent-color);
}


.responsive-menu,
.navbar-toggle {
	display: none;
}

.responsive-menu {
	position: relative;
	top: 0;
}

.slicknav_btn {
	background: var(--accent-color);
	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: var(--accent-color);
}

.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: 500;
	text-transform: capitalize;
	padding: 7px 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: 7px 20px 7px 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: 50%;
	transform: translateY(-50%);
	transition: all 0.3s ease-in-out;
}

.slicknav_open>a .slicknav_arrow:after {
	transform: translateY(-50%) rotate(-180deg);
	color: var(--primary-color);
}

/************************************/
/***         04. Hero css	      ***/
/************************************/

.hero {
	background-size: cover;
	background-repeat: no-repeat;
	/* background-attachment: none !important; */
	background-position: center !important;
	background-image: url('../images/gallery/banner-img.png') !important;
	padding: 175px 0 60px;
	/* margin-top: 20px; */
}

.hero-content {
	height: 100%;
	align-content: center;
}

.hero-content .section-title h1 {
	font-weight: 400;
}

.hero-content .section-title h1 span {
	font-size: 80px;
	font-weight: 700;
	line-height: 1em;
}

.hero-body-list ul {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
}

.hero-body-list ul li {
	position: relative;
	line-height: 1.5em;
	color: var(--white-color);
	padding-left: 25px;
	width: calc(50% - 10px);
}

.hero-body-list ul li::before {
	content: '\f058';
	position: absolute;
	font-family: 'Font Awesome 7 Free';
	font-size: 18px;
	font-weight: 900;
	color: var(--accent-color);
	top: 0;
	left: 0;
}

.hero-content-footer {
	border-top: 1px solid var(--dark-divider-color);
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 25px 40px;
	padding-top: 40px;
	margin-top: 40px;
}

.video-play-button {
	position: relative;
	display: inline-flex;
	align-items: center;
	gap: 20px;
	z-index: 1;
}

.video-play-button a {
	position: relative;
	height: 40px;
	width: 40px;
	background: var(--accent-color);
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	cursor: none;
	transition: all 0.3s ease-in-out;
}

.video-play-button:hover a {
	background: var(--secondary-color);
}

.video-play-button.bg-effect a:before,
.video-play-button.bg-effect a:after {
	content: '';
	position: absolute;
	top: -30%;
	left: -30%;
	width: 100%;
	height: 100%;
	border: 32px solid var(--white-color);
	opacity: 50%;
	border-radius: 50%;
	transform: scale(0.6);
	z-index: -1;
	animation: border-zooming 1.2s infinite linear;
}

.video-play-button.bg-effect a:after {
	animation-delay: .3s;
}

@keyframes border-zooming {
	100% {
		transform: scale(1);
		opacity: 0;
	}
}

.video-play-button a i {
	font-size: 14px;
	color: var(--white-color);
	margin-left: 2px;
	transition: all 0.3s ease-in-out;
}

.video-play-button:hover a i {
	color: var(--primary-color);
}

.video-play-button h3 {
	font-size: 16px;
	color: var(--white-color);
	font-weight: 700;
}

.hero-image figure {
	display: block;
	border-radius: 10px;
}

.hero-image figure img {
	width: 100%;
	aspect-ratio: 1 / 1.004;
	object-fit: cover;
	border-radius: 10px;
}

/************************************/
/***       05. About Us css	      ***/
/************************************/

.about-us {
	padding: 100px 0;
}

.about-us-image-box {
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
	margin-right: 15px;
}

.about-us-image-box-1 {
	position: relative;
	top: 100px;
	width: calc(46% - 15px);
	/* background: url('../images/about-us-bg-shape.svg');
	background-repeat: no-repeat;
	background-position: bottom 20px left 60px;
	background-size: 85px auto; */
}

.about-us-image figure {
	display: block;
	border-radius: 210px;
}

.about-us-image figure img {
	width: 100%;
	object-fit: cover;
	border-radius: 210px;
}

.about-us-image-box-1 .about-us-image figure img {
	aspect-ratio: 1 / 1.47;
}

.about-us-image-box-2 {
	width: calc(54% - 15px);
}

.about-us-image-box-2 .about-us-image figure img {
	aspect-ratio: 1 / 1.77;
}

/* 
.about-student-rating-box {
	position: relative;
	max-width: 220px;
	background: var(--accent-color);
	padding: 50px 30px;
	border: 10px solid var(--white-color);
	border-radius: 999px;
	margin-top: -180px;
	margin-right: -100px;
	margin-left: auto;
	z-index: 2;
}

.about-student-rating-content p {
	font-weight: 700;
	color: var(--white-color);
	margin: 0;
}

.about-student-rating-arrow,
.about-student-rating-counter {
	margin-top: 25px;
}

.about-student-rating-arrow a {
	display: inline-block;
}

.about-student-rating-arrow a img {
	width: 30px;
	transition: all 0.4s ease-in-out;
}

.about-student-rating-arrow a:hover img {
	transform: rotate(45deg);
}

.about-student-rating-counter .about-rating-star i {
	color: var(--white-color);
}

.about-student-rating-counter p {
	color: var(--white-color);
	margin: 10px 0 0;
}

.about-student-rating-counter p span {
	font-weight: 700;
} */

.about-us-body-list ul {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
}

.about-us-body-list ul li {
	position: relative;
	width: calc(50% - 10px);
	line-height: 1.5em;
	padding-left: 25px;
}

.about-us-body-list ul li::before {
	content: '\f058';
	position: absolute;
	font-family: 'Font Awesome 7 Free';
	font-size: 18px;
	font-weight: 900;
	color: var(--accent-color);
	top: 0;
	left: 0;
}

.about-us-body-counter-list {
	display: flex;
	flex-wrap: wrap;
	gap: 30px 60px;
	margin-top: 40px;
}

.about-us-counter-item {
	position: relative;
	width: calc(33.33% - 40px);
}

.about-us-counter-item::before {
	content: '';
	position: absolute;
	top: 0;
	right: -30px;
	bottom: 0;
	height: 100%;
	width: 1px;
	background: var(--divider-color);
}

.about-us-counter-item:nth-child(3n + 3):before,
.about-us-counter-item:last-child:before {
	display: none;
}

.about-us-counter-item h2 {
	font-size: 48px;
	font-weight: 700;
}

.about-us-counter-item p {
	margin: 5px 0 0;
}

.satisfy-client-images {
	display: flex;
	align-items: center;
}

.satisfy-client-image {
	position: relative;
	display: inline-block;
	margin-left: -20px;
	border: 1px solid var(--white-color);
	border-radius: 50%;
	overflow: hidden;
	z-index: 1;
}

.satisfy-client-image:first-child {
	margin: 0;
}

.satisfy-client-image figure {
	display: block;
	border-radius: 50%;
}

.satisfy-client-image figure img {
	width: 100%;
	max-width: 50px;
	border-radius: 50%;
}

.satisfy-client-image.add-more {
	width: 52px;
	height: 52px;
	background-color: var(--accent-color);
	display: flex;
	justify-content: center;
	align-items: center;
	transition: all 0.3s ease-in-out;
}

.satisfy-client-image.add-more i {
	font-size: 20px;
	color: var(--white-color);
}

.satisfy-client-image.add-more img {
	width: 100%;
	max-width: 24px;
}

.satisfy-client-image.add-more h3 {
	color: var(--white-color);
	font-size: 16px;
	line-height: 1em;
}

.about-us-footer {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 30px;
	border-top: 1px solid var(--divider-color);
	padding-top: 40px;
	margin-top: 40px;
}

.about-rating-content .about-rating-star i {
	font-size: 20px;
	color: var(--accent-color);
}

.about-rating-content p {
	margin: 5px 0 0;
}

/************************************/
/***    06. Our Programs css      ***/
/************************************/

.our-programs {
	padding: 100px 0;
}

.our-program-item {
	position: relative;
	margin-bottom: 30px;
}

.program-item-image a {
	display: block;
	cursor: none;
	border-radius: 10px;
	overflow: hidden;
}

.program-item-image figure {
	position: relative;
	display: block;
}

.program-item-image figure::before {
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	height: 100%;
	width: 100%;
	background: linear-gradient(180deg, rgba(9, 13, 45, 0.00) 56%, rgba(9, 13, 45, 0.80) 85.27%);
	z-index: 1;
}

.program-item-image figure img {
	width: 100%;
	aspect-ratio: 1 / 1.3;
	object-fit: cover;
	border-radius: 10px;
	transition: all 0.6s ease-in-out;
}

.our-program-item:hover .program-item-image figure img {
	transform: scale(1.06);
}

.program-item-content {
	position: absolute;
	right: 30px;
	bottom: 30px;
	left: 30px;
	z-index: 1;
}

.program-item-content h2 {
	font-size: 20px;
	color: var(--white-color);
}

.program-item-content h2 a {
	color: inherit;
}

.program-item-content p {
	color: var(--white-color);
	margin: 10px 0 0;
}

.section-footer-text {
	margin-top: 30px;
	text-align: center;
}

.section-footer-text p {
	margin-bottom: 0;
}

.section-footer-text p span {
	display: inline-block;
	font-size: 14px;
	font-weight: 600;
	background: var(--accent-color);
	color: var(--primary-color);
	line-height: 1em;
	padding: 4px 10px;
	border-radius: 20px;
	margin-right: 10px;
}

.section-footer-text p a {
	font-weight: 600;
	text-transform: capitalize;
	text-decoration: underline;
	text-underline-offset: 3px;
	color: var(--primary-color);
	transition: all 0.3s ease-in-out;
}

.section-footer-text p a:hover {
	color: var(--accent-color);
}

.section-footer-text ul {
	width: 100%;
	padding: 0;
	margin: 20px 0 0;
	list-style: none;
}

.section-footer-text ul li {
	display: inline-block;
	font-size: 20px;
	font-weight: 700;
	line-height: normal;
	color: var(--primary-color);
	margin-right: 10px;
}

.section-footer-text ul li:last-child {
	margin: 0;
}

.section-footer-text ul li i {
	color: var(--accent-color);
}

.dark-section .section-footer-text p,
.dark-section .section-footer-text ul li {
	color: var(--white-color);
}

.dark-section .section-footer-text p a {
	color: var(--secondary-color);
}

.dark-section .section-footer-text p a:hover {
	color: var(--accent-color);
}

.section-footer-text.section-footer-contact {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 10px 20px;
}

.section-footer-text.section-footer-contact span {
	width: 30px;
	height: 30px;
	padding: 0;
	display: inline-flex;
	justify-content: center;
	align-items: center;
	margin-right: 10px;
}

.section-footer-text.section-footer-contact span img {
	width: 100%;
	max-width: 16px;
}

.section-footer-text.section-satisfy-img {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 10px;
}

.section-footer-text.section-satisfy-img .satisfy-client-image {
	margin-left: -10px;
}

.section-footer-text.section-satisfy-img .satisfy-client-image:first-child {
	margin: 0;
}

.dark-section .section-footer-text.section-satisfy-img .satisfy-client-image {
	border-color: var(--primary-color);
}

.section-footer-text.section-satisfy-img .satisfy-client-image figure img {
	max-width: 30px;
}

.section-footer-text.section-satisfy-img .satisfy-client-image.add-more {
	width: 32px;
	height: 32px;
}

.section-footer-text.section-satisfy-img .satisfy-client-image.add-more img {
	width: 100%;
	max-width: 16px;
}

.section-footer-text.section-satisfy-img ul {
	margin: 5px 0 0;
}

/************************************/
/***    07. Our Expertise css     ***/
/************************************/

.our-expertise {
	padding: 100px 0;
}

.our-expertise-content {
	height: 100%;
	align-content: center;
}

.skills-progress-bar {
	margin-bottom: 40px;
}

.skills-progress-bar:last-child {
	margin-bottom: 0;
}

.skills-progress-bar .skill-data {
	display: flex;
	gap: 15px;
	justify-content: space-between;
	margin-bottom: 15px;
}

.skills-progress-bar .skill-data .skill-title,
.skills-progress-bar .skill-data .skill-no {
	font-size: 20px;
	font-weight: 600;
	line-height: normal;
	color: var(--primary-color);
}

.skills-progress-bar .skillbar .skill-progress {
	position: relative;
	width: 100%;
	height: 10px;
	background: var(--secondary-color);
	border-radius: 100px;
	overflow: hidden;
}

.skills-progress-bar .skillbar .skill-progress .count-bar {
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	background: var(--accent-color);
	border-radius: 100px;
}

.our-expertise-list {
	border-top: 1px solid var(--divider-color);
	padding-top: 40px;
	margin-top: 40px;
}

.our-expertise-list ul {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	gap: 15px 20px;
}

.our-expertise-list ul li {
	position: relative;
	width: calc(50% - 10px);
	line-height: 1.5em;
	padding-left: 25px;
}

.our-expertise-list ul li::before {
	content: '\f058';
	position: absolute;
	font-family: 'Font Awesome 7 Free';
	font-size: 18px;
	font-weight: 900;
	color: var(--accent-color);
	top: 0;
	left: 0;
}

.our-expertise-image-box {
	height: 100%;
	display: flex;
	flex-wrap: wrap;
	margin-left: 15px;
}

.expertise-image-box-1 {
	position: relative;
	width: 52%;
}

.expertise-image-box-1,
.expertise-image-box-1 .expertise-image,
.expertise-image-box-1 .expertise-image figure,
.expertise-image-box-1 .expertise-image img {
	height: 100%;
}

.expertise-image-box-1 .expertise-image {
	margin-right: -170px;
}

.expertise-image figure {
	display: block;
	border-radius: 10px;
}

.expertise-image figure img {
	width: 100%;
	object-fit: cover;
	border-radius: 10px;
}

.expertise-image-box-1 .expertise-image figure img {
	aspect-ratio: 1 / 1.05;
}

.expertise-image-box-2 .join-academy-circle {
	position: absolute;
	top: 50%;
	transform: translate(-50%, -50%);
	left: 0;
	z-index: 2;
}

.join-academy-circle a {
	display: inline-block;
	border-radius: 50%;
}

.join-academy-circle img {
	width: 100%;
	max-width: 160px;
	border-radius: 50%;
	animation: infiniterotate 20s infinite linear;
}

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

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

.join-academy-circle a:hover img {
	animation-play-state: paused;
}

.expertise-image-box-2 {
	position: relative;
	width: 48%;
	align-content: center;
	z-index: 1;
}

.expertise-image-box-2 .expertise-image figure {
	border: 10px solid var(--white-color);
	border-radius: 20px;
}

.expertise-image-box-2 .expertise-image figure img {
	aspect-ratio: 1 / 1.27;
	border-radius: 10px;
}

/************************************/
/***     08. Intro Video css      ***/
/************************************/

.intro-video {
	position: relative;
	background-image: url('../images/intro-video-image.jpg');
	border-radius: 10px;
	min-height: 900px;
	align-content: end;
	padding: 50px 0;
	overflow: hidden;
}

.intro-video::before {
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background-color: var(--primary-color);
	opacity: 50%;
	width: 100%;
	height: 100%;
	z-index: 1;
}

.intro-video .container {
	position: relative;
	z-index: 1;
}

.intro-video-play-btn {
	text-align: center;
	align-content: center;
}

.intro-video-play-btn .video-play-button a {
	height: 100px;
	width: 100px;
}

.intro-video-play-btn .video-play-button a i {
	font-size: 35px;
	margin-left: 5px;
}

.intro-video-play-btn .video-play-button.bg-effect a:before,
.intro-video-play-btn .video-play-button.bg-effect a:after {
	border-width: 80px;
}

.intro-video-list {
	border-top: 1px solid var(--dark-divider-color);
	padding-top: 40px;
	margin-top: 350px;
}

.intro-video-list ul {
	display: flex;
	flex-wrap: wrap;
	gap: 15px 30px;
	list-style: none;
	margin: 0;
	padding: 0;
}

.intro-video-list ul li {
	position: relative;
	width: calc(25% - 22.5px);
	line-height: 1.5em;
	padding-left: 25px;
	color: var(--white-color);
}

.intro-video-list ul li::before {
	content: '\f058';
	position: absolute;
	font-family: 'Font Awesome 7 Free';
	font-size: 18px;
	font-weight: 900;
	color: var(--accent-color);
	top: 0;
	left: 0;
}

/************************************/
/***     09. Our Pricing css      ***/
/************************************/

.our-pricing {
	padding: 100px 0;
}

.pricing-item {
	position: relative;
	background-color: var(--secondary-color);
	border-radius: 10px;
	height: calc(100% - 30px);
	margin-bottom: 30px;
	padding: 40px;
	overflow: hidden;
}

.pricing-item .icon-box {
	position: absolute;
	top: -20px;
	right: -20px;
}

.pricing-item .icon-box img {
	width: 100%;
	max-width: 100px;
}

.pricing-item-btn {
	margin-top: 40px;
}

.pricing-item-content h3 {
	display: inline-block;
	font-size: 14px;
	text-transform: uppercase;
	background-color: var(--white-color);
	border-radius: 100px;
	padding: 7px 16px;
	margin-bottom: 20px;
}

.pricing-item-content h2 {
	font-size: 48px;
	font-weight: 700;
}

.pricing-item-content sub {
	font-size: 16px;
	font-weight: 400;
	color: var(--text-color);
	bottom: 0;
}

.pricing-item-content p {
	margin: 10px 0 0;
}

.pricing-item-btn .btn-default {
	width: 100%;
	text-align: center;
	padding: 17px;
}

.pricing-item-btn .btn-default::before {
	display: none;
}

.pricing-item-list {
	margin-top: 40px;
}

.pricing-item-list h3 {
	font-size: 20px;
}

.pricing-item-list ul {
	list-style: none;
	border-top: 1px solid var(--divider-color);
	padding: 30px 0 0;
	margin: 30px 0 0;
}

.pricing-item-list ul li {
	position: relative;
	line-height: 1.5em;
	padding-left: 25px;
	margin-bottom: 15px;
}

.pricing-item-list ul li:last-child {
	margin-bottom: 0;
}

.pricing-item-list ul li::before {
	content: '\f058';
	position: absolute;
	font-family: 'Font Awesome 7 Free';
	font-size: 18px;
	font-weight: 900;
	color: var(--accent-color);
	top: 0;
	left: 0;
}

.pricing-benefit-list {
	margin-top: 30px;
}

.pricing-benefit-list ul {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	list-style: none;
	margin: 0;
	padding: 0;
	gap: 20px 60px;
}

.pricing-benefit-list ul li {
	display: inline-flex;
	align-items: center;
}

.pricing-benefit-list ul li img {
	width: 100%;
	max-width: 20px;
	margin-right: 10px;
}

/************************************/
/***    10. Why Choose Us css     ***/
/************************************/

.why-choose-us {
	padding: 100px 0;
}

.why-choose-us-content {
	height: 100%;
	align-content: center;
}

.why-choose-us-body {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 60px 30px;
}

.why-choose-us-content-list {
	width: 100%;
}

.why-choose-us-content-list ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

.why-choose-us-content-list ul li {
	position: relative;
	color: var(--white-color);
	line-height: 1.5em;
	padding-left: 25px;
	margin-bottom: 20px;
}

.why-choose-us-content-list ul li:last-child {
	margin-bottom: 0;
}

.why-choose-us-content-list ul li::before {
	content: '\f058';
	position: absolute;
	font-family: 'Font Awesome 7 Free';
	font-size: 18px;
	font-weight: 900;
	color: var(--accent-color);
	top: 0;
	left: 0;
}

.why-choose-us-image {
	width: 100%;
	margin: 0 auto;
	align-content: end;
}

.why-choose-us-image figure {
	display: block;
	border-radius: 20px 20px 0 0;
}

.why-choose-us-image figure img {
	width: 100%;
	max-height: 650px;
	object-fit: cover;
	object-position: top;
	border-radius: 20px;
	/* margin-bottom: -100px; */
}

.why-choose-us-item-list {
	height: 100%;
	align-content: center
}

.why-choose-us-item {
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
	border-bottom: 1px solid var(--dark-divider-color);
	padding-bottom: 40px;
	margin-bottom: 40px;
}

.why-choose-us-item:last-child {
	border-bottom: none;
	padding-bottom: 0;
	margin-bottom: 0;
}

.why-choose-us-item .icon-box {
	position: relative;
	width: 50px;
	height: 50px;
	background: var(--accent-color);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
}

.why-choose-us-item .icon-box::before {
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	right: 0;
	left: 0;
	background: var(--white-color);
	border-radius: 50%;
	width: 100%;
	height: 100%;
	transform: scale(0);
	transition: all 0.4s ease-in-out;
	z-index: 0;
}

.why-choose-us-item:hover .icon-box::before {
	transform: scale(1);
}

.why-choose-us-item .icon-box img {
	position: relative;
	width: 100%;
	max-width: 24px;
	transition: all 0.4s ease-in-out;
	z-index: 1;
}

.why-choose-us-item:hover .icon-box img {
	filter: brightness(0) invert(0);
}

.why-choose-us-item-content {
	width: calc(100% - 70px);
}

.why-choose-us-item-content h3 {
	font-size: 20px;
	color: var(--black-color);
}

.why-choose-us-item-content p {
	color: var(--black-color);
	margin: 10px 0 0;
}

/************************************/
/***    11. Our Activities css    ***/
/************************************/

.our-events {
	padding: 100px 0 70px;
}

.events-item {
	height: calc(100% - 30px);
	margin-bottom: 30px;
}

.events-item-image {
	margin-bottom: 20px;
}

.events-item-image a,
.events-item-image figure {
	display: block;
	border-radius: 10px;
	overflow: hidden;
	cursor: none;
}

.events-item-image figure img {
	width: 100%;
	object-fit: cover;
	border-radius: 10px;
	aspect-ratio: 1 / 0.745;
	transition: all 0.6s ease-in-out;
}

.events-item:hover .events-item-image figure img {
	transform: scale(1.06);
}

.events-item-content h2 {
	font-size: 20px;
}

.events-item-content h2 a {
	color: inherit;
}

.events-item-content p {
	margin: 10px 0 0;
}

.events-item-meta {
	border-top: 1px solid var(--divider-color);
	padding-top: 20px;
	margin-top: 20px;
}

.events-item-meta ul {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 15px 30px;
	list-style: none;
	padding: 0;
	margin: 0;
}

.events-item-meta ul li {
	display: inline-flex;
	align-items: center;
	line-height: 1.5em;
}

.events-item-meta ul li img {
	max-width: 24px;
	margin-right: 10px;
}

/************************************/
/***   12. Our Testimonials css   ***/
/************************************/

.our-testimonials {
	position: relative;
	background-image: url('../images/gallery/gallery-img10.jpeg');
	padding: 100px 0;
	overflow: hidden;
}

.our-testimonials::before {
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background: var(--primary-color);
	opacity: 80%;
	width: 100%;
	height: 100%;
	z-index: 1;
}

.our-testimonials .container {
	position: relative;
	z-index: 2;
}

.testimonial-review-box {
	padding: 80px 3.646vw;
	background-color: var(--dark-divider-color);
	backdrop-filter: blur(30px);
	-webkit-backdrop-filter: blur(30px);
	border-radius: 10px;
	text-align: center;
	margin-right: 15px;
}

.testimonial-review-box-header .satisfy-client-images {
	justify-content: center;
}

.testimonial-review-rating {
	margin-top: 20px;
}

.testimonial-review-rating span {
	display: block;
}

.testimonial-review-rating span i {
	font-size: 20px;
	color: var(--accent-color);
}

.testimonial-review-rating p {
	color: var(--white-color);
	margin: 10px 0 0;
}

.testimonial-contact-item {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 15px;
	margin-top: 40px;
}

.testimonial-contact-item .icon-box {
	width: 40px;
	height: 40px;
	background: var(--accent-color);
	backdrop-filter: blur(15px);
	border-radius: 100px;
	display: flex;
	justify-content: center;
	align-items: center;
}

.testimonial-contact-item .icon-box img {
	width: 100%;
	max-width: 20px;
}

.testimonial-contact-item-content h3 {
	font-size: 20px;
	color: var(--white-color);
}

.testimonial-contact-item-content a {
	color: inherit;
	transition: all 0.4s ease-in-out;
}

.testimonial-contact-item-content:hover a {
	color: var(--accent-color);
}

.testimonial-review-box-body {
	margin-top: 40px;
}

.testimonial-review-body-content h3 {
	font-size: 20px;
	line-height: 1.4em;
	color: var(--white-color);
}

.testimonial-slider {
	margin-top: 80px;
}

.testimonial-slider .swiper-wrapper {
	cursor: none;
}

.testimonial-item-rating i {
	font-size: 20px;
	color: var(--accent-color);
}

.testimonial-item-content {
	margin-top: 20px;
}

.testimonial-item-content p {
	color: var(--white-color);
}

.testimonial-item-content p:last-child {
	margin: 0;
}

.testimonial-item-author {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 15px;
	border-top: 1px solid var(--dark-divider-color);
	margin-top: 50px;
	padding-top: 50px;
}

.testimonial-author-image figure {
	display: block;
	border-radius: 50%;
}

.testimonial-author-image figure img {
	width: 100%;
	max-width: 50px;
	border-radius: 50%;
}

.testimonial-author-content {
	width: calc(100% - 65px);
}

.testimonial-author-content h3 {
	font-size: 20px;
	color: var(--white-color);
}

.testimonial-author-content p {
	color: var(--white-color);
	margin: 5px 0 0;
}

.testimonial-btn {
	position: absolute;
	bottom: 0;
	right: 0;
	display: flex;
	align-items: center;
	justify-content: right;
	gap: 15px;
	z-index: 2;
}

.testimonial-slider .testimonial-button-next,
.testimonial-slider .testimonial-button-prev {
	position: relative;
	width: 50px;
	height: 50px;
	background-color: var(--dark-divider-color);
	backdrop-filter: blur(30px);
	-webkit-backdrop-filter: blur(30px);
	border-radius: 50%;
	transition: all 0.4s ease-in-out;
}

.testimonial-slider .testimonial-button-next:hover,
.testimonial-slider .testimonial-button-prev:hover {
	background: var(--accent-color);
}

.testimonial-slider .testimonial-button-next::before,
.testimonial-slider .testimonial-button-prev::before {
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	background-image: url('../images/arrow-white.svg');
	background-repeat: no-repeat;
	background-position: center center;
	background-size: 12px auto;
	transform: rotate(45deg);
}

.testimonial-slider .testimonial-button-prev::before {
	transform: rotate(225deg);
}

/************************************/
/***       13. Our Blog css	      ***/
/************************************/

.our-blog {
	padding: 100px 0 70px;
}

.post-item {
	height: calc(100% - 30px);
	margin-bottom: 30px;
}

.post-featured-image {
	margin-bottom: 30px;
}

.post-featured-image a,
.post-featured-image figure {
	display: block;
	border-radius: 10px;
	cursor: none;
	overflow: hidden;
}

.post-featured-image img {
	width: 100%;
	aspect-ratio: 1 / 0.724;
	object-fit: cover;
	transition: all 0.5s ease-in-out;
}

.post-item:hover .post-featured-image img {
	transform: scale(1.08);
}

.post-item-content {
	border-bottom: 1px solid var(--divider-color);
	margin-bottom: 25px;
	padding-bottom: 25px;
}

.post-item-content h2 {
	font-size: 20px;
	line-height: 1.4em;
}

.post-item-content h2 a {
	color: inherit;
}

/************************************/
/***     	14. Footer css	      ***/
/************************************/

.footer-gallery {
	margin-bottom: 10px;
}

.footer-gallery-list {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

.footer-gallery-list .photo-gallery {
	width: calc(16.66% - 8.33px);
}

.footer-gallery-list .photo-gallery a {
	cursor: none;
}

.footer-gallery-list .photo-gallery figure {
	display: block;
	border-radius: 10px;
}

.footer-gallery-list .photo-gallery figure img {
	width: 100%;
	aspect-ratio: 1 / 0.999;
	object-fit: cover;
	border-radius: 10px;
}

.main-footer {
	padding: 100px 0 0;
	margin-bottom: 20px;
}

.footer-logo img {
	width: 100%;
	max-width: 166px;
}

.about-footer-content {
	margin-top: 30px;
}

.about-footer-content p {
	color: var(--white-color);
	margin: 0;
}

.footer-contact-items-list {
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
	border-top: 1px solid var(--dark-divider-color);
	margin-top: 40px;
	padding-top: 40px;
}

.footer-contact-item {
	width: calc(50% - 15px);
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 15px;
}

.footer-contact-item .icon-box {
	width: 40px;
	height: 40px;
	background: var(--dark-divider-color);
	backdrop-filter: blur(30px);
	-webkit-backdrop-filter: blur(30px);
	border-radius: 100px;
	display: flex;
	justify-content: center;
	align-items: center;
}

.footer-contact-item .icon-box::before {
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	right: 0;
	left: 0;
	background: var(--white-color);
	border-radius: 50%;
	width: 100%;
	height: 100%;
	transform: scale(0);
	transition: all 0.4s ease-in-out;
	z-index: 0;
}

.footer-contact-item:hover .icon-box::before {
	transform: scale(1);
}

.footer-contact-item .icon-box img {
	position: relative;
	width: 100%;
	max-width: 20px;
	z-index: 1;
}

.footer-contact-item-content {
	width: calc(100% - 55px);
}

.footer-contact-item-content p {
	color: var(--white-color);
	margin: 0;
}

.footer-contact-item-content p a {
	color: inherit;
	transition: all 0.3s ease-in-out;
}

.footer-contact-item-content p a:hover {
	color: var(--accent-color);
}

.footer-links-box {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 30px;
	margin-left: 6.771vw;
}

.footer-links {
	max-width: 32%;
}

.footer-links h3 {
	font-size: 20px;
	color: var(--white-color);
	margin-bottom: 30px;
}

.footer-links p {
	color: var(--white-color);
	margin-bottom: 15px;
}

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

.footer-links ul li {
	position: relative;
	text-transform: capitalize;
	color: var(--white-color);
	line-height: 1.5em;
	margin-bottom: 15px;
}

.footer-links ul li:last-child {
	margin-bottom: 0;
}

.footer-links ul li a {
	color: inherit;
	transition: all 0.3s ease-in-out;
}

.footer-links ul li a:hover {
	color: var(--accent-color);
}

.footer-newsletter-form {
	max-width: 42%;
}

.footer-newsletter-form h3 {
	font-size: 30px;
	color: var(--white-color);
}


.footer-newsletter-form p {
	margin-bottom: 30px;
}

.footer-newsletter-form .form-group {
	display: flex;
	flex-wrap: wrap;
	background: var(--dark-divider-color);
	backdrop-filter: blur(30px);
	-webkit-backdrop-filter: blur(30px);
	border-radius: 30px;
	padding: 10px;
}

.footer-newsletter-form .form-group .form-control {
	width: calc(100% - 40px);
	font-size: 16px;
	font-weight: 400;
	line-height: 1.4em;
	color: var(--white-color);
	background: transparent;
	border: none;
	border-radius: 0;
	outline: none;
	box-shadow: none;
	padding: 5px 20px 5px 10px;
}

.footer-newsletter-form .form-group .form-control::placeholder {
	color: var(--white-color);
}

.footer-newsletter-form .form-group .newsletter-btn {
	width: 40px;
	height: 40px;
	background: var(--accent-color);
	border-radius: 40px;
	display: flex;
	justify-content: center;
	align-items: center;
	border: none;
	box-shadow: none;
	outline: none;
	padding: 0;
	transition: all 0.3s ease-in-out;
}

.footer-newsletter-form .form-group .newsletter-btn:hover {
	background: var(--white-color);
}

.footer-newsletter-form .form-group .newsletter-btn img {
	width: 100%;
	max-width: 12px;
	transition: all 0.3s ease-in-out;
}

.footer-newsletter-form .form-group .newsletter-btn:hover img {
	transform: rotate(45deg);
	filter: brightness(0) invert(0);
}

.footer-newsletter-form .policy-checkbox {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-top: 25px;
}

.footer-newsletter-form .policy-checkbox .form-label {
	color: var(--white-color);
	margin: 0;
	line-height: normal;
}

.footer-newsletter-form .policy-checkbox .form-label a {
	color: var(--accent-color);
	text-decoration: underline;
	text-underline-offset: 5px;
	transition: all 0.3s ease-in-out;
}

.footer-newsletter-form .policy-checkbox .form-label a:hover {
	color: var(--white-color);
}

.footer-copyright {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 15px;
	border-top: 1px solid var(--dark-divider-color);
	margin-top: 60px;
	padding: 60px 0;
}

.footer-social-links {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 20px;
}

.footer-social-links ul {
	display: flex;
	flex-wrap: wrap;
	gap: 10px 15px;
	padding: 0;
	margin: 0;
	list-style: none;
}

.footer-social-links ul li a {
	width: 36px;
	height: 36px;
	border: 1px solid var(--white-color);
	color: var(--white-color);
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	transition: all 0.3s ease-in-out;
}

.footer-social-links ul li a:hover {
	color: var(--accent-color);
	border-color: var(--accent-color);
}

.footer-social-links ul li a i {
	font-size: 18px;
	color: inherit;
	transition: all 0.3s ease-in-out;
}

.footer-copyright-text p {
	color: var(--white-color);
	margin: 0;
}

.footer-privacy-policy ul {
	display: flex;
	align-items: center;
	gap: 40px;
	list-style: none;
	padding: 0;
	margin: 0;
}

.footer-privacy-policy ul li {
	position: relative;
	line-height: normal;
	color: var(--white-color);
}

.footer-privacy-policy ul li::before {
	content: '';
	position: absolute;
	top: 50%;
	right: -23px;
	background: var(--accent-color);
	border-radius: 100px;
	transform: translateY(-50%);
	width: 6px;
	height: 6px;
}

.footer-privacy-policy ul li:last-child:before {
	display: none;
}

.footer-privacy-policy ul li a {
	color: inherit;
	transition: all 0.3s ease-in-out;
}

.footer-privacy-policy ul li a:hover {
	color: var(--accent-color);
}

/************************************/
/***     15. About Us Page css    ***/
/************************************/

.page-header {
	position: relative;
	background: var(--primary-color) url('../images/page-header-bg.png') no-repeat;
	background-position: center center;
	background-size: cover;
	padding: 275px 0 160px;
	/* margin-top: 20px; */
	overflow: hidden;
}

.page-header-box {
	text-align: center;
}

.page-header-box h1 {
	display: inline-block;
	font-size: 80px;
	font-weight: 700;
	line-height: 1.1em;
	text-transform: uppercase;
	color: var(--white-color);
	margin-bottom: 10px;
	cursor: none;
}

.page-header-box ol {
	justify-content: center;
	margin: 0;
	padding: 0;
}

.page-header-box ol li.breadcrumb-item {
	font-size: 16px;
	font-weight: 400;
	line-height: normal;
	text-transform: capitalize;
	color: var(--white-color);
}

.page-header-box ol li.breadcrumb-item a {
	color: inherit;
}

.page-header-box ol .breadcrumb-item+.breadcrumb-item::before {
	color: var(--white-color);
}

.our-approach {
	padding: 100px 0 70px;
}

.approch-item {
	background-color: var(--dark-divider-color);
	backdrop-filter: blur(30px);
	-webkit-backdrop-filter: blur(30px);
	border-radius: 10px;
	padding: 40px 30px;
	height: calc(100% - 30px);
	/* margin-bottom: 30px; */
	overflow: hidden;
}

.approach-item-header {
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
}

.approach-item-header .icon-box {
	position: relative;
	height: 50px;
	width: 50px;
	background-color: var(--accent-color);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
}

.approach-item-header .icon-box::before {
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	right: 0;
	left: 0;
	background: var(--white-color);
	border-radius: 50%;
	width: 100%;
	height: 100%;
	transform: scale(0) rotate(180deg);
	transition: all 0.4s ease-in-out;
	z-index: 0;
}

.approch-item:hover .approach-item-header .icon-box::before {
	transform: scale(1);
}

.approach-item-header .icon-box img {
	position: relative;
	width: 100%;
	max-width: 24px;
	transition: all 0.4s ease-in-out;
	z-index: 1;
}

.approch-item:hover .approach-item-header .icon-box img {
	filter: brightness(0) invert(0);
}

.approach-item-content {
	width: calc(100% - 70px);
}

.approach-item-content h3 {
	font-size: 20px;
	color: var(--white-color);
}

.approach-item-content p {
	color: var(--white-color);
	margin: 10px 0 18px;
}

/* 
.approach-item-image {
	border-top: 1px solid var(--dark-divider-color);
	margin-top: 30px;
	padding-top: 30px;
}

.approach-item-image figure {
	display: block;
	border-radius: 10px 10px 0 0;
}

.approach-item-image img {
	width: 100%;
	aspect-ratio: 1 / 0.91;
	object-fit: cover;
	border-radius: 10px 10px 0 0;
} */

.our-team {
	padding: 100px 0;
}

.team-item {
	height: calc(100% - 30px);
	margin-bottom: 30px;
}

.team-item-image {
	position: relative;
	background-color: var(--secondary-color);
	border-radius: 10px;
	margin-bottom: 20px;
	overflow: hidden;
}

.team-item-image a,
.team-item-image figure {
	display: block;
	border-radius: 10px 10px 0 0;
	overflow: hidden;
}

.team-item-image a {
	cursor: none;
}

.team-item-image img {
	width: 100%;
	aspect-ratio: 1 / 1.134;
	object-fit: cover;
}

.team-social-icon {
	position: absolute;
	right: 30px;
	bottom: 30px;
	left: 30px;
	transform: translateY(20px);
	opacity: 0;
	visibility: hidden;
	transition: all 0.4s ease-in-out;
	z-index: 1;
}

.team-item:hover .team-social-icon {
	transform: translateY(0);
	opacity: 1;
	visibility: visible;
}

.team-social-icon ul {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 15px;
}

.team-social-icon ul li a {
	width: 36px;
	height: 36px;
	background: var(--accent-color);
	color: var(--white-color);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: all 0.4s ease-in-out;
}

.team-social-icon ul li a:hover {
	background: var(--white-color);
	color: var(--primary-color);
}

.team-social-icon ul li a i {
	font-size: 18px;
	color: inherit;
}

.team-item-content {
	text-align: center;
}

.team-item-content h2 {
	font-size: 20px;
	text-transform: capitalize;
}

.team-item-content h2 a {
	color: inherit;
}

.team-item-content p {
	margin: 10px 0 0;
}

.our-team-footer {
	margin-top: 30px;
}

.team-footer-list ul {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 20px;
	list-style: none;
	padding: 0;
	margin: 0 auto;
}

.team-footer-list ul li {
	position: relative;
	background: var(--secondary-color);
	color: var(--primary-color);
	padding: 11px 20px 11px 35px;
	border-radius: 100px;
	transition: all 0.4s ease-in-out;
}

.team-footer-list ul li::before {
	content: '';
	position: absolute;
	left: 20px;
	top: 50%;
	transform: translateY(-50%);
	background: var(--accent-color);
	border-radius: 50%;
	width: 6px;
	height: 6px;
}

.team-footer-list ul li:hover {
	background: var(--primary-color);
	color: var(--white-color);
}

.our-achievements {
	padding: 100px 0;
}

.achievements-image-box {
	position: relative;
	height: 100%;
	margin-right: 15px;
}

.achievements-image {
	height: 100%;
}

.achievements-image figure {
	display: block;
	height: 100%;
	border-radius: 10px;
}

.achievements-image img {
	height: 100%;
	width: 100%;
	aspect-ratio: 1 / 0.93;
	object-fit: cover;
	border-radius: 10px;
}

.achievements-cta-box {
	max-width: 325px;
	position: absolute;
	bottom: 30px;
	left: 30px;
	background-color: var(--dark-divider-color);
	border-radius: 10px;
	backdrop-filter: blur(30px);
	-webkit-backdrop-filter: blur(30px);
	padding: 30px;
	z-index: 1;
}

.achievements-cta-box .satisfy-client-content {
	margin-top: 15px;
}

.achievements-cta-box .satisfy-client-content p {
	color: var(--white-color);
	margin: 0;
}

.achievements-cta-box-body {
	border-top: 1px solid var(--dark-divider-color);
	margin-top: 20px;
	padding-top: 20px;
}

.achievements-cta-box-body-title h3 {
	font-size: 20px;
	line-height: 1.3em;
	color: var(--white-color);
}

.achievements-cta-box-btn {
	margin-top: 30px;
}

.achievements-cta-box-btn .readmore-btn {
	color: var(--white-color);
}

.achievements-cta-box-btn .readmore-btn:before {
	background: url('../images/arrow-white.svg');
}

.achievements-body {
	border-top: 1px solid var(--divider-color);
	padding-top: 40px;
}

.achievements-body ul {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
}

.achievements-body ul li {
	position: relative;
	width: calc(50% - 10px);
	line-height: 1.5em;
	padding-left: 25px;
}

.achievements-body ul li::before {
	content: '\f058';
	position: absolute;
	font-family: 'Font Awesome 7 Free';
	font-size: 18px;
	font-weight: 900;
	color: var(--accent-color);
	top: 0;
	left: 0;
}

.achievments-counter-list {
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
	margin-top: 40px;
}

.achievments-counter-item {
	width: calc(33.33% - 20px);
	background-color: var(--secondary-color);
	border-radius: 10px;
	padding: 30px 20px;
	text-align: center;
}

.achievments-counter-item h2 {
	font-size: 48px;
	line-height: 1em;
}

.achievments-counter-item p {
	margin: 5px 0 0;
}

.achievements-btn {
	margin-top: 40px;
}

.our-faqs {
	padding: 100px 0;
}

.faqs-image-box {
	display: flex;
	flex-wrap: wrap;
	margin-right: 15px;
}

.faqs-image-box-1 {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-around;
	padding-bottom: 100px;
}

.faqs-image {
	width: 100%;
	margin-left: -10px;
}

.faqs-image figure {
	display: block;
	border-radius: 10px;
}

.faqs-image img {
	width: 100%;
	aspect-ratio: 1.122;
	object-fit: cover;
	border-radius: 10px;
}

.faqs-image-title h2 {
	font-size: 75px;
	line-height: 1em;
	writing-mode: vertical-lr;
	cursor: none;
	color: var(--bg-color);
	background: var(--divider-color);
	background-clip: text;
	-webkit-background-clip: text;
	-webkit-text-stroke: 2px transparent;
	transform: rotate(-180deg);
	transition: all 0.4s ease-in-out;
}

.faqs-image-box:hover .faqs-image-title h2 {
	color: var(--primary-color);
}

.faq-cta-box {
	width: 17%;
	align-content: end;
}

.faq-info-box {
	position: relative;
	margin-left: -205px;
	background-color: var(--accent-color);
	border: 6px solid var(--white-color);
	border-radius: 20px;
	padding: 40px;
	z-index: 1;
}

.faq-info-box .satisfy-client-image {
	border-color: var(--accent-color);
}

.faq-info-box-content {
	margin-top: 60px;
}

.faq-info-box-content h3 {
	font-size: 18px;
	color: var(--white-color);
}

.faq-info-box-content p {
	color: var(--white-color);
	margin: 10px 0 0;
}

.faq-cta-contact-item {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 10px;
	margin-top: 20px;
}

.faq-cta-contact-item .icon-box img {
	width: 100%;
	max-width: 24px;
}

.faq-cta-contact-item-content {
	width: calc(100% - 34px);
}

.faq-cta-contact-item-content p {
	color: var(--white-color);
	margin: 0;
}

.faq-cta-contact-item-content p a {
	color: inherit;
	transition: all 0.4s ease-in-out;
}

.faq-cta-contact-item-content p a:hover {
	color: var(--primary-color);
}

.faq-accordion .accordion-item {
	position: relative;
	border-radius: 0;
	margin-bottom: 40px;
	padding: 0;
}

.faq-accordion .accordion-item:last-child {
	margin-bottom: 0;
}

.faq-accordion .accordion-item:last-child .accordion-header .accordion-button.collapsed {
	border-bottom: none;
	padding-bottom: 0;
}

.faq-accordion .accordion-header .accordion-button {
	font-size: 20px;
	font-weight: 600;
	line-height: 1.4em;
	background: transparent;
	color: var(--primary-color);
	border-bottom: 1px solid var(--divider-color);
	padding: 0px 25px 20px 0px;
	transition: all 0.3s ease-in-out;
}

.faq-accordion .accordion-item .accordion-button::after,
.faq-accordion .accordion-item .accordion-button.collapsed::after {
	content: '\2b';
	font-family: 'FontAwesome';
	position: absolute;
	right: 0px;
	top: 0px;
	font-size: 20px;
	color: var(--accent-color);
	transition: all 0.4s ease-in-out;
}

.faq-accordion .accordion-button:not(.collapsed)::after {
	content: '\f068';
	color: var(--primary-color);
}

.faq-accordion .accordion-item .accordion-body {
	padding-top: 20px;
}

.faq-accordion .accordion-item .accordion-body p {
	margin: 0;
}

.contact-section {
	padding: 100px 0px;
}

.contact-us-form .section-title img {
	position: relative;
	top: 0;
	left: 50px;
	width: 40px;
	height: 40px;
	margin-top: 20px;
	display: inline-flex;
	justify-content: center;
	align-items: center;
	margin-right: 10px;
	background-color: #896431;
	border-radius: 20%;
	padding: 10px;
}


/************************************/
/***     16. Programs Page css    ***/
/************************************/

.page-programs {
	padding: 100px 0 70px;
}

/************************************/
/***    17. Program Single css    ***/
/************************************/

.page-program-single {
	padding: 100px 0;
}

.page-single-sidebar {
	position: sticky;
	top: 20px;
	margin-right: 20px;
}

.page-category-list {
	background: var(--secondary-color);
	border-radius: 10px;
	margin-bottom: 60px;
	overflow: hidden;
}

.page-category-list h3 {
	font-size: 20px;
	color: var(--white-color);
	background: var(--primary-color);
	padding: 25px 30px;
}

.page-category-list ul {
	list-style: none;
	margin: 0;
	padding: 30px;
}

.page-category-list ul li {
	line-height: 1.5em;
	border-bottom: 1px solid var(--divider-color);
	padding-bottom: 20px;
	margin-bottom: 20px;
}

.page-category-list ul li:last-child {
	border-bottom: none;
	margin: 0;
	padding: 0;
}

.page-category-list ul li a {
	position: relative;
	display: block;
	text-transform: capitalize;
	color: inherit;
	padding-right: 20px;
	transition: all 0.4s ease-in-out;
}

.page-category-list ul li a:hover {
	color: var(--primary-color);
}

.page-category-list ul li a::before {
	content: '';
	position: absolute;
	top: 5px;
	right: 0;
	background: url('../images/arrow-primary.svg') no-repeat;
	background-position: center center;
	background-size: cover;
	width: 12px;
	height: 12px;
	transition: all 0.4s ease-in-out;
}

.page-category-list ul li a:hover::before {
	transform: rotate(45deg);
}

.sidebar-cta-box {
	background: url('../images/sidebar-cta-box-bg-shape.png') no-repeat;
	background-position: top center;
	background-size: 100% auto;
	background-color: var(--primary-color);
	padding: 80px 2.865vw;
	border-radius: 10px;
	text-align: center;
}

.sidebar-cta-logo img {
	width: 100%;
	max-width: 166px;
}

.sidebar-cta-review-content {
	margin-top: 20px;
}

.sidebar-cta-review-content span {
	display: block;
}

.sidebar-cta-review-content span i {
	font-size: 20px;
	color: var(--accent-color);
}

.sidebar-cta-review-content p {
	color: var(--white-color);
	margin: 10px 0 0;
}

.sidebar-cta-contact-item {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 15px;
	margin-top: 40px;
}

.sidebar-cta-contact-item .icon-box {
	position: relative;
	width: 40px;
	height: 40px;
	background: var(--accent-color);
	backdrop-filter: blur(15px);
	border-radius: 100px;
	display: flex;
	justify-content: center;
	align-items: center;
	overflow: hidden;
}

.sidebar-cta-contact-item .icon-box::before {
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	right: 0;
	left: 0;
	background: var(--white-color);
	border-radius: 50%;
	width: 100%;
	height: 100%;
	transform: scale(0);
	transition: all 0.4s ease-in-out;
	z-index: 0;
}

.sidebar-cta-contact-item:hover .icon-box::before {
	transform: scale(1);
}

.sidebar-cta-contact-item .icon-box img {
	position: relative;
	width: 100%;
	max-width: 20px;
	transition: all 0.4s ease-in-out;
	z-index: 1;
}

.sidebar-cta-contact-item:hover .icon-box img {
	filter: brightness(0) invert(0);
}

.sidebar-cta-contact-item-content h3 {
	font-size: 20px;
	color: var(--white-color);
}

.sidebar-cta-contact-item-content a {
	color: inherit;
	transition: all 0.4s ease-in-out;
}

.sidebar-cta-contact-item-content:hover a {
	color: var(--accent-color);
}

.sidebar-cta-box-body {
	margin-top: 40px;
}

.sidebar-cta-body-content h3 {
	font-size: 20px;
	line-height: 1.4em;
	color: var(--white-color);
}

.sidebar-cta-body-btn {
	margin-top: 40px;
}

.page-single-image {
	margin-bottom: 30px;
}

.page-single-image figure {
	display: block;
	border-radius: 10px;
}

.page-single-image img {
	width: 100%;
	aspect-ratio: 1 / 0.515;
	object-fit: cover;
	border-radius: 10px;
}

.program-entry {
	margin-bottom: 60px;
}

.program-entry p {
	margin-bottom: 20px;
}

.program-entry p:last-child {
	margin-bottom: 0;
}

.program-entry h2 {
	font-size: 48px;
	font-weight: 700;
	margin-bottom: 20px;
}

.program-entry h3 {
	font-size: 20px;
	line-height: 1.4em;
}

.program-entry ul {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	gap: 15px 20px;
}

.program-entry ul li {
	width: calc(50% - 10px);
	position: relative;
	line-height: 1.5em;
	padding-left: 25px;
}

.program-entry ul li::before {
	content: '\f058';
	position: absolute;
	font-family: 'Font Awesome 7 Free';
	font-size: 18px;
	font-weight: 900;
	color: var(--accent-color);
	top: 0;
	left: 0;
}

.program-benefit-box,
.program-entry-box {
	margin-top: 60px;
}

.program-benefit-item-list {
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
	margin-top: 40px;
}

.program-benefit-item {
	width: calc(33.33% - 20px);
	background: var(--secondary-color);
	border-radius: 10px;
	text-align: center;
	padding: 30px;
}

.program-benefit-item .icon-box {
	position: relative;
	width: 50px;
	height: 50px;
	background: var(--accent-color);
	border-radius: 50%;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
}

.program-benefit-item .icon-box::before {
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	right: 0;
	left: 0;
	background: var(--primary-color);
	border-radius: 50%;
	width: 100%;
	height: 100%;
	transform: scale(0);
	transition: all 0.4s ease-in-out;
	z-index: 0;
}

.program-benefit-item:hover .icon-box::before {
	transform: scale(1);
}

.program-benefit-item .icon-box img {
	position: relative;
	width: 100%;
	max-width: 24px;
	z-index: 1;
}

.program-benefits-item-content h3 {
	margin-top: 20px;
}

.program-info-list {
	margin-top: 40px;
}

.program-entry-items-list {
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
	margin: 40px 0;
}

.program-entry-item {
	position: relative;
	width: calc(33.33% - 20px);
	padding: 30px;
	min-height: 350px;
	align-content: end;
}

.program-entry-item-image {
	position: absolute;
	top: 0;
	bottom: 0;
	right: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border-radius: 10px;
	overflow: hidden;
}

.program-entry-item-image figure {
	position: relative;
	display: block;
	height: 100%;
}

.program-entry-item-image figure::before {
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	height: 100%;
	width: 100%;
	background: linear-gradient(180deg, rgba(9, 13, 45, 0.00) -2.67%, var(--primary-color) 100%);
	z-index: 1;
}

.program-entry-item-image figure img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: all 0.6s ease-in-out;
}

.program-entry-item:hover .program-entry-item-image figure img {
	transform: scale(1.06);
}

.program-entry-content-box {
	position: relative;
	z-index: 1;
}

.program-entry-item-header {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	align-items: center;
	border-bottom: 1px solid var(--dark-divider-color);
	padding-bottom: 20px;
	margin-bottom: 20px;
}

.program-entry-item-header .icon-box {
	position: relative;
	background: var(--accent-color);
	border-radius: 50%;
	width: 50px;
	height: 50px;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
}

.program-entry-item-header .icon-box::before {
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	right: 0;
	left: 0;
	background: var(--white-color);
	border-radius: 50%;
	width: 100%;
	height: 100%;
	transform: scale(0);
	transition: all 0.4s ease-in-out;
	z-index: 0;
}

.program-entry-item:hover .icon-box::before {
	transform: scale(1);
}

.program-entry-item-header .icon-box img {
	position: relative;
	width: 100%;
	max-width: 24px;
	transition: all 0.4s ease-in-out;
	z-index: 1;
}

.program-entry-item:hover .icon-box img {
	filter: brightness(0) invert(0);
}

.program-entry-item-title {
	width: calc(100% - 60px);
}

.program-entry-item-title h3 {
	color: var(--white-color);
}

.program-entry-body-list ul li {
	width: auto;
	font-size: 14px;
	color: var(--white-color);
	background: var(--dark-divider-color);
	backdrop-filter: blur(30px);
	-webkit-backdrop-filter: blur(30px);
	border-radius: 100px;
	padding: 10px 15px;
}

.program-entry-body-list ul li::before {
	display: none;
}

/************************************/
/***     18. Blog Archive css     ***/
/************************************/

.page-blog {
	padding: 100px 0;
}

.page-pagination {
	margin-top: 30px;
	text-align: center;
}

.page-pagination ul {
	justify-content: center;
	padding: 0;
	margin: 0;
}

.page-pagination ul li a,
.page-pagination ul li span {
	display: flex;
	text-decoration: none;
	justify-content: center;
	align-items: center;
	background: var(--secondary-color);
	color: var(--primary-color);
	border-radius: 50%;
	width: 40px;
	height: 40px;
	margin: 0 5px;
	font-weight: 600;
	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);
	color: var(--white-color);
}

/************************************/
/***     19. Blog Single css      ***/
/************************************/

.page-single-post {
	padding: 100px 0;
}

.post-single-meta ol li {
	font-size: 18px;
	color: var(--white-color);
	margin-right: 15px;
}

.post-single-meta ol li:last-child {
	margin-right: 0;
}

.post-single-meta ol li i {
	font-size: 18px;
	color: var(--white-color);
	margin-right: 5px;
}

.post-image {
	position: relative;
	margin-bottom: 30px;
}

.post-image figure {
	display: block;
	border-radius: 10px;
	overflow: hidden;
}

.post-image img {
	width: 100%;
	aspect-ratio: 1 / 0.50;
	object-fit: cover;
	border-radius: 10px;
}

.post-content {
	width: 100%;
	max-width: 1250px;
	margin: 0 auto;
}

.post-entry {
	border-bottom: 1px solid var(--divider-color);
	padding-bottom: 30px;
	margin-bottom: 30px;
}

.post-entry:after {
	content: '';
	display: block;
	clear: both;
}

.post-entry a {
	color: var(--accent-color);
}

.post-entry h1,
.post-entry h2,
.post-entry h3,
.post-entry h4,
.post-entry h5,
.post-entry h6 {
	font-weight: 700;
	line-height: 1.2em;
	margin: 0 0 0.42em;
}

.post-entry h1 {
	font-size: 58px;
}

.post-entry h2 {
	font-size: 48px;
}

.post-entry h3 {
	font-size: 40px;
}

.post-entry h4 {
	font-size: 30px;
}

.post-entry h5 {
	font-size: 24px;
}

.post-entry h6 {
	font-size: 20px;
}

.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 ul {
	padding: 0;
	margin: 20px 0 20px;
	padding-left: 20px;
}

.post-entry ol li,
.post-entry ul li {
	position: relative;
	font-size: 18px;
	font-weight: 400;
	line-height: 1.5em;
	color: var(--text-color);
	margin-bottom: 15px;
}

.post-entry ul li:last-child {
	margin-bottom: 0;
}

.post-entry ul ul,
.post-entry ul ol,
.post-entry ol ol,
.post-entry ol ul {
	margin-top: 20px;
	margin-bottom: 0;
}

.post-entry ul ul li:last-child,
.post-entry ul ol li:last-child,
.post-entry ol ol li:last-child,
.post-entry ol ul li:last-child {
	margin-bottom: 0;
}

.post-entry blockquote {
	background: var(--accent-color) url('../images/icon-blockquote.svg');
	background-repeat: no-repeat;
	background-position: 30px 30px;
	background-size: 45px;
	border-radius: 10px;
	padding: 30px 30px 30px 90px;
	margin-bottom: 30px;
}

.post-entry blockquote p {
	font-size: 20px;
	font-weight: 600;
	line-height: 1.4em;
	color: var(--white-color);
}

.post-entry blockquote p:last-child {
	margin-bottom: 0;
}

.tag-links {
	font-size: 20px;
	font-weight: 600;
	text-transform: capitalize;
	color: var(--primary-color);
	display: inline-flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 15px;
}

.post-tags .tag-links a {
	display: inline-block;
	font-size: 16px;
	font-weight: 700;
	text-transform: capitalize;
	line-height: 1em;
	background: var(--accent-color);
	color: var(--white-color);
	border-radius: 100px;
	padding: 12px 20px;
	transition: all 0.4s ease-in-out;
}

.post-tags .tag-links a:hover {
	background: 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: var(--accent-color);
	color: var(--white-color);
	border-radius: 100px;
	width: 40px;
	height: 40px;
	transition: all 0.4s ease-in-out;
}

.post-social-sharing ul li:hover a {
	background: var(--primary-color);
}

.post-social-sharing ul li a i {
	font-size: 18px;
	color: inherit;
}

/************************************/
/***      20. Events Page css     ***/
/************************************/

.page-events {
	padding: 100px 0 70px;
}

/************************************/
/***     21. Event Single css     ***/
/************************************/

.page-event-single {
	padding: 100px 0;
}

.event-category-list {
	padding: 30px;
}

.event-category-item-list {
	padding: 30px;
}

.event-category-item {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 15px;
	border-bottom: 1px solid var(--divider-color);
	margin-bottom: 20px;
	padding-bottom: 20px;
}

.event-category-item:last-child {
	margin-bottom: 0;
	padding-bottom: 0;
	border-bottom: none;
}

.event-category-item .icon-box img {
	width: 100%;
	max-width: 24px;
}

.event-category-item-content {
	width: calc(100% - 39px);
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 5px 10px;
}

.event-category-item-content h4 {
	font-size: 16px;
	font-weight: 600;
	line-height: normal;
}

.event-category-item-content p {
	margin-bottom: 0;
}

.event-entry {
	border-bottom: 1px solid var(--divider-color);
	margin-bottom: 60px;
	padding-bottom: 60px;
}

.event-entry p {
	margin-bottom: 20px;
}

.event-entry p:last-child {
	margin-bottom: 0;
}

.event-entry h2 {
	font-size: 48px;
	font-weight: 700;
	margin-bottom: 20px;
}

.event-entry h3 {
	font-size: 20px;
	margin-bottom: 10px;
}

.event-entry h3 a {
	color: inherit;
}

.event-expect-box,
.event-performers-box {
	margin-top: 60px;
}

.event-expect-list {
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
	margin-top: 40px;
}

.event-expect-item {
	width: calc(50% - 15px);
	background-color: var(--secondary-color);
	border-radius: 10px;
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
	padding: 30px;
}

.event-expect-item .icon-box {
	position: relative;
	width: 50px;
	height: 50px;
	background: var(--accent-color);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
}

.event-expect-item .icon-box::before {
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	right: 0;
	left: 0;
	background: var(--primary-color);
	border-radius: 50%;
	width: 100%;
	height: 100%;
	transform: scale(0);
	transition: all 0.4s ease-in-out;
	z-index: 0;
}

.event-expect-item:hover .icon-box::before {
	transform: scale(1);
}

.event-expect-item .icon-box img {
	position: relative;
	width: 100%;
	max-width: 24px;
	z-index: 1;
}

.event-expect-item-content {
	width: calc(100% - 70px);
}

.event-expect-item-content p {
	margin: 0;
}

.event-performers-list {
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
	margin-top: 40px;
}

.event-performers-list .team-item {
	width: calc(50% - 15px);
	height: auto;
	margin-bottom: 0;
}

.event-performers-list .team-item-image img {
	aspect-ratio: 1 / 1.223;
}

/************************************/
/***       22. Team Page css      ***/
/************************************/

.page-team {
	padding: 100px 0 70px;
}

/************************************/
/***      23. Team Single css     ***/
/************************************/

.page-team-single {
	padding: 100px 0;
}

.team-sidebar-box {
	background-color: var(--secondary-color);
	border-radius: 10px;
	margin-bottom: 60px;
	overflow: hidden;
}

.team-sidebar-image figure {
	display: block;
	border-radius: 10px 10px 0 0;
}

.team-sidebar-image img {
	width: 100%;
	aspect-ratio: 1 / 1.11;
	object-fit: cover;
	border-radius: 10px 10px 0 0;
}

.team-sidebar-content {
	background-color: var(--primary-color);
	padding: 30px;
}

.team-sidebar-body h3 {
	color: var(--white-color);
	font-size: 20px;
}

.team-sidebar-body p {
	color: var(--white-color);
	margin: 10px 0 0;
}

.team-contact-list {
	border-top: 1px solid var(--dark-divider-color);
	margin-top: 30px;
	padding-top: 30px;
}

.team-contact-item {
	display: flex;
	flex-wrap: wrap;
	gap: 15px;
	margin-bottom: 30px;
}

.team-contact-item:last-child {
	margin-bottom: 0;
}

.team-contact-item .icon-box {
	position: relative;
	width: 50px;
	height: 50px;
	background: var(--accent-color);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
}

.team-contact-item .icon-box::before {
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	right: 0;
	left: 0;
	background: var(--white-color);
	border-radius: 50%;
	width: 100%;
	height: 100%;
	transform: scale(0);
	transition: all 0.4s ease-in-out;
	z-index: 0;
}

.team-contact-item:hover .icon-box::before {
	transform: scale(1);
}

.team-contact-item .icon-box img {
	position: relative;
	width: 100%;
	max-width: 24px;
	transition: all 0.4s ease-in-out;
	z-index: 1;
}

.team-contact-item:hover .icon-box img {
	filter: brightness(0) invert(0);
}

.team-contact-item-content {
	width: calc(100% - 65px);
}

.team-contact-item-content h3 {
	font-size: 20px;
	color: var(--white-color);
}

.team-contact-item-content p {
	color: var(--white-color);
	margin: 5px 0 0;
}

.team-member-about,
.team-awards-box,
.team-work-skills {
	margin-bottom: 60px;
}

.team-member-about {
	background-color: var(--secondary-color);
	border-radius: 10px;
	padding: 40px;
}

.dance-benefits-list {
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
	border-top: 1px solid var(--divider-color);
	padding-top: 40px;
}

.dance-benefits-item {
	width: calc(50% - 15px);
	background-color: var(--white-color);
	border-radius: 10px;
	display: flex;
	flex-wrap: wrap;
	gap: 15px;
	padding: 30px;
}

.dance-benefits-item .icon-box {
	position: relative;
	width: 50px;
	height: 50px;
	background: var(--accent-color);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
}

.dance-benefits-item .icon-box::before {
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	right: 0;
	left: 0;
	background: var(--primary-color);
	border-radius: 50%;
	width: 100%;
	height: 100%;
	transform: scale(0);
	transition: all 0.4s ease-in-out;
	z-index: 0;
}

.dance-benefits-item:hover .icon-box::before {
	transform: scale(1);
}

.dance-benefits-item .icon-box img {
	position: relative;
	width: 100%;
	max-width: 24px;
	transition: all 0.4s ease-in-out;
	z-index: 1;
}

.dance-benefits-item-content {
	width: calc(100% - 65px);
}

.dance-benefits-item-content h3 {
	font-size: 20px;
}

.dance-benefits-item-content p {
	margin: 10px 0 0;
}

.team-awards-box {
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
}

.team-awards-box-content {
	width: calc(63% - 15px);
	background-color: var(--secondary-color);
	border-radius: 10px;
	padding: 30px;
}

.team-awards-item {
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
	border-bottom: 1px solid var(--divider-color);
	margin-bottom: 30px;
	padding-bottom: 30px;
}

.team-awards-item:last-child {
	margin-bottom: 0;
	padding-bottom: 0;
	border-bottom: none;
}

.team-awards-item .icon-box img {
	width: 100%;
	max-width: 85px;
}

.team-awards-item-content {
	width: calc(100% - 105px);
}

.team-awards-item-content h3 {
	font-size: 20px;
}

.team-awards-item-content p {
	margin: 10px 0 0;
}

.team-awards-image {
	width: calc(37% - 15px);
}

.team-awards-image figure {
	height: 100%;
	display: block;
	border-radius: 10px;
}

.team-awards-image img {
	width: 100%;
	height: 100%;
	aspect-ratio: 1 / 1.16;
	border-radius: 10px;
	object-fit: cover;
}

.member-skill-list .skills-progress-bar .skill-data .skill-title,
.member-skill-list .skills-progress-bar .skill-data .skill-no {
	color: var(--text-color);
	font-size: 16px;
	font-weight: 400;
}

.contact-us-form.team-contact-form {
	margin: 0;
}

/************************************/
/***     24. Pricing Page css     ***/
/************************************/

.page-pricing {
	padding: 100px 0;
}

/************************************/
/***   25. Testimonials Page css  ***/
/************************************/

.page-testimonials {
	padding: 100px 0 70px;
}

.page-testimonials .testimonial-item {
	background-color: var(--secondary-color);
	border-radius: 10px;
	height: calc(100% - 30px);
	margin-bottom: 30px;
	padding: 40px;
}

.page-testimonials .testimonial-item .testimonial-item-content p,
.page-testimonials .testimonial-item .testimonial-author-content p {
	color: var(--text-color);
}

.page-testimonials .testimonial-item .testimonial-item-author {
	border-color: var(--divider-color);
	margin-top: 30px;
	padding-top: 30px;
}

.page-testimonials .testimonial-item .testimonial-author-content h3 {
	color: var(--primary-color);
}

/************************************/
/***    26. Image Gallery css     ***/
/************************************/

.page-gallery {
	padding: 100px 0 70px;
}

.page-gallery .page-gallery-box .photo-gallery {
	height: calc(100% - 30px);
	margin-bottom: 30px;
}

.page-gallery-box .photo-gallery a {
	cursor: none;
}

.page-gallery-box .photo-gallery figure {
	display: block;
	border-radius: 10px;
	aspect-ratio: 1 / 0.894;
	object-fit: cover;
}

.page-gallery-box .photo-gallery img {
	width: 100%;
	border-radius: 10px;
}

/************************************/
/***    27. Video Gallery css     ***/
/************************************/

.page-video-gallery {
	padding: 100px 0 70px;
}

.video-gallery-image {
	height: calc(100% - 30px);
	margin-bottom: 30px;
	overflow: hidden;
}

.video-gallery-image a {
	position: relative;
	display: block;
	cursor: none;
}

.video-gallery-image a::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: var(--primary-color);
	border-radius: 10px;
	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: var(--accent-color);
	color: var(--white-color);
	border-radius: 50%;
	height: 60px;
	width: 60px;
	cursor: none;
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	visibility: hidden;
	transition: all 0.5s ease-in-out;
	z-index: 1;
}

.video-gallery-image:hover a::after {
	opacity: 1;
	visibility: visible;
}

.video-gallery-image img {
	width: 100%;
	aspect-ratio: 1 / 0.894;
	object-fit: cover;
	border-radius: 10px;
}

/************************************/
/***       28. FAQs Page css      ***/
/************************************/

.page-faqs {
	padding: 100px 0;
}

.page-faqs .page-single-faqs {
	margin-bottom: 60px;
}

.page-faqs .page-single-faqs:last-child {
	margin-bottom: 0px;
}

/************************************/
/***    29. Contact Us Page css   ***/
/************************************/

.page-contact-us {
	padding: 100px 0 50px;
}

.contact-us-content {
	border-radius: 10px;
	padding: 40px;
	overflow: hidden;
}

.contact-us-header-content h2 {
	color: var(--white-color);
	font-size: 35px;
}

.contact-us-header-content h4 {
	color: var(--white-color);
	font-size: 25px;
}

.contact-us-header-content p {
	color: var(--white-color);
	margin: 15px 0 0;
}

.contact-info-box {
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
	margin-top: 50px;
}

.contact-info-box-image {
	width: calc(54% - 15px);
}

.contact-info-box-image figure {
	display: block;
	border-radius: 10px;
	margin: 0 0 -50px -60px;
}

.contact-info-box-image img {
	width: 100%;
	max-width: 380px;
	aspect-ratio: 1 / 1.58;
	object-fit: cover;
	border-radius: 10px;
}

.contact-info-list {
	width: calc(46% - 15px);
}

.contact-info-item {
	background-color: var(--dark-divider-color);
	border-radius: 10px;
	display: flex;
	flex-wrap: wrap;
	gap: 15px;
	padding: 20px;
	margin-bottom: 30px;
}

.contact-info-item:last-child {
	margin-bottom: 0;
}

.contact-info-item .icon-box {
	position: relative;
	height: 50px;
	width: 50px;
	background-color: var(--accent-color);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
}

.contact-info-item .icon-box::before {
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	right: 0;
	left: 0;
	background: var(--white-color);
	border-radius: 50%;
	width: 100%;
	height: 100%;
	transform: scale(0) rotate(180deg);
	transition: all 0.4s ease-in-out;
	z-index: 0;
}

.contact-info-item:hover .icon-box::before {
	transform: scale(1);
}

.contact-info-item .icon-box img {
	position: relative;
	width: 100%;
	max-width: 24px;
	transition: all 0.4s ease-in-out;
	z-index: 1;
}

.contact-info-item:hover .icon-box img {
	filter: brightness(0) invert(0);
}

.contact-info-item-content {
	width: calc(100% - 65px);
}

.contact-info-item-content h3 {
	color: var(--white-color);
	font-size: 20px;
}

.contact-info-item-content p {
	color: var(--white-color);
	margin: 5px 0 0;
}

.contact-info-item-content p a {
	color: inherit;
	transition: all 0.4s ease-in-out;
}

.contact-info-item-content p a:hover {
	color: var(--accent-color);
}

.contact-us-form {
	margin-left: 20px;
}

.contact-form .form-control {
	font-size: 16px;
	font-weight: 400;
	line-height: 1.5em;
	color: var(--text-color);
	background: var(--secondary-color);
	border: none;
	border-radius: 10px;
	padding: 18px 20px;
	box-shadow: none;
	outline: none;
}

.contact-form .form-control::placeholder {
	color: var(--text-color);
}

.contact-form .btn-default {
	width: 100%;
	text-align: center;
	padding: 17px 24px;
}

.contact-form .btn-default:before {
	display: none;
}

.google-map {
	padding: 50px 0 100px;
}

.google-map-iframe,
.google-map-iframe iframe {
	width: 100%;
	height: 700px;
	border-radius: 10px;
}

/************************************/
/***    30. 404 Error Page css    ***/
/************************************/

.error-page {
	padding: 100px 0px;
}

.error-page-image {
	text-align: center;
	margin-bottom: 30px;
}

.error-page-image img {
	width: 100%;
	max-width: 840px;
}

.error-page-content {
	text-align: center;
}

.error-page-content .section-title {
	margin-bottom: 15px;
}

/************************************/
/***      31. Responsive css      ***/
/************************************/

@media only screen and (max-width: 375px) {

	.top-bar-inner {
		flex-direction: column !important;
		text-align: center !important;
		gap: 8px;
	}

	.top-bar-left {
		flex-direction: column !important;
		gap: 5px;
	}

	.top-bar-left a {
		margin-right: 0;
		font-size: 13px;
	}

	.top-bar-right {
		justify-content: center !important;
	}

	.top-bar-right a {
		margin: 0 6px;
		font-size: 16px;
	}
}

@media only screen and (max-width: 1440px) {

	.container {
		max-width: 1300px;
	}

	.program-item-content {
		right: 20px;
		left: 20px;
		bottom: 20px;
	}

	.intro-video {
		min-height: 700px;
	}

	.intro-video-list {
		margin-top: 220px;
	}

	.intro-video-list ul {
		gap: 15px 20px;
	}

	.intro-video-list ul li {
		width: calc(25% - 15px);
	}

	.pricing-item {
		padding: 30px;
	}

	.pricing-item-btn,
	.pricing-item-list {
		margin-top: 30px;
	}

	.pricing-item-list ul {
		padding-top: 20px;
		margin-top: 20px;
	}

	.why-choose-us-body {
		gap: 40px;
	}

	.why-choose-us-item {
		padding-bottom: 30px;
		margin-bottom: 30px;
	}

	.testimonial-slider {
		margin-top: 60px;
	}

	.testimonial-item-author {
		margin-top: 30px;
		padding-top: 30px;
	}

	.footer-contact-items-list {
		margin-top: 30px;
		padding-top: 30px;
	}

	.approch-item {
		padding: 30px 30px;
	}

	.achievments-counter-item {
		padding: 20px 15px;
	}

	.faqs-image-title h2 {
		font-size: 44px;
		line-height: 1em;
		writing-mode: vertical-lr
	}

	.faqs-image {
		width: calc(100% - 90px);
		margin-left: -40px;
	}

	.faq-info-box {
		padding: 30px;
	}

	.faq-info-box-content {
		margin-top: 30px;
	}

	.faq-accordion .accordion-item {
		margin-bottom: 30px;
	}

	.faq-accordion .accordion-header .accordion-button {
		padding-bottom: 15px;
	}

	.faq-accordion .accordion-item .accordion-body {
		padding-top: 15px;
	}

	.page-category-list h3 {
		padding: 20px 30px;
	}

	.sidebar-cta-box {
		padding: 40px;
	}

	.program-benefit-item-list {
		gap: 20px;
	}

	.sidebar-cta-body-btn,
	.sidebar-cta-box-body,
	.sidebar-cta-contact-item {
		margin-top: 30px;
	}

	.program-benefit-item {
		padding: 20px;
		width: calc(33.33% - 13.33px);
	}

	.program-entry-items-list {
		gap: 20px;
	}

	.program-entry-item {
		width: calc(33.33% - 13.33px);
		padding: 20px;
	}

	.program-entry-body-list ul li {
		padding: 6px 12px;
	}

	.post-content {
		max-width: 1100px;
	}

	.event-expect-item {
		padding: 20px;
	}

	.team-member-about {
		padding: 30px;
	}

	.dance-benefits-item {
		padding: 20px;
	}

	.team-awards-item {
		margin-bottom: 20px;
		padding-bottom: 20px;
	}

	.page-testimonials .testimonial-item {
		padding: 30px;
	}

	.contact-us-content {
		padding: 30px;
	}

	.contact-info-item {
		padding: 15px;
	}

	.contact-us-form {
		margin-left: 0;
	}
}

@media only screen and (max-width: 1024px) {

	.main-menu ul li {
		margin: 0;
	}

	/* .section-content-btn .section-btn {
		margin-top: 20px;
	} */

	/* .section-title-content {
		margin-top: 10px;
	} */

	/* .section-btn {
		text-align: left;
		margin-top: 15px;
	} */

	.hero-content {
		height: auto;
		margin-bottom: 30px;
	}

	.hero-content-footer {
		margin-top: 30px;
		padding-top: 30px;
	}

	.hero-image {
		max-width: 700px;
		margin: 0 auto;
	}

	.about-us-image-box {
		max-width: 680px;
		margin: 0 auto 30px;
	}

	.program-item-image figure img {
		aspect-ratio: 1 / 1.09;
	}

	.our-expertise-content {
		height: auto;
		margin-bottom: 30px;
	}

	.skills-progress-bar {
		margin-bottom: 30px;
	}

	.our-expertise-list {
		padding-top: 30px;
		margin-top: 30px;
	}

	.our-expertise-image-box {
		max-width: 700px;
		margin: 0 auto;
	}

	.join-academy-circle img {
		max-width: 130px;
	}

	.intro-video-play-btn .video-play-button a {
		height: 80px;
		width: 80px;
	}

	.intro-video-play-btn .video-play-button.bg-effect a:before,
	.intro-video-play-btn .video-play-button.bg-effect a:after {
		border-width: 64px;
	}

	.intro-video-play-btn .video-play-button a i {
		font-size: 30px;
	}

	.intro-video-list ul li {
		width: calc(50% - 10px);
	}

	.why-choose-us-content {
		height: auto;
		margin-bottom: 30px;
	}

	.why-choose-us-content-list {
		width: calc(100% - 170px);
	}

	.why-choose-us-image {
		max-width: 300px;
	}

	.events-item-meta ul {
		gap: 20px;
	}

	.events-item-meta ul li img {
		max-width: 22px;
	}

	.testimonial-review-box {
		margin-right: 0;
	}

	.testimonial-contact-item,
	.testimonial-review-box-body {
		margin-top: 30px;
	}

	.testimonial-slider {
		margin-top: 0px;
	}

	.about-footer {
		margin-bottom: 30px;
	}

	.about-footer-content {
		margin-top: 20px;
	}

	.footer-contact-items-list {
		margin-top: 20px;
		padding-top: 20px;
	}

	.footer-links-box {
		margin-left: 0;
	}

	/* .approach-item-image {
		margin-top: 20px;
		padding-top: 20px;
	} */

	.team-footer-list ul {
		gap: 15px;
	}

	.team-footer-list ul li {
		padding: 9px 15px 9px 28px;
	}

	.team-footer-list ul li::before {
		left: 14px;
		width: 4px;
		height: 4px;
	}

	.achievements-image-box {
		height: auto;
		margin: 0 0 30px 0;
	}

	.achievements-image,
	.achievements-image figure,
	.achievements-image img {
		height: auto;
	}

	.achievements-image img {
		aspect-ratio: 1 / 0.7;
	}

	.faqs-image-box {
		max-width: 700px;
		margin: 0 auto 30px;
	}

	.page-single-sidebar {
		margin: 0;
	}

	.page-category-list h3 {
		padding: 15px 20px;
	}

	.page-category-list ul {
		padding: 20px;
	}

	.page-category-list ul li {
		padding-bottom: 15px;
		margin-bottom: 15px;
	}

	.sidebar-cta-box {
		padding: 40px 25px;
	}

	.sidebar-cta-contact-item,
	.sidebar-cta-box-body,
	.sidebar-cta-body-btn {
		margin-top: 20px;
	}

	.program-entry {
		margin-bottom: 40px;
	}

	.page-single-image {
		margin-bottom: 20px;
	}

	.program-benefit-box,
	.program-entry-box {
		margin-top: 40px;
	}

	.program-benefit-item-list,
	.program-info-list {
		margin-top: 30px;
	}

	.program-entry-items-list {
		margin: 30px 0;
	}

	.program-entry-item {
		width: calc(50% - 10px);
	}

	.event-category-list {
		padding: 20px;
	}

	.event-category-item {
		margin-bottom: 15px;
		padding-bottom: 15px;
	}

	.event-category-item-content h4,
	.event-category-item-content p {
		width: 100%;
	}

	.event-entry {
		margin-bottom: 40px;
		padding-bottom: 40px;
	}

	.event-expect-box,
	.event-performers-box {
		margin-top: 40px;
	}

	.event-expect-list,
	.event-performers-list {
		margin-top: 30px;
	}

	.event-expect-item-content {
		width: 100%;
	}

	.team-sidebar-content {
		padding: 20px;
	}

	.team-contact-list {
		margin-top: 20px;
		padding-top: 20px;
	}

	.team-contact-item {
		margin-bottom: 20px;
	}

	.team-member-about,
	.team-awards-box,
	.team-work-skills {
		margin-bottom: 40px;
	}

	.team-awards-box-content,
	.team-awards-image {
		width: 100%;
	}

	.team-awards-image figure,
	.team-awards-image img {
		height: auto;
	}

	.team-awards-image img {
		aspect-ratio: 1 / 0.6;
	}

	.contact-us-content {
		margin-bottom: 30px;
	}

	.google-map-iframe,
	.google-map-iframe iframe {
		height: 500px;
	}
}

@media only screen and (max-width: 991px) {

	.btn-default {
		padding: 15px 40px 15px 18px;
	}

	.btn-default::before {
		right: 18px;
	}

	header.main-header {
		top: 0px;
	}

	header.main-header .header-sticky.active {
		width: 100%;
		border-radius: 0;
		border-left: none;
		border-right: none;
	}



	.responsive-menu,
	.navbar-toggle {
		display: block;
	}

	.slicknav_nav li,
	.slicknav_nav ul {
		display: block;
	}

	.header-btn {
		display: none;
	}

	.bg-section {
		width: 100%;
		border-radius: 0;
		margin: 0;
	}

	.bg-section .container-fluid {
		padding: 0 15px;
	}

	.section-row {
		margin-bottom: 40px;
	}

	.section-title {
		margin-bottom: 30px;
	}

	.section-title h3 {
		padding: 8px 12px 8px 28px;
		margin-bottom: 10px;
	}

	.section-title h3::before {
		left: 12px;
	}

	.section-title h1 {
		font-size: 44px;
	}

	.section-title h2 {
		font-size: 38px;
	}

	.section-title p {
		margin-top: 10px;
	}

	.hero {

		background-size: cover;
		background-repeat: no-repeat;
		background-position: right !important;
		padding: 140px 0 50px;
		margin-top: 0;
	}

	.hero-content-stone .section-title h1 {
		font-size: 35px;
	}

	.hero-content-stone .section-title {
		width: 80%;
		background-color: rgba(0, 0, 0, 0.514);
		border-radius: 8px;
		padding: 20px;
	}

	.hero-content .section-title h1 span {
		font-size: 58px;
	}

	.hero-body-list ul li::before {
		font-size: 16px;
	}

	.about-us {
		padding: 50px 0;
	}

	.about-student-rating-arrow,
	.about-student-rating-counter {
		margin-top: 20px;
	}

	.about-student-rating-arrow a img {
		max-width: 24px;
	}

	.about-us-body-list ul li::before {
		font-size: 16px;
	}

	.about-us-body-counter-list {
		margin-top: 30px;
	}

	.about-us-counter-item h2 {
		font-size: 38px;
	}

	.about-us-footer {
		margin-top: 30px;
		padding-top: 30px;
	}

	.satisfy-client-image figure img {
		max-width: 40px;
	}

	.satisfy-client-image.add-more {
		width: 42px;
		height: 42px;
	}

	.satisfy-client-image.add-more i {
		font-size: 18px;
	}

	.satisfy-client-image.add-more img {
		max-width: 20px;
	}

	.satisfy-client-image.add-more h3 {
		font-size: 14px;
	}

	.about-rating-content .about-rating-star i {
		font-size: 16px;
	}

	.our-programs {
		padding: 50px 0;
	}

	.section-footer-text {
		margin-top: 10px;
	}

	.section-footer-text ul {
		margin: 10px 0 0;
	}

	.section-footer-text ul li {
		font-size: 18px;
	}

	.our-expertise {
		padding: 50px 0;
	}

	.our-expertise-list ul li::before {
		font-size: 16px;
	}

	.intro-video {
		min-height: 500px;
	}

	.intro-video-list {
		margin-top: 110px;
	}

	.intro-video-list ul li::before {
		font-size: 16px;
	}

	.our-pricing {
		padding: 50px 0;
	}

	.pricing-item {
		padding: 20px;
	}

	.pricing-item .icon-box {
		top: -10px;
		right: -10px;
	}

	.pricing-item .icon-box img {
		max-width: 80px;
	}

	.pricing-item-content h3 {
		margin-bottom: 15px;
	}

	.pricing-item-content h2 {
		font-size: 38px;
	}

	.pricing-item-btn .btn-default {
		padding: 15px 18px;
	}

	.pricing-item-list ul li {
		margin-bottom: 10px;
	}

	.pricing-item-list ul li::before {
		font-size: 16px;
	}

	.pricing-benefit-list {
		margin-top: 10px;
	}

	.pricing-benefit-list ul {
		gap: 15px 30px;
	}

	.why-choose-us {
		padding: 50px 0;
	}

	.why-choose-us-content-list ul li {
		margin-bottom: 15px;
	}

	.why-choose-us-content-list ul li::before {
		font-size: 16px;
	}

	.why-choose-us-item {
		padding-bottom: 20px;
		margin-bottom: 20px;
	}

	.why-choose-us-image figure img {
		margin-bottom: -50px;
	}

	.our-events {
		padding: 50px 0 20px;
	}

	.events-item-image {
		margin-bottom: 15px;
	}

	.events-item-meta {
		padding-top: 15px;
		margin-top: 15px;
	}

	.our-testimonials {
		padding: 50px 0;
	}

	.testimonial-review-box {
		margin-bottom: 30px;
		padding: 30px;
	}

	.testimonial-contact-item,
	.testimonial-review-box-body {
		margin-top: 20px;
	}

	.our-blog {
		padding: 50px 0 20px;
	}

	.post-featured-image {
		margin-bottom: 15px;
	}

	.post-item-content {
		margin-bottom: 15px;
		padding-bottom: 15px;
	}

	.footer-gallery {
		margin-bottom: 10px;
	}

	.main-footer {
		padding: 50px 0 0;
		margin-bottom: 0px;
	}

	.footer-links h3,
	.footer-newsletter-form p {
		margin-bottom: 20px;
	}

	.footer-links ul li {
		margin-bottom: 10px;
	}

	.footer-newsletter-form .form-group {
		padding: 6px;
	}

	.footer-newsletter-form .form-group .form-control {
		width: calc(100% - 34px);
		font-size: 14px;
	}

	.footer-newsletter-form .form-group .newsletter-btn {
		width: 34px;
		height: 34px;
	}

	.footer-newsletter-form .form-group .newsletter-btn img {
		max-width: 10px;
	}

	.footer-newsletter-form .policy-checkbox {
		margin-top: 10px;
	}

	.footer-newsletter-form .policy-checkbox .form-label {
		font-size: 14px;
	}

	.footer-copyright {
		margin-top: 30px;
		padding: 30px 0 30px;
	}

	.footer-copyright-text {
		order: 3;
		width: 100%;
		text-align: center;
	}

	.footer-privacy-policy ul {
		gap: 30px;
	}

	.footer-privacy-policy ul li::before {
		right: -18px;
	}

	.page-header {
		padding: 170px 0 80px;
		margin-top: 0;
	}

	.page-header-box h1 {
		font-size: 54px;
	}

	.our-approach {
		padding: 50px 0 20px;
	}

	.approch-item {
		padding: 20px 20px 0;
	}

	.our-team {
		padding: 50px 0;
	}

	.team-item-image {
		margin-bottom: 15px;
	}

	.team-item-content p {
		margin: 5px 0 0;
	}

	.our-team-footer {
		margin-top: 10px;
	}

	.our-achievements {
		padding: 50px 0;
	}

	.achievements-cta-box {
		bottom: 20px;
		left: 20px;
		padding: 20px;
	}

	.achievements-cta-box .satisfy-client-content {
		margin-top: 10px;
	}

	.achievements-cta-box-body {
		margin-top: 15px;
		padding-top: 15px;
	}

	.achievements-cta-box-btn {
		margin-top: 20px;
	}

	.achievements-body {
		padding-top: 30px;
	}

	.achievements-body ul li::before {
		font-size: 16px;
	}

	.achievments-counter-list {
		margin-top: 30px;
	}

	.achievments-counter-item h2 {
		font-size: 38px;
	}

	.achievements-btn {
		margin-top: 30px;
	}

	.our-faqs {
		padding: 50px 0;
	}

	.faqs-image-box-1 {
		padding-bottom: 50px;
	}

	.faq-info-box {
		padding: 20px;
	}

	.faq-info-box-content {
		margin-top: 20px;
	}

	.faq-cta-contact-item .icon-box img {
		max-width: 20px;
	}

	.faq-accordion .accordion-header .accordion-button {
		font-size: 18px;
	}

	.faq-accordion .accordion-item .accordion-button::after,
	.faq-accordion .accordion-item .accordion-button.collapsed::after {
		font-size: 18px;
	}

	.page-programs {
		padding: 50px 0 20px;
	}

	.page-program-single {
		padding: 50px 0;
	}

	.page-single-sidebar {
		position: initial;
		margin-bottom: 30px;
	}

	.page-category-list {
		margin-bottom: 30px;
	}

	.program-entry p {
		margin-bottom: 15px;
	}

	.program-entry h2 {
		font-size: 38px;
		margin-bottom: 15px;
	}

	.page-blog {
		padding: 50px 0;
	}

	.page-pagination {
		margin-top: 10px;
	}

	.page-single-post {
		padding: 50px 0;
	}

	.post-image {
		margin-bottom: 20px;
	}

	.post-entry h2 {
		font-size: 38px;
	}

	.post-entry p {
		margin-bottom: 15px;
	}

	.post-entry ol li,
	.post-entry ul li {
		font-size: 16px;
		margin-bottom: 10px;
	}

	.post-entry blockquote {
		background-position: 20px 20px;
		background-size: 40px;
		padding: 20px 20px 20px 70px;
		margin-bottom: 20px;
	}

	.post-entry blockquote p {
		font-size: 18px;
	}

	.post-tags {
		margin-bottom: 20px;
	}

	.post-tags .tag-links a {
		padding: 12px 15px;
	}

	.post-social-sharing ul {
		text-align: left;
	}

	.page-events {
		padding: 50px 0 20px;
	}

	.page-event-single {
		padding: 50px 0;
	}

	.event-entry h2 {
		font-size: 38px;
		margin-bottom: 15px;
	}

	.event-entry p {
		margin-bottom: 15px;
	}

	.page-team {
		padding: 50px 0 20px;
	}

	.page-team-single {
		padding: 50px 0;
	}

	.team-sidebar-image img {
		aspect-ratio: 1 / 0.8;
	}

	.team-member-about {
		padding: 20px;
	}

	.dance-benefits-list {
		padding-top: 30px;
	}

	.team-awards-box-content {
		padding: 20px;
	}

	.page-pricing {
		padding: 50px 0;
	}

	.page-testimonials {
		padding: 50px 0 20px;
	}

	.page-testimonials .testimonial-item {
		padding: 20px;
	}

	.page-testimonials .testimonial-item .testimonial-item-author {
		margin-top: 20px;
		padding-top: 20px;
	}

	.page-gallery {
		padding: 50px 0 20px;
	}

	.page-video-gallery {
		padding: 50px 0 20px;
	}

	.page-faqs {
		padding: 50px 0;
	}

	.page-faqs .page-single-faqs {
		margin-bottom: 40px;
	}

	.page-contact-us {
		padding: 50px 0 25px;
	}

	.contact-info-box {
		margin-top: 50px;
	}

	.contact-info-box-image figure {
		margin: 0 0 -90px -90px;
	}

	.contact-form .form-control {
		padding: 13px 15px;
	}

	.google-map {
		padding: 25px 0 50px;
	}

	.contact-form .btn-default {
		padding: 15px 18px;
	}

	.error-page {
		padding: 50px 0px;
	}

	.error-page-image {
		margin-bottom: 20px;
	}
}

@media only screen and (max-width: 767px) {
	p {
		font-size: 16px;
	}

	/* .top-bar-inner {
		display: flex;
		flex-direction: column;
		justify-content: space-evenly;
	} */


	.section-row {
		margin-bottom: 30px;
	}

	.section-title h1 {
		font-size: 28px;
	}

	.section-title h2 {
		font-size: 26px;
	}

	.hero {

		background-size: cover;
		background-repeat: no-repeat;
		background-position: right 19% bottom 45% !important;
		padding: 140px 0 50px;
		margin-top: 0;
		/* background-image: none !important; */
		margin-left: -1.5em;
	}

	.hero-content-stone .section-title h1 {
		font-size: 24px;
	}

	.hero-content-stone .section-title h3 {
		background-color: #896431a6;
		/* font-size: 10px; */
	}

	.hero-content-stone .section-title {
		margin-left: 0;
		width: 90%;
		background-color: #0000007c;
		padding: 20px;
		border-radius: 8px;
	}

	.hero-content .section-title h1 span {
		font-size: 36px;
	}

	.hero-body-list ul {
		gap: 10px;
	}

	.hero-body-list ul li {
		width: 100%;
	}

	.hero-content-footer {
		gap: 25px 20px;
	}

	.program-item-stone .program-item-body-stone {
		padding: 10px 0 20px !important;
	}

	.program-item-stone .program-item-body-stone p {
		font-size: 16px;

	}

	.program-item-stone .program-item-body-stone h2 {
		font-size: 20px;

	}

	.program-item-stone .icon-box {
		top: 10px !important;
		left: 70% !important;
	}

	.about-us-image-box {
		gap: 20px;
	}

	.about-us-image-box-1 {
		width: calc(46% - 10px);
		background-size: 55px;
		background-position: bottom 20px left 20px;
	}

	.about-us-image-box-2 {
		width: calc(54% - 10px);
	}

	.about-student-rating-box {
		max-width: 160px;
		border-width: 5px;
		margin-top: -110px;
		margin-right: -90px;
		padding: 30px 20px;
	}

	.about-student-rating-content p,
	.about-student-rating-counter p,
	.about-student-rating-counter .about-rating-star i {
		font-size: 14px;
	}

	.about-student-rating-arrow a img {
		width: 18px;
	}

	.about-us-body-list ul {
		gap: 10px;
	}

	.about-us-body-list ul li {
		width: 100%;
	}

	.about-us-body-counter-list {
		gap: 30px;
	}

	.about-us-counter-item {
		width: calc(50% - 15px);
	}

	.about-us-counter-item h2 {
		font-size: 26px;
	}

	.about-us-counter-item::before {
		right: -15px;
	}

	.about-us-counter-item:nth-child(3n + 3):before {
		display: block;
	}

	.about-us-counter-item:nth-child(2n + 2):before,
	.about-us-counter-item:last-child:before {
		display: none;
	}

	.about-us-footer {
		gap: 20px;
	}

	.program-item-content h2 {
		font-size: 18px;
	}

	.program-item-content p {
		margin-top: 5px;
	}

	.section-footer-text ul li {
		font-size: 16px;
		margin-right: 5px;
	}

	.skills-progress-bar {
		margin-bottom: 20px;
	}

	.skills-progress-bar .skill-data .skill-title,
	.skills-progress-bar .skill-data .skill-no {
		font-size: 18px;
	}

	.our-expertise-list ul {
		gap: 10px;
	}

	.our-expertise-list ul li {
		width: 100%;
	}

	.expertise-image-box-1 .expertise-image {
		margin-right: -90px;
	}

	.expertise-image-box-2 .expertise-image figure {
		border-width: 5px;
	}

	.join-academy-circle img {
		max-width: 100px;
	}

	.intro-video-play-btn .video-play-button a {
		height: 70px;
		width: 70px;
	}

	.intro-video-play-btn .video-play-button.bg-effect a:before,
	.intro-video-play-btn .video-play-button.bg-effect a:after {
		border-width: 56px;
	}

	.intro-video-play-btn .video-play-button a i {
		font-size: 24px;
	}

	.intro-video-list ul {
		gap: 10px;
	}

	.intro-video-list ul li {
		width: 100%;
	}

	.intro-video-list {
		padding-top: 20px;
	}

	.pricing-item .icon-box img {
		max-width: 60px;
	}

	.pricing-item-content h2 {
		font-size: 26px;
	}

	.pricing-item-btn,
	.pricing-item-list {
		margin-top: 20px;
	}

	.pricing-item-list h3 {
		font-size: 18px;
	}

	.pricing-item-list ul {
		padding-top: 15px;
		margin-top: 15px;
	}

	.pricing-benefit-list {
		margin-top: 5px;
	}

	.pricing-benefit-list ul {
		gap: 10px;
	}

	.pricing-benefit-list ul li {
		font-size: 14px;
	}

	.pricing-benefit-list ul li img {
		max-width: 16px;
		margin-right: 5px;
	}

	.why-choose-us-body {
		gap: 20px;
	}

	.why-choose-us-content-list {
		width: 100%;
	}

	.why-choose-us-content-list ul li {
		margin-bottom: 10px;
	}

	.why-choose-us-item-list {
		margin-bottom: 30px;
		height: auto;
	}

	.why-choose-us-item-content h3 {
		font-size: 18px;
	}

	.why-choose-us-item-content p {
		margin-top: 5px;
	}

	.events-item-content h2 {
		font-size: 18px;
	}

	.events-item-content p {
		margin: 5px 0 0;
	}

	.events-item-meta ul li img {
		max-width: 20px;
		margin-right: 5px;
	}

	.testimonial-review-box {
		padding: 20px;
	}

	.testimonial-review-rating span i {
		font-size: 18px;
	}

	.testimonial-review-rating p {
		margin: 5px 0 0;
	}

	.testimonial-contact-item-content h3,
	.testimonial-review-body-content h3,
	.testimonial-item-rating i,
	.testimonial-author-content h3 {
		font-size: 18px;
	}

	.testimonial-item-content {
		margin-top: 15px;
	}

	.testimonial-item-author {
		margin-top: 20px;
		padding-top: 20px;
	}

	.testimonial-btn {
		position: initial;
		margin-top: 20px;
		justify-content: center;
	}

	.testimonial-slider .testimonial-button-next,
	.testimonial-slider .testimonial-button-prev {
		width: 44px;
		height: 44px;
	}

	.post-item-content h2 {
		font-size: 18px;
	}

	.footer-gallery-list .photo-gallery {
		width: calc(33.33% - 6.66px);
	}

	.about-footer-content {
		margin-top: 15px;
	}

	.footer-contact-items-list {
		gap: 20px;
	}

	.footer-contact-item {
		width: 100%;
	}

	.footer-links,
	.footer-newsletter-form {
		max-width: 100%;
	}

	.footer-links h3 {
		font-size: 18px;
		margin-bottom: 15px;
	}

	.footer-newsletter-form p {
		margin-bottom: 10px;
	}

	.footer-copyright {
		justify-content: center;
		padding: 15px 0;
	}

	.page-header-box h1 {
		font-size: 28px;
	}

	.approach-item-content {
		width: 100%;
	}

	.approach-item-content h3 {
		font-size: 18px;
	}

	.team-item-content h2 {
		font-size: 18px;
	}

	.team-footer-list ul {
		gap: 10px;
	}

	.team-footer-list ul li {
		font-size: 14px;
		padding: 8px 10px 8px 20px;
	}

	.team-footer-list ul li::before {
		left: 10px;
	}

	.achievements-image img {
		aspect-ratio: 1 / 0.93;
	}

	.achievements-cta-box {
		position: initial;
		background: var(--primary-color);
		max-width: 100%;
		margin-top: 20px;
	}

	.achievements-cta-box-body-title h3 {
		font-size: 18px;
	}

	.achievements-body ul {
		gap: 10px;
	}

	.achievements-body ul li {
		width: 100%;
	}

	.achievments-counter-list {
		gap: 20px;
	}

	.achievments-counter-item {
		width: calc(50% - 10px);
	}

	.achievments-counter-item h2 {
		font-size: 26px;
	}

	.achievments-counter-item p {
		font-size: 14px;
	}

	.faqs-image-box-1 {
		width: 100%;
		padding-bottom: 0;
	}

	.faqs-image-title h2 {
		font-size: 35px;
		writing-mode: vertical-lr !important;
	}

	.faqs-image {
		width: calc(100% - 50px);
		margin-left: -15px;
	}

	/* .faqs-image img {
		aspect-ratio: 1 / 1.1;
	} */

	.faq-cta-box {
		width: 100%;
		margin-top: 20px;
	}

	.faq-info-box {
		padding: 15px;
		margin: 0;
		border: none;
	}

	.faq-info-box-content {
		margin-top: 10px;
	}

	.faq-info-box-content p {
		margin: 5px 0 0;
	}

	.faq-cta-contact-item {
		margin-top: 10px;
	}

	.faq-accordion .accordion-item {
		margin-bottom: 20px;
	}

	.page-category-list h3 {
		font-size: 18px;
	}

	.sidebar-cta-box {
		padding: 20px;
	}

	.sidebar-cta-review-content span i,
	.sidebar-cta-contact-item-content h3,
	.sidebar-cta-body-content h3 {
		font-size: 18px;
	}

	.page-single-image img {
		aspect-ratio: 1 / 0.62;
	}

	.program-entry h2 {
		font-size: 26px;
	}

	.program-entry h3 {
		font-size: 18px;
	}

	.program-entry ul {
		gap: 10px;
	}

	.program-entry ul li {
		width: 100%;
	}

	.program-benefit-item {
		width: 100%;
	}

	.program-benefits-item-content h3 {
		margin-top: 15px;
	}

	.program-entry-item {
		width: 100%;
	}

	.program-entry-body-list ul li {
		width: auto;
	}

	.post-single-meta ol li,
	.post-single-meta ol li i {
		font-size: 16px;
	}

	.post-image img {
		aspect-ratio: 1 / 0.7;
	}

	.post-entry blockquote {
		background-position: 15px 15px;
		padding: 60px 15px 15px 15px;
	}

	.post-entry blockquote p {
		font-size: 16px;
	}

	.post-entry h2 {
		font-size: 26px;
	}

	.tag-links {
		font-size: 18px;
	}

	.event-entry h2 {
		font-size: 26px;
	}

	.event-entry h3 {
		font-size: 18px;
		margin-bottom: 5px;
	}

	.event-expect-list {
		gap: 20px;
	}

	.event-expect-item {
		width: 100%;
	}

	.event-performers-list .team-item {
		width: 100%;
	}

	.event-performers-list .team-item-image img {
		aspect-ratio: 1 / 1.134;
	}

	.team-sidebar-image img {
		aspect-ratio: 1 / 1.11;
	}

	.team-contact-item-content h3,
	.team-sidebar-body h3 {
		font-size: 18px;
	}

	.dance-benefits-list {
		gap: 20px;
	}

	.dance-benefits-item {
		width: 100%;
	}

	.dance-benefits-item-content {
		width: 100%;
	}

	.dance-benefits-item-content h3 {
		font-size: 18px;
	}

	.dance-benefits-item-content p {
		margin: 5px 0 0;
	}

	.team-awards-item-content {
		width: 100%;
	}

	.team-awards-item-content h3 {
		font-size: 18px;
	}

	.team-awards-item-content p {
		margin-top: 5px;
	}

	.contact-us-content {
		padding: 20px;
	}

	.contact-info-box {
		flex-direction: column-reverse;
		margin-top: 30px;
	}

	.contact-info-list,
	.contact-info-box-image {
		width: 100%;
	}

	.contact-info-item {
		margin-bottom: 20px;
	}

	.contact-info-item-content h3 {
		font-size: 18px;
	}

	.contact-info-box-image figure {
		margin: 0 auto -60px auto;
		text-align: center;
	}

	.google-map-iframe,
	.google-map-iframe iframe {
		height: 350px;
	}

	.approch-item {
		height: 250px;
		margin: 30px 0px;
	}
}

/************************************/
/***   32. Home - Version 2 css   ***/
/************************************/

.hero-stone {
	position: relative;
	background: url('/images/banner.jpeg') no-repeat;
	background-position: center center;
	background-size: cover;
	padding: 245px 0 130px;
	/* margin-top: 20px; */
	overflow: hidden;
}

.hero-stone::before {
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	background: linear-gradient(180deg, rgba(9, 13, 45, 0.00) 0%, rgba(9, 13, 45, 0.90) 74.26%);
	width: 100%;
	height: 100%;
	z-index: 1;
}

.hero-stone .container {
	position: relative;
	z-index: 2;
}

.hero-content-stone {
	text-align: left;
	max-width: 1100px;

}

.hero-content-stone .section-title p {
	max-width: 850px;

}

.hero-btn-stone {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	gap: 20px;
}

.card-section {
	padding: 70px auto;
}

.hero-info-list-stone {
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
	border-top: 1px solid var(--dark-divider-color);
	margin: 40px auto;
	/* margin-left: 3em; */
}

.hero-info-item-stone {
	width: calc(33.33% - 20px);
	transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
}

.hero-info-item-stone:hover {
	transform: translateY(-10px) scale(1.02);
	box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
	cursor: pointer;
	border-radius: 10px;
}

.hero-info-item-stone .icon-box {
	position: relative;
	margin-top: -15px;
	left: 60%;
	top: 14%;
	width: 70px;
	height: 70px;
	background: var(--accent-color);
	backdrop-filter: blur(20px);
	-webkit-backdrop-filter: blur(20px);
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	overflow: hidden;
}

.hero-info-item-stone .icon-box::before {
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: var(--accent-color);
	border-radius: 50%;
	transform: scale(0);
	transition: all 0.4s ease-in-out;
}

/* .hero-info-item-stone:hover .icon-box::before{
    transform: scale(1);
} */

.hero-info-item-stone .icon-box img {
	position: relative;
	width: 100%;
	max-width: 24px;
	transition: all 0.4s ease-in-out;
	z-index: 1;
}

.hero-info-item-stone:hover .icon-box img {
	filter: brightness(0) invert(0);
}

.hero-info-item-content-stone {
	width: 100%;
	padding: 0 20px 20px 20px;
}

.hero-info-item-content-stone h3 {
	font-size: 25px;
	color: var(--accent-color);
}

.hero-info-item-content-stone p {
	color: var(--accent-color);
	margin: 10px 0 0;
}

.about-us-stone {
	padding: 20px 0 70px;
}

/* .about-us-image-box-stone {
	display: flex;
	flex-wrap: wrap;
	align-items: end;
	margin-right: 15px;
} */

/* .about-us-image-box-1-stone {
	position: relative;
	width: 62%;
	z-index: 2;
} */
/* 
.about-us-image-stone figure {
	display: block;
	border-radius: 10px;
} */

.about-us-image-stone figure img {
	width: 100%;
	aspect-ratio: 1 / 1.111;
	object-fit: cover;
	border-radius: 10px;
}

.about-us-image-box-2-stone {
	position: relative;
	width: 38%;
	margin-bottom: 140px;
}

/* .about-us-image-box-1-stone .about-us-image-stone figure {
	border: 6px solid var(--white-color);
	border-radius: 20px;
}

.about-us-image-box-2-stone .about-us-image-stone figure {
	margin-left: -183px;
}

.about-us-image-box-2-stone .about-us-image-stone figure img {
	aspect-ratio: 1 / 1.2;
} */

/* 
.about-us-image-box-2-stone .contact-us-circle-stone{
	position: absolute;
	bottom: 0;
	right: 0;
	transform: translate(-50%, 50%);
	z-index: 2;
}

.contact-us-circle-stone a{
	display: inline-block;
	border: 6px solid var(--white-color);
    border-radius: 50%;
}

.contact-us-circle-stone a img{
	width: 100%;
    max-width: 120px;
    border-radius: 50%;
    animation: infiniterotatestone 20s infinite linear;
}

@keyframes infiniterotatestone{
    from{
        transform: rotate(0deg);
    }
    to{
        transform: rotate(360deg);
    }
}

.contact-us-circle-stone a img:hover{
	animation-play-state: paused;
} */

.about-us-item-list-stone {
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
}

.about-us-item-stone {
	width: calc(50% - 15px);
}

.about-us-item-stone .icon-box {
	position: relative;
	width: 50px;
	height: 50px;
	background: var(--accent-color);
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	margin-bottom: 10px;
	overflow: hidden;
}

.about-us-item-stone .icon-box::before {
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: var(--primary-color);
	border-radius: 50%;
	transform: scale(0);
	transition: all 0.4s ease-in-out;
}

.about-us-item-stone:hover .icon-box::before {
	transform: scale(1);
}

.about-us-item-stone .icon-box img {
	position: relative;
	width: 100%;
	max-width: 24px;
	z-index: 1;
}

.about-us-item-content-stone h3,
.about-us-item-content-stone h4 {
	font-size: 20px;
	color: #000000;
}

.about-us-item-content-stone p {
	margin: 10px 0 0;
}

.about-us-btn-stone {
	border-top: 1px solid var(--divider-color);
	padding-top: 40px;
	margin-top: 40px;
}

.our-programs-stone {
	padding: 100px 0;
}

.program-item-stone {
	position: relative;
	margin-bottom: 30px;
	background-color: #ffffffb4;
	height: 300px;
	border-radius: 12px;
}

/* 
.program-item-image-stone a {
	display: block;
	cursor: none;
}

.program-item-image-stone figure {
	position: relative;
	display: block;
	border-radius: 10px;
	overflow: hidden;
}

.program-item-image-stone figure:before {
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	height: 100%;
	width: 100%;
	z-index: 1;
	background-color: #ffffffb4;
} */




.program-item-stone .icon-box {
	position: absolute;
	top: -10%;
	left: 135px;
	width: 70px;
	height: 70px;
	background: var(--accent-color);
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	overflow: hidden;
	z-index: 2;
}

.program-item-stone .icon-box::before {
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: var(--white-color);
	border-radius: 50%;
	transform: scale(0);
	transition: all 0.4s ease-in-out;
}

.program-item-stone:hover .icon-box::before {
	transform: scale(1);
}

.program-item-stone .icon-box img {
	position: relative;
	width: 100%;
	max-width: 24px;
	transition: all 0.4s ease-in-out;
	z-index: 1;
}

.program-item-stone:hover .icon-box img {
	filter: brightness(1) invert(1);
}

.program-item-body-stone {
	position: absolute;
	/* top: 20px; */
	right: 40px;
	bottom: 30px;
	left: 40px;
	/* transform: translateY(40px); */
	transition: all 0.4s ease-in-out;
	z-index: 2;
}

.program-item-stone:hover .program-item-body-stone {
	transform: translateY(0);
}

.program-item-content-stone h2 {
	font-size: 22px;
	color: var(--accent-color);
}

.program-item-content-stone p {
	color: var(--accent-color);
	margin: 10px 0 0;
}

/* 
	.program-readmore-btn-stone {
		opacity: 0;
		visibility: hidden;
		margin-top: 20px;
		transition: all 0.4s ease-in-out;
	}

	.program-item-stone:hover .program-readmore-btn-stone {
		visibility: visible;
		opacity: 1;
	}

	.program-readmore-btn-stone .readmore-btn {
		color: var(--accent-color);
	}

	.program-readmore-btn-stone .readmore-btn:hover {
		color: var(--white-color);
	}

	.program-readmore-btn-stone .readmore-btn::before {
		background-image: url(../images/arrow-accent.svg);
	}

	.program-readmore-btn-stone .readmore-btn:hover:before {
		filter: brightness(0) invert(1);
	} */

.why-choose-us-stone {
	padding: 100px 0;
}

.why-choose-image-box-stone {
	display: flex;
	flex-wrap: wrap;
	align-items: end;
	margin-right: 15px;
}

.why-choose-image-box-1-stone {
	width: 66%;
	padding-bottom: 100px;
	background: url('../images/why-choose-images-box-2-bg-stone.png') no-repeat;
	background-position: bottom 80px center;
	background-size: 150px;
}

.why-choose-image-box-2-stone {
	position: relative;
	/* top:100px; */
	width: 34%;
	z-index: 1;
}

.why-choose-image-stone figure {
	display: block;
	border-radius: 10px;
}

.why-choose-image-stone figure img {
	width: 100%;
	aspect-ratio: 1 / 1.3578;
	object-fit: cover;
	border-radius: 10px;
}

.why-choose-image-box-2-stone .why-choose-image-stone figure {
	border: 6px solid var(--white-color);
	border-radius: 20px;
	margin-left: -170px;
	height: 350px;
}

.why-choose-image-box-2-stone .why-choose-image-stone figure img {
	aspect-ratio: 1 / 1.36;
}

.why-choose-image-box-2-stone .contact-us-circle-stone {
	position: absolute;
	top: 0;
	right: 40px;
	transform: translateY(-50%);
	z-index: 3;
}

.why-choose-body-stone {
	display: flex;
	flex-wrap: wrap;
	gap: 40px;
	margin-top: -40px;
}

.why-choose-item-stone {
	width: 100%;
}

/* 
.why-choose-item-stone .icon-box{
	position: relative;
	left : 135%;
	width: 50px;
	height: 50px;
	background: var(--accent-color);
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	margin-bottom: 30px;
	overflow: hidden;
}

.why-choose-item-stone .icon-box::before{
	content: '';
	position: absolute;
	top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--primary-color);
    border-radius: 50%;
    transform: scale(0);
    transition: all 0.4s ease-in-out;
}

.why-choose-item-stone:hover .icon-box::before{
	transform: scale(1);
} */

.why-choose-item-stone .icon-box img {
	position: relative;
	width: 100%;
	max-width: 24px;
}

.why-choose-item-content-stone h3 {
	font-size: 20px;
	margin-bottom: 10px;
}

.why-choose-item-content-stone p {
	margin-bottom: 20px;
}

.why-choose-item-content-stone ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

.why-choose-item-content-stone ul li {
	position: relative;
	line-height: 1.5em;
	padding-left: 25px;
	margin-bottom: 15px;
}

.why-choose-item-content-stone ul li:last-child {
	margin-bottom: 0;
}

.why-choose-item-content-stone ul li::before {
	content: '\f058';
	position: absolute;
	font-family: 'Font Awesome 7 Free';
	font-size: 18px;
	font-weight: 900;
	color: var(--accent-color);
	left: 0px;
}

.why-choose-experience-box-stone {
	max-width: 280px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	gap: 30px;
	background: var(--accent-color);
	border-radius: 10px;
	padding: 30px;
}

.why-choose-experience-title-stone p,
.why-choose-experience-body-stone p {
	color: var(--white-color);
	margin: 0;
}

.why-choose-experience-header-stone .icon-box {
	margin-bottom: 20px;
}

.why-choose-experience-header-stone .icon-box img {
	width: 100%;
	max-width: 40px;
}

.why-choose-experience-body-stone h2 {
	font-size: 36px;
	color: var(--white-color);
	margin-bottom: 10px;
}

.why-choose-footer-stone {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 20px 25px;
	border-top: 1px solid var(--divider-color);
	padding-top: 40px;
	margin-top: 40px;
}

.why-choose-contact-box-stone {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
}

.why-choose-contact-box-stone .icon-box {
	position: relative;
	width: 50px;
	height: 50px;
	background: var(--accent-color);
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	margin-right: 15px;
	overflow: hidden;
}

.why-choose-contact-box-stone .icon-box::before {
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: var(--primary-color);
	border-radius: 50%;
	transform: scale(0);
	transition: all 0.4s ease-in-out;
}

.why-choose-contact-box-stone:hover .icon-box::before {
	transform: scale(1);
}

.why-choose-contact-box-stone .icon-box img {
	position: relative;
	width: 100%;
	max-width: 24px;
}

.why-choose-contact-content-stone p {
	margin-bottom: 5px;
}

.why-choose-contact-content-stone h3 {
	font-size: 20px;
}

.why-choose-contact-content-stone h3 a {
	color: inherit;
}

.why-choose-contact-content-stone h3 a:hover {
	color: var(--accent-color);
}

/* .intro-video-stone {
	position: relative;
	background-position: bottom center;
	background-size: cover;
	align-content: end;
	padding: 60px 0;
	overflow: hidden;
} */

/* .intro-video-stone::before {
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	background: var(--primary-color);
	opacity: 60%;
	width: 100%;
	height: 100%;
	z-index: 1;
} */

/* .intro-video-stone .container {
	position: relative;
	z-index: 1;
}

.intro-video-box-stone{
  position: relative;
  width: 100%;
  height: 0;
  overflow: hidden; 
}
.intro-video-box-stone video{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  max-height: 600px;
  object-fit: cover; 
} */




/* 
.intro-video-box-stone .video-play-button-stone {
	margin: 0 auto;
}

.video-play-button-stone a {
	position: relative;
	background-color: var(--accent-color);
	border-radius: 50%;
	width: 64px;
	height: 64px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	cursor: none;
	transition: all 0.3s ease-in-out;
}

.video-play-button-stone a:hover {
	background: var(--primary-color);
}

.video-play-button-stone a::before,
.video-play-button-stone a::after {
	content: '';
	position: absolute;
	top: -30%;
	left: -30%;
	width: 160%;
	height: 160%;
	border: 50px solid var(--white-color);
	opacity: 40%;
	border-radius: 50%;
	transform: scale(0.6);
	z-index: -1;
	animation: border-zooming 1.2s infinite linear;
}

.video-play-button-stone a:after {
	animation-delay: .3s;
}

@keyframes border-zooming {
	100% {
		transform: scale(1);
		opacity: 0;
	}
}

.video-play-button-stone a i {
	font-size: 18px;
	margin-left: 3px;
	color: var(--white-color);
	transition: all 0.3s ease-in-out;
} */

.intro-video-list-stone {
	border-top: 1px solid var(--dark-divider-color);
	padding-top: 60px;
	margin-top: 280px;
}

.intro-video-list-stone ul {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 15px 30px;
	list-style: none;
	margin: 0;
	padding: 0;
}

.intro-video-list-stone ul li {
	position: relative;
	line-height: 1.5em;
	color: var(--white-color);
	padding-left: 25px;
}

.intro-video-list-stone ul li::before {
	content: '\f058';
	position: absolute;
	font-family: 'Font Awesome 7 Free';
	font-size: 18px;
	font-weight: 900;
	color: var(--accent-color);
	top: 0;
	left: 0;
}

.our-feature-stone {
	padding: 0px 0 60px;
	overflow: hidden;
}

.feature-item-list-stone {
	height: 100%;
	align-content: center;
}

.feature-item-stone {
	border-bottom: 1px solid var(--divider-color);
	padding-bottom: 50px;
	margin-bottom: 50px;
}

.feature-item-stone:last-child {
	border-bottom: none;
	margin-bottom: 0;
	padding-bottom: 0;
}

.feature-item-stone .icon-box {
	position: relative;
	width: 50px;
	height: 50px;
	background-color: var(--accent-color);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	margin-bottom: 30px;
}

.feature-item-stone .icon-box::before {
	content: '';
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: var(--primary-color);
	border-radius: 50%;
	transform: scale(0);
	width: 100%;
	height: 100%;
	transition: all 0.4s ease-in-out;
}

.feature-item-stone:hover .icon-box::before {
	transform: scale(1) rotate(180deg);
}

.feature-item-stone .icon-box img {
	position: relative;
	width: 100%;
	max-width: 24px;
	z-index: 1;
}

.feature-item-content-stone h3 {
	font-size: 20px;
	color: var(--primary-color);
	margin-bottom: 10px;
}

.feature-item-content-stone p {
	margin: 0 0 20px;
}

.feature-item-content-stone ul {
	list-style: disc;
	margin: 0;
	padding: 0 0 0 20px;
}

.feature-item-content-stone ul li {
	line-height: 1.5em;
}

.feature-item-content-stone ul li::marker {
	color: var(--accent-color);
}

.feature-image-stone {
	text-align: center;
	height: 100%;
}

.feature-image-stone figure {
	display: block;
	border-radius: 20px;
}

.feature-image-stone figure img {
	width: 100%;
	object-fit: cover;
	aspect-ratio: 1 / 1.35;
	margin-bottom: -100px;
	border-radius: 15px;
	margin-left: -10px;
}

.upcoming-events-stone {
	padding: 100px 0;
}

.upcoming-events-content-stone {
	position: sticky;
	top: 30px;
	margin-right: 20px;
}

.event-item-stone {
	background-color: var(--dark-divider-color);
	border-radius: 10px;
	backdrop-filter: blur(20px);
	-webkit-backdrop-filter: blur(20px);
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	margin-bottom: 40px;
	padding: 10px;
}

.event-item-stone:last-child {
	margin-bottom: 0;
}

.event-item-image-stone {
	width: 100%;
	max-width: 245px;
}

.event-item-image-stone a,
.event-item-image-stone figure {
	display: block;
	cursor: none;
	border-radius: 10px;
	overflow: hidden;
}

.event-item-image-stone figure img {
	width: 100%;
	aspect-ratio: 1 / 0.898;
	object-fit: cover;
	border-radius: 10px;
	transition: all 0.6s ease-in-out;
}

.event-item-stone:hover .event-item-image-stone figure img {
	transform: scale(1.06);
}

.event-item-body-stone {
	width: calc(100% - 245px);
	padding: 30px 20px;
}

.event-item-content-stone h2 {
	font-size: 20px;
	color: var(--white-color);
}

.event-item-content-stone h2 a {
	color: inherit;
}

.event-item-content-stone p {
	color: var(--white-color);
	margin: 10px 0 0 0;
}

.event-item-footer-stone {
	border-top: 1px solid var(--dark-divider-color);
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	margin-top: 30px;
	padding-top: 30px;
}

.event-item-meta-stone ul {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

.event-item-meta-stone ul li {
	line-height: normal;
	font-weight: 600;
	color: var(--white-color);
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 10px;
}

.event-item-meta-stone ul li img {
	width: 100%;
	max-width: 20px;
}

.event-readmore-btn-stone {
	text-align: right;
}

.event-readmore-btn-stone .readmore-btn {
	color: var(--white-color);
}

.event-readmore-btn-stone .readmore-btn:hover {
	color: var(--accent-color);
}

.event-readmore-btn-stone .readmore-btn::before {
	background: url('../images/arrow-white.svg');
}

.event-readmore-btn-stone .readmore-btn:hover:before {
	background: url('../images/arrow-accent.svg');
}

.our-pricing-stone {
	padding: 100px 0;
}

.pricing-item-stone {
	position: relative;
	background-color: var(--secondary-color);
	border-radius: 10px;
	height: calc(100% - 70px);
	margin: 40px 0 30px;
	padding: 40px;
	z-index: 1;
}

.pricing-item-header-box-stone {
	margin-bottom: 30px;
}

.pricing-item-header-stone {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	border-bottom: 1px solid var(--divider-color);
	padding-bottom: 30px;
	margin-bottom: 30px;
}

.pricing-item-header-content-stone {
	width: calc(100% - 70px);
}

.pricing-item-header-content-stone h3 {
	font-size: 20px;
}

.pricing-item-header-content-stone p {
	margin: 5px 0 0;
}

.pricing-item-header-stone .icon-box {
	position: relative;
	width: 50px;
	height: 50px;
	background-color: var(--accent-color);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
}

.pricing-item-header-stone .icon-box::before {
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	right: 0;
	left: 0;
	background: var(--primary-color);
	width: 100%;
	height: 100%;
	transform: scale(0);
	border-radius: 50%;
	transition: all 0.4s ease-in-out;
	z-index: 0;
}

.pricing-item-stone:hover .pricing-item-header-stone .icon-box::before {
	transform: scale(1);
}

.pricing-item-header-stone .icon-box img {
	position: relative;
	width: 100%;
	max-width: 24px;
	z-index: 1;
	transition: all 0.4s ease-in-out;
}

.pricing-item-content-stone {
	margin-bottom: 30px;
}

.pricing-item-content-stone p {
	margin: 0;
}

.pricing-price-stone {
	background-color: var(--white-color);
	border-radius: 10px;
	padding: 15px 20px;
}

.pricing-price-stone h2 {
	font-size: 34px;
	font-weight: 700;
	line-height: normal;
}

.pricing-price-stone h2 sub {
	font-size: 18px;
	font-weight: 500;
	bottom: 0;
}

.pricing-item-list-stone h3 {
	font-size: 20px;
}

.pricing-item-list-stone ul {
	list-style: none;
	border-top: 1px solid var(--divider-color);
	margin: 20px 0 0 0;
	padding: 20px 0 0 0;
}

.pricing-item-list-stone ul li {
	position: relative;
	line-height: 1.5em;
	margin-bottom: 20px;
	padding-left: 25px;
}

.pricing-item-list-stone ul li:last-child {
	margin-bottom: 0;
}

.pricing-item-list-stone ul li::before {
	content: '\f058';
	position: absolute;
	font-family: 'Font Awesome 7 Free';
	font-size: 18px;
	font-weight: 900;
	color: var(--accent-color);
	top: 0;
	left: 0;
}

.pricing-item-btn-stone {
	margin-top: 30px;
}

.pricing-item-btn-stone .btn-default {
	width: 100%;
	text-align: center;
	padding: 17px;
}

.pricing-item-btn-stone .btn-default::before {
	display: none;
}

.pricing-highlighted-box {
	position: relative;
	height: 100%;
}

.pricing-highlighted-box .pricing-item-stone {
	background: var(--accent-color);
}

.pricing-highlighted-box::before {
	content: 'Most Popular';
	position: absolute;
	top: -40px;
	left: 0;
	right: 0;
	height: 50px;
	font-size: 20px;
	font-weight: 600;
	color: var(--white-color);
	line-height: 1.2em;
	background: var(--primary-color);
	text-align: center;
	padding: 8px 14px;
	border-radius: 10px 10px 0 0;
	z-index: 0;
}

.pricing-highlighted-box .pricing-item-stone .pricing-item-body-stone {
	background-color: var(--accent-color);
}

.pricing-highlighted-box .pricing-item-stone .pricing-item-header-stone,
.pricing-highlighted-box .pricing-item-stone .pricing-item-list-stone ul {
	border-color: var(--dark-divider-color);
}

.pricing-highlighted-box .pricing-item-stone .pricing-item-header-stone .icon-box {
	background-color: var(--white-color);
}

.pricing-highlighted-box .pricing-item-stone .pricing-item-header-stone .icon-box img {
	filter: brightness(0) invert(0);
}

.pricing-highlighted-box .pricing-item-stone:hover .pricing-item-header-stone .icon-box img {
	filter: brightness(0) invert(1);
}

.pricing-highlighted-box .pricing-item-stone .pricing-item-header-content-stone h3,
.pricing-highlighted-box .pricing-item-stone .pricing-item-header-content-stone p,
.pricing-highlighted-box .pricing-item-stone .pricing-item-content-stone p,
.pricing-highlighted-box .pricing-item-stone .pricing-item-list-stone h3,
.pricing-highlighted-box .pricing-item-stone .pricing-item-list-stone ul li {
	color: var(--white-color);
}

.pricing-highlighted-box .pricing-item-stone .pricing-item-list-stone ul li::before {
	color: var(--white-color);
}

.pricing-highlighted-box .pricing-item-stone .pricing-item-btn-stone .btn-default {
	background-color: var(--white-color);
	color: var(--accent-color);
}

.pricing-highlighted-box .pricing-item-stone .pricing-item-btn-stone .btn-default:hover {
	color: var(--white-color);
}

.pricing-highlighted-box .pricing-item-stone .pricing-item-btn-stone .btn-default::after {
	background-color: var(--primary-color);
}

.pricing-benefit-list-stone {
	margin-top: 30px;
}

.pricing-benefit-list-stone ul {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 20px 60px;
}

.pricing-benefit-list-stone ul li {
	display: inline-flex;
	align-items: center;
}

.pricing-benefit-list-stone ul li img {
	width: 100%;
	max-width: 20px;
	margin-right: 15px;
}

.our-team-stone {
	padding: 100px 0 70px;
}

.team-item-stone {
	height: calc(100% - 30px);
	margin-bottom: 30px;
}

.team-item-image-stone {
	position: relative;
	margin-bottom: 20px;
}

.team-item-image-stone figure {
	position: relative;
	display: block;
	border-radius: 10px;
	overflow: hidden;
}

.team-item-image-stone figure::before {
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.00) 30%, rgba(255, 255, 255, 0.2) 100%);
}

.team-item-image-stone img {
	position: relative;
	width: 100%;
	aspect-ratio: 1 / 1.38;
	object-fit: cover;
	z-index: 1;
}

/* .team-item-image-stone img {} */

/* 
.team-social-icon-stone {
	position: absolute;
	right: 30px;
	bottom: 30px;
	left: 30px;
	opacity: 0;
	transform: translateY(30px);
	visibility: hidden;
	transition: all 0.4s ease-in-out;
	z-index: 1;
}

.team-item-stone:hover .team-social-icon-stone {
	transform: translateY(0);
	opacity: 1;
	visibility: visible;
}

.team-social-icon-stone ul {
	background-color: var(--white-color);
	border-radius: 10px;
	backdrop-filter: blur(30px);
	-webkit-backdrop-filter: blur(30px);
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 15px;
	margin: 0;
	list-style: none;
	padding: 15px 20px;
}

.team-social-icon-stone ul li a {
	width: 40px;
	height: 40px;
	border: 1px solid var(--divider-color);
	color: var(--primary-color);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: all 0.4s ease-in-out;
}

.team-social-icon-stone ul li a:hover {
	background: var(--accent-color);
	color: var(--white-color);
}

.team-social-icon-stone ul li a i {
	font-size: 18px;
	color: inherit;
} */

.team-item-content-stone {
	text-align: center;
}

.team-item-content-stone h2 {
	font-size: 20px;
	color: var(--white-color);
}

.team-item-content-stone h2 a {
	color: inherit;
}

.team-item-content-stone p {
	color: var(--white-color);
	margin: 5px 0 0;
}

.our-testimonials-stone {
	padding: 100px 0;
}

.our-testimonials-content-stone {
	position: sticky;
	top: 120px;
	margin-right: 20px;
}

.testimonial-slider-stone .swiper-wrapper {
	cursor: none;
}

.testimonial-item-stone {
	background-color: var(--dark-divider-color);
	border-radius: 10px;
	min-height: 515px;
	backdrop-filter: blur(20px);
	-webkit-backdrop-filter: blur(20px);
	display: flex;
	flex-wrap: wrap;
	flex-direction: column;
	justify-content: space-between;
	gap: 40px;
	padding: 40px;
}

.testimonial-item-header-content-stone {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	margin-bottom: 40px;
}

.testimonial-rating-stone i {
	font-size: 20px;
	color: var(--accent-color);
}

.testimonial-item-quote-stone {
	width: 50px;
	height: 50px;
	background-color: var(--accent-color);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
}

.testimonial-item-quote-stone img {
	width: 100%;
	max-width: 24px;
}

.testimonial-item-content-stone p {
	font-size: 20px;
	font-weight: 500;
	color: var(--white-color);
	margin: 0;
}

.testimonial-author-content-stone {
	border-top: 1px solid var(--dark-divider-color);
	padding-top: 40px;
}

.testimonial-author-content-stone h3 {
	font-size: 20px;
	color: var(--white-color);
}

.testimonial-author-content-stone p {
	color: var(--white-color);
	margin: 5px 0 0;
}

.testimonials-footer-stone {
	margin-top: 60px;
}

.testimonials-footer-list-stone ul {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 20px 25px;
	list-style: none;
	padding: 0;
	margin: 0 auto;
}

.testimonials-footer-list-stone ul li {
	position: relative;
	color: var(--white-color);
	line-height: 1.25em;
	background: var(--dark-divider-color);
	padding: 10px 20px 10px 35px;
	border-radius: 100px;
	transition: all 0.4s ease-in-out;
}

.testimonials-footer-list-stone ul li::before {
	content: '';
	position: absolute;
	left: 20px;
	top: 50%;
	transform: translateY(-50%);
	background: var(--accent-color);
	border-radius: 50%;
	width: 5px;
	height: 5px;
	transition: all 0.4s ease-in-out;
}

.testimonials-footer-list-stone ul li:hover {
	background: var(--white-color);
	color: var(--accent-color);
}

.main-footer-stone {
	padding: 60px 0 0;
	border-radius: 0px !important;
}

.footer-header-stone {
	border-bottom: 1px solid var(--dark-divider-color);
	padding-bottom: 60px;
	margin-bottom: 60px;
}

/* .footer-header-title-stone {
	max-width: 870px;
} */

.footer-header-title-stone h2 {
	font-size: 60px;
	color: var(--white-color);
}

.footer-header-stone .contact-us-circle-stone a {
	border: none;
}

.footer-logo-stone img {
	width: 100%;
	max-width: 266px;
}

.about-footer-content-stone {
	margin-top: 30px;
}

.about-footer-content-stone p {
	color: var(--white-color);
	margin-bottom: 0;
}

.footer-links-box-stone {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-around;
	gap: 30px;
	margin-left: 4.25vw;
}

.footer-links-stone {
	max-width: 32%;
}

.footer-links-stone h3 {
	font-size: 28px;
	color: var(--white-color);
	margin-bottom: 30px;
}

.footer-links-stone ul {
	list-style: disc;
	margin: 0;
	padding: 0 0 0 20px;
}

.footer-links-stone ul li {
	line-height: 1.5em;
	color: var(--white-color);
	margin-bottom: 15px;
}

.footer-links-stone ul li:last-child {
	margin-bottom: 0;
}

.footer-links-stone ul li::marker {
	color: var(--accent-color);
}

.footer-links-stone ul li a {
	font-size: 18px;
	color: inherit;
	transition: all 0.4s ease-in-out;
}

.footer-links-stone ul li a:hover {
	color: var(--accent-color);
}

.footer-contact-info-box-stone {
	max-width: 45%;
}

.footer-contact-info-list-stone ul li {
	display: flex;
	align-items: center;
	gap: 10px;
	
}
.footer-contact-info-list-stone ul {
	list-style: none;
	padding: 0;
}

.footer-social-links-stone {
	border-top: 1px solid var(--dark-divider-color);
	padding-top: 30px;
	margin-top: 30px;
}

.footer-social-links-stone ul {
	list-style: none;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 15px;
	margin: 0;
	padding: 0;
}

.footer-social-links-stone ul li {
	margin-bottom: 0;
}

.footer-social-links-stone ul li a {
	width: 40px;
	height: 40px;
	border: 1px solid var(--dark-divider-color);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.4s ease-in-out;
}

.footer-social-links-stone ul li a:hover {
	background: var(--accent-color);
}

.footer-social-links-stone ul li a i {
	font-size: 18px;
	color: var(--white-color);
}

.footer-copyright-text-stone .policy a {
	font-size: 18px;
	color: var(--white-color);
	text-decoration: none;
	margin-right: 30px;
}

.footer-copyright-text-stone {
	border-top: 1px solid var(--dark-divider-color);
	/* text-align: end; */
	margin-top: 40px;
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	justify-content: space-between;
	padding: 20px 0;
}

.footer-copyright-text-stone p {
	color: var(--white-color);
	margin: 0;
}

@media only screen and (max-width: 1440px) {

	.program-item-stone {
		height: 350px;
	}

	.program-item-body-stone {
		right: 30px;
		bottom: 30px;
		left: 30px;
	}

	.why-choose-body-stone {
		gap: 20px;
	}

	/* .why-choose-item-stone{
		width: calc(100% - 300px);
	} */

	.why-choose-item-stone .icon-box {
		margin-bottom: 20px;
	}

	.intro-video-stone {
		min-height: 700px;
	}

	.intro-video-list-stone {
		margin-top: 230px;
	}

	.intro-video-list-stone ul li {
		font-size: 14px;
	}

	.feature-item-stone .icon-box {
		margin-bottom: 20px;
	}

	.feature-item-stone {
		padding-bottom: 30px;
		margin-bottom: 30px;
	}

	.feature-item-content-stone h3 {
		margin-bottom: 5px;
	}

	.feature-item-content-stone p {
		margin-bottom: 10px;
	}

	.event-item-body-stone {
		padding: 20px 15px;
	}

	.pricing-item-stone {
		padding: 30px 25px;
	}

	.pricing-item-header-stone {
		margin-bottom: 20px;
		padding-bottom: 20px;
	}

	.pricing-item-content-stone {
		margin-bottom: 20px;
	}

	.testimonial-item-stone {
		gap: 30px;
		min-height: 480px;
		padding: 30px;
	}

	.testimonial-item-header-content-stone {
		margin-bottom: 30px;
	}

	.testimonial-author-content-stone {
		padding-top: 30px;
	}

	.footer-links-box-stone {
		margin-left: 30px;
	}

	.footer-header-title-stone h2 {
		font-size: 55px;
	}
}

@media only screen and (max-width: 1024px) {

	.hero-info-list-stone {
		padding-top: 40px;
		margin-top: 60px;
		gap: 30px 20px;
	}

	.hero-info-item-stone {
		width: calc(33.33% - 13.33px);
	}

	.hero-info-item-content-stone {
		width: 100%;
	}

	.about-us-image-box-stone {
		max-width: 705px;
		margin: 0 auto 30px;
	}

	.program-item-image-stone figure img {
		aspect-ratio: 1 / 1.1;
	}

	.why-choose-image-box-stone {
		max-width: 580px;
		margin: 0 auto 30px;
	}

	.intro-video-stone {
		min-height: 550px;
	}

	.intro-video-list-stone {
		padding-top: 40px;
		margin-top: 150px;
	}

	.feature-item-list-stone {
		height: auto;
	}

	.feature-image-stone {
		height: auto;
		max-width: 500px;
		margin: 30px auto 0;
	}

	.upcoming-events-content-stone {
		position: initial;
		margin: 0 0 40px;
	}

	.team-item-image-stone img {
		aspect-ratio: 1 / 1.1;
	}

	.our-testimonials-content-stone {
		position: initial;
		margin: 0 0 40px;
	}

	.testimonial-item-stone {
		min-height: initial;
	}

	.testimonials-footer-list-stone ul {
		gap: 12px;
	}

	.testimonials-footer-list-stone ul li {
		padding: 6px 12px 6px 26px;
	}

	.testimonials-footer-list-stone ul li::before {
		left: 12px;
	}

	.about-footer-stone {
		margin-bottom: 30px;
	}

	.about-footer-content-stone {
		margin-top: 15px;
	}

	.footer-links-box-stone {
		margin: 0;
	}

	.footer-social-links-stone {
		padding-top: 20px;
		margin-top: 20px;
	}
}

@media only screen and (max-width: 991px) {

	.hero-stone {
		padding: 140px 0 50px;
		margin-top: 0;
	}

	.hero-btn-stone {
		margin-top: 0;
	}

	.hero-info-list-stone {
		margin-top: 40px;
	}

	.hero-info-item-stone {
		width: calc(50% - 10px);
	}

	.about-us-stone {
		padding: 50px 0;
	}

	.contact-us-circle-stone a img {
		max-width: 100px;
	}

	.about-us-item-stone .icon-box {
		margin-bottom: 20px;
	}

	.about-us-btn-stone {
		margin-top: 30px;
		padding-top: 30px;
	}

	.program-item-stone .icon-box {
		top: 20px;
		left: 20px;
	}

	.program-item-body-stone {
		right: 20px;
		bottom: 20px;
		left: 20px;
	}

	.program-readmore-btn-stone {
		margin-top: 15px;
	}

	.why-choose-us-stone {
		padding: 50px 0;
	}

	.why-choose-experience-body-stone h2 {
		font-size: 32px;
		margin-bottom: 5px;
	}

	.why-choose-footer-stone {
		margin-top: 30px;
		padding-top: 30px;
		margin-left: -7px;
	}

	.why-choose-contact-content-stone h3 {
		font-size: 18px;
	}

	.intro-video-list-stone ul li::before {
		font-size: 16px;
	}

	.our-feature-stone {
		padding: 50px 0;
	}

	.feature-image-stone figure img {
		margin-bottom: -50px;
	}

	.upcoming-events-stone {
		padding: 50px 0;
	}

	.event-item-stone {
		margin-bottom: 30px;
	}

	.our-pricing-stone {
		padding: 50px 0;
	}

	.pricing-item-stone {
		padding: 20px;
	}

	.pricing-price-stone {
		padding: 15px;
	}

	.pricing-price-stone h2 {
		font-size: 30px;
	}

	.pricing-price-stone h2 sub {
		font-size: 16px;
	}

	.pricing-item-list-stone ul li {
		margin-bottom: 15px;
	}

	.pricing-item-list-stone ul li::before {
		font-size: 16px;
	}

	.pricing-item-btn-stone .btn-default {
		padding: 15px;
	}

	.pricing-highlighted-box::before {
		font-size: 18px;
	}

	.pricing-benefit-list-stone {
		margin-top: 5px;
	}

	.pricing-benefit-list-stone ul {
		gap: 15px 30px;
	}

	.pricing-benefit-list-stone ul li img {
		max-width: 18px;
		margin-right: 10px;
	}

	.our-team-stone {
		padding: 50px 0 20px;
	}

	.team-item-image-stone {
		margin-bottom: 15px;
	}

	.team-social-icon-stone ul {
		padding: 10px;
	}

	.our-testimonials-stone {
		padding: 50px 0;
	}

	.testimonial-item-stone {
		padding: 20px;
	}

	.testimonial-item-header-content-stone {
		margin-bottom: 20px;
	}

	.testimonial-rating-stone i {
		font-size: 18px;
	}

	.testimonial-item-content-stone p {
		font-size: 18px;
	}

	.testimonials-footer-stone {
		margin-top: 40px;
	}

	.testimonials-footer-stone .section-footer-text {
		margin-top: 20px;
	}

	.main-footer-stone {
		padding: 50px 0 0;
		margin-bottom: 0;
	}

	.footer-header-stone {
		padding-bottom: 30px;
		margin-bottom: 30px;
	}

	.footer-header-title-stone {
		max-width: calc(100% - 130px);
	}

	.footer-header-title-stone h2 {
		font-size: 44px;
	}

	.footer-links-stone h3 {
		margin-bottom: 20px;
	}

	.footer-links-stone ul li {
		margin-bottom: 10px;
	}

	.footer-social-links-stone ul li {
		margin-bottom: 0;
	}

	.footer-copyright-text-stone {
		padding: 30px 0;
		margin-top: 30px;

		display: flex;
		justify-content: space-around;

	}

	.footer-copyright-text-stone .copyright p,
	.policy a {
		font-size: 15px !important;
	}

	.footer-copyright-text-stone {
		display: flex;
		gap: 30px;
		justify-content: space-around;
	}
}

@media only screen and (max-width: 767px) {

	.hero-info-list-stone {
		padding-top: 30px;
		margin-top: 30px;
	}

	.hero-info-item-stone {
		width: 100%;
	}

	.hero-info-item-content-stone h3 {
		font-size: 18px;
	}

	.hero-info-item-content-stone p {
		margin: 5px 0 0;
	}

	.about-us-image-box-2-stone {
		margin-bottom: 100px;
	}

	.about-us-image-box-2-stone .about-us-image-stone figure {
		margin-left: -100px;
	}

	.about-us-image-box-2-stone .contact-us-circle-stone {
		transform: translate(-10%, 50%);
	}

	.about-us-item-stone {
		text-align: center;
		width: 100%;
		display: flex;
		align-items: center;
		flex-direction: column;
	}

	.about-us-item-content-stone h3 {
		font-size: 18px;
	}

	.about-us-item-content-stone p {
		margin-top: 5px;
	}

	.program-item-content-stone h2 {
		font-size: 18px;
	}

	.program-item-content-stone p {
		margin-top: 5px;
	}

	.program-item-stone {
		height: 275px !important;
	}

	.why-choose-image-box-1-stone {
		background-position: bottom 28px center;
		background-size: 100px;
		padding-bottom: 100px;
	}

	.why-choose-image-box-2-stone {
		position: relative;
		top: 100px;

	}

	.why-choose-image-box-2-stone .why-choose-image-stone figure {
		margin-left: -100px;
		margin-bottom: 40px;
		/* border:in; */
	}

	.why-choose-image-box-2-stone .contact-us-circle-stone {
		right: 20px;
	}

	.why-choose-image-box-2-stone .contact-us-circle-stone a {
		border-width: 3px;
	}

	.why-choose-item-stone {
		width: 100%;
	}

	.why-choose-item-content-stone h3 {
		font-size: 18px;
		margin-bottom: 5px;
	}

	.why-choose-item-content-stone ul li::before {
		font-size: 16px;
	}

	.why-choose-experience-box-stone {
		max-width: 100%;
		gap: 20px;
		padding: 20px;
	}

	.why-choose-experience-header-stone .icon-box {
		margin-bottom: 10px;
	}

	.why-choose-experience-body-stone h2 {
		font-size: 28px;
	}

	.why-choose-contact-content-stone h3 {
		font-size: 16px;
	}

	.intro-video-stone {
		min-height: 450px;
		padding: 30px 0;
	}

	.video-play-button-stone a {
		width: 50px;
		height: 50px;
	}

	.video-play-button-stone a::before,
	.video-play-button-stone a::after {
		top: -50%;
		left: -50%;
	}

	.intro-video-list-stone {
		margin-top: 100px;
		padding-top: 30px;
	}

	.intro-video-list-stone ul {
		justify-content: left;
		gap: 10px;
	}

	.feature-item-content-stone h3 {
		font-size: 18px;
	}

	.feature-item-list-stone.list-1 {
		border-bottom: 1px solid var(--divider-color);
		padding-bottom: 20px;
		margin-bottom: 20px;
	}

	.feature-item-stone {
		padding-bottom: 20px;
		margin-bottom: 20px;
	}

	.event-item-image-stone {
		max-width: 100%;
		width: 100%;
	}

	.event-item-image-stone figure img {
		aspect-ratio: 1 / 0.75;
	}

	.event-item-body-stone {
		width: 100%;
		padding: 20px 10px 10px;
	}

	.event-item-content-stone h2 {
		font-size: 18px;
	}

	.event-item-footer-stone {
		padding-top: 20px;
		margin-top: 20px;
	}

	.event-item-meta-stone {
		width: 100%;
	}

	.event-readmore-btn-stone {
		width: 100%;
		text-align: left;
	}

	.pricing-item-stone {
		height: calc(100% - 30px);
		margin: 0 0 30px;
	}

	.pricing-item-header-content-stone h3 {
		font-size: 18px;
	}

	.pricing-price-stone {
		padding: 10px 15px;
	}

	.pricing-price-stone h2 {
		font-size: 26px;
	}

	.pricing-price-stone h2 sub {
		font-size: 14px;
	}

	.pricing-item-list-stone h3 {
		font-size: 18px;
	}

	.pricing-item-list-stone ul {
		margin-top: 15px;
		padding-top: 15px;
	}

	.pricing-item-list-stone ul li {
		margin-bottom: 10px;
	}

	.pricing-highlighted-box .pricing-item-stone {
		margin: 40px 0 30px;
		height: calc(100% - 70px);
	}

	.pricing-benefit-list-stone ul {
		gap: 10px 20px;
	}

	.pricing-benefit-list-stone ul li {
		font-size: 14px;
	}

	.pricing-benefit-list-stone ul li img {
		max-width: 16px;
		margin-right: 5px;
	}

	.team-item-content-stone h2 {
		font-size: 18px;
	}

	.testimonial-item-stone {
		gap: 20px;
	}

	.testimonial-item-quote-stone {
		width: 40px;
		height: 40px;
	}

	.testimonial-item-quote-stone img {
		max-width: 20px;
	}

	.testimonial-rating-stone i,
	.testimonial-item-content-stone p {
		font-size: 16px;
	}

	.testimonial-author-content-stone {
		padding-top: 20px;
	}

	.testimonial-author-content-stone h3 {
		font-size: 18px;
	}

	.testimonials-footer-list-stone ul {
		gap: 10px;
	}

	.testimonials-footer-list-stone ul li {
		font-size: 14px;
		padding: 6px 10px 6px 22px;
	}

	.testimonials-footer-list-stone ul li::before {
		left: 10px;
	}

	.footer-header-stone {
		gap: 15px;
		margin-bottom: 20px;
		padding-bottom: 20px;
	}

	.footer-header-title-stone {
		max-width: 100%;
	}

	.footer-header-title-stone h2 {
		font-size: 26px;
	}

	.footer-header-stone .contact-us-circle-stone a img {
		max-width: 80px;
	}

	.footer-links-stone {
		max-width: 100%;
	}

	.footer-links-stone h3 {
		font-size: 18px;
		margin-bottom: 15px;
	}

	.footer-contact-info-box-stone {
		width: 100%;
	}

	.footer-copyright-text-stone {
		padding: 15px 0;
		margin-top: 20px;
	}

	.footer-logo-stone img {
		margin: 0 15%;
	}

	.footer-copyright-text-stone .policy a {
		margin-right: 10px;
	}

	.footer-copyright-text-stone {
		display: flex;
		/* gap: 0 !important; */
		justify-content: space-around;
	}
	.footer-links-box-stone{
		display: flex;
		justify-content: space-between!important;
	}

}

/************************************/
/***   33. Home - Version 3 css   ***/
/************************************/

.hero-pioneer {
	padding: 175px 0 60px;
	margin-top: 20px;
}

.hero-content-pioneer {
	height: 100%;
	align-content: center;
}

.hero-body-content-pioneer {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 25px 40px;
}

.hero-info-item-list-pioneer {
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
	margin-top: 40px;
}

.hero-info-item-pioneer {
	width: calc(50% - 15px);
	background: var(--dark-divider-color);
	border: 1px solid var(--dark-divider-color);
	backdrop-filter: blur(30px);
	-webkit-backdrop-filter: blur(30px);
	border-radius: 10px;
	padding: 20px;
}

.hero-info-item-header-pioneer {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 20px;
}

.hero-info-item-header-pioneer .icon-box {
	position: relative;
	width: 50px;
	height: 50px;
	background: var(--accent-color);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
}

.hero-info-item-header-pioneer .icon-box::before {
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	right: 0;
	left: 0;
	background: var(--white-color);
	border-radius: 50%;
	width: 100%;
	height: 100%;
	transform: scale(0);
	transition: all 0.4s ease-in-out;
	z-index: 0;
}

.hero-info-item-pioneer:hover .hero-info-item-header-pioneer .icon-box::before {
	transform: scale(1);
}

.hero-info-item-header-pioneer .icon-box img {
	position: relative;
	width: 100%;
	max-width: 24px;
	transition: all 0.4s ease-in-out;
	z-index: 1;
}

.hero-info-item-pioneer:hover .hero-info-item-header-pioneer .icon-box img {
	filter: brightness(0) invert(0);
}

.hero-info-item-title-pioneer {
	width: calc(100% - 70px);
}

.hero-info-item-title-pioneer h3 {
	font-size: 20px;
	line-height: 1.4em;
	color: var(--white-color);
}

.hero-info-item-body-pioneer {
	border-top: 1px solid var(--dark-divider-color);
	padding-top: 20px;
	margin-top: 20px;
}

.hero-info-item-body-pioneer ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

.hero-info-item-body-pioneer ul li {
	position: relative;
	color: var(--white-color);
	line-height: 1.5em;
	padding-left: 25px;
	margin-bottom: 10px;
}

.hero-info-item-body-pioneer ul li:last-child {
	margin-bottom: 0;
}

.hero-info-item-body-pioneer ul li::before {
	content: '\f058';
	position: absolute;
	font-family: 'Font Awesome 7 Free';
	font-size: 18px;
	font-weight: 900;
	color: var(--accent-color);
	top: 0;
	left: 0;
}

.hero-footer-list-pioneer {
	margin-top: 40px;
}

.hero-footer-list-pioneer ul {
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
	list-style: none;
	margin: 0;
	padding: 0;
}

.hero-footer-list-pioneer ul li {
	color: var(--white-color);
	line-height: 1.5em;
	background: var(--dark-divider-color);
	backdrop-filter: blur(30px);
	-webkit-backdrop-filter: blur(30px);
	border-radius: 100px;
	padding: 6px 18px;
	transition: all 0.4s ease-in-out;
}

.hero-footer-list-pioneer ul li:hover {
	background: var(--accent-color);
}

.hero-image-pioneer {
	height: 100%;
	align-content: end;
}

.hero-image-pioneer figure {
	display: block;
	border-radius: 10px 10px 0 0;
}

.hero-image-pioneer figure img {
	width: 100%;
	aspect-ratio: 1 / 1.12;
	object-fit: cover;
	border-radius: 10px 10px 0 0;
	margin-bottom: -60px;
}

.about-us-pioneer {
	padding: 100px 0;
}

.about-us-image-box-pioneer {
	position: relative;
	padding: 45px 5.208vw 0 6.51vw;
	height: 100%;
	margin-right: 15px;
}

.about-us-image-pioneer {
	height: 100%;
}

.about-us-image-pioneer figure {
	display: block;
	height: 100%;
	border-radius: 10px;
}

.about-us-image-pioneer figure img {
	width: 100%;
	height: 100%;
	aspect-ratio: 1 / 1.415;
	object-fit: cover;
	border-radius: 10px;
}

.about-us-image-box-1-pioneer {
	position: absolute;
	top: 0;
	left: 0;
	z-index: 1;
}

.about-us-image-box-2-pioneer {
	position: absolute;
	right: 0;
	bottom: 100px;
	z-index: 1;
}

.about-us-image-box-1-pioneer figure,
.about-us-image-box-2-pioneer figure {
	display: block;
	border: 5px solid var(--white-color);
	border-radius: 10px;
}

.about-us-image-box-1-pioneer figure img,
.about-us-image-box-2-pioneer figure img {
	width: 100%;
	max-width: 275px;
	aspect-ratio: 1 / 0.91;
	object-fit: cover;
	border-radius: 10px;
}

.about-us-info-box-pioneer {
	position: absolute;
	left: 0;
	bottom: 20px;
	max-width: 340px;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 20px;
	background-color: var(--primary-color);
	border-radius: 10px;
	padding: 20px;
	z-index: 1;
}

.about-us-info-box-pioneer .icon-box {
	position: relative;
	width: 50px;
	height: 50px;
	background: var(--accent-color);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
}

.about-us-info-box-pioneer .icon-box::before {
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	right: 0;
	left: 0;
	background: var(--white-color);
	border-radius: 50%;
	width: 100%;
	height: 100%;
	transform: scale(0);
	transition: all 0.4s ease-in-out;
	z-index: 0;
}

.about-us-info-box-pioneer:hover .icon-box::before {
	transform: scale(1);
}

.about-us-info-box-pioneer .icon-box img {
	position: relative;
	width: 100%;
	max-width: 24px;
	transition: all 0.4s ease-in-out;
	z-index: 1;
}

.about-us-info-box-pioneer:hover .icon-box img {
	filter: brightness(0) invert(0);
}

.about-us-info-content-pioneer {
	width: calc(100% - 70px);
}

.about-us-info-content-pioneer h3 {
	font-size: 20px;
	color: var(--white-color);
	line-height: 1.4em;
}

.about-us-content-pioneer {
	height: 100%;
	align-content: center;
}

.about-us-body-pioneer {
	display: flex;
	flex-wrap: wrap;
	border-top: 1px solid var(--divider-color);
	border-bottom: 1px solid var(--divider-color);
}

.about-us-item-list-pioneer {
	width: 64%;
	border-right: 1px solid var(--divider-color);
}

.about-us-item-pioneer {
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
	border-bottom: 1px solid var(--divider-color);
	padding: 40px 40px 40px 0;
}

.about-us-item-pioneer:last-child {
	border-bottom: none;
}

.about-us-item-pioneer .icon-box {
	position: relative;
	width: 50px;
	height: 50px;
	background: var(--accent-color);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
}

.about-us-item-pioneer .icon-box::before {
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	right: 0;
	left: 0;
	background: var(--primary-color);
	border-radius: 50%;
	width: 100%;
	height: 100%;
	transform: scale(0);
	transition: all 0.4s ease-in-out;
	z-index: 0;
}

.about-us-item-pioneer:hover .icon-box::before {
	transform: scale(1);
}

.about-us-item-pioneer .icon-box img {
	position: relative;
	width: 100%;
	max-width: 24px;
	z-index: 1;
}

.about-us-item-content-pioneer {
	width: calc(100% - 70px);
}

.about-us-item-content-pioneer h3 {
	font-size: 20px;
}

.about-us-item-content-pioneer p {
	margin: 10px 0 0;
}

.about-us-counter-pioneer {
	width: 36%;
	text-align: center;
	align-content: center;
	padding: 30px;
}

.about-us-counter-pioneer h2 {
	font-size: 80px;
	font-weight: 700;
	line-height: 1em;
}

.about-us-counter-pioneer p {
	margin: 5px 0 0;
}

.about-us-footer-pioneer {
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
	align-items: center;
	margin-top: 40px;
}

.about-us-client-box-pioneer {
	display: flex;
	align-items: center;
	gap: 20px;
}

.about-rating-content-pioneer .about-rating-star i {
	font-size: 20px;
	color: var(--accent-color);
}

.about-rating-content-pioneer p {
	margin: 5px 0 0;
}

.our-program-pioneer {
	padding: 100px 0;
}

.program-item-pioneer {
	background-color: var(--dark-divider-color);
	backdrop-filter: blur(30px);
	-webkit-backdrop-filter: blur(30px);
	border-radius: 10px;
	height: calc(100% - 30px);
	margin-bottom: 30px;
	padding: 30px;
}

.program-item-info-pioneer {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 20px;
	margin-bottom: 40px;
}

.program-item-info-pioneer .icon-box {
	position: relative;
	width: 50px;
	height: 50px;
	background: var(--accent-color);
	border-radius: 100px;
	display: inline-flex;
	justify-content: center;
	align-items: center;
}

.program-item-info-pioneer .icon-box::before {
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	right: 0;
	left: 0;
	background: var(--white-color);
	border-radius: 50%;
	width: 100%;
	height: 100%;
	transform: scale(0);
	transition: all 0.4s ease-in-out;
	z-index: 0;
}

.program-item-pioneer:hover .program-item-info-pioneer .icon-box::before {
	transform: scale(1);
}

.program-item-info-pioneer .icon-box img {
	position: relative;
	width: 100%;
	max-width: 24px;
	transition: all 0.4s ease-in-out;
	z-index: 1;
}

.program-item-pioneer:hover .program-item-info-pioneer .icon-box img {
	filter: brightness(0) invert(0);
}

.program-item-title-pioneer {
	width: calc(100% - 70px);
}

.program-item-title-pioneer h2 {
	font-size: 20px;
	color: var(--white-color);
	line-height: 1.4em;
}

.program-item-title-pioneer h2 a {
	color: inherit;
}

.program-item-image-pioneer a {
	cursor: none;
}

.program-item-image-pioneer figure {
	display: block;
	mask-image: url('../images/program-image-bg-shape-pioneer.svg');
	background-image: url('../images/program-image-bg-shape-pioneer.svg');
	mask-size: cover;
	mask-position: center center;
	mask-repeat: no-repeat;
	border-radius: 20px;
	overflow: hidden;
}

.program-item-image-pioneer img {
	width: 100%;
	aspect-ratio: 1 / 0.492;
	object-fit: cover;
	transition: all 0.6s ease-in-out;
}

.program-item-pioneer:hover .program-item-image-pioneer img {
	transform: scale(1.06);
}

.program-item-body-pioneer {
	border-top: 1px solid var(--dark-divider-color);
	padding-top: 30px;
	margin-top: 30px;
}

.program-item-content-pioneer p {
	color: var(--white-color);
	margin-bottom: 0;
}

.program-item-btn-pioneer {
	margin-top: 50px;
}

.program-item-btn-pioneer .readmore-btn {
	color: var(--accent-color);
}

.program-item-btn-pioneer .readmore-btn::before {
	background-image: url('../images/arrow-accent.svg');
}

.program-item-btn-pioneer .readmore-btn:hover {
	color: var(--white-color);
}

.program-item-btn-pioneer .readmore-btn:hover::before {
	filter: brightness(0) invert(1);
}

.why-choose-us-pioneer {
	padding: 100px 0;
}

.why-choose-review-box-pioneer {
	background-color: var(--secondary-color);
	border-radius: 10px;
	align-content: center;
	height: calc(100% - 30px);
	margin-bottom: 30px;
	padding: 30px;
}

.why-choose-review-header-pioneer h2 {
	font-size: 48px;
	margin-bottom: 5px;
}

.why-choose-review-header-pioneer p {
	margin-bottom: 0;
}

.why-choose-review-body-pioneer {
	border-top: 1px solid var(--divider-color);
	margin-top: 30px;
	padding-top: 30px;
}

.why-choose-review-item-header-pioneer {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 20px;
}

.why-choose-review-item-header-pioneer .icon-box {
	position: relative;
	width: 40px;
	height: 40px;
	background: var(--accent-color);
	border-radius: 100px;
	display: flex;
	justify-content: center;
	align-items: center;
}

.why-choose-review-item-header-pioneer .icon-box::before {
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	right: 0;
	left: 0;
	background: var(--primary-color);
	border-radius: 50%;
	width: 100%;
	height: 100%;
	transform: scale(0);
	transition: all 0.4s ease-in-out;
	z-index: 0;
}

.why-choose-review-box-pioneer:hover .why-choose-review-item-header-pioneer .icon-box::before {
	transform: scale(1);
}

.why-choose-review-item-header-pioneer .icon-box img {
	position: relative;
	width: 100%;
	max-width: 20px;
	z-index: 1;
}

.why-choose-review-item-title-pioneer {
	width: calc(100% - 60px);
}

.why-choose-review-item-title-pioneer h3 {
	font-size: 20px;
}

.why-choose-review-item-content-pioneer {
	margin-top: 15px;
}

.why-choose-review-item-content-pioneer p {
	margin-bottom: 0;
}

.why-choose-review-footer-pioneer {
	border-top: 1px solid var(--divider-color);
	margin-top: 30px;
	padding-top: 30px;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 15px;
}

.why-choose-review-client-content-pioneer p {
	margin: 10px 0 0;
}

.why-choose-review-content-pioneer {
	width: calc(100% - 70px);
}

.why-choose-review-rating-pioneer p {
	margin: 0;
}

.why-choose-review-rating-pioneer p i {
	font-size: 20px;
	color: var(--accent-color);
	margin-left: 5px;
}

.why-choose-item-box-pioneer {
	position: relative;
	display: flex;
	flex-wrap: wrap;
	background-color: var(--primary-color);
	border-radius: 10px;
	height: calc(100% - 30px);
	margin-bottom: 30px;
}

.why-choose-image-pioneer {
	width: 70%;
	align-content: end;
}

.why-choose-image-pioneer figure {
	position: relative;
	display: block;
	border-radius: 10px 10px 0 0;
}

.why-choose-item-box-pioneer figure::before {
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	height: 100%;
	width: 100%;
	background: linear-gradient(180deg, rgba(9, 13, 45, 0.00) 48.42%, var(--primary-color) 90.63%);
	border-radius: 0 0 10px 10px;
	z-index: 0;
}

.why-choose-image-pioneer img {
	width: 100%;
	aspect-ratio: 1 / 1.05;
	object-fit: cover;
	border-radius: 10px 10px 0 0;
}

.why-choose-award-item-list-pioneer {
	width: 30%;
	padding: 40px 30px;
}

.why-choose-award-item-pioneer {
	text-align: center;
	margin-bottom: 20px;
}

.why-choose-award-item-pioneer:last-child {
	margin-bottom: 0;
}

.why-choose-award-item-pioneer .icon-box img {
	width: 100%;
	max-width: 70px;
}

.why-choose-award-item-content-pioneer {
	margin-top: 15px;
}

.why-choose-award-item-content-pioneer p {
	font-size: 14px;
	font-weight: 500;
	color: var(--white-color);
	margin: 0;
}

.why-choose-info-item-box-pioneer {
	position: absolute;
	left: 40px;
	bottom: 40px;
	right: 40px;
	max-width: 480px;
	z-index: 1;
}

.why-choose-info-item-pioneer {
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
}

.why-choose-info-item-pioneer .icon-box {
	position: relative;
	width: 50px;
	height: 50px;
	background: var(--accent-color);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
}

.why-choose-info-item-pioneer .icon-box::before {
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	right: 0;
	left: 0;
	background: var(--white-color);
	border-radius: 50%;
	width: 100%;
	height: 100%;
	transform: scale(0);
	transition: all 0.4s ease-in-out;
	z-index: 0;
}

.why-choose-item-box-pioneer:hover .why-choose-info-item-pioneer .icon-box::before {
	transform: scale(1);
}

.why-choose-info-item-pioneer .icon-box img {
	position: relative;
	width: 100%;
	max-width: 24px;
	transition: all 0.4s ease-in-out;
	z-index: 1;
}

.why-choose-item-box-pioneer:hover .why-choose-info-item-pioneer .icon-box img {
	filter: brightness(0) invert(0);
}

.why-choose-info-item-content-pioneer {
	width: calc(100% - 70px);
}

.why-choose-info-item-content-pioneer h3 {
	font-size: 20px;
	color: var(--white-color);
}

.why-choose-info-item-content-pioneer p {
	color: var(--white-color);
	margin: 20px 0 0;
}

.why-choose-btn-pioneer {
	margin-top: 40px;
}

.why-choose-btn-pioneer a {
	color: var(--accent-color);
}

.why-choose-btn-pioneer .readmore-btn::before {
	background-image: url('../images/arrow-accent.svg');
}

.why-choose-feature-box-pioneer {
	display: flex;
	flex-direction: column;
	gap: 30px;
	height: calc(100% - 30px);
	margin-bottom: 30px;
}

.why-choose-client-box-pioneer {
	background-color: var(--accent-color);
	padding: 30px;
	border-radius: 10px;
}

.why-choose-client-header-pioneer {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 15px;
}

.why-choose-client-header-pioneer .satisfy-client-image {
	border-color: var(--accent-color);
}

.why-choose-client-header-pioneer .satisfy-client-image img {
	max-width: 38px;
}

.why-choose-client-counter-pioneer h2 {
	font-size: 48px;
	line-height: 1em;
	color: var(--white-color);
}

.why-choose-client-body-pioneer {
	margin-top: 25px;
}

.why-choose-client-body-pioneer .skills-progress-bar .skill-data .skill-title,
.why-choose-client-body-pioneer .skills-progress-bar .skill-data .skill-no {
	font-size: 14px;
	font-weight: 500;
	color: var(--white-color);
}

.why-choose-client-body-pioneer .skills-progress-bar .skillbar .skill-progress .count-bar {
	background: var(--white-color);
}

.why-choose-client-body-pioneer .skills-progress-bar .skillbar .skill-progress {
	background: var(--dark-divider-color);
}

.why-choose-client-footer-pioneer {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
	gap: 30px;
	margin-top: 25px;
}

.why-choose-client-footer-pioneer p {
	font-size: 14px;
	font-weight: 500;
	color: var(--white-color);
	margin-bottom: 0;
}

.why-choose-client-footer-pioneer a {
	width: 40px;
	height: 40px;
	background-color: var(--white-color);
	border-radius: 100px;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	transition: all 0.4s ease-in-out;
}

.why-choose-client-footer-pioneer a:hover {
	background-color: var(--primary-color);
}

.why-choose-client-footer-pioneer a img {
	width: 100%;
	max-width: 12px;
	transition: all 0.4s ease-in-out;
}

.why-choose-client-footer-pioneer a:hover img {
	filter: brightness(0) invert(1);
	transform: rotate(45deg);
}

.why-choose-record-box-pioneer {
	position: relative;
	height: 100%;
	border-radius: 10px;
	overflow: hidden;
	align-content: end;
	padding: 40px;
}

.why-choose-record-image-pioneer {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.why-choose-record-image-pioneer::before {
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	height: 100%;
	width: 100%;
	background: linear-gradient(180deg, rgba(9, 13, 45, 0.00) -2.67%, var(--primary-color) 100%);
	z-index: 0;
}

.why-choose-record-image-pioneer figure {
	width: 100%;
	height: 100%;
	display: block;
}

.why-choose-record-image-pioneer img {
	height: 100%;
	width: 100%;
	object-fit: cover;
}

.why-choose-record-content-pioneer {
	position: relative;
	z-index: 1;
}

.why-choose-record-content-pioneer .why-choose-review-item-title-pioneer h3 {
	color: var(--white-color);
}

.why-choose-record-list-pioneer {
	border-top: 1px solid var(--dark-divider-color);
	margin-top: 20px;
	padding-top: 20px;
}

.why-choose-record-list-pioneer ul {
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
	list-style: none;
	margin: 0;
	padding: 0;
}

.why-choose-record-list-pioneer ul li {
	color: var(--white-color);
	font-size: 14px;
	background-color: var(--dark-divider-color);
	border-radius: 100px;
	backdrop-filter: blur(15px);
	-webkit-backdrop-filter: blur(15px);
	padding: 10px 16px;
}

.why-choose-footer-pioneer {
	margin-top: 30px;
}

.why-choose-footer-list-pioneer ul {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 20px;
	list-style: none;
	margin: 0;
	padding: 0;
}

.why-choose-footer-list-pioneer ul li {
	position: relative;
	line-height: 1.5em;
	background-color: var(--secondary-color);
	border-radius: 100px;
	padding: 7px 20px 7px 36px;
	margin: 0;
}

.why-choose-footer-list-pioneer ul li:before {
	content: '';
	position: absolute;
	top: 50%;
	left: 20px;
	height: 5px;
	width: 5px;
	transform: translateY(-50%);
	background-color: var(--accent-color);
	border-radius: 50%;
}

.what-we-do-pioneer {
	padding: 100px 0;
}

.what-we-do-image-slider-pioneer {
	position: relative;
	margin-right: 15px;
}

.what-we-do-img-pioneer .swiper-wrapper {
	cursor: none;
}

.what-we-do-img-pioneer .swiper-slide figure,
.what-we-do-img-item-pioneer .swiper-slide figure {
	display: block;
	border-radius: 10px;
}

.what-we-do-img-pioneer .swiper-slide img {
	width: 100%;
	aspect-ratio: 1 / 0.9;
	object-fit: cover;
	border-radius: 10px;
}

.what-we-do-img-item-pioneer {
	position: absolute;
	bottom: 30px;
	right: 30px;
	max-width: 360px;
}

.what-we-do-img-item-pioneer .swiper-slide figure {
	display: block;
	width: 100px;
	height: 100px;
}

.what-we-do-img-item-pioneer .swiper-slide img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 10px;
}

.what-we-do-img-item-pioneer .swiper-slide {
	cursor: none;
}

.what-we-do-item-list-pioneer {
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
}

.what-we-do-item-pioneer {
	width: calc(50% - 15px);
	background: var(--dark-divider-color);
	backdrop-filter: blur(30px);
	-webkit-backdrop-filter: blur(30px);
	border-radius: 10px;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 20px;
	padding: 30px;
}

.what-we-do-item-pioneer .icon-box {
	position: relative;
	width: 50px;
	height: 50px;
	background: var(--accent-color);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
}

.what-we-do-item-pioneer .icon-box::before {
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	right: 0;
	left: 0;
	background: var(--white-color);
	border-radius: 50%;
	width: 100%;
	height: 100%;
	transform: scale(0);
	transition: all 0.4s ease-in-out;
	z-index: 0;
}

.what-we-do-item-pioneer:hover .icon-box::before {
	transform: scale(1);
}

.what-we-do-item-pioneer .icon-box img {
	position: relative;
	width: 100%;
	max-width: 24px;
	transition: all 0.4s ease-in-out;
	z-index: 1;
}

.what-we-do-item-pioneer:hover .icon-box img {
	filter: brightness(0) invert(0);
}

.what-we-do-item-content-pioneer {
	width: calc(100% - 70px);
}

.what-we-do-item-content-pioneer h3 {
	font-size: 20px;
	color: var(--white-color);
	line-height: 1.4em;
}

.what-we-do-skills-list-pioneer {
	margin-top: 40px;
}

.what-we-do-skills-list-pioneer .skills-progress-bar .skill-data .skill-title,
.what-we-do-skills-list-pioneer .skills-progress-bar .skill-data .skill-no {
	color: var(--white-color);
}

.what-we-do-skills-list-pioneer .skills-progress-bar .skillbar .skill-progress {
	background: var(--dark-divider-color);
}

.what-we-do-footer-pioneer {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 15px 30px;
	margin-top: 40px;
}

.what-we-do-btn-list-pioneer ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

.what-we-do-btn-list-pioneer ul li {
	position: relative;
	color: var(--white-color);
	line-height: 1.5em;
	padding-left: 25px;
}

.what-we-do-btn-list-pioneer ul li::before {
	content: '\f058';
	position: absolute;
	font-family: 'Font Awesome 7 Free';
	font-size: 18px;
	font-weight: 900;
	color: var(--accent-color);
	top: 0;
	left: 0;
}

.our-pricing-plans-pioneer {
	padding: 100px 0;
}

.pricing-item-pioneer {
	position: relative;
	background: var(--secondary-color);
	border-radius: 10px;
	height: calc(100% - 30px);
	padding: 30px;
	margin-bottom: 30px;
	overflow: hidden;
}

.pricing-item-header-pioneer {
	border-bottom: 1px solid var(--divider-color);
	padding-bottom: 40px;
	margin-bottom: 40px;
}

.pricing-item-tag-pioneer {
	background: var(--white-color);
	border-radius: 100px;
	padding: 10px 15px;
	display: inline-block;
	margin-bottom: 30px;
}

.pricing-item-tag-pioneer h3 {
	font-size: 14px;
	text-transform: uppercase;
}

.pricing-item-price-box-pioneer {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 20px;
}

.pricing-item-price-box-pioneer .icon-box {
	position: relative;
	background: var(--accent-color);
	border-radius: 50%;
	width: 50px;
	height: 50px;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
}

.pricing-item-price-box-pioneer .icon-box::before {
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	right: 0;
	left: 0;
	background: var(--primary-color);
	border-radius: 50%;
	width: 100%;
	height: 100%;
	transform: scale(0);
	transition: all 0.4s ease-in-out;
	z-index: 0;
}

.pricing-item-pioneer:hover .pricing-item-price-box-pioneer .icon-box::before {
	transform: scale(1);
}

.pricing-item-price-box-pioneer .icon-box img {
	position: relative;
	width: 100%;
	max-width: 24px;
	z-index: 1;
}

.pricing-item-price-pioneer {
	width: calc(100% - 70px);
}

.pricing-item-price-pioneer h2 {
	font-size: 48px;
	line-height: 1.1em;
	font-weight: 700;
}

.pricing-item-price-pioneer h2 sub {
	font-size: 16px;
	color: var(--text-color);
	font-weight: 400;
	bottom: 0;
}

.pricing-item-content-pioneer {
	margin: 10px 0 0;
}

.pricing-item-content-pioneer p {
	margin: 0;
}

.pricing-item-list-pioneer ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

.pricing-item-list-pioneer ul li {
	position: relative;
	line-height: 1.5em;
	padding-left: 25px;
	margin-bottom: 20px;
}

.pricing-item-list-pioneer ul li:last-child {
	margin-bottom: 0;
}

.pricing-item-list-pioneer ul li::before {
	content: '\f058';
	position: absolute;
	font-family: 'Font Awesome 7 Free';
	font-size: 18px;
	font-weight: 900;
	color: var(--accent-color);
	left: 0px;
}

.pricing-item-btn-pioneer {
	margin-top: 40px;
}

.pricing-item-btn-pioneer .btn-default {
	display: block;
	text-align: center;
	padding: 17px;
}

.pricing-item-btn-pioneer .btn-default::before {
	display: none;
}

.pricing-item-pioneer.highlighted-box::after {
	content: 'most popular';
	position: absolute;
	font-size: 18px;
	font-weight: 600;
	text-transform: capitalize;
	color: var(--white-color);
	top: 30px;
	right: -50px;
	width: 196px;
	height: 40px;
	display: flex;
	justify-content: center;
	align-items: center;
	background: var(--accent-color);
	transform: rotate(45deg);
	transition: all 0.4s ease-in-out;
}

.pricing-benefit-list-pioneer {
	margin-top: 30px;
}

.pricing-benefit-list-pioneer ul {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 20px 40px;
}

.pricing-benefit-list-pioneer ul li {
	align-items: center;
	display: inline-flex;
}

.pricing-benefit-list-pioneer ul li img {
	margin-right: 15px;
	max-width: 20px;
}

.how-it-work-pioneer {
	padding: 100px 0;
}

.how-work-steps-pioneer {
	display: flex;
	flex-wrap: wrap;
	gap: 40px 30px;
}

.how-work-step-item-pioneer {
	width: calc(25% - 22.5px);
	text-align: center;
}

.how-work-step-item-no-pioneer {
	margin-bottom: 30px;
}

.how-work-step-item-no-pioneer h3 {
	display: inline-block;
	font-size: 14px;
	text-transform: uppercase;
	line-height: normal;
	color: var(--white-color);
	border-radius: 100px;
	background-color: var(--dark-divider-color);
	backdrop-filter: blur(30px);
	-webkit-backdrop-filter: blur(30px);
	padding: 6px 18px;
	transition: all 0.4s ease-in-out;
}

.how-work-step-item-pioneer:hover .how-work-step-item-no-pioneer h3 {
	background: var(--accent-color);
}

.how-work-step-item-pioneer .icon-box {
	position: relative;
	width: 50px;
	height: 50px;
	background: var(--accent-color);
	border-radius: 100px;
	display: inline-flex;
	justify-content: center;
	align-items: center;
	margin-bottom: 30px;
}

.how-work-step-item-pioneer .icon-box::before {
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	right: 0;
	left: 0;
	background: var(--white-color);
	border-radius: 50%;
	width: 100%;
	height: 100%;
	transform: scale(0);
	transition: all 0.4s ease-in-out;
	z-index: 0;
}

.how-work-step-item-pioneer:hover .icon-box::before {
	transform: scale(1);
}

.how-work-step-item-pioneer .icon-box img {
	position: relative;
	width: 100%;
	max-width: 24px;
	transition: all 0.4s ease-in-out;
	z-index: 1;
}

.how-work-step-item-pioneer:hover .icon-box img {
	filter: brightness(0) invert(0);
}

.how-work-step-item-content-pioneer h3 {
	font-size: 20px;
	font-weight: 700;
	color: var(--white-color);
}

.how-work-step-item-content-pioneer p {
	color: var(--white-color);
	margin: 10px 0 0;
}

.how-it-work-pioneer .section-footer-text {
	margin-top: 80px;
}

.our-faqs-pioneer {
	padding: 100px 0;
}

.our-faqs-content-pioneer {
	position: sticky;
	top: 30px;
	margin-right: 15px;
}

.faq-accordion-pioneer .accordion-item-pioneer {
	background: var(--secondary-color);
	border-radius: 10px;
	margin-bottom: 30px;
	overflow: hidden;
}

.faq-accordion-pioneer .accordion-item-pioneer:last-child {
	margin-bottom: 0;
}

.faq-accordion-pioneer .accordion-header .accordion-button {
	font-size: 20px;
	font-weight: 600;
	line-height: 1.4em;
	background-color: transparent;
	color: var(--primary-color);
	padding: 20px 55px 20px 30px;
	transition: all 0.3s ease-in-out;
}

.faq-accordion-pioneer .accordion-item-pioneer .accordion-button::after,
.faq-accordion-pioneer .accordion-item-pioneer .accordion-button.collapsed::after {
	content: '\2b';
	font-family: 'FontAwesome';
	position: absolute;
	right: 30px;
	top: 50%;
	font-size: 20px;
	transform: translateY(-50%);
	color: var(--accent-color);
	transition: all 0.3s ease-in-out;
}

.faq-accordion-pioneer .accordion-item-pioneer .accordion-button:not(.collapsed)::after {
	content: '\f068';
	color: var(--primary-color);
}

.faq-accordion-pioneer .accordion-item-pioneer .accordion-body {
	background-color: transparent;
	border-top: 1px solid var(--divider-color);
	padding: 20px 30px;
}

.faq-accordion-pioneer .accordion-item-pioneer .accordion-body p {
	margin: 0;
}

.our-testimonials-pioneer {
	padding: 100px 0;
}

.testimonial-slider-pioneer .swiper-wrapper {
	cursor: none;
}

.testimonial-item-pioneer {
	background-color: var(--dark-divider-color);
	backdrop-filter: blur(30px);
	-webkit-backdrop-filter: blur(30px);
	border-radius: 10px;
	text-align: center;
	padding: 30px;
}

.testimonial-author-image-pioneer figure {
	display: inline-block;
	border-radius: 50%;
}

.testimonial-author-image-pioneer figure img {
	width: 100%;
	max-width: 80px;
	object-fit: cover;
	border-radius: 50%;
}

.testimonial-author-content-pioneer {
	margin-top: 20px;
}

.testimonial-author-content-pioneer h3 {
	font-size: 20px;
	color: var(--white-color);
}

.testimonial-author-content-pioneer p {
	color: var(--white-color);
	margin: 5px 0 0;
}

.testimonial-item-body-pioneer {
	border-top: 1px solid var(--dark-divider-color);
	margin-top: 30px;
	padding-top: 30px;
}

.testimonial-item-rating-pioneer i {
	font-size: 20px;
	color: var(--accent-color);
}

.testimonial-item-rating-pioneer i:last-child {
	margin-right: 0;
}

.testimonial-item-content-pioneer {
	margin-top: 30px;
}

.testimonial-item-content-pioneer p {
	color: var(--white-color);
	margin: 0;
}

.our-testimonials-pioneer .section-footer-text {
	margin-top: 60px;
}

.main-footer-pioneer {
	padding: 100px 0 0;
	margin-bottom: 20px;
}

.footer-header-pioneer {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	border-bottom: 1px solid var(--dark-divider-color);
	margin-bottom: 60px;
	padding-bottom: 60px;
	gap: 15px;
}

.footer-contact-item-pioneer {
	max-width: 240px;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 15px;
}

.footer-contact-item-pioneer .icon-box {
	width: 40px;
	height: 40px;
	background: var(--dark-divider-color);
	backdrop-filter: blur(30px);
	-webkit-backdrop-filter: blur(30px);
	border-radius: 100px;
	display: flex;
	justify-content: center;
	align-items: center;
}

.footer-contact-item-pioneer .icon-box img {
	width: 100%;
	max-width: 20px;
}

.footer-contact-item-content-pioneer {
	width: calc(100% - 55px);
}

.footer-contact-item-content-pioneer p {
	color: var(--white-color);
	margin: 0;
}

.footer-contact-item-content-pioneer p a {
	color: inherit;
	transition: all 0.3s ease-in-out;
}

.footer-contact-item-content-pioneer p a:hover {
	color: var(--accent-color);
}

.footer-logo-pioneer img {
	width: 100%;
	max-width: 166px;
}

.about-footer-content-pioneer h3 {
	font-size: 20px;
	color: var(--white-color);
}

.about-footer-content-pioneer p {
	color: var(--white-color);
	margin: 30px 0 0;
}

.footer-social-links-pioneer {
	margin-top: 40px;
}

.footer-social-links-pioneer ul {
	display: flex;
	flex-wrap: wrap;
	gap: 15px;
	padding: 0;
	margin: 0;
	list-style: none;
}

.footer-social-links-pioneer ul li a {
	width: 36px;
	height: 36px;
	border: 1px solid var(--white-color);
	color: var(--white-color);
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	transition: all 0.3s ease-in-out;
}

.footer-social-links-pioneer ul li a:hover {
	color: var(--accent-color);
	border-color: var(--accent-color);
}

.footer-social-links-pioneer ul li a i {
	font-size: 18px;
	color: inherit;
	transition: all 0.3s ease-in-out;
}

.footer-links-box-pioneer {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 30px;
	margin-left: 5.208vw;
}

.footer-links-pioneer {
	max-width: 32%;
}

.footer-links-pioneer h3 {
	font-size: 20px;
	color: var(--white-color);
	margin-bottom: 30px;
}

.footer-links-pioneer p {
	margin-bottom: 30px;
	color: var(--white-color);
}

.footer-links-pioneer ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

.footer-links-pioneer ul li {
	position: relative;
	text-transform: capitalize;
	color: var(--white-color);
	line-height: 1.5em;
	margin-bottom: 15px;
}

.footer-links-pioneer ul li:last-child {
	margin-bottom: 0;
}

.footer-links-pioneer ul li a {
	color: inherit;
	transition: all 0.3s ease-in-out;
}

.footer-links-pioneer ul li a:hover {
	color: var(--accent-color);
}

.footer-newsletter-form-pioneer {
	max-width: 40%;
}

.footer-newsletter-form-pioneer .form-group {
	display: flex;
	background: var(--dark-divider-color);
	backdrop-filter: blur(30px);
	-webkit-backdrop-filter: blur(30px);
	border-radius: 30px;
	padding: 10px;
}

.footer-newsletter-form-pioneer .form-group .form-control {
	width: calc(100% - 40px);
	font-size: 16px;
	font-weight: 400;
	line-height: 1.4em;
	color: var(--white-color);
	background: transparent;
	border: none;
	border-radius: 0;
	outline: none;
	box-shadow: none;
	padding: 5px 20px 5px 10px;
}

.footer-newsletter-form-pioneer .form-group .form-control::placeholder {
	color: var(--white-color);
}

.footer-newsletter-form-pioneer .form-group .newsletter-btn {
	width: 40px;
	height: 40px;
	background: var(--accent-color);
	display: flex;
	justify-content: center;
	align-items: center;
	border-radius: 40px;
	border: none;
	box-shadow: none;
	outline: none;
	transition: all 0.3s ease-in-out;
}

.footer-newsletter-form-pioneer .form-group .newsletter-btn:hover {
	background: var(--white-color);
}

.footer-newsletter-form-pioneer .form-group .newsletter-btn img {
	width: 100%;
	max-width: 12px;
	transition: all 0.3s ease-in-out;
}

.footer-newsletter-form-pioneer .form-group .newsletter-btn:hover img {
	transform: rotate(45deg);
	filter: brightness(0) invert(0);
}

.footer-newsletter-form-pioneer .policy-checkbox {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-top: 25px;
}

.footer-newsletter-form-pioneer .policy-checkbox .form-label {
	color: var(--white-color);
	margin: 0;
	line-height: normal;
}

.footer-newsletter-form-pioneer .policy-checkbox .form-label a {
	color: var(--accent-color);
	text-decoration: underline;
	text-underline-offset: 5px;
	transition: all 0.3s ease-in-out;
}

.footer-newsletter-form-pioneer .policy-checkbox .form-label a:hover {
	color: var(--white-color);
}

.footer-copyright-pioneer {
	border-top: 1px solid var(--dark-divider-color);
	margin-top: 60px;
	padding: 60px 0;
}

.footer-copyright-box-pioneer {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
}

.footer-copyright-text-pioneer p {
	color: var(--white-color);
	margin: 0;
}

.footer-privacy-policy-pioneer ul {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 10px 40px;
	list-style: none;
	padding: 0;
	margin: 0;
}

.footer-privacy-policy-pioneer ul li {
	position: relative;
	line-height: normal;
	color: var(--white-color);
}

.footer-privacy-policy-pioneer ul li::before {
	content: '';
	position: absolute;
	top: 50%;
	right: -23px;
	background: var(--accent-color);
	border-radius: 100px;
	transform: translateY(-50%);
	width: 6px;
	height: 6px;
}

.footer-privacy-policy-pioneer ul li:last-child:before {
	display: none;
}

.footer-privacy-policy-pioneer ul li a {
	color: inherit;
	transition: all 0.3s ease-in-out;
}

.footer-privacy-policy-pioneer ul li a:hover {
	color: var(--accent-color);
}

@media only screen and (max-width: 1440px) {

	.about-us-info-box-pioneer {
		max-width: 290px;
	}

	.about-us-item-pioneer {
		padding: 30px 30px 30px 0;
	}

	.program-item-pioneer {
		padding: 30px 20px;
	}

	.program-item-info-pioneer {
		margin-bottom: 30px;
	}

	.program-item-btn-pioneer {
		margin-top: 30px;
	}

	.why-choose-review-box-pioneer,
	.why-choose-client-box-pioneer {
		padding: 20px;
	}

	.why-choose-info-item-box-pioneer {
		left: 20px;
		bottom: 20px;
		right: 20px;
		max-width: 400px;
	}

	.why-choose-info-item-content-pioneer {
		width: 100%;
	}

	.why-choose-award-item-list-pioneer {
		padding: 20px;
	}

	.why-choose-info-item-content-pioneer p {
		margin-top: 10px;
	}

	.why-choose-btn-pioneer {
		margin-top: 20px;
	}

	.why-choose-record-box-pioneer {
		padding: 20px;
	}

	.what-we-do-item-pioneer {
		gap: 10px;
		padding: 20px;
	}

	.what-we-do-item-content-pioneer {
		width: calc(100% - 60px);
	}

	.pricing-item-header-pioneer {
		padding-bottom: 30px;
		margin-bottom: 30px;
	}

	.testimonial-item-pioneer {
		padding: 20px;
	}

	.testimonial-item-body-pioneer {
		margin-top: 20px;
		padding-top: 20px;
	}

	.testimonial-item-content-pioneer {
		margin-top: 20px;
	}

	.footer-links-box-pioneer {
		margin-left: 30px;
	}
}

@media only screen and (max-width: 1024px) {

	.hero-content-pioneer {
		height: auto;
		margin-bottom: 30px;
	}

	.hero-image-pioneer {
		height: auto;
		max-width: 600px;
		margin: 0 auto;
	}

	.about-us-image-box-pioneer {
		max-width: 700px;
		margin: 0 auto 30px;
	}

	.about-us-image-box-pioneer,
	.about-us-image-pioneer,
	.about-us-image-pioneer figure {
		height: auto;
	}

	.about-us-image-pioneer figure img {
		aspect-ratio: 1 / 1.22;
	}

	.about-us-image-box-1-pioneer figure img,
	.about-us-image-box-2-pioneer figure img {
		max-width: 230px;
	}

	.why-choose-review-header-pioneer h2,
	.why-choose-client-counter-pioneer h2 {
		font-size: 38px;
	}

	.why-choose-client-body-pioneer,
	.why-choose-client-footer-pioneer {
		margin-top: 15px;
	}

	.why-choose-image-pioneer figure {
		max-width: 500px;
		margin: 0 auto;
	}

	.why-choose-footer-list-pioneer ul {
		gap: 10px;
	}

	.why-choose-footer-list-pioneer ul li {
		padding: 5px 12px 5px 24px;
	}

	.why-choose-footer-list-pioneer ul li::before {
		left: 12px;
	}

	.what-we-do-image-slider-pioneer {
		margin: 0 0 30px 0;
	}

	.what-we-do-img-pioneer .swiper-slide img {
		aspect-ratio: 1 / 0.7;
	}

	.pricing-item-tag-pioneer {
		margin-bottom: 20px;
	}

	.pricing-item-btn-pioneer {
		margin-top: 30px;
	}

	.how-work-step-item-pioneer {
		width: calc(50% - 15px);
	}

	.how-work-step-item-no-pioneer,
	.how-work-step-item-pioneer .icon-box {
		margin-bottom: 20px;
	}

	.how-it-work-pioneer .section-footer-text {
		margin-top: 40px;
	}

	.our-faqs-content-pioneer {
		position: initial;
		margin: 0 0 40px;
	}

	.about-footer-pioneer {
		margin-bottom: 30px;
	}

	.about-footer-content-pioneer p {
		margin-top: 15px;
	}

	.footer-social-links-pioneer {
		margin-top: 20px;
	}

	.footer-links-box-pioneer {
		margin-left: 0;
	}

	.footer-links-pioneer p {
		margin-bottom: 20px;
	}
}

@media only screen and (max-width: 991px) {

	.hero-pioneer {
		padding: 140px 0 0;
		margin-top: 0;
	}

	.hero-info-item-list-pioneer {
		margin-top: 30px;
	}

	.hero-info-item-body-pioneer ul li::before {
		font-size: 16px;
	}

	.hero-footer-list-pioneer {
		margin-top: 30px;
	}

	.hero-image-pioneer figure img {
		margin-bottom: 0px;
	}

	.about-us-pioneer {
		padding: 50px 0;
	}

	.about-us-info-content-pioneer h3 {
		font-size: 18px;
	}

	.about-us-item-pioneer {
		padding: 20px 20px 20px 0;
	}

	.about-us-counter-pioneer {
		padding: 20px;
	}

	.about-us-counter-pioneer h2 {
		font-size: 58px;
	}

	.about-us-footer-pioneer {
		margin-top: 30px;
	}

	.about-rating-content-pioneer .about-rating-star i {
		font-size: 18px;
	}

	.our-program-pioneer {
		padding: 50px 0;
	}

	.program-item-info-pioneer {
		margin-bottom: 20px;
	}

	.program-item-body-pioneer {
		padding-top: 20px;
	}

	.program-item-btn-pioneer {
		margin-top: 20px;
	}

	.why-choose-us-pioneer {
		padding: 50px 0;
	}

	.why-choose-review-body-pioneer,
	.why-choose-review-footer-pioneer {
		margin-top: 20px;
		padding-top: 20px;
	}

	.why-choose-footer-pioneer {
		margin-top: 10px;
	}

	.why-choose-footer-pioneer .section-footer-text {
		margin-top: 20px;
	}

	.what-we-do-pioneer {
		padding: 50px 0;
	}

	.what-we-do-skills-list-pioneer,
	.what-we-do-footer-pioneer {
		margin-top: 30px;
	}

	.what-we-do-btn-list-pioneer ul li::before {
		font-size: 16px;
	}

	.our-pricing-plans-pioneer {
		padding: 50px 0;
	}

	.pricing-item-pioneer {
		padding: 20px;
	}

	.pricing-item-price-pioneer h2 {
		font-size: 38px;
	}

	.pricing-item-list-pioneer ul li {
		margin-bottom: 10px;
	}

	.pricing-item-list-pioneer ul li::before {
		font-size: 16px;
	}

	.pricing-item-btn-pioneer .btn-default {
		padding: 15px;
	}

	.pricing-item-pioneer.highlighted-box::after {
		font-size: 16px;
		top: 28px;
		right: -52px;
		height: 34px;
	}

	.pricing-benefit-list-pioneer {
		margin-top: 5px;
	}

	.pricing-benefit-list-pioneer ul {
		gap: 15px 30px;
	}

	.pricing-benefit-list-pioneer ul li img {
		max-width: 18px;
		margin-right: 10px;
	}

	.how-it-work-pioneer {
		padding: 50px 0;
	}

	.our-faqs-pioneer {
		padding: 50px 0;
	}

	.our-faqs-content-pioneer {
		margin-bottom: 30px;
	}

	.faqs-image-title h2 {
		font-size: 38px;
		writing-mode: vertical-lr;
	}

	.faq-accordion-pioneer .accordion-item-pioneer {
		margin-bottom: 20px;
	}

	.faq-accordion-pioneer .accordion-header .accordion-button {
		font-size: 18px;
		padding: 15px 45px 15px 20px;
	}

	.faq-accordion-pioneer .accordion-item-pioneer .accordion-button::after,
	.faq-accordion-pioneer .accordion-item-pioneer .accordion-button.collapsed::after {
		font-size: 18px;
		right: 20px;
	}

	.faq-accordion-pioneer .accordion-item-pioneer .accordion-body {
		padding: 15px 20px;
	}

	.our-testimonials-pioneer {
		padding: 50px 0;
	}

	.testimonial-item-rating-pioneer i {
		font-size: 18px;
	}

	.our-testimonials-pioneer .section-footer-text {
		margin-top: 40px;
	}

	.main-footer-pioneer {
		padding: 50px 0 0;
		margin-bottom: 0;
	}

	.footer-header-pioneer {
		margin-bottom: 30px;
		padding-bottom: 30px;
	}

	.footer-links-pioneer h3 {
		margin-bottom: 20px;
	}

	.footer-links-pioneer ul li {
		margin-bottom: 10px;
	}

	.footer-newsletter-form-pioneer .form-group {
		padding: 6px;
	}

	.footer-newsletter-form-pioneer .form-group .form-control {
		width: calc(100% - 34px);
		font-size: 14px;
	}

	.footer-newsletter-form-pioneer .form-group .newsletter-btn {
		width: 34px;
		height: 34px;
	}

	.footer-newsletter-form-pioneer .form-group .newsletter-btn img {
		max-width: 10px;
	}

	.footer-newsletter-form-pioneer .policy-checkbox {
		margin-top: 10px;
	}

	.footer-newsletter-form-pioneer .policy-checkbox .form-label {
		font-size: 14px;
	}

	.footer-copyright-pioneer {
		margin-top: 30px;
		padding: 30px 0 30px;
	}


}

@media only screen and (max-width: 767px) {

	.hero-info-item-pioneer {
		width: 100%;
	}

	.hero-info-item-title-pioneer h3 {
		font-size: 18px;
	}

	.hero-footer-list-pioneer ul {
		gap: 12px;
	}

	.hero-footer-list-pioneer ul li {
		padding: 6px 14px;
	}

	.about-us-info-box-pioneer {
		gap: 10px;
		padding: 12px;
		max-width: 220px;
	}

	.about-us-info-box-pioneer .icon-box {
		width: 40px;
		height: 40px;
	}

	.about-us-info-box-pioneer .icon-box img {
		max-width: 20px;
	}

	.about-us-info-content-pioneer {
		width: calc(100% - 50px);
	}

	.about-us-info-content-pioneer h3 {
		font-size: 16px;
	}

	.about-us-image-box-2-pioneer {
		bottom: 110px;
	}

	.about-us-image-box-1-pioneer figure img,
	.about-us-image-box-2-pioneer figure img {
		max-width: 130px;
	}

	.about-us-item-list-pioneer {
		width: 100%;
		border-right: none;
		border-bottom: 1px solid var(--divider-color);
	}

	.about-us-item-pioneer {
		padding: 20px 0;
	}

	.about-us-item-content-pioneer h3 {
		font-size: 18px;
	}

	.about-us-item-content-pioneer p {
		margin: 5px 0 0;
	}

	.about-us-counter-pioneer {
		width: 100%;
		padding: 20px 0;
	}

	.about-us-counter-pioneer h2 {
		font-size: 36px;
	}

	.about-us-footer-pioneer {
		gap: 20px;
	}

	.about-rating-content-pioneer .about-rating-star i {
		font-size: 16px;
	}

	.program-item-pioneer {
		padding: 20px;
	}

	.program-item-title-pioneer h2 {
		font-size: 18px;
	}

	.why-choose-review-header-pioneer h2,
	.why-choose-client-counter-pioneer h2 {
		font-size: 26px;
	}

	.why-choose-review-item-title-pioneer h3,
	.why-choose-info-item-content-pioneer h3 {
		font-size: 18px;
	}

	.why-choose-item-box-pioneer {
		padding: 20px 20px 0;
		gap: 20px;
	}

	.why-choose-image-pioneer,
	.why-choose-award-item-list-pioneer {
		width: 100%;
	}

	.why-choose-award-item-list-pioneer {
		order: 2;
		display: flex;
		flex-wrap: wrap;
		gap: 20px;
		padding: 0;
	}

	.why-choose-award-item-pioneer {
		width: calc(50% - 10px);
		margin: 0;
	}

	.why-choose-image-pioneer {
		order: 3;
	}

	.why-choose-info-item-box-pioneer {
		position: initial;
		order: 1;
	}

	.why-choose-record-box-pioneer {
		min-height: 250px;
	}

	.why-choose-record-list-pioneer ul {
		gap: 15px;
	}

	.why-choose-record-list-pioneer ul li {
		padding: 8px 14px;
	}

	.why-choose-footer-list-pioneer ul li {
		font-size: 14px;
	}

	.what-we-do-img-pioneer .swiper-slide img {
		aspect-ratio: 1 / 0.9;
	}

	.what-we-do-img-item-pioneer {
		bottom: 15px;
		right: 15px;
		max-width: 280px;
	}

	.what-we-do-img-item-pioneer .swiper-slide figure {
		width: 80px;
		height: 80px;
	}

	.what-we-do-item-list-pioneer {
		gap: 20px;
	}

	.what-we-do-item-pioneer {
		width: 100%;
		padding: 15px;
	}

	.what-we-do-item-content-pioneer h3 {
		font-size: 18px;
	}

	.pricing-item-header-pioneer {
		margin-bottom: 20px;
		padding-bottom: 20px;
	}

	.pricing-item-price-box-pioneer {
		gap: 15px;
	}

	.pricing-item-price-pioneer {
		width: calc(100% - 65px);
	}

	.pricing-item-price-pioneer h2 {
		font-size: 28px;
	}

	.pricing-item-price-pioneer h2 sub {
		font-size: 14px;
	}

	.pricing-item-pioneer.highlighted-box::after {
		font-size: 14px;
		height: 30px;
		top: 26px;
		right: -58px;
	}

	.pricing-benefit-list-pioneer ul {
		gap: 10px;
	}

	.pricing-benefit-list-pioneer ul li {
		font-size: 14px;
	}

	.pricing-benefit-list-pioneer ul li img {
		max-width: 14px;
		margin-right: 5px;
	}

	.how-work-step-item-pioneer {
		width: 100%
	}

	.how-work-step-item-content-pioneer h3 {
		font-size: 18px;
	}

	.faq-accordion-pioneer .accordion-header .accordion-button {
		padding: 12px 32px 12px 12px;
	}

	.faq-accordion-pioneer .accordion-item-pioneer .accordion-button::after,
	.faq-accordion-pioneer .accordion-item-pioneer .accordion-button.collapsed::after {
		font-size: 16px;
		right: 12px;
	}

	.faq-accordion-pioneer .accordion-item-pioneer .accordion-body {
		padding: 12px;
	}

	.testimonial-author-image-pioneer figure {
		max-width: 70px;
	}

	.testimonial-author-content-pioneer h3 {
		font-size: 18px;
	}

	.testimonial-item-content-pioneer {
		margin-top: 10px;
	}

	.footer-header-pioneer {
		margin-bottom: 20px;
		padding-bottom: 20px;
	}

	.footer-logo-pioneer {
		width: 100%;
	}

	.footer-contact-item-pioneer {
		max-width: 100%;
	}

	.about-footer-content-pioneer h3 {
		font-size: 18px;
	}

	.footer-links-pioneer {
		max-width: 100%;
	}

	.footer-links-pioneer h3 {
		font-size: 18px;
		margin-bottom: 15px;
	}

	.footer-links-pioneer p {
		margin-bottom: 15px;
	}

	.footer-copyright-pioneer {
		padding: 15px 0;
	}

	.footer-copyright-box-pioneer {
		flex-direction: column-reverse;
	}

	.footer-copyright-text-pioneer,
	.footer-privacy-policy-pioneer {
		width: 100%;
		text-align: center;
	}

	.footer-privacy-policy-pioneer ul {
		justify-content: center;
		gap: 10px 30px;
	}

	.footer-privacy-policy-pioneer ul li::before {
		right: -18px;
	}
}