/* ----------------------------------------------------------------------------------------
* Author        : Awaiken
* Template Name : Framex - Windows and Doors 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. Our Work css
08. Our Projects css
09. Intro Video css
10. How It Work css
11. Our Team css
12. Our Testimonials css
13. Our Faqs css
14. Contact Us 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. Projects Page css
23. Project Single css
24. Team Page css
25. Team Single css
26. Pricing Page css
27. Testimonials Page css
28. Image Gallery css
29. Video Gallery css
30. FAQ's Page css
31. Contact Us Page css
32.	404 Error Page css
33. Responsive css
34. Home - Version 2 css
35. Home - Version 3 css
-------------------------------------------------------------------------------------- */

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

:root {
	--primary-color: #181818;
	--secondary-color: #FFFFFF;
	--bg-color: #F6F5ED;
	--text-color: #83827F;
	--accent-color: #1f4b99;
	--hover-color: #b60000;
	--white-color: #FFFFFF;
	--divider-color: #1818181A;
	--dark-divider-color: #FFFFFF1A;
	--error-color: rgb(230, 87, 87);
	--default-font: "Poppins", 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.7em;
	margin-bottom: 1.5em;
}

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

figure {
	margin: 0;
}

img {
	max-width: 100%;
}

a {
	text-decoration: none;
}

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

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

.container {
	max-width: 1300px;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.btn-default:hover::before {
	transform: translateY(-50%) rotate(45deg);
	filter: brightness(0) invert(1);
}

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

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

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

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

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



.readmore-btn {
	position: relative;
	display: inline-block;
	font-size: 16px;
	font-weight: 400;
	line-height: 1.25em;
	text-transform: capitalize;
	color: var(--primary-color);
	padding-right: 28px;
	transition: all 0.4s ease-in-out;
}

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

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

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

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

.loading-container,
.loading {
	height: 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);
	}
}

.light-section {
	width: 100%;
	background-color: var(--secondary-color);
}

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

.dark-section {
	background-color: var(--primary-color);
	background-image: url('../images/dark-section-bg-image.png');
	background-repeat: no-repeat;
	background-position: top 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-sub-heading .section-sub-title,
.section-title .section-sub-title {
	position: relative;
	display: inline-block;
	font-size: 16px;
	font-weight: 500;
	text-transform: capitalize;
	line-height: normal;
	color: var(--primary-color);
	background-color: var(--secondary-color);
	border-radius: 100px;
	padding: 8px 16px 8px 32px;
	margin-bottom: 15px;
	border: 1px solid #dedede;
}

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

.section-sub-heading .section-sub-title,
.section-title.section-sub-heading .section-sub-title {
	margin-bottom: 0;
}

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

.section-title h2 {
	font-size: 32px;
	font-weight: 600;
	line-height: 1.2em;
	margin-bottom: 0;
	cursor: none;
	color: #1f4b99;

}

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

.light-section .section-sub-heading .section-sub-title,
.light-section .section-title .section-sub-title {
	background-color: var(--bg-color);
}

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

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

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

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

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

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

header.main-header .header-sticky {
	position: relative;
	top: 0;
	background: transparent;
	border-radius: 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: 10px 0px;
	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 {
	position: relative;
	margin: 0 8px;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.slicknav_icon .slicknav_icon-bar {
	display: block;
	width: 100%;
	height: 3px;
	width: 22px;
	background-color: var(--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: 400;
	text-transform: capitalize;
	padding: 7px 20px;
	color: var(--white-color);
	line-height: normal;
	margin: 0;
	border-radius: 0 !important;
	transition: all 0.3s ease-in-out;
}

.slicknav_nav a:hover,
.slicknav_nav a:focus,
.slicknav_nav .slicknav_row:hover {
	background-color: transparent;
	color: var(--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(--white-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;
	background-image: url('../images/hero-bg.jpg');
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
	padding: 250px 0 120px;
	height: auto;
	min-height: 100vh;
	align-content: center;
}

.hero::before {
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background: linear-gradient(90deg, rgba(24, 24, 24, 0.8) 0%, rgba(24, 24, 24, 0.72) 36.01%, transparent 63.02%), linear-gradient(180deg, rgba(24, 24, 24, 0.8) 0%, transparent 18.18%);
	width: 100%;
	height: 100%;
	z-index: 1;
}

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

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

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

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

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

.video-play-button {
	display: inline-flex;
	align-items: center;
}

.video-play-button a {
	position: relative;
	display: inline-flex;
	align-items: center;
	cursor: none;
	gap: 10px;
}

.video-play-button a span {
	position: relative;
	width: 50px;
	height: 50px;
	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: 16px;
	color: var(--primary-color);
	margin-left: 2px;
}

.video-play-button p {
	font-weight: 500;
	color: var(--white-color);
	margin: 0;
}

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

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

.about-us-image-box {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	height: 100%;
	margin-right: 15px;
}

.about-us-image-box-1 {
	position: relative;
	width: 73%;
	height: 100%;
}

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

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

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

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

.about-us-image-box-2 .about-us-image figure {
	border: 10px solid var(--bg-color);
	margin-left: -137px;
	border-radius: 30px 20px 20px 30px;
	border-right: none;
}

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

.about-us-counter-box {
	position: absolute;
	bottom: 45px;
	right: -60px;
	background-color: var(--accent-color);
	border-radius: 20px;
	padding: 10px 20px;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 15px;
	transition: all 0.4s ease-in-out;
	animation: experienceboxmove 3s infinite linear alternate;
	z-index: 2;
}

.about-us-counter-box:hover {
	background-color: var(--white-color);
}

@keyframes experienceboxmove {
	50% {
		transform: translateX(30px);
	}
}

.about-us-counter-box .icon-box img {
	width: 100%;
	max-width: 50px;
	filter: brightness(0) invert(1);
}

.about-us-counter-content {
	width: calc(100% - 65px);
}

.about-us-counter-content h2 {
	font-size: 32px;
	font-weight: 600;
	line-height: 1em;
	color: #ffff;
}

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

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

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

.about-us-body-content {
	width: 100%;
}

.about-us-body-list ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

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

.about-us-body-list ul li:last-child {
	margin-bottom: 0px;
}

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

.about-us-btn {
	/* border-top: 1px solid var(--divider-color);
	padding-top: 40px; */
	margin-top: 20px;
}

.about-us-counter-list {
	width: 100%;
}

.about-us-counter-item {
	text-align: center;
	border-bottom: 1px solid var(--divider-color);
	padding-bottom: 40px;
	margin-bottom: 40px;
}

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

.about-us-counter-item h2 {
	font-size: 46px;
	line-height: 1em;
}

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

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

.our-services {
	background-image: url('../images/service-bg-image.png');
	background-repeat: no-repeat;
	background-position: bottom center;
	background-size: auto;
	padding: 60px 0;
}

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

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

.service-item.active::before,
.service-item:hover::before {
	transform: translate(100%, -100%);
}

.service-item-image {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	opacity: 0;
	transition: all 0.4s ease-in-out;
}

.service-item.active .service-item-image,
.service-item:hover .service-item-image {
	opacity: 1;
}

.service-item-image a {
	position: relative;
	display: block;
	height: 100%;
	cursor: none;
}

.service-item-image a::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: var(--primary-color);
	opacity: 50%;
	width: 100%;
	height: 100%;
}

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

.service-item-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.service-item-body {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	gap: 30px;
	height: 100%;
}

.service-item-body .icon-box {
	position: relative;
	width: 80px;
	height: 80px;
	background: var(--accent-color);
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 10px;
	overflow: hidden;
	z-index: 1;
}

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

.service-item.active .service-item-body .icon-box::before,
.service-item:hover .service-item-body .icon-box::before {
	transform: rotate(0) scale(1);
}

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

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

.service-item-content {
	max-width: 240px;
}

.service-item-content h2 {
	font-size: 20px;
	line-height: 1.4em;
	transition: all 0.4s ease-in-out;
}

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

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

.service-item-btn {
	border-top: 1px solid var(--divider-color);
	padding-top: 30px;
	margin-top: 30px;
	transition: all 0.3s ease-in-out;
}

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

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

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

.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: 400;
	background: var(--accent-color);
	color: var(--primary-color);
	line-height: 1em;
	padding: 5px 14px;
	border-radius: 20px;
	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.4s 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;
	font-size: 16px;
	font-weight: 400;
	line-height: normal;
	color: var(--primary-color);
	margin-right: 10px;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/************************************/
/***   	   07. Our Work css       ***/
/************************************/

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

.our-work-item-list {
	background: var(--secondary-color);
	border-radius: 20px;
	padding: 40px;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 30px;
}

.our-work-item {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	width: 100%;
	gap: 8px;
	background: #fff;
	border-radius: 10px;
	padding: 10px 6px;
}

.our-work-item .icon-box {
	position: relative;
	background: var(--accent-color);
	border-radius: 10px;
	width: 46px;
	height: 46px;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
}

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

.our-work-item:hover .icon-box::before {
	transform: rotate(0) scale(1);
}

.our-work-item:hover .icon-box i {
	color: #fff;
	position: relative;
}

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

.our-work-item:hover .icon-box img {
	filter: brightness(0) invert(1)
}


.our-work-item .icon-box i {
	color: #fff;
}

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

.our-work-item-content h3 {
	font-size: 15px;
	line-height: normal;
	font-weight: 500;
}

.work-content-footer {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 20px 40px;
	margin-top: 40px;
}

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

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

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

.work-contact-box:hover .icon-box::before {
	transform: scale(1)
}

.work-contact-box .icon-box i,
.work-contact-box .icon-box img {
	position: relative;
	z-index: 1;
	transition: all 0.4s ease-in-out;
}

.work-contact-box .icon-box i {
	font-size: 22px;
	color: var(--primary-color);
}

.work-contact-box:hover .icon-box i {
	color: var(--white-color);
}

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

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

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

.work-contact-box-content p {
	margin: 0px;
}

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

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

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

.our-work-image {
	margin-left: 15px;
}

.our-work-image figure {
	position: relative;
	display: block;
	mask-image: url('../images/our-work-image-bg-shape.svg');
	background-image: url('../images/our-work-image-bg-shape.svg');
	mask-size: cover;
	mask-position: center center;
	mask-repeat: no-repeat;
	width: 100%;
	height: 100%;
	border-radius: 10px;
}

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

/************************************/
/***      08. Our Project css    ***/
/************************************/

.our-project {
	background: url('../images/dark-section-bg-image.png'), linear-gradient(180deg, var(--primary-color) 70%, var(--bg-color) 30%);
	background-size: 100% 70%, 100%;
	background-position: top center;
	background-repeat: no-repeat;
	padding: 120px 0 0;
}

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

.project-item-image figure {
	display: block;
	border-radius: 1000px 1000px 0 0;
	overflow: hidden;
}

.project-item-image figure a {
	position: relative;
	display: block;
	border-radius: 1000px 1000px 0 0;
	cursor: none;
}

.project-item-image figure a::before {
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background: linear-gradient(180deg, transparent 39.2%, rgba(24, 24, 24, 0.8) 100%);
	border-radius: 1000px 1000px 0 0;
	height: 100%;
	width: 100%;
	z-index: 1;
}

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

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

.project-item-body {
	position: absolute;
	bottom: 40px;
	left: 40px;
	right: 40px;
	z-index: 1;
}

.project-item-content h2 {
	font-size: 20px;
	color: var(--white-color);
	line-height: 1.4em;
}

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

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

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

.project-item-btn .readmore-btn::before {
	background-image: url('../images/arrow-white.svg');
}

.our-project .section-footer-text p,
.our-project .section-footer-text ul li {
	color: var(--primary-color);
}

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

/************************************/
/***     09. intro video css      ***/
/************************************/

.intro-video {
	padding: 60px 0;
}

.intro-video-title .intro-video-btn {
	margin-top: 40px;
}

.intro-video-content p:last-child {
	margin: 0;
}

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

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

.intro-video-counter-item h2 {
	font-size: 46px;
	line-height: 1em;
}

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

.intro-video-content-box {
	position: relative;
	min-height: 600px;
	border-radius: 20px;
	align-content: end;
	padding: 40px;
	overflow: hidden;
}

.intro-video-content-box::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(180deg, transparent 50.75%, rgba(24, 24, 24, 0.8) 100%);
	width: 100%;
	height: 100%;
	z-index: 1;
}

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

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

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

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

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

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

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

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

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

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

.how-it-work-item-no {
	position: relative;
	background-color: var(--accent-color);
	border-radius: 10px;
	width: 50px;
	height: 50px;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
}

.how-it-work-item-no::before {
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: var(--primary-color);
	border-radius: 20px;
	transform: scale(0) rotate(180deg);
	transition: all 0.4s ease-in-out;
	z-index: 0;
}

.how-it-work-item:hover .how-it-work-item-no::before {
	border-radius: 0;
	transform: scale(1);
}

.how-it-work-item-no h3 {
	position: relative;
	font-size: 24px;
	transition: all 0.4s ease-in-out;
	z-index: 1;
}

.how-it-work-item:hover .how-it-work-item-no h3 {
	color: var(--white-color);
}

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

.how-it-work-item-content h3 {
	font-size: 20px;
}

.how-it-work-item-content p {
	margin: 10px 0 0;
}

.how-it-work-image-box {
	margin-left: 65px;
}

.how-work-image-list {
	margin-top: 20px;
}

.how-work-image-slider .swiper-wrapper,
.how-work-image-list .swiper-slide {
	cursor: none;
}

.how-work-image-slider .swiper-slide figure,
.how-work-image-list .swiper-slide figure {
	display: block;
}

.how-work-image-slider .swiper-slide img,
.how-work-image-list .swiper-slide img {
	width: 100%;
	object-fit: cover;
}

.how-work-image-slider .swiper-slide figure,
.how-work-image-slider .swiper-slide img {
	border-radius: 999px 999px 0 0;
	overflow: hidden;
}


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

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

.team-item {
	display: flex;
	flex-direction: column;
	text-align: center;
	background-color: var(--secondary-color);
	border-radius: 20px;
	height: calc(100% - 30px);
	margin-bottom: 30px;
	overflow: hidden;
	transition: all 0.5s ease-in-out;
}

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

.team-item-content-box {
	padding: 50px;
	flex: 1;
}

.team-item-image a {
	display: inline-block;
	border-radius: 50%;
	cursor: none;
}

.team-item-image figure {
	display: block;
	max-width: 192px;
	margin: 0 auto;
	border-radius: 50%;
}

.team-item-image figure img {
	width: 100%;
	aspect-ratio: 1 / 1;
	object-fit: cover;
	border-radius: 50%;
	transition: all 0.5s ease-in-out;
}

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

.team-item-content {
	margin-top: 30px;
}

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

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

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

.team-item-btn .readmore-btn {
	font-weight: 500;
	width: 100%;
	background-color: var(--accent-color);
	padding: 20px;
}

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

.team-item-btn .readmore-btn::before {
	display: none;
}

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

.our-testimonial {
	background-image: url('../images/testimonial-bg-image.png');
	background-repeat: no-repeat;
	background-size: auto;
	background-position: center center;
	padding: 60px 0;
}

.testimonial-slider,
.testimonial-slider .swiper,
.testimonial-slider .swiper-wrapper,
.testimonial-slider .swiper-slide,
.testimonial-item {
	height: 100%;
}

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

.testimonial-item {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	min-height: 430px;
	background-color: var(--dark-divider-color);
	backdrop-filter: blur(15px);
	-webkit-backdrop-filter: blur(15px);
	padding: 10px;
	border-radius: 20px;
}

.testimonial-slider .swiper-slide .testimonial-item {
	transform: scale(0.95);
	transition: all 0.6s ease-in-out;
}

.testimonial-slider .swiper-slide.swiper-slide-next .testimonial-item {
	transform: scale(1);
}

.testimonial-item-header {
	padding: 30px;
}

.testimonial-item-rating {
	margin-bottom: 20px;
}

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

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

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

.testimonial-item-author {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 15px;
	background-color: var(--dark-divider-color);
	border-radius: 10px;
	padding: 30px;
}

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

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

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

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

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

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

/************************************/
/***      13. Our Faqs css       ***/
/************************************/

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

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

.faq-cta-box {
	max-width: 550px;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
	gap: 15px;
	background-color: var(--primary-color);
	border-radius: 20px;
	padding: 10px;
}

.faq-cta-client-box {
	display: flex;
	max-width: 64%;
	flex-wrap: wrap;
	align-items: center;
	gap: 15px;
}

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

.faq-cta-client-image img {
	width: 100%;
	max-width: 60px;
	border-radius: 50%;
}

.faq-cta-client-content-box {
	width: calc(100% - 75px);
}

.faq-cta-client-content-header {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 10px;
}

.faq-cta-client-content-header h3 {
	font-size: 16px;
	color: var(--white-color);
	min-width: 25px;
}

.faq-cta-client-content-header {
	margin-bottom: 0px;
}

.faq-cta-client-content-header i {
	font-size: 16px;
	color: var(--accent-color);
}

.faq-cta-client-content {
	margin-top: 5px;
}

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

.faq-cta-btn .btn-default::before {
	content: '\f095';
	font-family: 'FontAwesome';
	font-size: 18px;
	color: var(--primary-color);
	background: transparent;
	line-height: normal;
}

.faq-cta-btn .btn-default:hover::before {
	transform: translateY(-50%);
}

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

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

.faq-accordion .accordion-header .accordion-button {
	font-size: 18px;
	font-weight: 400;
	line-height: 1.333em;
	background: transparent;
	color: var(--primary-color);
	padding: 22px 55px 22px 22px;
	transition: all 0.4s ease-in-out;
}

.faq-accordion .accordion-item .accordion-button:not(.collapsed) {
	background-color: var(--primary-color);
	color: var(--white-color);
}

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

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

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

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

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

/************************************/
/***      14. Contact Us css      ***/
/************************************/

.contact-us-box {
	position: relative;
	background-image: url('../images/contact-us-box-bg-image.webp');
	background-position: center center;
	overflow: hidden;
	padding: 60px 0;
}

.contact-us-box::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(270deg, transparent -5%, rgba(24, 24, 24, 0.9) 100%);
	width: 100%;
	height: 100%;
}

.contact-us-box .container {
	position: relative;
	z-index: 1;
}

/* .contact-us-content-box {
	min-height: 590px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
} */

.contact-us-info-box {
	border-top: 1px solid var(--divider-color);
	padding-top: 60px;
}

.contact-us-info-box .contact-us-item-list {
	display: flex;
	flex-wrap: wrap;
	gap: 30px 50px;
}

.dark-section .contact-us-info-box {
	border-color: var(--dark-divider-color);
}

.dark-section .contact-us-info-box .work-contact-box .icon-box::before {
	background: var(--white-color);
}

.dark-section .contact-us-info-box .work-contact-box:hover .icon-box img {
	filter: none;
}

.dark-section .contact-us-info-content p,
.dark-section .contact-us-info-box .work-contact-box .work-contact-box-content p,
.dark-section .contact-us-info-box .work-contact-box .work-contact-box-content h3 {
	color: var(--white-color);
}

.contact-us-info-content {
	max-width: 394px;
	margin-top: 30px;
}

.contact-us-info-content p:last-child {
	margin-bottom: 0;
}

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

.contact-box-form .section-title h2 {
	color: var(--primary-color);
}

.contact-box-form .section-title p {
	color: var(--text-color);
}

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

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



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

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

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

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

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

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

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

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

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

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

.footer-links-box {
	display: flex;
	flex-wrap: wrap;
	gap: 30px 4.167vw;
	margin-left: 40px;
}

.footer-quick-links {
	width: calc(23% - 2.778vw);
}

.footer-links {
	position: relative;
}

.footer-links::before {
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	right: -2.083vw;
	background: var(--dark-divider-color);
	width: 1px;
	height: 100%;
}

.footer-links:last-child::before {
	display: none;
}

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

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

.footer-links ul li {
	line-height: 1.4em;
	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-service-links {
	width: calc(36% - 2.778vw);
}

.footer-newsletter-box {
	width: calc(41% - 2.778vw);
}

.footer-newsletter-form .form-group .form-control {
	font-size: 16px;
	font-weight: 400;
	line-height: 1.25em;
	background-color: var(--dark-divider-color);
	backdrop-filter: blur(30px);
	-webkit-backdrop-filter: blur(30px);
	color: var(--white-color);
	border-radius: 100px;
	border: none;
	box-shadow: none;
	outline: none;
	padding: 15px 24px;
}

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

.footer-newsletter-form .form-group .btn-default {
	width: 100%;
	padding: 17px;
	text-align: center;
	margin-top: 20px;
}

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

.footer-cta-box {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	margin-top: 80px;
	background-color: var(--dark-divider-color);
	backdrop-filter: blur(30px);
	-webkit-backdrop-filter: blur(30px);
	padding: 30px 40px;
	border-radius: 20px;
}

.footer-cta-content {
	width: calc(40% - 10px);
}

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

.footer-cta-contact-list {
	max-width: calc(60% - 10px);
	display: flex;
	flex-wrap: wrap;
	gap: 30px 4.167vw;
}

.footer-cta-contact-item {
	position: relative;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 15px;
}

.footer-cta-contact-item::before {
	content: '';
	position: absolute;
	top: 0;
	right: -2.083vw;
	background: var(--dark-divider-color);
	width: 1px;
	height: 100%;
}

.footer-cta-contact-item:nth-child(2n + 2):before,
.footer-cta-contact-item:last-child:before {
	display: none;
}

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

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

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

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

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

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

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

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

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

.footer-copyright-text {
	text-align: center;
	padding: 60px 0;
}

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

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

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

.page-header:before {
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	height: 100%;
	width: 100%;
	background:
		linear-gradient(90deg,
			rgba(0, 72, 170, 0.99) 0%,
			rgba(0, 78, 180, 0.88) 42%,
			rgba(0, 96, 205, 0.65) 66%,
			rgba(0, 110, 230, 0.42) 100%),
		linear-gradient(180deg,
			rgba(0, 45, 120, 0.35) 0%,
			rgba(0, 45, 120, 0.05) 35%,
			transparent 100%);
	z-index: 1;
}



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

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

.page-header-box ol {
	display: inline-flex;
	margin: 0;
}

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

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

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

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

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

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

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

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

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

.approach-accordion .accordion-item .accordion-button::after,
.approach-accordion .accordion-item .accordion-button.collapsed::after {
	content: '\2b';
	font-family: 'Font Awesome 7 Free';
	position: absolute;
	right: 0;
	top: 0;
	font-size: 22px;
	font-weight: 600;
	color: var(--accent-color);
	transition: all 0.4s ease-in-out;
}

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

.approach-accordion .accordion-item .accordion-body {
	padding: 30px 30px 0 0;
}

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

.our-approach-image-box {
	position: relative;
	height: 100%;
	margin-left: 15px;
}

.our-approach-image {
	height: 100%;
}

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

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

.our-approach-cta-box {
	max-width: 260px;
	position: absolute;
	bottom: 25px;
	left: 25px;
	background: var(--secondary-color);
	border-radius: 20px;
	padding: 25px;
	animation: experienceboxmove 3s infinite linear alternate;
	z-index: 1;
}

.our-approach-cta-box .satisfy-client-image figure img {
	max-width: 40px;
}

.our-approach-cta-footer {
	margin-top: 25px;
}

.our-approach-cta-footer-counter {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 10px;
}

.our-approach-cta-footer-counter h2 {
	font-size: 16px;
	font-weight: 400;
}

.our-approach-cta-footer-counter p {
	margin-bottom: 0;
}

.our-approach-cta-footer-counter p i {
	font-size: 16px;
	color: var(--accent-color);
}

.our-approach-cta-footer-content p {
	margin: 5px 0 0;
}

.key-fact {
	padding: 60px 0;
}

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

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

.skills-progress-bar .skillbar: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: 18px;
	font-weight: 400;
	line-height: normal;
	color: var(--primary-color);
}

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

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

.key-fact-btn {
	margin-top: 40px;
}

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

.key-fact-item {
	position: relative;
	width: calc(50% - 15px);
	min-height: 265px;
	background: var(--white-color);
	border-radius: 20px;
	padding: 30px;
	overflow: hidden;
}

.key-fact-item::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: var(--white-color);
	border-radius: 20px;
	width: 100%;
	height: 100%;
	transition: all 0.5s ease-in-out;
	z-index: 1;
}

.key-fact-item.active::before,
.key-fact-item:hover::before {
	transform: translate(100%, -100%);
}

.key-fact-item-image {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	opacity: 0;
	transition: all 0.4s ease-in-out;
}

.key-fact-item.active .key-fact-item-image,
.key-fact-item:hover .key-fact-item-image {
	opacity: 1;
}

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

.key-fact-item-image figure::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	background-color: var(--primary-color);
	opacity: 40%;
}

.key-fact-item-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.key-fact-item-body {
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	gap: 30px;
	height: 100%;
	z-index: 2;
}

.key-fact-item-header p {
	margin: 0 0 10px;
	transition: all 0.4s ease-in-out;
}

.key-fact-item.active .key-fact-item-header p,
.key-fact-item:hover .key-fact-item-header p {
	color: var(--white-color);
}

.key-fact-item-header h2 {
	font-size: 46px;
	font-weight: 400;
	line-height: 1em;
	transition: all 0.4s ease-in-out;
}

.key-fact-item.active .key-fact-item-header h2,
.key-fact-item:hover .key-fact-item-header h2 {
	color: var(--white-color);
}

.key-fact-item-footer {
	border-top: 1px solid var(--divider-color);
	padding-top: 25px;
	transition: all 0.4s ease-in-out;
}

.key-fact-item.active .key-fact-item-footer,
.key-fact-item:hover .key-fact-item-footer {
	border-color: var(--dark-divider-color);
}

.key-fact-item-footer p {
	margin-bottom: 0;
	transition: all 0.4s ease-in-out
}

.key-fact-item.active .key-fact-item-footer p,
.key-fact-item:hover .key-fact-item-footer p {
	color: var(--white-color);
}

.premium-quality {
	padding: 60px 0;
}

.premium-quality-item-list {
	display: flex;
	flex-wrap: wrap;
	gap: 30px 80px;
}

.premium-quality-item {
	position: relative;
	width: calc(33.33% - 53.33px);
	text-align: center;
}

.premium-quality-item::before {
	content: '';
	position: absolute;
	top: 0;
	right: -40px;
	bottom: 0;
	height: 100%;
	width: 1px;
	background: var(--dark-divider-color)
}


.premium-quality-item:nth-child(3n + 3):before,
.premium-quality-item:last-child:before {
	display: none;
}

.premium-quality-item-image figure {
	display: block;
	max-width: 200px;
	border-radius: 50%;
	margin: 0 auto;
}

.premium-quality-item-image img {
	width: 100%;
	aspect-ratio: 1 / 1;
	object-fit: cover;
	border-radius: 50%;
	transition: all 0.6s ease-in-out;
}

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

.premium-quality-item-content {
	margin: 40px auto 0;
	max-width: 334px;
}

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

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

.premium-quality .section-footer-text {
	margin-top: 60px;
}

.cta-box {
	position: relative;
	padding: 60px 0;
	overflow: hidden;
}

.cta-box::before {
	content: '';
	position: absolute;
	top: -85px;
	left: 5px;
	background: url(../images/cta-box-section-bg-img-1.png);
	background-repeat: no-repeat;
	background-size: cover;
	width: 375px;
	height: 275px;
	z-index: 1;
}

.cta-box::after {
	content: '';
	position: absolute;
	bottom: -85px;
	right: 5px;
	background: url(../images/cta-box-section-bg-img-2.png);
	background-repeat: no-repeat;
	background-size: cover;
	width: 440px;
	height: 360px;
	z-index: 1;
}

.cta-content {
	position: relative;
	max-width: 700px;
	margin: 0 auto;
	text-align: center;
	z-index: 2;
}

.cta-content .section-title p {
	max-width: 650px;
	margin-left: auto;
	margin-right: auto;
}

.cta-btn {
	position: relative;
	display: inline-block;
	margin-top: 50px;
}

.cta-btn::before {
	content: '';
	position: absolute;
	left: auto;
	bottom: 10px;
	right: -160px;
	background: url('../images/cta-box-arrow.svg');
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
	width: 84px;
	height: 50px;
	animation: arrowmove 3s infinite linear alternate;
}

@keyframes arrowmove {
	50% {
		transform: translateX(-20px);
	}
}

/************************************/
/*** 	18. Services Pgae css     ***/
/************************************/

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

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

.page-services .service-item:before {
	background: var(--secondary-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: 20px;
	margin-bottom: 60px;
	overflow: hidden;
}

.page-category-list .page-category-list-title {
	font-size: 20px;
	background: var(--accent-color);
	padding: 20px 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);
	margin-bottom: 20px;
	padding-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: 18px;
	height: 18px;
	transform: translateY(-50%);
	transition: all 0.4s ease-in-out;
}

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

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

.sidebar-cta-content-box {
	text-align: center;
	padding: 20px 20px 30px;
}

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

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

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

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

.sidebar-cta-contact-btn .btn-default {
	padding: 17px 24px 17px 54px;
}

.sidebar-cta-contact-btn .btn-default::before {
	content: '\f095';
	font-family: 'FontAwesome';
	left: 24px;
	top: 50%;
	right: auto;
	transform: translateY(-50%);
	font-size: 18px;
	color: var(--primary-color);
	background: transparent;
	width: auto;
	height: auto;
}

.sidebar-cta-contact-btn .btn-default:hover:before {
	transform: translateY(-50%);
	filter: none;
	color: var(--white-color);
}

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

.sidebar-cta-image-box figure img {
	width: 100%;
	aspect-ratio: 1 / 0.49;
	object-fit: cover;
	border-radius: 10px;
}

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

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

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

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

.service-entry h3 {
	font-size: 20px;
	line-height: 1.4em;
	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: 20px;
}

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

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

.service-entry .section-footer-text {
	margin-top: 40px;
}

.service-why-choose-box,
.service-features-box,
.service-window-box {
	margin-top: 60px;
}

.service-why-choose-body {
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
	margin-top: 40px;
}

.service-why-choose-item-list-box,
.service-why-choose-image-box {
	width: calc(50% - 15px);
}

.service-why-choose-item {
	background-color: var(--secondary-color);
	border-radius: 10px;
	margin-bottom: 30px;
	padding: 20px;
}

.service-why-choose-item:last-child {
	margin-bottom: 0;
}

.service-why-choose-item span {
	display: inline-block;
	font-size: 14px;
	font-weight: 400;
	line-height: normal;
	color: var(--primary-color);
	background: var(--bg-color);
	border-radius: 100px;
	padding: 6px 15px;
	margin-bottom: 30px;
}

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

.service-why-choose-image-box figure img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 20px;
	aspect-ratio: 1 / 1.025;
}

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

