:root {
	--primary-color: #5777f3;
	--secondary-color: #ededfd;
	--accent-secondary-color: #CE9E6E33;
	--bg-color: #FFFDFA;
	--text-color: #3e3e48;
	--accent-color: #eeac80;
	--white-color: #fff;
	--divider-color: #26505E1A;
	--dark-divider-color: #FFFFFF1A;
	--error-color: rgb(230, 87, 87);
	--default-font: "Montserrat", sans-serif;
}

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

body {
	position: relative;
	font-family: var(--default-font);
	font-size: 16px;
	line-height: 1em;
	color: var(--text-color);
	background: var(--white-color);
}

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

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

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

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

p {
	line-height: 1.6em;
	margin-bottom: 1.5em;
}

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

figure {
	margin: 0;
}

img {
	max-width: 100%;
}

a {
	text-decoration: none;
}

a:hover {
	text-decoration: none;
	outline: 0;
}

a:focus {
	text-decoration: none;
	outline: 0;
}


.mt-80 {
	margin-top: 80px !important;
}

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

.container {
	max-width: 1300px;
}

.container,
.container-fluid,
.container-lg,
.container-md,
.container-sm,
.container-xl,
.container-xxl {
	padding-right: 15px;
	padding-left: 15px;
}

.image-anime {
	position: relative;
	overflow: hidden;
}

.image-anime:after {
	content: "";
	position: absolute;
	width: 200%;
	height: 0%;
	left: 50%;
	top: 50%;
	background-color: rgba(255, 255, 255, .3);
	transform: translate(-50%, -50%) rotate(-45deg);
	z-index: 1;
}

.image-anime:hover:after {
	height: 250%;
	transition: all 600ms linear;
	background-color: transparent;
}

.reveal {
	position: relative;
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	visibility: hidden;
	overflow: hidden;
}

.reveal img {
	height: 100%;
	width: 100%;
	-o-object-fit: cover;
	object-fit: cover;
	-webkit-transform-origin: left;
	transform-origin: left;
}

.row {
	margin-right: -15px;
	margin-left: -15px;
}

.row>* {
	padding-right: 15px;
	padding-left: 15px;
}

.row.no-gutters {
	margin-right: 0px;
	margin-left: 0px;
}

.row.no-gutters>* {
	padding-right: 0px;
	padding-left: 0px;
}

.btn-default {
	position: relative;
	display: inline-block;
	font-size: 16px;
	font-weight: 500;
	line-height: 1em;
	background: var(--primary-color);
	color: var(--white-color);
	border: none;
	border-radius: 10px;
	padding: 15px 20px;
	overflow: hidden;
	transition: all 0.5s ease-in-out;
	z-index: 1;
}

/* .btn-default::before{
	content: '';
	position: absolute;
    top: 50%;
    right: 5px;
    width: 40px;
    height: 40px;
	background-color: var(--accent-color);
    background-image: url('../images/arrow-white.svg');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 20px auto;
	border-radius: 50%;
    transform: translateY(-50%);
	transition: all 0.4s ease-in-out;
}

.btn-default:hover::before{
	background-color: var(--primary-color);
} */

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

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

.btn-default.btn-highlighted {
	background: var(--primary-color);
}

.btn-default.btn-highlighted:hover {
	background: transparent;
	color: var(--primary-color);
}

.btn-default.btn-highlighted::before {
	background-color: var(--accent-color);
}

.btn-default.btn-highlighted:hover::before {
	background-color: var(--accent-color);
}

.btn-default.btn-highlighted::after {
	background-color: var(--bg-color);
}

.btn-default.btn-dark:hover {
	background: transparent;
	color: var(--primary-color);
}

.btn-default.btn-dark::after {
	background-color: var(--secondary-color);
}

.readmore-btn {
	position: relative;
	font-size: 14px;
	font-weight: 600;
	line-height: normal;
	text-transform: capitalize;
	color: var(--accent-color);
	padding-right: 25px;
	transition: all 0.4s ease-in-out;
}

.readmore-btn:hover {
	color: var(--primary-color);
}

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

.readmore-btn:hover::before {
	transform: translate(3px, -50%);
	filter: brightness(0) invert(0);
}

.cb-cursor:before {
	background: var(--primary-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: 100px;
	position: relative;
	width: 100px;
	border-radius: 100%;
}

.loading-container {
	margin: 40px auto;
}

.loading {
	border: 1px solid transparent;
	border-color: transparent var(--accent-color) transparent var(--accent-color);
	animation: rotate-loading 1.5s linear 0s infinite normal;
	transform-origin: 50% 50%;
}

.loading-container:hover .loading,
.loading-container .loading {
	transition: all 0.5s ease-in-out;
}

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

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

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

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

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

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

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

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

.section-row .section-title.section-title-center {
	width: 100%;
	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;
	font-weight: 600;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--primary-color);
	padding-left: 15px;
	margin-bottom: 10px;
}

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

.section-title h1 {
	font-size: 55px;
	line-height: 1.2em;
	margin-bottom: 20px;
	/* cursor: none; */
}

.section-title h2 {
	font-size: 46px;
	line-height: 1.2em;
	margin-bottom: 10px;
	/* cursor: none; */
}

.section-title p {
	margin-top: 20px;
	margin-bottom: 0;
	color: #222222;
	margin: 0 5%;
	font-size: 22px;
}

.dark-section .section-title h3,
.dark-section .section-title h1,
.dark-section .section-title h2,
.dark-section .section-title p,
.dark-section .section-title-content 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 {
	position: relative;
	z-index: 100;
	border-bottom: 1px solid #DFE1E7;
	margin-bottom: 0px;
	margin-top: 110px;
}

header.main-header .header-sticky {
	/* position: relative;
	top: 0;
	background: transparent;
	width: 100%;
	z-index: 100; */

	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	background: #fff;
	max-width: 100%;
	z-index: 100;
	border-radius: 0;
	margin: 0;
	border: 1px solid #ddd;
}

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

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

.navbar {
	padding: 30px 0;
	align-items: center;
}

.navbar-brand {
	padding: 0;
	margin: 0;
}

.main-menu .nav-menu-wrapper {
	flex: 1;
	text-align: center;
	margin: 0 1.042vw;
}

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

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

.main-menu ul li a {
	font-size: 16px;
	font-weight: 600;
	line-height: 1.2em;
	padding: 14px !important;
	color: var(--text-color);
	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 .mega-popup a {
	padding: 0 !important;
}

.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: 12px;
	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: 8px 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(--text-color);
	background-color: transparent;
	padding: 8px 20px 8px 23px !important;
}

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

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

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

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

.navbar-toggle a.slicknav_btn.slicknav_open .slicknav_icon span.slicknav_icon-bar:nth-child(2) {
	opacity: 0;
}

.navbar-toggle a.slicknav_btn.slicknav_open .slicknav_icon span.slicknav_icon-bar:nth-child(3) {
	transform: rotate(45deg) translate(-5px, -5px);
	background-color: var(--white-color);
}

.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: 400;
	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-out;
}

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

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

.hero {
	position: relative;
	background-image: url('../img/main-banner.gif');
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
	min-height: 80vh;
	padding: 0;
	display: flex;
	align-items: center;
	overflow: hidden;
}

.hero-content {
	text-align: center;
}

.hero.hero-video .hero-bg-video {
	position: absolute;
	top: 0;
	right: 0;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
}

