/* ----------------------------------------------------------------------------------------
* Author        : Awaiken
* Template Name : Hairline - Barbershop Hair Salon and Hairdresser 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. Intro Video css
09. Our History css
10. Pricing Plan css
11. Our Team css
12. Scrolling Ticker css
13. Our Testimonial css
14. Our FAQ's css
15. Our Blog css
16. Footer css
17. About Us Page css
18. Services Page css
19. Service Single css
20. Blog Archive css
21. Blog Single css
22. Team Page css
23. Team Single css
24. Pricing Page css
25. Testimonials Page css
26. Image Gallery css
27. Video Gallery css
28. FAQ's Page css
29. Contact Us Page css
30. 404 Error Page css
31. Responsive css
-------------------------------------------------------------------------------------- */


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

:root{
	--primary-color				: #181818;
	--secondary-color			: #FFFFFF;
	--bg-color					: #F5EEE7;
	--text-color				: #666666;
	--accent-color				: #E7B961;
	--white-color				: #FFFFFF;
	--divider-color				: #1818181A;
	--dark-divider-color		: #FFFFFF1A;
	--error-color				: rgb(230, 87, 87);
	--default-font				: "Inter", sans-serif;
}

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

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

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

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

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

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

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

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

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

figure{
	margin: 0;
}

img{
	max-width: 100%;
}

a{
	text-decoration: none;
}

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

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

.container{
	max-width: 1300px;
}

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

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

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

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

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

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

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

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

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

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

.btn-default{
	position: relative;
	display: inline-block;
	font-size: 16px;
	font-weight: 700;
	line-height: 1em;
	text-transform: capitalize;
	color: var(--primary-color);
	background: var(--accent-color);
	border-radius: 100px;
	padding: 17px 14px 17px 55px;
	border: none;
	outline: none;
	overflow: hidden;
	transition: all 0.4s ease-in-out;
	z-index: 0;
}

.btn-default:hover{
	padding: 17px 55px 17px 24px;
	color: var(--white-color);
}

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

.btn-default:hover::before{
	left: 100%;
	transform: translate(calc(100% - 85px), -50%) rotate(45deg);
}

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

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

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

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

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

.readmore-btn{
	position: relative;
	display: inline-block;
	font-weight: 700;
	line-height: normal;
	text-transform: capitalize;
	color: var(--primary-color);
	padding: 2px 34px 2px 0;
	transition: all 0.3s ease-in-out;
}

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

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

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

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

.loading-container,
.loading{
	height: 100px;
	position: relative;
	width: 100px;
	border-radius: 100%;
}

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

.loading{
	border: 1px solid transparent;
	border-color: transparent var(--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);
	}
}

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

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

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

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

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

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

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

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

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

.section-sub-heading,
.section-title .section-sub-title{
	position: relative;
	display: inline-block;
	font-size: 14px;
	font-weight: 600;
	line-height: 1em;
	text-transform: capitalize;
	color: var(--primary-color);
	border: 1px solid var(--divider-color);
	border-radius: 100px;
	padding: 9px 16px 9px 32px;
    margin-bottom: 15px;
}

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

.section-title h1{
	font-size: 66px;
	font-weight: 600;
	line-height: 1.2em;
	letter-spacing: -0.03em;
	margin-bottom: 0;
	cursor: none;
}

.section-title h2{
	font-size: 46px;
	font-weight: 600;
	line-height: 1.2em;
	letter-spacing: -0.03em;
	margin-bottom: 0;
	cursor: none;
}

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

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

.dark-section .section-sub-heading,
.dark-section .section-title .section-sub-title{
	color: var(--white-color);
	border-color: var(--dark-divider-color);
}

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

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

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

header.main-header{
	position: absolute;
	left: 0;
	right: 0;
	z-index: 100;
}

header.main-header .header-sticky{
	position: relative;
	top: 0;
	border-bottom: 1px solid var(--dark-divider-color);
	z-index: 100;
}

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

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

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

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

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

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

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

.main-menu ul li a{
	font-size: 16px;
	font-weight: 500;
	line-height: 1.2em;
	padding: 12px 10px !important;
	color: var(--white-color);
	background: transparent;
	border-radius: 0px;
	text-transform: capitalize;
	transition: all 0.3s ease-in-out;
}

.main-menu ul li.submenu > a:after{
	content: '\f107';
	font-family: 'FontAwesome';
	font-weight: 900;
	font-size: 14px;
	margin-left: 8px;
}

.main-menu ul li a:hover,
.main-menu ul li a:focus{
	color: var(--accent-color);
}

.main-menu ul ul{
	visibility: hidden;
	opacity: 0;
	transform: scale(1,0.8);
	transform-origin: top;
	padding: 0;
	margin: 0;
	list-style: none;
	width: 235px;
	border-radius: 20px;
	position: absolute;
	left: 0;
	top: 100%;
	background: var(--accent-color);
	transition: all 0.3s ease-in-out;
	text-align: left;
}

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

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

.main-menu ul li:hover > ul{
	visibility: visible;
	opacity: 1;
	transform: scale(1,1);
    padding: 5px 0;
}

.main-menu ul li.submenu ul li.submenu > a:after{
    content: '\f105';
    float: right;
}

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

.main-menu ul ul li a{
	color: var(--primary-color);
	padding: 8px 20px !important;
	transition: all 0.3s ease-in-out;
}

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

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

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

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

.slicknav_btn{
	background: var(--accent-color);
	padding: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 38px;
	height: 38px;
	margin: 0;
	border-radius: 6px;
}

.slicknav_icon .slicknav_icon-bar{
	display: block;
	width: 100%;
	height: 3px;
	width: 22px;
	background-color: var(--primary-color);
	border-radius: 6px;
	margin: 4px auto !important;
	transition: all 0.1s ease-in-out;
}

.slicknav_icon .slicknav_icon-bar:first-child{
	margin-top: 0 !important;
}

.slicknav_icon .slicknav_icon-bar:last-child{
	margin-bottom: 0 !important;
}

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

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

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

.slicknav_menu{
	position: absolute;
    width: 100%;
	padding: 0;
	background: var(--accent-color);
}

.slicknav_menu ul{
	margin: 5px 0;
}

.slicknav_menu ul ul{
	margin: 0;
}

.slicknav_nav .slicknav_row,
.slicknav_nav li a{
	position: relative;
	font-size: 16px;
	font-weight: 500;
	text-transform: capitalize;
	padding: 7px 20px;
	color: var(--primary-color);
	line-height: normal;
	margin: 0;
	border-radius: 0 !important;
	transition: all 0.3s ease-in-out;
}

.slicknav_nav a:hover,
.slicknav_nav a:focus,
.slicknav_nav .slicknav_row:hover{
	background-color: transparent;
	color: var(--white-color);
}

.slicknav_menu ul ul li a{
    padding: 7px 20px 7px 30px;
}

.slicknav_arrow{
	font-size: 0 !important;
}

.slicknav_arrow:after{
	content: '\f107';
	position: absolute;
	font-family: 'FontAwesome';
	font-weight: 900;
	font-size: 12px;
	margin-left: 8px;
	color: var(--primary-color);
	right: 15px;
	top: 50%;
	transform: translateY(-50%);
	transition: all 0.3s ease-out;
}

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

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

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

.hero::before{
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background: linear-gradient(180deg, rgba(24, 24, 24, 0.80) 0%, transparent 23.28%), linear-gradient(180deg, transparent 51.94%, rgba(24, 24, 24, 0.72) 76.17%, rgba(24, 24, 24, 0.90) 100%);
	width: 100%;
	height: 100%;
	z-index: 1;
}

.hero.hero-image{
	background-image: url('../images/hero-bg-image.jpg');
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
}

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

.hero-slider .swiper,
.hero-slider-image{
	height: 100%;
}

.hero-slider-image figure{
	position: relative;
	display: block;
	height: 100%;
}

.hero-slider-image figure::before{
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(180deg, rgba(24, 24, 24, 0.80) 0%, transparent 23.28%), linear-gradient(180deg, transparent 51.94%, rgba(24, 24, 24, 0.72) 76.17%, rgba(24, 24, 24, 0.90) 100%);
	width: 100%;
	height: 100%;
}

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

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

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

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

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

.hero-working-hours{
	max-width: 445px;
	border: 1px solid var(--dark-divider-color);
	background: var(--divider-color);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	border-radius: 20px;
	margin-left: auto;
}

.hero-working-hours-header{
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 15px;
	border-bottom: 1px solid var(--dark-divider-color);
	padding: 30px;
}

.hero-working-hours-header .icon-box img{
	width: 100%;
	max-width: 24px;
}

.hero-working-hours-title{
	width: calc(100% - 39px);
}

.hero-working-hours-title h2{
	font-size: 20px;
	color: var(--white-color);
}

.hero-working-hour-list ul{
	list-style: none;
	padding: 30px;
	margin: 0;
}

.hero-working-hour-list ul li{
	font-weight: 500;
	line-height: 1.5em;
	color: var(--white-color);
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
	gap: 20px;
	margin-bottom: 20px;
}

.hero-working-hour-list ul li:last-child{
	margin-bottom: 0;
}

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

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

.about-us-image-box{
	position: relative;
	display: flex;
	flex-wrap: wrap;
	align-items: end;
	margin-right: 15px;
}

.about-us-image-box::before,
.about-us-image-box::after{
	content: '';
	position: absolute;
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
	z-index: -1;
}

.about-us-image-box::before{
	top: 0;
	right: 50px;
	width: 91px;
	height: 119px;
	background-image: url('../images/about-us-image-box-bg-1.png');
	transform: rotate(54deg);
}

.about-us-image-box::after{
	bottom: 0;
	left: 147px;
	width: 103px;
	height: 137px;
	background-image: url('../images/about-us-image-box-bg-2.png');
	transform: rotate(89deg);
}

.about-us-image-box-1{
	width: 36%;
	padding-bottom: 95px;
}

.about-us-image-box-2{
	position: relative;
	width: 64%;
	z-index: 1;
}

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

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

