/* ----------------------------------------------------------------------------------------
* 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: #ec090a;
	--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(--white-color);
	background: var(--accent-color);
	border-radius: 100px;
	padding: 17px 24px 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: 40px;
}

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

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

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

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

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

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

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


.section-title .section-sub-title {
	position: relative;
	display: inline-flex;
	font-size: 15px;
	font-weight: 500;
	line-height: 1em;
	text-transform: capitalize;
	background: #ffffff;
	color: #ec090a;
	gap: 8px;
	border: 1px solid var(--divider-color);
	border-radius: 100px;
	padding: 11px 17px;
	margin-bottom: 15px;
}



.section-sub-heading,
.section-title h2 span {
	color: #ec090a;
}

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

}

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

}

.section-title p {
	margin-top: 12px;
	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 {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	z-index: 100;
	background: linear-gradient(180deg,
			rgba(0, 0, 0, 0.9) 0%,
			rgba(0, 0, 0, 0.55) 55%,
			rgba(0, 0, 0, 0) 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: 16px 0 12px;
	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: 15px;
	font-weight: 400;
	line-height: 1.2em;
	padding: 12px 8px !important;
	color: var(--white-color);
	background: transparent;
	border-radius: 0px;
	text-transform: capitalize;
	transition: all 0.3s ease-in-out;
}

.main-menu ul li ul li a {
	font-weight: 500;
}

.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: 10px;
	position: absolute;
	left: 0;
	top: 100%;
	background: var(--accent-color);
	transition: all 0.3s ease-in-out;
	text-align: left;
}

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

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

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

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

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

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

.main-menu ul ul li a:hover,
.main-menu ul ul li a:focus {
	color: var(--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(--white-color);
	border-radius: 6px;
	margin: 4px auto !important;
	transition: all 0.1s ease-in-out;
}

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

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

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

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

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

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

.slicknav_menu ul {
	margin: 5px 0;
}

.slicknav_menu ul ul {
	margin: 0;
}

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

.slicknav_nav a:hover,
.slicknav_nav a:focus,
.slicknav_nav .slicknav_row:hover {
	background-color: transparent;
	color: var(--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: 90vh;
	min-height: 650px;
	align-content: center;
	padding: 170px 0 60px;
}



.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;
	inset: 0;
	width: 100%;
	height: 100%;

	background: linear-gradient(90deg,
			rgba(24, 24, 24, .62) 0%,
			rgba(24, 24, 24, .50) 20%,
			rgba(24, 24, 24, .35) 40%,
			rgba(24, 24, 24, .25) 50%,
			rgba(24, 24, 24, .10) 60%,
			rgba(24, 24, 24, 0) 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: 60px 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: 60px 0;
}

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

.service-item {
	position: relative;
	min-height: 360px;
	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:hover .icon-box img {
	filter: brightness(0) invert(1);
}

.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: 60px 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: 26px;
	margin-top: 20px;
}

.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);

}

.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: 60px 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.0314;
	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(--secondary-color) 100%);
	border-radius: 20px;
	padding: 20px;
	overflow: hidden;
}

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

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

.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: 60px 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: 60px 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;

}

.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.76) 92.11%);
	z-index: 1;
}

.team-item-image img {
	width: 100%;
	aspect-ratio: 1 / 1.14;
	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(50%);
}

.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 {}

.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: 60px 0;
}

.testimonials-slider {
	height: 100%;
}

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

.testimonials-slider .swiper-wrapper {}

.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('../images/cta.webp');
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	padding: 60px 0;
}

.our-faqs::before {
	content: '';
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(to left,
			rgba(0, 0, 0, 0.80) 0%,
			rgba(0, 0, 0, 0.60) 20%,
			rgba(0, 0, 0, 0.40) 40%,
			rgba(0, 0, 0, 0.20) 60%,
			rgba(0, 0, 0, 0.05) 100%);
	pointer-events: none;
	z-index: 1;
}

.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: 60px 0px;
}

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

}

.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: 14px;*/
	margin-top: 18px;
}

/************************************/
/*** 	    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: 50px 0 0;
}

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

.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: 205px;
}

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

.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: 12px;
	margin-bottom: 12px;
}

.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: 12px 0;
	margin-top: 50px;
}

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

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

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

.page-header {
	position: relative;
	background-image: url('../images/banner/7.webp');
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
	padding: 280px 0 100px;
	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: 38px;
	font-weight: 600;
	line-height: 1.2em;
	letter-spacing: -0.03em;
	color: var(--white-color);
	margin-bottom: 10px;

}

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

.approach-item {
	position: relative;
	background: var(--bg-color);
	border-radius: 20px;
	/* display: flex;
	flex-direction: column;
	justify-content: space-between; */
	gap: 20px;
	min-height: auto;
	/* height: calc(100% - 30px);
	margin-bottom: 30px; */
	padding: 30px;
	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: 160px;
	height: 112px;
	border-radius: 20px;
} */

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

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

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

