/* ----------------------------------------------------------------------------------------
* Author        : Awaiken
* Template Name : Hipno - Psychology and Counseling HTML Template
* File          : CSS File
* Version       : 1.0
* ---------------------------------------------------------------------------------------- */
/* INDEX
----------------------------------------------------------------------------------------
01. Global Variables
02. General css
03. Header css
04. Hero css
05. About Us css
06. Our Services css
07. Why Choose Us css
08. What We Do css
09. Case Study css
10. How It Work css
11. Cta Box Css
12. Our Testimonial css
13. Our FAQs css
14. Our Blog css
15. Our Appointment css
16. Footer css
17. About Us Page css
18. Services Page css
19. Services Single css
20. Blog Archive css
21. Blog Single css
22. Case Study Page css
23. Case Study Single css
24. Team Page css
25. Team Single css 
26. Pricing Page css
27. Testimonial Page css
28. Image Gallery css
29. Video Gallery css
30. FAQs Page css
31. Contact Us Page css
32. Book Appointment Page cs
33. 404 Error Page css
34. Responsive css
-------------------------------------------------------------------------------------- */

/************************************/
/*** 	 01. Global Variables	  ***/
/************************************/	

:root{
	--primary-color			: #023c4a;
	--secondary-color		: #F9F9F9;
	--text-color			: #181818;
	--accent-color			: #509093;
	--white-color			: #FFFFFF;
	--divider-color			: #EEEDED;
	--dark-divider-color	: #FFFFFF1A;
	--error-color			: rgb(230, 87, 87);
	--default-font			: "Jost", sans-serif;
	--accent-font			: "Arimo", sans-serif;
}

.space{
	padding: 80px 0;
}
.space-top{
	padding-top: 80px;
}
.space-bottom{
	padding-bottom: 80px;
}


/************************************/
/*** 	   02. General css		  ***/
/************************************/

body{
	font-family: var(--default-font);
	font-size: 16px;
	font-weight: 400;
	line-height: 1.6em;
	background-color: var(--white-color);
	color: var(--text-color);
}

p{
	line-height: 1.6em;
	margin-bottom: 1.6em;
}

h1,
h2,
h3,
h4,
h5,
h6{
	margin :0;
	font-family: var(--accent-font);
	font-weight: 400;
	line-height: 1.1em;
	color: var(--primary-color);
}

figure{
	margin: 0;
}

img{
	max-width: 100%;
}

a{
	text-decoration: none;
}

a:hover{
	text-decoration: none;
	outline: 0;
}

a:focus{
	text-decoration: none;
	outline: 0;
}

html,
body{
	width: 100%;
	overflow-x: clip;
}

@media only screen and (min-width: 1200px){
	.container{
		max-width: 1195px;
	}
}

.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: 18px;
/*	line-height: 1.2em;*/
	text-transform: capitalize;
	background: var(--primary-color);
	color: var(--white-color);
	border-radius: 50px;
/*	padding: 16px 20px;*/
	padding-right: 20px;
	border: 1px solid var(--accent-color);
	overflow: hidden;
	transition: all 0.6s ease-in-out;
	z-index: 1;
}

.btn-default:hover{
	background-color: transparent;
	color: var(--white-color);
}

.btn-default::before{
	content: '';
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    left: -15%;
	right: 0;
    width: 0;
    height: 106%;
    background: var(--accent-color);
    transform: skew(45deg);
    transition: all 0.4s ease-in-out;
    z-index: -1;
}

.btn-default:hover::before{
	width: 100%;
    transform: skew(0deg);
    left: 0;
}

.btn-default i{
/*	font-size: 20px;*/
    margin-right: 5px;
    color: var(--white-color);
    width: 48px;
    height: 48px;
    line-height: 48px;
    background: #509093;
/*    border-radius: 35px;*/
	margin-right: 12px;
}

.btn-default.btn-highlighted{
	background-color: transparent;
	border: 1px solid var(--primary-color);
	color: var(--primary-color);
	padding: 15px 20px;
}

.btn-default.btn-highlighted:hover{
	color: var(--white-color);
}

.readmore-btn{
	position: relative;
	font-size: 18px;
	font-weight: 500;
	text-transform: capitalize;
	color: var(--accent-color);
	padding-right: 30px;
	transition: all 0.3s ease-in-out;
}

.readmore-btn:hover{
	color: var(--primary-color);
}

.readmore-btn::before{
	content: '\f08b';
	font-family: 'FontAwesome';
	position: absolute;
	top: 50%;
	bottom: 0;
	right: 0;
	transform: translateY(-50%);
	background-position: right center;
	background-size: cover;
	width: 20px;
	height: 20px;
	transition: all 0.3s ease-in-out;
}

.readmore-btn:hover:before{
/*	filter: brightness(0) invert(0);*/
}

.cb-cursor:before{
	background: var(--accent-color);
}

.preloader{
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 1000;
	background-color: 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(--white-color) transparent var(--white-color);
	animation: rotate-loading 1.5s linear 0s infinite normal;
	transform-origin: 50% 50%;
}

.loading-container:hover .loading,
.loading-container .loading{
	transition: all 0.5s ease-in-out;
}

#loading-icon{
	position: absolute;
	top: 50%;
	left: 50%;
	max-width: 66px;
	transform: translate(-50%, -50%);
}

@keyframes rotate-loading{
	0%{
		transform: rotate(0deg);
	}

	100%{
		transform: rotate(360deg);
	}
}

.section-row{
	margin-bottom: 80px;
}

.section-row .section-title{
	margin-bottom: 0;
}

.section-btn{
	text-align: end;
}

.section-title{
	margin-bottom: 45px;
}

.section-title-content p{
	margin: 0;
}

.section-title h3{
	display: inline-block;
	position: relative;
	font-family: var(--default-font);
	font-size: 14px;
    font-weight: 500;
	line-height: 1.1em;
	letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--accent-color);
	padding-left: 18px;
    margin-bottom: 15px;
}

.section-title h3::before{
	content: '';
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    background: var(--accent-color);
	border-radius: 50%;
    width: 8px;
    height: 8px;
}

.section-title h1{
	font-size: 41px;
	line-height: 48px;
	font-weight: 600;
	margin-bottom: 0;
	cursor: none;
	text-transform: uppercase;
}

.section-title h2{
	font-size: 44px;
	font-weight: 700;
	margin-bottom: 0;
	cursor: none;
	text-transform: uppercase;
}

.section-title p{
	margin-top: 20px;
	margin-bottom: 0;
	font-size: 17px;
    line-height: 29px;
}

.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;
	border-bottom: 1px solid var(--dark-divider-color);
	z-index: 100;
}

header.main-header .header-sticky{
	position: relative;
	top: 0;
	z-index: 100;
}

header.main-header .header-sticky.hide{
	transform: translateY(-100%);
	transition: transform 0.3s ease-in-out;
	border-radius: 0;
}

header.main-header .header-sticky.active{
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	border-radius: 0;
    transform: translateY(0);
	border-bottom: 1px solid var(--dark-divider-color);
	backdrop-filter: blur(30px);
	-webkit-backdrop-filter: blur(30px);
}

header.main-header .header-sticky.active::before{
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	background: var(--primary-color);
	opacity: 80%;
	width: 100%;
	height: 100%;
}

.logo-area{
	display: flex;
	align-items: center;
	gap: 15px;
}
.logo-area .logo-icon img{
	width: 115px;
}
.logo-area .logo-text h1{
	font-size: 26px;
	color: #fff;
    font-weight: 700;
    margin-bottom: 0px;
    text-transform: uppercase;
}
.logo-area .logo-text p{
	font-size: 20px;
	color: #fff;
	margin-bottom: 0;
}


.top-header{
	background: #295762;
	padding: 4px 0;
}
.top-header .top-header-area{
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.top-header-left ul{
	margin: 0;
	padding: 0;
}
.top-header-left ul li{
	display: inline-block;
	color: #fff;
	font-size: 17px;
}
.top-header-left ul li:not(:last-child){
	margin-right: 15px;
}
.top-header-left ul li i{
	width: 30px;
	height: 30px;
	line-height: 30px;
	background: #509093;
	margin-right: 10px;
	border-radius: 50%;
	font-size: 15px;
	color: #fff;
}
.top-header-left ul li a{
	color: #fff;
	transition: 0.5s ease;
}
.top-header-left ul li a:hover{
	color: #509093;	
}


.top-header-right ul{
	margin: 0;
	padding: 0;
}
.top-header-right ul li{
	display: inline-block;
	list-style: none;
}
.top-header-right ul li i{
	width: 35px;
	height: 35px;
	line-height: 35px;
	background: #509093;
	margin-right: 1px;
	border-radius: 30px;
	color: #fff;
	transition: 0.5s ease;
}
.top-header-right ul li i:hover{
	color: #509093;
	background: #fff;
}

.navbar{
	padding: 30px 0;
	align-items: center;
}

/*.navbar:before{
	position: absolute;
	content: '';
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(180deg, #023c4a, #023c4a17);
}*/

.navbar-brand{
	padding: 0;
	margin: 0;
	position: relative;
}

.main-menu .nav-menu-wrapper{
	flex: 1;
	text-align: center;
	margin-left: 20px;
}

.main-menu .nav-menu-wrapper > ul{
	align-items: center;
	display: inline-flex;
}

.main-menu ul li{
	margin: 0;
	position: relative;
}

.main-menu ul li a{
/*	font-family: var(--accent-font);*/
	font-size: 18px;
	font-weight: 400;
	padding: 14px 12px !important;
	color: var(--white-color);
	text-transform: capitalize;
	transition: all 0.3s ease-in-out;
}

.main-menu ul li.submenu > a:after{
	content: '\f107';
	font-family: 'FontAwesome';
	font-weight: 900;
	font-size: 14px;
	margin-left: 5px;
}

.main-menu ul li a:hover,
.main-menu ul li a:focus{
	color: var(--accent-color);
}

.main-menu ul li a.active{
	color: var(--accent-color) !important;
}

.main-menu ul ul{
	visibility: hidden;
	opacity: 0;
	transform: scaleY(0.8);
	transform-origin: top;
	padding: 0;
	margin: 0;
	list-style: none;
	width: 240px;
	border-radius: 10px;
	position: absolute;
	left: 0;
	top: 100%;
	background-color: var(--accent-color);
	transition: all 0.3s ease-in-out;
	text-align: left;
}

.main-menu ul li.submenu:first-child ul{
    width: 230px;
}

.main-menu ul ul ul{
	left: 100%;
	top: 0;
	text-align: left;
}
.main-menu ul li:hover > ul{
	visibility: visible;
	opacity: 1;
	transform: scaleY(1);
    padding: 5px 0;
}

.main-menu ul li.submenu ul li.submenu > a:after{
    content: '\f105';
    float: right;
}

.main-menu ul ul li{
	margin: 0;
	padding: 0;
}

.main-menu ul ul li a{
	color: var(--white-color);
	padding: 6px 20px !important;
	transition: all 0.3s ease-in-out;
}

.main-menu ul li:hover > ul{
	visibility: visible;
	opacity: 1;
	transform: scaleY(1);
    padding: 5px 0;
}

.main-menu ul ul li a:hover,
.main-menu ul ul li a:focus{
	color: var(--primary-color);
	background-color: transparent;
	padding: 6px 20px 6px 23px !important;
}

.main-menu ul li.highlighted-menu{
    display: none;
}

.header-btn{
	margin-left: 10px;
}
.header-btn .btn-default{
	color: #fff;
}

.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: 8px;
}