.hero.hero-video .hero-bg-video video {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.hero.hero-slider-layout {
	background: none;
	padding: 0;
}

.hero.hero-slider-layout .hero-slide {
	position: relative;
	min-height: 100vh;
	align-content: end;
	padding: 80px 0 80px;
}

.hero.hero-slider-layout .hero-slide::before {
	content: '';
	display: block;
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	background: linear-gradient(180deg, rgba(38, 80, 94, 0) 27%, rgba(38, 80, 94, 0.9) 92.8%);
	width: 100%;
	height: 100%;
	z-index: 1;
}

.hero.hero-slider-layout .hero-slide .hero-slider-image {
	position: absolute;
	top: 0;
	right: 0;
	left: 0;
	bottom: 0;
}

.hero.hero-slider-layout .hero-slide .hero-slider-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.hero.hero-slider-layout .hero-pagination {
	position: absolute;
	bottom: 30px;
	text-align: center;
	z-index: 2;
}

.hero.hero-slider-layout .hero-pagination .swiper-pagination-bullet {
	width: 12px;
	height: 12px;
	background: var(--dark-divider-color);
	opacity: 1;
	transition: all 0.3s ease-in-out;
	margin: 0 5px;
}

.hero.hero-slider-layout .hero-pagination .swiper-pagination-bullet-active {
	background-color: var(--accent-color);
}

.hero-section {
	width: 100%;
	max-width: 1600px;
	margin: 0 auto;
	/* padding-top:80px; */
}

.hero .container-fluid {
	position: relative;
	padding: 0;
	z-index: 2;
}

/* 
.hero-body{
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 40px;
} */

.satisfy-client-box {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	background-color: #fff;
	box-shadow: 3px 0px 8px #ddd;
	border-radius: 30px;
	padding: 5px 25px 5px 5px;
}

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

.satisfy-client-image {
	position: relative;
	display: inline-block;
	margin-left: -18px;
	z-index: 1;
}

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

.satisfy-client-image figure {
	display: block;
	width: 40px;
	height: 40px;
	border: 1px solid var(--white-color);
	border-radius: 50%;
}

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

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

.satisfy-client-image.add-more:hover {
	background: var(--primary-color);
}

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

.satisfy-client-content {
	width: 100%;
}

.satisfy-client-content p {
	color: #0D0D12;
	margin: 0;
}

.satisfy-client-content p span {
	font-weight: 700;
	color: var(--accent-color);
}

.recovery-circle {
	text-align: right;
}

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

.recovery-circle a img {
	max-width: 220px;
	border-radius: 50%;
	animation: infiniterotate 20s infinite linear;
}

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

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

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

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

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

.about-us-images {
	display: flex;
	flex-wrap: wrap;
	margin-right: 15px;
}

.about-img-1,
.about-img-2 {
	border-radius: 20px;
	overflow: hidden;
}

.about-img-1 {
	margin-left: 160px;
}

.about-img-1 figure,
.about-img-2 figure {
	display: block;
}

.about-img-1 figure img,
.about-img-2 figure img {
	width: 100%;
	object-fit: cover;
}

.about-img-1 figure img {
	aspect-ratio: 1 / 1.17;
}

.about-img-2 {
	position: relative;
	width: 100%;
	max-width: 312px;
	border: 5px solid var(--white-color);
	box-shadow: 0px 4px 14px 0px #0000000D;
	margin-top: -300px;
	z-index: 1;
}

.about-img-2 figure img {
	aspect-ratio: 1 / 1.245;
}

.working-hours-box {
	position: absolute;
	left: 20px;
	right: 20px;
	bottom: 20px;
	background: var(--dark-divider-color);
	border-radius: 20px;
	backdrop-filter: blur(20px);
	-webkit-backdrop-filter: blur(20px);
	padding: 15px;
	z-index: 1;
}

.working-hours-header {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 10px;
	border-bottom: 1px solid var(--dark-divider-color);
	padding-bottom: 15px;
	margin-bottom: 15px;
}

.working-hours-header h3 {
	font-size: 16px;
	color: var(--white-color);
}

.working-hours-header img {
	width: 100%;
	max-width: 16px;
}

.working-hours-body ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

.working-hours-body ul li {
	color: var(--white-color);
	line-height: 1.5em;
	margin-bottom: 10px;
}

.working-hours-body ul li:last-child {
	margin-bottom: 0;
}

.about-us-body {
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
}

.about-experience-box {
	width: 100%;
}

.about-experience-item {
	display: flex;
	align-items: start;
	margin-bottom: 40px;
}

.about-experience-item:last-child {
	margin-bottom: 0;
}

.about-experience-item .icon-box {
	position: relative;
	width: 60px;
	height: 60px;
	background: var(--secondary-color);
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	margin-right: 20px;
	overflow: hidden;
	color: #fff;
	font-size: 25px;
	font-weight: 600;
	z-index: 1;
}

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

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

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

.about-experience-item:hover .icon-box img {
	filter: brightness(0) invert(1);
}

.about-experience-content {
	width: calc(100% - 80px);
}

.about-experience-content h3 {
	font-size: 20px;
}

.trusted-profession-box {
	position: relative;
	width: calc(35% - 15px);
	background: var(--accent-color);
	border-radius: 20px;
	padding: 20px;
	overflow: hidden;
}

.trusted-profession-box::before {
	content: '';
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 0;
	background-color: var(--primary-color);
	border-radius: 100px 100px 0 0;
	transition: all 0.4s ease-in-out;
}

.trusted-profession-box:hover::before {
	height: 100%;
	border-radius: 0;
}

.trusted-profession-box .icon-box,
.trusted-profession-content {
	position: relative;
	z-index: 1;
}

.trusted-profession-box .icon-box {
	margin-bottom: 20px;
}

.trusted-profession-box .icon-box img {
	width: 100%;
	max-width: 40px;
}

.trusted-profession-content h3 {
	font-size: 16px;
	color: var(--white-color);
}

.about-us-btn {
	margin-top: 40px;
}

/************************************/
/*** 	 06. Our Services css	  ***/
/************************************/

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

.service-list {
	display: flex;
}

.service-item {
	position: relative;
	background-color: #fff;
	border-radius: 20px;
	padding: 20px 30px;
	overflow: hidden;
	box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
	height: 100%;
	transition: 0.3s all ease-in-out;
}

.service-item:hover {
	box-shadow: 0 0px 30px rgba(0, 0, 0, 0.1);
}

/* .service-item::before {
	content: '';
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 0;
	background-color: var(--primary-color);
	border-radius: 999px 999px 0 0;
	transition: all 0.4s ease-in-out;
}

.service-item.active::before,
.service-item:hover::before {
	height: 100%;
	border-radius: 0;
} */

.service-title,
.service-item .icon-box,
.service-content,
.service-btn {
	position: relative;
	z-index: 1;
}

.service-title,
.service-item .icon-box,
.service-content {
	margin-bottom: 40px;
}

.service-title h3 {
	font-size: 22px;
	transition: all 0.4s ease-in-out;
	font-weight: 700;
}

.service-title h3 a {
	color: inherit;
}

.service-item .icon-box {
	display: inline-block;
	padding: 0 10px 10px 0;
}

/* .service-item .icon-box::before {
	content: '';
	position: absolute;
	right: 0;
	bottom: 0;
	background: var(--accent-secondary-color);
	border-radius: 50%;
	height: 40px;
	width: 40px;
	transition: all 0.4s ease-in-out;
} */

/* .service-item.active .icon-box::before,
.service-item:hover .icon-box::before {
	background: var(--dark-divider-color);
} */

.service-item .icon-box img {
	width: 100%;
	/* max-width: 50px; */
	transition: all 0.4s ease-in-out;
}

/* .service-item.active .icon-box img,
.service-item:hover .icon-box img {
	filter: brightness(0) invert(1);
} */

.service-content p {
	margin-bottom: 0;
	transition: all 0.4s ease-in-out;
}

/* .service-item.active .service-title h3, */
.service-item:hover .service-title h3,
/* .service-item.active .service-content p, */
.service-item:hover .service-content p {
	color: var(--primary-color);
}

.service-item.active .service-btn .readmore-btn,
.service-item:hover .service-btn .readmore-btn {
	color: var(--white-color);
}

.service-item.active .service-btn .readmore-btn::before,
.service-item:hover .service-btn .readmore-btn::before {
	filter: brightness(0) invert(1);
}

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

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

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

.section-footer-text p span {
	display: inline-block;
	line-height: 1.1em;
	color: var(--white-color);
	background: var(--accent-color);
	border-radius: 30px;
	padding: 4px 12px;
	margin-right: 10px;
}

.section-footer-text p a {
	font-weight: 600;
	color: var(--accent-color);
	text-decoration: underline;
	transition: all 0.3s ease-in-out;
}

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

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

/************************************/
/*** 	 07. Why Choose Us css	  ***/
/************************************/

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

.why-choose-item-box {
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
	margin-top: 60px;
}

.why-choose-item {
	width: calc(50% - 15px);
}

.why-choose-item h3 {
	font-size: 20px;
	margin-bottom: 15px;
}

.why-choose-item p {
	margin-bottom: 0;
}

.why-choose-image-box {
	position: relative;
}

.why-choose-image {
	padding: 0 40px 0 60px;
}

.why-choose-image figure {
	display: block;
}

.why-choose-image img {
	width: 100%;
	aspect-ratio: 1 / 1.167;
	object-fit: cover;
	margin-bottom: -100px;
}

.why-choose-image-box .satisfy-client-box {
	position: absolute;
	left: 0;
	bottom: 18%;
	width: 100%;
	max-width: 260px;
	background: var(--bg-color);
	box-shadow: 0px 0px 10px 0px #201F241A;
	border-radius: 10px;
	padding: 20px;
	overflow: hidden;
	z-index: 1;
}

.why-choose-image-box .satisfy-client-box::before {
	content: '';
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 0;
	background-color: var(--primary-color);
	border-radius: 100px 100px 0 0;
	transition: all 0.4s ease-in-out;
}

.why-choose-image-box .satisfy-client-box:hover::before {
	height: 100%;
	border-radius: 0;
}

.why-choose-image-box .satisfy-client-box .satisfy-client-images,
.why-choose-image-box .satisfy-client-box .satisfy-client-content {
	position: relative;
	width: 100%;
	z-index: 1;
}

.why-choose-image-box .satisfy-client-box .satisfy-client-content p {
	font-weight: 600;
	color: var(--primary-color);
	transition: all 0.3s ease-in-out;
}

.why-choose-image-box .satisfy-client-box:hover .satisfy-client-content p {
	color: var(--white-color);
}

/************************************/
/*** 	 08. Our Feature css	  ***/
/************************************/

.our-feature {
	padding: 80px 0 50px;
}

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

.feature-item::before {
	content: '';
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 0;
	background-color: var(--accent-color);
	border-radius: 999px 999px 0 0;
	transition: all 0.4s ease-in-out;
}

.feature-item.active::before,
.feature-item:hover::before {
	height: 100%;
	border-radius: 0;
}

.feature-item .icon-box {
	position: absolute;
	top: -12px;
	right: -12px;
	z-index: 1;
}

.feature-item .icon-box img {
	width: 100%;
	max-width: 100px;
	transition: all 0.4s ease-in-out;
}

.feature-item.active .icon-box img,
.feature-item:hover .icon-box img {
	filter: brightness(0) invert(1);
}

.feature-item-header,
.feature-item-content,
.feature-counter-item {
	position: relative;
	z-index: 1;
}

.feature-item-header {
	border-bottom: 1px solid var(--divider-color);
	padding: 0 10px 20px 0;
	transition: all 0.4s ease-in-out;
	margin-bottom: 20px;
}

.feature-item.active .feature-item-header,
.feature-item:hover .feature-item-header {
	border-color: var(--dark-divider-color);
}

.feature-item-header h3 {
	font-size: 20px;
	transition: all 0.4s ease-in-out;
}

.feature-item-content p {
	transition: all 0.4s ease-in-out;
	margin-bottom: 0;
}

.feature-counter-item {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 15px;
	padding-bottom: 10px;
}

.feature-counter-content h2 {
	font-size: 40px;
	line-height: normal;
	transition: all 0.4s ease-in-out;
	margin-bottom: 5px;
}

.feature-counter-content h2 sup {
	top: -8px;
}

.feature-counter-content p {
	margin-bottom: 0;
	transition: all 0.4s ease-in-out;
}

.feature-item.active .feature-item-header h3,
.feature-item:hover .feature-item-header h3,
.feature-item.active .feature-item-content p,
.feature-item:hover .feature-item-content p,
.feature-item.active .feature-counter-content h2,
.feature-item:hover .feature-counter-content h2,
.feature-item.active .feature-counter-content p,
.feature-item:hover .feature-counter-content p {
	color: var(--white-color);
}

.feature-counter-icon {
	position: relative;
	width: 60px;
	height: 60px;
	background: var(--accent-color);
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
}

.feature-counter-icon::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	background-color: var(--primary-color);
	border-radius: 50%;
	transform: scale(0);
	transition: all 0.3s ease-in-out;
}

.feature-item.active .feature-counter-icon::before,
.feature-item:hover .feature-counter-icon::before {
	transform: scale(1);
}

.feature-counter-icon img {
	position: relative;
	width: 100%;
	max-width: 30px;
	z-index: 1;
}

/************************************/
/*** 	  09. What We Do css	  ***/
/************************************/

.what-we-do {
	padding: 80px 0;
}

.what-we-image-box {
	margin-right: 15px;
}

.what-we-image figure {
	display: block;
	border-radius: 20px;
}

.what-we-image img {
	width: 100%;
	aspect-ratio: 1 / 0.916;
	object-fit: cover;
	border-radius: 20px;
}

.what-we-contact-box {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 20px;
	margin-top: 30px;
}

.what-we-contact-item {
	display: flex;
	align-items: center;
}

.what-we-contact-item .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;
}

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

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

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

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

.what-we-contact-item-content p {
	margin-bottom: 5px;
}

.what-we-contact-item-content h3 {
	font-size: 20px;
}

.what-we-contact-item-content h3 a {
	color: initial;
	transition: all 0.3s ease-in-out;
}

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

.what-we-item {
	display: flex;
	margin-bottom: 40px;
}

.what-we-item:last-child {
	margin-bottom: 0;
}

.what-we-item .icon-box {
	position: relative;
    width: 60px;
    height: 60px;
    background: var(--accent-color);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 20px;
    z-index: 1;
    color: #fff;
    font-size: 25px;
    font-weight: 600;
}

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

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

.what-we-item .icon-box img {
	position: relative;
	width: 100%;
	max-width: 30px;
	z-index: 1;
}

.what-we-item-content {
	width: calc(100% - 80px);
}

.what-we-item-content h3 {
	font-size: 20px;
	margin-bottom: 10px;
}

.what-we-item-content p {
	margin-bottom: 0;
}

/************************************/
/*** 	  10. How It Work css	  ***/
/************************************/

.how-it-work {
	padding: 80px 0;
	position: relative;
}

.work-item-list {
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
}

.work-item {
	position: relative;
	width: calc(25% - 22.5px);
	text-align: center;
}

.work-item::before {
	content: '';
	position: absolute;
	top: 60px;
	right: -35px;
	background: url('../images/work-item-arrow.svg') no-repeat;
	background-position: center center;
	width: 36px;
	height: 40px;
}

.work-item:nth-child(4n + 4):before,
.work-item:last-child:before {
	display: none;
}

.work-item-image {
	width: 100%;
	max-width: 160px;
	margin: 0 auto 30px;
}

.work-item-image figure {
	display: block;
	mask-size: auto;
	mask-position: center center;
	mask-repeat: no-repeat;
	width: 100%;
	height: 100%;
}

/* .work-box-1 .work-item-image figure{
	mask-image: url('../images/work-item-bg-shape-1.svg');
    background-image: url('../images/work-item-bg-shape-1.svg');
} */

.work-box-2 .work-item-image figure {
	mask-image: url('../images/work-item-bg-shape-2.svg');
	background-image: url('../images/work-item-bg-shape-2.svg');
}

.work-box-4 .work-item-image figure {
	mask-image: url('../images/work-item-bg-shape-3.svg');
	background-image: url('../images/work-item-bg-shape-3.svg');
}

.work-box-3 .work-item-image figure {
	mask-image: url('../images/work-item-bg-shape-4.svg');
	background-image: url('../images/work-item-bg-shape-4.svg');
}

.work-item-image figure img {
	width: 100%;
}

.work-item-content h3 {
	font-size: 20px;
	margin-bottom: 15px;
}

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

/************************************/
/*** 	 11. Our Programs css	  ***/
/************************************/

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

.programs-image-box {
	background: var(--accent-secondary-color);
	border-radius: 20px;
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	padding: 40px;
	overflow: hidden;
}

.programs-item-body {
	display: flex;
	align-items: end;
}

.programs-body-content {
	width: calc(100% - 210px);
}

.programs-body-content p {
	margin-bottom: 0;
}

.programs-body-image {
	margin-right: -40px;
}

.programs-body-image figure {
	display: block;
}

.programs-body-image img {
	width: 100%;
	max-width: 260px;
}

.programs-item-list {
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
}

.programs-item {
	position: relative;
	width: calc(50% - 15px);
	background: var(--white-color);
	border: 1px solid var(--divider-color);
	border-radius: 20px;
	padding: 30px;
	overflow: hidden;
}

.programs-item::before {
	content: '';
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 0;
	background-color: var(--accent-color);
	border-radius: 999px 999px 0 0;
	transition: all 0.4s ease-in-out;
}

.programs-item:hover::before {
	height: 100%;
	border-radius: 0;
}

.programs-item-header,
.programs-item-content {
	position: relative;
	z-index: 1;
}

.programs-item-header {
	display: flex;
	gap: 30px;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 100px;
}

.programs-item-title h3 {
	font-size: 26px;
	transition: all 0.5s ease-in-out;
}

.program-btn a {
	width: 40px;
	height: 40px;
	background: var(--accent-color);
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	transition: all 0.5s ease-in-out;
}

.programs-item:hover .program-btn a {
	background: var(--primary-color);
}