.approach-item-content p {
	color: var(--primary-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: 20px 0 0;
}

.approach-item-content ul li {
	position: relative;
	font-size: 14px;
	font-weight: 600;
	color: var(--primary-color);
	border: 1px solid var(--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: 60px 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: 700px;
	min-height: 100%;
	border-radius: 20px;
	margin-left: 15px;
	overflow: hidden;
}

.how-it-work .how-work-bg-video video {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.our-experience {
	padding: 60px 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: 60px 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;

}

.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: 60px 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: 60px 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: cover;
	border-radius: 20px;
}

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

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

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

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

.post-entry h1,
.post-entry h2,
.post-entry h3,
.post-entry h4,
.post-entry h5,
.post-entry h6 {
	font-weight: 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: 60px 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: 60px 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;

}

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

	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: 60px 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: 60px 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: 12px 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: 30px;
	}

	.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 {
		align-content: end;
		padding: 80px 0 40px;
		min-height: 670px;
	}

	.hero-slider-image figure::before {
		content: '';
		position: absolute;
		inset: 0;
		width: 100%;
		height: 100%;

		background: linear-gradient(to top,
				rgba(24, 24, 24, .60) 0%,
				rgba(24, 24, 24, .55) 20%,
				rgba(24, 24, 24, .45) 30%,
				rgba(24, 24, 24, .25) 50%,
				rgba(24, 24, 24, .10) 70%,
				transparent 100%);
	}

	.hero .section-title .section-sub-title {
		padding: 8px 13px 8px 13px;
		font-size:13px;
	}

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

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

	.about-us {
		padding: 40px 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: 40px 0;
	}

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

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

	.service-item .icon-box img {
		max-width: 60px;
	}

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

	.why-choose-us {
		padding: 40px 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: 40px 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: 40px 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: 40px 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: 40px 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: 40px 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: 40px 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: 40px 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: 40px 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: 40px 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: 40px 0;
	}

	.page-pagination {
		margin-top: 10px;
	}

	.page-single-post {
		padding: 40px 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: 40px 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: 40px 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: 40px 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: 25px;
	}

	.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: 15px;
	}

	.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 .icon-box img {
		max-width: 50px;
	}

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


.testimonial-video-card {
	background: #ffffff;
	border-radius: 22px;
	padding: 10px;
	overflow: hidden;
	box-shadow: 0 18px 45px rgba(0, 0, 0, 0.12);
	transition: all 0.4s ease;
}

.testimonial-video-card:hover {
	transform: translateY(-6px);
	box-shadow: 0 26px 65px rgba(0, 0, 0, 0.18);
}

.video-thumb-wrapper {
	position: relative;
	width: 100%;
	padding-bottom: 56.25%;
	height: 0;
	overflow: hidden;
	border-radius: 16px;
	background: #000;
}

.video-thumb-wrapper iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

@media (max-width: 767px) {
	.testimonial-video-card {
		border-radius: 18px;
		padding: 8px;
	}

	.video-thumb-wrapper {
		border-radius: 14px;
	}
}


.highlight-text {
	color: #DF291B;
	font-weight: 600;
}