.service-feature-item {
	width: calc(50% - 15px);
	display: flex;
	flex-wrap: wrap;
	gap: 15px;
}

.service-feature-item .icon-box {
	position: relative;
	background: var(--accent-color);
	border-radius: 100px;
	width: 60px;
	height: 60px;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
}

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

.service-feature-item:hover .icon-box::before {
	transform: scale(1)
}

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

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

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

.service-feature-body {
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
	border-top: 1px solid var(--divider-color);
	padding-top: 40px;
	margin-top: 40px;
}

.service-feature-body-list,
.service-feature-body-image {
	width: calc(50% - 15px);
	align-content: center;
}

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

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

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

.service-window-item {
	width: calc(33.33% - 20px);
	background-color: var(--secondary-color);
	border-radius: 20px;
	text-align: center;
	padding: 40px 25px;
}

.service-window-item .icon-box {
	position: relative;
	background: var(--accent-color);
	border-radius: 100px;
	width: 50px;
	height: 50px;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	margin: 0 auto;
}

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

.service-window-item:hover .icon-box::before {
	transform: scale(1)
}

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

.service-window-item:hover .icon-box img {
	filter: brightness(0) invert(1)
}

.service-window-item-content {
	margin-top: 40px;
}

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


/************************************/
/*** 	22. Projects Page css     ***/
/************************************/

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

.page-projects .project-item-image figure,
.page-projects .project-item-image a,
.page-projects .project-item-image figure a::before,
.page-projects .project-item-image figure img {
	border-radius: 20px;
}

/************************************/
/*** 	23. Project Single css    ***/
/************************************/

.page-project-single {
	padding: 60px 0;
}

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

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

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

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

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

.project-category-item-content h3,
.project-category-social-links h3 {
	font-size: 16px;
	line-height: normal;
}

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

.project-category-social-links {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 15px;
	justify-content: space-between;
	width: 100%;
}

.page-category-list .project-category-social-links ul {
	display: flex;
	flex-wrap: wrap;
	gap: 15px;
	padding: 0;
}

.page-category-list .project-category-social-links ul li {
	margin: 0;
	padding: 0;
	border: none;
}

.page-category-list .project-category-social-links ul li a {
	width: 30px;
	height: 30px;
	color: var(--primary-color);
	border: 1px solid var(--divider-color);
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 0;
}

.page-category-list .project-category-social-links ul li a:hover {
	background: var(--accent-color);
	border-color: var(--accent-color);
}

.page-category-list .project-category-social-links ul li a::before {
	display: none;
}

.page-category-list .project-category-social-links ul li a i {
	font-size: 16px;
}

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

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

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

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

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

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

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

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

.project-client-requirement-box,
.project-solution-box,
.project-feedback-box {
	margin-top: 60px;
}

.project-client-requirement-list,
.project-solution-item-list-box {
	margin-top: 40px;
}

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

.project-solution-item-list:last-child {
	margin-bottom: 0;
	padding-bottom: 0;
	border-bottom: none;
}

.project-solution-item {
	width: calc(50% - 15px);
}

.project-feedback-body {
	border-left: 4px solid var(--accent-color);
	background-color: var(--secondary-color);
	border-radius: 20px;
	margin-top: 40px;
	padding: 30px;
}

.project-feedback-body-content {
	margin-bottom: 20px;
}

.project-feedback-body-content p {
	color: var(--primary-color);
}

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

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

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

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

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

.team-single-image {
	width: calc(48% - 5px);
}

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

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

.team-about-content {
	width: calc(52% - 5px);
	padding: 40px;
}

.team-contact-info-title {
	margin-bottom: 30px;
}

.team-contact-info-title h3 {
	font-size: 24px;
}

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

.team-contact-item {
	width: calc(50% - 15px);
	border: 1px solid var(--divider-color);
	border-radius: 20px;
	display: flex;
	flex-wrap: wrap;
	gap: 15px;
	padding: 20px;
}

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

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

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

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

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

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

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

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

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

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

.team-experience-info {
	margin-bottom: 80px;
}

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

.team-experience-item {
	width: calc(33.33% - 20px);
}

.team-experience-item h3 {
	position: relative;
	font-size: 20px;
	line-height: 1.4em;
	padding-left: 30px;
}

.team-experience-item h3::before {
	content: '\f058';
	position: absolute;
	font-family: 'Font Awesome 7 Free';
	font-size: 20px;
	font-weight: 900;
	color: var(--accent-color);
	top: 0;
	left: 0;
}

.team-experience-item p {
	margin: 20px 0 0;
}

.team-slills-form {
	display: flex;
	flex-wrap: wrap;
	gap: 30px 60px;
}

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

.team-skills-box {
	width: calc(50% - 30px);
	align-content: center;
}

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

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

.team-skills-image {
	margin-top: 40px;
}

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

.team-skills-image figure img {
	width: 100%;
	object-fit: cover;
	border-radius: 20px;
	aspect-ratio: 1 / 0.46;
}

/************************************/
/*** 	26. Pricing Page css      ***/
/************************************/

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

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

.pricing-item-header-box {
	position: relative;
	border-radius: 20px;
	overflow: hidden;
}


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

.pricing-item:hover .pricing-item-header-image figure img {
	transform: scale(1.04);
}

.pricing-item-content {
	position: relative;
	padding: 30px;
	z-index: 2;
}

.pricing-item-content span {
	font-size: 20px;
	font-weight: 400;
	line-height: 1.2em;
	color: var(--white-color);
}

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

.pricing-item-content h2 {
	font-size: 40px;
	color: var(--white-color);
	font-weight: 400;
	border-top: 1px solid var(--dark-divider-color);
	margin-top: 20px;
	padding-top: 20px;
}

.pricing-item-content h2 sub {
	bottom: 0;
	font-size: 16px;
	font-weight: 400;
}

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

.pricing-item-list h3 {
	font-size: 22px;
	font-weight: 500;
}

.pricing-item-list p {
	line-height: normal;
}

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

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

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

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

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

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

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

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

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

/************************************/
/***  27. Testimonials Page css   ***/
/************************************/

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

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

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

.page-testimonials .testimonial-item-author {
	background-color: var(--bg-color);
}

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

/************************************/
/*** 	28. Image Gallery css     ***/
/************************************/

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

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

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

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

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

/************************************/
/*** 	29.  Video Gallery css    ***/
/************************************/

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

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

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

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

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

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

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

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

/************************************/
/*** 	  30. 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;
}

/************************************/
/***   31. Contact Us Page css    ***/
/************************************/

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

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

.google-map-iframe {
	width: 100%;
	height: 600px;
	border-radius: 20px;
	overflow: hidden;
}

.google-map-iframe iframe {
	width: 100%;
	height: 100%;
}