.program-btn a img {
	width: 100%;
	max-width: 20px;
	transform: rotate(-45deg);
	transition: all 0.3s ease-in-out;
}

.program-btn a:hover img {
	transform: rotate(0);
}

.programs-item-content p {
	margin-bottom: 0;
	transition: all 0.4s ease-in-out;
}

.programs-item:hover .programs-item-title h3,
.programs-item:hover .programs-item-content p {
	color: var(--white-color);
}

/************************************/
/*** 	 	12. CTA Box css 	  ***/
/************************************/

.cta-box {
	padding: 100px 0;
}

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

.cta-box-list ul li {
	position: relative;
	color: var(--white-color);
	line-height: 1.5em;
	padding-left: 30px;
}

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

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

.cta-box-image figure {
	display: block;
}

.cta-box-image img {
	width: 100%;
	aspect-ratio: 1 / 0.81;
	object-fit: cover;
	margin-bottom: -100px;
}

/************************************/
/*** 	 	13. Our FAQs css	  ***/
/************************************/

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

.faq-accordion .accordion-item {
	background: var(--accent-secondary-color);
	border-radius: 10px;
	margin-bottom: 30px;
	padding: 0;
	overflow: hidden;
}

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

.faq-accordion .accordion-header .accordion-button {
	font-size: 18px;
	font-weight: 500;
	line-height: 1.333em;
	background: transparent;
	color: var(--text-color);
	padding: 18px 45px 18px 20px;
	transition: all 0.3s ease-in-out;
}

.faq-accordion .accordion-header .accordion-button.collapsed {
	color: var(--text-color);
	background: transparent;
}

.faq-accordion .accordion-item .accordion-button::after,
.faq-accordion .accordion-item .accordion-button.collapsed::after {
	content: '\f068';
	font-family: "FontAwesome";
	position: absolute;
	right: 20px;
	top: 50%;
	transform: translateY(-50%);
	font-size: 18px;
	font-weight: 400;
	line-height: normal;
	color: var(--text-color);
	transition: all 0.3s ease-in-out;
}

.faq-accordion .accordion-item .accordion-button.collapsed::after {
	content: '\2b';
	color: var(--text-color);
}

.faq-accordion .accordion-item .accordion-body {
	background: transparent;
	border-top: 1px solid var(--divider-color);
	padding: 18px 20px;
}

.faq-accordion .accordion-item .accordion-body p {
	color: var(--text-color);
	margin: 0;
}

.faqs-image-box {
	position: relative;
	margin-left: 15px;
}

.faq-image {
	border-radius: 20px;
	overflow: hidden;
}

.faq-image figure {
	display: block;
}

.faq-image img {
	width: 100%;
	aspect-ratio: 1 / 1.03;
	object-fit: cover;
}

.faqs-contact-box {
	position: absolute;
	right: 20px;
	bottom: 20px;
	left: 20px;
	display: flex;
	align-items: end;
	background: var(--primary-color);
	border-radius: 20px;
	gap: 20px;
	padding: 30px 0 30px 30px;
	overflow: hidden;
	z-index: 1;
}

.faqs-cta-box-content {
	width: calc(100% - 120px);
}

.faqs-cta-box-content h3 {
	font-size: 20px;
	color: var(--white-color);
	margin-bottom: 20px;
}

.faqs-contact-box .icon-box {
	margin-bottom: -40px;
	transform: rotate(-10deg);
}

.faqs-contact-box .icon-box img {
	width: 100%;
	max-width: 100px;
}

/************************************/
/***   14. Our Testimonials css   ***/
/************************************/

.our-testimonials {
	/* background: var(--accent-color); */
	padding: 80px 0;
}

.testimonials-content .section-title h3::before {
	background: var(--white-color);
}

.testimonial-slider-box {
	border-left: 1px solid var(--dark-divider-color);
	padding-left: 30px;
}

.testimonial-author-images {
	display: inline-flex;
	margin-bottom: 40px;
}

.testimonial-author-image {
	position: relative;
	margin-left: -10px;
	z-index: 1;
}

.testimonial-author-image:first-child {
	margin: 0;
}

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

.testimonial-author-image img {
	width: 100%;
	max-width: 60px;
	border: 1px solid var(--accent-color);
	border-radius: 50%;
}

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

.testimonials-rating {
	margin-bottom: 20px;
}

.testimonials-rating i {
	color: var(--primary-color);
	margin-right: 2px;
}

.testimonials-rating i:last-child {
	margin: 0;
}

.testimonial-content {
	margin-bottom: 40px;
}

.testimonial-content p,
.author-content p {
	color: var(--text-color) margin-bottom: 0;
}

.author-content h3 {
	font-size: 20px;
	text-transform: capitalize;
	color: var(--text-color) margin-bottom: 5px;
}

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

.testimonial-slider .testimonial-button-next,
.testimonial-slider .testimonial-button-prev {
	position: relative;
	width: 40px;
	height: 40px;
	background: var(--primary-color);
	border-radius: 50%;
	transition: all 0.4s ease-in-out;
}

.testimonial-slider .testimonial-button-next {
	margin-left: 15px;
}

.testimonial-slider .testimonial-button-next:hover,
.testimonial-slider .testimonial-button-prev:hover {
	background: var(--white-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: url("../images/arrow-white.svg") no-repeat center center;
	background-size: 22px auto;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.4s ease-in-out;
}

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

.testimonial-slider .testimonial-button-next:hover:before,
.testimonial-slider .testimonial-button-prev:hover:before {
	filter: brightness(0) invert(0);
}

.company-supports-slider {
	border-top: 1px solid var(--dark-divider-color);
	padding: 0px 0 0;
	margin-top: 80px;
}

.company-supports-logo {
	text-align: center;
}

.company-supports-logo img {
	width: auto;
	height: auto;
	transition: all 0.4s ease-in-out;
}

/************************************/
/*** 	 	15. Our Blog css	  ***/
/************************************/

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

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

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

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

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

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

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

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

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

/************************************/
/*** 	 	16. Footer css  	  ***/
/************************************/

.main-footer {
	padding: 60px 0 0;
	margin-top: 80px;
	background-color: #4e76f0;
	border-radius: 20px 20px 0 0;
}

.footer-logo {
	margin-bottom: 20px;
}

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

.about-footer-content {
	width: 100%;
	max-width: 575px;
	margin-bottom: 30px
}

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

.footer-newsletter-form {
	max-width: 575px;
}

.footer-contact-details {
	display: flex;
	flex-wrap: wrap;
	gap: 30px 40px;
}

.footer-contact-item {
	display: flex;
}

.footer-contact-item .icon-box {
	position: relative;
	border: 1px solid var(--dark-divider-color);
	border-radius: 50%;
	width: 45px;
	height: 45px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-right: 15px;
	overflow: hidden;
	transition: all 0.5s ease-in-out;
}

.footer-contact-item:hover .icon-box {
	border-color: transparent;
}

.footer-contact-item .icon-box::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	background-color: var(--accent-color);
	border-radius: 50%;
	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;
	max-width: 20px;
	z-index: 1;
}

.footer-contact-item-content h3 {
	font-size: 20px;
	color: var(--white-color);
	margin-bottom: 10px;
}

.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-newsletter-box {
	margin-left: 3.125vw;
}

.footer-newsletter-form .form-group {
	display: flex;
	border: 1px solid var(--dark-divider-color);
	border-radius: 100px;
	padding: 6px;
}

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

.footer-newsletter-form .form-group .form-control::placeholder {
	font-size: 14px;
	color: var(--white-color);
	opacity: 50%;
}

.footer-newsletter-form .form-group .newsletter-btn {
	background-color: transparent;
	width: 40px;
	height: 40px;
	border: none;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0;
	transition: all 0.3s ease-in-out;
}

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

.footer-newsletter-form .form-group .newsletter-btn i {
	font-size: 18px;
	color: var(--white-color);
	padding-right: 3px;
	transition: all 0.3s ease-in-out;
}

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

.footer-copyright {
	text-align: center;
	border-top: 1px solid var(--dark-divider-color);
	margin-top: 50px;
	padding: 30px 0;
}

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

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

.footer-social ul {
	margin-top: 30px;
}

.footer-links ul li {
	display: block;
	line-height: 2em;
	color: var(--white-color);
	margin-right: 30px;
}

.footer-social ul li {
	display: inline-block;
}

.footer-social ul li a {
	color: var(--white-color);
	margin-right: 20px;
}

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

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

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

/************************************/
/*** 	 17. About Us Page css	  ***/
/************************************/

.page-header {
	position: relative;
	background: url('../images/page-header-bg.jpg') no-repeat;
	background-position: center center;
	background-size: cover;
	border-radius: 20px;
	padding: 170px 0;
	overflow: hidden;
}

.page-header::before {
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	background: linear-gradient(180deg, rgba(38, 80, 94, 0) -24.69%, rgba(38, 80, 94, 0.9) 67.71%);
	width: 100%;
	height: 100%;
	z-index: 1;
}

.page-header-box {
	position: relative;
	text-align: center;
	z-index: 1;
}

.page-header-box h1 {
	display: inline-block;
	font-size: 70px;
	font-weight: 600;
	line-height: 1.1em;
	color: var(--white-color);
	margin-bottom: 10px;
	/* cursor: none; */
}

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

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

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

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

.our-approach {
	padding: 80px 0;
}

.approach-item-list {
	margin-right: 15px;
}

.approach-item {
	background: var(--accent-color);
	border-radius: 20px;
	margin-bottom: 30px;
	padding: 40px;
}

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

.approach-item:nth-child(even) {
	background-color: var(--primary-color);
}

.approach-item .icon-box {
	position: relative;
	display: inline-block;
	padding: 0 10px 10px 0;
	margin-bottom: 30px;
}

.approach-item .icon-box::before {
	content: '';
	position: absolute;
	right: 0;
	bottom: 0;
	background: var(--dark-divider-color);
	border-radius: 50%;
	height: 40px;
	width: 40px;
}

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

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

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

.approach-image-box {
	position: relative;
	height: 100%;
}

.approach-image-box figure {
	display: block;
	height: 100%;
	border-radius: 20px;
}

.approach-image-box img {
	width: 100%;
	height: 100%;
	aspect-ratio: 1 / 0.88;
	object-fit: cover;
	border-radius: 20px;
}

.approach-image-content {
	position: absolute;
	right: 20px;
	bottom: 20px;
	left: 20px;
	background: var(--primary-color);
	border-radius: 20px;
	padding: 30px;
	z-index: 1;
}

.approach-image-content h3 {
	font-size: 20px;
	color: var(--white-color);
	margin-bottom: 10px;
}

.approach-image-content p {
	color: var(--white-color);
	margin-bottom: 0;
}

.our-care {
	padding: 80px 0;
}

.our-care-images {
	display: flex;
	flex-wrap: wrap;
	justify-content: end;
	align-items: start;
}

.care-image-1 {
	position: relative;
	width: calc(100% - 240px);
}

.care-image-1 figure,
.care-image-2 figure {
	display: block;
	border-radius: 20px;
}

.care-image-1 figure img,
.care-image-2 figure img {
	width: 100%;
	object-fit: cover;
	border-radius: 20px;
}

.care-image-1 figure img {
	aspect-ratio: 1 / 1.178;
}

.care-image-2 figure img {
	aspect-ratio: 1 / 1.294;
}

.care-image-1 .recovery-circle {
	position: absolute;
	bottom: -30px;
	transform: translateY(50%);
	left: 60px;
}

.care-image-1 .recovery-circle a img {
	max-width: 170px;
}

.our-care-images .trusted-profession-box {
	width: 200px;
	margin: 20px;
}

.care-image-2 {
	position: relative;
	width: 100%;
	max-width: 305px;
	margin-top: -245px;
	z-index: 1;
}

.our-care-content {
	margin-left: 20px;
}

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

.care-counter-item {
	width: calc(33.33% - 20px);
}

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

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

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

.care-counter-item .icon-box img {
	position: relative;
	width: 100%;
	max-width: 30px;
	z-index: 1;
}

.care-counter-item-content h2 {
	font-size: 46px;
	line-height: 1.1em;
	margin-bottom: 20px;
}

.care-counter-item-content p {
	margin-bottom: 0;
}

.our-results {
	padding: 80px 0;
}

.result-item {
	position: relative;
	display: flex;
	margin-bottom: 40px;
	z-index: 1;
}

.result-item:after {
	content: "";
	display: block;
	position: absolute;
	left: 30px;
	top: 60px;
	border-left: 1px solid var(--divider-color);
	width: 1px;
	height: 100%;
	z-index: 0;
}

.result-item:last-child:after {
	display: none;
}

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

.result-item .icon-box {
	position: relative;
	width: 60px;
	height: 60px;
	background: var(--accent-color);
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	margin-right: 20px;
	z-index: 1;
	color: #fff;
	font-size: 25px;
	font-weight: 600;
}

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

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

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