.about-us-image-box-1 .about-us-image figure{
	margin-right: -195px;
}

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

.about-us-image-box-2 .about-us-image figure{
	border: 6px solid var(--white-color);
	border-radius: 26px;
}

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

.about-us-image-box-2 .contact-us-circle{
	position: absolute;
	top: 0;
	left: -45px;
	transform: translateY(-50%);
	z-index: 2;
}

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

.contact-us-circle img{
	width: 100%;
	max-width: 140px;
	aspect-ratio: 1 / 1;
	border-radius: 50%;
    animation: infiniterotate 20s infinite linear;
}

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

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

.about-us-item{
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 15px;
	margin-bottom: 40px;
}

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

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

.about-us-item-content{
	width: calc(100% - 65px);
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
	gap: 60px;
}

.about-us-item-content h3{
	position: relative;
	width: calc(42% - 30px);
	font-size: 20px;
}

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

.about-us-item-content p{
	width: calc(58% - 30px);
	margin: 0;
}

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

.about-author-box{
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 15px;
}

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

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

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

.about-author-content p{
	line-height: normal;
	margin: 5px 0 0;
}

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

.our-services{
	background-image: url('../images/section-bg-image-1.png');
	background-repeat: no-repeat;
	background-position: bottom -40px left -82px;
	background-size: auto;
	padding: 120px 0;
}

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

.service-item{
	position: relative;
	height: 520px !important;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	gap: 30px;
	background: var(--dark-divider-color);
	backdrop-filter: blur(30px);
	-webkit-backdrop-filter: blur(30px);
	border-radius: 20px;
	height: calc(100% - 30px);
	margin-bottom: 30px;
	padding: 30px;
	transition: all 0.4s ease-in-out;
	overflow: hidden;
}

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

.service-item:hover:before{
	top: auto;
	height: 100%;
}

.service-item-body,
.service-item .icon-box,
.service-item-header{
	position: relative;
	z-index: 1;
}

.service-item-header h2{
	font-size: 22px;
	color: var(--white-color);
	transition: all 0.4s ease-in-out;
}

.service-item-header h2 a{
	color: inherit;
}

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

.service-item-content p{
	color: var(--white-color);
	margin: 0;
	transition: all 0.4s ease-in-out;
}

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

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

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

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

.section-footer-text p{
	color: var(--primary-color);
	margin-bottom: 0;
}

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

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

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

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

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

.section-footer-text .section-footer-border-list li{
	border-right: 1px solid var(--divider-color);
	padding-right: 15px;
}

.section-footer-text .section-footer-border-list li:last-child{
	padding-right: 0;
	border-right: none;
}

.section-footer-text ul li b{
	font-weight: 600;
}

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

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

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

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

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

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

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

.satisfy-client-image figure{
	display: block;
}

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

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

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

.satisfy-client-image.add-more h2{
	font-size: 14px;
	line-height: 1em;
	color: var(--primary-color);
}

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

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

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

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

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

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

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

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

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

.section-footer-text .section-footer-border-list li{
	border-color: var(--dark-divider-color);
}

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

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

.why-choose-content{
	margin-right: 15px;
}

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

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

.why-choose-list ul li::before{
	content: '';
	position: absolute;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
	width: 18px;
	height: 18px;
	background: url('../images/icon-sparcle.svg') no-repeat;
	background-position: center center;
	background-size: cover;
}

.why-choose-body{
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 20px 40px;
	border-top: 1px solid var(--divider-color);
	padding-top: 40px;
	margin-top: 60px;
}

.why-choose-contact-box{
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 15px;
}

.why-choose-contact-box .icon-box{
	position: relative;
	width: 50px;
	height: 50px;
	background: var(--primary-color);
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	transition: all 0.4s ease-in-out;
}

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

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

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

.why-choose-contact-content p{
	margin: 0;
}

.why-choose-contact-content h3{
	font-size: 20px;
	margin-top: 5px;
}

.why-choose-contact-content h3 a{
	color: inherit;
	transition: all 0.4s ease-in-out;
}

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

.why-choose-image{
	text-align: center;
}

.why-choose-image figure{
	position: relative;
	display: block;
	max-width: 510px;
	border-radius: 20px;
	margin: 0 auto;
	overflow: hidden;
}

.why-choose-image figure img{
	position: relative;
	width: 100%;
	aspect-ratio: 1 / 1.29771;
	object-fit: cover;
	border-radius: 20px;
	z-index: 1;
}

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

.intro-video{
	overflow: hidden;
}

.intro-video .container-fluid{
	padding: 0;
}

.intro-video-box{
	position: relative;
	min-height: 850px;
}

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

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

.intro-video-circle{
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: 1;
}

.intro-video-circle a{
	display: block;
    border-radius: 50%;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    cursor: none;
}

.intro-video-circle a img{
	width: 100%;
    max-width: 150px;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    animation: infiniterotate 20s linear infinite;
}

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

/************************************/
/***     09. Our History css      ***/
/************************************/

.our-history{
	padding: 120px 0;
}

.our-history-image{
	height: 100%;
	margin-right: 15px;
}

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

.our-history-image figure img{
	width: 100%;
	height: 100%;
	aspect-ratio: 1 / 1.2314;
	object-fit: cover;
	border-radius: 20px;
}

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

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

.history-item{
	width: calc(50% - 15px);
	background: linear-gradient(180deg, var(--secondary-color) 0%, var(--bg-color) 100%);
	border-radius: 20px 20px 0 0;
	padding: 30px;
	overflow: hidden;
}

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

.history-item .icon-box{
	margin-bottom: 30px;
}

.history-item-content h3{
	font-size: 22px;
}

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

.history-author-box{
	border-top: 1px solid var(--divider-color);
	padding-top: 40px;
	margin-top: 40px;
}

.history-author-sign img{
	width: 100%;
	max-width: 173px;
}

.history-author-content p{
	margin: 10px 0 0;
}

/************************************/
/*** 	 10. Pricing Plan css	  ***/
/************************************/

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

.pricing-item-list{
	display: flex;
	flex-wrap: wrap;
	gap: 60px;
}

.pricing-item{
	width: calc(50% - 30px);
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 20px;
}

.pricing-item-image figure{
	display: block;
	border-radius: 50%;
}

.pricing-item-image figure img{
	width: 100%;
	max-width: 60px;
	border-radius: 50%;
}

.pricing-item-body{
	width: calc(100% - 80px);
}

.pricing-item-title{
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 25px;
}

.pricing-item-title h2{
	max-width: 70%;
}

.pricing-item-title h2,
.pricing-item-title h3{
	font-size: 22px;
	color: var(--white-color);
}

.pricing-item-title hr{
    height: 1px;
    flex-grow: 1;
	border-top: 1px dashed var(--dark-divider-color);
    opacity: 1;
    margin: 0;
}

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

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

.our-pricing .section-footer-text{
	margin-top: 60px;
}

/************************************/
/*** 	   11. Our Team css	      ***/
/************************************/

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

.team-item{
	position: relative;
    border-radius: 20px;
    height: calc(100% - 30px);
    margin-bottom: 30px;
    overflow: hidden;
}

.team-item-image figure,
.team-item-image a{
	position: relative;
    display: block;
    cursor: none;
}

.team-item-image figure:before{
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	height: 100%;
	width: 100%;
	background: linear-gradient(180deg, transparent 40.08%, rgba(24, 24, 24, 0.80) 68.11%);
	z-index: 1;
}

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

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

.team-item-body{
	position: absolute;
	bottom: 40px;
	left: 40px;
	right: 40px;
    transform: translateY(60%);
	text-align: center;
    transition: all 0.4s ease-in-out;
    z-index: 2;
}

.team-item:hover .team-item-body{
	transform: translateY(0%);
}

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

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

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

.team-item-social-list{
	border-top: 1px solid var(--dark-divider-color);
    opacity: 0;
    visibility: hidden;
	margin-top: 20px;
	padding-top: 20px;
    transition: all 0.4s ease-in-out;
}

.team-item:hover .team-item-social-list{
	opacity: 1;
	visibility: visible;
}

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

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

.team-item-social-list ul li a:hover{
	color: var(--primary-color);
    background: var(--accent-color);
	border-color: var(--accent-color);
}

.team-item-social-list ul li a i{
    font-size: 16px;
	color: inherit;
}

/************************************/
/***   12. Scrolling Ticker css   ***/
/************************************/

.our-scrolling-ticker{
	position: relative;
}

.scrolling-ticker-box{
	--gap: 15px;
	position: relative;
	display: flex;
	align-items: center;
	overflow: hidden;
	user-select: none;
	gap: var(--gap);
}

.scrolling-content{
	flex-shrink: 0;
	display: flex;
	gap: var(--gap);
	min-width: 100%;
	animation: scroll 25s linear infinite;
}

.our-scrolling-ticker:hover .scrolling-content{
	animation-play-state: paused;
}

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

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

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

.scrolling-content .photo-gallery{
	width: calc((100vw / 5) - 12px);	
}

.scrolling-content .photo-gallery img{
	aspect-ratio: 1 / 1.2;
}

@keyframes scroll{
	from{
		transform: translateX(0);
	}
	to{
		transform: translateX(calc(-100% - var(--gap)));
	}
}

/************************************/
/***    13. Our Testimonial css	  ***/
/************************************/

.our-testimonials{
	padding: 120px 0;
}

.testimonials-slider{
	height: 100%;
}

.testimonials-slider .swiper{
	height: 100%;
}

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

.testimonials-item{
	height: 100%;
	background-color: var(--secondary-color);
	border-radius: 20px;
	display: flex;
	flex-wrap: wrap;
	overflow: hidden;
}

.testimonials-item-image{
	width: 36%;
	overflow: hidden;
}

.testimonials-item-image figure{
	display: block;
	height: 100%;
}

.testimonials-item-image figure img{
	width: 100%;
	height: 100%;
	aspect-ratio: 1 / 1.39;
	object-fit: cover;
	transition: all 0.6s ease-in-out;
}

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

.testimonials-item-body{
	width: 64%;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	gap: 40px;
	padding: 40px;
}

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