/************************************/
/***   32. 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: 830px;
}

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

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

/************************************/
/***      33. Responsive css      ***/
/************************************/

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

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

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

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

	.section-row .section-sub-heading,
	.section-title .section-sub-title {
		margin-bottom: 10px;
	}

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

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

	.about-us-image-box,
	.about-us-image-box-1,
	.about-us-image,
	.about-us-image figure,
	.about-us-image img,
	.about-us-content {
		height: auto;
	}

	.about-us-image img {
		aspect-ratio: 1 / 1.2;
	}

	.our-work-content {
		margin-bottom: 30px;
	}

	.our-work-image {
		max-width: 600px;
		margin: 0 auto;
	}

	.project-item-image figure,
	.project-item-image figure a,
	.project-item-image figure a::before,
	.project-item-image figure img {
		border-radius: 20px;
	}

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

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

	.intro-video-title {
		margin-bottom: 30px;
	}

	.intro-video-title .intro-video-btn {
		margin-top: 20px;
	}

	.intro-video-counter-list {
		margin-top: 30px;
		padding-top: 30px;
	}

	.intro-video-content-box {
		padding: 30px;
	}

	.intro-video-item-list ul {
		gap: 10px 30px;
	}

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

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

	.how-it-work-image-box {
		max-width: 640px;
		margin: 0 auto;
	}

	.testimonial-slider .swiper-slide .testimonial-item {
		transform: scale(1);
	}

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

	.contact-us-content-box {
		min-height: initial;
		margin-bottom: 40px;
	}

	.contact-us-info-box {
		padding-top: 40px;
	}

	.contact-us-info-content {
		max-width: 100%;
	}

	.post-item {
		min-height: 380px;
	}

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

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

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

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

	.footer-cta-box {
		padding: 30px;
		margin-top: 30px;
	}

	.footer-cta-contact-item-content h3 {
		font-size: 18px;
	}

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

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

	.our-approach-image-box,
	.our-approach-image,
	.our-approach-image figure,
	.our-approach-image figure img {
		height: auto;
	}

	.our-approach-image-box {
		margin-left: 0;
	}

	.our-approach-image figure img {
		aspect-ratio: 1 / 0.7;
	}

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

	.premium-quality-item-list {
		gap: 30px;
	}

	.premium-quality-item {
		width: calc(33.33% - 20px);
	}

	.premium-quality-item::before {
		right: -15px;
	}

	.premium-quality-item-content {
		margin: 30px auto 0;
	}

	.cta-box::before {
		opacity: 30%;
		width: 275px;
		height: 200px;
	}

	.cta-box::after {
		opacity: 30%;
		width: 340px;
		height: 260px;
	}

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

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

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

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

	.sidebar-cta-content-box {
		padding: 10px 10px 20px;
	}

	.sidebar-cta-content,
	.sidebar-cta-contact-btn {
		margin-top: 20px;
	}

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

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

	.service-entry .section-footer-text {
		margin-top: 30px;
	}

	.service-why-choose-box,
	.service-features-box,
	.service-window-box {
		margin-top: 40px;
	}

	.service-why-choose-body,
	.service-feature-item-list {
		margin-top: 30px;
	}

	.service-why-choose-body {
		gap: 30px 20px;
	}

	.service-why-choose-item-list-box,
	.service-why-choose-image-box {
		width: calc(50% - 10px);
	}

	.service-why-choose-item {
		margin-bottom: 20px;
	}

	.service-feature-item .icon-box {
		height: 50px;
		width: 50px;
	}

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

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

	.service-feature-body {
		padding-top: 30px;
		margin-top: 30px;
		gap: 20px;
	}

	.service-feature-body-list,
	.service-feature-body-image {
		width: calc(50% - 10px);
	}

	.service-feature-body-image figure img {
		aspect-ratio: 1 / 0.5;
	}

	.service-window-item-list {
		margin: 30px 0;
	}

	.service-window-item {
		padding: 30px 25px;
	}

	.service-window-item-content {
		margin-top: 30px;
	}

	.project-category-item-list {
		padding: 20px;
	}

	.project-category-item {
		margin-bottom: 15px;
		padding-bottom: 15px;
	}

	.page-category-list .project-category-social-links ul {
		gap: 10px;
	}

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

	.project-client-requirement-box,
	.project-solution-box,
	.project-feedback-box {
		margin-top: 40px;
	}

	.project-client-requirement-list,
	.project-solution-item-list-box,
	.project-feedback-body {
		margin-top: 30px;
	}

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

	.team-single-image,
	.team-about-content {
		width: 100%;
	}

	.team-single-image figure {
		height: auto;
	}

	.team-single-image img {
		height: auto;
		aspect-ratio: 1 / 0.7;
		object-position: top center;
	}

	.team-about-content {
		padding: 0 20px 20px;
	}

	.team-experience-info {
		margin-bottom: 40px;
	}

	.team-experience-item {
		width: calc(50% - 15px);
	}

	.team-skills-box,
	.contact-box-form.team-contact-form {
		width: 100%;
	}

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

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

	.btn-default {
		padding: 15px 46px 15px 18px;
	}

	.btn-default::before {
		right: 18px;
	}

	header.main-header .header-sticky {
		width: 100%;
	}

	header.main-header .header-sticky.active {
		width: 100%;
	}

	.navbar {
		padding: 10px 0;
	}

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

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

	.header-btn {
		display: none;
	}

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

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

	.section-sub-heading .section-sub-title,
	.section-title .section-sub-title {
		padding: 6px 10px 6px 22px;
		font-size: 14px;
	}



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

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

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

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

	.hero {
		min-height: 800px;
		padding: 150px 0 60px;
	}

	.hero-content-list ul li::before {
		font-size: 16px;
	}

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

	.video-play-button a span {
		width: 46px;
		height: 46px;
	}

	.video-play-button a span i {
		font-size: 16px;
	}

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

	.about-us-counter-box {
		padding: 20px;
	}

	.about-us-counter-box .icon-box img {
		max-width: 40px;
	}

	.about-us-counter-content {
		width: calc(100% - 55px);
	}

	.about-us-counter-content h2 {
		font-size: 32px;
	}

	.about-us-body-list ul li {
		margin-bottom: 10px;
	}

	.about-us-body-list ul li::before {
		font-size: 16px;
	}

	.about-us-btn {
		padding-top: 0px;
		margin-top: 20px;
	}

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

	.about-us-counter-item h2 {
		font-size: 38px;
	}

	.our-services {
		background-size: 100% auto;
		padding: 40px 0;
	}

	.service-item {
		min-height: 380px;
		padding: 30px;
	}

	.service-item-body .icon-box {
		width: 50px;
		height: 50px;
	}

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

	.service-item-content {
		max-width: 100%;
	}

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

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

	.section-footer-text p span {
		padding: 3px 10px;
	}

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

	.section-footer-text ul li {
		margin-right: 5px;
	}

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

	.our-work-item-list {
		padding: 30px;
	}

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

	.work-content-footer .work-contact-box {
		gap: 10px;
	}

	.work-content-footer .work-contact-box .icon-box {
		width: 44px;
		height: 44px;
	}

	.work-content-footer .work-contact-box .icon-box i {
		font-size: 20px;
	}

	.work-content-footer .work-contact-box .icon-box img {
		font-size: 20px;
	}

	.work-content-footer .work-contact-box-content {
		width: calc(100% - 54px);
	}

	.work-content-footer .work-contact-box-content p {
		font-size: 14px;
	}

	.work-contact-box-content h3 {
		font-size: 18px;
	}

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

	.intro-video {
		padding: 60px 0;
	}

	.intro-video-counter-item h2 {
		font-size: 38px;
	}

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

	.intro-video-item-list ul li::before {
		font-size: 16px;
	}

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

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

	.team-item-content-box {
		padding: 30px;
	}

	.team-item-image figure {
		max-width: 165px;
	}

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

	.team-item-btn .readmore-btn {
		padding: 13px;
	}

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

	.testimonial-item {
		min-height: 380px;
	}

	.testimonial-item-header,
	.testimonial-item-author {
		padding: 20px;
	}

	.testimonial-item-rating i,
	.testimonial-item-content p {
		font-size: 18px;
	}

	.testimonial-author-image figure img {
		max-width: 50px;
	}

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

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

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

	.faq-cta-client-image img {
		max-width: 50px;
	}

	.faq-cta-client-content-box {
		width: calc(100% - 65px);
	}

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

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

	.faq-accordion .accordion-item .accordion-button::after,
	.faq-accordion .accordion-item .accordion-button.collapsed::after {
		right: 20px;
		font-size: 18px;
	}

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

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

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

	.contact-us-info-box {
		padding-top: 30px;
	}

	.contact-us-info-content {
		margin-top: 20px;
	}

	.contact-box-form {
		padding: 30px;
	}

	.contact-form .form-control {
		padding: 13px 15px;
	}

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

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

	.footer-links::before {
		display: none;
	}

	.footer-newsletter-form .form-group .form-control {
		padding: 13px 20px;
	}

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

	.footer-cta-content {
		width: 100%;
	}

	.footer-cta-content h2 {
		font-size: 24px;
	}

	.footer-cta-contact-list {
		max-width: 100%;
		gap: 30px 40px;
	}

	.footer-cta-contact-item::before {
		right: -20px;
	}

	.page-header {
		padding: 30px 0 22px;
	}

	.page-header-box h1 {
		font-size: 18px;
		margin-bottom: 10px;
	}

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

	.approach-accordion .accordion-item {
		margin-bottom: 20px;
	}

	.approach-accordion .accordion-header .accordion-button {
		font-size: 18px;
		padding: 0 30px 20px 0;
	}

	.approach-accordion .accordion-item .accordion-body {
		padding: 20px 30px 0 0;
	}

	.key-fact {
		padding: 60px 0;
	}

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

	.skills-progress-bar .skillbar .skill-progress {
		height: 10px;
	}

	.key-fact-btn {
		margin-top: 30px;
	}

	.key-fact-item-header h2 {
		font-size: 38px;
	}

	.key-fact-item-footer {
		padding-top: 20px;
	}

	.premium-quality {
		padding: 60px 0;
	}

	.premium-quality-item {
		width: calc(50% - 15px);
	}

	.premium-quality-item::before {
		right: -15px;
	}

	.premium-quality-item:nth-child(3n + 3)::before {
		display: block;
	}

	.premium-quality-item:last-child:before,
	.premium-quality-item:nth-child(2n + 2)::before {
		display: none;
	}

	.premium-quality-item-image figure {
		max-width: 160px;
	}

	.premium-quality .section-footer-text {
		margin-top: 40px;
	}

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

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

	.page-services {
		padding: 60px 0 30px;
	}

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

	.page-single-sidebar,
	.page-category-list {
		margin-bottom: 30px;
	}

	.sidebar-cta-contact-btn .btn-default {
		padding: 15px 18px 15px 45px;
	}

	.sidebar-cta-contact-btn .btn-default::before {
		left: 18px;
	}

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

	.service-entry h2 {
		font-size: 38px;
		margin-bottom: 15px;
	}

	.service-entry ul li {
		margin-bottom: 15px;
	}

	.service-entry ul li::before {
		font-size: 16px;
	}

	.service-why-choose-item span {
		margin-bottom: 20px;
	}

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

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

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

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

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

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

	.post-entry ol li,
	.post-entry ul li {
		font-size: 16px;
		margin-bottom: 10px;
	}

	.post-entry blockquote {
		background-position: 20px 20px;
		background-size: 40px;
		padding: 20px 20px 20px 70px;
		margin-bottom: 20px;
	}

	.post-entry blockquote p {
		font-size: 18px;
	}

	.post-tags {
		margin-bottom: 20px;
	}

	.post-tags .tag-links a {
		padding: 12px 15px;
	}

	.post-social-sharing ul {
		text-align: left;
	}

	.page-projects {
		padding: 60px 0 30px;
	}

	.page-project-single {
		padding: 60px 0;
	}

	.project-entry p {
		margin-bottom: 15px;
	}

	.project-entry h2 {
		font-size: 38px;
		margin-bottom: 15px;
	}

	.project-entry ul li::before {
		font-size: 16px;
	}

	.project-solution-item-list {
		margin-bottom: 20px;
		padding-bottom: 20px;
	}

	.project-feedback-body {
		padding: 20px;
	}

	.project-feedback-body-content {
		margin-bottom: 10px;
	}

	.page-team {
		padding: 60px 0 30px;
	}

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

	.team-contact-info-title {
		margin-bottom: 20px;
	}

	.team-contact-info-title h3 {
		font-size: 20px;
	}

	.team-member-social-list {
		margin-top: 30px;
		padding-top: 30px;
	}

	.team-experience-item h3 {
		font-size: 18px;
		padding-left: 25px;
	}

	.team-experience-item h3::before {
		font-size: 18px;
	}

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

	.team-skills-image {
		margin-top: 30px;
	}

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

	.pricing-item-content {
		padding: 20px;
	}

	.pricing-item-content h2 {
		font-size: 34px;
	}

	.pricing-item-body {
		padding: 20px 10px 10px;
	}

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

	.pricing-item-list ul li {
		margin-bottom: 10px;
	}

	.pricing-item-list ul li::before {
		font-size: 16px;
	}

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

	.pricing-benefit-list ul {
		gap: 20px 30px;
	}

	.pricing-benefit-list ul li img {
		max-width: 18px;
	}

	.page-testimonials {
		padding: 60px 0 30px;
	}

	.page-gallery {
		padding: 60px 0 30px;
	}

	.page-video-gallery {
		padding: 60px 0 30px;
	}

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

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

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

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

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

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

	.error-page-image {
		margin-bottom: 20px;
	}
}

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

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

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

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

	.hero-content-list ul {
		gap: 10px;
	}

	.hero-content-list ul li {
		width: 100%;
	}

	.hero-content-body {
		gap: 20px;
	}

	.video-play-button p {
		font-size: 14px;
	}

	.about-us-image img {
		aspect-ratio: 1 / 1.36;
	}

	.about-us-counter-box {
		padding: 12px;
		bottom: 35px;
		right: -50px;
		gap: 10px;
		border-radius: 14px;
	}

	.about-us-counter-box .icon-box img {
		max-width: 30px;
	}

	.about-us-counter-content {
		width: calc(100% - 40px);
	}

	.about-us-counter-content h2 {
		font-size: 24px;
	}

	.about-us-counter-content p {
		font-size: 14px;
	}

	.about-us-image-box-2 {
		margin-bottom: 30px;
	}

	.about-us-image-box-2 .about-us-image figure {
		border-width: 5px;
		border-radius: 24px 20px 20px 24px;
		margin-left: -80px;
	}

	.about-us-body-content,
	.about-us-counter-list {
		width: 100%;
	}

	.about-us-counter-item {
		text-align: left;
		margin-bottom: 20px;
		padding-bottom: 20px;
	}

	.about-us-counter-item h2 {
		font-size: 26px;
	}

	.service-item {
		padding: 20px;
		min-height: 300px;
	}

	.service-item-content h2 {
		font-size: 18px;
	}

	.our-work-item-list {
		gap: 20px;
		padding: 20px;
	}

	.our-work-item {
		width: 100%;
	}

	.our-work-item-content h3 {
		font-size: 18px
	}

	.work-content-footer {
		gap: 20px;
	}

	.project-item-body {
		bottom: 20px;
		left: 20px;
		right: 20px;
	}

	.project-item-content h2 {
		font-size: 18px;
	}

	.project-item-btn {
		padding-top: 15px;
		margin-top: 15px;
	}

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

	.intro-video-counter-item {
		width: calc(33.33% - 13.33px);
	}

	.intro-video-counter-item h2 {
		font-size: 26px;
	}

	.intro-video-counter-item p {
		font-size: 14px;
	}

	.intro-video-content-box {
		min-height: 380px;
		padding: 20px;
	}

	.intro-video-item-list ul {
		justify-content: start;
	}

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

	.how-it-work-item-no {
		width: 42px;
		height: 42px;
	}

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

	.how-it-work-item-no h3 {
		font-size: 20px;
	}

	.how-it-work-item-content h3 {
		font-size: 18px;
	}

	.team-item-content-box {
		padding: 20px;
	}

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

	.testimonial-item {
		min-height: 300px;
	}

	.testimonial-item-header {
		padding: 10px;
		margin-bottom: 10px;
	}

	.testimonial-item-rating i,
	.testimonial-item-content p {
		font-size: 16px;
	}

	.testimonial-item-author {
		padding: 15px;
	}

	.testimonial-author-content h2 {
		font-size: 18px;
	}

	.faq-cta-client-box {
		max-width: 100%;
	}

	.faq-accordion .accordion-header .accordion-button {
		font-size: 16px;
		padding: 12px 40px 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;
	}

	.contact-box-form {
		padding: 20px;
	}

	.post-item {
		padding: 20px;
		min-height: 320px;
	}

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

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

	.footer-links-box {
		justify-content: space-between;
	}

	.footer-quick-links,
	.footer-service-links,
	.footer-newsletter-box {
		width: auto;
	}

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

	.footer-links h2 {
		font-size: 18px;
		margin-bottom: 15px;
	}

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

	.footer-cta-box {
		padding: 20px;
	}

	.footer-cta-content h2 {
		font-size: 22px;
	}

	.footer-cta-contact-list {
		gap: 20px;
	}

	.footer-cta-contact-item::before {
		display: none;
	}

	.footer-cta-contact-item-content h3 {
		font-size: 18px;
	}

	.footer-copyright-text {
		padding: 15px 0;
	}

	.page-header-box h1 {
		font-size: 17px;
	}

	.approach-accordion .accordion-header .accordion-button {
		font-size: 16px;
		padding: 0 25px 15px 0;
	}

	.approach-accordion .accordion-item .accordion-button::after,
	.approach-accordion .accordion-item .accordion-button.collapsed::after {
		font-size: 18px;
	}

	.approach-accordion .accordion-item .accordion-body {
		padding: 15px 0 0 0;
	}

	.approach-accordion .accordion-item .accordion-body p {
		font-size: 14px;
	}

	.our-approach-image figure img {
		aspect-ratio: 1 / 0.99;
	}

	.our-approach-cta-box {
		bottom: 15px;
		left: 15px;
		padding: 15px;
	}

	.our-approach-cta-footer {
		margin-top: 15px;
	}

	.skills-progress-bar .skill-data {
		margin-bottom: 10px;
	}

	.skills-progress-bar .skill-data .skill-title,
	.skills-progress-bar .skill-data .skill-no {
		font-size: 16px;
	}

	.key-fact-item {
		width: 100%;
		padding: 20px;
		min-height: auto;
	}

	.key-fact-item-body {
		gap: 20px;
	}

	.key-fact-item-header p {
		margin: 0 0 5px;
	}

	.key-fact-item-header h2 {
		font-size: 26px;
	}

	.premium-quality-item {
		width: 100%;
	}

	.premium-quality-item::before {
		display: none;
	}

	.premium-quality-item-content {
		margin: 20px 0 0;
	}

	.premium-quality-item-content h3 {
		font-size: 18px;
	}

	.cta-btn::before {
		display: none;
	}

	.cta-box::before {
		left: -30px;
		width: 205px;
		height: 150px;
	}

	.cta-box::after {
		right: -30px;
		width: 280px;
		height: 200px;
	}

	.page-category-list .page-category-list-title,
	.sidebar-cta-content h2 {
		font-size: 18px;
	}

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

	.page-single-image img {
		aspect-ratio: 1 / 0.65;
	}

	.service-entry h2 {
		font-size: 26px;
	}

	.service-entry h3 {
		font-size: 18px;
	}

	.service-entry ul li {
		margin-bottom: 10px;
	}

	.service-why-choose-item-list-box,
	.service-why-choose-image-box {
		width: 100%;
	}

	.service-why-choose-image-box figure,
	.service-why-choose-image-box figure img {
		height: auto;
	}

	.service-why-choose-image-box figure img {
		aspect-ratio: 1 / 0.9;
	}

	.service-feature-item {
		width: 100%;
	}

	.service-feature-body-list,
	.service-feature-body-image {
		width: 100%;
	}

	.service-feature-body-image figure,
	.service-feature-body-image figure img {
		height: auto;
	}

	.service-window-item {
		width: 100%;
	}

	.service-window-item-list {
		gap: 20px;
	}

	.service-window-item {
		width: calc(50% - 10px);
		padding: 15px;
	}

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

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

	.post-entry blockquote p {
		font-size: 16px;
	}

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

	.tag-links {
		font-size: 18px;
	}

	.project-entry h2 {
		font-size: 26px;
	}

	.project-entry h3 {
		font-size: 18px;
	}

	.project-entry ul {
		gap: 10px;
	}

	.project-entry ul li {
		width: 100%;
	}

	.project-solution-item-list {
		border-bottom: none;
		padding-bottom: 0;
		gap: 20px;
	}

	.project-solution-item {
		width: 100%;
	}

	.page-team {
		padding: 60px 0 30px;
	}

	.team-single-image img {
		aspect-ratio: 1 / 1;
		object-position: center center;
	}

	.team-about-content {
		padding: 0 10px 10px;
	}

	.team-contact-info-title h3 {
		font-size: 20px;
	}

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

	.team-contact-item {
		width: 100%;
		padding: 15px;
	}

	.team-contact-content h3,
	.team-member-social-list h3 {
		font-size: 18px;
	}

	.team-member-social-list {
		gap: 20px;
	}

	.team-experience-item {
		width: 100%;
	}

	.team-experience-item h3 {
		font-size: 18px;
	}

	.team-skills-list .skills-progress-bar {
		margin-bottom: 20px;
	}

	.skills-progress-bar .skill-data {
		margin-bottom: 10px;
	}

	.pricing-item-content span,
	.pricing-item-list h3 {
		font-size: 18px;
	}

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

	.pricing-item-content h2 {
		font-size: 28px;
		margin-top: 15px;
		padding-top: 15px;
	}

	.pricing-item-content h2 sub {
		font-size: 14px;
	}

	.pricing-item-list ul {
		padding: 15px 0 0;
		margin: 15px 0 0;
	}

	.pricing-benefit-list ul {
		gap: 10px 20px;
	}

	.pricing-benefit-list ul li {
		font-size: 14px;
	}

	.pricing-benefit-list ul li img {
		max-width: 16px;
		margin-right: 5px;
	}

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

/************************************/
/***  34. Home - Version 2 css    ***/
/************************************/

.topbar-metal {
	background: var(--accent-color);
	padding: 15px 0;
}

.topbar-contact-info-metal p {
	line-height: 1.25em;
	color: var(--primary-color);
	margin-bottom: 0;
}

.topbar-contact-info-metal p a {
	color: inherit;
	text-decoration: underline;
	transition: all 0.4s ease-in-out;
}

.topbar-contact-info-metal p a:hover {
	color: var(--white-color);
}

.topbar-link-box-metal {
	display: flex;
	flex-wrap: wrap;
	justify-content: right;
	align-items: center;
}

.topbar-contact-info-list-metal {
	border-right: 1px solid var(--divider-color);
	margin-right: 20px;
	padding-right: 20px;
}

.topbar-contact-info-list-metal ul {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 10px 20px;
	list-style: none;
	padding: 0;
	margin: 0;
}

.topbar-contact-info-list-metal ul li {
	position: relative;
	color: var(--white-color);
	/* text-transform: capitalize; */
}

.topbar-contact-info-list-metal ul li::before {
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	right: -10px;
	background: var(--white-color);
	width: 2px;
	height: 100%;
	transform: rotate(8deg);
}

.topbar-contact-info-list-metal ul li:last-child:before {
	display: none;
}

.topbar-contact-info-list-metal ul li a {
	color: inherit;
	transition: all 0.3s ease-in-out;
}

.topbar-contact-info-list-metal ul li a:hover {
	color: var(--white-color);
}

.topbar-social-links-metal ul {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 10px;
	list-style: none;
	padding: 0;
	margin: 0;
}

.topbar-social-links-metal ul li a {
	font-size: 18px;
	color: var(--white-color);

	transition: all 0.3s ease-in-out;
}

.topbar-social-links-metal ul li a:hover {
	color: var(--hover-color);
}

.topbar-social-links-metal ul li a i {
	color: inherit;
}

header.main-header-metal {
	position: initial;
}

header.main-header-metal .header-sticky {
	background: var(--secondary-color);
	border: none;
}

header.main-header-metal .main-menu ul li a {
	color: var(--primary-color);
}


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

header.main-header-metal .main-menu ul ul li a {
	color: var(--white-color);
}

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

header.main-header-metal .header-sticky.active {
	background: var(--white-color);
	border-color: var(--divider-color);
}

.hero-metal {
	position: relative;
	min-height: 90vh;
	padding: 80px 0 70px;
	align-content: center;

}

.hero-content-metal {
	position: relative;
	margin-right: 20px;
	z-index: 2;
}

.hero-content-metal .section-title h2 {
	font-size: 20px;
	font-weight: 400;
	line-height: normal;
}

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

.google-review-box-metal {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	border-right: 1px solid var(--dark-divider-color);
	gap: 15px;
	padding-right: 30px;
}

.google-review-box-metal .icon-box img {
	width: 100%;
	max-width: 50px;
}

.google-review-box-content-metal {
	width: calc(100% - 65px);
}

.google-rating-star-metal i {
	font-size: 14px;
	color: var(--white-color);
}

.google-review-box-content-metal p {
	font-size: 20px;
	font-weight: 500;
	line-height: normal;
	color: var(--white-color);
	margin: 8px 0 0;
}

.hero-footer-content-metal {
	max-width: 55%;
}

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

/*.hero-image-slider-metal {*/
/*	height: 100%;*/
/*	align-content: center;*/
/*}*/

.hero-image-slider-metal .swiper-slide {
	cursor: none;
}

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

.hero-img-slider-metal:before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(90deg, rgba(24, 24, 24, 0.80) 16.17%, transparent 100%);
	width: 100%;
	height: 100%;
	z-index: 2;
}

.hero-img-slider-metal .swiper {
	height: 100%;
}

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

.hero-img-slider-metal .slide-image figure {
	display: block;
	height: 100%;
}

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

.hero-img-item-metal {
	text-align: right;
	width: 270px;
	margin: 0 0 0 auto;
}

.hero-img-item-metal .swiper-slide {
	border: 2px solid var(--dark-divider-color);
	border-radius: 10px;
	transition: all 0.4s ease-in-out;
}

.hero-img-item-metal .swiper-slide.swiper-slide-thumb-active {
	border-color: var(--white-color);
}

.hero-img-item-metal figure {
	display: block;
}

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

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

.about-us-metal .section-title h2 img {
	width: 100%;
	max-width: 120px;
	height: 40px;
	border-radius: 100px;
}

.about-us-item-metal {
	background-color: var(--secondary-color);
	border-radius: 20px;
	min-height: 425px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	gap: 40px;
	padding: 40px;
	height: calc(100% - 30px);
	margin-bottom: 30px;
}

.about-us-item-header-metal .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;
	margin-bottom: 30px;
}

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

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

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

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

.about-us-item-header-content-metal h3 {
	font-size: 20px;
}

.about-us-item-header-content-metal p,
.about-us-item-counter-metal p {
	margin: 10px 0 0;
}

.about-us-item-counter-metal {
	border-top: 1px solid var(--divider-color);
	padding-top: 40px;
}

.about-us-item-counter-metal h2 {
	font-size: 40px;
}

.about-us-image-metal {
	height: calc(100% - 30px);
	margin-bottom: 30px;
}

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

.about-us-image-metal img {
	width: 100%;
	height: 100%;
	aspect-ratio: 1 / 1.054;
	object-fit: cover;
	border-radius: 20px;
}

.about-us-item-image-metal figure {
	display: block;
	background-image: url('../images/about-us-item-image-shape-metal.svg');
	mask-image: url('../images/about-us-item-image-shape-metal.svg');
	mask-repeat: no-repeat;
	mask-position: center center;
	mask-size: cover;
	width: 200px;
	height: 100px;
	overflow: hidden;
}

.about-us-item-image-metal img {
	width: 100%;
	object-fit: cover;
}

.about-us-item-Content-metal h3 {
	font-size: 20px;
	border-bottom: 1px solid var(--divider-color);
	padding-bottom: 20px;
}

.about-us-item-Content-metal p {
	margin: 20px 0 0;
}

.company-supports-slider-box-metal {
	margin-top: 30px;
}

.company-supports-content-metal {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 30px;
	margin-bottom: 40px;
}

.company-supports-content-metal hr {
	height: 1px;
	flex-grow: 1;
	color: var(--divider-color);
	opacity: 1;
	margin: 0;
}

.company-supports-content-metal p {
	color: var(--primary-color);
	margin-bottom: 0;
}

.company-supports-slider-metal {
	margin: 0 3.125vw;
	text-align: center;
}