.slicknav_icon .slicknav_icon-bar{
	display: block;
	width: 100%;
	height: 3px;
	width: 22px;
	background-color: var(--white-color);
	border-radius: 6px;
	margin: 4px auto !important;
	transition: all 0.1s ease-in-out;
}

.slicknav_icon .slicknav_icon-bar:first-child{
	margin-top: 0 !important;
}

.slicknav_icon .slicknav_icon-bar:last-child{
	margin-bottom: 0 !important;
}

.navbar-toggle a.slicknav_btn.slicknav_open .slicknav_icon span.slicknav_icon-bar:nth-child(1){
    transform: rotate(-45deg) translate(-5px, 5px);
}

.navbar-toggle a.slicknav_btn.slicknav_open .slicknav_icon span.slicknav_icon-bar:nth-child(2){
    opacity: 0;
}

.navbar-toggle a.slicknav_btn.slicknav_open .slicknav_icon span.slicknav_icon-bar:nth-child(3){
    transform: rotate(45deg) translate(-5px, -5px);
}

.slicknav_menu{
	position: absolute;
    width: 100%;
	padding: 0;
	background: var(--accent-color);
}

.slicknav_menu ul{
	margin: 5px 0;
}

.slicknav_menu ul ul{
	margin: 0;
}

.slicknav_nav .slicknav_row,
.slicknav_nav li a{
	position: relative;
	font-family: var(--accent-font);
	font-size: 16px;
	font-weight: 400;
	text-transform: capitalize;
	padding: 10px 20px;
	color: var(--white-color);
	line-height: normal;
	margin: 0;
	border-radius: 0 !important;
	transition: all 0.3s ease-in-out;
}

.slicknav_nav a:hover,
.slicknav_nav a:focus,
.slicknav_nav .slicknav_row:hover{
	background-color: transparent;
	color: var(--primary-color);
}

.slicknav_menu ul ul li a{
    padding: 10px 20px 10px 30px;
}

.slicknav_arrow{
	font-size: 0 !important;
}

.slicknav_arrow:after{
	content: '\f107';
	font-family: 'FontAwesome';
	font-weight: 900;
	font-size: 12px;
	margin-left: 8px;
	color: var(--white-color);
	position: absolute;
	right: 15px;
    top: 15px;
	transition: all 0.3s ease-out;
}

.slicknav_open > a .slicknav_arrow:after{
    transform: rotate(-180deg);
	color: var(--primary-color);
}

/************************************/
/***        04. Hero css	      ***/
/************************************/

.hero{
	position: relative;
	background: url('../images/hero-bg.jpg');
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover !important;
	padding: 220px 0 60px;
	margin-top: -126px;
	min-height: 100vh;
}