/* Services Tab Section */
.premium-services-tabs {
	padding: 70px 0;
	background: linear-gradient(180deg, #fbf7ef 0%, #ffffff 100%);
	overflow: hidden;
}

/* Tabs */
.service-tabs-nav {
	gap: 15px;
	margin: 35px 0 45px;
	border: none;
}

.service-tabs-nav .nav-item {
	margin: 0;
}

.service-tabs-nav .nav-link {
	border: 1px solid rgba(139, 143, 101, 0.25);
	background: #ffffff;
	color: #222222;
	font-size: 16px;
	font-weight: 600;
	padding: 14px 28px;
	border-radius: 50px;
	line-height: 1.3;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
	transition: all 0.35s ease;
}

.service-tabs-nav .nav-link:hover,
.service-tabs-nav .nav-link.active {
	background: #ec090a;
	color: #ffffff;
	border-color: #ec090a;
	transform: translateY(-3px);
	box-shadow: 0 16px 40px rgba(139, 143, 101, 0.35);
}

/* Tab Content */
.service-tab-content {
	position: relative;
}

.service-tab-content .tab-pane {
	animation: serviceFade 0.45s ease;
}

@keyframes serviceFade {
	from {
		opacity: 0;
		transform: translateY(12px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

/* Approach Style Service Card */
.service-approach-card {
	height: 100%;
	background: #ffffff;
	border-radius: 12px;
	padding: 10px;
	overflow: hidden;
	border: 1px solid rgba(139, 143, 101, 0.12);
	box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
	transition: all 0.35s ease;
}

.service-approach-card:hover {
	transform: translateY(-7px);
	border-color: rgba(139, 143, 101, 0.35);
	box-shadow: 0 22px 55px rgba(0, 0, 0, 0.15);
}

.service-approach-card .approach-item-image {
	border-radius: 12px;
	overflow: hidden;
}

.service-approach-card .approach-item-image figure {
	margin: 0;
	overflow: hidden;
	border-radius: 12px;
	margin: 0px auto;
}

.service-approach-card .approach-item-image img {
	width: 100%;
	height: 173px;
	object-fit: cover;
	object-position: top;
	transition: all 0.45s ease;
}

.service-approach-card:hover .approach-item-image img {
	transform: scale(1.08);
}

.service-approach-card .approach-item-content {
	padding-top: 10px;
	text-align: center;
}

.service-approach-card .approach-item-content h3 {
	font-size: 17px;
	font-weight: 600;
	line-height: 1.35;
	color: #222222;
	margin: 0;
}

/* Tablet Responsive */
@media (max-width: 991px) {
	.premium-services-tabs {
		padding: 75px 0;
	}

	.service-tabs-nav {
		gap: 10px;
		margin: 30px 0 40px;
	}

	.service-tabs-nav .nav-link {
		font-size: 15px;
		padding: 12px 22px;
	}

	.service-approach-card .approach-item-image img {
		height: 160px;
	}
}

/* Mobile Friendly Tabs - 2 x 2 Layout */
@media (max-width: 575px) {
	.premium-services-tabs {
		padding: 55px 0;
	}

	.service-tabs-nav {
		display: grid !important;
		grid-template-columns: repeat(2, 1fr);
		gap: 10px;
		width: 100%;
		overflow: visible !important;
		padding-bottom: 0;
		margin: 25px 0 30px;
	}

	.service-tabs-nav .nav-item {
		width: 100%;
		flex: unset !important;
	}

	.service-tabs-nav .nav-link {
		width: 100%;
		min-height: 54px;
		padding: 10px 10px;
		font-size: 13px;
		line-height: 1.25;
		white-space: normal !important;
		text-align: center;
		border-radius: 14px;
		display: flex;
		align-items: center;
		justify-content: center;
		box-shadow: 0 8px 22px rgba(0, 0, 0, 0.06);
	}

	.service-tabs-nav .nav-link:hover,
	.service-tabs-nav .nav-link.active {
		transform: none;
	}

	.service-approach-card {
		border-radius: 18px;
		padding: 8px;
	}

	.service-approach-card .approach-item-image,
	.service-approach-card .approach-item-image figure {
		border-radius: 14px;
	}

	.service-approach-card .approach-item-image img {
		height: 115px;
	}

	.service-approach-card .approach-item-content {
		padding: 12px 3px 4px;
	}

	.service-approach-card .approach-item-content h3 {
		font-size: 14px;
		line-height: 1.3;
	}
}


.about-modern-section {
	padding: 60px 0;
	/* background: #ffffff; */
}

@media (min-width: 992px) {
	.about-modern-box {
		background-image: url(../images/about.webp);
		position: relative;
		min-height: 440px;
		border-radius: 18px;
		overflow: hidden;
		background-size: cover;
		background-position: center;
		display: flex;
		align-items: center;
	}

	.about-modern-box::before {
		content: "";
		position: absolute;
		inset: 0;
		background: linear-gradient(90deg,
				rgba(0, 0, 0, 0.50) 0%,
				rgba(0, 0, 0, 0.45) 10%,
				rgba(0, 0, 0, 0.40) 20%,
				rgba(0, 0, 0, 0.35) 30%,
				rgba(0, 0, 0, 0.20) 50%,
				rgba(0, 0, 0, 0.05) 65%,
				rgba(0, 0, 0, 0.00) 100%);
	}

	.about-modern-content h2,
	.about-modern-content p {
		color: #fff !important;
	}

	.about-modern-content {
		max-width: 440px;
	}
}

.about-modern-content {
	position: relative;
	z-index: 2;
	padding: 40px 0px 0px 30px;
}

.about-badge {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: #ffffff;
	color: #ec090a;
	font-size: 14px;
	font-weight: 600;
	padding: 11px 17px;
	border-radius: 30px;
	margin-bottom: 16px;
	box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
}

.about-modern-content h2 {
	font-size: 38px;
	font-weight: 700;
	color: #020617;
	margin-bottom: 18px;
	line-height: 1.2;
}

.about-modern-content p {
	font-size: 16px;
	line-height: 1.75;
	color: #263244;
	margin-bottom: 25px;
}

.about-modern-btn {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	background: #020617;
	color: #ffffff;
	padding: 14px 24px;
	border-radius: 35px;
	font-size: 15px;
	font-weight: 700;
	text-decoration: none;
	transition: all 0.3s ease;
}

.about-modern-btn:hover {
	background: #0ea5e9;
	color: #ffffff;
	transform: translateY(-3px);
}

.about-modern-btn i {
	transform: rotate(-45deg);
}

/* Mobile Responsive */
@media (max-width: 767px) {
	.about-modern-section {
		padding: 50px 0;
	}

	.about-modern-box {
		min-height: auto;
		background-position: center;
	}

	.about-modern-box::before {
		background: linear-gradient(180deg,
				rgba(255, 255, 255, 0.96) 0%,
				rgba(255, 255, 255, 0.88) 60%,
				rgba(255, 255, 255, 0.55) 100%);
	}

	.about-modern-content {
		padding: 20px;
		background: #fff;
		border-radius: 22px;
	}

	.about-modern-content h2 {
		font-size: 28px;
	}

	.about-modern-content p {
		font-size: 15px;
	}
}

.stats-simple-section {
	padding: 50px 0;
	background: #faf7f2;
}

.stats-box {
	text-align: center;
	padding: 20px;
	position: relative;
}

.stats-box:after {
	content: "";
	position: absolute;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
	width: 1px;
	height: 70px;
	background: #e8e8e8;
}

.col-lg:last-child .stats-box:after {
	display: none;
}

.stats-icon {
	width: 60px;
	height: 60px;
	margin: 0 auto 12px;
	border-radius: 50%;
	background: #ec090a;
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 24px;
}

.stats-box h2 {
	font-size: 42px;
	font-weight: 700;
	color: #222;
	margin-bottom: 5px;
}

.stats-box h5 {
	font-size: 18px;
	font-weight: 500;
	margin-bottom: 8px;
}

.stats-box small {
	color: #777;
	font-size: 14px;
	line-height: 1.5;
}

@media(max-width:991px) {

	.stats-box {
		margin-bottom: 30px;
		padding: 0px;
	}

	.stats-box small {
		font-size: 11px;
	}

	.stats-box:after {
		display: none;
	}

	.stats-box h2 {
		font-size: 33px;
	}

	.stats-icon {
		width: 53px;
		height: 53px;
	}

}

.call-now-btn {
	position: fixed;
	right: 8px;
	bottom: 82px;
	z-index: 9999;

	display: flex;
	align-items: center;
	gap: 12px;

	background: #fff;
	color: #222;
	text-decoration: none;

	padding: 9px 18px 9px 10px;
	border-radius: 60px;

	box-shadow: 0 15px 40px rgba(0, 0, 0, .15);

	transition: .35s ease;
	animation: callFloat 2s ease-in-out infinite;
}

.call-now-btn:hover {
	transform: translateY(-4px);
	color: #222;
	box-shadow: 0 18px 45px rgba(0, 0, 0, .22);
}

.call-icon {
	width: 34px;
	height: 34px;
	border-radius: 50%;
	background: linear-gradient(135deg, #ec090a, #d60000);
	display: flex;
	align-items: center;
	justify-content: center;

	color: #fff;
	font-size: 15px;
	position: relative;
}

.call-icon::before {
	content: "";
	position: absolute;
	inset: -6px;
	border-radius: 50%;
	border: 2px solid rgba(211, 174, 104, .4);
	animation: ring 2s infinite;
}

.call-content {
	display: flex;
	flex-direction: column;
	line-height: 1.1;
}

.call-content small {
	font-size: 12px;
	color: #888;
	font-weight: 500;
}

.call-content strong {
	font-size: 16px;
	font-weight: 700;
	color: #222;
}

@keyframes ring {
	0% {
		transform: scale(1);
		opacity: 1;
	}

	100% {
		transform: scale(1.45);
		opacity: 0;
	}
}

@keyframes callFloat {

	0%,
	100% {
		transform: translateY(0);
	}

	50% {
		transform: translateY(-5px);
	}
}

@media(max-width:767px) {

	.call-now-btn {
		padding: 8px 15px 8px 8px;
	}

	.call-icon {
		width: 32px;
		height: 32px;
		font-size: 15px;
	}

	.call-content strong {
		font-size: 14px;
	}

	.call-content small {
		font-size: 11px;
	}

	.franchisy-btn .call-content strong {
		font-size: 11px !important;
	}

	.franchisy-btn .call-icon {
		width: 27px;
		height: 27px;
		font-size: 13px;
	}

	.franchisy-btn {
		gap: 6px;
		right: 2px !important;
		bottom: 13px !important;

	}

}


.franchisy-btn {
	position: fixed;
	right: 5px;
	bottom: 15px;
	z-index: 9999;

	display: flex;
	align-items: center;
	gap: 12px;

	background: #ec090a;
	color: #fff;
	text-decoration: none;

	padding: 9px 18px 9px 10px;
	border-radius: 60px;

	box-shadow: 0 15px 40px rgba(0, 0, 0, .15);

	transition: .35s ease;
}

.franchisy-btn:hover {
	color: #222;
	box-shadow: 0 18px 45px rgba(0, 0, 0, .22);
}

.franchisy-btn .call-icon {
	width: 34px;
	height: 34px;
	border-radius: 50%;
	background: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #ec090a;
	font-size: 15px;
	position: relative;
}

.franchisy-btn .call-content strong {
	color: #fff;
}


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

	.our-faqs {
		position: relative;
		background-image: url('../images/cta-mbn.webp') !important;
		background-repeat: no-repeat;
		background-position: center;
		background-size: cover;
		padding: 60px 0;
	}

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


}

@media only screen and (min-width: 992px) {
	.desktop-banner {
		display: block;
	}

	.mbn-banner {
		display: none;
	}
}

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

	.desktop-banner {
		display: none;
	}

	.mbn-banner {
		display: block;
	}
}


.franchise-section {
	padding: 60px 0;
	background: #f8f6f2;
}

.franchise-box {
	background: #fff;
	border-radius: 30px;
	overflow: hidden;
	box-shadow: 0 25px 60px rgba(0, 0, 0, .08);
	padding: 24px;
}


.tag-line {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	border: 1px solid #ec090a;
	gap: 10px;
	background: #fff;
	color: #393838;
	padding: 10px 20px;
	border-radius: 50px;
	font-weight: 600;
	margin-bottom: 20px;
}

.tag-line i {
	color: #ff9800;
}

.franchise-content h2 {
	font-size: 45px;
	line-height: 1.2;
	margin-bottom: 10px;
	color: #222;
}

.franchise-content h2 span {
	color: #ec090a;
}

.franchise-content p {
	font-size: 17px;
	line-height: 1.7;
	color: #666;
	margin-bottom: 20px;
}

.franchise-image {
	height: 100%;
}

.franchise-image img {
	width: 100%;
	height: 100%;
	min-height: 520px;
	object-fit: cover;
	transition: .5s;
}

.franchise-box:hover .franchise-image img {
	transform: scale(1.05);
}

@media(max-width:991px) {

	.franchise-box {
		padding: 20px;
	}

	.franchise-content h2 {
		font-size: 32px;
	}


}

@media(max-width:767px) {

	.franchise-section {
		padding: 40px 0;
	}

.tag-line{
        font-size: 14px;
    padding: 10px 14px;

}

	.franchise-content h2 {
		font-size: 27px;
	}

	.franchise-content p {
		font-size: 15px;
	}



}

.post-meta {
	display: flex;
	align-items: center;
	gap: 18px;
	margin-bottom: 12px;
	font-size: 14px;
	color: #777;
	font-weight: 500;
	flex-wrap: wrap;
	border-bottom: 1px solid #e0e0e0;
	padding-bottom: 12px;
}

.post-meta span {
	display: flex;
	align-items: center;
	gap: 6px;
}

.post-meta i {
	color: var(--accent-color);
	font-size: 14px;
}

.post-meta span:first-child::after {
	content: "";
	width: 4px;
	height: 4px;
	background: #ccc;
	border-radius: 50%;
	margin-left: 12px;
}

@media(max-width:576px) {
	.post-meta {
		gap: 12px;
		font-size: 13px;
	}

	.post-meta span:first-child::after {
		display: none;
	}
}

.coming-location-wrapper {
	padding: 50px 0px;
	position: relative;
	background-color: #faf7f2;
}

/* LEFT CARD */

.coming-main-card {
	height: 100%;
	background: #ec090a;
	border-radius: 15px;
	padding: 18px 14px;
	color: #fff;
	display: flex;
	flex-direction: column;
	justify-content: center;
	box-shadow: 0 20px 40px rgba(236, 9, 10, .25);
}

.coming-main-card span {
	font-size: 13px;
	font-weight: 600;
	letter-spacing: 2px;
	text-transform: uppercase;
}

.coming-main-card h3 {
	color: #fff;
	font-size: 21px;
	line-height: 1.3;
	margin: 13px 0px 0px 0px;
}

.coming-main-card p {
	color: #fff;
	opacity: .9;
	margin: 0;
	line-height: 24px;
}

/* LOCATION CARD */

.location-card-new {
	background: #fff;
	border-radius: 15px;
	padding: 18px 14px;
	text-align: center;
	height: 100%;
	transition: .35s;
	border: 1px solid #eee;
	box-shadow: 0 10px 30px rgba(0, 0, 0, .08);
}

.location-card-new:hover {
	background: #ec090a;
	transform: translateY(-8px);
}

.location-card-new i {
	width: 45px;
	height: 45px;
	line-height: 45px;
	border-radius: 50%;
	background: #fdecec;
	color: #ec090a;
	font-size: 21px;
	margin-bottom: 12px;
	transition: .35s;
}

.location-card-new h6 {
	font-size: 17px;
	font-weight: 600;
	margin-bottom: 4px;
	color: #222;
	transition: .35s;
	letter-spacing: normal;
}

.location-card-new p {
	color: #777;
	margin: 0;
	line-height: 24px;
	transition: .35s;
	font-size: 15px;
}

.location-card-new:hover i {
	background: #fff;
	color: #ec090a;
}

.location-card-new:hover h6,
.location-card-new:hover p {
	color: #fff;
}



/* Mobile */

@media(max-width:575px) {


	.location-card-new {
		padding: 14px 12px;
	}

	.location-card-new h6 {
		font-size: 16px;
	}

	.location-card-new p {
		font-size: 13px;
	}

}

/*=========================
Top Announcement
==========================*/

.top-announcement {
	background: #000;
	color: #fff;
	font-size: 14px;
}

.top-announcement-wrap {
	display: flex;
	align-items: center;
	justify-content: space-between;
	min-height: 48px;
	gap: 20px;
}

.top-left,
.top-center,
.top-right {
	display: flex;
	align-items: center;
	gap: 20px;
}

.franchise-link {
	display: flex;
	align-items: center;
	gap: 10px;
	color: #fff;
	font-weight: 700;
	text-decoration: none;
}

.franchise-link i:first-child {
	color: #ec090a;
}

.franchise-link:hover {
	color: #fff;
}

.top-center span {
	display: flex;
	align-items: center;
	gap: 8px;
	opacity: .95;
}

.top-left .fa-store,
.top-left .fa-location-dot,
.top-right a i {
	color: #ec090a;
}

.top-right a {
	color: #fff;
	text-decoration: none;
	transition: .3s;
}

.top-right a:hover {
	color: #fff;
}

/* Mobile */

@media(max-width:991px) {

	.top-announcement {
		display: none;
	}

}


.inner-services-section {
	padding: 70px 0;
	background: #faf7f3;
}

.service-detail-box {
	position: relative;
	margin-bottom: 35px;
	padding: 25px;
	overflow: hidden;
	background: #ffffff;
	border: 1px solid rgba(180, 139, 85, 0.14);
	border-radius: 24px;
	box-shadow: 0 18px 45px rgba(37, 27, 20, 0.07);
	transition: all 0.4s ease;
}

.service-detail-box:last-child {
	margin-bottom: 0;
}

.service-detail-box:hover {
	transform: translateY(-6px);
	border-color: rgba(180, 139, 85, 0.35);
	box-shadow: 0 25px 55px rgba(37, 27, 20, 0.12);
}

.service-detail-image {
	position: relative;
	height: 360px;
	overflow: hidden;
	border-radius: 18px;
}

.service-detail-image::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(to top,
			rgba(25, 18, 13, 0.2),
			transparent 55%);
}

.service-detail-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.6s ease;
}

.service-detail-box:hover .service-detail-image img {
	transform: scale(1.05);
}

.service-detail-content {
	padding: 25px 35px;
}

.service-detail-content .tag-line {
	display: inline-flex;
	align-items: center;
	gap: 9px;
	margin-bottom: 18px;
	padding: 9px 15px;
	background: #fffbfb;
	color: #a4763e;
	border-radius: 50px;
	font-size: 15px;
	font-weight: 600;
	letter-spacing: 0.5px;
}

.service-detail-content .tag-line i {
	color: #bd8c4e;
}

.service-detail-content h2 {
	margin-bottom: 10px;
	color: #211d1a;
	font-size: 32px;
	line-height: 1.25;
}

.service-detail-content p {
	max-width: 650px;
	margin-bottom: 28px;
	color: #706a65;
	font-size: 16px;
	line-height: 1.85;
}


@media (max-width: 991px) {
	.inner-services-section {
		padding: 75px 0;
	}


	.service-detail-image {
		height: 320px;
	}

	.service-detail-content {
		padding: 20px 10px 10px;
	}

	.service-detail-content h2 {
		font-size: 32px;
	}
}

@media (max-width: 767px) {
	.inner-services-section {
		padding: 60px 0;
	}


	.service-detail-box {
		margin-bottom: 24px;
		padding: 14px;
		border-radius: 18px;
	}

	.service-detail-image {
		height: 260px;
		border-radius: 14px;
	}

	.service-detail-content {
		padding: 22px 8px 10px;
	}

	.service-detail-content h2 {
		font-size: 27px;
	}

	.service-detail-content p {
		font-size: 15px;
		line-height: 1.75;
	}

}

.price-btn {
	background: #000000;
}

.price-btn::after {
	background: var(--accent-color) !important;
}


.banner-btn-1 {
	background: #fff;
	color: #000;
}

.banner-btn-1::before {
	content: '';
	position: absolute;
	top: 50%;
	left: 5px;
	width: 40px;
	height: 40px;
	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: 20px auto;
	transition: all 0.4s ease-in-out;
}

.banner-btn-1:hover::before {
	background-color: var(--white-color);
}

.banner-btn-1::after {
	background: var(--accent-color) !important;
}


/*==================================================
    Beauty Advantages Section
==================================================*/

.beauty-advantages-section {
	position: relative;
	padding: 90px 0;
	overflow: hidden;
	background:
		radial-gradient(circle at 50% 48%,
			rgba(190, 143, 82, 0.13) 0%,
			rgba(190, 143, 82, 0.05) 26%,
			transparent 48%),
		linear-gradient(180deg, #fffdfb 0%, #faf5ef 100%);
}

/* Decorative background shapes */

.beauty-advantages-section::before,
.beauty-advantages-section::after {
	content: "";
	position: absolute;
	border-radius: 50%;
	pointer-events: none;
}

.beauty-advantages-section::before {
	top: -150px;
	left: -150px;
	width: 350px;
	height: 350px;
	background: rgba(190, 143, 82, 0.07);
}

.beauty-advantages-section::after {
	right: -120px;
	bottom: -160px;
	width: 360px;
	height: 360px;
	border: 65px solid rgba(190, 143, 82, 0.05);
}

.beauty-advantages-section .container {
	position: relative;
	z-index: 2;
}

/*==================================================
    Main Layout
==================================================*/

.beauty-advantages-wrapper {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 400px minmax(0, 1fr);
	align-items: center;
	gap: 42px;
	margin-top: 55px;
}

/*==================================================
    Feature Columns
==================================================*/

.beauty-features {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.beauty-left-features {
	text-align: right;
}

.beauty-right-features {
	text-align: left;
}

/*==================================================
    Feature Card
==================================================*/

.beauty-feature-box {
	position: relative;
	display: flex;
	align-items: center;
	gap: 16px;
	min-height: 95px;
	padding: 12px 20px;
	overflow: hidden;
	background: rgba(255, 255, 255, 0.88);
	border: 1px solid rgba(177, 129, 70, 0.14);
	border-radius: 18px;
	box-shadow: 0 12px 35px rgba(54, 38, 24, 0.07);
	backdrop-filter: blur(8px);
	transition:
		transform 0.35s ease,
		box-shadow 0.35s ease,
		border-color 0.35s ease;
}

.beauty-feature-box::before {
	content: "";
	position: absolute;
	top: 0;
	width: 4px;
	height: 100%;
	background: linear-gradient(180deg,
			#d8b17c 0%,
			#a87336 100%);
	opacity: 0;
	transition: opacity 0.35s ease;
}

.beauty-left-features .beauty-feature-box::before {
	right: 0;
}

.beauty-right-features .beauty-feature-box::before {
	left: 0;
}

.beauty-feature-box:hover {
	transform: translateY(-6px);
	border-color: rgba(177, 129, 70, 0.35);
	box-shadow: 0 20px 45px rgba(54, 38, 24, 0.13);
}

.beauty-feature-box:hover::before {
	opacity: 1;
}

/* Left and right positioning */

.beauty-left-features .beauty-feature-box {
	justify-content: flex-end;
}

.beauty-right-features .beauty-feature-box {
	justify-content: flex-start;
}

.beauty-left-features .beauty-icon {
	order: 2;
}

.beauty-left-features .beauty-info {
	order: 1;
}

.beauty-right-features .beauty-icon {
	order: 1;
}

.beauty-right-features .beauty-info {
	order: 2;
}

/* Slight staggered premium alignment */

.beauty-left-features .beauty-feature-box:nth-child(2),
.beauty-left-features .beauty-feature-box:nth-child(3) {
	margin-right: 16px;
}

.beauty-right-features .beauty-feature-box:nth-child(2),
.beauty-right-features .beauty-feature-box:nth-child(3) {
	margin-left: 16px;
}

/*==================================================
    Feature Icons
==================================================*/

.beauty-icon {
	position: relative;
	width: 58px;
	height: 58px;
	min-width: 58px;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	border-radius: 18px;
	background:
		linear-gradient(145deg,
			#fffaf4 0%,
			#f2dfc6 100%);
	color: #a87336;
	border: 1px solid rgba(177, 129, 70, 0.2);
	box-shadow: 0 10px 28px rgba(156, 105, 48, 0.14);
	font-size: 21px;
	transition:
		transform 0.35s ease,
		color 0.35s ease,
		background 0.35s ease;
}

.beauty-icon::after {
	content: "";
	position: absolute;
	inset: 6px;
	border: 1px solid rgba(177, 129, 70, 0.18);
	border-radius: 13px;
}

.beauty-icon i {
	position: relative;
	z-index: 2;
}

.beauty-feature-box:hover .beauty-icon {
	transform: rotate(-5deg) scale(1.06);
	background: linear-gradient(145deg,
			#c99452 0%,
			#a86f31 100%);
	color: #ffffff;
}

/*==================================================
    Feature Content
==================================================*/

.beauty-info {
	min-width: 0;
}

.beauty-info h3 {
	margin: 0 0 5px;
	color: #2b211b;
	font-size: 20px;
	font-weight: 700;
	line-height: 1.3;
}

.beauty-info p {
	margin: 0;
	color: #77706b;
	font-size: 14px;
	line-height: 1.55;
}

/*==================================================
    Center Image
==================================================*/

.beauty-center-image {
	position: relative;
	width: 100%;
	min-height: 510px;
	display: flex;
	align-items: flex-end;
	justify-content: center;
	isolation: isolate;
}

.beauty-circle-bg {
	position: absolute;
	left: 50%;
	bottom: 20px;
	width: 355px;
	height: 355px;
	transform: translateX(-50%);
	border-radius: 50%;
	background:
		linear-gradient(145deg,
			#f8ead8 0%,
			#ddba88 55%,
			#b68141 100%);
	box-shadow:
		inset 0 0 0 14px rgba(255, 255, 255, 0.25),
		0 30px 60px rgba(110, 72, 35, 0.18);
	z-index: -2;
}

.beauty-center-image::before {
	content: "";
	position: absolute;
	left: 50%;
	bottom: -2px;
	width: 405px;
	height: 405px;
	transform: translateX(-50%);
	border: 1px dashed rgba(157, 104, 48, 0.38);
	border-radius: 50%;
	z-index: -3;
	animation: beautyCircleRotate 28s linear infinite;
}

.beauty-center-image::after {
	content: "";
	position: absolute;
	left: 50%;
	bottom: 5px;
	width: 300px;
	height: 35px;
	transform: translateX(-50%);
	border-radius: 50%;
	background: rgba(66, 44, 27, 0.16);
	filter: blur(12px);
	z-index: -1;
}

.beauty-center-image img {
	position: relative;
	z-index: 2;
	display: block;
	width: 100%;
	max-width: 375px;
	max-height: 500px;
	object-fit: contain;
	object-position: center bottom;
	filter: drop-shadow(0 20px 22px rgba(44, 29, 18, 0.2));
	transition: transform 0.5s ease;
}

.beauty-center-image:hover img {
	transform: translateY(-7px);
}

@keyframes beautyCircleRotate {
	from {
		transform: translateX(-50%) rotate(0deg);
	}

	to {
		transform: translateX(-50%) rotate(360deg);
	}
}

/*==================================================
    Large Tablet
==================================================*/

@media (max-width: 1199px) {

	.beauty-advantages-wrapper {
		grid-template-columns: minmax(0, 1fr) 330px minmax(0, 1fr);
		gap: 25px;
	}

	.beauty-feature-box {
		min-height: 98px;
		padding: 17px;
	}

	.beauty-icon {
		width: 58px;
		height: 58px;
		min-width: 58px;
		font-size: 21px;
	}

	.beauty-info h3 {
		font-size: 18px;
	}

	.beauty-info p {
		font-size: 13px;
	}

	.beauty-center-image {
		min-height: 450px;
	}

	.beauty-circle-bg {
		width: 310px;
		height: 310px;
	}

	.beauty-center-image::before {
		width: 350px;
		height: 350px;
	}

	.beauty-center-image img {
		max-width: 320px;
		max-height: 435px;
	}

}

/*==================================================
    Tablet
==================================================*/

@media (max-width: 991px) {

	.beauty-advantages-section {
		padding: 75px 0;
	}

	.beauty-advantages-wrapper {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 22px;
		margin-top: 45px;
	}

	.beauty-center-image {
		grid-column: 1 / -1;
		grid-row: 1;
		width: 100%;
		min-height: 430px;
		margin-bottom: 10px;
	}

	.beauty-left-features {
		grid-column: 1;
		grid-row: 2;
		text-align: left;
	}

	.beauty-right-features {
		grid-column: 2;
		grid-row: 2;
		text-align: left;
	}

	.beauty-left-features .beauty-feature-box,
	.beauty-right-features .beauty-feature-box,
	.beauty-right-features .beauty-feature-box:nth-child(2),
	.beauty-right-features .beauty-feature-box:nth-child(3) {
		justify-content: flex-start;
		margin: 0;
	}

	.beauty-left-features .beauty-icon,
	.beauty-right-features .beauty-icon {
		order: 1;
	}

	.beauty-left-features .beauty-info,
	.beauty-right-features .beauty-info {
		order: 2;
	}

	.beauty-left-features .beauty-feature-box::before,
	.beauty-right-features .beauty-feature-box::before {
		right: auto;
		left: 0;
	}

}

/*==================================================
    Mobile
==================================================*/

@media (max-width: 767px) {

	.beauty-advantages-section {
		padding: 60px 0;
	}

	.beauty-advantages-wrapper {
		display: flex;
		flex-direction: column;
		gap: 18px;
		margin-top: 35px;
	}

	.beauty-center-image {
		order: 1;
		min-height: 365px;
		margin-bottom: 8px;
	}

	.beauty-left-features {
		order: 2;
		width: 100%;
	}

	.beauty-right-features {
		order: 3;
		width: 100%;
	}

	.beauty-features {
		gap: 14px;
	}

	.beauty-feature-box {
		width: 100%;
		min-height: auto;
		padding: 15px;
		border-radius: 15px;
	}

	.beauty-icon {
		width: 54px;
		height: 54px;
		min-width: 54px;
		border-radius: 14px;
		font-size: 19px;
	}

	.beauty-icon::after {
		inset: 5px;
		border-radius: 10px;
	}

	.beauty-info h3 {
		margin-bottom: 3px;
		font-size: 17px;
	}

	.beauty-info p {
		font-size: 13px;
		line-height: 1.5;
	}

	.beauty-circle-bg {
		bottom: 15px;
		width: 270px;
		height: 270px;
	}

	.beauty-center-image::before {
		bottom: -2px;
		width: 310px;
		height: 310px;
	}

	.beauty-center-image img {
		max-width: 280px;
		max-height: 350px;
	}

}

/*==================================================
    Small Mobile
==================================================*/

@media (max-width: 420px) {

	.beauty-advantages-section {
		padding: 50px 0;
	}

	.beauty-center-image {
		min-height: 325px;
	}

	.beauty-circle-bg {
		width: 235px;
		height: 235px;
	}

	.beauty-center-image::before {
		width: 270px;
		height: 270px;
	}

	.beauty-center-image img {
		max-width: 245px;
		max-height: 315px;
	}

	.beauty-feature-box {
		gap: 12px;
		padding: 13px;
	}

	.beauty-icon {
		width: 50px;
		height: 50px;
		min-width: 50px;
		font-size: 18px;
	}

	.beauty-info h3 {
		font-size: 16px;
	}

	.beauty-info p {
		font-size: 12.5px;
	}

}

.franchise-list{
    position: relative;
    display: inline-flex;
    font-size: 15px;
    font-weight: 600;
    line-height: 1em;
    text-transform: capitalize;
    background: #ffffff;
    color: #000;
    gap: 10px;
    border: 1px solid var(--divider-color);
    border-radius: 100px;
    padding: 12px 18px;
}

.franchise-list:hover{
     background: #ed1c24;
    color: #ffffff;
}

.franchise-list i {
    color: #ed1c24;
    font-size: 15px;
}

.franchise-list:hover  i{
     color: #ffffff;
}


/* =====================================
   FOOTER DISCLAIMER
===================================== */

.footer-disclaimer {
    margin-top: 25px;
    padding: 35px 0;
    color: rgba(255, 255, 255, 0.82);
}

.footer-disclaimer-top {
    align-items: center;
    justify-content: space-between;
    gap: 25px;
    margin-bottom: 18px;
}

.footer-copyright,
.footer-address {
    margin: 0;
    font-size: 13px;
    line-height: 1.7;
}

.footer-address {
    display: flex;
    align-items: flex-start;
    gap: 7px;
    text-align: right;
}

.footer-address i {
    margin-top: 3px;
       color: rgba(255, 255, 255, 0.82);
}

.footer-disclaimer-list {

    margin: 0;
    padding: 0;
    list-style: none;
}

.footer-disclaimer-list li {
    display: flex;
    align-items: flex-start;
    gap: 9px;
    font-size: 12px;
    line-height: 1.6;
}

.footer-disclaimer-list i {
    margin-top: 3px;
        color: rgba(255, 255, 255, 0.82);
    font-size: 11px;
}

/* Responsive */

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

    .footer-disclaimer {
        margin-top: 35px;
        padding: 22px 0;
    }

    .footer-disclaimer-top {
        align-items: flex-start;
        flex-direction: column;
        gap: 8px;
    }

    .footer-address {
        text-align: left;
    }

    .footer-disclaimer-list {
        grid-template-columns: 1fr;
        gap: 9px;
    }
}