.result-item-content {
	position: relative;
	width: calc(100% - 80px);
	z-index: 1;
}

.result-item-content h3 {
	font-size: 20px;
	margin-bottom: 10px;
}

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

.result-image-box {
	position: relative;
	margin-left: 15px;
	padding-left: 80px;
	overflow: hidden;
}

.result-image figure,
.result-list-image figure {
	display: block;
	border-radius: 20px;
}

.result-image-box img,
.result-list-image img {
	width: 100%;
	aspect-ratio: 1 / 1.135;
	object-fit: cover;
	border-radius: 20px;
}

.result-image-list-box {
	position: absolute;
	bottom: 50px;
	left: 0;
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
}

.result-list-image {
	width: calc(50% - 10px);
}

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

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

.team-image {
	position: relative;
	margin-bottom: 20px;
}

.team-image a,
.team-image figure {
	display: block;
	/* cursor: none; */
	border-radius: 20px;
	overflow: hidden;
}

.team-image img {
	width: 100%;
	aspect-ratio: 1 / 1.32;
	object-fit: cover;
	transition: all 0.4s ease-in-out;
}

.team-item:hover .team-image img {
	transform: scale(1.07);
}

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

.team-item:hover .team-social-icon {
	bottom: 30px;
	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: 40px;
	height: 40px;
	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(--primary-color);
}

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

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

.team-content h3 {
	font-size: 20px;
	text-transform: capitalize;
	margin-bottom: 5px;
}

.team-content h3 a {
	color: inherit;
}

.team-content p {
	text-transform: capitalize;
	margin: 0;
}

/************************************/
/*** 	 18. Services Page css	  ***/
/************************************/

.page-services {
	padding: 80px 0 0;
}

.page-services .service-item {
	background: var(--secondary-color);
}

/************************************/
/*** 	 19. Service Single css	  ***/
/************************************/

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

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

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

.page-category-list h3 {
	font-size: 20px;
	text-transform: capitalize;
	margin-bottom: 30px;
}

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

.page-category-list ul li {
	margin-bottom: 20px;
}

.page-category-list ul li:last-child {
	margin: 0;
}

.page-category-list ul li a {
	position: relative;
	display: block;
	line-height: 1.5em;
	text-transform: capitalize;
	color: var(--text-color);
	background: var(--white-color);
	border-radius: 10px;
	padding: 18px 45px 18px 20px;
	overflow: hidden;
	transition: all 0.4s ease-in-out;
	z-index: 1;
}

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

.page-category-list ul li a::before {
	content: '';
	position: absolute;
	right: 20px;
	top: 50%;
	transform: translate(0px, -50%);
	background: url('../images/arrow-text.svg') no-repeat;
	background-position: center center;
	background-size: cover;
	width: 20px;
	height: 20px;
	transition: all 0.3s ease-in-out;
}

.page-category-list ul li a:hover::before {
	filter: brightness(0) invert(1);
}

.page-category-list ul li a::after {
	content: '';
	position: absolute;
	right: 0;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 0;
	background: var(--accent-color);
	transition: all 0.4s ease-in-out;
	z-index: -1;
}

.page-category-list ul li:hover a::after {
	top: 0;
	height: 100%;
}

.sidebar-cta-box {
	background: var(--primary-color);
	border-radius: 20px;
	padding: 40px;
}

.sidebar-cta-content {
	margin-bottom: 15px;
}

.sidebar-cta-content h3 {
	font-size: 20px;
	color: var(--white-color);
	margin-bottom: 10px;
}

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

.sidebar-contact-box {
	display: flex;
	align-items: center;
	background: var(--dark-divider-color);
	border-radius: 10px;
	padding: 12px 20px;
	margin-bottom: 30px;
}

.sidebar-contact-box .icon-box {
	width: 60px;
	height: 60px;
	background: var(--white-color);
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	margin-right: 15px;
	transition: all 0.3s ease-in-out;
}

.sidebar-cta-box:hover .sidebar-contact-box .icon-box {
	background: var(--accent-color);
}

.sidebar-contact-box .icon-box img {
	width: 100%;
	max-width: 35px;
}

.sidebar-contact-content p {
	color: var(--white-color);
	margin-bottom: 10px;
}

.sidebar-contact-content h3 {
	font-size: 16px;
	font-weight: 700;
	color: var(--white-color);
}

.sidebar-contact-content h3 a {
	color: inherit;
	transition: all 0.3s ease-in-out;
}

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

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

.sidebar-cta-image img {
	width: 100%;
	aspect-ratio: 1 / 0.48;
	object-fit: cover;
	border-radius: 10px;
	transition: all 0.4s ease-in-out;
}

.sidebar-cta-box:hover .sidebar-cta-image img {
	transform: scale(1.1);
}

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

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

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

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

.service-entry h2 {
	font-size: 46px;
	margin-bottom: 20px;
}

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

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

.service-entry ul {
	padding: 0;
	margin: 0;
	list-style: none;
}

.service-entry ul li {
	position: relative;
	line-height: 1.5em;
	padding-left: 30px;
	margin-bottom: 20px;
}

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

.service-entry ul li::before {
	content: '\f058';
	font-family: "FontAwesome";
	position: absolute;
	left: 0;
	top: 0;
	font-size: 18px;
	font-weight: 900;
	color: var(--accent-color);
}

.service-support-step,
.service-priority-box,
.service-empower-box {
	margin-top: 60px;
}

.support-step-box {
	background: var(--secondary-color);
	border-radius: 20px;
	margin-top: 40px;
	padding: 40px;
}

.support-step-image-content {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 30px;
}

.support-step-image,
.support-step-content {
	width: calc(50% - 15px);
}

.support-step-image figure {
	display: block;
	border-radius: 20px;
}

.support-step-image img {
	width: 100%;
	aspect-ratio: 1 / 0.58;
	object-fit: cover;
	border-radius: 20px;
}

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

.support-step-item-list .care-counter-item {
	width: calc(25% - 22.5px);
}

.support-step-item-list .care-counter-item .care-counter-item-content h2 {
	margin-bottom: 10px;
}

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

.service-priority-item-list .what-we-item .icon-box h3 {
	position: relative;
	font-size: 20px;
	font-weight: 700;
	color: var(--white-color);
	z-index: 1;
}

.service-empower-box {
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
}

.service-empower-content,
.service-empower-image {
	width: calc(50% - 15px);
}

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

.service-empower-image figure {
	display: block;
	border-radius: 20px;
	height: 100%;
}

.service-empower-image img {
	width: 100%;
	height: 100%;
	aspect-ratio: 1 / 0.7;
	object-fit: cover;
	border-radius: 20px;
}

/************************************/
/*** 	 20. Blog Archive css	  ***/
/************************************/

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

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

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

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

.page-pagination ul li a,
.page-pagination ul li span {
	display: flex;
	text-decoration: none;
	justify-content: center;
	align-items: center;
	background: var(--divider-color);
	color: var(--text-color);
	border-radius: 10px;
	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(--primary-color);
	color: var(--white-color);
}

/************************************/
/*** 	 21. Blog Single css	  ***/
/************************************/

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

.post-single-meta {
	margin-top: 5px;
}

.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: 20px;
	overflow: hidden;
}

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

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

.post-entry {}

.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: 600;
	line-height: 1.1em;
	margin: 0 0 0.435em;
}

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

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

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

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

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

.post-entry h6 {
	font-size: 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: 16px;
	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: url('../images/icon-blockquote.svg'), var(--secondary-color);
	background-repeat: no-repeat;
	background-position: 30px 30px;
	background-size: 45px;
	border: 1px solid var(--divider-color);
	border-radius: 20px;
	padding: 30px 30px 30px 90px;
	margin-bottom: 30px;
}

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

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

.tag-links {
	font-size: 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-family: var(--default-font);
	font-size: 16px;
	font-weight: 500;
	text-transform: capitalize;
	line-height: 1em;
	background: var(--accent-color);
	color: var(--white-color);
	border-radius: 100px;
	padding: 12px 20px;
	transition: all 0.3s 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.3s 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;
}

/************************************/
/*** 	22. Case Study Page css	  ***/
/************************************/

.page-case-study {
	padding: 100px 0 60px;
}

.case-study-item {
	height: calc(100% - 40px);
	margin-bottom: 40px;
}

.case-study-image {
	position: relative;
	border-radius: 20px;
	margin-bottom: 20px;
	overflow: hidden;
}

.case-study-image::before {
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	transform: scale(0);
	background: var(--primary-color);
	border-radius: 20px;
	opacity: 60%;
	width: 100%;
	height: 100%;
	transition: all 0.4s ease-in-out;
	z-index: 1;
}

.case-study-item:hover .case-study-image::before {
	transform: scale(1);
}

.case-study-image figure {
	display: block;
}

.case-study-image figure img {
	width: 100%;
	aspect-ratio: 1 / 0.87;
	object-fit: cover;
	border-radius: 20px;
	transition: all 0.4s ease-in-out;
}

.case-study-item:hover .case-study-image figure img {
	transform: scale(1.1);
}

.case-study-btn {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%) scale(0);
	opacity: 0;
	visibility: hidden;
	transition: all 0.4s ease-in-out;
	z-index: 1;
}

.case-study-item:hover .case-study-btn {
	opacity: 1;
	visibility: visible;
	transform: translate(-50%, -50%) scale(1);
}