.company-supports-logo-metal img {
	width: 100%;
	max-width: 165px;
	height: 40px;
}

.our-services-metal {
	background-image: url('../images/service-bg-image-metal.png');
	background-position: bottom -60px center;
	background-repeat: no-repeat;
	background-size: auto;
	padding: 60px 0;
}

.service-item-metal {
	background-color: var(--bg-color);
	border-radius: 20px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	gap: 30px;
	min-height: 400px;
	height: calc(100% - 30px);
	margin-bottom: 30px;
	padding: 40px;
}

.service-item-metal .icon-box {
	position: relative;
	height: 50px;
	width: 50px;
	background-color: var(--accent-color);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.4s ease-in-out;
	overflow: hidden;
}

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

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

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

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

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

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

.service-item-contant-metal p {
	margin: 15px 0 0;
}

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

.service-cta-box-metal {
	position: relative;
	border-radius: 20px;
	min-height: 400px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	gap: 20px;
	height: calc(100% - 30px);
	margin-bottom: 30px;
	padding: 40px;
	overflow: hidden;
}

.service-cta-box-metal .service-cta-image-metal {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.service-cta-box-metal .service-cta-image-metal figure {
	position: relative;
	display: block;
	width: 100%;
	height: 100%;
	border-radius: 20px;
}

.service-cta-box-metal .service-cta-image-metal figure::before {
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	height: 100%;
	width: 100%;
	background: var(--primary-color);
	opacity: 60%;
	z-index: 1;
}

.service-cta-box-metal .service-cta-image-metal figure img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 20px;
	transition: all 0.6s ease-in-out;
}

.service-cta-box-content-metal {
	position: relative;
	z-index: 2;
}

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

.service-cta-box-content-metal p {
	color: var(--white-color);
	border-top: 1px solid var(--dark-divider-color);
	margin: 20px 0 0;
	padding: 20px 0 0;
}

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

.why-choose-body-metal {
	background-color: var(--secondary-color);
	border-radius: 20px;
	padding: 40px;
}

.why-choose-item-metal {
	display: flex;
	flex-wrap: wrap;
	gap: 15px;
	border-bottom: 1px solid var(--divider-color);
	margin-bottom: 30px;
	padding-bottom: 30px;
}

.why-choose-item-metal .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;
}

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

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

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

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

.why-choose-item-Content-metal {
	width: calc(100% - 65px);
}

.why-choose-item-Content-metal h3 {
	font-size: 20px;
}

.why-choose-item-Content-metal p {
	margin: 10px 0 0;
}

.why-choose-image-list-metal {
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
}

.why-choose-body-image-metal {
	max-width: 200px;
}

.why-choose-body-image-metal figure {
	display: block;
	height: 100%;
	border-radius: 20px;
}

.why-choose-body-image-metal img {
	height: 100%;
	width: 100%;
	aspect-ratio: 1 / 0.86;
	object-fit: cover;
	border-radius: 20px;
}

.why-choose-body-list-metal {
	width: calc(100% - 230px);
	align-content: center;
}

.why-choose-body-list-metal ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

.why-choose-body-list-metal ul li {
	position: relative;
	line-height: 1.5em;
	padding-left: 25px;
	margin-bottom: 20px;
}

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

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

.why-choose-image-box-metal {
	display: flex;
	flex-wrap: wrap;
	align-items: end;
	margin-left: 15px;
	padding-right: 15px;
}

.why-choose-image-1-metal {
	width: 67%;
	padding-bottom: 190px;
}

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

.why-choose-image-box-metal figure img {
	width: 100%;
	object-fit: cover;
	border-radius: 20px;
}

.why-choose-image-1-metal figure img {
	aspect-ratio: 1 / 1.265;
}

.why-choose-image-2-metal {
	position: relative;
	width: 33%;
	z-index: 1;
	transform: rotate(6deg);
}

.why-choose-image-2-metal figure {
	border: 6px solid var(--bg-color);
	margin-left: -189px;
	border-radius: 26px;
}

.why-choose-image-2-metal figure img {
	aspect-ratio: 1 / 1.0977;
}

.our-feature-metal {
	padding: 60px 0;
}

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

.feature-item-metal:hover {
	transform: translateY(-5px);
}

.feature-item-body-metal .icon-box {
	position: relative;
	height: 50px;
	width: 50px;
	background-color: var(--accent-color);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 20px;
	overflow: hidden;
}

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

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

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

.feature-item-content-metal {
	text-align: center;
}

.feature-item-content-metal h3 {
	font-size: 20px;
	font-weight: 400;
	color: var(--white-color);
	border-bottom: 1px solid var(--dark-divider-color);
	padding-bottom: 15px;
	margin-bottom: 15px;
}

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

.feature-item-image-metal {
	margin: 0 auto -35px;
}

.feature-item-image-metal figure {
	display: block;
	max-width: 280px;
	border-radius: 20px;
}

.feature-item-image-metal img {
	width: 100%;
	aspect-ratio: 1 / 0.9;
	object-fit: cover;
	border-radius: 20px;
}

.feature-item-metal.box-2 {
	background-color: var(--accent-color);
	backdrop-filter: none;
}

.feature-item-metal.box-2 .feature-item-content-metal {
	text-align: start;
}

.feature-item-metal.box-2 .feature-item-content-metal h3 {
	color: var(--primary-color);
	border-bottom: 1px solid var(--divider-color);
}

.feature-item-metal.box-2 .feature-item-content-metal p {
	color: var(--primary-color);
}

.feature-item-image-box-metal {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 20px;
	align-items: end;
}

.feature-item-image-1-metal {
	width: calc(50% - 10px);
}

.feature-item-image-1-metal figure {
	display: block;
	border-radius: 20px 20px 0 0;
	margin-left: -30px;
}

.feature-item-image-1-metal figure img {
	width: 100%;
	max-width: 170px;
	border-radius: 20px 20px 0 0;
}

.feature-item-image-2-metal {
	width: calc(50% - 10px);
	text-align: right;
}

.feature-item-image-2-metal figure {
	display: block;
	border-radius: 20px 20px 0 0;
	margin: 0 -50px -20px 0;
}

.feature-item-image-2-metal figure img {
	width: 100%;
	max-width: 210px;
	border-radius: 20px 20px 0 0;
}

.our-feature-metal .satisfy-client-image {
	border-color: var(--primary-color);
}

.our-commitments-metal {
	padding: 60px 0;
}

.our-commitments-image-box-metal {
	position: relative;
	margin-right: 15px;
}

.our-commitments-image-metal figure {
	position: relative;
	display: block;
	border-radius: 20px;
}

.our-commitments-image-metal figure::before {
	content: '';
	position: absolute;
	top: auto;
	right: 0;
	bottom: 0;
	left: 0;
	background: linear-gradient(180deg, transparent 0%, var(--bg-color) 88.75%);
	height: 130px;
	width: 100%;
	z-index: 1;
}

.our-commitments-image-metal img {
	width: 100%;
	aspect-ratio: 1 / 1.172;
	object-fit: cover;
	border-radius: 20px;
}

.commiments-review-box-metal {
	position: absolute;
	bottom: 95px;
	left: 0;
	max-width: 230px;
	background-color: var(--secondary-color);
	border-radius: 14px;
	padding: 30px;
	animation: heroboxmove1 3s infinite linear alternate;
	z-index: 2;
}

@keyframes heroboxmove1 {
	50% {
		transform: translateX(20px);
	}
}

.commiments-review-box-metal h2 {
	font-size: 24px;
	font-weight: 500;
	border-bottom: 1px solid var(--divider-color);
	padding-bottom: 20px;
	margin-bottom: 20px;
}

.commiments-review-box-metal h2 sub {
	font-size: 16px;
	bottom: 0;
}

.commiments-review-box-metal h2 i {
	font-size: 20px;
	color: var(--accent-color);
	margin-left: 5px;
}

.commiments-review-box-metal h3 {
	font-size: 20px;
	line-height: 1.4em;
}

.commitments-counter-items-list-metal {
	display: flex;
	flex-wrap: wrap;
	gap: 30px 5.208vw;
}

.commitments-counter-item-metal {
	position: relative;
	width: calc(50% - 2.604vw);
}

.commitments-counter-item-metal::before {
	content: '';
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	right: -2.604vw;
	width: 1px;
	height: 80%;
	background: var(--divider-color);
}

.commitments-counter-item-metal:last-child:before,
.commitments-counter-item-metal:nth-child(2n + 2):before {
	display: none;
}

.commitments-counter-item-metal h2 {
	font-size: 46px;
}

.commitments-counter-item-metal p {
	margin: 10px 0 0;
}

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

.commitments-item-metal {
	width: calc(50% - 15px);
	background-color: var(--secondary-color);
	border-radius: 20px;
	min-height: 300px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	gap: 30px;
	padding: 30px;
}

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

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

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

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

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

.commitments-item-metal h3 {
	font-size: 20px;
}

.commitments-item-metal p {
	margin: 10px 0 0;
}

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

.intro-video-box-metal {
	position: relative;
}

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

.intro-video-image-metal {
	position: relative;
	overflow: hidden;
}

.intro-video-image-metal figure {
	display: block;
}

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

.intro-video-image-metal img {
	width: 100%;
	aspect-ratio: 1 / 0.42;
	object-fit: cover;
	transition: all 1s ease-in-out;
}

.intro-video-metal:hover .intro-video-image-metal img {
	transform: scale(1.03);
}

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

.intro-video-metal .video-play-button-metal a {
	display: inline-block;
	border: 1px solid var(--dark-divider-color);
	padding: 10px;
	border-radius: 50%;
}

.video-play-button-metal a span {
	position: relative;
	width: 100px;
	height: 100px;
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 20px;
	font-weight: 400;
	color: var(--white-color);
	background-color: var(--divider-color);
	backdrop-filter: blur(5px);
	-webkit-backdrop-filter: blur(5px);
	border-radius: 50%;
	cursor: none;
	transition: all 0.4s ease-in-out;
}

.intro-video-metal .video-play-button-metal a:hover span {
	color: var(--primary-color);
	background-color: var(--accent-color);
}

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

.cta-box-metal {
	position: relative;
	background-image: url('../images/cta.webp');
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
	padding: 100px 0;
}

.cta-box-metal::before {
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	height: 100%;
	width: 100%;
	background: linear-gradient(90deg, rgba(24, 24, 24, 0.90) 30.93%, transparent 75.22%);
	z-index: 1;
}

.cta-box-metal .container {
	position: relative;
	z-index: 2;
}

.our-faqs-metal {
	padding: 60px 0;
}

.our-faq-content-metal {
	position: sticky;
	top: 120px;
	margin-right: 15px;
}

.faq-accordion-metal .accordion-item {
	background: var(--white-color);
	border-radius: 10px;
	margin-bottom: 25px;
	transition: all 0.3s ease-in-out;
	overflow: hidden;
}

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

.faq-accordion-metal .accordion-header .accordion-button {
	font-size: 17px;
	font-weight: 500;
	line-height: 1.333em;
	color: var(--primary-color);
	background: var(--white-color);
	padding: 17px 60px 17px 17px;
	transition: all 0.3s ease-in-out;
}

.faq-accordion-metal .accordion-item .accordion-button:not(.collapsed) {
	background: transparent;
}

.faq-accordion-metal .accordion-item .accordion-button::after,
.faq-accordion-metal .accordion-item .accordion-button.collapsed::after {
	content: '\f106';
	font-family: 'FontAwesome';
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	right: 10px;
	height: 37px;
	width: 37px;
	background-color: var(--white-color);
	border-radius: 5px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--primary-color);
	font-size: 19px;
	transition: all 0.3s ease-in-out;
}

.faq-accordion-metal .accordion-button:not(.collapsed)::after {
	content: '\f107';
	background-color: var(--white-color);
}

.faq-accordion-metal .accordion-item .accordion-body {
	background: var(--white-color);
	border-top: 1px solid var(--divider-color);
	padding: 15px 17px;
}

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

.our-testimonial-metal {
	background-image: url('../images/testimonial-bg-image-metal.png');
	background-position: center center;
	background-repeat: no-repeat;
	background-size: 100% auto;
	padding: 60px 0;
}

.testimonial-content-btn-metal {
	display: flex;
	flex-wrap: wrap;
	gap: 20px 30px;
	align-items: center;
	margin-top: 30px;
}

.our-testimonial-metal .section-content-btn .section-btn {
	margin-top: 0;
}

.testimonial-client-box-metal {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 15px;
	max-width: 62%;
}

.testimonial-client-box-metal .satisfy-client-image {
	border: 1px solid var(--white-color);
}

.satisfy-client-content-metal {
	width: calc(100% - 151px);
}

.satisfy-client-content-metal p {
	margin-bottom: 0;
}

.testimonial-slider-metal,
.testimonial-slider-metal .swiper {
	height: 100%;
}

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

.testimonial-item-metal {
	min-height: 510px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	gap: 40px;
	background-color: var(--bg-color);
	border-radius: 20px;
	padding: 40px;
	height: 100%;
	transition: all 0.4s ease-in-out;
}

.testimonial-slider-metal .swiper-slide .testimonial-item-metal {
	transform: scale(0.95);
}

.testimonial-slider-metal .swiper-slide.swiper-slide-next .testimonial-item-metal {
	transform: scale(1);
}

.testimonial-item-logo-metal img {
	width: 100%;
	max-width: 150px;
}

.testimonial-item-content-metal p {
	color: var(--primary-color);
	font-size: 20px;
	margin-bottom: 0;
}

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

.testimonial-author-content-metal h2 {
	font-size: 20px;
}

.testimonial-author-content-metal p {
	margin: 5px 0 0;
}

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

.main-footer-metal {
	padding: 50px 0 0;
}

.footer-header-metal {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 20px 30px;
	align-items: center;
	border-bottom: 1px solid var(--dark-divider-color);
	padding-bottom: 60px;
	margin-bottom: 60px;
}

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

.footer-contact-info-metal {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 30px 50px;
}

.footer-contact-item-metal {
	position: relative;
	display: flex;
	flex-wrap: wrap;
	gap: 15px;
	align-items: center;
}

.footer-contact-item-metal::before {
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	right: -25px;
	background: var(--dark-divider-color);
	width: 1px;
	height: 100%;
}

.footer-contact-item-metal:last-child:before {
	display: none;
}

.footer-contact-item-metal .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;
}

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

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

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

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

.footer-contact-item-content-metal p {
	color: var(--white-color);
	margin-bottom: 5px;
}

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

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

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

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

.footer-social-links-metal {
	/* border-top: 1px solid var(--dark-divider-color); */
	margin-top: 0px;
	padding-top: 12px;
}

.footer-social-links-metal h2 {
	font-size: 20px;
	color: var(--white-color);
	margin-bottom: 20px;
}

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

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

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

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

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

/* .footer-links-metal{
    max-width: 26%;
} */

.footer-links-metal h2 {
	font-size: 21px;
	color: var(--white-color);
	margin-bottom: 20px;
	font-weight: 500;
}

.footer-links-metal ul {
	list-style: disc;
	margin: 0;
	padding: 0 0 0 20px;
}

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

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

.footer-links-metal ul li::marker {
	color: var(--hover-color);

}

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

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

.footer-working-hour-box-metal {
	width: 100%;
	max-width: 40%;
}

.footer-working-hour-box-metal ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

.footer-working-hour-box-metal ul li {
	display: flex;
	justify-content: space-between;
	gap: 20px;
	text-transform: capitalize;
	line-height: 1.5em;
	margin-bottom: 15px;
}

.footer-copyright-metal {
	background-color: var(--dark-divider-color);
	backdrop-filter: blur(50px);
	-webkit-backdrop-filter: blur(50px);
	text-align: center;
	padding: 12px 0;
	margin-top: 50px;
}

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

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



	.hero-metal {
		min-height: 780px;
	}

	.hero-content-metal {
		max-width: 100%;
		margin: 0;
	}

	.hero-content-footer-metal {
		margin-top: 40px;
	}

	.hero-img-item-metal {
		margin: 30px 0 0 0;
	}

	.about-us-image-metal img {
		aspect-ratio: 1 / 0.85;
	}

	.company-supports-content-metal {
		margin-bottom: 30px;
	}

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

	.why-choose-image-box-metal {
		max-width: 740px;
		margin: 0 auto;
	}

	.why-choose-image-1-metal figure img {
		aspect-ratio: 1 / 1.2;
	}

	.our-commitments-image-box-metal {
		max-width: 615px;
		margin: 0 auto 30px;
	}

	.intro-video-image-metal img {
		aspect-ratio: 1 / 0.6;
	}

	.cta-box-metal::before {
		background: var(--primary-color);
		opacity: 60%;
	}

	.our-faq-content-metal {
		position: initial;
		margin: 0 0 30px;
	}

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

	.testimonial-slider-metal .swiper-slide .testimonial-item-metal {
		transform: scale(1);
	}

	.testimonial-item-metal {
		padding: 30px;
		min-height: 410px;
	}

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

	.footer-header-metal {
		margin-bottom: 30px;
		padding-bottom: 30px;
	}

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

	.footer-social-links-metal h2 {
		margin-bottom: 15px;
	}

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

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

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

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

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

	.topbar-contact-info-list-metal {
		display: none;
	}

	.hero-metal {
		padding: 60px 0;
	}

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

	.hero-img-item-metal {
		max-width: 230px;
	}

	.hero-img-item-metal .swiper-slide {
		max-width: 100px;
	}

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

	.about-us-metal .section-title h2 img {
		max-width: 100px;
	}

	.about-us-item-metal {
		min-height: 370px;
		padding: 30px;
	}

	.about-us-item-counter-metal {
		padding-top: 30px;
	}

	.about-us-item-counter-metal h2 {
		font-size: 34px;
	}

	.company-supports-slider-metal {
		margin: 0;
	}

	.company-supports-logo-metal img {
		max-width: 145px;
		height: 34px;
	}

	.our-services-metal {
		background-position: bottom -20px center;
		background-size: 100% auto;
		padding: 60px 0;
	}

	.service-item-metal,
	.service-cta-box-metal {
		min-height: 350px;
		padding: 30px;
	}

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

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

	.why-choose-body-list-metal ul li {
		margin-bottom: 15px;
	}

	.why-choose-body-list-metal ul li::before {
		font-size: 16px;
	}

	.our-feature-metal {
		padding: 60px 0;
	}

	.feature-item-metal {
		padding: 30px 30px 0;
		gap: 30px;
	}

	.feature-item-image-1-metal figure {
		margin-left: -20px;
	}

	.our-commitments-metal {
		padding: 60px 0;
	}

	.commiments-review-box-metal {
		padding: 20px;
	}

	.commiments-review-box-metal h2 {
		font-size: 22px;
	}

	.commitments-counter-item-metal h2 {
		font-size: 38px;
	}

	.commitments-items-list-metal {
		padding-top: 30px;
		margin-top: 30px;
	}

	.commitments-item-metal {
		min-height: auto;
		padding: 20px;
	}

	.commitments-item-metal .icon-box {
		height: 50px;
		width: 50px;
	}

	.commitments-item-metal .icon-box img {
		max-width: 24px;
	}

	.commiments-review-box-metal h2 i {
		font-size: 18px;
	}

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

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

	.cta-box-metal {
		padding: 90px 0;
	}

	.our-faqs-metal {
		padding: 60px 0;
	}

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

	.faq-accordion-metal .accordion-header .accordion-button {
		padding: 18px 60px 18px 18px;
	}

	.faq-accordion-metal .accordion-item .accordion-button::after,
	.faq-accordion-metal .accordion-item .accordion-button.collapsed::after {
		height: 40px;
		width: 40px;
		font-size: 20px;
	}

	.faq-accordion-metal .accordion-item .accordion-body {
		padding: 18px;
	}

	.our-testimonial-metal {
		padding: 60px 0;
	}

	.satisfy-client-image figure img {
		max-width: 40px;
	}

	.testimonial-item-content-metal p {
		font-size: 18px;
	}

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

	.main-footer-metal {
		padding: 60px 0 0;
	}

	.footer-contact-item-content-metal h2 {
		font-size: 18px;
	}
}

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

	.topbar-metal {
		padding: 10px 0;
	}

	.topbar-contact-info-metal {
		text-align: center;
	}

	.topbar-contact-info-metal p {
		font-size: 14px;
	}

	.topbar-link-box-metal {
		display: none;
	}

	.hero-content-footer-metal {
		gap: 15px;
		margin-top: 20px;
		padding-top: 20px;
	}

	.google-review-box-metal {
		width: 100%;
		padding: 0;
		border-right: none;
	}

	.hero-footer-content-metal {
		max-width: 100%;
	}

	.google-review-box-metal .icon-box img {
		max-width: 40px;
	}

	.google-review-box-content-metal {
		width: calc(100% - 55px);
	}

	.google-review-box-content-metal p {
		font-size: 18px;
	}

	.hero-img-item-metal {
		max-width: 175px;
	}

	.hero-img-item-metal .swiper-slide {
		max-width: 80px;
	}

	.about-us-metal .section-title h2 img {
		max-width: 80px;
		height: 30px;
	}

	.about-us-item-metal {
		min-height: auto;
		gap: 20px;
		padding: 20px;
	}

	.about-us-item-header-metal .icon-box {
		margin-bottom: 20px;
	}

	.about-us-item-header-content-metal h3 {
		font-size: 18px;
	}

	.about-us-item-counter-metal {
		padding-top: 20px;
	}

	.about-us-item-counter-metal h2 {
		font-size: 28px;
	}

	.about-us-item-Content-metal h3 {
		font-size: 18px;
	}

	.about-us-image-metal figure,
	.about-us-image-metal img {
		height: auto;
	}

	.company-supports-slider-box-metal {
		margin-top: 10px;
	}

	.company-supports-content-metal {
		margin-bottom: 20px;
		gap: 10px;
	}

	.company-supports-content-metal p {
		font-size: 14px;
	}

	.service-item-metal,
	.service-cta-box-metal {
		min-height: auto;
		padding: 20px;
	}

	.service-item-contant-metal h2,
	.service-cta-box-content-metal h3 {
		font-size: 18px;
	}

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

	.why-choose-body-metal {
		padding: 20px;
	}

	.why-choose-item-metal {
		margin-bottom: 20px;
		padding-bottom: 20px;
	}

	.why-choose-item-Content-metal {
		width: 100%;
	}

	.why-choose-item-Content-metal h3 {
		font-size: 18px;
	}

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

	.why-choose-body-image-metal,
	.why-choose-body-list-metal {
		width: 100%;
		max-width: 100%;
	}

	.why-choose-body-list-metal ul li {
		margin-bottom: 10px;
	}

	.why-choose-image-box-metal {
		padding-right: 5px;
	}

	.why-choose-image-1-metal {
		padding-bottom: 100px;
	}

	.why-choose-image-2-metal figure {
		margin-left: -100px;
	}

	.feature-item-metal {
		padding: 20px 20px 0;
		gap: 20px;
	}

	.feature-item-content-metal h3 {
		font-size: 18px;
		padding-bottom: 15px;
		margin-bottom: 15px;
	}

	.commiments-review-box-metal {
		bottom: 55px;
		max-width: 155px;
		padding: 15px;
	}

	.commiments-review-box-metal h2 {
		font-size: 20px;
		padding-bottom: 10px;
		margin-bottom: 10px;
	}

	.commiments-review-box-metal h2 sub {
		font-size: 14px;
	}

	.commiments-review-box-metal h2 i {
		font-size: 16px;
	}

	.commiments-review-box-metal h3 {
		font-size: 16px;
	}

	.commitments-counter-items-list-metal {
		gap: 30px;
	}

	.commitments-counter-item-metal {
		width: calc(50% - 15px);
	}

	.commitments-counter-item-metal::before {
		right: -15px;
	}

	.commitments-counter-item-metal h2 {
		font-size: 26px;
	}

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

	.commitments-items-list-metal {
		gap: 20px;
	}

	.commitments-item-metal {
		width: 100%;
		gap: 20px;
		padding: 20px;
	}

	.commitments-item-metal h3 {
		font-size: 18px;
	}

	.commitments-item-metal p {
		margin: 5px 0 0;
	}

	.intro-video-image-metal img {
		aspect-ratio: 1 / 0.8;
	}

	.intro-video-metal .video-play-button-metal a {
		padding: 5px;
	}

	.intro-video-metal .video-play-button-metal a span {
		font-size: 18px;
		width: 80px;
		height: 80px;
	}

	.faq-accordion-metal .accordion-header .accordion-button {
		font-size: 16px;
		padding: 12px 50px 12px 15px;
	}

	.faq-accordion-metal .accordion-item .accordion-button::after,
	.faq-accordion-metal .accordion-item .accordion-button.collapsed::after {
		height: 30px;
		width: 30px;
		font-size: 18px;
	}

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

	.testimonial-client-box-metal {
		max-width: 100%;
	}

	.testimonial-item-metal {
		min-height: auto;
		gap: 20px;
		padding: 20px;
	}

	.testimonial-item-logo-metal img {
		max-width: 135px;
	}

	.testimonial-item-content-metal p {
		font-size: 16px;
	}

	.testimonial-author-content-metal {
		margin-top: 20px;
		padding-top: 20px;
	}

	.testimonial-author-content-metal h2 {
		font-size: 18px;
	}

	.footer-header-metal {
		margin-bottom: 20px;
		padding-bottom: 20px;
	}

	.footer-contact-info-metal {
		gap: 20px;
	}

	.footer-contact-item-metal {
		width: 100%;
	}

	.footer-contact-item-metal::before {
		display: none;
	}

	.footer-contact-item-metal .icon-box {
		width: 44px;
		height: 44px;
	}

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

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

	.footer-contact-item-content-metal h2 {
		font-size: 16px;
	}

	.footer-social-links-metal {
		margin-top: 20px;
		padding-top: 20px;
	}

	.footer-social-links-metal h2 {
		font-size: 18px;
	}

	.footer-links-metal {
		max-width: 100%;
	}

	.footer-links-metal h2 {
		font-size: 18px;
		margin-bottom: 15px;
	}

	.footer-working-hour-box-metal {
		width: 100%;
	}

	.footer-copyright-metal {
		padding: 10px 0;
	}
}