.testimonials-item-rating-star i{
	color: var(--accent-color);
}

.testimonials-item-author{
	border-top: 1px solid var(--divider-color);
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 15px;
	padding-top: 20px;
}

.testimonials-item-author-content h2{
	font-size: 22px;
}

.testimonials-item-author-content p{
	margin: 5px 0 0;
}

.testimonial-item-quote img{
	width: 100%;
	max-width: 50px;
}

.our-testimonials .section-footer-text{
	margin-top: 60px;
}

/************************************/
/***       14. Our FAQ's css	  ***/
/************************************/

.our-faqs{
	position: relative;
	background-image: url('../img/faq-banner-img.jpg');
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
	padding: 120px 0;
}

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

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

.faqs-content{
	position: sticky;
	top: 30px;
	margin-right: 15px;
}

.faq-accordion .accordion-item{
	position: relative;
	background: var(--white-color);
	border-radius: 10px;
	margin-bottom: 20px;
	overflow: hidden;
}

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

.faq-accordion .accordion-header .accordion-button{
	font-size: 20px;
	font-weight: 600;
	line-height: 1.2em;
    background: transparent;
	color: var(--primary-color);
	padding: 20px 55px 20px 30px;
	transition: all 0.3s ease-in-out;
}

.faq-accordion .accordion-item .accordion-button::after, 
.faq-accordion .accordion-item .accordion-button.collapsed::after{
    content: '\f078';
    font-family: 'Font Awesome 7 Free';
    position: absolute;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
	font-size: 16px;
	font-weight: 900;
	color: var(--accent-color);
    transition: all 0.4s ease-in-out;
}

.faq-accordion .accordion-button:not(.collapsed)::after{
    content: '\f077';
}

.faq-accordion .accordion-item .accordion-body{
	border-top: 1px solid var(--divider-color);
	padding: 22px 30px;
}

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

.dark-section .faq-accordion .accordion-item{
	background: var(--dark-divider-color);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
}

.dark-section .faq-accordion .accordion-header .accordion-button{
	color: var(--white-color);
}

.dark-section .faq-accordion .accordion-item .accordion-button::after, 
.dark-section .faq-accordion .accordion-item .accordion-button.collapsed::after{
	color: var(--white-color);
}

.dark-section .faq-accordion .accordion-item .accordion-body{
	border-color: var(--dark-divider-color);
}

.dark-section .faq-accordion .accordion-item .accordion-body p{
	color: var(--white-color);
}

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

.our-blog{
	padding: 120px 0 90px;
}

.post-item{
	height: calc(100% - 30px);
	background-color: var(--secondary-color);
	border-radius: 20px;
	display: flex;
	flex-direction: column;
	/* justify-content: space-between; */
	padding: 10px;
	margin-bottom: 30px;
}

.post-featured-image{
	border-radius: 10px;
	margin-bottom: 10px;
	overflow: hidden;
}

.post-featured-image a{	
	display: block;
	cursor: none;
}

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

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

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

.post-item-body{
	padding: 20px;
}

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

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

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

.post-item-btn{
	border-top: 1px solid var(--divider-color);
	padding-top: 30px;
	margin-top: 30px;
}

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

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

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

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

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

.footer-gallery-list .photo-gallery figure img{
	aspect-ratio: 1 / 1.034;
	border-radius: 10px;
}

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

.footer-logo{
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 30px;
	margin-bottom: 80px;
}

.footer-logo hr{
	min-width: 20%;
	height: 1px;
    flex-grow: 1;
    color: var(--dark-divider-color);
    opacity: 1;
    margin: 0;
}

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

.footer-contact-info{
	max-width: 300px;
}

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

.footer-contact-info ul li{
	line-height: 1.5em;
	color: var(--white-color);
	border-bottom: 1px solid var(--dark-divider-color);
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 10px;
	padding-bottom: 25px;
	margin-bottom: 25px;
}

.footer-contact-info ul li:last-child{
	border-bottom: none;
	padding-bottom: 0;
	margin-bottom: 0;
}

.footer-contact-info ul li span{
	font-weight: 700;
}

.footer-contact-info ul li a{
	color: inherit;
	transition: all 0.4s ease-in-out;
}

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

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

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

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

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

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

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

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

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

.footer-newsletter-box{
	max-width: 100%;
	width: 395px;
}

.footer-newsletter-form .form-group{
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	background: var(--dark-divider-color);
	backdrop-filter: blur(50px);
	-webkit-backdrop-filter: blur(50px);
	border-radius: 100px;
	padding: 5px;
}

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

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

.footer-newsletter-form .form-group .btn-default{
	padding: 17px 20px;
	text-align: center;
}

.footer-newsletter-form .form-group .btn-default::before{
	display: none;
}

.footer-social-links{
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 15px;
	margin-top: 40px;
}

.footer-social-links h3{
	font-size: 22px;
	color: var(--white-color);
}

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

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

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

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

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

.footer-copyright{
	border-top: 1px solid var(--dark-divider-color);
	padding: 60px 0;
	margin-top: 80px;
}

.footer-copyright-text{
	text-align: center;
}

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

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

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

.page-header:before{
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	height: 100%;
	width: 100%;
	background: linear-gradient(180deg, rgba(24, 24, 24, 0.80) 0%, transparent 23.28%), linear-gradient(180deg, transparent 51.94%, rgba(24, 24, 24, 0.72) 76.17%, rgba(24, 24, 24, 0.90) 100%);
	z-index: 1;
}

.page-header-box{
	position: relative;
	z-index: 2;
}

.page-header-box h1{
	display: inline-block;
	font-size: 66px;
    font-weight: 600;
	line-height: 1.2em;
	letter-spacing: -0.03em;
	color: var(--white-color);
	margin-bottom: 10px;
	cursor: none;
}

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

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

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

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

.our-approach{
	background-image: url(../images/section-bg-image-1.png);
    background-repeat: no-repeat;
    background-position: bottom -40px left -82px;
    background-size: auto;
	padding: 120px 0;
	overflow: hidden;
}

.approach-item{
	position: relative;
	background-color: var(--dark-divider-color);
	border-radius: 20px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	gap: 30px;
	min-height: 435px;
	height: calc(100% - 30px);
	margin-bottom: 30px;
	padding: 40px;
	overflow: hidden;
}

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

.approach-item:hover:before{
	top: auto;
	height: 100%;
}

.approach-item-image figure{
	display: block;    
    mask-image: url(../images/our-approach-item-image-bg-shape.svg);
    background-image: url(../images/our-approach-item-image-bg-shape.svg);
	mask-size: cover;
    mask-position: center center;
    mask-repeat: no-repeat;
    width: 170px;
    height: 120px;
	border-radius: 20px;
}

.approach-item-image figure img{
	width: 100%;
	object-fit: cover;
	border-radius: 20px;
}

.approach-item-content{
	position: relative;
	z-index: 1;
}

.approach-item-content h3{
	font-size: 22px;
	color: var(--white-color);
	transition: all 0.4s ease-in-out;
}

.approach-item-content p{
	color: var(--white-color);
	margin: 10px 0 0;
	transition: all 0.4s ease-in-out;
}

.approach-item-content ul{
	list-style: none;
	display: flex;
	flex-wrap: wrap;
	gap: 15px;
	padding: 0;
	margin: 40px 0 0;
}

.approach-item-content ul li{
	position: relative;
	font-size: 14px;
	font-weight: 600;
	color: var(--white-color);
	border: 1px solid var(--dark-divider-color);
	border-radius: 100px;
	padding: 8px 16px 8px 32px;
	transition: all 0.4s ease-in-out;
}

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

.approach-item:hover .approach-item-content h3,
.approach-item:hover .approach-item-content p{
	color: var(--primary-color);
}

.approach-item:hover .approach-item-content ul li{
	color: var(--primary-color);
	border-color: var(--divider-color);
}

.how-it-work{
	padding: 120px 0;
}

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

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

.how-work-item:last-child{
	border-bottom: none;
	padding-bottom: 0;
	margin-bottom: 0;
}

.how-work-item-number{
	position: relative;
	width: 60px;
	height: 60px;
	background-color: var(--accent-color);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.4s ease-in-out;
}

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

.how-work-item:hover .how-work-item-number::before{
	transform: scale(1);
}

.how-work-item-number span{
	position: relative;
	display: inline-block;
	font-size: 26px;
	font-weight: 600;
	line-height: normal;
	color: var(--primary-color);
	z-index: 1;
}

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

.how-work-item-content h3{
	font-size: 22px;
	color: var(--white-color);
}

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

.how-it-work .how-work-bg-video{
    width: 100%;
    height: auto;
    min-height: auto;
    border-radius: 20px;
    margin-left: 15px;
    overflow: visible;
}

.reel-grid{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-start;
    gap: 20px;
    width: 100%;
}

.reel-item{
    flex: 1 1 300px;
    max-width: 340px;
    width: 100%;
}

.reel-item iframe{
    width: 100% !important;
    max-width: 100% !important;
}

.reel-item .instagram-media{
    width: 100% !important;
    min-width: 0 !important;
    margin: 0 !important;
}

/* ===== Responsive: mobile pe swipeable slider ===== */
@media (max-width: 991px){
    .how-it-work .how-work-bg-video{
        margin-left: 0;
        margin-top: 30px;
    }
}

@media (max-width: 575px){
    .reel-grid{
        flex-wrap: nowrap;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        justify-content: flex-start;
        padding: 0 10px 10px;
        gap: 15px;
    }
    .reel-grid::-webkit-scrollbar{
        display: none;
    }
    .reel-item{
        flex: 0 0 85%;
        max-width: 320px;
        scroll-snap-align: center;
    }
}

.our-experience{
	padding: 120px 0;
}

.our-experience-image{
	height: 100%;
	margin-right: 15px;
}

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

.our-experience-image figure img{
	width: 100%;
	height: 100%;
	aspect-ratio: 1 / 1.124;
	object-fit: cover;
	border-radius: 20px;
}

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