.case-study-btn a {
	background: var(--accent-color);
	border-radius: 50%;
	width: 80px;
	height: 80px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.case-study-btn a img {
	width: 100%;
	max-width: 40px;
	transform: rotate(-45deg);
	transition: 0.4s ease-in-out;
}

.case-study-btn a:hover img {
	transform: rotate(0deg);
}

.case-study-content h2 {
	font-size: 20px;
}

.case-study-content h2 a {
	color: inherit;
}

/************************************/
/***  23. Case Study Single css	  ***/
/************************************/

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

.case-study-category-list {
	background-color: var(--secondary-color);
	border-radius: 20px;
	margin-bottom: 60px;
	padding: 30px;
}

.case-study-category-list h3 {
	font-size: 20px;
	text-transform: capitalize;
	margin-bottom: 30px;
}

.case-study-category-list ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

.case-study-category-list ul li {
	position: relative;
	display: inline-flex;
	align-items: center;
	width: 100%;
	gap: 20px;
	line-height: 1.5em;
	text-transform: capitalize;
	color: var(--text-color);
	background: var(--white-color);
	border-radius: 12px;
	margin-bottom: 20px;
	padding: 20px;
	transition: all 0.4s ease-in-out;
	overflow: hidden;
	z-index: 1;
}

.case-study-category-list ul li:last-child {
	margin: 0;
}

.case-study-category-list ul li::after {
	content: '';
	position: absolute;
	right: 0;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 0;
	background: var(--accent-color);
	transition: all 0.4s ease-in-out;
	z-index: -1;
}

.case-study-category-list ul li:hover::after {
	top: 0;
	height: 100%;
}

.case-study-category-list ul li b {
	color: var(--primary-color);
	font-weight: 600;
	transition: all 0.4s ease-in-out;
}

.case-study-category-list ul li:hover,
.case-study-category-list ul li:hover b {
	color: var(--white-color);
}

.case-study-category-list ul li span {
	display: inline-flex;
	gap: 10px;
}

.case-study-category-list ul li span a {
	width: 40px;
	height: 40px;
	background: var(--primary-color);
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	transition: all 0.3s ease-in-out;
}

.case-study-category-list ul li span a:hover {
	background: var(--white-color);
}

.case-study-category-list ul li span a i {
	font-size: 18px;
	color: var(--white-color);
	transition: all 0.3s ease-in-out;
}

.case-study-category-list ul li span a:hover i {
	color: var(--primary-color);
}

.case-study-entry {
	margin-bottom: 60px;
}

.case-study-entry h2 {
	font-size: 46px;
	margin-bottom: 20px;
}

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

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

.case-study-entry ul {
	padding: 0;
	margin: 0;
	list-style: none;
}

.case-study-entry ul li {
	position: relative;
	line-height: 1.5em;
	padding-left: 30px;
	margin-bottom: 15px;
}

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

.case-study-entry ul li::before {
	content: '\f058';
	font-family: "FontAwesome";
	position: absolute;
	left: 0;
	top: 0;
	font-size: 18px;
	font-weight: 900;
	color: var(--accent-color);
}

.whole-person-care-box,
.long-term-care-box,
.commitment-box {
	margin-top: 60px;
}

.our-solution-box {
	border: 1px solid var(--divider-color);
	border-radius: 20px;
	margin-top: 40px;
	overflow: hidden;
}

.our-solution-nav .nav-tabs {
	padding: 0;
	margin: 0;
	list-style: none;
	background: var(--secondary-color);
	display: flex;
	justify-content: center;
	border: none;
	border-bottom: 1px solid var(--divider-color);
	overflow: hidden;
}

.our-solution-nav ul li {
	width: 33.33%;
	border-right: 1px solid var(--divider-color);
	margin: 0;
	padding: 0;
}

.our-solution-nav ul li:last-child,
.our-solution-nav ul li:nth-child(3n + 3) {
	border-right: none;
}

.our-solution-nav ul li::before {
	display: none;
}

.our-solution-nav ul li .nav-link {
	width: 100%;
	border: none;
	color: var(--primary-color);
	font-size: 20px;
	font-weight: 600;
	line-height: 1.2em;
	text-transform: capitalize;
	padding: 18px;
	border-radius: 0;
	transition: all 0.4s ease-in-out;
}

.our-solution-nav ul li .nav-link.active,
.our-solution-nav ul li .nav-link:hover {
	background: var(--white-color);
	color: var(--accent-color);
}

.solution-box-item {
	padding: 40px;
}

.solution-item-content {
	margin-bottom: 40px;
}

.long-term-care-box {
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
}

.long-term-care-content,
.long-term-care-info {
	width: calc(50% - 15px);
}

.long-term-care-content ul {
	margin-top: 40px;
}

.long-term-care-info {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	text-align: center;
	background-color: var(--secondary-color);
	border-radius: 20px;
	padding: 40px;
}

.long-term-care-info h3 {
	font-size: 20px;
}

.long-term-care-info p span {
	font-weight: 600;
	color: var(--primary-color);
	margin-right: 10px;
}

.commitment-content-list {
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
	margin: 40px 0;
}

.commitment-item {
	width: calc(50% - 15px);
	background: var(--secondary-color);
	border-radius: 20px;
	padding: 30px;
}

.commitment-item-header {
	display: flex;
	align-items: center;
	margin-bottom: 30px;
}

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

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

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

.commitment-item-header .icon-box img {
	position: relative;
	width: 100%;
	max-width: 40px;
	z-index: 1;
}

.commitment-item-title {
	width: calc(100% - 95px);
}

.commitment-item-title h3 {
	font-size: 20px;
}

/************************************/
/***  	 24. Team Page css	   	  ***/
/************************************/

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

/************************************/
/*** 	 25. Team Single css	  ***/
/************************************/

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

.team-member-about-box,
.team-member-info {
	margin-bottom: 100px;
}

.team-member-about-box {
	background: var(--secondary-color);
	border-radius: 20px;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 30px 60px;
	padding: 50px;
}

.team-member-image,
.team-member-content {
	width: calc(50% - 30px);
}

.team-member-image figure {
	display: block;
	border-radius: 20px;
}

.team-member-image img {
	width: 100%;
	aspect-ratio: 1 / 0.99;
	object-fit: cover;
	object-position: top center;
	border-radius: 20px;
}

.member-info-list ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

.member-info-list ul li {
	font-size: 20px;
	line-height: 1.5em;
	font-weight: 600;
	color: var(--primary-color);
	display: flex;
	justify-content: space-between;
	margin-bottom: 20px;
}

.member-info-list ul li:last-child {
	margin-bottom: 0;
}

.member-info-list ul li span {
	width: 65%;
	font-size: 16px;
	font-weight: 400;
	color: var(--text-color);
}

.member-social-list {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 20px 30px;
	border-top: 1px solid var(--divider-color);
	margin-top: 40px;
	padding-top: 40px;
}

.member-social-list h3 {
	font-size: 20px;
}

.member-social-list ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

.member-social-list ul li {
	display: inline-block;
	margin-right: 10px;
}

.member-social-list ul li:last-child {
	margin-right: 0;
}

.member-social-list ul li a {
	background-color: var(--accent-color);
	color: var(--white-color);
	border-radius: 50%;
	width: 40px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.3s ease-in-out;
}

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

.member-social-list ul li a i {
	font-size: 20px;
	color: inherit;
}

.team-member-info .section-title {
	margin-bottom: 0;
}

.team-member-experience-contact {
	display: flex;
	flex-wrap: wrap;
	gap: 30px 60px;
}

.team-member-experience-box,
.team-contact-form {
	width: calc(50% - 30px);
}

.team-member-experience-box {
	background: var(--bg-color);
	border: 1px solid var(--divider-color);
	border-radius: 20px;
	padding: 40px;
}

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

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

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

.skills-progress-bar .skill-data .skill-title,
.skills-progress-bar .skill-data .skill-no {
	text-transform: capitalize;
}

.skills-progress-bar .skillbar .skill-progress {
	position: relative;
	width: 100%;
	height: 16px;
	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;
}

/************************************/
/***  26. Testimonials Page css   ***/
/************************************/

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

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

.page-testimonials .testimonial-item .author-image {
	margin-bottom: 40px;
}

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

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

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

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

/************************************/
/*** 	 27. Image Gallery css	  ***/
/************************************/

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

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

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

.page-gallery-box .photo-gallery figure {
	display: block;
	border-radius: 20px;
}

.page-gallery-box .photo-gallery img {
	width: 100%;
	aspect-ratio: 1 / 0.829;
	object-fit: cover;
	border-radius: 20px;
}

/************************************/
/*** 	28. Video Gallery css	  ***/
/************************************/

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

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

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

.video-gallery-image a::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: var(--primary-color);
	border-radius: 20px;
	opacity: 0%;
	visibility: hidden;
	width: 100%;
	height: 100%;
	z-index: 1;
	transform: scale(0);
	transition: all 0.4s ease-in-out;
}

.video-gallery-image:hover a::before {
	opacity: 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.829;
	object-fit: cover;
	border-radius: 20px;
}

/************************************/
/*** 	  29. FAQs Page css	 	  ***/
/************************************/

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

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

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

/************************************/
/***   30. Contact Us Page css    ***/
/************************************/

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

.contact-us-content {
	margin-right: 15px;
}

.contact-info-box {
	border-radius: 20px;
	overflow: hidden;
}

.contact-info-list {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 3px;
}

/* .contact-info-list {
	display: flex;
	flex-wrap: wrap;
	gap: 40px 30px;
} */

.contact-info-item {
	text-align: center;
	box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
	margin: 10px;
	padding: 25px;
	border-radius: 12px;
	/* width: calc(50% - 15px);
	display: flex;
	flex-wrap: wrap; */
}

.contact-info-item .icon-box {
	height: 60px;
	width: 60px;
	display: flex;
	justify-content: center;
	align-items: center;
	background-color: var(--accent-color);
	border-radius: 50%;
	/* margin-right: 20px; */
	margin: auto;
	transition: all 0.4s ease-in-out;
}

.contact-info-item:hover .icon-box {
	background-color: var(--primary-color);
}

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

.contact-item-content {
	/* width: calc(100% - 80px); */
}

.contact-item-content h3 {
	font-size: 19px;
	margin: 8px 0 0;
}

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

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

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

.contact-social-links {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 15px;
	border-top: 1px solid var(--divider-color);
	margin-top: 40px;
	padding-top: 40px;
}

.contact-social-links h3 {
	font-size: 20px;
	margin: 0;
}

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

.contact-social-links ul li {
	display: inline-block;
	border-radius: 50%;
	margin-right: 10px;
}

.contact-social-links ul li:last-child {
	margin-right: 0;
}

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

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

.contact-social-links ul li a i {
	font-size: 18px;
	color: var(--white-color);
}

.contact-us-form {
	background: var(--secondary-color);
	border-radius: 20px;
	padding: 40px;
}

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

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

.contact-form .btn-default {
	width: 100%;
	padding: 16px 20px;
}

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

.google-map {
	/* margin-top: 100px; */
}

.google-map iframe {
	width: 100%;
	height: 550px;
	border-radius: 20px;
	filter: grayscale(1);
	transition: all 0.4s ease-in-out;
}

.google-map iframe:hover {
	filter: grayscale(0);
}

/************************************/
/***   31. Book Appointment css	  ***/
/************************************/

.page-book-appointment {
	padding: 100px 0;
}

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

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

.appointment-form form .form-group select {
	padding: 18px 30px 18px 20px;
}

.appointment-form form .form-group select option {
	color: var(--primary-color);
	font-weight: 500;
}

.appointment-image-info {
	position: relative;
	margin-left: 15px;
}

.appointment-image {
	border-radius: 20px;
	overflow: hidden;
}

.appointment-image figure {
	display: block;
}

.appointment-image figure::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(180deg, rgba(38, 80, 94, 0) 0%, rgba(38, 80, 94, 0.8) 100%);
	width: 100%;
	height: 100%;
	transition: all 0.4s ease-in-out;
	z-index: 1;
}

.appointment-image img {
	width: 100%;
	aspect-ratio: 1 / 1.012;
	object-fit: cover;
}

.appointment-image-info .working-hours-box {
	right: auto;
}

/************************************/
/*** 	32. 404 Error Page css	  ***/
/************************************/

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

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

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

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

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


.bnr-reqst-btn {
	padding: 20px 40px;
	font-size: 18px;
	margin: 0 10px;
}

.bnr-reqst-btn img {
	margin-left: 4px;
}

.bnr-pro-btn {
	padding: 20px 40px;
	font-size: 18px;
	background-color: var(--accent-color);
	/* box-shadow: 0 2px 4px rgba(0,0,0,0.1); */
	color: #fff;
	margin: 0 10px;
}

.bnr-pro-btn:hover {
	color: #fff;
}

.bnr-pro-btn::after {
	background: var(--primary-color);
}

h2 {
	font-size: 40px;
	color: var(--text-color);
	margin-bottom: 40px;
	text-align: center;
}

.trusted-by-section {
	margin-top: 80px !important;
	text-align: center;
}

.trusted-by-section h2 {
	margin-bottom: 10px;
}

.trusted-by-section p {
	margin-bottom: 40px;
	font-size: 20px;
	color: #222222;
}

.trusted-heading {
	color: #aaa;
	font-size: 16px;
	margin-bottom: 30px;
	font-weight: 500;
}

.logo-grid {
	display: grid;
	grid-template-columns: repeat(6, 1fr);
	gap: 1px;
	justify-items: center;
	background-color: #fff;
	box-shadow: 0 0px 10px rgba(0, 0, 0, 0.1);
	padding: 1px;
	background-color: #ddd;
}

.logo-box {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 30px;
	width: 100%;
	background: #fff;
}

/* .logo-grid > .logo-box:nth-child(6),
.logo-grid > .logo-box:nth-child(12) {
  border-right: none;
}

.logo-grid > .logo-box:nth-child(n+7) {
  border-bottom: none;

} */

.logo-box img {
	max-height: 80px;
	max-width: 100%;
	object-fit: contain;
}

.trusted-by-section {
	max-width: 1500px;
	margin: 0 auto;
}

.costing-section {
	margin-top: 80px;
}

.costing-section h2 {
	margin-bottom: 10px;
}

.costing-section p {
	font-size: 20px;
	color: #222222;
	text-align: center;
}

.costing-box {
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
	padding: 30px;
	border-radius: 12px;
	height: 100%;
}

.costing-box h3 {
	font-size: 40px;
	font-weight: 700;
	color: var(--text-color);
	margin: 8px 0;
}

.costing-box p {
	font-size: 18px;
	color: #000000;
	margin-bottom: 5px;
	text-align: left;
}