/************************************/
/***   35. Home - Version 3 css   ***/
/************************************/

.hero-stone {
	position: relative;
	background-image: url('../images/hero-bg-image-stone.jpg');
	padding: 250px 0 80px;
}

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

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

.hero-content-stone {
	max-width: 760px;
}

.hero-content-body-stone {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 20px 30px;
}

.video-play-button-stone a {
	position: relative;
	display: inline-flex;
	align-items: center;
	cursor: none;
	gap: 10px;
}

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

.video-play-button-stone a span.bg-effect:before,
.video-play-button-stone a span.bg-effect:after {
	content: '';
	position: absolute;
	width: 160%;
	height: 160%;
	border: 25px 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-stone a span.bg-effect:after {
	animation-delay: .3s;
}

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

.video-play-button-stone a span i {
	position: relative;
	font-size: 16px;
	color: var(--primary-color);
	margin-left: 2px;
	transition: all 0.3s ease-in-out;
	z-index: 1;
}

.video-play-button-stone p {
	font-weight: 500;
	color: var(--white-color);
	margin: 0;
}

.contact-us-circle-stone {
	text-align: end;
}

.contact-us-circle-stone a {
	display: inline-block;
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	border-radius: 50%;
}

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

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

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

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

.hero-info-list-stone {
	border-top: 1px solid var(--dark-divider-color);
	padding-top: 60px;
	margin-top: 10.417vw;
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
}

.hero-info-item-stone {
	width: calc(33.33% - 20px);
	display: flex;
	flex-wrap: wrap;
	gap: 15px;
}

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

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

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

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

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

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

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

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

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

.about-us-image-box-1-stone {
	width: 38%;
	padding-bottom: 120px;
}

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

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

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

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

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

.about-us-image-box-2-stone {
	position: relative;
	width: 62%;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	gap: 30px;
	z-index: 1;
}

.about-experience-box-stone {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 15px;
	background-color: var(--white-color);
	border-radius: 10px;
	padding: 25px;
	max-width: 280px;
	margin: 70px 30px 0 auto;
	animation: Movestylestone 2s infinite alternate linear;
}

@keyframes Movestylestone {
	50% {
		transform: translateX(-15px);
	}
}

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

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

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

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

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

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

.about-experience-box-content-stone h2 {
	font-size: 40px;
	font-weight: 400;
	line-height: 1em;
}

.about-experience-box-content-stone p {
	color: var(--primary-color);
	line-height: normal;
	margin: 5px 0 0;
}

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

.about-us-item-box-stone {
	background-color: var(--white-color);
	border-radius: 20px;
	margin-bottom: 40px;
	padding: 25px;
}

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

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

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

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

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

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

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

.about-us-item-content-stone h3 {
	font-size: 20px;
}

.about-us-item-content-stone p {
	margin: 10px 0 0;
}

.about-us-item-list-stone ul {
	list-style: disc;
	padding: 0 0 0 20px;
	margin: 0;
}

.about-us-item-list-stone ul li {
	line-height: 1.5em;
	margin-bottom: 10px;
}

.about-us-item-list-stone ul li:last-child {
	margin-bottom: 0;
}

.about-us-item-list-stone ul li::marker {
	color: var(--accent-color);
}

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

.about-us-body-content-stone {
	width: calc(50% - 15px);
	align-content: center;
}

.about-us-list-stone ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

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

.about-us-list-stone ul li:last-child {
	margin-bottom: 0;
}

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

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

.about-us-body-image-stone {
	width: calc(50% - 15px);
}

.about-us-body-image-stone figure {
	display: block;
	height: 100%;
	border-radius: 20px;
}

.about-us-body-image-stone figure img {
	height: 100%;
	width: 100%;
	aspect-ratio: 1 / 0.67;
	object-fit: cover;
	border-radius: 20px;
}

.our-service-stone {
	background-image: url("../images/service-bg-image-metal.png");
	background-position: bottom -60px center;
	background-repeat: no-repeat;
	background-size: auto;
	padding: 60px 0;
}

.service-item-stone {
	background: var(--bg-color);
	border-radius: 20px;
	height: calc(100% - 30px);
	margin-bottom: 30px;
	padding: 10px;
	transition: all 0.4s ease-in-out;
}

.service-item-stone:hover {
	transform: translateY(-5px);
}

.servce-item-image-box-stone {
	position: relative;
	margin-bottom: 10px;
}

.servce-item-image-box-stone figure {
	display: block;
	border-radius: 10px;
}

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

.service-item-stone:hover .servce-item-image-box-stone figure img {
	transform: scale(1.06);
}

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

.service-item-stone:hover .service-btn-stone {
	transform: translate(-50%, -50%) scale(1);
}

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

.service-btn-stone a:hover {
	background-color: var(--primary-color);
}

.service-btn-stone img {
	width: 100%;
	max-width: 20px;
	transition: all 0.4s ease-in-out;
}

.service-btn-stone a:hover img {
	filter: brightness(0) invert(1);
}

.service-btn-stone:hover img {
	transform: rotate(45deg);
}

.service-item-content-stone {
	padding: 20px;
	text-align: center;
}

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

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

.our-values-stone {
	padding: 60px 0;
}

.values-image-box-stone {
	position: relative;
	display: flex;
	flex-wrap: wrap;
	align-items: end;
}

.values-image-box-stone::before {
	content: "";
	position: absolute;
	top: 85px;
	right: 35px;
	background: url("../images/our-values-bg-image-stone.png") no-repeat;
	background-position: center center;
	background-size: cover;
	width: 155px;
	height: 234px;
	transform: rotate(15deg);
}

.values-image-box-1-stone {
	width: 40%;
	padding-bottom: 225px;
}

.values-image-box-1-stone figure {
	display: block;
	border-radius: 200px 200px 0 0;
	margin-right: -165px;
}

.values-image-box-1-stone figure img {
	width: 100%;
	border-radius: 200px 200px 0 0;
	aspect-ratio: 1 / 1.16;
	object-fit: cover;
}

.values-image-box-2-stone {
	position: relative;
	width: 60%;
	align-content: end;
	z-index: 1;
}

.values-image-stone figure {
	display: block;
	border-radius: 0 0 200px 200px;
	border: 6px solid var(--bg-color);
}

.values-image-stone figure img {
	width: 100%;
	border-radius: 0 0 200px 200px;
	aspect-ratio: 1 / 1.243;
	object-fit: cover;
}

.values-contact-circle-stone {
	position: absolute;
	left: -65px;
	bottom: 50%;
	transform: translateY(50%);
	z-index: 1;
}

.values-contact-circle-stone a {
	display: block;
	border-radius: 50%;
}

.values-contact-circle-stone a img {
	max-width: 130px;
	width: 100%;
	border-radius: 50%;
	aspect-ratio: 1 / 1;
	object-fit: cover;
	animation: infiniterotate 20s infinite linear;
}

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

.values-item-stone {
	display: flex;
	flex-wrap: wrap;
	gap: 15px;
	margin-bottom: 20px;
}

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

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

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

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

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

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

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

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

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

.values-content-list-stone {
	border-top: 1px solid var(--divider-color);
	padding-top: 30px;
	margin-top: 30px;
}

.values-content-list-stone ul {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	align-items: center;
	gap: 20px 30px;
	flex-wrap: wrap;
}

.values-content-list-stone ul li {
	width: calc(50% - 15px);
	position: relative;
	line-height: 1.5em;
	color: var(--primary-color);
	padding: 20px 20px 20px 45px;
	background-color: var(--white-color);
	border-radius: 10px;
	transition: all 0.4s ease-in-out;
}

.values-content-list-stone ul li:hover {
	background-color: var(--primary-color);
	color: var(--white-color);
}

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

.values-btn-stone {
	margin-top: 40px;
}

.our-core-features-stone {
	padding: 60px 0;
}

.core-features-item-stone {
	border-radius: 20px;
	min-height: 450px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	gap: 30px;
	height: calc(100% - 30px);
	margin-bottom: 30px;
	padding: 40px;
	overflow: hidden;
}

.core-features-item-stone.box-1 {
	background-color: var(--accent-color);
}

.core-features-item-stone.box-1 .core-features-item-image-stone,
.core-features-item-stone.box-3 .core-features-item-image-stone {
	max-width: 330px;
	margin: 0 auto;
}

.core-features-item-stone.box-1 .core-features-item-image-stone img,
.core-features-item-stone.box-3 .core-features-item-image-stone img {
	width: 100%;
	border-radius: 20px 20px 0 0;
	margin-bottom: -70px;
}

.core-features-item-stone h3 {
	font-size: 20px;
}

.core-features-item-stone p {
	border-top: 1px solid var(--divider-color);
	padding-top: 20px;
	margin: 20px 0 0;
}

.core-features-item-stone.box-1 p {
	color: var(--primary-color);
}

.core-features-item-stone.box-2 {
	position: relative;
	justify-content: end;
}

.core-features-item-stone.box-2 .core-features-item-image-stone {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.core-features-item-stone.box-2 .core-features-item-image-stone figure {
	position: relative;
	height: 100%;
	overflow: hidden;
}

.core-features-item-stone.box-2 .core-features-item-image-stone figure::before {
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background: linear-gradient(180deg, transparent 50%, rgba(24, 24, 24, 0.80) 82.5%);
	height: 100%;
	width: 100%;
}

.core-features-item-stone.box-2 .core-features-item-image-stone img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.core-features-item-stone.box-2 .core-features-item-content-stone {
	position: relative;
	z-index: 1;
}

.core-features-item-stone.box-2 .core-features-item-content-stone h3,
.core-features-item-stone.box-3 .core-features-item-content-stone h3 {
	color: var(--white-color);
}

.core-features-item-stone.box-2 .core-features-item-content-stone p {
	color: var(--white-color);
	border: none;
	padding-top: 0;
}

.core-features-item-stone.box-3 {
	background-color: var(--primary-color);
}

.core-features-item-stone.box-3 .core-features-item-content-stone p {
	color: var(--white-color);
	border-color: var(--dark-divider-color);
}

.cta-box-stone {
	padding: 60px 0;
}

.cta-image-box-stone {
	display: flex;
	flex-direction: column;
	gap: 30px;
	height: 100%;
	margin-right: 35px;
}

.cta-image-stone {
	height: 100%;
}

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

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

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

.cta-contact-item-stone {
	display: flex;
	flex-wrap: wrap;
	gap: 15px;
	align-items: center;
	margin-bottom: 30px;
}

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

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

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

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

.cta-contact-item-content-stone p {
	color: var(--white-color);
	margin-bottom: 5px;
}

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

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

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

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

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

.cta-content-stone .contact-form .form-control {
	background: var(--white-color);
	border: none;
	padding: 18px 20px;
	line-height: 1.5em;
}

.intro-video-box-stone {
	position: relative;
}

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

.intro-video-image-stone {
	position: relative;
	overflow: hidden;
}

.intro-video-image-stone figure {
	display: block;
}

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

.intro-video-image-stone img {
	width: 100%;
	aspect-ratio: 1 / 0.42;
	object-fit: cover;
	transition: all 1s ease-in-out;
}

.intro-video-stone:hover .intro-video-image-stone img {
	transform: scale(1.03);
}

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

.intro-video-stone .video-play-button-stone a {
	display: inline-block;
	border: 1px solid var(--dark-divider-color);
	padding: 10px;
	border-radius: 50%;
}

.intro-video-stone .video-play-button-stone a span {
	position: relative;
	width: 100px;
	height: 100px;
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 20px;
	font-weight: 400;
	color: var(--white-color);
	background: var(--divider-color);
	backdrop-filter: blur(5px);
	-webkit-backdrop-filter: blur(5px);
	border-radius: 50%;
	cursor: none;
	transition: all 0.4s ease-in-out;
}

.intro-video-stone .video-play-button-stone a:hover span {
	color: var(--primary-color);
	background-color: var(--accent-color);
}

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

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

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

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

.team-item-image-stone figure::before {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	top: 0;
	border-radius: 20px;
	background: linear-gradient(180deg, transparent 50%, rgba(24, 24, 24, 0.80) 90%);
	width: 100%;
	height: 100%;
	z-index: 1;
}

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

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

.team-item-body-stone {
	position: absolute;
	left: 40px;
	right: 40px;
	bottom: 40px;
	text-align: center;
	z-index: 2;
}

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

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

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

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

.team-item-stone:hover .team-social-list-stone {
	opacity: 1;
	visibility: visible;
	padding-top: 20px;
	margin-top: 20px;
	height: 60px;
}

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

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

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

.team-social-list-stone ul li a i {
	font-size: 18px;
	color: var(--white-color);
	transition: all 0.4s ease-in-out;
}

.team-social-list-stone ul li a:hover i {
	color: var(--primary-color);
}

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

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

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

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

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

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

.pricing-item-stone:hover .pricing-item-header-stone .icon-box img {
	filter: brightness(0) invert(1);
}

.pricing-item-content-stone .pricing-item-title-stone {
	display: block;
	font-size: 20px;
	line-height: 1.2em;
	color: var(--primary-color);
}

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

.pricing-item-price-stone {
	background-color: var(--white-color);
	border-radius: 10px;
	padding: 20px 30px;
	margin: 30px 0;
}

.pricing-item-price-stone h2 {
	font-size: 40px;
	line-height: normal;
}

.pricing-item-price-stone h2 sub {
	font-size: 16px;
	bottom: 0;
}

.pricing-item-list-stone h3 {
	font-size: 20px;
	border-bottom: 1px solid var(--divider-color);
	margin-bottom: 20px;
	padding-bottom: 20px;
}

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

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

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

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

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

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

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

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

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

.our-faqs-stone {
	padding: 60px 0;
}

.faqs-content-stone {
	display: flex;
	flex-direction: column;
	gap: 30px;
	background-color: var(--white-color);
	border-radius: 20px;
	padding: 10px;
	height: 100%;
}

.faq-image-stone {
	height: 100%;
}

.faq-image-stone figure {
	display: block;
	height: 100%;
	border-radius: 10px;
	overflow: hidden;
}

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

.faq-body-stone {
	padding: 0 20px 20px;
}

.faq-body-content-stone h3 {
	font-size: 24px;
}

.faq-body-content-stone p {
	margin: 20px 0 0;
}

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

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

.faq-contact-item-stone::before {
	content: '';
	position: absolute;
	top: 0;
	right: -15px;
	height: 100%;
	width: 1px;
	background-color: var(--divider-color);
}

.faq-contact-item-stone:last-child:before {
	display: none;
}

.faq-contact-item-stone .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;
}

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

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

.faq-contact-item-stone .icon-box img {
	transition: all 0.4s ease-in-out;
}

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

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

.faq-contact-item-content-stone p {
	line-height: normal;
	margin-bottom: 5px;
}

.faq-contact-item-content-stone h3 {
	font-size: 20px;
	font-weight: 400;
}

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

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

.faq-accordion-stone .accordion-item {
	background: var(--white-color);
	border-radius: 10px;
	margin-bottom: 30px;
	padding: 0;
	transition: all 0.4s ease-in-out;
	overflow: hidden;
}

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

.faq-accordion-stone .accordion-header .accordion-button {
	font-size: 18px;
	font-weight: 400;
	line-height: 1.333em;
	background-color: var(--white-color);
	color: var(--primary-color);
	padding: 22px 55px 22px 22px;
	transition: all 0.4s ease-in-out;
}

.faq-accordion-stone .accordion-header .accordion-button:not(.collapsed) {
	background-color: var(--accent-color);
}

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

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

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

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

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

.our-testimonials-stone {
	background-image: url('../images/testimonials-bg-stone.png');
	background-repeat: no-repeat;
	background-position: center center;
	background-size: auto;
	padding: 60px 0;
}

.testimonial-slider-stone {
	height: 100%;
}

.testimonial-slider-stone .swiper {
	padding-bottom: 60px;
	height: 100%;
}

.testimonial-slider-stone .swiper-wrapper {
	height: 100%;
	cursor: none;
}

.testimonial-slider-stone .swiper-wrapper .swiper-slide .testimonial-item-stone {
	transform: scale(0.95);
	transition: all 0.6s ease-in-out;
}

.testimonial-slider-stone .swiper-wrapper .swiper-slide.swiper-slide-next .testimonial-item-stone {
	transform: scale(1);
}

.testimonial-item-stone {
	position: relative;
	min-height: 455px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	gap: 30px;
	background-color: var(--bg-color);
	border-radius: 20px;
	padding: 40px;
	height: 100%;
	overflow: hidden;
}

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

.testimonial-item-content-stone p {
	font-size: 20px;
	font-weight: 400;
	color: var(--primary-color);
	margin-bottom: 0;
}

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

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

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

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

.testimonial-author-content-stone h2 {
	font-size: 20px;
	font-weight: 400;
	;
}

.testimonial-author-content-stone p {
	margin: 5px 0 0;
}

.testimonial-slider-stone .testimonial-pagination-stone {
	position: absolute;
	bottom: 0px;
	text-align: center;
}

.testimonial-slider-stone .testimonial-pagination-stone .swiper-pagination-bullet {
	border-radius: 40px;
	height: 10px;
	width: 10px;
	background: var(--divider-color);
	opacity: 1;
	margin: 0 3px;
	transition: all 0.3s ease-in-out;
}

.testimonial-slider-stone .testimonial-pagination-stone .swiper-pagination-bullet-active {
	width: 30px;
	background: var(--accent-color);
	opacity: 1;
}

.our-testimonials-stone .section-footer-text.section-satisfy-img ul {
	margin: 0;
}

.main-footer-stone {
	padding: 120px 0 0;
}

.footer-header-stone {
	border-bottom: 1px solid var(--dark-divider-color);
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	padding-bottom: 60px;
	margin-bottom: 60px;
}

.footer-header-stone .section-title {
	max-width: 700px;
	margin-bottom: 0;
}

.footer-newsletter-form-stone {
	width: 100%;
	max-width: 440px;
}

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

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

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

.footer-newsletter-form-stone .form-group .newsletter-btn {
	width: 50px;
	height: 50px;
	display: flex;
	justify-content: center;
	align-items: center;
	background-color: var(--accent-color);
	border: none;
	border-radius: 5px;
	transition: all 0.4s ease-in-out;
}

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

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

.footer-newsletter-form-stone .newsletter-btn:hover img {
	transform: rotate(45deg);
}

.about-footer-stone {
	max-width: 300px;
}

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

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

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

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

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

.footer-contact-lists-stone ul li {
	color: var(--white-color);
	font-size: 20px;
	line-height: normal;
	margin-bottom: 15px;
}

.footer-contact-lists-stone ul li:last-child {
	margin-bottom: 0;
}

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

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

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

.footer-links-stone {
	max-width: 27%;
}

.footer-links-stone h2 {
	font-size: 20px;
	color: var(--white-color);
	margin-bottom: 25px;
}

.footer-links-stone ul {
	list-style: disc;
	padding: 0 0 0 20px;
	margin: 0;
}

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

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

.footer-links-stone ul li::marker {
	color: var(--accent-color);
}

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

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

.footer-working-hours-stone {
	width: 100%;
	max-width: 38%;
}

.footer-working-hours-stone ul {
	list-style: none;
	padding: 0;
}

.footer-working-hours-stone ul li {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
	gap: 10px;
}

.footer-social-links-stone {
	border-top: 1px solid var(--dark-divider-color);
	padding-top: 30px;
	margin-top: 30px;
}

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

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

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

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

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

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

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

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

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

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

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

	.about-us-body-image-stone figure img {
		aspect-ratio: 1 / 0.55;
	}

	.servce-item-image-box-stone figure img {
		aspect-ratio: 1 / 1;
	}

	.values-image-box-stone {
		max-width: 635px;
		margin: 0 auto 30px;
	}

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

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

	.cta-image-stone figure img {
		aspect-ratio: 1 / 0.7;
	}

	.cta-contact-box-stone {
		padding: 30px;
	}

	.intro-video-image-stone img {
		aspect-ratio: 1 / 0.6;
	}

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

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

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

	.testimonial-slider-stone .swiper-wrapper .swiper-slide .testimonial-item-stone {
		transform: scale(1);
	}

	.testimonial-item-stone {
		padding: 30px;
		min-height: 380px;
	}

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

	.footer-header-stone {
		margin-bottom: 30px;
		padding-bottom: 30px;
	}

	.footer-newsletter-form-stone,
	.footer-header-stone .section-title {
		max-width: 100%;
	}

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

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

	.footer-contact-lists-stone ul li {
		font-size: 18px;
		margin-bottom: 10px;
	}

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

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

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

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

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

	.contact-us-circle-stone {
		display: none;
	}

	.video-play-button-stone a span {
		width: 46px;
		height: 46px;
	}

	.hero-info-list-stone {
		margin-top: 30px;
		padding-top: 30px;
	}

	.hero-info-item-stone {
		width: calc(50% - 15px);
	}

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

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

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

	.about-experience-box-content-stone h2 {
		font-size: 34px;
	}

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

	.about-us-list-stone ul li {
		margin-bottom: 10px;
	}

	.about-us-list-stone ul li::before {
		font-size: 16px;
	}

	.our-service-stone {
		background-position: bottom -30px center;
		background-size: 100% auto;
		padding: 60px 0;
	}

	.service-item-content-stone {
		padding: 10px;
	}

	.our-values-stone {
		padding: 60px 0;
	}

	.values-contact-circle-stone a img {
		max-width: 110px;
	}

	.values-content-list-stone ul li {
		padding: 15px 15px 15px 40px;
	}

	.values-content-list-stone ul li::before {
		top: 15px;
		left: 15px;
		font-size: 16px;
	}

	.values-btn-stone {
		margin-top: 30px;
	}

	.our-core-features-stone {
		padding: 60px 0;
	}

	.core-features-item-stone {
		min-height: auto;
		padding: 30px;
	}

	.core-features-item-stone p {
		padding-top: 15px;
		margin: 15px 0 0;
	}

	.cta-box-stone {
		padding: 60px 0;
	}

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

	.cta-content-stone .contact-form .form-control {
		padding: 13px 15px;
	}

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

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

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

	.pricing-item-stone {
		padding: 30px;
	}

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

	.pricing-item-price-stone {
		padding: 15px 20px;
		margin: 20px 0;
	}

	.pricing-item-price-stone h2 {
		font-size: 34px;
	}

	.pricing-item-list-stone h3 {
		font-size: 18px;
		margin-bottom: 15px;
		padding-bottom: 15px;
	}

	.pricing-item-list-stone ul li {
		margin-bottom: 10px;
	}

	.pricing-item-list-stone ul li::before {
		font-size: 16px;
	}

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

	.pricing-benefit-list-stone ul {
		gap: 20px 30px;
	}

	.pricing-benefit-list-stone ul li img {
		max-width: 18px;
	}

	.our-faqs-stone {
		padding: 60px 0;
	}

	.faq-body-content-stone h3 {
		font-size: 22px;
	}

	.faq-body-content-stone p {
		margin: 10px 0 0;
	}

	.faq-contact-item-list-stone {
		padding-top: 20px;
		margin-top: 20px;
	}

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

	.faq-accordion-stone .accordion-header .accordion-button {
		padding: 15px 45px 15px 20px;
	}

	.faq-accordion-stone .accordion-item .accordion-button::after,
	.faq-accordion-stone .accordion-item .accordion-button.collapsed::after {
		font-size: 18px;
		right: 20px;
	}

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

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

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

	.testimonial-slider-stone .swiper {
		padding-bottom: 50px;
	}

	.testimonial-item-content-stone p {
		font-size: 18px;
	}

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

	.main-footer-stone {
		padding: 60px 0 0;
		margin-bottom: 0;
	}

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

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

	.footer-working-hours-stone {
		max-width: 40%;
	}

	.footer-social-links-stone {
		padding-top: 20px;
		margin-top: 20px;
	}

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

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

	.hero-content-body-stone {
		gap: 20px;
	}

	.video-play-button-stone p {
		font-size: 14px;
	}

	.hero-info-list-stone {
		gap: 20px;
		margin-top: 30px;
		padding-top: 30px;
	}

	.hero-info-item-stone {
		width: 100%;
	}

	.hero-info-item-content-stone h2 {
		font-size: 18px;
	}

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

	.about-us-image-box-1-stone {
		padding-bottom: 70px;
	}

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

	.about-experience-box-stone {
		gap: 10px;
		padding: 10px;
		margin: 40px 0px 0 auto;
	}

	.about-experience-box-stone .icon-box {
		height: 40px;
		width: 40px;
	}

	.about-experience-box-stone .icon-box img {
		max-width: 20px;
	}

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

	.about-experience-box-content-stone h2 {
		font-size: 28px;
	}

	.about-experience-box-content-stone p {
		font-size: 14px;
	}

	.about-us-item-box-stone {
		padding: 20px;
	}

	.about-us-item-content-stone h3 {
		font-size: 18px;
	}

	.about-us-item-content-stone {
		width: 100%;
	}

	.about-us-body-content-stone,
	.about-us-body-image-stone {
		width: 100%;
	}

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

	.about-us-body-image-stone figure,
	.about-us-body-image-stone figure img {
		height: auto;
	}

	.service-item-content-stone h2 {
		font-size: 18px;
	}

	.values-image-box-stone::before {
		top: 30px;
		right: 25px;
		width: 95px;
		height: 155px;
	}

	.values-image-box-1-stone {
		padding-bottom: 120px;
	}

	.values-image-box-1-stone figure {
		margin-right: -80px;
	}

	.values-contact-circle-stone {
		left: -45px;
	}

	.values-contact-circle-stone a img {
		max-width: 90px;
	}

	.values-item-stone {
		width: 100%;
	}

	.values-item-content-stone h3 {
		font-size: 18px;
	}

	.values-content-list-stone ul {
		gap: 15px;
	}

	.values-content-list-stone ul li {
		width: 100%;
		padding: 10px 10px 10px 35px;
	}

	.values-content-list-stone ul li::before {
		top: 10px;
		left: 10px;
	}

	.core-features-item-stone {
		gap: 20px;
		padding: 20px;
	}

	.core-features-item-stone h3 {
		font-size: 18px;
	}

	.core-features-item-stone.box-2 {
		min-height: 380px;
	}

	.cta-image-stone figure img {
		aspect-ratio: 1 / 0.9;
	}

	.cta-contact-box-stone {
		padding: 20px;
	}

	.cta-contact-item-stone {
		margin-bottom: 20px;
	}

	.cta-contact-item-content-stone h3 {
		font-size: 18px;
	}

	.intro-video-image-stone img {
		aspect-ratio: 1 / 0.8;
	}

	.intro-video-stone .video-play-button-stone a {
		padding: 5px;
	}

	.intro-video-stone .video-play-button-stone a span {
		font-size: 18px;
		width: 80px;
		height: 80px;
	}

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

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

	.team-item-stone:hover .team-social-list-stone {
		padding-top: 15px;
		margin-top: 15px;
		height: 55px;
	}

	.team-social-list-stone ul {
		gap: 10px;
	}

	.pricing-item-stone {
		padding: 20px;
	}

	.pricing-item-content-stone .pricing-item-title-stone {
		font-size: 18px;
	}

	.pricing-item-price-stone h2 {
		font-size: 28px;
	}

	.pricing-item-price-stone h2 sub {
		font-size: 14px;
	}

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

	.pricing-benefit-list-stone ul {
		gap: 10px 20px;
	}

	.pricing-benefit-list-stone ul li {
		font-size: 14px;
	}

	.pricing-benefit-list-stone ul li img {
		max-width: 16px;
		margin-right: 5px;
	}

	.faq-image-stone img {
		aspect-ratio: 1 / 0.65;
	}

	.faq-body-stone {
		padding: 0px 10px 10px;
	}

	.faq-body-content-stone h3 {
		font-size: 20px;
	}

	.faq-contact-item-list-stone {
		gap: 40px;
	}

	.faq-contact-item-stone {
		width: 100%;
	}

	.faq-contact-item-stone::before {
		top: auto;
		right: 0;
		bottom: -20px;
		left: 0;
		height: 1px;
		width: 100%;
	}

	.faq-contact-item-content-stone h3 {
		font-size: 18px;
	}

	.faq-accordion-stone .accordion-header .accordion-button {
		padding: 12px 40px 12px 15px;
		font-size: 16px;
	}

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

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

	.testimonial-item-stone {
		min-height: 300px;
		padding: 20px;
		gap: 20px;
	}

	.testimonial-item-content-stone p {
		font-size: 16px;
	}

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

	.testimonial-author-content-stone h2 {
		font-size: 18px;
	}

	.footer-header-stone {
		margin-bottom: 20px;
		padding-bottom: 20px;
	}

	.footer-newsletter-form-stone .form-group .form-control {
		width: calc(100% - 40px);
	}

	.footer-newsletter-form-stone .form-group .newsletter-btn {
		height: 40px;
		width: 40px;
	}

	.footer-newsletter-form-stone .newsletter-btn img {
		max-width: 20px;
	}

	.footer-contact-lists-stone {
		margin-top: 20px;
		padding-top: 20px;
	}

	.footer-contact-lists-stone ul li {
		font-size: 16px;
		margin-bottom: 10px;
	}

	.footer-links-stone {
		max-width: 100%;
	}

	.footer-links-stone h2 {
		font-size: 18px;
		margin-bottom: 15px;
	}

	.footer-social-links-stone ul {
		justify-content: center;
	}

	.footer-copyright-text-stone {
		margin-top: 20px;
		padding: 15px 0;
	}
}