.our-experience-content .section-title{
	border-bottom: 1px solid var(--divider-color);
	padding-bottom: 40px;
}

.our-experience-body{
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
}

.our-experience-body-image-box{
	position: relative;
	width: calc(46% - 15px);
}

.our-experience-body-image{
	height: 100%;
}

.our-experience-body-image figure{
	position: relative;
	display: block;
	height: 100%;
	border-radius: 20px;
	overflow: hidden;
}

.our-experience-body-image figure::before{
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background: linear-gradient(180deg, transparent 0%, var(--primary-color) 100%);
	width: 100%;
	height: 100%;
}

.our-experience-body-image figure img{
	width: 100%;
	height: 100%;
	aspect-ratio: 1 / 0.778;
	object-fit: cover;
	border-radius: 20px;
}

.our-experience-counter-content{
	position: absolute;
	bottom: 30px;
	left: 30px;
	right: 30px;
	z-index: 1;
}

.our-experience-counter-content h2{
	font-size: 60px;
	line-height: 1em;
	color: var(--white-color);
}

.our-experience-counter-content p{
	color: var(--white-color);
	margin: 5px 0 0;
}

.our-experience-list{
	width: calc(54% - 15px);
	align-content: center;
}

.our-experience-list ul{
	list-style: none;
	padding: 0;
	margin: 0;
}

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

.our-experience-list ul li:last-child{
	margin-bottom: 0;
}

.our-experience-list ul li::before{
	content: '';
	position: absolute;
	top: 3px;
	left: 0;
	background-image: url('../images/icon-sparcle.svg');
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
	width: 18px;
	height: 18px;
}

.our-experience-footer{
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 20px 30px;
	margin-top: 40px;
}

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

.page-service{
	padding: 120px 0 90px;
}

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

.page-service .service-item-header h2{
	color: var(--primary-color);
}

.page-service .service-item-content p{
	color: var(--text-color);
}

.page-service .service-item-btn .readmore-btn{
	color: var(--primary-color);
}

.page-service .service-item:hover .service-item-btn .readmore-btn,
.page-service .service-item:hover .service-item-content p,
.page-service .service-item:hover .service-item-header h2{
	color: var(--white-color);
}

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

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

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

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

.page-category-list .page-category-list-title{
	font-size: 22px;
	line-height: normal;
	background: var(--accent-color);
	padding: 19px 30px;
}

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

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

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

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

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

.page-category-list ul li a::before{
	content: '';
    position: absolute;
    top: 50%;
    right: 0;
	background: url('../images/arrow-primary.svg') no-repeat;
	background-position: center center;
	background-size: cover;
    width: 20px;
    height: 20px;
	transform: translateY(-50%) rotate(45deg);
}

.sidebar-cta-box{
	position: relative;
	min-height: 450px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	gap: 30px;
	background-image: url('../images/sidebar-cta-bg-image.jpg');
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
	border-radius: 20px;
	padding: 40px;
	overflow: hidden;
}

.sidebar-cta-box::before{
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background: linear-gradient(180deg, transparent 0%, rgba(24, 24, 24, 0.90) 85%), linear-gradient(0deg, rgba(24, 24, 24, 0.50) 0%, rgba(24, 24, 24, 0.50) 100%);
	width: 100%;
	height: 100%;
	z-index: 0;
}

.sidebar-cta-logo img{
    position: relative;
	width: 100%;
	max-width: 175px;
	z-index: 1;
}

.sidebar-cta-body{
	position: relative;
	z-index: 1;
}

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

.sidebar-cta-contact-list ul{
	list-style: none;
	padding: 0;
	margin: 0;
}

.sidebar-cta-contact-list ul li{
	line-height: 1.5em;
	color: var(--white-color);
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	margin-bottom: 15px;
}

.sidebar-cta-contact-list ul li:last-child{
	margin: 0;
}

.sidebar-cta-contact-list ul li img{
	width: 100%;
	max-width: 20px;
	margin-right: 10px;
}

.sidebar-cta-contact-list ul li a{
	color: inherit;
	transition: all 0.4s ease-in-out;
}

.sidebar-cta-contact-list ul li a:hover{
	color: var(--accent-color);
}

.sidebar-cta-content h2{
	font-size: 24px;
	color: var(--white-color);
}

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

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

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

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

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

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

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

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

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

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

.service-entry p:last-child,
.service-entry h2:last-child,
.service-entry h3:last-child{
	margin: 0;
}

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

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

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

.service-entry ul li::before{
	content: '';
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: 18px;
    height: 18px;
    background: url(../images/icon-sparcle.svg) no-repeat;
    background-position: center center;
    background-size: cover;
}

.service-include-box,
.service-how-work-box,
.service-benefit-box{
    margin-top: 60px;
}

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

.service-include-item{
	width: calc(50% - 15px);
	display: flex;
	flex-wrap: wrap;
	gap: 15px;
	border-bottom: 1px solid var(--divider-color);
	padding-bottom: 30px;
}

.service-include-item:nth-last-child(2):nth-of-type(even){
	border-bottom: 1px solid var(--divider-color);
	padding-bottom: 30px;
}

.service-include-item:nth-last-child(2),
.service-include-item:last-child{
	border: none;
	padding: 0;
}

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

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

.service-how-work-accordion{
	margin-top: 40px;
}

.service-how-work-accordion .accordion-item{
	border-bottom: 1px solid var(--divider-color);
	padding-bottom: 40px;
	margin-bottom: 40px;
}

.service-how-work-accordion .accordion-item:last-child{
	border-bottom: none;
	padding-bottom: 0;
	margin-bottom: 0;
}

.service-how-work-accordion .accordion-header{
	margin: 0;
}

.service-how-work-accordion .accordion-header .accordion-button{
	font-size: 22px;
	font-weight: 600;
	line-height: 1.2em;
	letter-spacing: -0.02em;
    color: var(--primary-color);
    padding: 0 25px 0 0;
	transition: all 0.4s ease-in-out;
}

.service-how-work-accordion .accordion-item .accordion-button::after, 
.service-how-work-accordion .accordion-item .accordion-button.collapsed::after{
    content: '\f078';
    font-family: 'Font Awesome 7 Free';
    position: absolute;
	right: 0;
    top: 50%;
	transform: translateY(-50%);
    font-size: 16px;
	font-weight: 900;
	color: var(--accent-color);
    transition: all 0.4s ease-in-out;
}

.service-how-work-accordion .accordion-button:not(.collapsed)::after{
    content: '\f077';
}

.service-how-work-accordion .accordion-item .accordion-body{
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
    padding: 30px 0 0;
}

.service-how-work-accordion .accordion-item .accordion-body .accordion-body-image{
	max-width: 205px;
}

.service-how-work-accordion .accordion-item .accordion-body .accordion-body-image figure{
	display: block;
	height: 100%;
	border-radius: 10px;
}

.service-how-work-accordion .accordion-item .accordion-body .accordion-body-image figure img{
	width: 100%;
	height: 100%;
	aspect-ratio: 1 / 0.6257;
	object-fit: cover;
	border-radius: 10px;
}

.service-how-work-accordion .accordion-item .accordion-body .accordion-body-content{
	width: calc(100% - 235px);
	align-content: center;
}

.service-how-work-accordion .accordion-item .accordion-body .accordion-body-content p{
	margin: 0 0 15px;
}

.service-benefit-video-content{
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
	margin: 40px 0;
}

.service-benefit-video-image{
	position: relative;
	width: calc(50% - 15px);
}

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

.service-benefit-video-image figure img{
	width: 100%;
	height: 100%;
	aspect-ratio: 1 / 0.5703;
	object-fit: cover;
	border-radius: 10px;
}

.service-benefit-video-image .video-play-button{
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: 1;
}

.video-play-button a{
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 15px;
	cursor: none;
}

.video-play-button a span{
	position: relative;
	width: 50px;
	height: 50px;
	color: var(--primary-color);
	background: var(--accent-color);
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
}

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

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

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

.video-play-button a span i{
    font-size: 20px;
    color: inherit;
    margin-left: 2px;
}

.video-play-button p{
	font-family: var(--accent-font);
	font-size: 16px;
	font-weight: 600;
	color: var(--white-color);
	margin: 0;
}

.service-benefit-content{
	width: calc(50% - 15px);
	align-content: center;
}

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

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

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

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

.page-pagination ul li a,
.page-pagination ul li span{
    display: flex;
    text-decoration: none;
    justify-content: center;
    align-items: center;
    background: var(--white-color);
    color: var(--primary-color);
	border-radius: 10px;
    width: 40px;
    height: 40px;
    margin: 0 5px;
    font-weight: 600;
	line-height: 1em;
    transition: all 0.3s ease-in-out;
}

.page-pagination ul li.active a, 
.page-pagination ul li a:hover{
    background: var(--accent-color);
}

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

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

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

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

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

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

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

.post-image img{
	width: 100%;
	aspect-ratio: 1 / 0.50;
	object-fit: contain;
	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: 600;
    line-height: 1.2em;
    letter-spacing: -0.02em;
	margin: 0 0 0.42em;
}

.post-entry h1{
	font-size: 66px;
	letter-spacing: -0.03em;
}

.post-entry h2{
	font-size: 46px;
	letter-spacing: -0.03em;
}

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

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

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

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

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

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

.post-entry p strong{
	color: var(--primary-color);
	font-size: 18px;
}

.post-entry ol{
    margin: 0 0 30px;
}

.post-entry ul{
	padding: 0;
	margin: 20px 0 20px;
	padding-left: 20px;
}

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

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

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

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

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

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

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

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

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

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

.post-tags .tag-links a:hover{
	background: var(--primary-color);
	color: var(--white-color);
}

.post-social-sharing{
    text-align: right;
}

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

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

.post-social-sharing ul li:last-child{
	margin-right: 0;
}

.post-social-sharing ul li a{
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
	border: 1px solid var(--divider-color);
    color: var(--primary-color);
	border-radius: 10px;
    width: 40px;
    height: 40px;
    transition: all 0.4s ease-in-out;
}

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

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

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

.page-team{
	padding: 120px 0 90px;
}

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

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