.hero::before{
    content: '';
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(1.91deg, rgba(38, 38, 38, 0.3) 64.59%, #104a58 101.91%), linear-gradient(270deg, rgba(38, 38, 38, 0) 44.72%, #023c4a 117.07%), linear-gradient(180deg, rgba(38, 38, 38, 0) 68.75%, rgba(38, 38, 38, 0.8) 100%);
    background: linear-gradient(0deg, rgba(38, 38, 38, 0) 75.27%, rgb(2 60 74) 100%), linear-gradient(270deg, rgb(2 60 74 / 36%) 45.18%, #023c4ae6 105.08%);
/*    background: linear-gradient(0deg, rgba(38, 38, 38, 0) 75.27%, rgb(2 60 74 / 62%) 100%), linear-gradient(270deg, rgb(2 60 74 / 10%) 45.18%, #023c4ae6 105.08%);*/
    background: linear-gradient(0deg, rgba(38, 38, 38, 0) 75.27%, rgb(2 60 74) 100%), linear-gradient(270deg, rgb(2 60 74 / 58%) 45.18%, #023c4a 105.08%);
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero.hero-video .hero-bg-video{
	position: absolute;
	top: 0;
	right: 0;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
}

.hero.hero-video .hero-bg-video video{
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.hero.hero-slider-layout{
	background: none;
	padding: 0;
}

.hero.hero-slider-layout .hero-slide{
	position: relative;
    padding: 295px 0;
	min-height: 100vh;
}

.hero.hero-slider-layout .hero-slide::before{
	content: '';
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(1.91deg, rgba(38, 38, 38, 0.3) 64.59%, #023c4a 101.91%), linear-gradient(270deg, rgba(38, 38, 38, 0) 44.72%, #023c4a 117.07%), linear-gradient(180deg, rgba(38, 38, 38, 0) 68.75%, rgba(38, 38, 38, 0.8) 100%);
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero.hero-slider-layout .hero-slide .hero-slider-image{
	position: absolute;
	top: 0;
	right: 0;
	left: 0;
	bottom: 0;
}

.hero.hero-slider-layout .hero-slide .hero-slider-image img{
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.hero.hero-slider-layout .hero-pagination{
	position: absolute;
    bottom: 50px;
	text-align: left;
	padding-left: calc(((100vw - 1300px) / 2));
	z-index: 2;
}

.hero.hero-slider-layout .hero-pagination .swiper-pagination-bullet{
    width: 12px;
    height: 12px;
    background: var(--white-color);
    opacity: 1;
    transition: all 0.3s ease-in-out;
    margin: 0 5px;
}

.hero.hero-slider-layout .hero-pagination .swiper-pagination-bullet-active{
    background-color: var(--accent-color);
}

.hero-content{
	position: relative;
	width: 100%;
	max-width: 560px;
	z-index: 2;
}

.hero-content .section-title {
    margin-bottom: 25px;
}

.hero-content .section-title p,
.hero-content .section-title h1,
.hero-content .section-title h3{
	color: var(--white-color);
}

.hero-content .section-title p{
	font-size: 19px;
	margin-top: 15px;
}

.hero-content .section-title h3::before{
	background: var(--white-color);
}

.hero-content-body{
	display: flex;
	align-items: center;
}

.hero-btn{
	margin-right: 20px;
}

.hero-client-box{
	display: flex;
	align-items: center;
}

.hero-client-box .customer-images{
	margin-right: 20px;
	display: inline-flex;
    align-items: center;
    justify-content: center;
}

.customer-img{
	position: relative;
	display: inline-block;
    border: 2px solid var(--white-color);
    border-radius: 50%;
    overflow: hidden;
    margin-left: -16px;
	width: 50px;
	height: 50px;
	z-index: 1;
}

.customer-img:first-child{
    margin: 0;
}

.customer-img figure{
    display: block;
}

.customer-img img{
    max-width: 100%;
    border-radius: 50%;
}

.customer-img.add-more{
	width: 52px;
	height: 52px;
	background-color: var(--accent-color);
	text-align: center;
	display: inline-flex;
    align-items: center;
    justify-content: center;
}

.customer-img.add-more p{
	font-family: var(--accent-font);
	color: var(--white-color);
	margin: 0;
}

.hero-client-content p{
	color: var(--white-color);
	margin: 0;
}

.hero-list{
	position: relative;
	border-top: 1px solid var(--dark-divider-color);
	margin-top: 90px;
	padding: 60px 0 0;
	z-index: 1;
}

.hero-list ul{
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 80px;
}

.hero-list ul li{
	position: relative;
	display: inline-block;
	text-transform: capitalize;
	color: var(--white-color);
	padding-left: 34px;
	font-size: 17px;
}

.hero-list ul li::before{
    content: '\f058';
    font-family: 'Font Awesome 6 Free';
    font-weight: 400;
    font-size: 20px;
    color: var(--white-color);
    display: inline-block;
    line-height: normal;
    position: absolute;
    top: 2px;
    left: 0;
}

/************************************/
/***       05. About Us css	      ***/
/************************************/

.about-us{
/*	padding: 100px 0;*/
}

.about-us-images{
	position: relative;
	display: flex;
	flex-wrap: wrap;
	align-items: end;
	gap: 30px;
}

.about-img-1{
	width: calc(40% - 15px);
}

.about-img-2{
	width: calc(60% - 15px);
}

.about-img-1 img,
.about-img-2 img{
	width: 100%;
	border-radius: 20px;
	overflow: hidden;
}

.about-img-1 figure{
	display: block;
}

.about-img-1 img{
	aspect-ratio: 1 / 1.75;
	object-fit: cover;
}

.about-img-2 figure{
	display: block;
    /*mask-image: url(../images/about/about-img-2-bg-shape.svg);
    background-image: url(../images/about/about-img-2-bg-shape.svg);*/
    mask-size: cover;
    mask-position: center center;
    mask-repeat: no-repeat;
    width: 100%;
    height: 100%;
}

.about-img-2 img{
	aspect-ratio: 1 / 1.75;
	object-fit: cover;
}

.about-us .section-title {
    margin-bottom: 20px;
}

.about-us .section-title h2{
	font-size: 38px;
}

.about-us h4{
	font-size: 22px;
    margin-top: 5px;
    font-family: var(--default-font);
}
.about-us h5{
	font-family: var(--default-font);
	background: #509093;
    color: #fff;
    margin-top: 10px;
    padding: 6px 18px;
    display: inline-block;
    border-radius: 3px;
}

.about-us p{
    margin-bottom: 0;
    font-size: 17px;
    line-height: 29px;
}

.about-customer-box{
	position: absolute;
	top: 50px;
	left: 0;
	background-color: #509093;
	border-radius: 20px;
	width: 100%;
	max-width: 270px;
	padding: 30px 30px 25px;
	animation: moveLeftRight 5s ease-in-out infinite;
}
@keyframes moveLeftRight{
	0% {
    transform: translateX(0);
	}
	50% {
	    transform: translateX(20px);
	}
	100% {
	    transform: translateX(0);
	}
}

.about-customer-rating{
	margin-bottom: 15px;
}

.about-customer-rating i{
	font-size: 14px;
	color: var(--accent-color);
}

.about-customer-content{
/*	margin-bottom: 15px;*/
}

.about-customer-content i{
	font-size: 30px;
	display: block;
}

.about-customer-content p{
	margin: 0;
	color: #fff;
	font-size: 18px;
}

.about-customer-content span{
/*	color: var(--primary-color);*/
	display: inline-block;
    font-size: 40px;
    font-family: var(--accent-font);
    font-weight: 700;
    margin-bottom: 14px;
    position: relative;
    color: #fff;
}
.about-customer-content span:before{
	position: absolute;
	content: '+';
	right: -30px;
	top: 0;
}

.about-customer-box .customer-images{
	display: flex;
	align-items: center;
}

.about-us-content{
/*	margin-left: 25px;*/
}

.about-vision-mission{
/*	display: flex;*/
	flex-wrap: wrap;
	gap: 30px;
/*	border-top: 1px solid var(--divider-color);*/
/*	border-bottom: 1px solid var(--divider-color);*/
	padding: 18px 0;
/*    margin-bottom: 40px;*/
/*    margin-top: 20px;*/
}

.vision-mission-content{
/*	width: calc(50% - 15px);*/
}

.vision-mission-content h3{
	font-size: 22px;
	text-transform: capitalize;
	margin-bottom: 15px;
	font-weight: 600;
}

.vision-mission-content p{
	margin: 0;
}

.vision-mission-content ul{
	list-style: none;
	padding: 0;
	margin: 0;
}

.vision-mission-content ul li{
	position: relative;
/*	display: inline-block;*/
	padding-left: 34px;
	margin-bottom: 8px;
	font-size: 17px;
}

.vision-mission-content ul li:last-child{
	margin-bottom: 0;
}

.vision-mission-content ul li::before{
    content: '\f058';
    font-family: 'Font Awesome 6 Free';
    font-weight: 400;
    font-size: 20px;
    color: var(--accent-color);
    display: inline-block;
    line-height: normal;
    position: absolute;
    top: 2px;
    left: 0;
}

.about-us-content-btn .btn-default.btn-highlighted{
	margin-left: 30px;
}

/************************************/
/***    06. Our Services css      ***/
/************************************/

.our-services{
	background: var(--secondary-color);
	padding: 100px 0;
}

.service-item{
	position: relative;
	border-radius: 20px;
	height: calc(100% - 30px);
	margin-bottom: 30px;
	overflow: hidden;
}

.service-image a{
	position: relative;
	display: block;
	cursor: none;
}

.service-image a::before{
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	bottom: 0;
	background: var(--primary-color);
	opacity: 50%;
	width: 100%;
	height: 100%;
	z-index: 1;
}

.service-image img{
	aspect-ratio: 1 / 0.97;
	object-fit: cover;
	border-radius: 20px;
	transition: all 0.4s ease-in-out;
}

.service-item:hover .service-image img{
	transform: scale(1.1);
}

.service-content{
	position: absolute;
	top: 30px;
	left: 30px;
	right: 30px;
	max-width: 210px;
	z-index: 2;
}

.service-content h3{
	font-size: 20px;
	color: var(--white-color);
}

.service-btn{
	position: absolute;
	bottom: 30px;
	left: 30px;
	right: 30px;
	z-index: 2;
}

.service-btn .readmore-btn{
	display: block;
	color: var(--white-color);
}

.service-btn .readmore-btn:hover{
	color: var(--accent-color);
}

.service-btn .readmore-btn::before{
	filter: brightness(0) invert(1);
}

.service-get-quote-text{
	text-align: center;
	margin-top: 20px;
}

.service-get-quote-text p{
	margin: 0;
}

.service-get-quote-text p span{
	background-color: var(--accent-color);
	color: var(--white-color);
	border-radius: 100px;
	font-weight: 500;
	line-height: 1.1em;
	padding: 2px 10px;
	margin-right: 5px;
}

.service-get-quote-text a{
	font-weight: 700;
	text-decoration: underline;
	color: var(--primary-color);
	transition: all 0.3s ease-in-out;
}

.service-get-quote-text a:hover{
	color: var(--accent-color);
}

/************************************/
/***    07. Why Choose Us css     ***/
/************************************/

.why-choose-us{
/*	padding: 100px 0;*/
}

.why-choose-us-box{
	height: 100%;
	display: flex;
	gap: 30px;
}

.why-choose-image{
	position: relative;
	width: 33%;
	height: 100%;
}

.why-choose-image figure{
	height: 100%;
	display: block;
	border-radius: 20px;
	overflow: hidden;
}

.why-choose-image figure img{
	width: 100%;
	height: 100%;
	aspect-ratio: 1 / 1.62;
	object-fit: cover;
	border-radius: 20px;
}

.contact-circle-img{
	position: absolute;
	right: -15px;
	bottom: 0;
	transform: translate(50%, -50%);
	z-index: 1;
}

.contact-circle-img img{
	max-width: 130px;
	animation: infiniterotate 30s infinite linear;
}

@keyframes infiniterotate{
	from{
		transform: rotate(0deg);
	  }
	to{
		transform: rotate(360deg);
	}
}

.why-choose-content{
	width: 67%;
	height: 100%;
}

.why-choose-list{
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 20px;
	margin-bottom: 30px;
}

.why-choose-item{
	width: calc(50% - 15px);
	display: flex;
	align-items: center;
}

.why-choose-item .icon-box{
	position: relative;
	background-color: var(--accent-color);
	border-radius: 50%;
	width: 45px;
	height: 45px;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	margin-right: 15px;
	transition: all 0.5s ease-in-out;
	color: #fff;
	font-size: 20px;
}

.why-choose-item:hover .icon-box{
	background-color: transparent;
}

.why-choose-item .icon-box::before{
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    background: var(--primary-color);
    border-radius: 8px;
    width: 100%;
    height: 100%;
    transform: scale(0);
    transition: all 0.4s ease-in-out;
    z-index: -1;
}

.why-choose-item:hover .icon-box::before{
	transform: scale(1);
}

.why-choose-item .icon-box img{
	position: relative;
	max-width: 24px;
	z-index: 1;
}

.why-choose-item-content{
	width: calc(100% - 60px);
}

.why-choose-item-content h3{
	font-size: 20px;
	text-transform: capitalize;
	color: var(--text-color);
	font-family: var(--default-font);
}

.why-choose-body{
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 30px;
}

.why-choose-body-content,
.why-choose-body-image{
	width: calc(50% - 15px);
}

.why-choose-body-image figure,
.why-choose-body-image img{
	width: 100%;
	aspect-ratio: 1 / 0.75;
	object-fit: cover;
	border-radius: 20px;
}

.why-choose-body-content h3{
	font-size: 22px;
	margin-bottom: 15px;
	font-weight: 700;
}

.why-choose-body-content p{
	margin-bottom: 15px;
	font-size: 17px;
}

/************************************/
/***      08. What We Do css      ***/
/************************************/

.what-we-do{
	background: linear-gradient(180deg, var(--secondary-color) 65%, var(--white-color) 35%);
	padding: 100px 0 50px;
}

.intro-video-box{
	position: relative;
	border-radius: 20px;
	overflow: hidden;
	text-align: center;
	padding: 170px 100px 50px;
}

.intro-video-box::before{
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
    background: linear-gradient(180deg, rgba(38, 38, 38, 0) 65.21%, rgba(38, 38, 38, 0.8) 100%);
	width: 100%;
	height: 100%;
	z-index: 1;
}

.intro-bg-video{
	position: absolute;
	top: 0;
	right: 0;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
}

.intro-bg-video video{
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.video-play-button{
	position: relative;
	z-index: 1;
}

.video-play-button a{
	position: relative;
	background-color: var(--accent-color);
	border-radius: 100%;
	width: 80px;
	height: 80px;
	margin: 0 auto;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: none;
}

.video-play-button a:before{
	content: '';
	position: absolute;
	top: -30%;
	left: -30%;
	width: 160%;
	height: 160%;
	border: 50px solid var(--divider-color);
	border-radius: 50%;
	transform: scale(0.6);
	z-index: -1;
	animation: border-zooming 1.2s infinite linear;
}

.video-play-button a:after{
	content: '';
	position: absolute;
	top: -30%;
	left: -30%;
	width: 160%;
	height: 160%;
	border: 50px solid var(--divider-color);
	border-radius: 50%;
	transform: scale(0.6);
	z-index: -1;
	animation: border-zooming 1.2s infinite linear;
	animation-delay: .3s;
}

@keyframes border-zooming{
	100%{
		transform: scale(1);
		opacity: 0;
	}
}

.video-play-button a i{
	font-size: 30px;
	color: var(--white-color);
}

.intro-video-counter{
	position: relative;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 30px 120px;
	border-top: 1px solid var(--dark-divider-color);
	padding-top: 50px;
	margin-top: 170px;
	z-index: 1;
}

.video-counter-item h2{
	font-size: 50px;
	color: var(--white-color);
	margin-bottom: 10px;
}

.video-counter-item p{
	color: var(--white-color);
	text-transform: capitalize;
	opacity: 80%;
	margin: 0;
}

/************************************/
/***      09. Case Study css	  ***/
/************************************/

.case-study{
	padding: 50px 0 70px;
}

.case-study-item{
	height: calc(100% - 30px);
	margin-bottom: 30px;
}

.case-study-image{
	border-radius: 30px;
	margin-bottom: 30px;
	overflow: hidden;
}

.case-study-image figure,
.case-study-image a{
	display: block;
	cursor: none;
	border-radius: 20px;
}

.case-study-image img{
	width: 100%;
	aspect-ratio: 1 / 0.72;
	object-fit: cover;
	border-radius: 20px;
	transition: all 0.4s ease-in-out;
}

.case-study-item:hover .case-study-image img{
	transform: scale(1.1);
}

.case-study-content{
	margin-bottom: 30px;
}

.case-study-content h3{
	font-size: 20px;
	line-height: 1.4em;
	text-transform: capitalize;
	margin-bottom: 10px;
}

.case-study-content h3 a{
	color: inherit;
}

.case-study-content p{
	margin: 0;
}

/************************************/
/***      10. How It Work css	  ***/
/************************************/

.how-it-work{
	background: var(--secondary-color);
/*	padding: 100px 0;*/
}

.how-work-step-box{
	display: flex;
	flex-wrap: wrap;
	gap: 40px;
}

.how-work-step-item{
	position: relative;
	width: calc(25% - 30px);
	background: url('../images/how-work-step-arrow-1.svg');
	background-repeat: no-repeat;
	background-position: right center;
	background-size: 60% auto;
	display: flex;
	flex-wrap: wrap;
}

.how-work-step-item:nth-child(even){
	background: url('../images/how-work-step-arrow-2.svg');
	background-repeat: no-repeat;
    background-position: right center;
    background-size: 60% auto;
	flex-direction: column-reverse;
}

.how-work-step-item:last-child,
.how-work-step-item:nth-child(4n + 4){
	background: transparent;
}

.how-work-step-no{
	position: relative;
	background-color: var(--accent-color);
	border-radius: 50%;
	width: 85px;
	height: 85px;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	margin-bottom: 30px;
}

.how-work-step-item:nth-child(even) .how-work-step-no{
	margin: 30px 0 0 0;
}

.how-work-step-no::before{
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    background: var(--primary-color);
    border-radius: 8px;
    width: 100%;
    height: 100%;
    transform: scale(0);
    transition: all 0.4s ease-in-out;
    z-index: 0;
}

.how-work-step-item:hover .how-work-step-no::before{
	transform: scale(1);
}

.how-work-step-no h3{
	position: relative;
	font-family: var(--default-font);
	font-size: 40px;
	font-weight: 500;
	text-transform: capitalize;
	color: var(--white-color);
	z-index: 1;
}

.how-work-step-content{
	width: 100%;
	max-width: 210px;
}

.how-work-step-content h3{
	font-size: 21px;
	margin-bottom: 10px;
	font-weight: 600;
	text-transform: capitalize;
	line-height: 26px;
}

.how-work-step-content p{
	margin: 0;
	font-size: 17px;
}

/************************************/
/***       11. Cta Box Css        ***/
/************************************/

.cta-section{
/*	padding: 100px 0 50px;*/
}

.cta-box{
	position: relative;
	background-color: var(--accent-color);
	border-radius: 20px;
	display: flex;
	align-items: end;
	padding: 0 60px 0 30px;
}

.cta-box-image{
	width: 40%;
}

.cta-box-image img{
	width: 100%;
/*	aspect-ratio:  1 / 0.9;*/
	object-fit: cover;
}

.cta-box-content{
	width: 60%;
	margin: 60px 0 60px 30px;
}

.cta-box-content .section-title h3,
.cta-box-content .section-title h2,
.cta-box-content .section-title p{
	color: var(--white-color);
}

.cta-box-content .section-title h3::before{
	background: var(--white-color);
}

.cta-box-content .cta-box-btn{
	position: relative;
}

.cta-box-content .cta-box-btn:before{
	content: '';
	position: absolute;
	width: 85px;
	height: 42px;
	top: 50%;
	right: 60%;
	transform: translate(0 , -50%);
/*	background: url('../images/arrow-cta-btn.svg') no-repeat right center;*/
	background-size: cover;
	animation: ctamoveobject 3s infinite linear alternate;
}

@keyframes ctamoveobject{
	50%{
		right: 55%;
	}
}

.cta-box-btn .btn-default{
	background: var(--white-color);
	color: var(--accent-color);
}

.cta-box-btn .btn-default:hover{
	color: var(--white-color);
}

.cta-box-btn .btn-default i{
	background: #023c4a;
}
.cta-box-btn .btn-default:hover::before{
	background: #023c4a;
}

/************************************/
/***    12. Our Testimonial css	  ***/
/************************************/

.our-testimonial{
/*	padding: 50px 0 100px;*/
}

.testimonial-review-box{
	background: #023c4a;
	border-radius: 10px;
	text-align: center;
	padding: 40px 40px;
}

.testimonial-review-box img{
	margin-top: 15px;
	width: 250px;
}

.testimonial-site-logo{
	margin-bottom: 25px;
}

.testimonial-site-logo img{
	max-width: 160px;
}

.testimonial-review-box .about-customer-rating{
	display: inline-block;
	background-color: #e4b114;
    border-radius: 30px;
    padding: 5px 17px 3px 14px;
    margin-bottom: 25px;
}

.testimonial-review-box .about-customer-rating i{
	font-size: 18px;
	color: var(--white-color);
}

.testimonial-review-box .customer-images{
	display: flex;
	align-items: center;
	justify-content: center;
	margin-top: 15px;
}

.testimonial-slider{
	background-color: var(--secondary-color);
	border-radius: 20px;
	padding: 30px;
}

.testimonial-slider .swiper-wrapper{
	cursor: none;
}

.testimonial-item{
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 30px;
}

.testimonial-slider-image{
	width: calc(35% - 15px);
}

.testimonial-slider-image figure{
	display: block;
	border-radius: 20px;
	overflow: hidden;
}

.testimonial-slider-image img{
	width: 100%;
	border-radius: 20px;
	aspect-ratio: 1 / 0.999;
	object-fit: cover;
}

.testimonial-slider-content{
	width: calc(65% - 15px);
}

.testimonial-rating{
	margin-bottom: 20px;
}

.testimonial-rating i{
	font-size: 15px;
	color: #fbb004;
	margin-right: -2px;
}

.testimonial-rating i:last-child{
	margin-right: 0;
}

.testimonial-content{
	margin-bottom: 30px;
}

.testimonial-content p{
	margin-bottom: 0;
	font-size: 17px;
}

.author-content h3{
	font-size: 20px;
	text-transform: capitalize;
	margin-bottom: 0px;
	font-weight: 700;
}

.author-content p{
	text-transform: capitalize;
	margin: 0;
}

.testimonial-pagination{
    position: absolute;
    bottom: 0px !important;
	right: 0px;
    text-align: right;
    z-index: 1;
}

.testimonial-pagination .swiper-pagination-bullet{
    width: 15px;
    height: 7px;
    background: #cecdcd;
    opacity: 1;
    margin: 0 3px;
    transition: all 0.4s ease-in-out;
    border-radius: 7px;
}

.testimonial-pagination .swiper-pagination-bullet-active{
    position: relative;
    width: 25px;
    border-radius: 100px;
    background-color: var(--accent-color);
}

.testimonial-company-slider{
	margin-top: 80px;
}

.testimonial-company-slider .company-logo{
	text-align: center;
}

.testimonial-company-slider .company-logo img{
	width: 100%;
	max-height: 40px;
}

/************************************/
/***      	13. Our FAQs css	  ***/
/************************************/

.our-faqs{
	position: relative;
	background: url('../images/faqs-bg.jpg') no-repeat;
	background-position: center center;
	background-size: cover;
}

.our-faqs::before{
	content: '';
	position: absolute;
	display: block;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	background-color: var(--primary-color);
	opacity: 90%;
	width: 100%;
	height: 100%;
	z-index: 0;
}

.our-faqs-content{
	position: relative;
	margin-right: 20px;
	z-index: 1;
}

.our-faqs-content .section-title h3,
.our-faqs-content .section-title h2{
	color: var(--white-color);
}

.our-faqs-content .section-title h3::before{
	background: var(--white-color);
}

.faq-cta-box{
	position: relative;
	display: inline-block;
	backdrop-filter: blur(50px);
	border-radius: 20px;
	width: 100%;
	max-width: 400px;
	padding: 30px;
	overflow: hidden;
}

.faq-cta-box .faq-icon{
	width: 130px;
	margin-bottom: 15px;
}

.faq-cta-box::before{
	content: '';
	position: absolute;
	display: block;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	background-color: var(--white-color);
	opacity: 5%;
	width: 100%;
	height: 100%;
}

.faq-cta-box .customer-images{
	margin-bottom: 20px;
}

.faq-cta-box-content h3{
	font-size: 26px;
	line-height: 32px;
	color: var(--white-color);
	margin-bottom: 20px;
	font-weight: 600;
}

.btn-faqs{
	position: relative;
	color: var(--white-color);
	padding-left: 30px;
	font-size: 22px;
}

.btn-faqs::before{
	content: '\e527';
	position: absolute;
	font-family: 'Font Awesome 6 Free';
	font-weight: 900;
/*	font-size: 18px;*/
	left: 0;
	top: 5px;
	bottom: 0;
	color: var(--white-color);
}

.faq-accordion{
	position: relative;
	z-index: 1;
}

.faq-accordion .accordion-item{
    border-bottom: 1px solid var(--dark-divider-color);
    margin-bottom: 30px;
    padding-bottom: 30px;
}

.faq-accordion .accordion-item:last-child{
    margin-bottom: 0;
	padding-bottom: 0;
    border-bottom: none;
}

.faq-accordion .accordion-header .accordion-button{
	position: relative;
    font-size: 21px;
    line-height: 1.2em;
    color: var(--white-color);
	align-items: start;
    padding-right: 30px;
    transition: all 0.3s ease-in-out;
}

.faq-accordion .accordion-header .accordion-button span{
	margin-right: 5px;
}

.faq-accordion .accordion-button:not(.collapsed){
    padding-bottom: 15px;
}

.faq-accordion .accordion-item .accordion-button::after, 
.faq-accordion .accordion-item .accordion-button.collapsed::after{
	content: '\f0fe';
	font-family: 'Font Awesome 6 Free';
	position: absolute;
	font-size: 20px;
	font-weight: 400;
	color: var(--white-color);
	text-align: right;
    top: 0;
    right: 0;
	width: 30px;
	height: 30px;
	transition: all 0.3s ease-in-out;
}

.faq-accordion .accordion-button:not(.collapsed)::after{
    content: '\f146';
}

.faq-accordion .accordion-item .accordion-body{
    padding-right: 30px;
}

.faq-accordion .accordion-item:last-child .accordion-body{
    padding-bottom: 0;
}

.faq-accordion .accordion-item .accordion-body p{
    color: var(--white-color);
    margin-bottom: 15px;
    font-size: 17px;
}

.faq-accordion .accordion-item .accordion-body p:last-child{
    margin-bottom: 0;
}

/************************************/
/***       14. Our Blog css       ***/
/************************************/

.our-blog{ 
	background: var(--secondary-color);
}

.blog-prev,
.blog-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 46px;
    height: 46px;
    background: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    cursor: pointer;
    z-index: 9;
    transition: all 0.3s ease;
}

.blog-prev {
    left: 0px;
}

.blog-next {
    right: 0px;
}

.blog-prev i,
.blog-next i {
    font-size: 15px;
    color: #333;
}

.blog-prev:hover,
.blog-next:hover {
    background: #509093; 
}

.blog-prev:hover i,
.blog-next:hover i {
    color: #fff;
}

.post-item{
	height: calc(100% - 30px);
/*	margin-bottom: 30px;*/
}

.post-featured-image{
/*	margin-bottom: 20px;*/
	overflow: hidden;
	border-radius: 20px;
}

.post-featured-image figure a{
    cursor: none;
    display: block;
	border-radius: 20px;
    overflow: hidden;
}

.post-featured-image img{
    aspect-ratio: 1 / 0.72;
    object-fit: cover;
    transition: all 0.5s ease-in-out;
}

.post-item:hover .post-featured-image img{
	transform: scale(1.1);
}

.post-item-content{
/*	margin-bottom: 20px;*/
}

.post-item-content h3{
    font-size: 22px;
	line-height: 1.4em;
	font-weight: 600;
	margin-top: 25px;
	margin-bottom: 6px;
}

.post-item-content p{
	font-size: 17px;
    line-height: 27px;
    margin-bottom: 15px;
}

.post-item-content h3 a{
    color: inherit;
}


.service-area{
	padding: 65px 0;
}

.service-area .ser-margin{
	margin: 15px 0;
}


.attachments{
	padding: 65px 0;
}
.attachments .post-item{
	height: 100%;
/*	text-align: center;*/
	box-shadow: 0px 5px 120px 0px rgba(39, 71, 125, 0.15);
    padding: 20px;
    border-radius: 20px;
    height: 100%;
}
.post-featured-iframe{
	height: 200px;
}
.post-featured-iframe iframe{
	width: 100%;
	height: 100%;
	border-radius: 20px;
}
.attachments .post-item-content p{
	position: relative;
	padding-left: 28px;
}
.attachments .post-item-content p i{
	position: absolute;
	left: 0;
	top: 4px;	
	color: #509093;
}
.attach-margin{
	margin: 15px 0;
}

/************************************/
/***    15. Our Appointment css	  ***/
/************************************/

.our-appointment{
	background: linear-gradient(180deg, var(--white-color) 50%, var(--accent-color) 50%);
	padding: 50px 0  100px;
}

.our-appointment-box{
	background: var(--white-color);
	box-shadow: 0px 0px 50px 0px #0000000A;
	border-radius: 20px;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 60px;
	padding: 100px;
}

.our-appointment-content,
.appointment-form{
	width: calc(50% - 30px);
}

.appointment-form form .form-control{
    font-size: 16px;
    font-weight: 400;
    line-height: 1.6em;
    color: var(--primary-color);
    background-color: transparent;
    border: 1px solid var(--divider-color);
    border-radius: 10px;
    padding: 16px 20px;
    outline: none;
    box-shadow: none;
}

.appointment-form form .form-control::placeholder{
	text-transform: capitalize;
    color: var(--text-color);
}

.appointment-form form .form-group select{
	padding: 16px 30px 16px 20px;
}

.appointment-item{
	border-bottom: 1px solid var(--divider-color);
	margin-bottom: 40px;
	padding-bottom: 40px;
	display: flex;
	align-items: center;
}

.appointment-item:last-child{
	border-bottom: none;
	margin-bottom: 0;
	padding-bottom: 0;
}

.appointment-item .icon-box{
	margin-right: 20px;
}

.appointment-item .icon-box img{
	max-width: 60px;
}

.appointment-item-content{
	width: calc(100% - 80px);
}

.appointment-item-content h3{
	font-size: 20px;
	text-transform: capitalize;
	margin-bottom: 5px;
}

.appointment-item-content p{
	margin: 0;
}

.our-partner{
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 30px;
	margin-top: 100px;
}

.partner-logo-box,
.our-partner-content{
	width: calc(50% - 15px);
}

.our-partner-content .section-title{
	margin-bottom: 0;
}

.our-partner-content .section-title h3,
.our-partner-content .section-title h2,
.our-partner-content .section-title p{
	color: var(--white-color);
}

.our-partner-content .section-title h3::before{
	background: var(--white-color);
}

.partner-logo-box{
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 50px;
}

.partner-logo-image{
	width: calc(33.33% - 33.33px);
	text-align: center;
}

.partner-logo-image img{
	width: 100%;
	max-height: 40px;
	transition: all 0.3s ease-in-out;
}

.partner-logo-image img:hover{
	filter: invert(1);
}

/************************************/
/***    	16. Footer css		  ***/
/************************************/

.footer-cta-box{
	background: var(--primary-color);
	padding: 20px 0;
}

.footer-cta-content .section-title{
	margin-bottom: 0;
}

.footer-cta-content .section-title h2{
	color: var(--white-color);
	font-size: 41px;
}

.footer-cta-btn{
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 20px;
}

.footer-cta-btn .btn-default i{
	/*font-size: 18px;
	margin-right: 5px;
	color: var(--white-color);*/
}

.footer-cta-btn .btn-default.btn-phone{
/*	background: var(--dark-divider-color);*/
}

.footer-cta-btn .btn-default.btn-phone::before{
/*	background: var(--accent-color);*/
}

.footer-cta-btn .btn-default.btn-comment{
/*	margin-left: 20px;*/
}

.footer-cta-btn .btn-default.btn-comment::before{
/*	background: var(--dark-divider-color);*/
}

.main-footer{
	background: #f6ffff;
	padding: 60px 0 0;
}

.footer-logo{
	margin-bottom: 40px;
}

.footer-logo img{
	max-width: 160px;
}

.footer-contact-box{
/*	display: flex;*/
/*	align-items: center;*/
	/*gap: 10px;
	display: grid;
    grid-template-columns: 2.5fr 1.2fr 1fr;*/
}

.footer-contact-box .row{
	align-items: center;
	margin-bottom: 50px;
}

.footer-contact-item {
	text-align: center;
}

.footer-contact-item i{
	width: 70px;
    height: 70px;
    line-height: 70px;
    border: 1px solid #509093;
    border-radius: 50%;
    font-size: 28px;
    color: #509093;
    margin-bottom: 15px;
}

.footer-contact-item h3{
	text-transform: capitalize;
	margin-bottom: 8px;
	font-size: 20px;
    font-weight: 600;
}

.footer-contact-item p{
	font-size: 17px;
	color: var(--text-color);
	transition: 0.5s ease;
	margin-bottom: 0px;
}
.footer-contact-item p a{
	color: var(--text-color);
}
.footer-contact-item p a:hover{
	color: var(--accent-color);
}

.footer-social-links h3{
	font-size: 20px;
	text-transform: capitalize;
	margin-bottom: 15px;
}

.footer-social-links p{
	margin-bottom: 25px;
}

.footer-social-links ul{
	list-style: none;
	padding: 0;
	margin: 0;
}

.footer-social-links ul li{
	display: inline-block;
	border-radius: 50%;
	margin-right: 15px;
}

.footer-social-links ul li:last-child{
	margin-right: 0;
}

.footer-social-links ul li a{
	border: 1px solid var(--accent-color);
	border-radius: 50%;
	width: 36px;
	height: 36px;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.3s ease-in-out;
}

.footer-social-links ul li:hover a{
	border-color: var(--primary-color);
}

.footer-social-links ul li a i{
	color: var(--accent-color);
	font-size: 18px;
	transition: all 0.3s ease-in-out;
}

.footer-social-links ul li:hover a i{
	color: var(--primary-color);
}

.footer-copyright{
	position: relative;
/*	border-top: 1px solid var(--divider-color);*/
	padding: 18px 0;
/*	margin-top: 50px;*/
	z-index: 1;
	background: #509093;
    border-radius: 150px 150px 0 0;
    text-align: center;
}

.footer-menu ul{
	list-style: none;
	margin: 0;
	padding: 0;
	text-align: left;
}

.footer-menu ul li{
	display: inline-block;
	margin-right: 30px;
}

.footer-menu ul li:last-child{
	margin-right: 0;
}

.footer-menu ul li a{
	color: var(--text-color);
	text-transform: capitalize;
	transition: all 0.3s ease-in-out;
	font-size: 18px;
}

.footer-menu ul li:hover a{
	color: var(--accent-color);
}

.footer-copyright-text{
/*	text-align: end;*/
}

.footer-copyright-text p{
	margin: 0;
	color: #fff;
	font-size: 18px;
}


.footer-links{
	text-align: center;
}
.footer-links h2{
	font-size: 40px;
	font-weight: 700;
	color: var(--primary-color);
	margin-bottom: 20px;
}
.footer-links ul{
	margin: 0;
	padding: 0;
}
.footer-links ul li{
	display: inline-block;
}
.footer-links a{
	color: var(--text-color);
	font-size: 17px;
	display: block;
	border: 1px solid #509093;
	padding: 5px 15px;
	border-radius: 40px;
	transition: 0.5s ease;
	margin: 6px 2px;
}
.footer-links a:hover{
	background: #509093;
	color: #fff;
}

/************************************/
/***    17. About Us Page css	  ***/
/************************************/

.page-header{
	position: relative;
	background: url('../images/page-header-bg.jpg');
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
	padding: 200px 0 100px;
	margin-top: -126px;
}

.page-header::before{
	content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(0deg, rgba(38, 38, 38, 0) 75.27%, rgba(38, 38, 38, 0.8) 100%), linear-gradient(270deg, rgba(38, 38, 38, 0) 45.18%, #023c4a 105.08%);
    background: linear-gradient(0deg, rgba(38, 38, 38, 0) 75.27%, rgb(2 60 74) 100%), linear-gradient(270deg, rgb(2 60 74 / 65%) 45.18%, #023c4a 105.08%);
    background: linear-gradient(0deg, rgba(38, 38, 38, 0) 75.27%, rgb(2 60 74 / 62%) 100%), linear-gradient(270deg, rgb(2 60 74 / 28%) 45.18%, #023c4ae6 105.08%);
    background: linear-gradient(0deg, rgba(38, 38, 38, 0) 75.27%, rgb(2 60 74) 100%), linear-gradient(270deg, rgb(2 60 74 / 51%) 45.18%, #023c4a 105.08%);
    width: 100%;
    height: 100%;
    z-index: 0;
}

.page-header-box{
	position: relative;
	z-index: 1;
}

.page-header-box h1{
	display: inline-block;
	font-size: 50px;
	font-weight: 600;
	color: var(--white-color);
	margin-bottom: 10px;
	cursor: none;
	text-transform: uppercase;
}

.page-header-box ol{
	margin: 0;
	padding: 0;
}

.page-header-box ol li.breadcrumb-item{
	font-size: 18px;
	text-transform: capitalize;
	color: var(--white-color);
}

.page-header-box ol li.breadcrumb-item a{
    color: inherit;
}

.page-header-box ol .breadcrumb-item+.breadcrumb-item::before{
    content: "\f111";
    font-family: "FontAwesome";
    font-size: 8px;
    color: var(--white-color);
}

.our-approach{
	background: var(--secondary-color);
    padding: 100px 0;
}

.our-approach-list{
    border-top: 1px solid var(--divider-color);
    padding-top: 40px;
}

.our-approach-item{
    position: relative;
    margin-bottom: 40px;
    padding-left: 35px;
}

.our-approach-item::before{
    content: '\f058';
    font-family: 'Font Awesome 6 Free';
    font-weight: 400;
    font-size: 22px;
    color: var(--accent-color);
    display: inline-block;
    line-height: normal;
    position: absolute;
    top: 0;
    left: 0;
}

.our-approach-item:last-child{
    margin-bottom: 0;
}

.approach-item-content h3{
    font-size: 20px;
    text-transform: capitalize;
    margin-bottom: 10px;
}

.approach-item-content p{
    margin: 0;
}

.our-approach-image{
    position: relative;
    padding: 0 0 100px 80px;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.our-approach-img-1 figure,
.our-approach-img-2 figure,
.our-approach-img-1 img,
.our-approach-img-2 img{
	display: block;
    border-radius: 20px;
}

.our-approach-img-1 img{
    width: 100%;
    aspect-ratio: 1 / 1.04;
    object-fit: cover;
}

.our-approach-img-2{
    position: absolute;
    bottom: 0;
    left: 0;
    width: 525px;
}

.our-approach-img-2 img{
    width: 100%;
    aspect-ratio: 1 / 0.6;
    object-fit: cover;
}

.our-team{
    padding: 50px 0 100px;
}

.our-team-content{
    position: sticky;
    top: 30px;
}

.mental-therapy-counter{
	display: inline-block;
    background: var(--secondary-color);
    border-radius: 20px;
    padding: 40px 60px;
}

.mental-therapy-header{
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.mental-therapy-header .icon-box{
    margin-right: 26px;
}

.mental-therapy-header .icon-box img{
    max-width: 44px;
}

.mental-therapy-header h2{
    width: calc(100% - 70px);
    font-size: 40px;
}

.mental-therapy-body p{
    text-transform: capitalize;
    margin: 0;
}

.team-member-list{
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-left: 15px;
}

.team-member-item{
    width: calc(50% - 15px);
    background: var(--secondary-color);
    border-radius: 20px;
    overflow: hidden;
}

.team-image a{
	display: block;
	cursor: none;
}

.team-image img{
	width: 100%;
	aspect-ratio: 1 / 0.98;
	object-fit: cover;
    border-radius: 20px 20px 0 0;
	transition: all 0.5s ease-in-out;
}

.team-member-item:hover .team-image img{
    transform: scale(1.1);
}

.team-body{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 20px;
    padding: 30px;
}

.team-content,
.team-social-icon{
    width: calc(50% - 10px);
}

.team-content h3{
	font-size: 20px;
    text-transform: capitalize;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.team-content h3 a{
    color: inherit;
}

.team-content p{
    text-transform: capitalize;
    margin: 0;
}

.team-social-icon ul{
    list-style: none;
    margin: 0;
    padding: 0;
    text-align: right;
}

.team-social-icon ul li{
    display: inline-block;
    margin-right: 5px;
}

.team-social-icon ul li:last-child{
    margin-right: 0;
}

.team-social-icon ul li a{
    background-color: transparent;
    color: var(--accent-color);
    border: 1px solid var(--accent-color);
    height: 36px;
    width: 36px;
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease-in-out;
}

.team-social-icon ul li a:hover{
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.team-social-icon ul li a i{
    color: inherit;
    font-size: 18px;
}

.our-benefit{
    background: var(--secondary-color);
    padding: 100px 0;
}

.our-benefit-btn{
    margin-bottom: 60px;
}

.our-benefit-img figure{
    display: block;
    border-radius: 20px;
}

.our-benefit-img img{
    width: 100%;
    aspect-ratio: 1 / 0.6;
    object-fit: cover;
    border-radius: 20px;
}

.our-benefit-box{
    margin-left: 15px;
}

.benefit-box-list{
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    border-bottom: 1px solid var(--divider-color);
    margin-bottom: 40px;
    padding-bottom: 40px;
}

.our-benefit-item{
    position: relative;
    width: calc(50% - 15px);
    background: var(--white-color);
    border-radius: 20px;
    padding: 30px 20px;
    overflow: hidden;
}

.our-benefit-item::after{
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: var(--primary-color);
    transition: all 0.4s ease-in-out;
    z-index: 0;
}

.our-benefit-item:hover::after{
    top: 0;
}

.our-benefit-item .icon-box{
    position: relative;
    background: var(--accent-color);
    border-radius: 8px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 40px;
    z-index: 1;
}

.our-benefit-item .icon-box::after{
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    background: var(--secondary-color);
    border-radius: 8px;
    width: 100%;
    height: 100%;
    transform: scale(0);
    transition: all 0.4s ease-in-out;
    z-index: 1;
}

.our-benefit-item:hover .icon-box:after{
    transform: scale(1);
}

.our-benefit-item .icon-box img{
    position: relative;
    max-width: 24px;
    transition: all 0.4s ease-in-out;
    z-index: 2;
}

.our-benefit-item:hover .icon-box img{
    filter: invert(1);
}

.benefit-item-content{
    position: relative;
    z-index: 1;
}

.benefit-item-content h3{
    font-size: 20px;
    text-transform: capitalize;
    margin-bottom: 15px;
    transition: all 0.4s ease-in-out;
}

.benefit-item-content p{
    margin: 0;
    transition: all 0.4s ease-in-out;
}

.our-benefit-item:hover .benefit-item-content h3,
.our-benefit-item:hover .benefit-item-content p{
    color: var(--white-color);
}

.our-benefit-list ul{
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 20px 30px;
}

.our-benefit-list ul li{
    position: relative;
    width: calc(50% - 15px);
    color: var(--primary-color);
    text-transform: capitalize;
    padding-left: 30px;
}

.our-benefit-list ul li:after{
    content: '\f058';
    font-family: 'Font Awesome 6 Free';
    font-weight: 400;
    font-size: 20px;
    color: var(--accent-color);
    display: inline-block;
    line-height: normal;
    position: absolute;
    top: 2px;
    left: 0;
}

/************************************/
/***     18. Services Page css	  ***/
/************************************/

.page-services{
    padding: 100px 0 70px;
}

.why-choose-us.page-why-choose-us{
	background: var(--secondary-color);
}

/************************************/
/***    19. Services Single css   ***/
/************************************/

.page-service-single{
    
}

.service-sidebar{
    /*position: sticky;
    top: 30px;*/
    margin-right: 20px;
}

.service-catagery-list{
	background-color: #f4f4f4;
    border-radius: 20px;
    margin-bottom: 40px;
	overflow: hidden;
}

.service-catagery-list h3{
    font-size: 24px;
    text-transform: capitalize;
    border-bottom: 1px solid #dad9d9;
	padding: 25px;
	font-weight: 600;
}

.service-catagery-list ul{
    list-style: none;
    margin: 0;
	padding: 25px;
}

.service-catagery-list ul li{
    margin-bottom: 20px;
}

.service-catagery-list ul li:last-child{
    margin-bottom: 0;
}

.service-catagery-list ul li a{
    position: relative;
    display: block;
    text-transform: capitalize;
	background-color: var(--white-color);
	border-radius: 100px;
    color: var(--text-color);
	padding: 15px 50px 15px 20px;
    transition: all 0.4s ease-in-out;
    font-size: 18px;
}

.service-catagery-list ul li:hover a, .service-catagery-list ul li.active a{
	background-color: var(--accent-color);
    color: var(--white-color);
}

.service-catagery-list ul li a::before{
    content: '\f06e';
    position: absolute;
    font-family: 'FontAwesome';
    top: 50%;
    right: 20px;
    /*width: 20px;
    height: 20px;*/
	transform: translateY(-50%);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    transition: all 0.4s ease-in-out;
    color: #509093;
}

.service-catagery-list ul li:hover a::before, 
.service-catagery-list ul li.active a::before{
    filter: brightness(0) invert(1);
}

.faq-cta-box.sidebar-cta-box{
    max-width: 100%;
    background-color: var(--accent-color);
    backdrop-filter: blur(0);
    -webkit-backdrop-filter: blur(0);
}

.faq-cta-box.sidebar-cta-box::before{
    display: none;
}

.service-feature-image{
    margin-bottom: 30px;
}

.service-feature-image figure{
    display: block;
    border-radius: 20px;
}

.service-feature-image img{
    width: auto;
    border-radius: 20px;
}

.service-entry{
/*    margin-bottom: 40px;*/
}

.page-service-single h1{
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 15px;
}

.page-service-single .faq-accordion .accordion-header .accordion-button{
	font-weight: 600;
}

.service-entry h2{
    font-size: 25px;
    font-weight: 600;
    margin-bottom: 8px;
}

.service-entry p{
    font-size: 17px;
    line-height: 27px;
    margin-bottom: 10px;
}

.service-entry p:last-child{
    margin-bottom: 0;
}

.service-entry ul{
    list-style: none;
    margin-bottom: 20px;
    padding: 0;
}
.service-entry ul:last-child{
	margin-bottom: 0;
}

.service-entry ul li{
    position: relative;
    padding-left: 34px;
    font-size: 17px;
    line-height: 29px;
}

.service-entry ul li::before{
    content: '\f058';
    font-family: 'Font Awesome 6 Free';
    font-weight: 400;
    font-size: 20px;
    color: var(--accent-color);
    display: inline-block;
    line-height: normal;
    position: absolute;
    top: 5px;
    left: 0;
}

.service-entry ul li+li{
	margin-top: 8px;
}

.service-therapy-benefits{
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    align-items: center;
    margin: 40px 0;
}

.therapy-benefits-content,
.therapy-benefits-image{
    width: calc(50% - 15px);
}

.therapy-benefits-content ul{
    margin-bottom: 0;
}

.therapy-benefits-content ul li{
    width: 100%;
}

.therapy-benefits-image figure{
    display: block;
    border-radius: 20px;
    overflow: hidden;
}

.therapy-benefits-image img{
    width: 100%;
    aspect-ratio: 1 / 0.85;
    object-fit: cover;
    border-radius: 20px;
}

.therapy-benefits-box{
    background-color: #f4f4f4;
    border-radius: 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 40px 80px;
    padding: 35px;
    margin-bottom: 30px;
}

.therapy-benefits-item{
    position: relative;
    width: calc(50% - 40px);
}

.therapy-benefits-item::before{
    content: '';
    position: absolute;
    top: 0;
    right: -40px;
    bottom: 0;
    background-color: #dfdfdf;
    width: 1px;
    height: 100%;
}

.therapy-benefits-item:nth-of-type(2n + 2):before,
.therapy-benefits-item:last-child:before{
    display: none;
}

.therapy-benefits-item .icon-box{
    position: relative;
    width: 50px;
    height: 50px;
    background-color: var(--accent-color);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    margin-bottom: 30px;
    overflow: hidden;
    color: #fff;
    font-size: 20px;
}

.therapy-benefits-item .icon-box::before{
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    background: var(--primary-color);
    border-radius: 8px;
    width: 100%;
    height: 100%;
    transform: scale(0);
    transition: all 0.4s ease-in-out;
    z-index: 0;
}

.therapy-benefits-item:hover .icon-box::before{
    transform: scale(1);
}

.therapy-benefits-item .icon-box img, .therapy-benefits-item .icon-box i{
	position: relative;
    max-width: 30px;
    z-index: 1;
}

.therapy-benefits-item-content h3{
    font-size: 20px;
    text-transform: capitalize;
    margin-bottom: 10px;
    font-weight: 600;
}

.therapy-benefits-item-content p{
    margin-bottom: 0;
}

.service-therapy-steps{
    margin: 25px 0;
}

.therapy-step-item{
    display: flex;
    margin-bottom: 30px;
}

.therapy-step-item:last-child{
    margin-bottom: 0;
}

.therapy-step-no{
    position: relative;
    height: 70px;
    width: 70px;
    background-color: var(--accent-color);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 20px;
    overflow: hidden;
}

.therapy-step-no::before{
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    background: var(--primary-color);
    border-radius: 8px;
    width: 100%;
    height: 100%;
    transform: scale(0);
    transition: all 0.4s ease-in-out;
    z-index: 0;
}

.therapy-step-item:hover .therapy-step-no::before{
    transform: scale(1);
}

.therapy-step-no h2{
    font-family: var(--default-font);
    font-size: 32px;
    font-weight: 500;
    color: var(--white-color);
    margin-bottom: 0;
    z-index: 1;
}

.therapy-step-content{
    width: calc(100% - 100px);
}

.therapy-step-content h3{
    font-size: 20px;
    text-transform: capitalize;
    margin-bottom: 10px;
    font-weight: 600;
}

.therapy-step-content p{
    margin-bottom: 0;
}

.service-entry-video-image{
    position: relative;
    margin-top: 30px;
}

.service-entry-video-image .video-image a{
    cursor: none;
}

.service-entry-video-image .video-image figure{
    border-radius: 20px;
    overflow: hidden;
}

.service-entry-video-image .video-image img{
    width: 100%;
    aspect-ratio: 1 / 0.478;
    object-fit: cover;
    border-radius: 20px;
    filter: brightness(70%);
}

.service-entry-video-image .video-play-button{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.faq-accordion.page-faq-accordion .accordion-item{
    border-bottom-color: var(--divider-color);
}

.faq-accordion.page-faq-accordion .accordion-header .accordion-button{
    color: var(--primary-color);
}

.faq-accordion.page-faq-accordion .accordion-item .accordion-button::after,
.faq-accordion.page-faq-accordion .accordion-item .accordion-button.collapsed::after{
    color: var(--primary-color);
}

.faq-accordion.page-faq-accordion .accordion-item .accordion-body p{
    color: var(--text-color);
}

/************************************/
/***     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(--primary-color);
	border-radius: 10px;
    width: 40px;
    height: 40px;
    margin: 0 5px;
    font-weight: 500;
	line-height: 1em;
    transition: all 0.3s ease-in-out;
}

.page-pagination ul li.active a, 
.page-pagination ul li a:hover{
    background: var(--accent-color);
    color: var(--white-color);
}

/************************************/
/***     21. Blog Single css	  ***/
/************************************/

.page-single-post{
	padding: 100px 0;
}

.post-image{
	position: relative;
	margin-bottom: 30px;
}

.post-image figure{
	display: block;
    border-radius: 20px;
}

.post-image figure,
.post-image img{
	aspect-ratio: 1 / 0.50;
	object-fit: cover;
    border-radius: 20px;
}

.post-content{
	width: 100%;
	max-width: 1100px;
	margin: 0 auto;
}

.post-entry{
	border-bottom: 1px solid var(--divider-color);
	padding-bottom: 30px;
    margin-bottom: 30px;
}

.post-entry:after{
    content: '';
    display: block;
    clear: both;
}

.post-entry a{
    color: var(--accent-color);
}

.post-entry h1,
.post-entry h2,
.post-entry h3,
.post-entry h4,
.post-entry h5,
.post-entry h6{
	font-weight: 400;
	line-height: 1.2em;
	margin: 0 0 0.6em;
}

.post-entry h1{
	font-size: 70px;
}

.post-entry h2{
	font-size: 48px;
}

.post-entry h3{
	font-size: 46px;
}

.post-entry h4{
	font-size: 30px;
}

.post-entry h5{
	font-size: 24px;
}

.post-entry h6{
	font-size: 18px;
}

.post-entry p{
	margin-bottom: 20px;
}

.post-entry p:last-child{
	margin-bottom: 0;
}

.post-entry p strong{
	color: var(--primary-color);
	font-size: 18px;
	font-weight: 600;
}

.post-entry ol{
    margin: 0 0 30px;
}

.post-entry ol li{
    margin-bottom: 20px;
    font-size: 18px;
    font-weight: 600;
    color: var(--text-color);
}

.post-entry ul{
	padding: 0;
	margin: 20px 0 20px;
	padding-left: 20px;
}

.post-entry ul li{
	font-size: 18px;
    font-weight: 500;
    color: var(--text-color);
    position: relative;
    margin-bottom: 15px;
}

.post-entry ul li:last-child{
	margin-bottom: 0;
}

.post-entry ul ul,
.post-entry ul ol,
.post-entry ol ol,
.post-entry ol ul{
    margin-top: 20px;
    margin-bottom: 0;
}

.post-entry ul ul li:last-child,
.post-entry ul ol li:last-child,
.post-entry ol ol li:last-child,
.post-entry ol ul li:last-child{
    margin-bottom: 0;
}

.post-entry blockquote{
	background: url(../images/icon-blockquote.svg), var(--accent-color);
	background-repeat: no-repeat;
	background-position: 35px 30px;
    background-size: 58px;
    border-radius: 20px;
    padding: 30px 30px 30px 100px;
    margin-bottom: 30px;
}

.post-entry blockquote p{
	font-family: var(--accent-font);
	font-size: 20px;
	font-weight: 400;
	line-height: 1.4em;
	color: var(--white-color);
}

.post-entry blockquote p:last-child{
	margin-bottom: 0;
}

.tag-links{
    font-family: var(--accent-font);
	font-size: 20px;
	font-weight: 400;
	color: var(--primary-color);
	display: inline-flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 10px;
}

.post-tags .tag-links a{
    display: inline-block;
    font-family: var(--accent-font);
    font-size: 16px;
    font-weight: 400;
    text-transform: capitalize;
    background: var(--accent-color);
    color: var(--white-color);
	border-radius: 10px;
    padding: 6px 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: 10px;
    width: 36px;
    height: 36px;
    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 70px;
}

/************************************/
/***   23. Case Study Single css  ***/
/************************************/

.page-case-study-single{
    padding: 100px 0;
}

.case-study-sidebar{
    position: sticky;
    top: 30px;
    margin-right: 30px;
}

.case-study-detail-box{
    background-color: var(--secondary-color);
    border-radius: 20px;
    margin-bottom: 60px;
}

.case-study-detail-box h2{
    font-size: 20px;
    text-transform: capitalize;
    border-bottom: 1px solid var(--divider-color);
    padding: 30px;
}

.case-study-list-box{
    padding: 30px;
}

.case-study-list-item{
    padding: 15px 20px;
    background-color: var(--white-color);
    border-radius: 15px;
    margin-bottom: 20px;
}

.case-study-list-item:last-child{
    margin-bottom: 0;
}

.case-study-list-item h3{
    font-size: 20px;
    margin-bottom: 5px;
    text-transform: capitalize;
}

.case-study-list-item p{
    text-transform: capitalize;
    margin-bottom: 0;
}

.case-study-featured-image{
    margin-bottom: 40px;
}

.case-study-featured-image figure{
    display: block;
    border-radius: 20px;
}

.case-study-featured-image img{
    width: 100%;
    aspect-ratio: 1 / 0.55;
    object-fit: cover;
    border-radius: 20px;
}

.case-study-entry{
    margin-bottom: 40px;
}

.case-study-entry h2{
    font-size: 48px;
    margin-bottom: 20px;
}

.case-study-entry p{
    margin-bottom: 20px;
}

.case-study-entry p:last-child{
    margin-bottom: 0;
}

.case-study-entry ul{
    list-style: none;
    margin-bottom: 20px;
    padding: 0;
}

.case-study-entry ul li{
    position: relative;
    text-transform: capitalize;
	color: var(--primary-color);
    padding-left: 34px;
    margin-bottom: 20px;
}

.case-study-entry ul li:last-child{
    margin-bottom: 0;
}

.case-study-entry ul li::before{
    content: '\f058';
    font-family: 'Font Awesome 6 Free';
    font-weight: 400;
    font-size: 20px;
    color: var(--accent-color);
    display: inline-block;
    line-height: normal;
    position: absolute;
    top: 2px;
    left: 0;
}

.therapeutic-approach-list{
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.therapeutic-approach-item{
    width: 50%;
}

.therapeutic-approach-item{
    padding: 50px 50px 50px 0;
    border-bottom: 1px solid var(--divider-color);
    border-right: 1px solid var(--divider-color);
}

.therapeutic-approach-item:nth-of-type(2n + 2){
    padding: 50px 0 50px 50px;
    border-bottom: 1px solid var(--divider-color);
    border-right: none;
}

.therapeutic-approach-item:nth-last-child(-n + 2){
    padding-bottom: 0;
    border-bottom: none;
}

.therapeutic-approach-item:nth-child(-n + 2){
    padding-top: 0;
}

.therapeutic-approach-item .icon-box{
    position: relative;
    background-color: var(--accent-color);
    border-radius: 8px;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-bottom: 30px;
    transition: all 0.5s ease-in-out;
}

.therapeutic-approach-item .icon-box img{
    max-width: 30px;
    z-index: 1;
}

.therapeutic-approach-item .icon-box::before{
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    background: var(--primary-color);
    border-radius: 8px;
    width: 100%;
    height: 100%;
    transform: scale(0);
    transition: all 0.4s ease-in-out;
    z-index: 0;
}

.therapeutic-approach-item:hover .icon-box::before{
    transform: scale(1);
}

.therapeutic-approach-content h3{
    font-size: 20px;
    text-transform: capitalize;
    margin-bottom: 15px;
}

.case-study-image-list{
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    align-items: center;
}

.case-study-list,
.case-study-entry-image{
    width: calc(50% - 15px);
}

.case-study-list ul{
    margin-bottom: 0;   
}

.case-study-entry-image figure{
    display: block;
    border-radius: 20px;
}

.case-study-entry-image img{
    width: 100%;
    aspect-ratio: 1 / 0.714;
    object-fit: cover;
    border-radius: 20px;
}

/************************************/
/***       24. Team Page css 	  ***/
/************************************/

.page-team{
    padding: 100px 0 70px;
}

.page-team .team-member-item{
    width: 100%;
    height: calc(100% - 30px);
    margin-bottom: 30px;
}

/************************************/
/***      25. Team Single css 	  ***/
/************************************/

.page-team-single{
    padding: 100px 0;
}

.team-single-sidebar{
    position: sticky;
    top: 30px;
}

.team-sidebar-box{
	border-radius: 20px;
	overflow: hidden;
}

.team-sidebar-image figure{
    display: block;
}

.team-sidebar-image img{
    width: 100%;
    aspect-ratio: 1 / 0.975;
    object-fit: cover;
    border-radius: 20px 20px 0 0;
}

.team-sidebar-body{
    background-color: var(--secondary-color);
    padding: 30px;
}

.team-sidebar-body ul{
    margin: 0;
    padding: 0;
    list-style: none;
}

.team-sidebar-body ul li{
    display: inline-flex;
    width: 100%;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--divider-color);
}

.team-sidebar-body ul li:last-child{
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.team-sidebar-body ul li span{
    font-family: var(--accent-font);
    font-size: 20px;
    text-transform: capitalize;
    color: var(--primary-color);
    width: 40%;
}

.team-sidebar-footer{
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 12px 30px;
    background-color: var(--accent-color);
    border-radius: 0 0 20px 20px;
}

.team-sidebar-footer span{
    font-family: var(--accent-font);
    font-size: 20px;
    text-transform: capitalize;
    color: var(--white-color);
}

.team-sidebar-footer ul{
    list-style: none;
    padding: 0;
    margin: 0;
}

.team-sidebar-footer ul li{
    display: inline-block;
    border-radius: 50%;
    margin-right: 10px;
}

.team-sidebar-footer ul li a{
    border: 1px solid var(--white-color);
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease-in-out;
}

.team-sidebar-footer ul li:hover a{
    border-color: var(--primary-color);
}

.team-sidebar-footer ul li a i{
    color: var(--white-color);
    font-size: 18px;
    transition: all 0.3s ease-in-out;
}

.team-sidebar-footer ul li:hover a i{
    color: var(--primary-color);
}

.team-single-content{
    margin-left: 30px;
}

.team-single-content h2{
    font-size: 48px;
    margin-bottom: 20px;
    cursor: none;
}

.team-single-content p{
    margin-bottom: 20px;
}

.team-single-content p:last-child{
    margin-bottom: 0;
}

.team-member-info,
.team-member-experience,
.team-member-expertise{
    margin-bottom: 60px;
}

.team-member-experience{
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.member-experience-info,
.team-member-skills{
    width: calc(50% - 15px);
}

.member-experience-info-item{
    margin-bottom: 30px;
}

.member-experience-info-item:last-child{
    margin-bottom: 0;
}

.member-experience-info-item h3{
    font-size: 20px;
    text-transform: capitalize;
    margin-bottom: 15px;
}

.skills-progress-bar{
	margin-bottom: 30px;
}

.skills-progress-bar:last-child{
	margin-bottom: 0;
}

.skills-progress-bar .skillbar .skill-data{
	display: flex;
	justify-content: space-between;
	margin-bottom: 10px;
}

.skills-progress-bar .skill-data .skill-title{	
	font-size: 15px;
	text-transform: capitalize;
}

.skills-progress-bar .skill-data .skill-no{
	font-size: 15px;
	color: var(--primary-color);
	margin-left: 20px;
}

.skills-progress-bar .skillbar .skill-progress{
	width: 100%;
	height: 16px;
	background: var(--secondary-color);
	border-radius: 100px;
	position: relative;
}

.skills-progress-bar .skill-progress .count-bar{
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	background-color: var(--accent-color);
	border-radius: 100px;
}

.team-contact-form{
    background-color: var(--secondary-color);
    border-radius: 20px;
    padding: 40px;
}

/************************************/
/***      26. Pricing Page css 	  ***/
/************************************/

.page-pricing{
    padding: 100px 0;
}

.pricing-box{
    height: calc(100% - 30px);
    border: 1px solid var(--divider-color);
    border-radius: 20px;
    margin-bottom: 30px;
    padding: 40px;
}

.pricing-box.highlight-box{
    background-color: var(--accent-color);
    border-color: transparent;
}

.pricing-box-header{
    margin-bottom: 40px;
}

.pricing-title{
    margin-bottom: 30px;
}

.pricing-title h3{
    font-size: 20px;
    color: var(--accent-color);
    margin-bottom: 10px;
}

.pricing-box.highlight-box .pricing-title h3{
    color: var(--white-color);
}

.pricing-title h2{
    font-size: 48px;
    margin-bottom: 20px;
}

.pricing-box.highlight-box .pricing-title h2{
    color: var(--white-color);
}

.pricing-title h2 sub{
	font-family: var(--default-font);
    font-size: 16px;
    color: var(--text-color);
    bottom: 0;
}

.pricing-box.highlight-box .pricing-title h2 sub{
    color: var(--secondary-color);
}

.pricing-title p{
    margin-bottom: 0;
}

.pricing-box.highlight-box .pricing-title p{
    color: var(--secondary-color);
}

.pricing-btn .btn-default{
    width: 100%;
    text-align: center;
}

.pricing-box.highlight-box .pricing-btn .btn-default{
    background-color: var(--white-color);
    color: var(--primary-color);
}

.pricing-box.highlight-box .btn-default:hover{
    color: var(--white-color);
}

.pricing-list-title{
    margin-bottom: 20px;
}

.pricing-list-title h3{
    font-size: 20px;
}

.pricing-box.highlight-box .pricing-list-title h3{
    color: var(--white-color);
}

.pricing-list ul{
    margin: 0;
    padding: 0;
    list-style: none;
}

.pricing-list ul li{
    position: relative;
    color: var(--primary-color);
    text-transform: capitalize;
    padding-left: 30px;
    margin-bottom: 20px;
}

.pricing-list ul li:last-child{
    margin-bottom: 0;
}

.pricing-box.highlight-box .pricing-list ul li{
    color: var(--secondary-color);
}

.pricing-list ul li::before{
    content: '\f058';
    font-family: 'Font Awesome 6 Free';
    font-weight: 400;
    font-size: 20px;
    color: var(--accent-color);
    display: inline-block;
    line-height: normal;
    position: absolute;
    top: 2px;
    left: 0;
}

.pricing-box.highlight-box .pricing-list ul li::before{
    color: var(--white-color);
}

.pricing-benefit-list{
	margin-top: 30px;
}

.pricing-benefit-list ul{
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
    justify-content: center;
	gap: 20px 40px;
}

.pricing-benefit-list ul li{
	color: var(--primary-color);
    display: inline-flex;
    align-items: center;
}

.pricing-benefit-list ul li img{
	max-width: 20px;
	margin-right: 15px;
}

.our-testimonial.pricing-testimonial{
	padding: 100px 0;
}

/************************************/
/***    27. Testimonial Page css  ***/
/************************************/

.page-testimonial{
	padding: 80px 0 50px;
}

.client-testimonial-item{
    position: relative;
	height: calc(100% - 30px);
	border: 1px solid var(--divider-color);
	border-radius: 20px;
	padding: 30px 25px;
	margin-bottom: 30px;
}

.client-testimonial-item::before{
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--secondary-color);
    border-radius: 20px;
    height: 0;
    width: 100%;
    transition: all 0.4s ease-in-out;
    z-index: 0;
}

.client-testimonial-item:hover::before{
    top: 0;
    height: 100%;
}

.client-testimonial-header{
    position: relative;
    display: flex;
    gap: 10px;
    align-items: center;
    margin-bottom: 25px;
    z-index: 1;
}

.client-testimonial-author{
	width: calc(68% - 5px);
	display: flex;
	align-items: center;
}

.client-author-image{
	margin-right: 15px;
}

.client-author-image figure{
	display: block;
	border-radius: 10px;
	overflow: hidden;
}

.client-author-image img{
	width: 60px;
	height: 60px;
	border-radius: 10px;
}

.client-author-content{
	width: calc(100% - 75px);
}

.client-author-content h3{
	font-size: 20px;
	text-transform: capitalize;
	margin-bottom: 5px;
	font-weight: 600;
}

.client-author-content p{
    text-transform: capitalize;
	margin: 0;
}

.client-testimonial-rating{
    width: calc(32% - 5px);
    text-align: right;
}

.client-testimonial-rating i{
    font-size: 14px;
	color: var(--accent-color);
}

.client-testimonial-body{
    position: relative;
    margin-bottom: 20px;
    z-index: 1;
}

.client-testimonial-body p{
	font-size: 17px;
}

.client-testimonial-body p:last-child{
    margin-bottom: 0;
}

.client-testimonial-quote{
    position: relative;
    z-index: 1;
}

.client-testimonial-quote img{
    max-width: 40px;
}

/************************************/
/***     28. Image Gallery css 	  ***/
/************************************/

.page-gallery{
	padding: 80px 0 50px;
}

.page-gallery-box .photo-gallery{
	height: calc(100% - 30px);
	margin-bottom: 30px;
}

.page-gallery-box .photo-gallery a{
	cursor: none;
}

.page-gallery-box .photo-gallery figure{
	border-radius: 5px;
}

.page-gallery-box .photo-gallery img{
	aspect-ratio: 1 / 0.7;
	object-fit: cover;
	border-radius: 5px;
	border: 1px solid #50909363;
}

/************************************/
/***     29. Video Gallery css 	  ***/
/************************************/

.page-video-gallery{
	padding: 80px 0 50px;
}

.video-gallery-image{
	border-radius: 5px;
	overflow: hidden;
	height: calc(100% - 30px);
	margin-bottom: 30px;
}

.video-gallery-image a{
	position: relative;
	display: block;
	cursor: none;
}

.video-gallery-image a::before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--primary-color);
    border-radius: 5px;
/*    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{
	aspect-ratio: 1 / 0.7;
	object-fit: cover;
	border-radius: 5px;
}

/************************************/
/***      30. FAQs Page css 	  ***/
/************************************/

.page-faqs{
	padding: 100px 0;
}

.faq-sidebar{
	position: sticky;
	top: 30px;
	margin-right: 20px;
}

.faq-catagery-list{
	background-color: var(--secondary-color);
	border-radius: 20px;
	padding: 30px;
	margin-bottom: 60px;
}

.faq-catagery-list ul{
	list-style: none;
	margin: 0;
	padding: 0;
}

.faq-catagery-list ul li{
    margin-bottom: 20px;
}

.faq-catagery-list ul li:last-child{
	margin-bottom: 0;
}

.faq-catagery-list ul li a{
	position: relative;
    display: block;
    color: var(--text-color);
    background-color: var(--white-color);
    border-radius: 15px;
    text-transform: capitalize;
    padding: 15px 50px 15px 20px;
    transition: all 0.4s ease-in-out;
}

.faq-catagery-list ul li:hover a{
	color: var(--white-color);
    background-color: var(--accent-color);
}

.faq-catagery-list ul li a::after{
	content: '';
    position: absolute;
    top: 50%;
    right: 20px;
    width: 20px;
    height: 20px;
    transform: translateY(-50%);
    background-image: url(../images/arrow-accent.svg);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    transition: all 0.4s ease-in-out;
}

.faq-catagery-list ul li:hover a::after{
    filter: brightness(0) invert(1);
}

.faq-accordion.page-faq-accordion{
    margin-bottom: 60px;
}

.faq-accordion.page-faq-accordion:last-child{
    margin-bottom: 0;
}

/************************************/
/***   31. Contact Us Page css 	  ***/
/************************************/

.page-contact-us{
/*    padding: 100px 0;*/
}

.contact-form-box{
    background-color: var(--secondary-color);
    border-radius: 20px;
    text-align: center;
    padding: 40px;
}

.contact-form .form-group{
	margin-bottom: 15px;
}

.contact-form .form-control{
    font-size: 16px;
    font-weight: 400;
    line-height: 1.6em;
    color: var(--text-color);
    background-color: var(--white-color);
    border: 1px solid #efefef;
    border-radius: 10px;
    padding: 16px 20px;
    outline: none;
    box-shadow: none;
}

.contact-form textarea.form-control{
	height: 130px;
}

.contact-form .form-control::placeholder{
    color: var(--text-color);
}

.contact-info-box{
    background-color: var(--accent-color);
    border-radius: 20px;
	/*display: flex;
	flex-wrap: wrap;*/
	gap: 40px 60px;
	padding: 40px 40px 30px;
    margin-bottom: 80px;
}

.contact-info-item{
	/*width: calc(33.33% - 40px);
	display: flex;
	flex-wrap: wrap;*/
	text-align: center;
}

.contact-info-item .icon-box{
	position: relative;
	height: 70px;
	width: 70px;
	background-color: var(--white-color);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 15px;
	overflow: hidden;
	transition: all 0.5s ease-in-out;
	font-size: 30px;
}

.contact-info-item .icon-box i{
	color: #023c4a;
	z-index: 9;
}

.contact-info-item:hover .icon-box{
	background-color: transparent;
}

.contact-info-item:hover .icon-box i{
	color: #fff;
}

.contact-info-item .icon-box::before{
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    background: var(--primary-color);
    border-radius: 8px;
    width: 100%;
    height: 100%;
    transform: scale(0);
    transition: all 0.3s ease-in-out;
    z-index: 0;
}

.contact-info-item:hover .icon-box::before{
    transform: scale(1);
}

.contact-info-item .icon-box img{
    max-width: 35px;
    transition: all 0.4s ease-in-out;
	z-index: 1;
}

.contact-info-item:hover .icon-box img{
    filter: brightness(0) invert(1);
}

.contact-info-content{
/*	width: calc(100% - 80px);*/
}

.contact-info-content h3{
	font-size: 22px;
	text-transform: capitalize;
    color: var(--white-color);
	margin-bottom: 6px;
	font-weight: 600;
}

.contact-info-content p{
    color: var(--white-color);
	margin-bottom: 0;
	font-size: 17px;
}

.contact-info-content p a{
	color: var(--white-color);
}

.google-map-iframe,
.google-map-iframe iframe{
    height: 100%;
    width: 100%;
    border-radius: 20px;
}

.google-map-iframe iframe{
/*    filter: grayscale(1);*/
    transition: all 0.4s ease-in-out;
}

.google-map-iframe iframe:hover{
/*    filter: grayscale(0);*/
}

/*************************************/
/*** 32. Book Appointment Page css ***/
/*************************************/

.page-book-appointment{
    padding: 100px 0;
}

/************************************/
/***    33. 404 Error Page css 	  ***/
/************************************/

.error-page{
	padding: 100px 0;
}

.error-page-image{
	text-align: center;
	margin-bottom: 80px;
}

.error-page-image img{
	width: 100%;
	max-width: 50%;
}

.error-page-content{
	text-align: center;
}

.error-page-content .section-title{
	margin-bottom: 20px;
}

.error-page-content-body p{
	margin-bottom: 20px;
}



.marquee{
  padding: 20px 0 15px;
  display: flex;
  overflow: hidden;
  background: #023c4a; 
  color: #000;
  white-space: nowrap;
}
.marquee span{
  font-size: 28px;
  position: relative;
  /*-webkit-text-fill-color: transparent;
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: var(--rs-white);*/
  line-height: 0.9;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0 20px;
  color: #fff;
  font-family: var(--accent-font);
  font-weight: 600;
}
.marquee span i{
/*  font-size: 20px;*/
  margin-right: 15px;
  color: #509093;
}
.marquee-content {
  display: inline-flex;
  animation: scroll 55s linear infinite;
}
@keyframes scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-100%); }
}



#scroll-button {
  display: inline-block;
  background-color: #509093;
  width: 52px;
  height: 52px;
  text-align: center;
  border-radius: 50%;
  position: fixed;
  bottom: 30px;
  right: 30px;
  transition: background-color .3s, 
    opacity .5s, visibility .5s;
  opacity: 0;
  visibility: hidden;
  z-index: 1000;
}
#scroll-button::after {
  content: "\f077";
  font-family: FontAwesome;
  font-weight: normal;
  font-style: normal;
  font-size: 20px;
  line-height: 52px;
  color: #fff;
}
#scroll-button:hover {
  cursor: pointer;
  background-color: #509093;
}
#scroll-button:active {
  background-color: #509093;
}
#scroll-button.show {
  opacity: 1;
  visibility: visible;
}



.coming-soon h2{
	font-size: 70px;
    padding: 80px 0;
    text-align: center;
    font-weight: 700;
    text-transform: uppercase;
}

.clients-section {
  padding: 60px 0px;
  background: #ecf7fa;
}

.clients-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 25px;
}

.client-card {
  background: #ffffff;
  border-radius: 14px;
  padding: 20px 15px;
  text-align: center;
  transition: 0.3s ease;
  border: 1px solid #f1f1f1;
  cursor: pointer;
}

.client-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
  border-color: #509093;
}

.client-card img {
  height: 100px;
  object-fit: contain;
  margin-bottom: 10px;
  filter: grayscale(100%);
  transition: 0.3s ease;
}

.client-card:hover img {
  filter: grayscale(0%);
  transform: scale(1.05);
}

.client-card span {
    display: block;
    font-size: 18px;
    font-weight: 600;
    color: #023c4a;
}