.navbar-brand img {
	width: 110px;
}

.column-2 {
	column-count: 2;
}

.location-wrapper {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

.location-list {
	border: 1px solid #d8d8d8;
	padding: 8px 10px;
	border-radius: 7px;
	background: #fff;
}

.airmaster-cta {
	padding: 60px 0;
}

.airmaster-cta-box {
	margin: auto;
	text-align: center;
	padding: 40px 30px;
	border-radius: 24px;
	background: linear-gradient(135deg, #0d2342, #173f74);
	position: relative;
	overflow: hidden;
}

.airmaster-cta-box::before {
	content: '';
	position: absolute;
	width: 350px;
	height: 350px;
	border-radius: 50%;
	background: rgba(255, 255, 255, .05);
	top: -150px;
	right: -100px;
}

.airmaster-cta-box::after {
	content: '';
	position: absolute;
	width: 250px;
	height: 250px;
	border-radius: 50%;
	background: rgba(255, 255, 255, .04);
	bottom: -120px;
	left: -80px;
}

.cta-tag {
	display: inline-block;
	padding: 8px 18px;
	background: rgba(255, 255, 255, .12);
	border: 1px solid rgba(255, 255, 255, .15);
	border-radius: 50px;
	color: #fff;
	font-size: 14px;
	margin-bottom: 20px;
}

.airmaster-cta-box h2 {
	color: #fff;
	font-size: 42px;
	line-height: 1.2;
	margin-bottom: 20px;
	font-weight: 600;
}

.airmaster-cta-box p {
	color: rgba(255, 255, 255, .95);
	margin: 0 auto 35px;
	font-size: 17px;
	line-height: 1.8;
}

.airmaster-action-buttons {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 15px;
	flex-wrap: wrap;
	margin-top: 30px;
}

.airmaster-action-btn {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 16px 30px;
	border-radius: 10px;
	text-decoration: none;
	font-size: 16px;
	font-weight: 600;
	transition: all .3s ease;
}

.airmaster-action-btn i {
	font-size: 15px;
}

/* Quote Button */
.airmaster-quote-btn {
	background: #b60000;
	color: #fff;
	box-shadow: 0 10px 25px rgba(255, 107, 0, .25);
}

.airmaster-quote-btn:hover {
	transform: translateY(-3px);
	color: #fff;
}

/* Catalogue Button */
.airmaster-catalogue-btn {
	background: #fff;
	color: #173f74;
	border: 1px solid rgba(255, 255, 255, .2);
}

.airmaster-catalogue-btn:hover {
	transform: translateY(-3px);
	color: #173f74;
}

/* Contact Button */
.airmaster-contact-btn {
	background: transparent;
	color: #fff;
	border: 1px solid rgba(255, 255, 255, .3);
}

.airmaster-contact-btn:hover {
	background: rgba(255, 255, 255, .1);
	color: #fff;
	transform: translateY(-3px);
}


/* Button */

.airmaster-quote-btn {
	/* width: 100%; */
	height: 52px;
	border: none;
	border-radius: 12px;
	background: #b60000;
	color: #fff;
	font-size: 16px;
	font-weight: 600;
	transition: all .3s ease;
}

.airmaster-quote-btn i {
	margin-right: 10px;
}

.airmaster-quote-btn:hover {
	transform: translateY(-3px);
	background: #e50000;
}

/* Benefits */

.airmaster-benefits-list {
	margin-top: 35px;
}

.airmaster-benefit-item {
	display: flex;
	align-items: center;
	gap: 18px;
	margin-bottom: 18px;
}

.airmaster-benefit-item i {
	width: 42px;
	height: 42px;
	min-width: 42px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(255, 0, 0, 0.15);
	border: 1px solid rgba(204, 0, 0, 0.3);
	border-radius: 9px;
	color: #fff;
	font-size: 18px;
}

.airmaster-benefit-item span {
	color: #fff;
	font-size: 17px;
	font-weight: 500;
}

/* Support Box */

.airmaster-support-note {
	margin-top: 30px;
	padding: 20px;
	border-radius: 12px;
	background: rgba(255, 255, 255, 0.06);
	border: 1px solid rgba(255, 255, 255, 0.08);
	display: flex;
	align-items: center;
	gap: 20px;
}

.airmaster-support-note i {
	width: 60px;
	height: 60px;
	min-width: 60px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #b60000;
	color: #fff;
	border-radius: 50%;
	font-size: 24px;
}

.airmaster-support-note p {
	margin: 0;
	color: rgba(255, 255, 255, 0.85);
	line-height: 1.8;
}

/* Responsive */

@media(max-width:991px) {

	.contact-box-form {
		margin-top: 40px;
		padding: 20px;
	}

	.airmaster-support-note {
		flex-direction: column;
		text-align: center;
	}

	.airmaster-benefit-item {
		margin-bottom: 15px;
	}
}

.hvac-process-section {
	padding: 50px 0;
	background: #f7f9fc;
}

/* Process Row */

.hvac-process-row {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 30px;
	position: relative;
}

.hvac-process-row::before {
	content: '';
	position: absolute;
	top: 50px;
	left: 10%;
	right: 10%;
	height: 4px;
	background: linear-gradient(90deg,
			#b60000,
			#ff9a3d);
	z-index: 1;
}

/* Card */

.hvac-process-card {
	position: relative;
	z-index: 2;
	background: rgba(255, 255, 255, 0.85);
	backdrop-filter: blur(12px);
	border-radius: 24px;
	padding: 35px 20px;
	box-shadow: 0 15px 40px rgba(0, 0, 0, .08);
	transition: .4s;
}

.hvac-process-card:hover {
	transform: translateY(-12px);
	box-shadow: 0 25px 50px rgba(0, 0, 0, .15);
}

/* Number */

.step-no {
	position: absolute;
	right: 20px;
	top: 15px;
	font-size: 47px;
	font-weight: 600;
	color: #edf2f8;
	line-height: 1;
}

/* Icon */

.step-icon {
	width: 62px;
	height: 62px;
	border-radius: 10px;
	background: linear-gradient(135deg, #cc0000, #f90000);
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 27px;
	margin-bottom: 20px;
	position: relative;
}

.step-icon::after {
	content: '';
	position: absolute;
	width: 18px;
	height: 18px;
	border-radius: 50%;
	background: #b60000;
	top: 60%;
	left: 50%;
	transform: translate(-50%, -65px);
	border: 4px solid #fff;
}

/* Text */

.hvac-process-card h3 {
	font-size: 21px;
	margin-bottom: 10px;
	color: #0f2544;
	font-weight: 500;
}

.hvac-process-card p {
	color: #666;
	margin: 0;
	line-height: 1.8;
}

/* Responsive */

@media(max-width:1199px) {

	.hvac-process-row {
		grid-template-columns: repeat(2, 1fr);
	}

	.hvac-process-row::before {
		display: none;
	}
}

@media(max-width:767px) {

	.hvac-process-row {
		grid-template-columns: 1fr;
	}


}

.airmaster-compliance-section {
	padding: 50px 0;
	background: #f8fafc;
}


.airmaster-compliance-card {
	background: #ffffff;
	border: 1px solid #e6ebf2;
	border-radius: 15px;
	padding: 20px;
	height: 100%;
	transition: all .3s ease;
}

.airmaster-compliance-card:hover {
	transform: translateY(-6px);
	box-shadow: 0 15px 40px rgba(0, 0, 0, .08);
}

.airmaster-compliance-badge {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: var(--accent-color);
	color: #fff;
	padding: 12px 14px;
	border-radius: 8px;
	font-size: 21px;
	font-weight: 500;
	margin-bottom: 12px;
}

.airmaster-compliance-badge i {
	font-size: 21px;
}

.airmaster-compliance-card h3 {
	font-size: 21px;
	font-weight: 500;
	margin-bottom: 7px;
	color: #0d2342;
}

.airmaster-compliance-card p {
	color: #667085;
	line-height: 1.7;
	margin: 0;
}

@media(max-width:991px) {

	.airmaster-compliance-card {
		padding: 16px;
	}
}

.airmaster-industries-section {
	padding: 60px 0;
	background: #f8fafc;
}


.industry-card {
	background: #fff;
	border: 1px solid #e8edf5;
	border-radius: 16px;
	padding: 16px;
	text-align: center;
	height: 100%;
	transition: .35s;
}

.industry-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 20px 40px rgba(0, 0, 0, .08);
}

.industry-card i {
	width: 62px;
	height: 62px;
	line-height: 62px;
	border-radius: 12px;
	background: #fff3eb;
	color: #b60000;
	font-size: 27px;
	margin-bottom: 14px;
}

.industry-card h3 {
	font-size: 17px;
	font-weight: 500;
	margin: 0;
}

.industry-icon .icon-box {
	position: relative;
	background: #b60000;
	border-radius: 10px;
	width: 46px;
	height: 46px;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
}



.airmaster-why-section {
	padding: 60px 0;
	background: #f8fafc;
}


.why-feature-card {
	background: #fff;
	border-radius: 20px;
	padding: 30px;
	height: 100%;
	transition: .3s;
	border: 1px solid #edf1f7;
}

.why-feature-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 15px 35px rgba(0, 0, 0, .08);
}

.why-feature-card i {
	width: 62px;
	height: 62px;
	line-height: 62px;
	text-align: center;
	border-radius: 18px;
	background: #fff4ec;
	color: #b60000;
	font-size: 27px;
	margin-bottom: 15px;
}

.why-feature-card h3 {
	font-size: 21px;
	font-weight: 500;
	margin-bottom: 7px;
}

.why-feature-card p {
	color: #667085;
	line-height: 1.7;
	margin: 0;
}

.airmaster-projects-section {
	padding: 60px 0;
	background: #f8fafc;
}

.airmaster-project-card {
	position: relative;
    width: 100%;
    height: 433px;
	border-radius: 24px;
	overflow: hidden;
	transition: all 0.5s ease;
	cursor: pointer;
}

.project-bg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.project-bg img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.8s ease;
}

.airmaster-project-card:hover .project-bg img {
	transform: scale(1.12);
}

.project-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(to top,
			rgba(0, 0, 0, 0.80) 0%,
			rgba(0, 0, 0, 0.50) 45%,
			rgba(0, 0, 0, 0.10) 100%);
}

.project-content {
	position: relative;
	z-index: 2;
	height: 100%;
	padding: 20px;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
}

.project-icon {
	width: 53px;
	height: 53px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.15);
	backdrop-filter: blur(10px);
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 10px;
	border: 1px solid rgba(255, 255, 255, 0.2);
	transition: all 0.5s ease;
}

.project-icon i {
	font-size: 23px;
	color: #fff;
}