.team-member-about{
	background-color: var(--secondary-color);
	border-radius: 20px;
	display: flex;
	flex-wrap: wrap;
	gap: 40px;
	padding: 40px;
	margin-bottom: 60px;
}

.team-single-image{
	width: calc(41% - 20px);
}

.team-single-image figure{
	position: relative;
	display: block;
	height: 100%;
	border-radius: 20px;
}

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

.team-about-content{
	width: calc(59% - 20px);
	padding: 10px 0;
	align-content: center;
}

.team-about-content .section-title{
	border-bottom: 1px solid var(--divider-color);
	padding-bottom: 40px;
}

.team-contact-list{
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
}

.team-contact-item{
	width: calc(50% - 15px);
	background-color: var(--bg-color);
	border-radius: 20px;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 15px;
	padding: 17px 20px;
}

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

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

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

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

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

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

.team-contact-item-content h3{
	font-size: 22px;
}

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

.member-social-list{
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 15px;
	margin-top: 40px;
}

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

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

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

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

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

.team-member-skill-info-box,
.team-skills-form{
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
}

.team-member-skill-info-box{
	margin-bottom: 60px;
}

.team-member-info-box,
.team-member-skill-box,
.team-member-experts,
.team-contact-form{
	width: calc(50% - 15px);
}

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

.team-member-experts{
	align-content: center;
}

.team-member-skill-item-list ul{
	list-style: none;
	display: flex;
	flex-wrap: wrap;
	gap: 15px 20px;
	padding: 0;
	margin: 0;
}

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

.team-member-skill-item-list ul li::before{
	content: '';
    position: absolute;
    top: 4px;
    left: 0;
    background-image: url(../images/icon-sparcle.svg);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    width: 18px;
    height: 18px;
}

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

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

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

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

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

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

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

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

.pricing-box{
	background: var(--white-color);
	border-radius: 20px;
	height: calc(100% - 30px);
	margin-bottom: 30px;
	padding: 30px;
}

.pricing-box-header .icon-box{
	margin-bottom: 20px;
}

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

.pricing-box-content .pricing-box-title{
	display: block;
	font-size: 22px;
	font-weight: 600;
	line-height: 1.2em;
	color: var(--primary-color);
}

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

.pricing-box-price{
	margin-top: 20px;
}

.pricing-box-price h2{
	font-size: 40px;
	line-height: 1em;
}

.pricing-box-body{
	border-top: 1px solid var(--divider-color);
	padding-top: 30px;
	margin-top: 30px;
}

.pricing-box-list h3{
	font-size: 22px;
	margin-bottom: 20px;
}

.pricing-box-list ul{
	list-style: none;
	padding: 0;
	margin: 0;
}

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

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

.pricing-box-list ul li::before{
	content: '';
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: 18px;
    height: 18px;
    background: url(../images/icon-sparcle.svg) no-repeat;
    background-position: center center;
    background-size: cover;
}

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

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

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

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

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

.pricing-benefit-list ul li{
    display: inline-flex;
    align-items: center;
	color: var(--primary-color);
}

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

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

.page-testimonials{
	padding: 120px 0 90px;
}

.page-testimonials .testimonials-item{
	height: calc(100% - 30px);
	margin-bottom: 30px;
	transition: all 0.4s ease-in-out;
}

.page-testimonials .testimonials-item:hover{
	transform: translateY(-5px);
}

.page-testimonials .testimonials-item .testimonials-item-body{
	width: 100%;
}

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

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

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

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

.page-gallery{
	padding: 120px 0 90px;
}

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

.page-gallery .page-gallery-box .photo-gallery img{
	aspect-ratio: 1 / 0.87;
}

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

.page-video-gallery{
	padding: 120px 0 90px;
}

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

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

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

.video-gallery-image:hover a::before{
    opacity: 50%;
    visibility: visible;
    transform: scale(1);
}

.video-gallery-image a::after{
    content: '\f04b';
	font-family: 'FontAwesome';
    position: absolute;
    top: 50%;
    left: 50%;
    right: 0;
    transform: translate(-50%, -50%);
	font-size: 20px;
	background: var(--accent-color);
	color: var(--white-color);
    border-radius: 50%;
    height: 60px;
    width: 60px;
    cursor: none;
	display: flex;
	align-items: center;
	justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s ease-in-out;
    z-index: 1;
}

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

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

/************************************/
/*** 	  28. FAQ's Page css	  ***/
/************************************/

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

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

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

.page-faqs .page-single-faqs .faq-accordion{
	margin: 0;
}

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

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

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

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

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

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

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

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

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

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

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

.contact-info-item-content h3{
    font-size: 22px;
}

.contact-info-item-content p{
    margin: 5px 0 0;
}

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

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

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

.contact-form label{
	font-size: 16px;
	font-weight: 600;
	color: var(--primary-color);
	margin-bottom: 15px;
}

.contact-form .form-control{
	font-size: 16px;
	font-weight: 500;
	line-height: 1em;
	color: var(--primary-color);
	background: var(--bg-color);
	border: none;
	border-radius: 10px;
	padding: 15px 20px;
	box-shadow: none;
	outline: none;
}

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

.google-map{
    padding: 60px 0 120px;
}