.blue-gra {
	background-image: linear-gradient(140deg, #EEF3FF 0%, #B4C7FF 100%);
}

.prpl-gra {
	background-image: linear-gradient(140deg, #F4EEFC 0%, #DECBF6 100%);
}

.ylw-gra {
	background-image: linear-gradient(140deg, #FFEDE0 0%, #FEBF91 100%);
}

.platform-section {
	margin-top: 80px;
}

.platform-section h2 {
	margin-bottom: 10px;
}

.platform-section p {
	font-size: 20px;
	color: #222222;
	margin-bottom: 40px;
}

.platform-video {
	max-width: 1500px;
	margin: 0 auto;
}

.announcement-card {
	position: relative;
}

.chy-plybtn-1 {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

.chy-plybtn-1 .icon {
	flex: 0 0 auto;
	width: 115px;
	height: 115px;
	text-align: center;
	display: inline-flex;
	justify-content: center;
	align-items: center;
	line-height: 1;
	background: #fff;
	border-radius: 50%;
	font-size: 35px;
	color: var(--primary-color);
	animation: chy-plybtn-1 3s infinite ease;

}

.chy-plybtn-1 .text {
	display: inline-block;
	font-size: 17px;
	line-height: 1;
	text-transform: capitalize;
	margin-left: 18px;
	font-weight: 900;
}

@keyframes chy-plybtn-1 {
	0% {
		outline: 0px solid rgba(85, 90, 241, 0);
	}

	50% {
		outline: 15px solid rgba(85, 90, 241, 0.8);
	}

	100% {
		outline: 0px solid rgba(85, 90, 241, 0);
	}
}

.service-content {
	margin: 0 !important;
}

.service-content p {
	margin: 0 !important;
	font-size: 16px !important;
}

.service-title {
	margin-bottom: 10px;
}

.service-item .icon-box {
	margin-bottom: 20px;
}

.workplace-section {
	margin-top: 80px;
}

.benefits-section {
	padding: 40px 20px;
	background-color: #fff;
}

.workplace-box {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 0;
	border: 1px solid #3973e1b3;
}

.benefit-box {
	padding: 30px 20px;
	border-right: 1px solid #3973e1b3;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 15px;
	transition: all 0.3s ease-in-out;
}

.benefit-box:last-child {
	border-right: none;
}

.benefit-box:hover {
	background: #fff;
	/* box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px; */
	box-shadow: rgba(0, 0, 0, 0.16) 0px 10px 36px 0px, rgba(0, 0, 0, 0.06) 0px 0px 0px 1px;
	transform: scale(1);
}


.icon-circle {
	width: 60px;
	height: 60px;
	background-color: var(--primary-color);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 25px;
	color: #fff;
}

.icon-circle img {
	width: 35px;
	height: 35px;
	filter: invert(100%) brightness(200%);
}

.benefit-box h4 {
	font-size: 24px;
	font-weight: 600;
	margin: 0;
}

.benefit-box p {
	font-size: 16px;
	color: #222222;
	margin: 0;
}

.about-section {
	margin-top: 80px;
}

.about-section h2 {
	margin-bottom: 10px;
}

.about-section p {
	font-size: 20px;
	color: #222222;
	margin-bottom: 40px;
	text-align: center;
}

.streffie-absolute-section {
	position: relative;
	padding: 100px 0;
	overflow: hidden;
}

.bg-img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	z-index: 0;
}

.streffie-wrapper {
	position: relative;
	min-height: 650px;
	z-index: 1;
}

.phone-img {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	z-index: 0;
	text-align: center;
	margin: auto;
}

.solh-logo {
	position: absolute;
	top: 0;
	left: 16%;
	z-index: 3;
}

.feature-card {
	position: absolute;
	background: #fff;
	border-radius: 12px;
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
	padding: 20px;
	max-width: 280px;
	z-index: 1;
}

.feature-card h4 {
	font-size: 24px;
	font-weight: 600;
	margin-bottom: 10px;
	display: block;
	border-bottom: 1px solid #000;
}

.feature-card p {
	font-size: 16px;
	line-height: 1.6;
	text-align: left;
	margin: 0 !important;
}

/* Position Cards */
.top-right {
	top: 10%;
	right: 0;
	max-width: 400px;
}

.top-left {
	top: 0;
	left: 0;
	max-width: 400px;
}

.bottom-right {
	bottom: 0;
	right: -62px;
	max-width: 460px;
}

.bottom-left {
	bottom: 120px;
	left: 25px;
	max-width: 400px;
}

.icon1,
.icon2,
.icon3,
.icon4,
.icon5,
.day-plan,
.software,
.animation1,
.animation2,
.animation3,
.animation4,
.animation5 {
	position: absolute;
}

.icon1 {
	top: -120px;
	left: -70px;
}

.icon2 {
	top: -75px;
	right: 0;
}

.icon3 {
	top: -48px;
	left: -82px;
}

.day-plan {
	bottom: -45px;
	right: -40px;
}

.icon4 {
	bottom: -82px;
	right: -54px;
}

.icon5 {
	right: 0px;
	top: -26px;
}

.software {
	right: 0px;
	top: -75px;
}

.animation1 {
	top: 60px;
	left: 35px;
}

.animation2 {
	top: 166px;
	left: 35px;
}

.animation3 {
	top: 272px;
	left: 35px;
}

.animation4 {
	top: 378px;
	left: 35px;
}

.animation5 {
	top: 484px;
	left: 35px;
}

.pbmit-img-animation {
	animation: animationimg 4s infinite alternate;
}

@keyframes animationimg {
	0% {
		transform: translateY(-20px);
	}

	100% {
		transform: translateY(20px);
	}
}

.pbmit-img-animation1 {
	animation: animationimg1 6s infinite alternate;
}

@keyframes animationimg1 {
	0% {
		transform: translateX(-50px);
	}

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


.pbmit-img-animation2 {
	animation: animationimg2 2s infinite alternate;
}

@keyframes animationimg2 {
	0% {
		transform: translateX(-10px);
	}

	100% {
		transform: translateX(10px);
	}
}


.pbmit-img-animation3 {
	animation: animationimg3 5s infinite alternate;
}

@keyframes animationimg3 {
	0% {
		transform: translateX(-30px);
	}

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

.zoom-anim {
	animation: zoom-anim 3s infinite alternate;
}

@keyframes zoom-anim {
	0% {
		transform: scale(1);
	}

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



.pbmit-img-animation4 {
	animation: animationimg3 3s infinite alternate;
}

@keyframes animationimg3 {
	0% {
		transform: translateX(-10px);
	}

	100% {
		transform: translateX(10px);
	}
}


.pbmit-img-animation5 {
	animation: animationimg3 4s infinite alternate;
}

@keyframes animationimg3 {
	0% {
		transform: translateX(-20px);
	}

	100% {
		transform: translateX(20px);
	}
}


.pbmit-img-animation6 {
	animation: animationimg3 2s infinite alternate;
}

@keyframes animationimg3 {
	0% {
		transform: translateX(-15px);
	}

	100% {
		transform: translateX(15px);
	}
}

.streffie-info-section {
	padding: 0;
}

.info-card {
	display: flex;
	gap: 20px;
	background: #fff;
	padding: 25px 30px;
	align-items: flex-start;
	border-radius: 20px;
	transition: 0.3s all ease-in-out;
	/* cursor: pointer; */
}

.info-card .icon {
	flex-shrink: 0;
	width: 55px;
	height: 55px;
	background: var(--primary-color);
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 12px;
}

.info-text h4 {
	font-size: 26px;
	font-weight: 600;
	margin-bottom: 10px;
}

.info-text p {
	font-size: 16px;
	line-height: 1.6;
	text-align: left;
	margin: 0 !important;
}

.info-card:hover {
	background: #2563eb;
	color: #fff;
}

.info-card:hover .info-text h4,
.info-card:hover .info-text p {
	color: #fff;
}

.info-card:hover .icon {
	background: #fff;
}

.info-card .icon img {
	filter: brightness(0) invert(1);
}

.info-card:hover .icon img {
	filter: none;
}

.swiper-mockup-section {
	background: linear-gradient(to bottom, #dbeafe, #ffffff);
	padding: 60px 20px 0px;
	border-radius: 24px;
	position: relative;
}

.mockup-container {
	position: relative;
	height: 500px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.phone {
	position: absolute;
	max-height: 480px;
	width: auto;
}

.phone-left {
	left: 50%;
	transform: translateX(-120%) rotate(-8deg);
	z-index: 1;
}

.phone-right {
	left: 50%;
	transform: translateX(-50%);
	z-index: 2;
}

/* Swiper pagination customization */

.swiper-pagination-bullet {
	width: 10px;
	height: 10px;
	background-color: #ccc;
	opacity: 1;
	margin: 0 5px;
	border-radius: 50%;
	transition: background 0.3s ease;
}

.swiper-pagination-bullet-active {
	background-color: #2563eb;
}

.swiper-pagination {
	bottom: 0 !important;
}

.mySwiper {
	padding-bottom: 30px;
}

.impact-section {
	margin-top: 80px;
}

.impact-box {
	text-align: center;
	margin-bottom: 30px;
}

.impact-number {
	font-size: 56px;
	font-weight: 500;
	color: #3973E1;
	/* Blue color */
	margin-bottom: 25px;
	line-height: 50px;
}

.impact-label {
	font-size: 19px;
	line-height: 25px;
}

.testimonial-section {
	padding-top: 30px;
}

.testimonial-card {
	background: #F5F5F5;
	border-radius: 12px;
	box-shadow: 0 0px 10px rgba(0, 0, 0, 0.2);
}

.rating .stars {
	color: #fbbf24;
	/* yellow star color */
	font-size: 20px;
}

.rating-value {
	font-size: 16px;
	font-weight: 500;
	margin-left: 8px;
	color: #666D80;
}

.testimonial-text {
	font-size: 18px;
	color: #666D80;
	margin-bottom: 1.5rem;
}

.author-img {
	width: 48px;
	height: 48px;
	border-radius: 50%;
}

.author-name {
	font-weight: 500;
	color: #0E1012;
	font-size: 16px;
	margin-bottom: 8px;
}

.author-title {
	font-size: 14px;
	color: #666D80;
}

.form-warea {
	margin-top: 80px;
}

.form-warea h3 {
	color: #222222;
	font-size: 50px;
	text-align: center;
	margin-bottom: 10px;
	font-weight: 600;
}

.form-warea p {
	text-align: center;
	margin-bottom: 40px;
	font-size: 20px;
	color: #222222;
}

.form-group {
	position: relative;
	margin-bottom: 1rem;
}

.form-group input,
.form-group textarea {
	width: 100%;
	padding: 20px 14px 15px;
	border: 1px solid #D2D5DA;
	border-radius: 9px;
	font-size: 14px;
	outline: none;
	transition: all 0.2s ease;
	background: white;
	box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
}

.form-group label {
	position: absolute;
	background: white;
	padding: 0 5px;
	transition: all 0.2s ease;
	pointer-events: none;
	top: -8px;
	left: 10px;
	font-size: 14px;
	font-weight: 600;
	color: #121826;
}

.form-group input:focus+label,
.form-group input:not(:placeholder-shown)+label,
.form-group textarea:focus+label,
.form-group textarea:not(:placeholder-shown)+label {
	top: -8px;
	left: 10px;
	font-size: 14px;
	font-weight: 600;
	color: #121826;
}

.form-group .input-icon {
	position: absolute;
	right: 14px;
	top: 50%;
	transform: translateY(-50%);
	font-size: 16px;
	color: #999;
}

textarea {
	resize: vertical;
}

.submit-btn {
	background-color: #2563eb;
	color: white;
	border: none;
	padding: 12px 24px;
	border-radius: 8px;
	font-weight: 500;
	font-size: 14px;
	transition: background-color 0.3s ease;
}

.submit-btn:hover {
	background-color: #1e40af;
}

button.bnr-reqst-btn {
	padding: 15px 25px;
}

.inner-brdcrmb {
	padding: 80px 0;
	background-image: linear-gradient(#ffffff 0%, #e9eefd80 100%);
	border-bottom: 1px solid #e9edff;
}

.inner-brdcrmb h1 {
	font-size: 55px;
	line-height: 1.2em;
	margin-bottom: 20px;
	/* cursor: none; */
	text-align: center;
	color: var(--text-color)
}

.inner-brdcrmb p {
	font-size: 22px;
	line-height: 1.6em;
	margin-bottom: 20px;
	/* cursor: none; */
	text-align: center;
	color: #222222;
	font-weight: 400;
}

.inner-brdcrmb h1 span {
	color: #3973E1;
}

.range-slider {
	margin-top: 10px;
	margin-bottom: 70px;
}

.rs-range {
	margin-top: 29px;
	width: 1000px;
	-webkit-appearance: none;

	&:focus {
		outline: none;
	}

	&::-webkit-slider-runnable-track {
		width: 100%;
		height: 1px;
		cursor: pointer;
		box-shadow: none;
		background: var(--accent-color);
		border-radius: 0px;
		border: 0px solid var(--accent-color);
	}

	&::-moz-range-track {
		width: 100%;
		height: 1px;
		cursor: pointer;
		box-shadow: none;
		background: var(--accent-color);
		border-radius: 0px;
		border: 0px solid var(--accent-color);
	}

	&::-webkit-slider-thumb {
		box-shadow: none;
		border: 0px solid var(--accent-color);
		box-shadow: 0px 10px 10px rgba(0, 0, 0, 0.25);
		height: 42px;
		width: 22px;
		border-radius: 22px;
		background: var(--accent-color);
		cursor: pointer;
		-webkit-appearance: none;
		margin-top: -20px;
	}

	&::-moz-range-thumb {
		box-shadow: none;
		border: 0px solid var(--accent-color);
		box-shadow: 0px 10px 10px rgba(0, 0, 0, 0.25);
		height: 42px;
		width: 22px;
		border-radius: 22px;
		background: var(--accent-color);
		cursor: pointer;
		-webkit-appearance: none;
		margin-top: -20px;
	}

	&::-moz-focus-outer {
		border: 0;
	}
}

.rs-label {
	position: relative;
	transform-origin: center center;
	display: block;
	width: 160px;
	height: 80px;
	background: transparent;
	border-radius: 50%;
	line-height: 30px;
	text-align: center;
	font-weight: bold;
	padding-top: 0;
	box-sizing: border-box;
	border: none;
	margin-left: 70px;
	left: attr(value);
	color: #000;
	font-style: normal;
	font-weight: normal;
	line-height: normal;
	font-size: 36px;

	&::after {
		content: "employees";
		display: block;
		font-size: 20px;
		letter-spacing: 0.07em;
		margin-top: -2px;
	}
}

.rs-label.student::after {
	content: "students" !important;
}

.range-box {
	margin-top: 80px;
}

.range-warea {
	background-color: var(--secondary-color);
	border-radius: 80px;
	padding: 50px;
	color: #fff;
	max-width: 1600px;
	margin: 0 auto;
}

.range-box h2 {
	margin-bottom: 10px;
}

.sub-hd {
	text-align: center !important;
	font-size: 20px !important;
	color: #222222 !important;
}

.range-warea h3 {
	text-align: left;
}

.inner-sec h2 {
	margin-bottom: 10px;
}

.inner-sec p {
	font-size: 20px;
	text-align: center;
	color: #222222;
	margin-bottom: 40px;
}

.our-approach {
	margin-top: 80px;
}

.our-approach h2 {
	margin-bottom: 10px;
}

.blue-box {
	background-color: var(--primary-color);
	padding: 20px;
	color: #fff;
	border-radius: 30px;
}

.orng-box {
	/* background-image:linear-gradient(#9f9afa 0%, #c9c6ff 100%); */
	padding: 20px;
	color: #222222;
	border-radius: 20px;
	height: 100%;
	border: 1px solid #c0c0e7;
}

.orng-box h4 {
	color: #000;
	font-size: 20px;
	margin: 8px 0;
}

.blue-box p,
.orng-box p {
	margin-bottom: 0;
}

.orng-box h3 {
	background-color: var(--accent-secondary-color);
	display: inline-block;
	width: 40px;
	height: 40px;
	text-align: left;
	border-radius: 50%;
	line-height: 42px;
	padding-left: 12px;
}

.reach-section h2 {
	margin-bottom: 10px;
}

.reach-section {
	margin-top: 80px;
}

.our-faqs {
	background-color: var(--accent-secondary-color);
	margin-top: 80px;
	padding: 80px 0;
}

.our-faqs h2 {
	text-align: left;
}

.edu-section {
	margin-top: 80px;
}

.edu-section .nav-pills {
	display: flex;
	justify-content: center;
}

.testimonial-slider {
	position: relative;
	background: var(--dark-divider-color);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	border-radius: 20px;
	padding: 0px;
}

.how-it-work {
	margin-top: 80px;
	position: relative;
	z-index: 0;
	background-attachment: fixed;
}

.how-it-work::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	opacity: 80%;
	background: #2847a5;
	width: 100%;
	height: 100%;
	z-index: -1;
	border-radius: 20px;
}

.work-step-content h3,
.work-step-content p {
	color: #fff;
}

.work-steps-item {
	position: relative;
	background: rgb(107 127 189 / 30%);
	backdrop-filter: blur(5px);
	-webkit-backdrop-filter: blur(10px);
	border-radius: 20px;
	height: calc(100% - 30px);
	margin-bottom: 30px;
	padding: 40px;
	overflow: hidden;
	border: 1px solid #5e7ecb;
}

.work-steps-item::before {
	content: '';
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 0;
	background-color: var(--accent-color);
	border-radius: 999px 999px 0 0;
	transition: all 0.4s ease-in-out;
	z-index: -1;
}

.work-steps-item:hover::before {
	height: 100%;
	border-radius: 0;
}

.how-it-work h2 {
	color: #fff;
	margin-bottom: 30px;
}

.work-step-content h3 {
	font-size: 22px;
	margin-bottom: 10px;
}

.work-step-content p {
	font-size: 16px;
	line-height: 27px;
	margin-bottom: 20px !important;
}

.work-steps-item ul {
	padding: 0;
}

.work-steps-item ul li {
	list-style-type: none;
	color: #fff;
	margin-bottom: 10px;
	font-size: 16px;
	line-height: 20px;
	padding-left: 15px;
	position: relative;
	line-height: 25px;
}

.work-steps-item ul li i {
	position: absolute;
	left: 0;
	top: 7px;
	font-size: 10px;
}

.testimonials-section {
	margin-top: 80px;
}

.testimonials-section h2 {
	text-align: left;
}

.testi-box {
	background-color: var(--secondary-color);
	padding: 30px;
	border-radius: 20px;
}

.awardSwiper {
	margin: auto;
	position: relative;
}

.award-slide {
	position: relative;
	text-align: center;
	padding: 0;
	overflow: hidden;
}

.circle-bg {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 300px;
	height: 300px;
	background: linear-gradient(#DBE5FF 0%, #FFFFFF 100%);
	border-radius: 50%;
	transform: translate(-50%, -50%);
	z-index: 1;
}

.award-image {
	position: relative;
	z-index: 2;
	padding: 50px 0;
}

.award-text {
	position: relative;
	z-index: 2;
	margin-top: 15px;
}

.award-text h4 {
	font-size: 18px;
	font-weight: bold;
	color: #111;
	line-height: 1.4;
}

.swiper-pagination {
	margin-top: 20px;
	text-align: center;
}

.swiper-pagination-bullet {
	background-color: #7daeff;
	opacity: 0.4;
}

.swiper-pagination-bullet-active {
	background-color: #006eff;
	opacity: 1;
}

.testimonial-box {
	max-width: 900px;
	margin: 0 auto;
	position: relative;
}

.quote-icon {
	font-size: 80px;
	color: #d9e5d1;
	position: absolute;
	top: -20px;
	left: -10px;
	z-index: 0;
	font-weight: bold;
}

.testimonial-text {
	font-size: 18px;
	line-height: 1.8;
	color: #222222;
	position: relative;
	z-index: 1;
}

.author {
	margin-top: 20px;
}

.author .name {
	color: #000;
	font-weight: bold;
	margin-bottom: 2px;
}

.author .designation {
	color: #222222;
	font-size: 14px;
}

/* Navigation styling */
.testimonial-nav .swiper-button-prev,
.testimonial-nav .swiper-button-next {
	width: 40px;
	height: 40px;
	border: 1px solid #333;
	border-radius: 50%;
	background: transparent;
	color: #333;
	font-weight: bold;
	transition: all 0.3s ease;
}

.testimonial-nav .swiper-button-prev:hover,
.testimonial-nav .swiper-button-next:hover {
	background: #333;
	color: #fff;
}

.testimonial-nav .swiper-button-prev {
	right: 60px;
	bottom: 0px;
	top: inherit;
	left: inherit;
}

.testimonial-nav .swiper-button-next {
	right: 0;
	bottom: 0px;
	top: inherit;
	left: inherit;
}

.swiper-button-next:after,
.swiper-button-prev:after {
	font-size: 16px;
}

.testi-box {
	position: relative;
}

.testi-box::after {
	content: "\f10d";
	position: absolute;
	font-family: "Font Awesome 6 Free";
	font-style: normal;
	font-weight: 900;
	font-size: 100px;
	top: 60px;
	left: 60px;
	color: #dadaf9;
}

.reverse-bg {
	background-image: linear-gradient(#e9eefd80 0%, #ffffff 100%);
	margin-top: 80px;
	border-bottom: none;
	border-top: 1px solid #e9edff;
	padding-bottom: 0;
}

.reverse-bg h2 {
	margin-bottom: 10px;
}

.mrgn-80 {
	margin-top: 80px;
}

.testimonials-content h2,
.about-us-content h2 {
	text-align: left;
	margin-bottom: 10px;
}

.ylw-bg {
	background-color: var(--accent-secondary-color) !important;
}

.text-left {
	text-align: left !important;
	margin: 0 !important;
}

.work-steps-item p {
	color: #fff;
}

.our-results h2,
.our-care-content h2 {
	margin-bottom: 25px;
}

.row-rev {
	display: flex;
	flex-direction: row-reverse;
}

.about-us.bg-section {
	padding: 80px 0;
}

.clinical-tl .icon-box {
	background-color: var(--accent-color);
}

.clinical-tl .icon-box img {
	filter: brightness(0) invert(1) !important;
}

.clinical-tl .icon-box::before {
	background-color: var(--primary-color) !important;
}

.mb-20 {
	margin-bottom: 40px !important;
}

.mb-10 {
	margin-bottom: 10px !important;
}

.hd-sml-font {
	font-size: 30px !important;
}

.mt-20 {
	margin-top: 20px !important;
}

.faqs-cta-box-content .btn-default {
	background-color: #fff;
	color: var(--primary-color);
}

.faqs-cta-box-content .btn-default.btn-dark:hover {
	background-color: var(--accent-color);
	color: #fff;
}

.faqs-cta-box-content .btn-default.btn-dark::after {
	background-color: var(--accent-color);
}

.how-it-work p {
	color: #fff;
}

.work-step-content {
	margin-bottom: 10px;
}

.work-steps-item ul {
	margin: 0 !important;
}

.work-steps-item ul li:last-child {
	margin-bottom: 0 !important;
}

.pt-50 {
	padding-top: 50px !important;
}

.support-sec {
	margin-top: 0px;
}

.gallery {
	padding: 80px 0 0;
}

.sec2 h1 {
	font-size: 40px;
	padding: 0px;
	margin: 0px;
}

.support-box {
	border-bottom: 2px solid #ddd;
	padding-bottom: 50px;
	margin-top: 50px;
}

.sec2 h2 {
	font-size: 30px;
	margin-bottom: 20px;
}

.box-warea {
	overflow: hidden;
	margin: 0 0 30px 0;
	border-radius: 10px 10px 10px 10px;
	background-color: #ffffff;
	box-shadow: 0 3px 6px rgba(32, 33, 36, .15);
	transition: 0.4s;
	display: flex;
	flex-wrap: wrap;
	overflow: hidden;
}

.infobox_container {
	position: relative;
}

.gallery .box-warea figure {
	overflow: hidden;
	position: relative;
}

.content-wrapper {
	min-height: 80px;
}

.gallery .infobox_content {
	padding: 20px;
	font-weight: 600;
	line-height: 22px;
	color: #000;
	overflow: hidden;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	height: 80px;
	font-size: 16px;
}

.services-one__single {
	position: relative;
	margin-bottom: 30px;
	background: #ffffff;
	box-shadow: 0px 0px 10px 0px rgba(201, 199, 205, 0.6);
	display: flex;
	flex-wrap: wrap;
	flex-direction: column;
	border-radius: 10px;
	overflow: hidden;
}

.services-one__single-img {
	position: relative;
	display: block;
	z-index: 1;
	border-radius: 10px 10px 0 0;
}

.services-one__single-img .inner {
	position: relative;
	display: block;
	background: #ededed;
	overflow: hidden;
	z-index: 1;
	border-radius: 10px 10px 0 0;
}

.services-one__single-img .inner:before {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	transition-delay: .1s;
	transition-timing-function: ease-in-out;
	transition-duration: .7s;
	transition-property: all;
	background: rgba(0, 0, 0, 0.6);
	opacity: 0;
	z-index: 1;
	content: "";
	border-radius: 10px 10px 0 0;
}

.services-one__single:hover .services-one__single-img .inner:before {
	opacity: 1;
	border-radius: 10px 10px 0 0;
}

.services-one__single-img .inner img {
	width: 100%;
	transition: .5s ease-in-out;
	transform: scale(1);
	mix-blend-mode: normal;
	border-radius: 10px 10px 0 0;
}

.services-one__single:hover .services-one__single-img .inner img {
	transform: scale(1.2);
	border-radius: 10px 10px 0 0;
}

.services-one__single-content {
	position: relative;
	display: block;
	padding: 30px;
}

.services-one__single-content-inner {
	position: relative;
	display: block;
}

.services-one__single .bnr-reqst-btn {
	margin: 0 15px 0 0;
	padding: 15px 20px;
	font-size: 14px;
}

.services-one__single .bnr-pro-btn {
	padding: 15px 20px;
	font-size: 14px;
	margin: 0 !important;
}

.box-warea {
	overflow: inherit;
	margin: 0 0 30px 0;
	border-radius: 10px 10px 10px 10px;
	background-color: #ffffff;
	box-shadow: 0 3px 6px rgba(32, 33, 36, .15);
	transition: 0.4s;
	display: flex;
	flex-wrap: wrap;
	overflow: hidden;
}

.box1 .box-warea a {
	color: #000;
	transition: all 0.3s ease;
	overflow: hidden;
	max-height: 400px; 
} 

.box1 .box-warea img {
	transition: all 0.3s ease;
	height: 100%;
}

.box-warea:hover {
	box-shadow: 0 3px 6px rgba(32, 33, 36, .3);
}

.box-warea:hover img {
	transform: scale(1.1);
}

.box-warea {
	margin: 0 0 30px 0;
	overflow: hidden;
}

.box-warea figure {
	overflow: hidden;
}

.newsRoomTitle{
	text-align: center;
	width: 100%;
	margin:15px 0;
}

.newsRoomTitle a {
	font-size: 16px;
	color: var(--text-color);
	/* line-height:18px;  */
	font-weight: 600;	
	padding: 0 15px;
	text-decoration: none;

	display: -webkit-box;
	-webkit-line-clamp: 3;   /* limit to 3 lines */
	-webkit-box-orient: vertical;
	overflow: hidden;
	text-overflow: ellipsis;
}
.newsRoomTitle a:hover{
	color:var(--primary-color)
}

.infobox_container img {
	overflow: hidden;
}

.infobox_container {
	position: relative;
}

.infobox_container img {
	border-radius: 10px 10px 0 0;
	width: 100%;
	transition: 0.4s;
}

.content-wrapper {
	min-height: 100px;
}

.infobox_content {
	padding: 20px 30px;
	font-weight: 600;
	line-height: 25px;
	color: #000;
	overflow: hidden;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	height: 68px;
}

.mt-30 {
	margin-top: 30px !important;
}

.video-warea {
	margin-bottom: 40px;
	border-radius: 10px;
	background-color: var(--accent-color);
}

.video-warea iframe {
	border-radius: 10px 10px 0 0;
}

.video-title {
	padding: 15px 30px 20px;
	font-weight: 600;
	line-height: 22px;
	font-size: 22px;
	color: #fff;
	text-align: center;
	background-color: var(--accent-color);
	border-radius: 0 0 10px 10px;
}

/* megamenu */

.mega-popup.add-width {
	width: 600px;
}

.mega-popup {
	position: absolute;
	top: 75px;
	left: 50%;
	transform: translateX(-20%);
	background: #fff;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
	border-radius: 10px;
	padding: 25px;
	width: 425px;
	display: none;
	z-index: 1000;
}

.mega-popup.active {
	display: block;
}

#megaMenu {
	position: relative;
	/* for absolute positioning of popup */
}

.menu-block {
	padding: 15px;
}

.menu-block .menu-title {
	display: flex;
	align-items: center;
	gap: 10px;
	justify-content: flex-start;
	/* margin-bottom: 5px; */
}

.menu-block .menu-title a {
	text-align: left;
	padding: 0px !important;
}

.menu-block .menu-title h4 {
	font-size: 16px;
	color: var(--text-color);
}

.menu-block p {
	font-size: 15px;
	color: #4b5563;
	line-height: 1.5;
	margin: 5px 0 0 0;
	font-weight: 500;
	text-align: left;
}

.menu-block .menu-title img {
	border: #ddd solid 1px;
	padding: 7px;
	background: #fff;
	border-radius: 7px;
	width: 40px;
	height: auto;
	line-height: 25px;
	margin-bottom: 5px;
	color: DARKORANGE;
	font-size: 20px;
	text-align: center;
	transition: all 0.3s ease-in-out;
}

.menu-block:hover {
	background-color: #f2f1fe;
	border-radius: 7px;
}

.menu-block:hover .menu-title img {
	background: #fff;
	color: #fff;
	border-color: var(--primary-color);
}

.menu-block:hover .menu-title h4 {
	color: var(--primary-color);
}

.mega-popup .grid-width {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 25px;
}

.about-footer h2 {
	font-size: 28px;
	text-align: left;
	color: #fff;
	margin-bottom: 10px;
}

.ml-1 {
	margin-left: 10px;
}

/* Mobile Menu */

.mobile-menu ul {
	margin: 0;
	padding: 0;
}

.mobile-menu li {
	list-style: none;
	padding: 12px 0;
	border-bottom: #f7f6fb solid 1px;
}

.mobile-menu li a {
	text-decoration: none;
	color: #333;
	font-size: 18px;
	font-weight: 500;
}

.mobile-menu li button.accordion-button {
	font-size: 18px;
	font-weight: 500;
}

.mobile-menu .accordion-item {
	border: none;
}

.mobile-menu .accordion-button {
	padding: 0;
}

.mobile-menu .accordion-button:not(.collapsed) {
	outline: none;
	background: transparent;
	border-radius: none;
	box-shadow: none;
}

.mobile-menu .accordion-button:focus {
	box-shadow: none
}

.mobile-menu .accordion-body ul {
	margin: 10px 0;
	background: #f7f6fb;
	padding: 20px;
}

.mobile-menu .accordion-body ul li {
	line-height: 22px;
	border-bottom: #eee solid 1px;
}

.mobile-menu li a.btn-default {
	color: #fff;
}

.baraIcon {
	background: var(--accent-color);
	border-color: var(--accent-color);
	font-size: larger;
}

.footer_app {
	display: flex;
	gap: 10px;
	align-items: center;
}

.theory {
	text-align: center;
	padding: 80px 0;
	margin-top: 80px;
}

.theory span {
	font-size: 20px;
	font-weight: 600;
	color: var(--accent-color);
	text-transform: uppercase;
	margin-bottom: 10px;
	display: inline-block;
}

.icon-box1 {
	margin-bottom: 20px;
}

.icon-box1 img {
	position: relative;
	z-index: 1;
	border-radius: 8px;
}

/* .topSpacing{
	margin-top: 50px;	 
} */

/* mega overlay */
.mega-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.3);
	display: none;
	z-index: 11;
}

.mega-overlay.active {
	display: block;
}

/* end mega overlay */
.font-lg {
	font-size: 20px;
	line-height: 28px;
}

.list-unstyled {
	padding: 6px 0 0;
}

#featureImage {
	width: 100%;
	height: auto;
	max-height: 500px;
	object-fit: contain;
}

.proven-impact h3 {
	font-size: 20px !important;
}

.proven-impact .service-title {
	margin-bottom: 20px;
}

.proven-impact .service-item .icon-box {
	margin-bottom: 10px;
}

.proven-impact .service-item {
	padding: 30px;
}

/* .proven-impact .service-item:hover h3, .proven-impact .service-item:hover p {
	border: 1px solid #ddd;
} */
.image-animation {
	position: relative;
	overflow: unset;
}

.image-animation img {
	width: auto;
	aspect-ratio: unset;
	object-fit: none;
	border-radius: 0;
}

.solh-express .post-featured-image img {
	aspect-ratio: unset;
}

.solh-express .post-item-content h2 {
	margin-bottom: 0;
	text-align: left;
}

.left-posi {
	left: 100px !important;
}

.bg-clr {
	background-color: #fff;
	padding: 8px;
	border-radius: 10px !important;
}

.org-bg-hd {
	background-color: var(--accent-color);
	color: #fff;
	font-size: 16px;
	font-weight: 500;
	display: inline-block;
	width: auto;
	padding: 10px 20px;
	border-radius: 30px;
	margin-bottom: 30px;
}

/* Leadership flip css */

.box-item {
	position: relative;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	width: 100%;
	margin: 0px 0 30px;
}

.flip-box {
	-ms-transform-style: preserve-3d;
	transform-style: preserve-3d;
	-webkit-transform-style: preserve-3d;
	perspective: 1000px;
	-webkit-perspective: 1000px;
}

.flip-box-front,
.flip-box-back {
	position: relative;
	background-size: cover;
	background-position: center;
	border-radius: 20px;
	min-height: 450px;
	-ms-transition: transform 0.7s cubic-bezier(.4, .2, .2, 1);
	transition: transform 0.7s cubic-bezier(.4, .2, .2, 1);
	-webkit-transition: transform 0.7s cubic-bezier(.4, .2, .2, 1);
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

.flip-box-front {
	-ms-transform: rotateY(0deg);
	-webkit-transform: rotateY(0deg);
	transform: rotateY(0deg);
	-webkit-transform-style: preserve-3d;
	-ms-transform-style: preserve-3d;
	transform-style: preserve-3d;
}

.flip-box:hover .flip-box-front {
	-ms-transform: rotateY(-180deg);
	-webkit-transform: rotateY(-180deg);
	transform: rotateY(-180deg);
	-webkit-transform-style: preserve-3d;
	-ms-transform-style: preserve-3d;
	transform-style: preserve-3d;
}

.flip-box-back {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	background-color: #4e76f0;
	-ms-transform: rotateY(180deg);
	-webkit-transform: rotateY(180deg);
	transform: rotateY(180deg);
	-webkit-transform-style: preserve-3d;
	-ms-transform-style: preserve-3d;
	transform-style: preserve-3d;
	display: flex;
	align-items: center;
	padding: 0 25px;
}

.flip-box:hover .flip-box-back {
	-ms-transform: rotateY(0deg);
	-webkit-transform: rotateY(0deg);
	transform: rotateY(0deg);
	-webkit-transform-style: preserve-3d;
	-ms-transform-style: preserve-3d;
	transform-style: preserve-3d;
}

.flip-box-front .inner {
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	padding: 0px;
	/* height: 0; */
	z-index: 2;
	border-radius: 0 0 20px 20px;
	padding: 40% 20px 0 20px;
	background: -moz-linear-gradient(top, rgba(0, 0, 0, 0) 0%, #000000 100%);
	background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0) 0%, #000000 100%);
	background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, #000000 100%);
}

.flip-box-front .flip-box-header {
	font-size: 22px;
	margin-top: 25px;
	color: #fff !important;
}

.flip-box-front .inner p {
	font-size: 16px;
}

.flip-box p {
	font-size: 16px;
	color: #fff;
	line-height: 1.5;
	margin-bottom: 0px;
	font-weight: 300;
	margin-bottom: 15px;
}

.flip-box p.sub-heading {
	margin: 5px 0 15px;
	color: #fff;
	text-transform: uppercase;
	font-size: 15px !important;
	font-weight: 400 !important;
	position: relative;
}

.flip-box p.sub-heading::before {
	content: "";
	background-color: #4e76f0;
	width: 50px;
	height: 1px;
	position: absolute;
	left: 0px;
	right: 0;
	margin: auto;
	bottom: -3px;
}

.flip-box-img {
	margin-top: 25px;
}

.flip-box-button {
	background-color: transparent;
	border: 2px solid #fff;
	border-radius: 2px;
	color: #fff;
	cursor: pointer;
	font-size: 20px;
	font-weight: bold;
	margin-top: 25px;
	padding: 15px 20px;
	text-transform: uppercase;
}

.flip-box-back ul.team-social {
	margin: 0;
	padding: 0;
}

.team-social li {
	display: inline-block;
	margin-right: 5px;
}

.team-social li:nth-child(last) {
	margin-right: 0;
}

.team-social li a {
	display: inline-block;
	width: 40px;
	height: 40px;
	line-height: 45px;
	font-size: 15px;
	text-align: center;
	-webkit-transition: all .3s;
	transition: all .3s;
	background-color: #fff;
	border-style: solid;
	border-width: 1px 1px 1px 1px;
	border-color: #fff;
	text-align: center;
	text-decoration: none;
	border-radius: 50% 50% 50% 50%;
}

.team-social li a:hover {
	color: #FFFFFF;
	background-color: transparent;
	border-style: solid;
	border-width: 1px 1px 1px 1px;
	border-color: #fff;
}

.team-social li i {
	font-size: 17px;
	overflow: hidden;
	color: #4e76f0;
}

.team-social li a:hover i {
	-webkit-animation: iconTranslateY .4s forwards;
	animation: iconTranslateY .4s forwards;
	color: #fff;
}

@-webkit-keyframes iconTranslateY {
	49% {
		-webkit-transform: translateY(100%);
		transform: translateY(100%);
	}

	50% {
		opacity: 0;
		-webkit-transform: translateY(-100%);
		transform: translateY(-100%);
	}

	51% {
		opacity: 1;
	}
}

@keyframes iconTranslateY {
	49% {
		-webkit-transform: translateY(100%);
		transform: translateY(100%);
	}

	50% {
		opacity: 0;
		-webkit-transform: translateY(-100%);
		transform: translateY(-100%);
	}

	51% {
		opacity: 1;
	}
}

/* end leadership flip css */

.form-group span.error-message {
    font-size: 13px;
    margin: 5px 0 0;
    display: block;
}

#backToTop {
    position: fixed;
    bottom: 20px; right: 20px;
    background:var(--primary-color);
    color:var(--white-color);
    padding:12px 15px;
	font-size:22px;     
    cursor: pointer; border-radius: 4px;
	transition: all 0.3s ease-in-out;
	z-index: 111;	 
	border:#6885f4 solid 1px;
}
#backToTop:hover{
	background-color:var(--accent-color);
	color:var(--white-color);
	border:var(--accent-color) solid 1px;	
}