.airmaster-project-card:hover .project-icon {
	transform: rotateY(180deg);
}

.project-location {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	width: max-content;
	padding: 8px 16px;
	margin-bottom: 15px;
	border-radius: 50px;
	background: rgba(255, 255, 255, 0.15);
	backdrop-filter: blur(10px);
	border: 1px solid rgba(255, 255, 255, 0.15);
	color: #fff;
	font-size: 14px;
	font-weight: 500;
}

.project-location i {
	color: #ffb400;
}

.airmaster-project-card h3 {
	color: #fff;
	font-size: 16px;
	font-weight: 600;
	margin-bottom: 0px;
	line-height: 1.3;
}

.airmaster-project-card p {
	color: rgba(255, 255, 255, 0.95);
	font-size: 15px;
	margin-bottom: 12px;
}

.project-tag {
	display: inline-block;
	width: max-content;
	padding: 10px 18px;
	border-radius: 50px;
	background: #b60000;
	color: #fff;
	font-size: 13px;
	font-weight: 600;
	letter-spacing: .5px;
}

.airmaster-project-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 25px 60px rgba(0, 0, 0, 0.25);
}

@media(max-width:991px) {

	.airmaster-project-card {
		height: 380px;
	}

	.airmaster-project-card h3 {
		font-size: 16px;
	}
}

@media(max-width:767px) {

	.airmaster-project-card {
		height: 350px;
	}

	.project-content {
		padding: 25px;
	}

	.project-icon {
		width: 41px;
		height: 41px;
	}

	.project-icon i {
		font-size: 21px;
	}

	.airmaster-project-card h3 {
		font-size: 16px;
	}
}

@media(max-width:991px) {

	.airmaster-project-highlight {
		flex-direction: column;
		gap: 25px;
	}
}

.fw-500 {
	font-weight: 500;
}

.airmaster-custom-cta {
	padding: 60px 0;
}

.airmaster-custom-cta-box {
	background: linear-gradient(135deg, #0d2342 0%, #163b6d 100%);
	border-radius: 30px;
	padding: 40px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
	position: relative;
	overflow: hidden;
}


.airmaster-custom-cta-box::before {
	content: '';
	position: absolute;
	width: 350px;
	height: 350px;
	background: rgba(255, 255, 255, 0.04);
	border-radius: 50%;
	top: -150px;
	right: -100px;
}

.airmaster-custom-cta-box::after {
	content: '';
	position: absolute;
	width: 250px;
	height: 250px;
	background: rgba(255, 107, 0, 0.08);
	border-radius: 50%;
	bottom: -100px;
	left: -50px;
}



.cta-mini-title {
	display: inline-block;
	padding: 8px 18px;
	background: rgba(255, 255, 255, 0.12);
	border: 1px solid rgba(255, 255, 255, 0.15);
	border-radius: 50px;
	color: #fff;
	font-size: 14px;
	margin-bottom: 15px;
}

.airmaster-custom-cta-content h2 {
	color: #fff;
	font-size: 42px;
	font-weight: 600;
	line-height: 1.2;
	margin-bottom: 10px;
}

.airmaster-custom-cta-content p {
	color: rgba(255, 255, 255, 0.95);
	margin: 0;
	line-height: 1.8;
}



@media(max-width:991px) {

	.airmaster-custom-cta-box {
		flex-direction: column;
		text-align: center;
		padding: 30px 20px;
	}

	.airmaster-custom-cta-content h2 {
		font-size: 28px;
	}

}

.hvac-product-card {
	background: #fff;
	border-radius: 12px;
	overflow: hidden;
	border: 1px solid #e6e6e6;
	transition: .4s;
	height: 100%;
}

/*.hvac-product-card:hover {*/
/*	transform: translateY(-8px);*/
/*	box-shadow: 0 20px 40px rgba(0, 0, 0, .08);*/
/*}*/

.hvac-product-image {
	height: 210px;
	overflow: hidden;
}

.hvac-product-image img {
	width: 100%;
	height: 100%;
    object-fit: contain;
    transition: .5s;
    background: #030E4F;
}

.hvac-product-card:hover .hvac-product-image img {
	transform: scale(1.08);
}

.hvac-product-content {
	padding: 12px;
}

.hvac-product-category {
	display: inline-block;
	padding: 6px 14px;
	border-radius: 30px;
	background: #fff3eb;
	color: #b60000;
	font-size: 13px;
	font-weight: 600;
	margin-bottom: 15px;
}

.hvac-product-content h3 {
	font-size: 22px;
	font-weight: 500;
	margin-bottom: 6px;
}

.hvac-product-content p {
	color: #667085;
	line-height: 1.8;
	margin-bottom: 10px;
}

.hvac-product-btns {
	display: flex;
	gap: 6px;
	margin-top: 10px;
}

.hvac-btn-enquire,
.hvac-btn-view {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 11px 17px;
	border-radius: 8px;
	text-decoration: none;
	font-size: 14px;
	font-weight: 500;
	transition: all .3s ease;
}

/* Primary Button */
.hvac-btn-enquire {
	background: linear-gradient(135deg, #b60000, #d30505);
	color: #fff;
	box-shadow: 0 0px 16px rgba(236, 1, 1, 0.25);
}

.hvac-btn-enquire:hover {
	color: #fff;
	transform: translateY(-3px);
	box-shadow: 0 6px 20px rgba(235, 2, 2, 0.35);
}

/* Secondary Button */
.hvac-btn-view {
	background: #f5f7fa;
	border: 1px solid #e4e8ee;
	color: #0d2342;
}

.hvac-btn-view:hover {
	background: #0d2342;
	color: #fff;
	border-color: #0d2342;
	transform: translateY(-3px);
}

.hvac-btn-view i {
	transition: all .3s ease;
}

.hvac-btn-view:hover i {
	transform: translateX(5px);
}


.product-slider-stone,
.projects-slider-stone {
	position: relative;
}

.product-button-prev-stone,
.product-button-next-stone,
.projects-button-prev-stone,
.projects-button-next-stone {
	position: absolute;
	top: 42%;
	transform: translateY(-50%);
	width: 46px;
	height: 46px;
	border-radius: 50%;
	background: #fff;
	border: 1px solid #e5e7eb;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	z-index: 10;
	transition: all .3s ease;
	box-shadow: 0 10px 25px rgba(0, 0, 0, .12);
}

.product-button-prev-stone,
.projects-button-prev-stone {
	left: -10px;
}

.product-button-next-stone,
.projects-button-next-stone {
	right: -10px;
}

.product-button-prev-stone i,
.product-button-next-stone i,
.projects-button-prev-stone i,
.projects-button-prev-stone i {
	font-size: 18px;
	color: #111827;
}

.product-button-prev-stone:hover,
.product-button-next-stone:hover,
.projects-button-prev-stone:hover,
.projects-button-next-stone:hover {
	background: #0d6efd;
	border-color: #0d6efd;
}

.product-button-prev-stone:hover i,
.product-button-next-stone:hover i,
.projects-button-prev-stone:hover i,
.projects-button-next-stone:hover i {
	color: #fff;
}

@media(max-width:991px) {

	.product-button-prev-stone,
	.projects-button-prev-stone {
		left: 1px;
	}

	.product-button-next-stone,
	.projects-button-next-stone {
		right: 1px;
	}

	.product-button-prev-stone,
	.product-button-next-stone,
	.projects-button-prev-stone,
	.projects-button-prev-stone {
		width: 45px;
		height: 45px;
	}
}

.header-search-box {
	margin-right: 15px;
}

.header-search-box form {
	display: flex;
	align-items: center;
	border: 1px solid #323232;
	border-radius: 50px;
	overflow: hidden;
	background: #fff;
}

.header-search-box input {
	border: none;
	outline: none;
	padding: 10px 15px;
	width: 160px;
	font-size: 14px;
}

.header-search-box button {
	border: none;
	background: transparent;
	padding: 0 15px;
	cursor: pointer;
	color: #222;
}


/* Hide mobile search on desktop */
.mobile-search-wrapper {
	display: none;
}

/* Mobile Only */
@media (max-width: 991px) {

	/* Hide Top Bar */
	.topbar-metal {
		display: none;
	}

	/* Hide Desktop Search */
	.header-search-box {
		display: none;
	}

	/* Show Mobile Search */
	.mobile-search-wrapper {
		display: block;
		width: 100%;
		background: #fff;
		padding: 10px 15px;
		border-top: 1px solid #eee;
		border-bottom: 1px solid #eee;
	}

	.mobile-search-form {
		display: flex;
		align-items: center;
		border: 1px solid #ddd;
		border-radius: 50px;
		overflow: hidden;
		background: #fff;
	}

	.mobile-search-form input {
		width: 100%;
		border: none;
		outline: none;
		padding: 12px 15px;
		font-size: 14px;
	}

	.mobile-search-form button {
		width: 50px;
		border: none;
		background: transparent;
		color: #000;
		cursor: pointer;
		font-size: 16px;
	}
}

.hvac-trust-highlights {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 12px;
	margin: 20px 0px;
}

.hvac-highlight-card {
	display: inline-block;
	gap: 12px;
	padding: 12px 10px;
	border: 1px solid rgba(255, 255, 255, 0.15);
	background: rgba(255, 255, 255, 0.05);
	backdrop-filter: blur(10px);
	border-radius: 15px;
	transition: all 0.4s ease;
}

.hvac-highlight-card:hover {
	transform: translateY(-5px);
	background: rgba(255, 255, 255, 0.08);
	border-color: rgba(255, 255, 255, 0.25);
}

.hvac-highlight-icon {
	width: 36px;
	min-width: 36px;
	height: 36px;
	border-radius: 8px;
	background: rgba(255, 255, 255, 0.12);
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 10px;
}

.hvac-highlight-icon i {
	font-size: 21px;
	color: #fff;
}

.hvac-highlight-content h3 {
	font-size: 16px;
	font-weight: 500;
	color: #fff;
	margin: 0 0 4px;
	line-height: 1.2;
}

.hvac-highlight-content p {
	color: rgba(255, 255, 255, 0.95);
	margin: 0;
	font-size: 12px;
	line-height: 1.5;
}

@media (max-width: 767px) {

	.hvac-trust-highlights {
		grid-template-columns: 1fr;
		gap: 15px;
	}

	.hvac-highlight-card {
		padding: 15px;
	}

	.hvac-highlight-content h3 {
		font-size: 18px;
	}

}

.global-service-section {
	padding: 80px 0;
	position: relative;
	overflow: hidden;

	/* NEW CLEAN BACKGROUND */
	background: linear-gradient(135deg, #f6f9fc 0%, #eef3f8 100%);
}

/* Optional subtle pattern overlay */
.global-service-section::before {
	content: "";
	position: absolute;
	inset: 0;
	background: url("images/pattern-dots.png");
	opacity: 0.04;
	z-index: 0;
}

.global-service-section .container {
	position: relative;
	z-index: 1;
}

.content-wrapper {
	display: flex;
	align-items: center;
	justify-content: space-between;
	    text-align: center;
	gap: 60px;
}

/* LEFT COLUMN CARD STYLE */
.text-content {
	flex: 1;
	background: #ffffff;
	padding: 30px;
	border-radius: 16px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
	border-left: 5px solid var(--accent-color);
}

.text-content h2 {
	font-size: 36px;
	font-weight: 600;
	margin-bottom: 15px;
	color: #1c2b39;
}

.text-content p {
	font-size: 16px;
	color: #555;
	line-height: 1.7;
	margin-bottom: 25px;
}

/* CITY TAGS */
.city-tags {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	justify-content: center;
}

.city-tags span {
	padding: 8px 14px;
	background: #f1f5f9;
	border: 1px solid #e2e8f0;
	border-radius: 25px;
	font-size: 14px;
	font-weight: 500;
	color: #1f1f1f;
	transition: 0.3s;
}

.city-tags span:hover {
	background: var(--accent-color);
	color: #fff;
	transform: translateY(-2px);
}

/* RIGHT IMAGE COLUMN CARD */
.map-box {
	flex: 1;
	position: relative;
	background: #ffffff;
	padding: 14px;
	border-radius: 16px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
	text-align: center;
}

.map-box img {
	max-width: 100%;
	border-radius: 12px;
}



/* RESPONSIVE */
@media(max-width: 992px) {
	.content-wrapper {
		flex-direction: column;
	}

	.text-content,
	.map-box {
		width: 100%;
	}

	.text-content {
		text-align: center;
		padding: 20px;
	}

	.city-tags {
		justify-content: center;
	}

	.text-content h2 {
		font-size: 26px;
	}

	.airmaster-cta-box h2 {
		font-size: 26px;
	}

}


.airmaster-news-section {
	padding: 60px 0;
	background: #f8fafc;
}

.airmaster-news-card {
	background: #fff;
	border-radius: 20px;
	overflow: hidden;
	height: 100%;
	border: 1px solid #e9edf3;
	transition: all .4s ease;
	box-shadow: 0 10px 35px rgba(0, 0, 0, 0.06);
}

.airmaster-news-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

.news-card-image {
	overflow: hidden;
}

.news-card-image img {
	width: 100%;
	height: 230px;
	object-fit: cover;
	transition: 0.5s;
}

.airmaster-news-card:hover .news-card-image img {
	transform: scale(1.08);
}

.news-card-content {
	padding: 18px;
}

.news-meta {
	display: flex;
	justify-content: space-between;
	gap: 15px;
	flex-wrap: wrap;
	margin-bottom: 15px;
	padding-bottom: 12px;
	border-bottom: 1px solid #ececec;
}

.news-meta span {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 14px;
	color: #777;
	font-weight: 500;
}

.news-meta i {
	color: var(--accent-color);
}

.news-card-content h3 {
	font-size: 21px;
	font-weight: 500;
	line-height: 1.4;
	margin-bottom: 6px;
}

.news-card-content p {
	color: #666;
	margin-bottom: 15px;
	line-height: 1.8;
}

.news-btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	color: var(--accent-color);
	font-weight: 600;
	transition: .3s;
}

.news-btn i {
	transition: .3s;
}

.news-btn:hover i {
	transform: translateX(5px);
}

@media(max-width:991px) {

	.airmaster-news-section {
		padding: 70px 0;
	}

	.news-card-image img {
		height: 220px;
	}

	.news-card-content h3 {
		font-size: 22px;
	}
}

@media(max-width:767px) {

	.news-meta {
		flex-direction: column;
		gap: 10px;
	}

	.news-card-image img {
		height: 220px;
	}
}


.certifications-wrapper {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 18px;
	margin-top: 30px;
}

.certifications {
	width: 130px;
	height: 120px;
	background: #fff;
	border: 1px solid #ececec;
	border-radius: 12px;
	padding: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 5px 15px rgba(0, 0, 0, .08);
	transition: all .3s ease;
}

.certifications:hover {
	transform: translateY(-5px);
	box-shadow: 0 10px 25px rgba(0, 0, 0, .12);
}

.certifications-logo {
	max-width: 100%;
	max-height: 88px;
	object-fit: contain;
}

/* Tablet */
@media (max-width: 991px) {
	.certifications {
		width: 120px;
		height: 100px;
	}
}

/* Mobile */
@media (max-width: 767px) {

	.certifications-wrapper {
		gap: 12px;
	}

	.certifications {
		width: calc((100% - 24px) / 3);
		/* 3 per row */
		max-width: 105px;
		height: 85px;
		padding: 10px;
	}

	.certifications-logo {
		max-height: 50px;
	}
}


.banner-image-title {
	position: absolute;
	bottom: 0px;
	left: 0px;
	right: 0px;
	text-align: center;
	padding: 10px 15px;
	border-radius: 5px;
	border-radius: 0px 0px 12px 12px;
	background: linear-gradient(180deg,
			rgba(0, 0, 0, 0) 0%,
			rgba(0, 0, 0, 0.6) 40%,
			rgba(0, 0, 0, 0.8) 75%,
			rgba(0, 0, 0, 0.8) 100%);
}

.banner-image-title p {
	font-size: 18px;
	font-weight: 600;
	color: #fff;
	margin: 0;
}

.banner-image-button-prev-stone,
.banner-image-button-next-stone {
	width: 32px;
	height: 32px;
	border: 1px solid #a8a8a8;
	background: rgba(0, 0, 0, 0.3);
	border-radius: 50%;
	color: #fff !important;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: all .3s ease;
	position: absolute;
	top: 45%;
	transform: translateY(-50%);
	z-index: 10;
}

.banner-image-button-prev-stone i,
.banner-image-button-prev-stone i {
	font-size: 15px;
	color: #fff !important;
}

.banner-image-button-prev-stone:hover,
.banner-image-button-next-stone:hover {
	background: rgba(255, 255, 255, 0.1);
	border-color: #fff;
}

.faq-grid-accordion {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 14px 22px;
}

.faq-grid-accordion .accordion-item {
	border: 1px solid #d7e5fb;
	border-radius: 8px;
	margin-bottom: 10px;
	overflow: hidden;
	background: #fff;
}

.faq-grid-accordion .accordion-button {
	font-size: 16px;
	font-weight: 600;
	color: #004da8;
	padding: 10px 15px;
	box-shadow: none;
}

.faq-grid-accordion .accordion-button:not(.collapsed) {
	background: linear-gradient(90deg, #004da8, #0066d6);
	color: #fff;
}

.faq-grid-accordion .accordion-body {
	font-size: 16px;
	line-height: 1.6;
	color: #42526e;
	padding: 11px 15px;
}

@media (max-width: 767px) {
	.faq-grid-accordion {
		grid-template-columns: 1fr;
	}

	.faq-grid-accordion .accordion-button {
		font-size: 15px;
	}
}



.grille-products-section {
	padding: 60px 0;
	background: #f8fbff;
}

.grille-product-wrapper {
	display: grid;
	grid-template-columns: 300px 1fr;
	gap: 30px;
}

.grille-tabs {
	background: #fff;
	border: 1px solid #cbdcf3;
	border-radius: 10px;
	overflow: hidden;
	box-shadow: 0 12px 35px rgba(0, 72, 170, 0.08);
	height: fit-content;
}

@media (min-width: 992px) {
	.grille-tabs {
		position: sticky;
		top: 120px;
	}
}

.grille-tabs h3 {
	padding: 14px 15px;
	background: linear-gradient(135deg, #004da8, #006bd6);
	color: #fff;
	font-size: 18px;
	font-weight: 600;
}

.grille-tab {
	width: 100%;
	border: 0;
	background: #fff;
	padding: 12px 15px;
	display: grid;
	grid-template-columns: 42px 1fr 18px;
	align-items: center;
	gap: 10px;
	text-align: left;
	color: #004da8;
	font-weight: 600;
	border-bottom: 1px solid #e3ecf8;
	transition: 0.3s;
	    line-height: normal;

}

.grille-tab img {
	width: 38px;
	height: 35px;
	border: 1px solid #005ecb;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 4px;
}


.grille-tab i:first-child {
	width: 38px;
	height: 38px;
	border: 2px solid #005ecb;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 6px;
}

.grille-tab.active,
.grille-tab:hover {
	background: linear-gradient(90deg, #d5e9ff, #ffffff);

}

.grille-tab.active {
	border-left: 3px solid #004da8;
}

.grille-tab.active i:first-child {
	background: #004da8;
	color: #fff;
}

.product-head {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 22px;
}

.product-head h3 {
	color: #004da8;
	font-size: 23px;
	font-weight: 600;
	margin: 0;
}

.product-head span {
	color: #526b91;
	font-size: 13px;
}

.product-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
}

.product-card {
	background: #fff;
	border: 1px solid #cbdcf3;
	border-radius: 10px;
	padding: 15px;
	/*display: grid;*/
	grid-template-columns: 160px 1fr;
	gap: 16px;
	transition: 0.3s;
}

.product-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 18px 45px rgba(0, 72, 170, 0.12);
}

.product-card img {
    width: 100%;
    height: 187px;
    object-fit: contain;
    object-position: center;
    border-radius: 8px;
    margin-bottom: 14px;
    background: #030E4F;
}

.product-card h4 {
	color: #003f91;
	font-size: 17px;
	font-weight: 600;
	margin-bottom: 6px;
	    line-height: 1.4rem;
}

.product-card p {
	color: #536985;
	font-size: 14px;
	line-height: 1.6;
	margin-bottom: 8px;
}

.product-card a {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: #004da8;
	color: #fff;
	padding: 10px 15px;
	border-radius: 5px;
	font-size: 13px;
	font-weight: 600;
	text-decoration: none;
}

.product-tab-content {
	display: none;
	animation: fadeProduct 0.35s ease;
}

.product-tab-content.active {
	display: block;
}

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

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



@media (max-width: 991px) {
	.grille-product-wrapper {
		grid-template-columns: 1fr;
	}



	.grille-tabs h3 {
		grid-column: 1 / -1;
	}
}

@media (max-width: 767px) {
	.grille-products-section {
		padding: 40px 0;
	}


	.grille-tabs {
		grid-template-columns: 1fr;
	}

	.product-grid {
		grid-template-columns: 1fr;
	}

	.product-card {
		grid-template-columns: 1fr;
	}

	.product-card img {
		height: 150px;
	}

	.product-card a {
		justify-content: center;
	}
}

.blog-section {
	padding: 60px 0;
	background: #f6faff;
}


.blog-card {
	background: #fff;
	border-radius: 18px;
	overflow: hidden;
	border: 1px solid #dbe8f7;
	box-shadow: 0 15px 45px rgba(0, 60, 140, .08);
	transition: .35s;
}

.blog-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 25px 60px rgba(0, 60, 140, .15);
}

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

.blog-image img {
	width: 100%;
	height: auto;
	object-fit: cover;
	transition: .5s;
}

.blog-card:hover img {
	transform: scale(1.08);
}

.blog-content {
	padding: 16px;
}

.blog-meta {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 18px;
	flex-wrap: wrap;
	gap: 10px;
}

.blog-meta span {
	display: flex;
	align-items: center;
	gap: 7px;
	font-size: 13px;
	color: #6b7280;
	font-weight: 600;
}

.blog-meta i {
	color: #0056b8;
}

.blog-meta .category {
	background: #eef5ff;
	color: #0056b8;
	padding: 8px 16px;
	border-radius: 30px;
	font-weight: 600;
}

.blog-content h3 {
	font-size: 19px;
	color: #0b2c52;
	line-height: 1.4;
	font-weight: 600;
	margin-bottom: 8px;
	transition: .3s;
}

.blog-card:hover h3 {
	color: #0056b8;
}

.blog-content p {
	color: #6b7280;
	line-height: 1.6;
	font-size: 15px;
	margin-bottom: 12px;
}

.blog-content a {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	color: #0056b8;
	font-weight: 600;
	text-decoration: none;
	transition: .3s;
}

.blog-content a i {
	width: 36px;
	height: 36px;
	border-radius: 50%;
	background: #eef5ff;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: .3s;
}

.blog-card:hover a i {
	background: #0056b8;
	color: #fff;
	transform: translateX(5px);
}



@media(max-width:767px) {

	.blog-section {
		padding: 50px 0;
	}



	.blog-image img {
		height: 220px;
	}

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

	.blog-meta {
		align-items: flex-start;
	}

}

.blog-details-section {
	padding: 80px 0;
	background: #f6faff;
}

.blog-details-wrapper {
	display: grid;
	grid-template-columns: 1fr 360px;
	gap: 35px;
}

.blog-details-main,
.sidebar-widget {
	background: #fff;
	border: 1px solid #dce9f8;
	border-radius: 22px;
	box-shadow: 0 18px 45px rgba(0, 70, 160, 0.08);
}

.blog-details-image {
	height: auto;
	overflow: hidden;
	border-radius: 22px 22px 0 0;
}

.blog-details-image img {
	width: 100%;
	height: auto;
}

.blog-details-content {
	padding: 35px;
}

.blog-meta {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-bottom: 18px;
}

.blog-meta span {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	background: #eef5ff;
	color: #0056b8;
	padding: 8px 14px;
	border-radius: 40px;
	font-size: 13px;
	font-weight: 700;
}

.blog-details-content h1 {
	font-size: 32px;
	line-height: 1.2;
	color: #0b2c52;
	font-weight: 700;
	margin-bottom: 15px;
}

.blog-details-content h2 {
	font-size: 28px;
	color: #003f91;
	font-weight: 600;
	margin: 32px 0 14px;
}

.blog-details-content p {
	color: #5d6f8c;
	font-size: 16px;
	line-height: 1.85;
	margin-bottom: 18px;
}

.blog-details-content ul {
	padding-left: 0;
	margin: 22px 0;
	list-style: none;
}

.blog-details-content ul li {
	position: relative;
	padding-left: 26px;
	margin-bottom: 13px;
	color: #344767;
	font-weight: 600;
}

.blog-details-content ul li::before {
	content: "\f058";
	font-family: "Font Awesome 7 Free";
	font-weight: 700;
	position: absolute;
	left: 0;
	top: 0;
	color: #0056b8;
}

.blog-highlight-box {
	margin: 30px 0;
	padding: 28px;
	background: linear-gradient(135deg, #004da8, #0074e8);
	border-radius: 18px;
	color: #fff;
}

.blog-highlight-box i {
	font-size: 30px;
	margin-bottom: 14px;
}

.blog-highlight-box p {
	color: #fff;
	font-size: 20px;
	line-height: 1.6;
	margin: 0;
	font-weight: 700;
}

.blog-cta-box {
	margin-top: 35px;
	padding: 28px;
	border-radius: 18px;
	background: linear-gradient(135deg, #eef6ff, #ffffff);
	border: 1px solid #d8e8fb;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
}

.blog-cta-box h3 {
	color: #003f91;
	font-size: 24px;
	font-weight: 700;
	margin-bottom: 8px;
}

.blog-cta-box p {
	margin: 0;
}

.blog-cta-box a {
	background: #0056b8;
	color: #fff;
	padding: 13px 22px;
	border-radius: 8px;
	text-decoration: none;
	font-weight: 700;
	white-space: nowrap;
}

/* Sidebar */

.blog-sidebar {
	display: flex;
	flex-direction: column;
	gap: 24px;
}

.sidebar-widget {
	padding: 25px;
}

.sidebar-widget h3 {
	color: #003f91;
	font-size: 21px;
	font-weight: 700;
	margin-bottom: 16px;
}

.enquiry-widget {
	background: #fff;
	border: 1px solid #dce8f8;
	border-radius: 16px;
	padding: 25px;
	box-shadow: 0 12px 35px rgba(0, 70, 160, .08);
}

.enquiry-widget h3 {
	color: #003f91;
	font-size: 24px;
	font-weight: 700;
	margin-bottom: 10px;
}

.enquiry-widget p {
	color: #6b7280;
	font-size: 14px;
	line-height: 1.7;
	margin-bottom: 20px;
}

.sidebar-enquiry-form .form-group {
	margin-bottom: 15px;
}

.sidebar-enquiry-form input {
	width: 100%;
	height: 52px;
	border: 1px solid #d8e8fb;
	border-radius: 8px;
	padding: 0 16px;
	font-size: 15px;
	color: #444;
	transition: .3s;
	background: #f9fbff;
}

.sidebar-enquiry-form input:focus {
	outline: none;
	border-color: #0056b8;
	background: #fff;
	box-shadow: 0 0 0 4px rgba(0, 86, 184, .08);
}

.sidebar-enquiry-form button {
	width: 100%;
	height: 54px;
	border: none;
	border-radius: 8px;
	background: linear-gradient(135deg, #0056b8, #0078e7);
	color: #fff;
	font-size: 16px;
	font-weight: 600;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	transition: .3s;
}

.sidebar-enquiry-form button:hover {
	background: linear-gradient(135deg, #00459a, #0069d1);
	transform: translateY(-2px);
	box-shadow: 0 12px 30px rgba(0, 86, 184, .25);
}

.recent-post {
	display: flex;
	gap: 14px;
	padding-bottom: 15px;
	margin-bottom: 15px;
	border-bottom: 1px solid #e5edf7;
}

.recent-post:last-child {
	margin-bottom: 0;
	padding-bottom: 0;
	border-bottom: 0;
}

.recent-post img {
	width: 86px;
	height: 70px;
	object-fit: cover;
	border-radius: 10px;
}

.recent-post span {
	color: #0056b8;
	font-size: 13px;
	font-weight: 600;
}

.recent-post h4 {
	font-size: 15px;
	line-height: 1.4;
	color: #0b2c52;
	font-weight: 600;
	margin: 5px 0 0;
}

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

.category-list li a {
	display: flex;
	justify-content: space-between;
	color: #344767;
	font-weight: 700;
	text-decoration: none;
	padding: 12px 0;
	border-bottom: 1px solid #e5edf7;
}

.category-list li:last-child a {
	border-bottom: 0;
}

.category-list span {
	background: #eef5ff;
	color: #0056b8;
	padding: 3px 9px;
	border-radius: 20px;
}

/* Responsive */

@media (max-width: 991px) {
	.blog-details-wrapper {
		grid-template-columns: 1fr;
	}



	.blog-details-content h1 {
		font-size: 32px;
	}
}

@media (max-width: 767px) {
	.blog-details-section {
		padding: 50px 0;
	}

	.blog-details-content {
		padding: 24px;
	}



	.blog-details-content h1 {
		font-size: 23px;
	}

	.blog-details-content h2 {
		font-size: 21px;
	}

	.blog-cta-box {
		flex-direction: column;
		align-items: flex-start;
	}
}

.product-specification-card{
        background: #fff;
    padding: 20px;
    border: 1px solid #d8d8d8;
    border-radius: 16px;
}

.product-order-table table{
    width:100%;
    border-collapse:collapse;
    background:#fff;
    border:1px solid #dfe5ea;
}

.product-order-table table thead th{
    background:#0d2342;
    color:#fff;
    padding:16px;
    text-align:left;
    font-size:15px;
    font-weight:600;
}

.product-order-table table tbody td{
    padding:15px 16px;
    border:1px solid #e6e6e6;
    font-size:15px;
    color:#555;
    vertical-align: top;
}

.product-order-table table tbody tr:nth-child(even){
    background:#f8fafc;
}

.product-order-table table tbody tr:hover{
    background:#eef7fd;
}
.product-order-table tbody tr:first-child td:first-child {
    font-weight: 700;
    color: #1F4B99;
}


@media (max-width:768px){
    .table-responsive{
        overflow-x:auto;
    }

    .product-order-table table{
        min-width:750px;
    }
}

.product-details-simple {
    padding: 60px 0;
    background: #ffffff;
}


.product-content{
    padding-right:20px;
}

.product-content h3{
    font-size:26px;
    font-weight:600;
    color:#1d3557;
    margin-bottom:25px;
}

.product-content ul{
    margin:0;
    padding:0;
    list-style:none;
}

.product-content ul li{
    position:relative;
    padding:0 0 12px 35px;
    margin-bottom:15px;
    font-size:16px;
    line-height:1.8;
    color:#555;
    border-bottom:1px solid #ececec;
}

.product-content ul li:last-child{
    margin-bottom:0;
    border-bottom:none;
}

/* Circle */

.product-content ul li::before{
    content:"";
    position:absolute;
    left:0;
    top:3px;

    width:21px;
    height:21px;

    background:#0f5e8c;
    border-radius:50%;
}

/* Check Mark */

.product-content ul li::after{
    content:"✓";
    position:absolute;
    left:6px;
    top:0px;

    color:#fff;
    font-size:14px;
    font-weight:600;
    line-height:28px;
}

.product-content ul li:hover{
    color:#0f5e8c;
}
.product-simple-image {
    padding: 14px;
    background: #f7f8f9;
    border: 1px solid #e4e7e9;
    border-radius: 10px;
    text-align: center;
}

.fixed-img{
    width: 100%;
    height: 163px;
    object-fit: contain;
}

.fixed-img img{
    width: 100%;
    height: 100%;
    object-fit: contain;
}

@media(max-width:991px){

    .product-content{
        padding-right:0;
        margin-bottom:30px;
    }

    .product-content h3{
        font-size:28px;
    }
}

@media(max-width:576px){

    .product-content h3{
        font-size:24px;
    }

    .product-content ul li{
        padding-left:40px;
        font-size:15px;
        line-height:1.7;
    }

    .product-content ul li::before{
        width:24px;
        height:24px;
    }

    .product-content ul li::after{
        left:7px;
        top:3px;
        font-size:15px;
        line-height:24px;
    }
}

.produtc-modle-no span{
        padding: 14px 18px;
    border-radius: 10px;
    border: 1px solid #d4d4d4;
    margin-bottom: 20px;
    font-size: 18px;
    font-weight:600;
      display: inline-block;
    color: var(--white-color);
    background: var(--accent-color);
}

.projects-section {
    padding: 80px 0;
    background: #f7f9fb;
}

.project-box{
    background:#fff;
    border:1px solid #e8e8e8;
    border-radius:10px;
    overflow:hidden;
    transition:.3s;
    text-align:center;
}

.project-box img{
    width:100%;
    height:280px;
    object-fit:cover;
    display:block;
    transition:.4s;
}

.project-title{
    padding:18px;
    font-size:18px;
    font-weight:600;
    color:#1d3557;
    line-height:1.6;
}

.project-box:hover{
    transform:translateY(-5px);
    box-shadow:0 12px 30px rgba(0,0,0,.12);
}

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

@media(max-width:768px){

    .project-box img{
        height:220px;
    }

    .project-title{
        font-size:16px;
        padding:15px;
    }

.product-specification h2 {
    font-size: 23px;
}

}

.product-specification h2{
      font-size:27px;
}


.product-order-list h3{
    font-size:25px;
    font-weight:600;
    margin-bottom:20px;
}

.product-order-list ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.product-order-list ul li {
    position: relative;
    margin-bottom: 10px;
    padding: 10px 12px 10px 38px;
    font-size: 16px;
    font-weight:500;
    line-height: 1.6;
    color: #4d4d4d;
    background: #f8fbfd;
    border: 1px solid #e1ebf0;
    border-left: 3px solid #0f5e8c;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.product-order-list ul li:last-child {
    margin-bottom: 0;
}

.product-order-list ul li::before {
    content: "\f058";
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    font-family: "Font Awesome 7 Free";
    font-weight: 900;
    font-size: 18px;
    color: #0f5e8c;
}

.product-order-list ul li:hover {
    color: #0f5e8c;
    background: #ffffff;
    border-color: #c8dce7;
    border-left-color: #0f5e8c;
    box-shadow: 0 4px 14px rgba(15, 94, 140, 0.09);
    transform: translateX(3px);
}

.product-submenu {
    display: grid;
    grid-template-columns: repeat(2, minmax(180px, 1fr));
    gap: 1px 0px;
    width: max-content;
    min-width: 490px;
    padding: 10px;
    margin: 0;
    list-style: none;
}

.product-submenu .nav-link {
    display: block;
    white-space: nowrap;
}

/* Mobile and tablet */
@media (max-width: 767px) {
    .product-submenu {
        grid-template-columns: 1fr;
        width: 100%;
        min-width: 0;
    }
}

.projects-home-button-prev-stone,
.projects-home-button-next-stone {
    	width: 36px !important;
	height: 36px !important;
}

.projects-home-button-prev-stone {
	left: 10px !important;
}

.projects-home-button-next-stone {
	right: 10px !important;
}
#search_suggestions_dropdown {
    min-width: 320px;
    max-width: 400px;
    border-radius: 8px;
    overflow-x: hidden;
    padding: 6px 0;
}

#search_suggestions_dropdown .list-group-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    white-space: normal;
    border: none !important;
    border-bottom: 1px solid #f0f0f0 !important;
    transition: background 0.15s ease;
}

#search_suggestions_dropdown .list-group-item:last-child {
    border-bottom: none !important;
}

#search_suggestions_dropdown .list-group-item:hover {
    background-color: #f8f9fa;
}

#search_suggestions_dropdown .list-group-item span {
    flex: 1;
    font-size: 14px;
    line-height: 1.4;
    color: #222;
}

#search_suggestions_dropdown .list-group-item .badge {
    flex-shrink: 0;
    font-size: 11px;
    font-weight: 500;
    padding: 4px 8px;
    white-space: nowrap;
}
.grille-tab-wrap {
    position: relative;
}