.google-map-iframe{
	height: 600px;
}

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

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

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

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

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

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

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

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

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

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

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

	.section-content-btn .section-btn{
		margin-top: 20px;
	}
	
	.section-title-content{
        margin-top: 10px;
    }

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

	.hero{
		height: auto;
		min-height: 750px;
	}

	.hero::before{
		background-color: var(--primary-color);
		opacity: 50%;
	}

	.hero-working-hours{
		margin: 30px 0 0 0;
	}

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

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

	.about-us-item{
		margin-bottom: 30px;
	}

	.about-us-item-content h3{
		width: calc(36% - 30px);
	}

	.about-us-item-content p{
		width: calc(64% - 30px);
	}

	.our-services{
		background-position: bottom -17px left -38px;
		background-size: 150px auto;
	}

	.why-choose-content{
		margin: 0 0 30px;
	}

	.why-choose-body{
		margin-top: 40px;
	}

	.intro-video-box{
		min-height: 550px;
	}

	.intro-video-circle a img{
        max-width: 130px;
    }

	.our-history-image{
		height: auto;
		margin: 0;
	}

	.our-history-image figure{
		height: auto;
	}

	.our-history-image figure img{
		height: auto;
		aspect-ratio: 1 / 0.6;
	}

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

	.pricing-item-list{
		gap: 40px;
	}

	.pricing-item{
		width: calc(50% - 20px);
	}

	.scrolling-content .photo-gallery{
		width: calc((100vw / 4) - 11.25px);	
	}

	.testimonials-item-body{
		padding: 30px;
	}

	.faqs-content{
		position: initial;
		margin: 0 0 30px;
	}

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

	.footer-contact-info{
		max-width: 100%;
		margin-bottom: 30px;
	}

	.footer-contact-info ul li{
		margin-bottom: 15px;
		padding-bottom: 15px;
	}

	.footer-links h2{
		margin-bottom: 20px;
	}

	.footer-links ul li{
		margin-bottom: 10px;
	}

	.footer-newsletter-form .form-group .form-control{
		padding: 8px 12px;
	}

	.footer-newsletter-form .form-group .btn-default{
		padding: 12px 15px;
	}

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

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

	.footer-copyright{
		padding: 30px 0;
		margin-top: 30px;
	}

	.our-approach{
		background-position: bottom -17px left -38px;
        background-size: 150px auto;
	}

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

	.how-work-item{
		margin-bottom: 30px;
		padding-bottom: 30px;
	}

	.how-it-work .how-work-bg-video{
		margin: 0;
	}

	.our-experience-image{
		height: auto;
		margin: 0 0 30px;
	}

	.our-experience-image figure{
		height: auto;
	}

	.our-experience-image figure img{
		height: auto;
		aspect-ratio: 1 / 0.85;
	}

	.our-experience-content{
		height: auto;
	}

	.our-experience-body-image figure img{
		aspect-ratio: 1 / 0.6;
	}

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

	.page-category-list .page-category-list-title{
		font-size: 20px;
		padding: 14px 20px;
	}

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

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

	.sidebar-cta-box{
		min-height: auto;
		padding: 20px;
	}

	.sidebar-cta-contact-list{
		margin-bottom: 20px;
		padding-bottom: 20px;
	}

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

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

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

	.service-include-box,
	.service-how-work-box,
	.service-benefit-box{
		margin-top: 40px;
	}

	.service-include-item-list{
		margin-top: 30px;
	}

	.service-how-work-accordion{
		margin-top: 30px;
	}

	.service-how-work-accordion .accordion-item{
		padding-bottom: 30px;
		margin-bottom: 30px;
	}

	.service-how-work-accordion .accordion-item .accordion-body{
		padding-top: 20px;
	}

	.service-benefit-video-content{
		margin: 30px 0;
	}

	.team-member-about{
		gap: 20px;
		padding: 20px;
		margin-bottom: 40px;
	}

	.team-single-image{
		width: calc(37% - 10px);
	}

	.team-about-content{
		width: calc(63% - 10px);
	}

	.team-contact-list{
		gap: 20px;
	}

	.team-contact-item{
		width: calc(50% - 10px);
		gap: 10px;
		padding: 15px;
	}

	.team-contact-item .icon-box{
		width: 46px;
		height: 46px;
	}

	.team-contact-item .icon-box img{
		max-width: 22px;
	}

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

	.team-member-skill-info-box{
		margin-bottom: 40px;
	}

	.team-member-info-box,
	.team-member-skill-box{
		width: 100%;
	}

	.contact-us-content{
		margin: 0 0 30px;
	}
}

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

	.btn-default{
		padding: 15px 20px 15px 50px;
	}

	.btn-default:hover{
		padding: 15px 50px 15px 20px;
	}

	.btn-default::before{
        width: 36px;
        height: 36px;
		background-size: 16px auto;
	}

	.btn-default:hover::before{
		transform: translate(calc(100% - 77px), -50%) rotate(45deg);
	}

	.navbar{
		padding: 20px 0;
	}

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

	.slicknav_nav li,
	.slicknav_nav ul{
        display: block;
    }

	.header-btn{
		display: none;
	}

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

	.section-sub-heading,
	.section-title .section-sub-title{
		padding: 7px 12px 7px 28px;
		margin-bottom: 10px;
	}

	.section-sub-heading,
	.section-title .section-sub-title::before{
		left: 12px;
	}

	.section-title h1{
		font-size: 46px;
	}

	.section-title h2{
		font-size: 36px;
	}

	.section-title p{
		margin-top: 10px;
	}

	.hero{
		padding: 150px 0 60px;
	}

	.hero .section-title .section-sub-title{
		padding: 8px 12px 8px 28px;
	}

	.hero-working-hour-list ul,
	.hero-working-hours-header{
		padding: 20px;
	}

	.hero-working-hour-list ul li{
		margin-bottom: 15px;
	}

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

	.about-us-body{
		padding-top: 30px;
		margin-top: 30px;
	}

	.about-author-image figure img{
		max-width: 46px;
	}

	.about-author-content h3{
		font-size: 18px;
	}

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

	.service-item{
		min-height: auto;
		gap: 20px;
	}

	.service-item-header h2{
		font-size: 20px;
	}

	.section-footer-text{
		margin-top: 10px;
	}

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

	.why-choose-list ul{
		gap: 20px;
	}

	.why-choose-body{
		padding-top: 30px;
		margin-top: 30px;
	}

	.why-choose-contact-box{
        gap: 10px;
    }

	.why-choose-contact-box .icon-box{
		width: 46px;
		height: 46px;
	}

	.why-choose-contact-content h3{
		font-size: 18px;
	}

	.our-history{
		padding: 60px 0;
	}

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

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

	.history-author-box{
		padding-top: 30px;
		margin-top: 30px;
	}

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

	.pricing-item-list{
        gap: 30px;
    }

	.pricing-item{
		width: 100%;
	}

	.pricing-item-title h2, 
	.pricing-item-title h3{
		font-size: 20px;
	}

	.our-pricing .section-footer-text{
		margin-top: 40px;
	}

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

	.team-item-body{
		left: 30px;
		right: 30px;
		bottom: 30px;
	}

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

	.scrolling-content .photo-gallery figure{
		border-radius: 10px;
	}

	.scrolling-content .photo-gallery img{
		width: 100%;
		object-fit: cover;
		border-radius: 10px;
	}

	.our-testimonials{
		padding: 60px 0;
	}

	.testimonials-item-image figure img{
		aspect-ratio: 1 / 1.1;
	}

	.testimonials-item-body{
		gap: 30px;
	}

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

	.our-testimonials .section-footer-text{
		margin-top: 40px;
	}

	.our-faqs{
		padding: 60px 0;
	}
	
	.faq-accordion .accordion-header .accordion-button{
		font-size: 18px;
		padding: 16px 50px 16px 25px;
	}

	.faq-accordion .accordion-item .accordion-button::after, 
	.faq-accordion .accordion-item .accordion-button.collapsed::after{
		right: 25px;
	}

	.faq-accordion .accordion-item .accordion-body{
		padding: 16px 25px;
	}

	.our-blog{
		padding: 60px 0 30px;
	}

	.post-item-body{
		padding: 10px;
	}

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

	.post-item-btn{
		margin-top: 20px;
		padding-top: 20px;
	}

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

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

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

	.main-footer{
		padding: 60px 0 0;
	}

	.footer-links h2{
		font-size: 20px;
	}

	.footer-newsletter-box{
		width: 350px;
	}

	.footer-social-links h3{
		font-size: 20px;
	}

	.page-header{
		border-radius: 0;
        padding: 190px 0 100px;
		margin: 0;
	}

	.page-header-box h1{
		font-size: 46px;
	}

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

	.approach-item{
		min-height: auto;
		padding: 30px;
	}

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

	.approach-item-content ul{
		margin: 30px 0 0;
	}

	.approach-item-content ul li{
		padding: 6px 12px 6px 26px;
	}

	.approach-item-content ul li::before{
		left: 12px;
	}

	.how-it-work{
		padding: 60px 0;
	}

	.how-work-item{
		gap: 15px;
	}

	.how-work-item-number{
		width: 50px;
		height: 50px;
	}

	.how-work-item-number span{
		font-size: 24px;
	}

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

	.how-work-item-content h3{
		font-size: 20px;
	}

	/*.how-it-work .how-work-bg-video{*/
	/*	height: 500px;*/
	/*}*/

	.our-experience{
		padding: 60px 0;
	}

	.our-experience-content .section-title{
		padding-bottom: 30px;
	}

	.our-experience-counter-content h2{
		font-size: 44px;
	}

	.our-experience-list ul li{
		margin-bottom: 10px;
	}

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

	.page-service{
		padding: 60px 0 30px;
	}

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

	.page-single-sidebar{
		position: initial;
		margin-bottom: 30px;
	}

	.page-category-list{
		margin-bottom: 30px;
	}

	.sidebar-cta-contact-list ul li img{
		max-width: 18px;
	}

	.sidebar-cta-content h2{
		font-size: 22px;
	}

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

	.service-entry h2{
		font-size: 36px;
		margin-bottom: 15px;
	}

	.service-entry ul li{
		margin-bottom: 10px;
	}

	.service-how-work-accordion .accordion-header .accordion-button{
		font-size: 20px;
	}

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

	.page-pagination{
		margin-top: 10px;
	}

	.page-single-post{
        padding: 60px 0;
    }
    
    .post-image{
        margin-bottom: 20px;
    }
    
    .post-entry h2{
        font-size: 36px;
    }
    
    .post-entry p{
        margin-bottom: 15px;
    }

	.post-entry ol li,
	.post-entry ul li{
		font-size: 16px;
	}
    
    .post-entry blockquote{
        background-position: 20px 20px;
        background-size: 35px;
        padding: 20px 20px 20px 70px;
        margin-bottom: 15px;
    }
    
    .post-entry blockquote p{
        font-size: 18px;
    }
    
    .post-tags{
        margin-bottom: 20px;
    }
    
    .post-tags .tag-links a{
        padding: 12px 15px;
    }
    
    .post-social-sharing ul{
        text-align: left;
    }

	.page-team{
		padding: 60px 0 30px;
	}

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

	.team-single-image{
		width: 100%;
	}

	.team-single-image figure{
		height: auto;
	}

	.team-single-image img{
		height: auto;
		aspect-ratio: 1 / 0.8;
	}

	.team-about-content{
		width: 100%;
		padding: 10px;
	}

	.team-about-content .section-title{
		padding-bottom: 30px;
	}

	.team-contact-item-content h3,
	.member-social-list h3{
		font-size: 20px;
	}

	.member-social-list{
		margin-top: 30px;
	}

	.team-member-experts,
	.team-contact-form{
		width: 100%;
	}

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

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

	.pricing-box-header .icon-box img{
		max-width: 50px;
	}

	.pricing-box-content .pricing-box-title{
		font-size: 20px;
	}

	.pricing-box-price{
		margin-top: 15px;
	}

	.pricing-box-price h2{
		font-size: 34px;
	}

	.pricing-box-body{
		padding-top: 20px;
		margin-top: 20px;
	}

	.pricing-box-list h3{
		font-size: 20px;
		margin-bottom: 15px;
	}

	.pricing-box-list ul li{
		margin-bottom: 10px;
	}

	.pricing-box-btn .btn-default{
		padding: 15px 20px;
	}

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

	.pricing-benefit-list ul{
		gap: 15px 30px;
	}

	.pricing-benefit-list ul li img{
		max-width: 18px;
	}

	.page-testimonials{
		padding: 60px 0 30px;
	}

	.page-gallery{
		padding: 60px 0 30px;
	}

	.page-video-gallery{
		padding: 60px 0 30px;
	}

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

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

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

	.contact-info-item{
		margin-bottom: 20px;
		padding-bottom: 20px;
	}

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

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

	.google-map{
		padding: 30px 0 60px;
	}

	.google-map-iframe{
        height: 500px;
    }

	.error-page{
		padding: 60px 0px;
	}
	
	.error-page-image{
		margin-bottom: 20px;
	}
}

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

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

	.section-title h1{
		font-size: 28px;
	}

	.section-title h2{
		font-size: 26px;
	}

	.hero-working-hours{
		max-width: 100%;
	}

	.hero-working-hour-list ul,
	.hero-working-hours-header{
		padding: 10px;
	}

	.hero-working-hours-header{
		gap: 10px;
	}

	.hero-working-hours-header .icon-box img{
		max-width: 20px;
	}

	.hero-working-hours-title h2{
		font-size: 18px;
	}

	.hero-working-hour-list ul li{
		font-size: 14px;
		margin-bottom: 10px;
	}

	.about-us-image-box::before{
		right: 20px;
		width: 60px;
		height: 78px;
	}

	.about-us-image-box::after{
		bottom: -5px;
		left: 80px;
		width: 60px;
		height: 80px;
	}

	.about-us-image-box-1{
		padding-bottom: 50px;
	}

	.about-us-image-box-1 .about-us-image figure{
		margin-right: -115px;
	}

	.about-us-image-box-2 .about-us-image figure{
		border-width: 4px;
		border-radius: 24px;
	}

	.about-us-image-box-2 .contact-us-circle{
		top: 5px;
		left: -25px;
	}

	.about-us-image-box-2 .contact-us-circle img{
		max-width: 100px;
	}

	.about-us-item{
		gap: 15px;
		margin-bottom: 20px;
	}

	.about-us-item-content{
		gap: 5px;
	}

	.about-us-item-content h3{
		width: 100%;
		font-size: 18px;
	}

	.about-us-item-content h3::before{
		display: none;
	}

	.about-us-item-content p{
		width: 100%;
	}

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

	.about-author-box{
		gap: 10px;
	}

	.service-item{
		padding: 20px;
	}


	.service-item-header h2{
		font-size: 18px;
	}

	.why-choose-list ul{
		gap: 10px;
	}

	.why-choose-list ul li{
		width: 100%;
	}

	.why-choose-body{
		gap: 20px;
	}

	.intro-video-box{
		min-height: 350px;
	}

	.intro-video-circle a img{
		max-width: 100px;
	}

	.our-history-image figure img{
		aspect-ratio: 1 / 1.1;
	}

	.history-item{
		width: 100%;
		padding: 20px;
	}

	.history-item-content h3{
		font-size: 18px;
	}

	.history-author-content p{
		margin: 5px 0 0;
	}

	.pricing-item-list{
		gap: 25px;
	}

	.pricing-item{
		gap: 10px;
	}

	.pricing-item-image figure img{
		max-width: 50px;
	}

	.pricing-item-body{
		width: calc(100% - 60px);
	}

	.pricing-item-title{
		gap: 15px;
	}

	.pricing-item-title h2, 
	.pricing-item-title h3{
		font-size: 18px;
	}

	.pricing-item-content{
		margin-top: 5px;
	}

	.pricing-item-content p{
		font-size: 14px;
	}

	.team-item-image img{
		aspect-ratio: 1 / 1.1;
	}

	.team-item-content h2{
		font-size: 18px;
	}

	.scrolling-ticker-box{
		--gap: 10px;
	}

	.scrolling-content .photo-gallery{
		width: calc((100vw / 3) - 6.66px);	
	}

	.testimonials-item-image{
		width: 100%;
	}

	.testimonials-item-image figure{
		height: auto;
	}

	.testimonials-item-image figure img{
		height: auto;
		aspect-ratio: 1 / 0.8;
	}

	.testimonials-item-body{
		width: 100%;
		gap: 20px;
		padding: 20px;
	}

	.testimonials-item-author-content h2{
		font-size: 18px;
	}

	.faq-accordion .accordion-header .accordion-button{
		font-size: 16px;
		padding: 12px 35px 12px 15px;
	}

	.faq-accordion .accordion-item .accordion-button::after, 
	.faq-accordion .accordion-item .accordion-button.collapsed::after{
		right: 15px;
	}

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

	.post-item-content h2{
		font-size: 18px;
	}

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

	.footer-logo{
		gap: 20px;
	}

	.footer-logo hr{
		min-width: auto;
	}

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

	.footer-links h2{
		font-size: 18px;
		margin-bottom: 15px;
	}

	.footer-newsletter-box{
		width: 100%;
	}

	.footer-newsletter-form .form-group .form-control{
		font-size: 14px;
	}

	.footer-newsletter-form .form-group .btn-default{
		font-size: 14px;
	}

	.footer-social-links{
		margin-top: 20px;
	}

	.footer-social-links h3{
		font-size: 18px;
	}

	.footer-social-links ul{
		gap: 10px;
	}

	.footer-social-links ul li a{
		width: 36px;
		height: 36px;
	}

	.footer-copyright{
		padding: 15px 0;
	}

	.page-header{
		padding: 170px 0 80px;
	}

	.page-header-box h1{
        font-size: 28px;
    }

	.approach-item{
		min-height: auto;
		gap: 20px;
		padding: 20px;
	}

	.approach-item-content h3{
		font-size: 18px;
	}

	.approach-item-content ul{
		margin: 20px 0 0;
	}

	.how-work-item{
		padding-bottom: 20px;
		margin-bottom: 20px;
	}

	.how-work-item-content h3{
		font-size: 18px;
	}

	/*.how-it-work .how-work-bg-video{*/
	/*	height: 350px;*/
	/*}*/

	.our-experience-image figure img{
		aspect-ratio: 1 / 1.124;
	}

	.our-experience-body{
		gap: 20px;
	}

	.our-experience-body-image-box,
	.our-experience-list{
		width: 100%;
	}

	.our-experience-body-image,
	.our-experience-body-image figure{
		height: auto;
	}

	.our-experience-body-image figure img{
		height: auto;
		aspect-ratio: 1 / 0.65;
	}

	.our-experience-counter-content{
		bottom: 20px;
		left: 20px;
	}

	.our-experience-counter-content h2{
		font-size: 28px;
	}

	.page-category-list .page-category-list-title{
		font-size: 18px;
	}

	.sidebar-cta-contact-list ul li{
		margin-bottom: 10px;
	}

	.sidebar-cta-content h2{
		font-size: 20px;
	}

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

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

	.service-entry h2{
		font-size: 26px;
	}

	.service-entry h3{
		font-size: 18px;
		margin-bottom: 5px;
	}

	.service-include-item-list{
		gap: 20px;
	}

	.service-include-item{
		width: 100%;
		padding-bottom: 20px;
	}

	.service-include-item:nth-last-child(2){
		border-bottom: 1px solid var(--divider-color);
		padding-bottom: 20px;
	}

	.service-how-work-accordion .accordion-item{
		padding-bottom: 20px;
		margin-bottom: 20px;
	}

	.service-how-work-accordion .accordion-header .accordion-button{
		font-size: 18px;
	}

	.service-how-work-accordion .accordion-item .accordion-body{
		gap: 15px;
	}

	.service-how-work-accordion .accordion-item .accordion-body .accordion-body-image{
		width: 100%;
		max-width: 100%;
	}

	.service-how-work-accordion .accordion-item .accordion-body .accordion-body-image figure,
	.service-how-work-accordion .accordion-item .accordion-body .accordion-body-image figure img{
		height: auto;
	}

	.service-how-work-accordion .accordion-item .accordion-body .accordion-body-image figure img{
		aspect-ratio: 1 / 0.45;
	}

	.service-how-work-accordion .accordion-item .accordion-body .accordion-body-content{
		width: 100%;
	}

	.service-how-work-accordion .accordion-item .accordion-body .accordion-body-content p{
		margin: 0 0 10px;
	}

	.service-benefit-video-content{
		gap: 20px;
		margin: 30px 0 20px;
	}

	.service-benefit-video-image{
		width: 100%;
	}

	.service-benefit-video-image figure,
	.service-benefit-video-image figure img{
		height: auto;
	}

	.service-benefit-content{
		width: 100%;
	}

	.post-single-meta ol li,
	.post-single-meta ol li i{
		font-size: 16px;
	}

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

	.post-entry blockquote{
		background-size: 30px auto;
		padding: 60px 20px 20px 20px;
	}

	.post-entry blockquote p{
		font-size: 16px;
	}

	.post-entry h1,
	.post-entry h2,
	.post-entry h3,
	.post-entry h4,
	.post-entry h5,
	.post-entry h6{
		margin: 0 0 0.58em;
	}

	.post-entry h2{
		font-size: 26px;
	}
	
	.tag-links{
		font-size: 18px;
	}

	.team-member-about{
		padding: 10px;
	}
	
	.team-single-image img{
		aspect-ratio: 1 / 1.1;
	}

	.team-contact-item{
		width: 100%;
	}

	.team-contact-item-content h3, 
	.member-social-list h3{
		font-size: 18px;
	}

	.member-social-list ul,
	.member-social-list{
		gap: 10px;
	}

	.member-social-list{
        margin-top: 20px;
    }

	.member-social-list ul li a{
		width: 36px;
		height: 36px;
	}

	.member-social-list ul li i{
		font-size: 16px;
	}

	.team-member-skill-item-list ul{
		gap: 10px;
	}

	.team-member-skill-item-list ul li{
		width: 100%;
	}

	.skills-progress-bar .skill-data{
		margin-bottom: 10px;
	}

	.pricing-box{
		padding: 20px;
	}

	.pricing-box-content .pricing-box-title{
		font-size: 18px;
	}

	.pricing-box-price h2{
		font-size: 28px;
	}

	.pricing-box-list h3{
		font-size: 18px;
	}

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

	.pricing-benefit-list ul{
		gap: 10px;
	}

	.pricing-benefit-list ul li{
		font-size: 12px;
	}

	.pricing-benefit-list ul li img{
		max-width: 16px;
		margin-right: 5px;
	}

	.contact-info-item-content h3{
		font-size: 18px;
	}

	.contact-us-form{
		padding: 20px;
	}

	.contact-form label{
		margin-bottom: 10px;
	}

	.contact-form .form-control{
		padding: 12px 15px;
	}

	.google-map-iframe{
		height: 350px;
	}
}



















  /* ===== Raw Hair Page — scoped to .rh- prefix so it won't clash with theme CSS ===== */
  .rh-wrap * { box-sizing: border-box; }
  .rh-wrap {
    --rh-cream: #F7ECDF;
    --rh-cream-soft: #FBF4EA;
    --rh-dark: #1B1B1B;
    --rh-dark-card: #272726;
    --rh-gold: #E8B84B;
    --rh-gold-soft: #F1CD79;
    --rh-text: #262019;
    --rh-text-light: #6b6255;
    --rh-text-on-dark: #F5EEE3;
    --rh-text-on-dark-soft: #ADA79C;
    font-family: inherit;
    overflow-x: hidden;
  }

  .rh-wrap .rh-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    border: 1px solid rgba(0,0,0,0.12);
    border-radius: 999px;
    font-size: 14px;
    font-weight: 600;
    color: var(--rh-text);
    background: transparent;
    margin-bottom: 22px;
  }
  .rh-wrap .rh-badge .rh-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--rh-gold);
    display: inline-block;
  }
  .rh-wrap .rh-badge--dark {
    color: var(--rh-text-on-dark);
    border-color: rgba(255,255,255,0.16);
  }

  .rh-wrap h2.rh-heading {
    font-size: 44px;
    line-height: 1.15;
    font-weight: 800;
    margin: 0 0 20px;
    color: var(--rh-text);
    letter-spacing: -0.5px;
  }
  .rh-wrap h2.rh-heading--dark { color: var(--rh-text-on-dark); }

  .rh-wrap .rh-lead {
    font-size: 17px;
    line-height: 1.75;
    color: var(--rh-text-light);
    max-width: 640px;
    margin: 0 0 10px;
  }
  .rh-wrap .rh-lead--dark { color: var(--rh-text-on-dark-soft); }

  .rh-wrap .rh-btn {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    background: var(--rh-gold);
    color: var(--rh-dark);
    font-weight: 700;
    font-size: 15px;
    padding: 8px 26px 8px 8px;
    border-radius: 999px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: transform .25s ease, box-shadow .25s ease;
  }
  .rh-wrap .rh-btn:hover { transform: translateY(-2px); box-shadow: 0 10px 24px rgba(232,184,75,0.35); }
  .rh-wrap .rh-btn .rh-btn-icon {
    width: 34px;
    height: 34px;
    background: #fff;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }
  .rh-wrap .rh-btn .rh-btn-icon svg { width: 15px; height: 15px; }

  /* ---------- Section 1: Intro / Hero ---------- */
  .rh-intro {
    background: var(--rh-cream);
    padding: 90px 6vw;
  }
  .rh-intro-grid {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 70px;
    align-items: start;
  }
  .rh-intro-media {
    position: relative;
    border-radius: 28px;
    overflow: hidden;
    aspect-ratio: 3.3/3;
    max-height: 660px;
    background: linear-gradient(160deg, #EAD9B8, #D9BE86);
  }
  .rh-intro-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }
  .rh-intro-media::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 28px;
    box-shadow: inset 0 0 0 1px rgba(255,255,255,0.25);
  }
  .rh-intro-media .rh-ring {
    position: absolute;
    width: 120px;
    height: 120px;
    border: 2px solid var(--rh-gold);
    border-radius: 50%;
    bottom: -30px;
    right: -30px;
    opacity: .8;
  }

  .rh-intro-content p.rh-lead { margin-bottom: 14px; }

  .rh-checklist {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px 32px;
    margin: 30px 0 34px;
  }
  .rh-checklist .rh-check-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 15px;
    font-weight: 500;
    color: var(--rh-text);
  }
  .rh-checklist .rh-spark { color: var(--rh-gold); font-size: 16px; line-height: 1.4; }

  /* ---------- Section 2: Features (dark) ---------- */
  .rh-dark-section {
    background: var(--rh-dark);
    padding: 100px 6vw;
    position: relative;
  }
  .rh-section-head {
    max-width: 780px;
    margin: 0 auto 56px;
    text-align: center;
  }
  .rh-section-head .rh-heading { font-size: 40px; }

  .rh-pill-wall {
    max-width: 1080px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
  }
  .rh-pill {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--rh-dark-card);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 999px;
    padding: 15px 24px;
    color: var(--rh-text-on-dark);
    font-size: 14.5px;
    font-weight: 600;
    white-space: nowrap;
    transition: transform .25s ease, border-color .25s ease, background .25s ease;
  }
  .rh-pill:hover {
    transform: translateY(-3px);
    border-color: rgba(232,184,75,0.55);
    background: rgba(232,184,75,0.08);
  }
  .rh-pill .rh-pill-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--rh-gold);
    flex-shrink: 0;
  }

  /* ---------- Section 3: Applications (cream) ---------- */
  .rh-light-section {
    background: var(--rh-cream-soft);
    padding: 100px 6vw;
  }
  .rh-app-list {
    max-width: 1120px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 64px;
  }
  .rh-app-row {
    position: relative;
    display: flex;
    align-items: baseline;
    gap: 22px;
    padding: 22px 4px;
    border-bottom: 1px solid rgba(38,32,25,0.12);
    transition: padding-left .3s ease, border-color .3s ease;
  }
  .rh-app-row:last-child,
  .rh-app-list > .rh-app-col:not(:last-child) .rh-app-row:last-child { border-bottom: 1px solid rgba(38,32,25,0.12); }
  .rh-app-col:last-child .rh-app-row:last-child,
  .rh-app-col:first-child .rh-app-row:last-child { border-bottom: none; }
  .rh-app-row .rh-app-index {
    font-size: 30px;
    font-weight: 800;
    line-height: 1;
    color: transparent;
    -webkit-text-stroke: 1.4px rgba(38,32,25,0.35);
    min-width: 46px;
    flex-shrink: 0;
    transition: color .3s ease, -webkit-text-stroke .3s ease;
  }
  .rh-app-row .rh-app-text {
    font-size: 16px;
    font-weight: 600;
    color: var(--rh-text);
    line-height: 1.4;
  }
  .rh-app-row .rh-app-arrow {
    margin-left: auto;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: transparent;
    border: 1px solid rgba(38,32,25,0.18);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    opacity: 0;
    transform: translateX(-6px);
    transition: opacity .3s ease, transform .3s ease, background .3s ease, border-color .3s ease;
  }
  .rh-app-row .rh-app-arrow svg { width: 12px; height: 12px; }
  .rh-app-row:hover { padding-left: 14px; border-color: var(--rh-gold); }
  .rh-app-row:hover .rh-app-index { color: var(--rh-gold); -webkit-text-stroke: 1.4px var(--rh-gold); }
  .rh-app-row:hover .rh-app-arrow { opacity: 1; transform: translateX(0); background: var(--rh-gold); border-color: var(--rh-gold); }

  /* ---------- Section 4: Advantages (dark, horizontal scroll carousel) ---------- */
  .rh-adv-scroll {
    max-width: 1280px;
    margin: 0 auto;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .rh-adv-scroll::-webkit-scrollbar { display: none; }
  .rh-adv-track {
    display: flex;
    gap: 18px;
    padding: 4px 4px 8px;
    width: max-content;
  }
  .rh-adv-card {
    scroll-snap-align: start;
    flex: 0 0 270px;
    background: var(--rh-dark-card);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 20px;
    padding: 28px 24px;
  }
  .rh-adv-card .rh-adv-icon {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: rgba(232,184,75,0.12);
    color: var(--rh-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    margin-bottom: 18px;
  }
  .rh-adv-card p {
    margin: 0;
    font-size: 15px;
    font-weight: 500;
    color: var(--rh-text-on-dark);
    line-height: 1.55;
  }
  .rh-scroll-hint {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: var(--rh-text-on-dark-soft);
    font-size: 13px;
    margin-top: 26px;
    letter-spacing: .3px;
  }
  .rh-scroll-hint svg { width: 16px; height: 16px; }

  /* ---------- Section 5: Exporter / Manufacturer / Supplier (cream, editorial stacked list) ---------- */
  .rh-info-section {
    background: var(--rh-cream);
    padding: 100px 6vw 110px;
  }
  .rh-timeline {
    max-width: 940px;
    margin: 56px auto 0;
  }
  .rh-timeline-row {
    display: grid;
    grid-template-columns: 110px 1fr;
    gap: 30px;
    padding: 42px 0;
    border-top: 1px solid rgba(38,32,25,0.14);
  }
  .rh-timeline-row:last-child { border-bottom: 1px solid rgba(38,32,25,0.14); }
  .rh-timeline-num {
    font-size: 52px;
    font-weight: 800;
    line-height: 1;
    color: transparent;
    -webkit-text-stroke: 1.6px rgba(38,32,25,0.28);
  }
  .rh-timeline-content h3 {
    font-size: 21px;
    font-weight: 800;
    color: var(--rh-text);
    margin: 4px 0 12px;
    line-height: 1.3;
  }
  .rh-timeline-content p {
    font-size: 15px;
    line-height: 1.8;
    color: var(--rh-text-light);
    margin: 0 0 10px;
    max-width: 680px;
  }
  .rh-timeline-content p:last-child { margin-bottom: 0; }

  /* ---------- Responsive ---------- */
  @media (max-width: 1024px) {
    .rh-intro-grid { grid-template-columns: 1fr; gap: 40px; }
    .rh-intro-media { max-width: 520px; max-height: 320px; margin: 0 auto; }
    .rh-wrap h2.rh-heading { font-size: 34px; }
    .rh-section-head .rh-heading { font-size: 30px; }
  }

  @media (max-width: 720px) {
    .rh-app-list { grid-template-columns: 1fr; column-gap: 0; }
    .rh-app-col:first-child .rh-app-row:last-child { border-bottom: 1px solid rgba(38,32,25,0.12); }
    .rh-timeline-row { grid-template-columns: 1fr; gap: 10px; }
    .rh-timeline-num { font-size: 34px; }
  }

  @media (max-width: 640px) {
    .rh-intro, .rh-dark-section, .rh-light-section, .rh-info-section {
      padding-left: 6vw;
      padding-right: 6vw;
      padding-top: 64px;
      padding-bottom: 64px;
    }
    .rh-intro-media { max-height: 260px; }
    .rh-checklist { grid-template-columns: 1fr; }
    .rh-wrap h2.rh-heading { font-size: 28px; }
    .rh-section-head .rh-heading { font-size: 26px; }
    .rh-wrap .rh-lead { font-size: 15.5px; }
    .rh-app-row .rh-app-index { font-size: 24px; min-width: 36px; }
    .rh-app-row .rh-app-text { font-size: 14.5px; }
    .rh-app-row .rh-app-arrow { display: none; }
    .rh-pill { padding: 12px 18px; font-size: 13.5px; }
    .rh-adv-card { flex-basis: 230px; padding: 22px 20px; }
  }





  /* Video Slider Fixes */
.hero-video-slider {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.hero-video-slider .swiper-slide {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

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

/* Slider Buttons Styling */
.hero-slider-navigation {
    position: absolute;
    bottom: 30px;
    right: 50px;
    z-index: 10;
    display: flex;
    gap: 15px;
}

.hero-button-prev,
.hero-button-next {
    position: relative !important;
    top: 20px !important;
    left: auto !important;
    right: auto !important;
    margin: 0 !important;
    width: 45px !important;
    height: 45px !important;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.4);
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(5px);
    transition: all 0.3s ease;
}

.hero-button-prev::after,
.hero-button-next::after {
    color: #ffffff;
    font-size: 16px !important;
    font-weight: bold;
}

.hero-button-prev:hover,
.hero-button-next:hover {
    background: var(--primary-color, #ffffff);
    border-color: var(--primary-color, #ffffff);
}

.hero-button-prev:hover::after,
.hero-button-next:hover::after {
    color: #000000;
}

