.grille-subcat-panel {
    background: #f4f7fb;
    margin-left: 0px;
    overflow: hidden;
}

.grille-subcat-link {
    display: flex;
    align-items: center;
    gap: 10px;
   padding: 11px 14px 11px 27px;
    font-size: 15px;
    font-weight: 600;
    color: #004da8;
    text-decoration: none;
    border-bottom: 1px solid #e3ecf8;
    background: #fff;
    transition: 0.3s;
}



.grille-subcat-link::before {
    content: "\f105";
    font-family: "Font Awesome 7 Free";
    font-weight: 900;
    font-size: 11px;
    color: #005ecb;
    transition: color 0.15s ease;
}

.grille-subcat-link:hover {
    background: linear-gradient(90deg, #d5e9ff, #ffffff);
    color: #004da8;
    padding-left: 18px;
}

.grille-subcat-link.active {
    background: linear-gradient(90deg, #d5e9ff, #ffffff);
    color: #004da8;
    border-left: 3px solid #004da8;
}

.grille-subcat-link.active::before,
.grille-subcat-link:hover::before {
    color: #004da8;
}



.input-icon {
    position: relative;
}

.input-icon > i {
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;

    color: #777;
    font-size: 15px;

    pointer-events: none;
}

.input-icon .form-control {
    padding-left: 48px;
}

.input-icon input,
.input-icon select {
    height: 55px;
}

.input-icon textarea.form-control {
    padding-top: 16px;
    padding-left: 48px;
    min-height: 120px;
    resize: vertical;
}

.textarea-icon > i {
    top: 20px;
    transform: none;
}

.input-icon .form-control:focus {
    border-color: #1b7b5c;
    box-shadow: 0 0 0 3px rgba(27, 123, 92, 0.08);
}

.input-icon:focus-within > i {
    color: #1b7b5c;
}

.input-icon select {
    cursor: pointer;
}

.file-icon > i {
    top: 27px;
}

.file-icon input[type="file"] {
    padding-top: 14px;
}

.upload-text {
    display: block;
    margin-top: 7px;
    color: #777;
    font-size: 12px;
}

/*form*/

/* ================================
   MODAL
================================ */

.enquiry-modal .modal-dialog {
    max-width: 452px;
}

.enquiry-modal .modal-content {
    border: 0;
    border-radius: 22px;
    overflow: hidden;
    position: relative;

    background: #fff;

    box-shadow:
        0 30px 80px rgba(13, 35, 66, 0.25);
}


/* ================================
   CLOSE BUTTON
================================ */

.enquiry-close {
    position: absolute;

    top: 10px;
    right: 10px;
    width: 16px;
    height: 16px;
    padding: 9px;
        font-size: 12px;
    background-color: #fff;
    border-radius: 50%;
    z-index: 10;
    opacity: 1;
    box-shadow:
        0 5px 15px rgba(0, 0, 0, 0.15);
}


/* ================================
   HEADER
================================ */

.enquiry-modal-header {
    display: flex;
    align-items: flex-start;
    gap: 17px;
padding: 18px 42px 12px 16px;
       background: linear-gradient(135deg, #b60000, #d30505);
    color: #fff;
}


.enquiry-header-icon {
      width: 42px;
    height: 42px;
    min-width: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 8px;
    font-size: 17px;
}


.enquiry-modal-header h2 {
    margin: 0 0 3px;
    color: #fff;
    font-size: 21px;
    line-height: 1.25;
    font-weight: 650;
}


.enquiry-modal-header p {
    margin: 0;
    max-width: 500px;
    color: rgba(255, 255, 255, 0.95);
    font-size: 13px;
    line-height: 1.55;
}


/* ================================
   FORM
================================ */

.enquiry-form-box {
    padding: 12px 20px;
}


/* INPUT */

.enquiry-input {
    position: relative;
}


.enquiry-input > i {
    position: absolute;

    left: 17px;
    top: 50%;

    transform: translateY(-50%);

    color: #78879a;

    font-size: 14px;

    pointer-events: none;

    z-index: 2;

    transition: 0.3s ease;
}


.enquiry-input .form-control {
    width: 100%;

    height: 46px;

    padding: 10px 16px 10px 46px;

    background: #f7f9fc;

    border: 1px solid #e1e6ed;

    border-radius: 11px;

    color: #1e2e43;

    font-size: 13px;

    box-shadow: none;

    transition: all 0.3s ease;
}


.enquiry-input .form-control::placeholder {
    color: #8a96a5;
}


.enquiry-input .form-control:focus {
    background: #fff;

    border-color: #173f74;

    box-shadow:
        0 0 0 3px rgba(23, 63, 116, 0.08);
}


.enquiry-input:focus-within > i {
    color: #173f74;
}


/* SELECT */

.enquiry-input select.form-control {
    cursor: pointer;
}


/* ================================
   TEXTAREA
================================ */

.enquiry-textarea > i {
    top: 18px;
    transform: none;
}


.enquiry-textarea .form-control {
    height: auto;
    padding-top: 15px;
    resize: vertical;
}


/* ================================
   SUBMIT BUTTON
================================ */

.enquiry-submit-btn {
    width: 100%;

    min-height: 54px;

    display: flex;
    align-items: center;
    justify-content: center;

    gap: 11px;

    padding: 12px 20px;

    border: 0;
    border-radius: 11px;

       background: linear-gradient(135deg, #b60000, #d30505);

    color: #fff;

    font-size: 14px;
    font-weight: 600;

    cursor: pointer;

    box-shadow:
        0 10px 24px rgba(13, 35, 66, 0.22);

    transition: all 0.3s ease;
}


.enquiry-submit-btn:hover {
    transform: translateY(-2px);

    box-shadow:
        0 14px 30px rgba(13, 35, 66, 0.3);
}


.enquiry-submit-btn i {
    font-size: 12px;

    transition: transform 0.3s ease;
}


.enquiry-submit-btn:hover i {
    transform: translateX(4px);
}


/* ================================
   FIXED ENQUIRE NOW
================================ */

.fixed-enquiry-btn {
    position: fixed;

    right: 12px;
    bottom: 15px;

    z-index: 999;

    display: flex;
    align-items: center;

    gap: 9px;

   padding: 6px 16px 6px 10px;
    border: 0;
    border-radius: 50px;

      background: linear-gradient(135deg, #b60000, #d30505);

    color: #fff;

    font-size: 13px;
    font-weight: 600;

    cursor: pointer;

    box-shadow:
        0 12px 30px rgba(13, 35, 66, 0.3);

    transition: 0.3s ease;
}


.fixed-enquiry-btn:hover {
    transform: translateY(-3px);

    box-shadow:
        0 16px 35px rgba(13, 35, 66, 0.4);
}


.fixed-enquiry-icon {
    width: 36px;
    height: 36px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: rgba(255, 255, 255, 0.13);
}


/* ================================
   MOBILE
================================ */

@media (max-width: 575px) {

    .enquiry-modal .modal-dialog {
        margin: 8px;
        padding: 0;
    }

    .enquiry-modal .modal-content {
        border-radius: 17px;
    }

    .enquiry-modal-header {
        padding: 28px 50px 25px 20px;
        gap: 12px;
    }

    .enquiry-header-icon {
        width: 38px;
        height: 38px;
        min-width: 38px;
    }

    .enquiry-modal-header h2 {
        font-size: 18px;
    }

    .enquiry-modal-header p {
        font-size: 12px;
    }

    .enquiry-form-box {
        padding: 22px 18px;
    }

    .fixed-enquiry-btn {
        right: 14px;
        bottom: 14px;
    }
}



.product-gallery-thumbnail {
    display: block;
    width: 70px;
    height: 70px;
    overflow: hidden;
    padding: 2px;
    border: 1px solid #ddd;
    border-radius: 4px;
    transition: border-color 0.2s ease, transform 0.2s ease;
}

.product-gallery-thumbnail img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 2px;
}

.product-gallery-thumbnail:hover {
    border-color: #333;
    transform: translateY(-2px);
}

.image-anime > a,
[data-fancybox] {
    cursor: zoom-in;
}
